repository history
Recent Changes
A repository history for the campaign notes and generated wiki source. Each entry includes changed-file statistics and a collapsible diff when Git history is available.
-
c3a7e73Pathby balloz
.gitea/workflows/wiki.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)Show diff
diff --git a/.gitea/workflows/wiki.yml b/.gitea/workflows/wiki.yml index 63ca76d..fdeb48e 100644 --- a/.gitea/workflows/wiki.yml +++ b/.gitea/workflows/wiki.yml @@ -56,4 +56,4 @@ jobs: - name: Deploy wiki via rsync if: github.ref == 'refs/heads/master' run: | - rsync -Pvrax --delete dist/wiki/ pentacitywiki@web.mooablo.balloz.nl:/sites/pentacitywiki/ + rsync -Pvrax --delete dist/wiki/ pentacitywiki@web.mooablo.balloz.nl:/sites/pentacitystates-wiki/ -
6674128Typoby balloz
.gitea/workflows/wiki.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)Show diff
diff --git a/.gitea/workflows/wiki.yml b/.gitea/workflows/wiki.yml index 747450b..63ca76d 100644 --- a/.gitea/workflows/wiki.yml +++ b/.gitea/workflows/wiki.yml @@ -56,4 +56,4 @@ jobs: - name: Deploy wiki via rsync if: github.ref == 'refs/heads/master' run: | - rsync -Pvrax --delete dist/wiki/ pentacitywiki@web.mooblo.balloz.nl:/sites/pentacitywiki/ + rsync -Pvrax --delete dist/wiki/ pentacitywiki@web.mooablo.balloz.nl:/sites/pentacitywiki/ -
e1bfa47Update .gitea/workflows/wiki.ymlby balloz
.gitea/workflows/wiki.yml | 6 ++++++ 1 file changed, 6 insertions(+)Show diff
diff --git a/.gitea/workflows/wiki.yml b/.gitea/workflows/wiki.yml index 96bf92c..747450b 100644 --- a/.gitea/workflows/wiki.yml +++ b/.gitea/workflows/wiki.yml @@ -40,6 +40,12 @@ jobs: path: dist/wiki retention-days: 30 + - name: Install rsync and ssh + if: github.ref == 'refs/heads/master' + run: | + apt-get update + apt-get install -y rsync openssh-client + - name: Configure SSH if: github.ref == 'refs/heads/master' run: | -
a3bb0c6Add wiki uploadby balloz
.gitea/workflows/wiki.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+)Show diff
diff --git a/.gitea/workflows/wiki.yml b/.gitea/workflows/wiki.yml index f0894b3..96bf92c 100644 --- a/.gitea/workflows/wiki.yml +++ b/.gitea/workflows/wiki.yml @@ -39,3 +39,15 @@ jobs: name: pentacity-wiki path: dist/wiki retention-days: 30 + + - name: Configure SSH + if: github.ref == 'refs/heads/master' + run: | + mkdir -p ~/.ssh + echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/id_rsa + chmod 600 ~/.ssh/id_rsa + ssh-keyscan -H web.mooablo.balloz.nl >> ~/.ssh/known_hosts + - name: Deploy wiki via rsync + if: github.ref == 'refs/heads/master' + run: | + rsync -Pvrax --delete dist/wiki/ pentacitywiki@web.mooblo.balloz.nl:/sites/pentacitywiki/ -
c3dfe66Update .gitea/workflows/wiki.ymlby balloz
.gitea/workflows/wiki.yml | 3 +++ 1 file changed, 3 insertions(+)Show diff
diff --git a/.gitea/workflows/wiki.yml b/.gitea/workflows/wiki.yml index 279c1c1..f0894b3 100644 --- a/.gitea/workflows/wiki.yml +++ b/.gitea/workflows/wiki.yml @@ -17,9 +17,12 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 + env: + RUNNER_TOOL_CACHE: /toolcache with: node-version: 22 cache: npm + cache-dependency-path: package-lock.json - name: Install dependencies run: npm ci -
5211b56Update wiki generation to process imagesby Bas Mostert
tools/build-wiki.mjs | 81 +++++++++++++++++++++++++++++++++++++++++--- tools/validate-wiki-site.mjs | 8 ++--- 2 files changed, 80 insertions(+), 9 deletions(-)Show diff
diff --git a/tools/build-wiki.mjs b/tools/build-wiki.mjs index 23d710c..c8bd302 100644 --- a/tools/build-wiki.mjs +++ b/tools/build-wiki.mjs @@ -10,6 +10,7 @@ const cleanedDaysDir = path.join(rootDir, 'data', '4-days-cleaned'); const outputDir = path.join(rootDir, 'dist', 'wiki'); const assetsDir = path.join(outputDir, 'assets'); const recentChangesLimit = Number.parseInt(process.env.WIKI_RECENT_CHANGES_LIMIT ?? '0', 10); +const imageExtensions = new Set(['.gif', '.jpg', '.jpeg', '.png', '.svg', '.webp']); const md = new MarkdownIt({ html: false, @@ -58,6 +59,31 @@ function relativeHref(fromRoute, toRoute) { return href; } +function isExternalHref(href) { + return /^[a-z][a-z0-9+.-]*:/i.test(href); +} + +function stripHashAndQuery(href) { + return href.split('#')[0].split('?')[0]; +} + +function isImageHref(href) { + return imageExtensions.has(path.posix.extname(stripHashAndQuery(href)).toLowerCase()); +} + +function decodeMarkdownHref(href) { + const unwrapped = href.startsWith('<') && href.endsWith('>') ? href.slice(1, -1) : href; + try { + return decodeURI(unwrapped); + } catch { + return unwrapped; + } +} + +function encodeAssetHref(href) { + return encodeURI(href).replace(/[()]/g, (char) => `%${char.charCodeAt(0).toString(16).toUpperCase()}`); +} + function escapeHtml(value) { return String(value) .replaceAll('&', '&') @@ -208,6 +234,44 @@ function rewriteMarkdownLinks(markdown, sourceRelativePath, route, sourceToRoute }); } +function resolveReferencedFile(sourceAbsPath, rawHref) { + const decodedHref = decodeMarkdownHref(rawHref); + if (!decodedHref || decodedHref.startsWith('#') || isExternalHref(decodedHref)) return null; + + const target = path.resolve(path.dirname(sourceAbsPath), stripHashAndQuery(decodedHref)); + if (!target.startsWith(rootDir + path.sep)) return null; + if (!fs.existsSync(target) || !fs.statSync(target).isFile()) return null; + return target; +} + +function copiedAssetRoute(sourceAbsPath) { + const rootRelative = posixPath(path.relative(rootDir, sourceAbsPath)); + return path.posix.join('assets', 'media', rootRelative); +} + +function copyReferencedAsset(sourceAbsPath) { + const targetRoute = copiedAssetRoute(sourceAbsPath); + const targetPath = path.join(outputDir, targetRoute); + fs.mkdirSync(path.dirname(targetPath), { recursive: true }); + fs.copyFileSync(sourceAbsPath, targetPath); + return targetRoute; +} + +function rewriteMarkdownAssetLinks(markdown, page, copiedAssets) { + return markdown.replace(/(!?)\[([^\]]*)]\((<[^>]+>|[^)]+)\)/g, (match, bang, label, rawHref) => { + const decodedHref = decodeMarkdownHref(rawHref.trim()); + if (!isImageHref(decodedHref)) return match; + + const sourceAbsPath = resolveReferencedFile(page.absPath, decodedHref); + if (!sourceAbsPath) return match; + + const targetRoute = copyReferencedAsset(sourceAbsPath); + copiedAssets.add(targetRoute); + const href = encodeAssetHref(relativeHref(page.route, targetRoute)); + return `${bang}[${label}](${href})`; + }); +} + function collectHeadings(content) { const headings = []; for (const line of content.split('\n')) { @@ -435,9 +499,12 @@ function parsePages() { } function renderWikiPages(pages, sourceToRoute) { + const copiedAssets = new Set(); + for (const page of pages) { const markdown = removeDuplicateTopHeading(page.markdown, page.title); - const rewritten = rewriteMarkdownLinks(markdown, page.sourceRelativePath, page.route, sourceToRoute); + const rewrittenLinks = rewriteMarkdownLinks(markdown, page.sourceRelativePath, page.route, sourceToRoute); + const rewritten = rewriteMarkdownAssetLinks(rewrittenLinks, page, copiedAssets); const headings = collectHeadings(rewritten); const content = addHeadingIds(md.render(rewritten)); const html = renderLayout({ @@ -454,6 +521,8 @@ function renderWikiPages(pages, sourceToRoute) { fs.mkdirSync(path.dirname(outPath), { recursive: true }); fs.writeFileSync(outPath, html); } + + return copiedAssets; } function parseCommits() { @@ -804,6 +873,7 @@ a:hover { color: var(--red-dark); text-decoration-color: currentColor; } } .wiki-page p, .wiki-page li { line-height: 1.72; } +.wiki-page img { max-width: 100%; height: auto; border: 1px solid var(--line); border-radius: 0.3rem; } .wiki-page li + li { margin-top: 0.26rem; } .wiki-page blockquote { @@ -929,7 +999,7 @@ if (filter && pageList) { `); } -function writeManifest(pages) { +function writeManifest(pages, copiedAssets) { const manifest = { generatedAt: new Date().toISOString(), sourceDir: 'data/6-wiki', @@ -939,7 +1009,8 @@ function writeManifest(pages) { route: page.route, title: page.title, lastModified: page.lastModified.toISOString() - })).concat([{ source: '.git', route: 'recent-changes/index.html', title: 'Recent Changes' }]) + })).concat([{ source: '.git', route: 'recent-changes/index.html', title: 'Recent Changes' }]), + assets: [...copiedAssets].sort() }; fs.writeFileSync(path.join(outputDir, 'manifest.json'), `${JSON.stringify(manifest, null, 2)}\n`); } @@ -954,9 +1025,9 @@ function main() { const { pages, sourceToRoute } = parsePages(); writeAssets(); - renderWikiPages(pages, sourceToRoute); + const copiedAssets = renderWikiPages(pages, sourceToRoute); renderRecentChanges(pages); - writeManifest(pages); + writeManifest(pages, copiedAssets); console.log(`Built ${pages.length} wiki pages plus recent changes in ${path.relative(rootDir, outputDir)}`); } diff --git a/tools/validate-wiki-site.mjs b/tools/validate-wiki-site.mjs index b603d80..0b9ca33 100644 --- a/tools/validate-wiki-site.mjs +++ b/tools/validate-wiki-site.mjs @@ -88,16 +88,16 @@ function validateHtmlStructureAndLinks() { if (!html.includes('The Pentacity States')) fail(`${rel} is missing site title/logo text`); if (!html.includes('Last modified:')) fail(`${rel} is missing last modified footer text`); - const hrefPattern = /href="([^"]+)"/g; - for (const match of html.matchAll(hrefPattern)) { + const referencePattern = /\b(?:href|src)="([^"]+)"/g; + for (const match of html.matchAll(referencePattern)) { const href = match[1]; const target = targetFileForHref(file, href); if (!target) continue; if (!path.resolve(target).startsWith(path.resolve(outputDir))) { - fail(`${rel} links outside generated site: ${href}`); + fail(`${rel} references outside generated site: ${href}`); continue; } - if (!fs.existsSync(target)) fail(`${rel} has broken internal link: ${href}`); + if (!fs.existsSync(target)) fail(`${rel} has broken internal reference: ${href}`); } } } -
ebe0432Merge branch 'audio-transcripts'by Bas Mostert
.agents/skills/dnd-align-audio-transcript/SKILL.md | 72 ++ .agents/skills/dnd-clean-day-narrative/SKILL.md | 11 +- .../skills/dnd-ingest-audio-transcript/SKILL.md | 60 ++ .agents/skills/dnd-notes-pipeline/SKILL.md | 75 ++- .agents/skills/dnd-split-pages-into-days/SKILL.md | 61 +- AGENTS.md | 75 ++- data/2-audio-index/audio-backed-pending-day-58.md | 60 ++ data/2-audio-index/session-2026-01-20.md | 27 + data/2-audio-index/session-2026-01-27.md | 26 + data/2-audio-index/session-2026-02-03.md | 26 + data/2-audio-index/session-2026-02-10.md | 25 + data/2-audio-index/session-2026-02-17.md | 23 + data/2-audio-index/session-2026-02-24.md | 22 + data/2-audio-index/session-2026-03-03.md | 22 + data/2-audio-index/session-2026-03-10.md | 21 + data/2-audio-index/session-2026-03-17.md | 28 + data/3-days/day-57.md | 729 ++++----------------- data/3-days/day-58.md | 143 ++++ data/4-days-cleaned/day-57.md | 138 ++-- data/4-days-cleaned/day-58.md | 124 ++++ 20 files changed, 1039 insertions(+), 729 deletions(-) -
e8b88dbAdd audio transcriptsby Bas Mostert
data/2-audio-transcripts/session-2026-01-20.md | 2272 ++++ data/2-audio-transcripts/session-2026-01-27.md | 7471 ++++++++++++++ data/2-audio-transcripts/session-2026-02-03.md | 4638 +++++++++ data/2-audio-transcripts/session-2026-02-10.md | 6646 ++++++++++++ data/2-audio-transcripts/session-2026-02-17.md | 5374 ++++++++++ data/2-audio-transcripts/session-2026-02-24.md | 6503 ++++++++++++ data/2-audio-transcripts/session-2026-03-03.md | 6421 ++++++++++++ data/2-audio-transcripts/session-2026-03-10.md | 5999 +++++++++++ data/2-audio-transcripts/session-2026-03-17.md | 7473 ++++++++++++++ data/2-audio-transcripts/session-2026-03-24.md | 8704 ++++++++++++++++ data/2-audio-transcripts/session-2026-03-31.md | 6737 ++++++++++++ data/2-audio-transcripts/session-2026-04-07.md | 9348 +++++++++++++++++ data/2-audio-transcripts/session-2026-04-14.md | 8718 ++++++++++++++++ data/2-audio-transcripts/session-2026-04-21.md | 8538 +++++++++++++++ data/2-audio-transcripts/session-2026-04-28.md | 3851 +++++++ data/2-audio-transcripts/session-2026-05-05.md | 5685 ++++++++++ data/2-audio-transcripts/session-2026-05-12.md | 12631 +++++++++++++++++++++++ 17 files changed, 117009 insertions(+) -
b788fbfAdd audio processing pipeline + process day 57by Bas Mostert
.agents/skills/dnd-align-audio-transcript/SKILL.md | 72 ++ .agents/skills/dnd-clean-day-narrative/SKILL.md | 11 +- .../skills/dnd-ingest-audio-transcript/SKILL.md | 60 ++ .agents/skills/dnd-notes-pipeline/SKILL.md | 75 ++- .agents/skills/dnd-split-pages-into-days/SKILL.md | 61 +- AGENTS.md | 75 ++- data/2-audio-index/audio-backed-pending-day-58.md | 60 ++ data/2-audio-index/session-2026-01-20.md | 27 + data/2-audio-index/session-2026-01-27.md | 26 + data/2-audio-index/session-2026-02-03.md | 26 + data/2-audio-index/session-2026-02-10.md | 25 + data/2-audio-index/session-2026-02-17.md | 23 + data/2-audio-index/session-2026-02-24.md | 22 + data/2-audio-index/session-2026-03-03.md | 22 + data/2-audio-index/session-2026-03-10.md | 21 + data/2-audio-index/session-2026-03-17.md | 28 + data/3-days/day-57.md | 729 ++++----------------- data/3-days/day-58.md | 143 ++++ data/4-days-cleaned/day-57.md | 138 ++-- data/4-days-cleaned/day-58.md | 124 ++++ 20 files changed, 1039 insertions(+), 729 deletions(-)Show diff
diff --git a/.agents/skills/dnd-align-audio-transcript/SKILL.md b/.agents/skills/dnd-align-audio-transcript/SKILL.md new file mode 100644 index 0000000..5e372da --- /dev/null +++ b/.agents/skills/dnd-align-audio-transcript/SKILL.md @@ -0,0 +1,72 @@ +# Skill: D&D Align Audio Transcript + +Use this skill to map an audio transcript in `data/2-audio-transcripts` to handwritten page transcriptions in `data/2-pages` and in-game day files in `data/3-days`. + +## Inputs + +- Audio transcripts: `data/2-audio-transcripts/*.md` +- Page transcriptions: `data/2-pages/*.txt` +- Existing alignment files: `data/2-audio-index/*.md` +- Existing raw day files: `data/3-days/*.md` + +## Outputs + +- `data/2-audio-index/<session>.md`, mapping transcript ranges to source pages and in-game days. + +## Idempotency + +- Do not overwrite an existing alignment file unless the user explicitly asks. +- If an alignment exists but lacks later-confirmed ranges, update it only when the user asks or when the missing data is clearly additive and non-conflicting. +- If a day boundary or page range is ambiguous, ask the user before writing or changing the alignment. + +## Workflow + +1. Read the transcript metadata and identify the session identifier. +2. Read the relevant page transcriptions around the suspected page range. +3. Match transcript scenes to page events using unique anchors: NPC names, locations, travel decisions, rests, combats, item gains, exact phrases, and day markers. +4. Use handwritten notes as the main source for in-game day boundaries unless the transcript itself contains an explicit table-confirmed day transition. +5. Record transcript ranges as timestamps when available. +6. If the transcript suggests a possible day change because the party sleeps, takes a long rest, wakes up, travels overnight, or table talk says it is a new day, ask the user to confirm whether that is an actual in-game day switchover before recording it as a boundary. +7. If the transcript has no timestamps, record stable text anchors or approximate section labels, such as `from "Do you have teeth?" to "we'll call it there"`. +8. Mark uncertainty explicitly rather than forcing a page or day match. +9. Do not produce cleaned narrative here. This stage only creates alignment metadata and notes. + +## Output Format + +```markdown +--- +session: session-YYYY-MM-DD +transcript: data/2-audio-transcripts/session-YYYY-MM-DD.md +source_pages: + - data/2-pages/<page>.txt +day_segments: + - day: day-57 + transcript_range: "00:00:00-03:42:10" + page_range: "293-315" + notes: "Audio begins mid-day; handwritten pages provide day boundary." +--- + +# Alignment Notes + +- <scene/page/day alignment notes> + +# Uncertainties + +- <any ambiguous range, spelling, day marker, or source conflict> +- <any possible rest/sleep/wake-up day boundary awaiting user confirmation> +``` + +For transcripts without timestamps, use this style: + +```yaml +transcript_range: "text anchor: 'Do you have teeth?' through 'we'll call it there'" +``` + +## Completion Report + +When finished, report: + +- Alignment file created or skipped. +- Transcript file used. +- Pages and days aligned. +- Any uncertain page ranges or day boundaries requiring user confirmation. diff --git a/.agents/skills/dnd-clean-day-narrative/SKILL.md b/.agents/skills/dnd-clean-day-narrative/SKILL.md index 4932a58..f906172 100644 --- a/.agents/skills/dnd-clean-day-narrative/SKILL.md +++ b/.agents/skills/dnd-clean-day-narrative/SKILL.md @@ -1,12 +1,13 @@ # Skill: D&D Clean Day Narrative -Use this skill to process one raw in-game day file from `data/3-days` into a detailed, story-based narrative in `data/4-days-cleaned`. +Use this skill to process one raw in-game day source packet from `data/3-days` into a detailed, story-based narrative in `data/4-days-cleaned`. For audio-backed source packets, treat the audio-derived event log as the primary factual source and use handwritten-note cross-checks to verify day boundaries, names, spellings, item lists, rewards, and unresolved clues. This stage should only clean confirmed-complete days. The day-based pipeline intentionally lags one in-game day behind image/page processing, so the newest apparent day should remain uncleaned until the next day has clearly started in the source transcriptions. ## Inputs - Raw day files: `data/3-days/*.md` +- Audio-backed raw day packets may reference `data/2-audio-transcripts/*.md`, `data/2-audio-index/*.md`, and `data/2-pages/*.txt` - Existing cleaned day files: `data/4-days-cleaned/*.md` ## Outputs @@ -19,13 +20,14 @@ This stage should only clean confirmed-complete days. The day-based pipeline int - Process one day at a time unless the user explicitly asks for multiple days. - Do not reprocess or overwrite an existing cleaned day file unless the user explicitly asks. - Exception: if `dnd-retrospective-context` records new sourced context for a cleaned day, regenerate and overwrite that cleaned day using the raw day notes plus the retrospective context. +- Exception: if the user asks to switch an already processed day to audio-backed processing, regenerate from the fused audio-backed source packet because the audio transcript is a higher-fidelity source than page-only notes. - If all candidate days already have cleaned outputs, report that there is nothing new to clean. - Do not clean a raw day if it appears to be the latest unconfirmed day and there is no clear next-day marker in `data/2-pages`. ## Completeness Requirement - Prefer cleaning only raw day files produced by `dnd-split-pages-into-days`, because that skill should only write confirmed-complete days. -- Before cleaning the newest raw day, verify that `data/2-pages` contains a clear marker for the next in-game day. +- Before cleaning the newest raw day, verify that `data/2-pages` contains a clear marker for the next in-game day, or that an audio alignment file explicitly confirms the day boundary. - If that marker is missing or ambiguous, skip cleaning and report that the day is pending more source pages or user confirmation. - Never create `data/4-days-cleaned/<day>.md` from partial current-day notes unless the user explicitly asks to override the lag rule. @@ -40,6 +42,8 @@ Write the result to `data/4-days-cleaned`. ## Narrative Requirements - Preserve chronology within the day. +- For audio-backed days, include conversation-derived details that matter to the campaign record: exact NPC statements, player decisions, bargains, warnings, clues, travel reasoning, corrected misunderstandings, rulings, and names introduced in table discussion. +- Do not include unrelated table chatter, jokes, animal noise, dead air, or transcription artifacts unless they clarify an in-game fact, source correction, or table decision. - If regenerating because of retrospective context, use that context to improve the day summary transparently, as if the information had been available during the original cleaning pass. Do not mention later pages, later days, source paths, retrospective context, or regeneration in the cleaned day. - Write in clear prose, not bullet-point session notes, unless a short list is necessary for dense item inventories. - Keep all potentially useful searchable details: names, places, items, rewards, money, factions, dates, page references, dreams, clues, rumours, warnings, inscriptions, passwords, spell effects, creature descriptions, deaths, rescued people, travel plans, and unresolved questions. @@ -47,6 +51,7 @@ Write the result to `data/4-days-cleaned`. - Do not omit minor names because they seem unimportant. If a name-like phrase appears in the raw day and might later be searched, preserve it in the appropriate final section with uncertainty markers where needed. - Preserve uncertainty and variant spellings from the source. Do not silently correct uncertain names. - Do not invent motivations, explanations, or causal links not present in the source notes. +- If audio and handwritten notes conflict, preserve the conflict or uncertainty rather than silently choosing one source. Prefer exact audio phrasing for spoken statements and handwritten notes for page/day markers and concise spelling checks unless the transcript is clearer. - Do not remove odd details just because they seem minor; minor details often become important later. - If something is unclear, mark it as `[unclear]` or `[uncertain: ...]`. @@ -60,6 +65,8 @@ day: <day> date: <date if known, otherwise unknown> source_pages: - <page number if known> +source_audio_transcripts: + - <session id or path if audio-backed> complete: true --- diff --git a/.agents/skills/dnd-ingest-audio-transcript/SKILL.md b/.agents/skills/dnd-ingest-audio-transcript/SKILL.md new file mode 100644 index 0000000..dfd241d --- /dev/null +++ b/.agents/skills/dnd-ingest-audio-transcript/SKILL.md @@ -0,0 +1,60 @@ +# Skill: D&D Ingest Audio Transcript + +Use this skill to normalize a full session transcript into `data/2-audio-transcripts` so it can become the primary source for audio-backed campaign days. + +## Inputs + +- Raw transcript text supplied by the user, or an external transcript file such as `/home/bas/mnt/shared/D&D Sessions/2026-05-12/session17.txt`. +- Optional raw audio file or external audio path. +- Existing transcript files: `data/2-audio-transcripts/*.md`. + +## Outputs + +- `data/2-audio-transcripts/<session>.md`, preferably `session-YYYY-MM-DD.md` when the recording date is known. +- Optional lightweight audio pointer files in `data/1-audio` when raw audio is stored outside git. + +## Idempotency + +- Do not overwrite an existing transcript file unless the user explicitly asks. +- If the same transcript is already normalized, report that it was skipped. +- If the session date, session identifier, or source path is ambiguous, ask the user before writing. + +## Workflow + +1. Determine a stable session identifier from the recording date, transcript path, or user-provided context. +2. Create or update `data/2-audio-transcripts/<session>.md` with YAML-style metadata and the complete transcript text. +3. Preserve timestamps where present. +4. If timestamps are absent, preserve the original transcript order exactly and do not invent timestamps. +5. Preserve speaker labels where present. +6. If speaker labels are missing or unreliable, do not guess unless the source makes the speaker obvious. Use `[uncertain speaker]` only when needed. +7. Keep table chatter in the raw transcript. Filtering happens later during source-packet and cleaned-narrative stages. +8. Record the external transcript source path and audio source path in metadata when known. + +## Output Format + +```markdown +--- +session: session-YYYY-MM-DD +audio_source: /external/path/or/data/1-audio/file.m4a +transcript_source: /external/path/session.txt +page_range: unknown +day_range: unknown +status: raw-transcript +--- + +# Transcript + +<full transcript text> +``` + +If the transcript can be confidently associated with pages or days at ingest time, fill in `page_range` and `day_range`. Otherwise leave them as `unknown` and let the alignment stage resolve them. + +## Completion Report + +When finished, report: + +- Transcript file created or skipped. +- Session identifier used. +- Source transcript and audio paths recorded. +- Whether timestamps and speaker labels were present. +- Any page/day alignment still needed. diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index b3acda6..1e4d26b 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -1,14 +1,16 @@ # Skill: D&D Notes Pipeline -Use this skill to coordinate the full Pentacity handwritten notes processing pipeline. +Use this skill to coordinate the full Pentacity campaign notes processing pipeline. Earlier material is handwritten-note based. From page 293/294 onward, or any point explicitly confirmed as audio-backed, full session audio transcripts become the primary source and handwritten notes become the alignment, verification, spelling, item-list, and day-boundary source. ## Pipeline Stages 1. `dnd-transcribe-pages`: `data/1-source` -> `data/2-pages` -2. `dnd-split-pages-into-days`: `data/2-pages` -> `data/3-days` -3. `dnd-clean-day-narrative`: `data/3-days` -> `data/4-days-cleaned` -4. `dnd-retrospective-context`: later pages/days -> sourced retrospective context and regenerated earlier cleaned days -5. `dnd-build-wiki`: `data/4-days-cleaned` -> interlinked Markdown wiki entries in `data/6-wiki` +2. `dnd-ingest-audio-transcript`: raw recordings or external transcript files -> `data/2-audio-transcripts` +3. `dnd-align-audio-transcript`: `data/2-audio-transcripts` + `data/2-pages` -> `data/2-audio-index` +4. `dnd-split-pages-into-days`: `data/2-pages` plus audio alignment/transcripts where available -> `data/3-days` +5. `dnd-clean-day-narrative`: `data/3-days` -> `data/4-days-cleaned` +6. `dnd-retrospective-context`: later pages/days -> sourced retrospective context and regenerated earlier cleaned days +7. `dnd-build-wiki`: `data/4-days-cleaned` -> interlinked Markdown wiki entries in `data/6-wiki` ## Core Rule @@ -16,6 +18,12 @@ The pipeline is incremental. Never reprocess existing outputs unless the user ex The day-based stages intentionally lag one complete in-game day behind image/page processing. Do not split or clean the latest apparent day until a source page or transcription clearly shows the next in-game day starting. +For audio-backed material, the same lag rule applies, but a confirmed `data/2-audio-index/<session>.md` day boundary may serve as the completeness marker. Do not use an unaligned transcript alone to split days unless the user explicitly confirms the boundary. + +When audio begins mid-day, do not split the in-game day at the source transition. Keep one `data/3-days/<day>.md` file and record mixed source coverage in metadata, such as handwritten primary coverage before page 293 and audio primary coverage afterward. + +When the user asks to adopt audio-backed processing for already processed material from page 293/294 onward, it is appropriate to reprocess the affected raw day packets, cleaned narratives, and wiki entries because the audio transcript is a better primary source than the previous page-only packets. + The retrospective process may rewrite earlier cleaned days with context obtained from later pages or days. If a later page clarifies an earlier day, record sourced context in `data/5-retrospective/<day>.txt`, then regenerate the affected cleaned day from the raw day plus that context. The Everchard breweries detail from page 4 is the model example: the regenerated Day 1 summary should simply include breweries in Everchard's description, without mentioning page 4, later context, or regeneration. If the target is unclear, record the pending update separately. The wiki process ingests cleaned day narratives after cleaning and after any retrospective regenerations. It may create `data/6-wiki` and category directories only when writing real wiki content. Do not pre-create empty wiki category directories or placeholder files. @@ -25,27 +33,56 @@ The wiki process ingests cleaned day narratives after cleaning and after any ret 1. Inspect the repository layout and confirm the expected data directories exist. 2. Identify unprocessed source images in `data/1-source`. 3. Run the page transcription stage for unprocessed images. -4. Identify page transcriptions that have not yet been assigned to day files. -5. Determine which in-game days are confirmed complete by locating the clear start of the next in-game day. -6. Run the day-splitting stage only for missing confirmed-complete day files. -7. Identify confirmed-complete raw day files without matching cleaned outputs. -8. Run the cleaned narrative stage one confirmed-complete day at a time. -9. Review newly processed pages and cleaned days for retrospective facts that clarify earlier cleaned day narratives. -10. Run the retrospective context stage for clear, sourceable updates, including regenerating affected cleaned days. -11. Identify cleaned day files that need wiki ingestion or re-ingestion because they are newly created or were regenerated by retrospective context. -12. Run the wiki-building stage for those cleaned day files, requiring exhaustive first-pass coverage of people, places, factions, items, aliases, plot hooks, state changes, and other searchable material. The wiki stage must audit each cleaned day's mention/resource/open-thread sections and account for every subject as a standalone page, existing updated page, alias, rollup/index entry, already-covered specific page, or user-confirmation item. -13. Skip and report the latest apparent day if no following day marker exists yet. -14. Stop and ask the user whenever a page number, day boundary, completeness marker, retrospective target day, wiki entity merge, or filename would be uncertain. +4. Identify newly available audio transcripts or external transcript files that should be copied or normalized into `data/2-audio-transcripts`. +5. Preserve timestamps where available and add transcript metadata, including session identifier, audio source or external path, known page range, and known day range. +6. Create or update `data/2-audio-index` alignment files that map transcript timestamp ranges to page ranges and in-game days. +7. Identify page transcriptions and audio transcript ranges that have not yet been assigned to day files. +8. Determine which in-game days are confirmed complete by locating the clear start of the next in-game day in pages or confirmed audio alignment. +9. Run the day-splitting/source-packet stage only for missing confirmed-complete day files, or for explicitly requested audio-backed regeneration. +10. Identify confirmed-complete raw day files without matching cleaned outputs, plus explicitly requested audio-backed regenerations. +11. Run the cleaned narrative stage one confirmed-complete day at a time. +12. Review newly processed pages, audio transcripts, and cleaned days for retrospective facts that clarify earlier cleaned day narratives. +13. Run the retrospective context stage for clear, sourceable updates, including regenerating affected cleaned days. +14. Identify cleaned day files that need wiki ingestion or re-ingestion because they are newly created, audio-regenerated, or were regenerated by retrospective context. +15. Run the wiki-building stage for those cleaned day files, requiring exhaustive first-pass coverage of people, places, factions, items, aliases, plot hooks, state changes, and other searchable material. The wiki stage must audit each cleaned day's mention/resource/open-thread sections and account for every subject as a standalone page, existing updated page, alias, rollup/index entry, already-covered specific page, or user-confirmation item. +16. Skip and report the latest apparent day if no following day marker exists yet. +17. Stop and ask the user whenever a page number, audio session identity, day boundary, transcript/page alignment, completeness marker, retrospective target day, wiki entity merge, or filename would be uncertain. + +## Audio Transcript Conventions + +- Store normalized transcripts in `data/2-audio-transcripts/session-YYYY-MM-DD.md` when the recording date is known. +- If the transcript source is outside the repository, such as `/home/bas/mnt/shared/D&D Sessions/2026-05-12/session17.txt`, copy or normalize the transcript text into the repository and record the external source path in metadata. Do not depend on external mounted paths as the only copy of campaign source text. +- Store large raw audio files in `data/1-audio` only if appropriate for git. Otherwise store a small metadata pointer in `data/1-audio` that records the external location, recording date, duration, and transcript file. +- Use `data/2-audio-index/<session>.md` to map transcript timestamp ranges, or approximate text ranges when timestamps are absent, to pages and days. +- If a transcript has no timestamps, preserve the full text order and align by scene anchors, page events, NPC names, travel transitions, rests, and day markers from handwritten notes. + +Recommended transcript metadata: + +```markdown +--- +session: session-2026-05-12 +audio_source: /home/bas/mnt/shared/D&D Sessions/2026-05-12/session17.m4a +transcript_source: /home/bas/mnt/shared/D&D Sessions/2026-05-12/session17.txt +page_range: unknown +day_range: unknown +status: raw-transcript +--- + +# Transcript +``` ## User Confirmation Triggers Ask the user before proceeding if: - A source image's page number cannot be confidently read from the top-right corner. +- An audio transcript cannot be confidently assigned to a session identifier, page range, or in-game day range. - Two source images appear to have the same page number. - A day marker is illegible or ambiguous. +- Audio or notes suggest a day change from sleep, a long rest, waking up, travel rest, or table talk, but the actual in-game day switchover has not been confirmed by the user. - A page appears to contain notes for multiple days but the split point is unclear. - The next-day marker needed to prove a day is complete is missing, illegible, or ambiguous and the user wants to override the lag rule. +- Audio and handwritten notes disagree in a way that changes chronology, day boundaries, major facts, or who said/did something important. - A later clarification appears relevant to an earlier day but the correct target day is uncertain. - Wiki ingestion finds two entries that may be the same entity, but the merge is uncertain from the cleaned day sources. - An output file already exists and would need to be overwritten. @@ -53,7 +90,9 @@ Ask the user before proceeding if: ## Quality Checks - After transcription, verify that every newly processed image has a corresponding `data/2-pages/<page>.txt` file. -- After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. +- After audio ingest, verify that every normalized transcript has metadata and is stored under `data/2-audio-transcripts`. +- After audio alignment, verify that every audio-backed day has a transcript reference, page range or uncertainty note, and day segment in `data/2-audio-index`. +- After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages` or a confirmed audio alignment boundary. - After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.md` file and was confirmed complete before cleaning. - After retrospective updates, verify that each recorded context item has a source reference, does not duplicate an existing note, any affected cleaned day was regenerated from the raw day plus the retrospective context, and the cleaned day does not expose retrospective source references. - After wiki building, verify that new or updated wiki entries cite cleaned day sources, use valid relative links, preserve uncertainty and variant spellings, that stateful query pages distinguish current/resolved/transferred/unclear statuses, that no empty category directories or placeholder pages were created, and that every subject in the ingested cleaned days' mention/resource/open-thread sections has been accounted for in the wiki or explicitly flagged for user confirmation. @@ -64,6 +103,8 @@ Ask the user before proceeding if: At the end of a pipeline run, report: - New page transcriptions created. +- New audio transcripts ingested or normalized. +- New audio/page alignment files created or updated. - New raw day files created. - New cleaned day narratives created. - Retrospective context recorded, cleaned days regenerated, or updates skipped. diff --git a/.agents/skills/dnd-split-pages-into-days/SKILL.md b/.agents/skills/dnd-split-pages-into-days/SKILL.md index b61eca7..d449671 100644 --- a/.agents/skills/dnd-split-pages-into-days/SKILL.md +++ b/.agents/skills/dnd-split-pages-into-days/SKILL.md @@ -1,12 +1,14 @@ # Skill: D&D Split Pages Into Days -Use this skill to combine page transcriptions from `data/2-pages` into one raw notes file per in-game day in `data/3-days`. +Use this skill to combine source material into one raw source packet per in-game day in `data/3-days`. Before audio coverage this combines page transcriptions from `data/2-pages`. From page 293/294 onward, or any explicitly audio-backed point, it should fuse audio transcripts with page transcriptions, using audio as the primary factual source and handwritten notes for day boundaries, alignment, spelling checks, item lists, and verification. -This stage intentionally lags one in-game day behind page transcription. A day must not be written until the transcriptions contain a clear start marker for the following in-game day. +This stage intentionally lags one in-game day behind source transcription. A day must not be written until the source material contains a clear start marker for the following in-game day, or an audio alignment file explicitly confirms the boundary. ## Inputs - Page transcriptions: `data/2-pages/*.txt` +- Audio transcripts, when available: `data/2-audio-transcripts/*.md` +- Audio/page alignment files, when available: `data/2-audio-index/*.md` - Existing day files: `data/3-days/*.md` ## Outputs @@ -19,12 +21,13 @@ This stage intentionally lags one in-game day behind page transcription. A day m - Do not reprocess or overwrite an existing `data/3-days/<day>.md` file unless the user explicitly asks. - If only some days are missing, process only the missing days. - If a page spans an existing day and a missing day, preserve the existing day and only write the missing day after confirming the boundary is clear. -- Do not create a day file for the latest apparent in-game day unless a later page clearly shows the next day starting. +- Do not create a day file for the latest apparent in-game day unless a later page clearly shows the next day starting, or an audio alignment file explicitly confirms the boundary. ## Completeness Requirement - Treat an in-game day as complete only when the source transcriptions include an unambiguous marker for the start of the next in-game day. -- The next-day marker may appear on the same page or a later page, but it must be visible in `data/2-pages` before writing the previous day to `data/3-days`. +- The next-day marker may appear on the same page or a later page, but it must be visible in `data/2-pages` before writing the previous day to `data/3-days`, unless an audio alignment file explicitly confirms the boundary. +- If the apparent marker is based on sleep, a long rest, waking up, travel rest, or table talk such as "it's a new day," ask the user to confirm whether that is an actual in-game day switchover before using it as a boundary. - If the current latest day has notes but no confirmed next-day marker, leave it unprocessed and report it as pending more source pages. - If the next-day marker is present but ambiguous, ask the user before writing any affected day files. @@ -38,14 +41,16 @@ This stage intentionally lags one in-game day behind page transcription. A day m ## Workflow 1. List `data/2-pages/*.txt` and sort them by numeric page number. -2. Read only the page files needed to identify unprocessed days. -3. Identify in-game day starts and day transitions from headings or note text. -4. Determine which days are confirmed complete by finding the clear start of the following in-game day. -5. Preserve text that appears before the first explicit day marker by assigning it to the current known day only if the context is clear. If unclear, ask the user. -6. Combine all page text belonging to each confirmed-complete in-game day. -7. Write one file per missing confirmed-complete day in `data/3-days/<day>.md`. -8. Leave the latest apparent day unwritten if no following day marker exists yet. -9. Do not clean, rewrite, or narrativize the text at this stage. +2. List available `data/2-audio-transcripts/*.md` and `data/2-audio-index/*.md` files. +3. Read only the page, transcript, and alignment files needed to identify unprocessed days. +4. Identify in-game day starts and day transitions from headings, note text, and confirmed alignment files. +5. Determine which days are confirmed complete by finding the clear start of the following in-game day. +6. Preserve text that appears before the first explicit day marker by assigning it to the current known day only if the context is clear. If unclear, ask the user. +7. For page-only days, combine all page text belonging to each confirmed-complete in-game day. +8. For audio-backed days, write a fused source packet: summarize the audio transcript chronologically as the primary event log, then add handwritten-note cross-checks, page markers, uncertain spellings, conflicts, and source excerpts where they preserve exact phrasing. +9. Write one file per missing confirmed-complete day in `data/3-days/<day>.md`. +10. Leave the latest apparent day unwritten if no following day marker exists yet. +11. Do not produce polished narrative prose at this stage; keep this as a source packet for the cleaning stage. ## Output Format @@ -65,9 +70,41 @@ complete: true Then include the relevant transcribed notes for that day. +For audio-backed days, use source-aware metadata and headings: + +```markdown +--- +day: <day> +date: <date if known, otherwise unknown> +complete: true +primary_source: audio +source_pages: + - data/2-pages/<page>.txt +source_audio_transcripts: + - data/2-audio-transcripts/<session>.md +source_audio_alignment: + - data/2-audio-index/<session>.md +source_coverage: + handwritten_primary: "pages <range>" + audio_primary: "pages <range>" +--- + +# Audio-Derived Event Log + +# Handwritten Notes Cross-Check + +# Conflicts and Uncertainties + +# Source Excerpts +``` + +Include `# Source Excerpts` only for exact NPC wording, table decisions, or transcript passages that are especially useful for later cleaning. Do not copy unrelated table chatter into the source packet unless it clarifies an in-game fact or ruling. + ## Boundary Rules - When a new in-game day starts mid-page, split the text at that point. +- When audio coverage begins mid-day, do not split the day solely because the source type changes. Keep one day file and record mixed coverage in metadata. +- Do not infer a day boundary solely from sleeping, taking a long rest, waking up, or table discussion about whether it is a new day. Treat these as possible markers requiring user confirmation unless the day number/date transition is explicit and unambiguous. - If a day transition is implied but not explicit, include a note like `[uncertain day boundary]` and ask the user before writing if the uncertainty affects file boundaries. - Do not use an implied transition as the completeness proof for the previous day. The next day must be clearly shown. - Do not write partial current-day notes just because they are the newest available notes. diff --git a/AGENTS.md b/AGENTS.md index 9a629bf..658c6d1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,12 +1,15 @@ # Pentacity Notes Agent Instructions -This repository stores and processes handwritten Dungeons & Dragons campaign notes for the Pentacity campaign. The goal is to turn source page images into searchable, chronologically reliable campaign records while preserving facts, names, items, clues, factions, dates, rewards, odd phrasing, and unresolved mysteries. +This repository stores and processes Dungeons & Dragons campaign records for the Pentacity campaign. Earlier records are based on handwritten source page images. From the point where full session recordings are available, audio transcripts become the primary source, with handwritten notes used to align, verify, augment, and mark in-game day boundaries. The goal is to turn all sources into searchable, chronologically reliable campaign records while preserving facts, names, items, clues, factions, dates, rewards, odd phrasing, table decisions, exact NPC phrasing, and unresolved mysteries. ## Repository Layout - `data/1-source/`: handwritten source note images. New pages are added here over time. +- `data/1-audio/`: optional raw session audio files or lightweight pointers/metadata for recordings stored outside git. - `data/2-pages/`: one transcription file per handwritten page, named `data/2-pages/<page>.txt`. -- `data/3-days/`: one raw combined notes file per in-game day, named `data/3-days/<day>.md`. +- `data/2-audio-transcripts/`: one timestamped transcript file per recorded session, named `data/2-audio-transcripts/session-YYYY-MM-DD.md` when the recording date is known, or another stable session identifier if not. +- `data/2-audio-index/`: transcript alignment files mapping audio transcript ranges to source pages and in-game days. +- `data/3-days/`: one raw combined source packet per in-game day, named `data/3-days/<day>.md`. Before audio coverage this is page-derived raw notes; for audio-backed days this should be a fused packet with audio as the primary source and page notes as verification/alignment. - `data/4-days-cleaned/`: one cleaned narrative file per in-game day, named `data/4-days-cleaned/<day>.md`. - `data/5-retrospective/`: sourced retrospective context files for later information that should be used when regenerating earlier cleaned days. - `data/6-wiki/`: interlinked Markdown wiki entries extracted from cleaned day narratives. This directory is created and organized by the wiki-building stage when there is wiki content to write. @@ -17,8 +20,13 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - Do not reprocess an image, page, day, or cleaned day if the corresponding output already exists, unless the user explicitly asks to reprocess or overwrite it. - If a page number cannot be read from the top-right corner of a source image, or the guess is uncertain, ask the user to provide or confirm the page number before writing the transcription. - If an in-game day boundary is ambiguous, ask the user for confirmation before writing or splitting the affected day files. +- If audio or notes suggest a possible day change because the party sleeps, takes a long rest, wakes up, or says it is a new day, ask the user to confirm whether that moment is an actual in-game day switchover before using it as a boundary. Neither audio transcripts nor handwritten/page transcripts are guaranteed to be fully accurate on day transitions. - Do not run day-specific processing for the latest apparent in-game day unless there is a later source page or transcription that clearly shows the next in-game day starting. The day-based pipeline intentionally lags one complete day behind image/page processing. -- Treat a day as complete only when the next day start is visible and unambiguous in the transcribed notes. If the next day has not yet appeared, leave the current day unprocessed in `data/3-days` and `data/4-days-cleaned`. +- Treat a day as complete only when the next day start is visible and unambiguous in the transcribed handwritten notes or in an explicitly confirmed audio alignment file. If the next day has not yet appeared or been confirmed, leave the current day unprocessed in `data/3-days` and `data/4-days-cleaned`. +- From page 293/294 onward, or any later point explicitly confirmed as audio-backed, prefer full audio transcripts as the primary factual source. Use handwritten page transcriptions to supply day markers, page alignment, corrected spellings, item/reward checklists, terse facts missed in conversation, and source cross-checks. +- For audio-backed material, do not rely on the handwritten notes alone unless the user explicitly asks for a notes-only pass or the matching audio transcript is unavailable. +- Preserve conversational detail from audio when it affects the record: exact NPC statements, player decisions, bargains, warnings, clues, travel reasoning, misunderstandings corrected at the table, and descriptions that are richer than the handwritten notes. +- Do not preserve unrelated table chatter in cleaned narratives unless it clarifies an in-game fact, a ruling, a name, a source correction, or a player decision. - Preserve chronology. Do not reorder events except to group text under the correct in-game day. - The retrospective process is allowed to rewrite older cleaned day narratives with context obtained from later pages or days. Record sourced retrospective context first, then intentionally regenerate the affected cleaned day using the original raw day notes plus the new retrospective context. The regenerated cleaned day should fold this information in transparently, as if it had been available during the original cleaning pass. - Preserve uncertainty. If source notes use uncertain names or spellings, keep the uncertainty rather than silently normalizing it. Examples: `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, `Velenth/Valenth`. @@ -35,11 +43,62 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not Use the skills in `.agents/skills` for repeatable work: 1. `dnd-transcribe-pages`: transcribe unprocessed handwritten images from `data/1-source` into `data/2-pages/<page>.txt`. -2. `dnd-split-pages-into-days`: split only confirmed-complete day transcriptions from `data/2-pages` into per-day files in `data/3-days`. -3. `dnd-clean-day-narrative`: clean only confirmed-complete raw days from `data/3-days` into detailed story-based narratives in `data/4-days-cleaned`. -4. `dnd-retrospective-context`: record later clarifications and regenerate affected cleaned day narratives with the new sourced context. -5. `dnd-build-wiki`: ingest cleaned day narratives from `data/4-days-cleaned` into an interlinked Markdown wiki in `data/6-wiki`. -6. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. +2. `dnd-ingest-audio-transcript`: store or normalize full session transcripts in `data/2-audio-transcripts`, preserving timestamps where available. +3. `dnd-align-audio-transcript`: create `data/2-audio-index/<session>.md` files that map transcript ranges to page ranges and in-game day ranges, using handwritten notes as the main day-boundary source. +4. `dnd-split-pages-into-days`: split only confirmed-complete material into per-day files in `data/3-days`. For audio-backed days, write fused source packets using audio as primary and page notes as cross-checks instead of page-only raw notes. +5. `dnd-clean-day-narrative`: clean only confirmed-complete raw day packets from `data/3-days` into detailed story-based narratives in `data/4-days-cleaned`. +6. `dnd-retrospective-context`: record later clarifications and regenerate affected cleaned day narratives with the new sourced context. +7. `dnd-build-wiki`: ingest cleaned day narratives from `data/4-days-cleaned` into an interlinked Markdown wiki in `data/6-wiki`. +8. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. + +## Audio-Backed Processing + +- Audio transcript files should be Markdown with metadata at the top and timestamped transcript text below. Prefer speaker labels when available, but preserve timestamps even when speaker diarization is imperfect. +- Alignment files should record the transcript file, audio source or external recording path if known, source pages, in-game day segments, transcript timestamp ranges, and any known uncertainty. +- `data/3-days` files for audio-backed days should include metadata fields such as `primary_source: audio`, `source_audio_transcripts`, `source_audio_alignment`, and `source_coverage` when helpful. +- If audio begins mid-day, keep the in-game day as one file and describe mixed coverage in metadata, for example `handwritten_primary: pages 281-292` and `audio_primary: pages 293-315`. +- For the first audio-backed material around pages 293/294, reprocessing from the affected day onward is appropriate when the user asks to use audio, because the audio is a higher-fidelity source than the existing page-only raw notes. +- When regenerating a cleaned day from an audio-backed source packet, the cleaned file should not expose pipeline mechanics, but it may cite both page numbers and transcript/session identifiers in metadata. + +Recommended audio transcript format: + +```markdown +--- +session: session-YYYY-MM-DD +audio_source: data/1-audio/session-YYYY-MM-DD.m4a +page_range: + - 293 + - 315 +day_range: + - day-57 +status: raw-transcript +--- + +# Transcript + +[00:00:12] GM: ... +[00:00:18] Dirk: ... +``` + +Recommended alignment format: + +```markdown +--- +session: session-YYYY-MM-DD +transcript: data/2-audio-transcripts/session-YYYY-MM-DD.md +source_pages: + - data/2-pages/293.txt +day_segments: + - day: day-57 + transcript_range: "00:00:00-03:42:10" + page_range: "293-315" +--- + +# Alignment Notes + +- Page 293 begins around the return to the throne room. +- Handwritten notes provide the day boundary and spelling checks. +``` ## Retrospective Context diff --git a/data/2-audio-index/audio-backed-pending-day-58.md b/data/2-audio-index/audio-backed-pending-day-58.md new file mode 100644 index 0000000..4e5dbf4 --- /dev/null +++ b/data/2-audio-index/audio-backed-pending-day-58.md @@ -0,0 +1,60 @@ +--- +status: partially-confirmed +transcripts: + - data/2-audio-transcripts/session-2026-03-24.md + - data/2-audio-transcripts/session-2026-03-31.md + - data/2-audio-transcripts/session-2026-04-07.md + - data/2-audio-transcripts/session-2026-04-14.md + - data/2-audio-transcripts/session-2026-04-21.md + - data/2-audio-transcripts/session-2026-04-28.md + - data/2-audio-transcripts/session-2026-05-05.md +source_pages: + - data/2-pages/316.txt + - data/2-pages/317.txt + - data/2-pages/318.txt + - data/2-pages/319.txt + - data/2-pages/320.txt + - data/2-pages/321.txt + - data/2-pages/322.txt + - data/2-pages/323.txt + - data/2-pages/324.txt + - data/2-pages/325.txt + - data/2-pages/326.txt + - data/2-pages/327.txt + - data/2-pages/328.txt + - data/2-pages/329.txt +confirmed_day_segments: + - day: day-58 + transcript_range: session-2026-03-24 through session-2026-05-05 + page_range: "316-329" + status: complete + - day: day-59 + transcript_range: session-2026-05-12 start, already in progress + page_range: "330 onward" + status: pending-full-page-transcripts + - day: day-60 + transcript_range: session-2026-05-12 after confirmed two-day-travel overnight boundary + page_range: pending pages after 331 + status: pending-full-page-transcripts +--- + +# Day 58 Alignment + +- `session-2026-03-24.md` begins day-58 and likely covers pages 316-318. +- `session-2026-03-31.md` likely covers pages 318-320. +- `session-2026-04-07.md` likely covers page 320. +- `session-2026-04-14.md` likely covers pages 320-321. +- `session-2026-04-21.md` likely covers pages 321-324. +- `session-2026-04-28.md` likely covers pages 324-327. +- `session-2026-05-05.md` explicitly says the current day is day 58 and likely covers pages 327-329, ending before the confirmed day-59 marker on page 330. + +# Confirmed Later Boundaries + +- The user confirmed that day-59 starts on page 330, at the note that Eliana sleeps really well, so `session-2026-05-12.md` starts on day-59 already in progress. +- The user confirmed that the two-day travel/rest in `session-2026-05-12.md` creates another day boundary, likely day-59 to day-60. +- The user confirmed that `session-2026-05-12.md` should be treated as audio-only coverage until full page transcripts after page 331 are available. + +# Pending Work + +- Day-58 has been processed from confirmed complete pages 316-329 and sessions 2026-03-24 through 2026-05-05. +- Defer day-59 and day-60 day files until full page transcripts after page 331 arrive, unless the user explicitly asks for an audio-only interim packet. diff --git a/data/2-audio-index/session-2026-01-20.md b/data/2-audio-index/session-2026-01-20.md new file mode 100644 index 0000000..8667d96 --- /dev/null +++ b/data/2-audio-index/session-2026-01-20.md @@ -0,0 +1,27 @@ +--- +session: session-2026-01-20 +transcript: data/2-audio-transcripts/session-2026-01-20.md +source_pages: + - data/2-pages/293.txt + - data/2-pages/294.txt + - data/2-pages/295.txt + - data/2-pages/296.txt + - data/2-pages/297.txt + - data/2-pages/298.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "293-298" + status: aligned +--- + +# Alignment Notes + +- Begins after the necklace is restored and the party chooses the offering bowl. +- Covers the water painting, Globule, jellyfish-headed guards, the tropical clam, Morgana's icy hut, the conch entity / Lord of High Waters, Mourning, corridor rooms, Errol duplicate, bowl rooms, sacrifice clues, water-baby globes, and jellyfish children. +- Page 293 begins at the offering-bowl painting sequence; pages 294-298 cover the water-domain exploration and Noxia-side rooms. + +# Uncertainties + +- Transcript has no timestamps and rough spellings: Hydran/Hydrus, Noxia/Noxie, Myriad/marid, Mourning/Morning, Envoi/Invar. +- Pigeon/bird chronology and exact identities remain uncertain; preserve source phrasing where relevant. diff --git a/data/2-audio-index/session-2026-01-27.md b/data/2-audio-index/session-2026-01-27.md new file mode 100644 index 0000000..52d24d8 --- /dev/null +++ b/data/2-audio-index/session-2026-01-27.md @@ -0,0 +1,26 @@ +--- +session: session-2026-01-27 +transcript: data/2-audio-transcripts/session-2026-01-27.md +source_pages: + - data/2-pages/298.txt + - data/2-pages/299.txt + - data/2-pages/300.txt + - data/2-pages/301.txt + - data/2-pages/302.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "298-302" + status: aligned +--- + +# Alignment Notes + +- Starts with the jellyfish children and dead jellyfish parents. +- Covers the Rose of Reincarnation, Globule's release, the conch entity being identified as a con artist, the Lord of Tar / Stone Sages / water-baby globes, Dirk and Morgana in the lake painting, Hydran's underwater side, the Pact Keepers agreement, the merlady / Hydran keeper, Hydran's information rooms, the final bowl, and return to the throne room with only the fire painting remaining. + +# Uncertainties + +- Pigeon says Morgana fixed its wing "30 suns ago" while page notes record 300 suns. +- The vessel location sounds like Sancery/Sankery and needs spelling confirmation. +- Hydran/Hydrus and Kasha/Kesha/Cashew spellings vary in transcript. diff --git a/data/2-audio-index/session-2026-02-03.md b/data/2-audio-index/session-2026-02-03.md new file mode 100644 index 0000000..2426e25 --- /dev/null +++ b/data/2-audio-index/session-2026-02-03.md @@ -0,0 +1,26 @@ +--- +session: session-2026-02-03 +transcript: data/2-audio-transcripts/session-2026-02-03.md +source_pages: + - data/2-pages/302.txt + - data/2-pages/303.txt + - data/2-pages/304.txt + - data/2-pages/305.txt + - data/2-pages/306.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "302-306" + status: aligned +--- + +# Alignment Notes + +- Begins after returning from Hydran's realm with Globule and the bowl. +- Covers restoring the bowl, entering the fire painting, Sultan Azar Nuri / Azanari's realm, the tongs bargain, side rooms, imp merchant, Invar's Stolchar goblet, restoring the wall hanging, and entering the past Brass City marketplace. + +# Uncertainties + +- Sultan name appears as Azanari in transcript and Azar Nuri in page notes. +- Haze/Nare/Thace and Stolchar spellings vary. +- The Sultan's bargain is dangerous and should be preserved as an unresolved pact, not normalized into a safe agreement. diff --git a/data/2-audio-index/session-2026-02-10.md b/data/2-audio-index/session-2026-02-10.md new file mode 100644 index 0000000..8a69013 --- /dev/null +++ b/data/2-audio-index/session-2026-02-10.md @@ -0,0 +1,25 @@ +--- +session: session-2026-02-10 +transcript: data/2-audio-transcripts/session-2026-02-10.md +source_pages: + - data/2-pages/306.txt + - data/2-pages/307.txt + - data/2-pages/308.txt + - data/2-pages/309.txt + - data/2-pages/310.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "306-310" + status: aligned +--- + +# Alignment Notes + +- Covers old Brass City, Serpus / Serpus Alsepherus and the tapestry, return to the current citadel, restoring the tongs, entering the light / Grain realm, recovering the cat spirit and Bruce, Attabre's etiquette rooms, ninth-birthday meal memories, major Pact/barrier exposition, the stone cat, and preparation for the dark realm. + +# Uncertainties + +- Serpus spelling and dragon-page warning require preservation as uncertain. +- Several names are transcript-garbled: Ledus, Throngore, Valenth Hyde, Onwe, Carnox. +- The long rest inside Attabre's halls is intra-day because only minutes pass when the party returns; it is not treated as a day boundary. diff --git a/data/2-audio-index/session-2026-02-17.md b/data/2-audio-index/session-2026-02-17.md new file mode 100644 index 0000000..4b63f72 --- /dev/null +++ b/data/2-audio-index/session-2026-02-17.md @@ -0,0 +1,23 @@ +--- +session: session-2026-02-17 +transcript: data/2-audio-transcripts/session-2026-02-17.md +source_pages: + - data/2-pages/310.txt + - data/2-pages/311.txt + - data/2-pages/312.txt + - data/2-pages/313.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "310-313" + status: aligned +--- + +# Alignment Notes + +- Covers the descent into the dark portal, Throngore's throne room, the gore room, Throngore's bargain, the stone tail, the skull path, Hydran's seashell clue, the lying cockroach, Shylow, the alternate prison tower, black wailing discs, and entering the prison with the suspicious goat-man guide. + +# Uncertainties + +- Sauver/Sawyer, Shylow/Shiloh, Throngore/Throngor, and Shevolt/Santiago are uncertain variants. +- Throngore's instruction to stay on the path conflicts with Hydran's instruction to step off the beaten path; the seashell and lying cockroach support the off-path route. diff --git a/data/2-audio-index/session-2026-02-24.md b/data/2-audio-index/session-2026-02-24.md new file mode 100644 index 0000000..115de6a --- /dev/null +++ b/data/2-audio-index/session-2026-02-24.md @@ -0,0 +1,22 @@ +--- +session: session-2026-02-24 +transcript: data/2-audio-transcripts/session-2026-02-24.md +source_pages: + - data/2-pages/313.txt + - data/2-pages/314.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "313-314" + status: aligned +--- + +# Alignment Notes + +- Covers the first major prison-tower combat, Kasha's curse effects, Eliana's silver dragonborn reveal, the pigeon feather cell, Stone Rampart, spiritually cutting wasp blades, smoke bodies, and Geldrin's Scatter. + +# Uncertainties + +- The goat-man guide identity remains uncertain. +- Eliana's former prison cell and pigeon feather are unresolved. +- Healing suppression and death-save disadvantage should be preserved as realm/prison effects. diff --git a/data/2-audio-index/session-2026-03-03.md b/data/2-audio-index/session-2026-03-03.md new file mode 100644 index 0000000..5cc5852 --- /dev/null +++ b/data/2-audio-index/session-2026-03-03.md @@ -0,0 +1,22 @@ +--- +session: session-2026-03-03 +transcript: data/2-audio-transcripts/session-2026-03-03.md +source_pages: + - data/2-pages/313.txt + - data/2-pages/314.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "313-314" + status: aligned +--- + +# Alignment Notes + +- Continues prison-tower combat. +- Covers freeing Stone Rampart, the released goat/demon betrayer, Nuts the squirrel, the dead halfling with the bell, the fire-bearded dwarf blessing, the water cow/bull cell, god/floor key logic, and the god-locked upper door. + +# Uncertainties + +- The goat/demon's exact identity and whether he was the intended target are uncertain. +- The bell's exact destination and conditions are not tested yet. diff --git a/data/2-audio-index/session-2026-03-10.md b/data/2-audio-index/session-2026-03-10.md new file mode 100644 index 0000000..09bdfce --- /dev/null +++ b/data/2-audio-index/session-2026-03-10.md @@ -0,0 +1,21 @@ +--- +session: session-2026-03-10 +transcript: data/2-audio-transcripts/session-2026-03-10.md +source_pages: + - data/2-pages/314.txt + - data/2-pages/315.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "314-315" + status: aligned +--- + +# Alignment Notes + +- Covers the upper prison floors, the amnesiac Water Bull, the dove-headed door opener, Lord Briarthorn, Kasha breaking into the prison tower, the god-locked top door, and the seawater chamber beyond. + +# Uncertainties + +- Attabre / memory key is garbled as a "guitar" key near the end. +- The red-skinned woman and black-robed scholar cells are unresolved in this transcript segment. diff --git a/data/2-audio-index/session-2026-03-17.md b/data/2-audio-index/session-2026-03-17.md new file mode 100644 index 0000000..687e6f5 --- /dev/null +++ b/data/2-audio-index/session-2026-03-17.md @@ -0,0 +1,28 @@ +--- +session: session-2026-03-17 +transcript: data/2-audio-transcripts/session-2026-03-17.md +source_pages: + - data/2-pages/314.txt + - data/2-pages/315.txt + - data/2-pages/316.txt +day_segments: + - day: day-57 + transcript_range: "full transcript, no timestamps" + page_range: "314-315" + status: aligned + - day: day-58 + transcript_range: "not covered; page 316 starts next day" + page_range: "316" + status: boundary-confirmed-by-page +--- + +# Alignment Notes + +- Completes day-57. +- Covers Lord Briarthorn restoring the Water Bull's memory, Globule freeing the merfolk unborn, ringing the bell, return to the mortal throne room, restoring the tail, reviving the ancient tabaxi Council, Hydran and Globule celebrations, Queen Moon Coral's arrival, merfolk support, sending stone, Ring of Fire Resistance, and the party's rest. +- Page 316 explicitly begins `Day 58`, confirming the end of day-57 after this rest. + +# Uncertainties + +- Page 315 says the priestess meeting is tomorrow at 12:30; transcript says morning. Preserve uncertainty. +- Kasha appears as Cash in transcript; Salanus/Soulless/Selanis variants remain uncertain. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index 474a0fe..a014f00 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -2,6 +2,7 @@ day: day-57 date: unknown complete: true +primary_source: mixed source_pages: - data/2-pages/281.txt - data/2-pages/282.txt @@ -38,669 +39,189 @@ source_pages: - data/2-pages/313.txt - data/2-pages/314.txt - data/2-pages/315.txt -source_ranges: - - data/2-pages/281.txt:25-29 - - data/2-pages/282.txt - - data/2-pages/283.txt - - data/2-pages/284.txt - - data/2-pages/285.txt - - data/2-pages/286.txt - - data/2-pages/287.txt - - data/2-pages/288.txt - - data/2-pages/289.txt - - data/2-pages/290.txt - - data/2-pages/291.txt - - data/2-pages/292.txt - - data/2-pages/293.txt - - data/2-pages/294.txt - - data/2-pages/295.txt - - data/2-pages/296.txt - - data/2-pages/297.txt - - data/2-pages/298.txt - - data/2-pages/299.txt - - data/2-pages/300.txt - - data/2-pages/301.txt - - data/2-pages/302.txt - - data/2-pages/303.txt - - data/2-pages/304.txt - - data/2-pages/305.txt - - data/2-pages/306.txt - - data/2-pages/307.txt - - data/2-pages/308.txt - - data/2-pages/309.txt - - data/2-pages/310.txt - - data/2-pages/311.txt - - data/2-pages/312.txt - - data/2-pages/313.txt - - data/2-pages/314.txt - - data/2-pages/315.txt +source_audio_transcripts: + - data/2-audio-transcripts/session-2026-01-20.md + - data/2-audio-transcripts/session-2026-01-27.md + - data/2-audio-transcripts/session-2026-02-03.md + - data/2-audio-transcripts/session-2026-02-10.md + - data/2-audio-transcripts/session-2026-02-17.md + - data/2-audio-transcripts/session-2026-02-24.md + - data/2-audio-transcripts/session-2026-03-03.md + - data/2-audio-transcripts/session-2026-03-10.md + - data/2-audio-transcripts/session-2026-03-17.md +source_audio_alignment: + - data/2-audio-index/session-2026-01-20.md + - data/2-audio-index/session-2026-01-27.md + - data/2-audio-index/session-2026-02-03.md + - data/2-audio-index/session-2026-02-10.md + - data/2-audio-index/session-2026-02-17.md + - data/2-audio-index/session-2026-02-24.md + - data/2-audio-index/session-2026-03-03.md + - data/2-audio-index/session-2026-03-10.md + - data/2-audio-index/session-2026-03-17.md +source_coverage: + handwritten_primary: "pages 281-292" + audio_primary: "pages 293-315" + next_day_marker: "data/2-pages/316.txt line 5: Day 58" --- -# Raw Notes - -## Page 281 - -Day 57 - Black Dragon City in The Underblame - -At 08:00, a council of all towns/states for a treaty to be signed? - -Can ensure Salinas causes no issues. Agreed to get us to the Brass City. Scrolls. Charged shield crystal. Respite in his city. - -## Page 282 - -Buy a newspaper: -- Someone executed for not paying their bar tab. -- Pegaus farm. -- Nothing interesting. - -Infestus' wife is waiting for us. - -Receive powerful shield crystal and scrolls. - -She smashes an orb and a tiny human appears. - -Infestus' wife chants and it turns into a blue dragon. - -Dragon takes us to the Brass City. - -Teleport to just outside and walk over. - -Two people come to greet us. Smoke-skin type scales. Cobra head under his hood. Diplomats. - -"The People" rule the city. - -Excellence of Air left and never came back. - -Inside the walls is very lush. Doesn't seem to be an enslaved city. - -Elf wizards are the cause of many issues. - -Old masters enslaved the labour. - -Best to check at the citadel for our friend, still under the old regime. - -He knows the name Valenth and directs us to Gaol. - -Go and see. - -Lots of air elementals at the citadel. - -Relaxed atmosphere in the city. - -Glowscale seem to be excited and intrigued to see us. - -## Page 283 - -A lot of the slaves were repairing and upkeep of the city. The rest were in the citadel and said to be working on a great weapon. - -There was a rebellion, as slaves wanted bread and they were not allowed to get any. They protested and burst into flames. Was told once their ruler went they would be attacked, but not seen anyone, not even Envy. - -A gem shop owner might know what was being worked on. - -Owner was taken to work there cutting a gem. Disappointed he didn't finish. Facets that Gleam in the Sun, the tabaxi jeweller. This is a place of great elemental power. Fountains etc are all from the plains. - -He was crafting a body out of shield crystal to create a focusing crystal. It is stored in one of the four great minarets. - -Didn't seem to be a weapon. - -Creatures in the towers became unruly after the Excellence left. - -Dirk starts to talk to the fountain. The water wants to go somewhere but doing a very important job; that's what his dad told him. Hydran before he gave him to the blue dragons. Dragons went bad. His dad likes the merfolk but is annoyed by the purple thing. Wants us to fix the babies not going to him. If we sort it out, he will be on our side when it comes to the end. - -Open the door on the right. - -## Page 284 - -We open the doors to the citadel. - -Blue dragons and Trixus. - -Tapestry carpet with a sun that has a thick-set dwarf and a slender woman with a bow. - -See a depiction of Garadwal talking to the Dunnen people with him. - -No evidence of a fire elemental living here. - -Statues lining the corridor are all facing the wall. Turn one around: runs in the streams, high mountainness? Next one: slays foes bravely. Tabaxi with scales, missing one back leg and ears, "fur of night scales of the sky," first princess of the union but slightly cracked. - -Sword is slightly cracked. - -Sword has been made but the person hasn't? Medusa-type spell? - -Weighted idols, jewellery. Rules: gravity and weight, Lord of the Brass City. - -Necklace appears to be carved out of the statue. Could remove, but not quite right. Statue has space for it to go. - -Something hums and lungs for the next one. Gleams in the first light. High priests of Goklhar? Things are separated; take them. - -Fine-dress, holding book and rose in her hand. Brazier on the floor. "Lies in the morning dew," prophet of the light. It can be removed. - -Put a coin in a spot orbiting around the edge. Ignan: "We are close once more. I will help you say his name when you pick him up." - -## Page 285 - -Pick up the cat. Geldrin says There. The cat pops and Haze appears as a big dog. Come to aid us in our travels and still due to our service to his mistress. - -Must not damage anything in the city. Must solve something else. - -Excellence of Air went to the dome as needed something to hint his task to make a trap for Sierra, to trap her so Browning can take her place. - -Haze says, "I forgot something," and brings Bob and Bosh. Still cursed but says he can fix them when we are done. - -Need wizards of the stars to find the sword. - -Six doors at the top of the stairs. - -Haze stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. Haze says this is a control room, which controls planes at once. - -Sword is in the Earth plane, along with Tremon's body. We mustn't leave the citadel when we go there, and it's hard to get back. - -When we go, all the pictures disappear and the room totally changes. - -## Page 286 - -Completely dark and Invar's magic doesn't work. - -Haze makes it work, for Counterspell. - -Earth elemental on the other side of the door. He hasn't had anyone from the prime plane for a long time. Not used to anyone other than tabaxi and cobra men. - -On his table: coal, gold dragon, jagged granite, shield crystal. Are they the next people? Are we the next people? - -Gold dragon is actually silver and exactly like Mama Hartwall. - -Shield crystal: piece of Tremon. - -Coal: wet at the bottom. Geldrin pulls the water out of it. - -Granite has scorch marks on it. - -Door appears when we pick up all the items. - -Tavern the other side of the door?! Filled with cats? Harn? - -A ghost was here last carrying a sword and shield. She wasn't welcome and everyone is welcome here. - -Find a table set for us. Geldrin has a piece of parchment, Scroll of Fireball. - -Everyone seems happy but Morgana feels sad, as though there is something missing. Her salad has a needle and thread under it. Thread has dried blood on it. - -## Page 287 - -A rat comes to Morgana and disintegrates in front of us. Cacophony, met him on page 231, appears as a huge worm and dies. Says it will show her something interesting. - -Her cider starts to swirl and shows a dwarf in a bathroom with runes who is removing his eye. Rubyeye. - -All the cats start staring at us and hiss. The fire burns brighter and then they go back to normal. - -Cat says it is not predetermined and they got rid of something bad that had been following us. - -Dirk puts the coal in the fire and sees an image of a man saving a young girl, and a clever way appears with the rings. - -Small temple, round, by the remains of the Riversmeet bridge and the dwarven bridge. Seward marble around, loads of benches with carving of odd stones, approximately 30. Five unlit candles on the altar. Top temple? - -Try to light the candles but they don't catch. Try to use the granite and it pops like gunpowder when on it. - -Altar has gold statues under it, 10 of them, all different races and missing a dragon. - -Invar uses the torches around to light the candles. Geldrin places the statues of the wizard races by the candles. - -Vision: large round table, seven people, five wizards, Hannah and Icefang. Mama Hartwall angry, holding the blue ball, saying, "This is enough. You can't continue this any more." - -## Page 288 - -It has to stop now. Then we see a silver scale in dirt and a door appears. - -Goliath throne room: thriving city, decadent. Lion-headdress rockmen flank the throne. Someone who looks like Dirk with his sword is made of stone. Lots of pictures: one is a white dragon stood by a river, another of us as we are now, another of a young beautiful sphynx. - -He's got the sword we need, but he has just got it back from a ghost. Wants proof that we are us and how we killed Perodita. Give the granite and vision of Justiciars moving rocks off a dragon's body. - -Tells us to pop back to see the fiery beard chap, Huntmaster Throne. Stone Dirk brought the dome down. - -Four different doorways. Don't pick the one with the moon on it. Thinks they picked the one with the dragon on it. Go through the door behind the throne. - -Four doors: Moon, Dragon Head, Arching Wave, Butterfly. Very well carved. Bell with chain. - -We open the moon door, as the last trinket we have left is the moon crystal. Seems to be Craters Edge through the door. Dirk starts to hear garbled conversations. - -Open dragon door: snow, pine trees, figure in the distance. Strange sense of dread. Remember flying/crashing through pine needles and crashing to the ground, pine needles scratching my scales. - -## Page 289 - -Wave door: water comes through the door. Close it, but a tiny arm bone makes it through the door. - -Sword is through all three doors, but Haze can't smell it when the doors are closed. - -Butterfly door: swampy air, Everchard, smell of Morgana's house, small shed. Drops from the door: small piece of black thread, and the tree is much smaller. Morgana's house looks newer, years before she got the house; thinks it is about 20 years. Send Betty to look in the house. Someone is in there. Magpie stops Betty from looking further. - -It's a younger Chorus. She "made" a baby that was given away. It already had a name. Haze says they all seem a little different from the real place. - -Reopen moon door: black sky, crystal surface changed to the moon? - -Reopen: Brass City, massive stone table, purple rock men with arm and head missing. - -Dragon door: still Pinesprings but different place. Green/yellow flash from the trees and some chatter, then crying: baby dragonborn. - -Geldrin goes through the moon door. Tremon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. - -Dragon room / robed figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. - -## Page 290 - -Geldrin: salamander, expecting a tabaxi, Facets that Gleam in the Sun. Assumes Geldrin is meant to be here, trying to get the facets so that the light goes in but not out. - -Geldrin finds a spot on the body the shard has come from and puts it back. - -All four doors open; no snow or water comes through the door. - -Andy, the moment after the fight with the Mother, sees a woman running, dark-skinned, but the tree behind it too. Then a stone door appears and he charges through the door. - -Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquarius. Keepers of the Pact always welcome here. Lord Hydran said we could come. - -Doors are memories of what we have promised or have done. Seems like they are distractions. - -Dragon door has the smell of the sword. Through the door is a town on a plateau, Provista. Familiar knock, broom transport, from the town. Came out four doors down from my house, but it is 20 years ago. Haze takes us towards my house and the same baby crying. My mum sees a box from Everchard. They were very happy and take it in. Morgana says the Chorus made me. - -## Page 291 - -Reaction, 1 AM, Eliana Hartwall! - -Sword is in my house. It was in the box. Go to the house and try to get the sword. Got the box and there is a sword in the box with some cloths. Morgana finds a small piece of black thread. Chorus's eyes and mouth were sewn shut with black thread. - -Go to town square. Poster about Founder's Day. Picture of Bleakstorm and a Geldrin look-alike, but it wasn't Geldrin. - -The poster was sent via a sending stone. Date 17th March 991. Founding Day is not this date. - -Bleakstorm is in the town hall. Go to him. On the desk is a freshly carved ice sculpture of an auroch. - -Can take us back to Brass City, but wants something from us: personal favour, to save him, just him. First man, and wants to know if Icefang's spirit is still here. It is, as he died in the dome. Wants us to free his spirit. - -Claps his hands and we go back to Brass City, in the plush throne room. But only three pictures on the walls now. - -Go to put the sword back. As it goes into the statue it fixes the cracks. - -## Page 292 - -Bynx calls upon Trixus to ask about the statues, as not sure why we are trying to fix them. They are "the Council." - -Necklace next. Haze takes us back to the throne room. Air picture. - -Dotharl looks different, feels stronger. Haze takes us back into the building down to the room where the statues are in the normal plane. - -Through door: jewelry box. Smells like the right one, but it does also smell like it's further in the room through the other door. - -In the room is a tabaxi playing a piano, wearing a necklace, "Drinker beads of wine." Pickpocket the necklace from her. She takes a five-minute hourglass out and turns it over. - -Go through door into a theatre room. Find a third necklace, all fake ones. Haze can't find the necklace anymore. - -Ruby eyes somewhat glittering, "useless presents." Find the necklace on a coat peg. Dispel the invisibility and make it a real necklace instead of the stone one. - -Checklist box: Bowl checked. Tongs. Necklace checked. Coat. Dragonborn tail crouched fake. Sword checked. - -## Page 293 - -Back to the throne room. Other door is a broom cupboard with a picture of Morgana looking bored and confused. - -Ask to leave back to the statue room. Andy asks to go home and he does. - -Put the necklace back on and it melds to the statue but stays as a necklace. - -Go for the offering bowl next. Back to the throne room. Only two paintings left. Room changed slightly; candelabra now on the ceiling. - -Geldrin disappears after touching the painting. Ends up in my waterskin, shrunken. Use the school biggening juice to get back to normal size. - -Dotharl activates the painting and we go in. Replica of the throne room, but there are paintings on the wall: vortex/whirlpool; calm with tropical fish under tropical sea; icy swamp lake; calm still lake. - -Two doors. Whirlpool starts swirling and Dirk speaks to Globule in Aquan. He was trapped by Noxia as he works for "Him". When asked who him is, he said, "Him, Hydran, then Noxia." "Him" is forgotten more than lost. He has no legs and no arms. - -## Page 294 - -Open the door behind the throne. Two "people" behind it with jellyfish for heads but normal arms, facing the door. - -We cannot enter. Bowl is theirs and we cannot have it. Death warrant against us from Noxia. We cannot leave this domain. - -Put my arm through the door and they attack. Kill them. Dirk tries to fit in the painting lake. - -Throne for a sphynx, mother-of-pearl, coral, etc. - -Put head in tropical fish painting. Large closed clam shell to the left. Shipwreck to the right. Try to get the clam shell, doesn't, so try to push it out of the painting. - -Clam says whirlpool bad prisoner. Friend says he can't help as he lives in the icy painting. Fish man has the key to the prison. Put clam back in the painting. - -Invar and Dotharl go into the painting. Think Morgana's hut is in the distance. Head over and see dead Everchard trees, but everything is boarded up. Lots of birds around. Invar comes back to get Morgana. - -## Page 295 - -Morgana notices a salty tang to the air. One of the birds calls her "Mother". - -He's gone, much devastation. He = dragon? See through? = Salanus? - -Clam's friend is inside. Go inside. Looks like Morgana left it, aside from three things on a table: white rose; sea conch with a mouthpiece to blow on; offering bowl, wooden, like what we are looking for. - -Morgana blows on the conch and some entity comes out, watery bottom half and genie-type top: Myriad one, Lord of the High Waters, seeker of truth for Hydrus. Can give them two wishes, but one must be to free him. He needs to present the bowl to the clam. Don't think he's told the truth at all. - -Take three items with them along with the raven and other birds. - -[uncertain: Iachdais] tells us all in common that the other birds are with him. Name is Mourning. Mourning was put in prison for creating funerals; killed people for cutting down trees or killing rabbits. Morgana "created" him. Took a while to come get him. - -Clam says he doesn't want the bowl and the Myriad is the clam's friend. Which is true, but he's hiding some things. - -## Page 296 - -Clam wants to be freed and only his friend, who he knows the name of but won't tell us, can get him out. Clam wants to be set free. - -Decide they are all pointless and go down the corridor. - -March up to door. Dirk picks and checks it. Door inlaid with mother-of-pearl, dragon depicted. Another door has a whirlwind elemental on it. First door oxen yoke, for an auroch. - -Weird feeling, awe/dread/reverence, when touching the dragon door. - -Door on the other side, west, 10 foot across, in the middle, filled with shells. Dragon-look hatched, but seems staged. Not made of shell; crystalline on it, salt. Dragon is porcelain. Don't recognise as a species of dragon. - -Go through the other door in the room. More dragons flying around depicted on the door. In the centre of this room, crystalline dragon, smaller one, quartz, looks like Salanus? Lift it up, nothing underneath. Drop it and it smashes on the ground. Put it back together; lots of tiny cuts. - -Whirlwind door. Door at the back: orb. Lots of paintings like they are in storage. Look for an offering bowl. All are people we know depicting their death. No bowl. - -## Page 297 - -Dotharl goes through the orb door. Room is odd but familiar: domed room, slight breeze, small mechanical bird. Eroll? says it is him. Was trapped here, was looking for Ruby Eye from the goliath tower. - -Take Eroll out of Geldrin's bag and they are identical. Dotharl touches room Eroll and cracks come out. Breeze stops. - -Psychic damage hurts me. Repair the door and it stops. - -Yoke door. Glass case on a plinth, offering bowl inside it, wobbles. Morgana manages to take the case off but smashes it on the floor. Pick up the bowl and try to replace with the other bowl, but don't manage it and the plinth falls over and breaks. Invar creates a new case and fixes the plinth. - -Other door in the room has a rawhide inlay. Bowl is a tabaxi prayer to Igraine. - -Through the rawhide door is another plinth with roots on them, all identical. Invar tries to identify them but visions in a sec; feels nervous/on edge. Voice says, "A sacrifice & I will let you have it." Does it again. Now vision underground, scorpion. "The entrance shows the way, a pain you will take with you." - -## Page 298 - -Fill the bowl with booze and try to pray but no answer. - -Try next door. Mushrooms, flowers, trees, bushes, [uncertain: swampy] ground. Glass display case with knife inside, with blood, handle and blade. - -Door in this room is a hanging cage. Inside are nine small globes in a pile, pokeballs, covered in condensation. Look full. Dirk takes one. - -Next door: no inlay, locked. Door at the back. Sofa, table and chairs, fish tank. - -"Help" when we try to open the next door. Looks like a bedroom. Two jellyfish children in the room. Lady Noxia said not to let anyone in; their parents are the jellyfish people we killed. - -Dirk tells the children their parents are not coming back. - -Head back to the display-case room with the dagger. Jellyfish people have shells and pearls, about 500 gp. Symbol under their armour on a chain, looks like a scorpion on them. - -White Rose is Rose of Reincarnation; extends the time from 10 days to 1,000 years. - -Ask Globule about the bowl. - -## Page 299 - -Invar calls for the Lord of High Waters. Ask for Globule to be freed. He requests to be freed before doing it and we don't believe him. Persuade him that he's not powerful enough to do it, and he does it. - -Globule says not to free him. Con artist. Hydran put him in there. He gets the huff and goes back in his coral. - -Globule may recognise which is the correct bowl. Lord of Tar trapped inside the clam. Foreigner was trapped by the merfolk, spirit of Igraine, was mean, about 20 years ago. The bird who flew off? Globule didn't see it come out, so maybe not. - -Go to the bowl room. Not any of these at all. Made of stone, not metal. Stone Sages: snake-head people, turn people into stone. Maybe Noxia replaced him. - -Pokeballs contain water element babies, required for the sacrifice? Globule picks them all up and gives to Dirk. - -Out of the "Submarine" door is Hydran's realm. Dirk goes into the lake painting. - -## Page 300 - -Lake azure. Dirk goes in and there is no painting to come back through. See a figure in the distance with birds. - -Morgana goes in and Dirk isn't there. Goes back out. - -One of the birds is a pigeon. Tells Dirk it's too soon, so tries to leave. Morgana comes back in the painting to help Dirk leave. Pigeon lands on Morgana's head, says she fixed his wing 300 suns ago. Not evil like Mourning, who is her enforcer. Needed the help after what accompany did to her; surprised she had her eyes. - -"Dome" appears. Village seems to have changed. Didn't change for us until Dirk leaves the painting, and then there is an odd scaled fish jumping out of the lake. - -Open the "Submarine" door: wall of water into a chamber. Door at the other side, barnacle door, rusted handle. Starfish on the door, looks like it's watching us. - -Go through corridor, same layout as other side. Go left, one large chamber instead of two. Shark statues jumping over two dying corpses. Plinth with a piece of parchment on it. Odd since it is a water room. - -Contract: promise to save babies' spirits from the realm of darkness. - -## Page 301 - -Kesha = Noxia's sister. - -Merlady appears, says we are keepers as she is. Hydran says we need help with this. - -When we are at the dark plane, steer off the beaten path to succeed with this. - -Hydran will get the bowl if we agree to sign the Pact. Lord Hydran finds us acceptable, he is the patron of travel, offers more information and sign the Pact. - -Merlady also agrees to revive the jellyfish people; push them back to the painting room. It has gone dark. - -Merlady takes us somewhere. Carving at the back of the room, telling man with a staff and a hand, looks like Envi. This is the one who captured our allies. He is free; his body has awakened in his laboratory. He was released. His spirit got to his base and occupied a body back at his base. He then got power and control over the crystals. Not sure of his goal. Has not been near his other parts. - -Warning in next room: creature made of living flames. Small six-armed creature we killed looking up at him. This is the creature who wished to "pull a Noxia". He is a prince and in our next location, walking into his house. They wish to make him a god. - -## Page 302 - -Noxia replaced someone but Kesha didn't. - -Next room: picture on the back wall, Morgana depicted. Igraine holding a knife with birds all around, standing on bones of a small dragon. Not done this yet; not a picture of murder, not the weapon. Reincarnate: the bones are mine. - -Morgana reincarnated me, but why don't I remember anything? Was it due to the worm? But why do I still not remember properly? - -Next room: bowl on a plinth. Carving of Noxia wound through her with an arrow in her side and two others at the sides of her. Instead of Sierra's dogs at her side like we have seen in the pictures, it is the six of us. Invar takes the bowl. - -Ask to go back. Geldrin wants to know where the vessel is that took down the god. She sends us back but sort of turns into a hammerhead shark for a second, then back again. - -When we get back only the fire painting is left, and the chandelier is fully ablaze, casting a dark inky shadow on the floor. Globule is with us. - -Nare thinks Globule is dangerous. Globule wants to take the baby pokeballs to a river. - -## Page 303 - -Globule is going to stay with the fountain elementals for now. Go to replace the bowl. - -Tongs next? - -Go to the fire painting. Invar feels his presence to [uncertain: Stolchar] lessen. - -Appear in fire realm throne room. Doors are broken and throne is missing. Haze doesn't like it, as can't smell Sierra. Someone else's realm? - -Check over the balcony. Six identical statues to our realm. Main city door with two red-skinned beings with small horns. Tongs smell like they are outside. - -Decide to check the other way as there could smell in both directions. Go through middle door. Large square room. Large rug on the floor depicting cat persons and marketplace. Two more red-skins on the door. What we seek is not here. Doesn't like Thace; says he's not welcome here. - -They work for the sultan Azar Nuri. Get an audience with the Sultan. Have to go through the other doors and one of them takes us there. Fire version of the garden outside the citadel, with a building the other side of the garden. - -## Page 304 - -Creatures open the doors as we get there. Go to a throne room. Eight creatures flank the throne. A 50-foot-tall creature on the throne, dressed similarly with a turban on his head. He has the horns. Doesn't like Invar's symbol to [uncertain: Stolchar]. - -Envi works for him. Envi has Tremon's arm. Geldrin tells him to bring it to him. If he does, then Envi will bring it to him. - -Lacking in servants on our plane, struggling to get his minions onto our plane. Only cares about one thing: to take back his power. Wants us to open up the passageways and continue to fix the body being carved for him. - -Geldrin tries to promise to make him the god of death. Give tongs now; gold when crystal is complete; force god of death to make a mistake and appear on our plane; open passageway for his envoys to come to our plane. Agree and he throws us the tongs and we leave to the throne room. - -They used to be able to just leave but can't do that any more. - -Check out the other rooms; all look the same but without guards or a dagger symbol on the door. Move the rug to the room on the right; nothing changes. - -Go through the door: massive table, loads of chairs. Imp sat at the head of the table. - -## Page 305 - -Imp is selling a turban and a deck of cards. Only the tabaxi-looking person wasn't that interested. Just talking about gems. - -Smoke in the room: passageway to her. The smoke through using a wall hanging with a candle and incense, and takes you back in time before the guards were there. - -Trade 15A, rope, and tin of white paint for his cards and a turban. - -Go to next door on the right: forge, well-stocked, unused. Invar starts to fire it up, creates a goblet to offer to [uncertain: Stolchar], and he responds by refining the goblet. - -Go to far left door. Blank wall, thread hanging, lectern, bowl with a stick, and candlestick. Invar goes to make a pole. - -Left door. Quiver and suit of leather armour hanging on the wall, bow. Animal skin on the floor. Nare thinks it feels like a metaphor: antelope or gazelle skin on the floor. - -Back to cell main room and change the tapestry and light the candle and incense. Tapestry comes to life. - -## Page 306 - -Go through the painting: lively version of Brass City. Blue dragonborn and dragons around. Market trader notices us, selling exotic fruits. Calls me a silver [unclear] colour, but I still look green. - -2842 AP is the year of the coins. Cat is wearing a crown we recognise. - -Go through marketplace to the gardens. Looks the same as current day. Morgana thinks only 20 years passed and feels closer to Igraine. - -3480 year: the tabaxi ousted from the Brass, approximately 1050 years ago. - -Dirk finds an elemental to speak to, confirms we are on the Mortal plane. Says we need an invitation to get into the palace. Two blue dragonborn on the doors. - -Ask to see "gleams in the firelight", one of the statues called one. Agrees to see us. Inside looks identical to our plane. - -Woman bursts into the room, Qunien-looking, says she's finished. Tapestry of the marketplace, been working on it for a long time. Same one we "came" through? She enchanted it; it is the tapestry. She's been working on paintings too. - -## Page 307 - -Don't know how to get back. She's a dragon/serpent. Needs some of our things from our time to try to get us back. Give her glass beads Dirk got from Brass City and a scrap of my skirt. - -She casts a spell on another tapestry of the hallway back home with the statues. She says it was a vision; she's been getting them since Igraine came to see her. - -The book Bynx had has a page missing. Seems to be the page about her; she ripped it out. - -Put the tongs back. Just cat and light/cat missing. - -Decide to go to Light realm. Lower the chandelier and Bynx takes us through. - -Exact replica of the room, platinum throne. Doors to each realm, Attabone and Igraine. - -Go through Igraine door. Flat, vast, level field of buttercups and daisies, etc. Morgana used to be here lots. She speaks with plants. Lots of people here but there hasn't been for ages. Afterlife area? - -Tries to speak to Igraine. Ladybird says the cat is here. Gives us a clue: Morgana needs to channel her power and seek more of them, talk and play with them. - -## Page 308 - -Tries to locate cat, about a day away. Morgana connects to the cat through animals/birds and brings the cat back to us. Haze says it smells like the item we need, but seems too easy. Cat is alive, or not sure? It is dead. - -Morgana asks the bird to teach her how to do this again. It says yes, and she calls it Bruce. +# Audio-Derived Event Log -Go back to go into Attabre's realm. Door is locked to Bynx and Dirk. I just open it. +## Page-Derived Opening, Pages 281-292 -Cloakroom. Sitting room, picture of five sphynxes above the fireplace. Have to remove an item of clothing to let us through the door. Cat on the floor, not the cat we are looking for. Have to chill with a drink before the next door opens. +Day 57 begins in the Black Dragon City in the Underblame. At 08:00, the notes expect a council of towns or states for a treaty signing. Infestus can ensure Salinas causes no issues and agrees to get the party to Brass City, with scrolls, respite, and a powerful charged shield crystal. Infestus's wife gives the party scrolls and the shield crystal, smashes an orb to produce a tiny human, chants, and turns it into a blue dragon. The dragon carries the party to just outside Brass City. -Dining room. Three doors out of the room. One is for the kitchen. Tabaxi come out with the meal we had on our ninth birthday. Another tabaxi comes in with a lute; asks him to tell us tales we haven't heard before. +Brass City is now ruled by "The People." Two smoke-scaled diplomats, one with a cobra head under a hood, explain that the Excellence of Air left and never returned. The city inside the walls is lush, relaxed, and does not seem enslaved; the Glowscale are excited to see the party. The old masters enslaved labour, many slaves worked in citadel repair, and others supposedly worked on a great weapon. A rebellion began when slaves were denied bread and burst into flames. A tabaxi jeweller, Facets that Gleam in the Sun, says the supposed weapon was actually a shield-crystal body / focusing crystal stored in a great minaret, and the tower creatures grew unruly after the Excellence left. -Leaders: the one who was a god before him. Leaders dead. Lifted the cold elements cloak in times of war and princes were important. +Dirk speaks with a fountain. The water wants to go somewhere but is doing an important job because its father told it to. It says Hydran gave it to blue dragons, the dragons went bad, its father likes merfolk but is annoyed by the purple thing, and the party should fix the babies not going to him. If they do, the water promises support when the end comes. -## Page 309 +At the citadel the party sees blue dragons, Trixus, Garadwal with the Dunnen people, corridor statues, a cracked tabaxi first princess of the union, weighted idols, jewellery, a carved necklace, a rose-and-book figure, a brazier, and Ignan saying, "We are close once more. I will help you say his name when you pick him up." Picking up the cat releases Haze as a big dog. Haze warns the party not to damage the city, says the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place, brings Bob and Bosh, and says the sword is in the Earth plane with Tremon's body. The Trixus throne room controls planes at once. -All started to become wary of the princes. May have made the wrong deals to keep the princes in check. +In the Earth-plane sequence, the party finds coal, a silver dragon object like Mama Hartwall, jagged granite, and shield crystal. The shield crystal is a piece of Tremon. A door leads to a Harn-like cat tavern, where Morgana receives needle and dried-blood thread, Cacophony appears as a huge worm and shows Rubyeye removing his eye, and the tavern removes something bad following the party. Further memory/plane rooms show the Riversmeet temple, a vision of Mama Hartwall with Hannah, Icefang, five wizards and a blue ball, a stone Dirk, memories of the Mother, Morgana's house, a moon-like Tremon body, the City of Aquarius, Provista about twenty years earlier, Eliana Hartwall in a box from Everchard with the sword, Bleakstorm wanting Icefang's spirit freed, and the Council statue sword being restored. -Leadus' dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. +The party pursues and restores the necklace through the air/theatre/jewellery-box sequence. The real necklace, "Drinker beads of wine," is found on a coat peg, made real, and restored to its statue. With necklace and sword restored, the party turns to the offering bowl. -Connection to my father has allowed to view pieces of my past, so knows most of it. Icefang gave us all vision. +## Water Painting and Noxia-Side Rooms, Pages 293-298, Session 2026-01-20 -Not just Icefang's daughter but his too. It's Attabre. +The throne room changes again: only two paintings remain and the candelabra is now on the ceiling. Geldrin touches a painting, disappears, and ends up shrunken in Eliana's waterskin until "biggening juice" restores him. Dotharl activates the painting and the party enters a water-themed replica throne room with four paintings: a whirlpool/vortex, tropical sea with fish, icy swamp lake, and calm lake. -I was killed because I got in the way. More strong-willed. She accepted their spells but I didn't, so they killed me. Icefang managed to get Lady Elissa Hartwall out and then fell to slumber. +Dirk speaks Aquan to Globule in the whirlpool. Globule says he is trapped, works for someone above Hydran and Noxia, and says of that figure: "No, him is forgotten, more than lost." He has no arms and no legs, leading to the "Globule feet" measuring joke. -When we venture forth on our next step, the gods we have befriended will give us gifts. But it will be hard to choose. If we die in the next realm we won't get back up. She warns Geldrin in particular. +Behind the throne are two jellyfish-headed humanoid guards with blue fish-scale-like armour. They say the bowl is theirs, the party cannot enter, and Noxia has issued a death warrant against the party. They do not attack until Eliana crosses the threshold. The party kills them; one emits an alarm-like whale noise. Their children later matter. -Geldrin gives Attabre a book and that will prevent the person who wants it from getting it. +In the tropical painting, Eliana finds a large clam and a distant shipwreck. The clam says the whirlpool prisoner is bad and that its friend, a fishman in the icy painting, has the key to the prison. The party enters the icy painting, which resembles Morgana's home in a frozen swamp with dead winter bees, dead or cut trees, salty air, birds, and a boarded hut. A jackdaw tells Morgana, "Here at last," says a white-ish translucent/glass-like dragon is gone, and implies Morgana should understand what happened. -## Page 310 +Inside the hut are a preserved white rose, a conch horn with metal mouthpiece, and a wooden bowl resembling the offering bowl but with wrong, remembered runes. Blowing the conch summons a watery marid-like fish-headed entity who calls himself the Lord of High Waters / Myriad one, claims titles including bearer of news for Noxia and seeker of truth for Hydras/Hydran, offers two wishes if one frees him, and says he must present the bowl to the clam. Insight suggests he is mostly lying or grandstanding, except that he wants freedom. The conch is powerful abjuration and traps a marid; the rose is powerful necromancy and is later identified as a Rose of Reincarnation. The wooden bowl is not magical. -Our choice if we bring the dome down. The gods won't mind except the ones who benefit. The bringing down of the dome will weaken Throngore. +Morgana takes the magical jackdaw, Mourning/Morning, who says he was imprisoned for "creating funerals" and admits killing people he judged bad, including someone who cut down a tree for firewood and someone who shot a rabbit. The party suspects a chain of prisoners and chooses not to free everyone blindly. -Kasha was allowed to get certain souls through the Barrier, merbabies, to help her sister. We have been good Envoys. +Exploring the Noxia-side corridor, the party finds mother-of-pearl doors, homage-like dragon eggshells of carved salt and porcelain, a quartz dragon skull that shatters and is carefully mended, rows of paintings of known people dead, and a familiar domed room containing a duplicate Errol. Touching/releasing the room Errol stops the breeze and causes psychic messages: "Message for Errol. Message for Errol. Get back here." Repairing the door stops the pain. -Bynx will need to decide if he is staying to build the Goliath race or go back to him. +In the yoke/bowl room, a correct-looking stone bowl sits under a greased glass cloche on a wobbly plinth. The cloche shatters and the plinth breaks, so the party replaces the bowl with the wooden fake and repairs the display. The door text is an archaic tabaxi prayer to Igraine / a Grain deity. A following room has nine identical stone bowls under greased cloches. Identify visions give two clues: "Sacrifice and I will let you have it" and "The entrance shows the way, a pain you will take with you." Attempts to fill bowls with booze and pray receive no answer. A plant/swamp door leads to a sacrificial knife with bone handle and jagged blade, and another room has nine condensation-covered freshwater globes / pokeballs. A domestic room leads to the jellyfish children, who say, "Go away," "We're not here," and that Lady Noxie said no one may enter and would reward them if they stopped intruders. -Geldrin asks how to get out of his pact with Kasha to get her Guardwell's soul. Not bound like the gods, but she will do everything she can to make it happen, which isn't much on the Mortal realm but is a lot when we go to her realm. +## Globule, Hydran's Pact, and the True Bowl, Pages 298-302, Session 2026-01-27 -Allows us to rest and we go back to the Mortal realm. +The jellyfish children are confirmed as the children of the killed guards. The Noxia-side walls brighten and seem healthier as the children become distressed, suggesting the place may feed on pain. The dead guards carry shells and green iridescent sea pearls worth about 500 gp, plus crude handmade wasp and scorpion symbols of Noxia. The white rose glows when the party discusses helping the dead parents. Identify reveals it is a Rose of Reincarnation, extending reincarnate's target window to 1,000 years but not casting the spell. -The death realm turns to a portal and the light has disappeared. +Globule explains: "I am a guide. For rivers. I show them the way to the sea. Without me, rivers would never flow to the sea." Rivers are in pain while he is imprisoned. The Lord of High Waters is summoned again and pressured into proving he can free Globule. He releases Globule as a ten-foot water bull/steer; Globule immediately warns, "Don't free him," calling the conch entity a con artist whom Hydran imprisoned. Globule says the clam contains the Lord of Tar, a black, harmful sea-creature-hurting entity; the conch entity is tricksy; a foreign spirit of Igraine / light / grain was brought by merfolk about twenty years ago and was mean; and the real bowl was metal, not the stone copies. He suspects Stone Sages, snake-headed people who work for Noxia, petrified or replaced the bowls. The freshwater globes contain young water elemental babies; Globule collects them and gives them to Dirk for eventual release. -Required to leave the safety of the city in the death realm and free the merfolk babies. +Dirk enters the lake painting. Inside is a blue lake, savannah grass, rivers, woodland, and an old/quiet settlement. A figure with birds throws something metallic into the lake. A pigeon tells Dirk he cannot get out and should follow. Morgana partially enters, finds Dirk, and helps him leave. The pigeon recognizes Morgana, says she fixed its wing 30 or 300 suns ago, calls Mourning Morgana's enforcer, says Morgana needed help after what Cacophony did to her, and is surprised she still has her eyes. After they exit, the painting shifts purple and eerie with a large fish jumping from the lake. Globule warns that staying too long can erode memory like rushing water. -Geldrin gets part of Haze into Errol to help find the tail. +The watertight/submarine door opens not by flooding the room but into Hydran's underwater side. Globule casts water breathing. A Hydran keeper / merlady arrives, saying Lord Hydran said they needed help. A parchment pact reads: "We the Pact Keepers hereby promise to retrieve the captured souls of the merfolk unborn from the realms of darkness." Hydran offers the true bowl directly if all six sign. The keeper says there will be no subterfuge, that Hydran is patron of travellers, and that in the dark realm they must step off the beaten path. The party signs the pact, Eliana with blood and others by personal marks. -Timon abseils into the portal, floating in nothing. Morgana turns into an eagle to explore. Dirk asks the ancestors if we will land safely if we jump in. +At the party's request, Hydran's keeper revives the jellyfish parents and places them in magical slumber so they do not wake frightened. The Noxia-side walls darken afterward. The keeper then shows information rooms: a tiefling-like man with staff and jagged hand has captured allies, his body has awakened in his laboratory, his spirit occupied a stashed body at his base, and he used power over crystals; a living-flame prince is in the party's next location and wants to "pull a Noxia" by becoming a god; Morgana is shown with birds, Igraine, a knife, and young dragon bones that the keeper says are Morgana's and represent a choice rather than a murder; and finally a relief shows Noxia wounded by arrows with the six party members opposite her. Invar takes the true bowl. When asked about the vessel used to take Valenth down, the keeper says it is a fragment of creation in Sancery/Sankery [uncertain], and more information will be available soon in a friend's home. The keeper briefly appears as a hammerhead shark with a waterspout lower half before returning the party to the throne room. Only the fire painting remains, the chandelier blazes, and an inky black shadow lies from the throne. -## Page 311 +## Fire Realm, Sultan Azar Nuri, and Past Brass City, Pages 302-306, Session 2026-02-03 -The ancestors say Whel and Eliana and Dotharl jump straight in, followed by everyone else. +Globule wants to take the water-baby globes back to the river but cannot cross the barrier, so he stays near the fountain elementals. The party restores the bowl to the Priestess of Igraine statue; cracks heal. Remaining objects are tongs, cat, and dragonborn tail. The fire painting is next. Invar feels Stolchar's presence lessen, as if the god has left the building. -Land outside a hole in another throne room. Goat man sat on the throne, bigger than Steven/Shark. His name is Sauver, one of Throngore's. Wants to know if we are from the Mortal realm. Seems like he is bound here until we arrived. Tells us Throngore requests an audience with us. +The fire-realm throne room is black cracked lava stone, with smashed doors, no throne, and no paintings. Haze says it is wrong and cannot smell Sierra. Red-skinned, horned, brass-adorned guards serve the Grand Sultan Azar Nuri / Azanari. They say Haze is not welcome. Geldrin offers information about Tremon's arm and Envi/Envoi to gain an audience. -In a room past the doors we are paralysed. About 100 ft tall and 40 ft wide. Bleeding crab-claw hands, demon, six arms, four legs. Throngore changes to a man in a black suit with a giant goat's head. +The Sultan is a fifty-foot-tall, six-armed, red, horned, brass-armoured fire prince in a turban. He says, "Creatures, you dare present yourself to me? How brazen, how bold," and warns, "Choose your words well, they may be your last." He confirms he has the tongs, dislikes Invar's/Stolchar's symbol, and says Envi works for him. He wants passageways to the mortal plane opened, his crystal/entrapment device completed, and the god of death provoked into manifesting on the mortal plane so she breaks the ancient contract and can be trapped. He offers tongs now, later 10,000 platinum and trinkets / power, and threatens to destroy the party if betrayed. Geldrin suggests making him god of death instead of fire. The Sultan references wizards' ascension notes, Throngor, a piece of creation/orb, and Valenth. He also says the Noxia/Sierra plan had been working until the party interfered. The party grudgingly accepts; he throws them the stone tongs. -Tells me he didn't think I'd dare to come here. Wants us to free a prisoner. We will know when we see him. As we are pally with Air, don't let her back in to take over his throne. We have many favours from the other gods. Kasha can't see us unless she is told we are here. +The party cannot leave normally because the realm's planar shifting is blocked. They explore side rooms, meet an imp merchant who must sell a turban and deck of cards before leaving, and trade white paint plus 15 feet of rope. The imp says a wall hanging in the leftmost room can be entered if a candle and incense are lit; it takes travellers back in time before the guards. Invar uses an unused forge to make a goblet for Stolchar; the goblet refines itself after prayer, proving Stolchar can still hear faintly. The party restores the marketplace tapestry/wall hanging with forged hardware, candle, and incense. Geldrin enters and the party follows into a lively past Brass City marketplace with blue dragonborn, dragons, tabaxi, and traders. A fruit trader gives context about Snow Serene, Garadwal, Dunnans, Lord Trixsus, earth men, snow men, Bridge, and old trade. -We won't have time to free any other prisoner. Don't get involved in the main fight. Stay on the path, opposite to what we have been told previously by Hydran. Agree to what he has asked. +## Serpus, Light Realm, Attabre, and the Cat, Pages 306-310, Session 2026-02-10 -## Page 312 +In old Brass City, coins date to 2842 AP. Geldrin recalls tabaxi were ousted from Great Brass City by a fire exalted and salamander army in 34 BD, then founded Salvation where grass begins to grow. The current gardens match the later citadel layout exactly, suggesting magical continuity. Morgana feels close to the Grain. A fountain confirms they are on the mortal plane and that Globule makes rivers flow to the sea. -Sends us to a path ending in a Dracula-style castle. Armies fighting near to the tower, but it's like the memory of a fight. +The party gains entry to see Gleams in the Forge Light, a ginger tabaxi priest-smith of Stolchar working on a shield with Stolchar and Tor symbols. His apprentice Serpus, a human-seeming woman and future blue dragon Serpus Alsepherus, has just completed the marketplace tapestry the party used. She is fascinated by shifting time, space, and planes and says visitors would come at the creation point. The party proves they are from the future with a future coin and the tongs. Serpus says visions began after meeting Icefang, and she needs items linked to the party's world/time to send them home. She enchants a tapestry of the citadel entrance hall with statues. The party returns to the present. In their dragon book, the page about Serpus Alsepherus is torn out and aged, apparently removed by Serpus herself as a warning or chance to alter her future. -All decide to walk off the path but follow it. Get closer to the fight. Goats to one side, wasp humanoids on the other. +The tongs are restored to the smith statue. Only cat and tail remain. The party lowers the chandelier/light until the dark patch under it vanishes and enters the light. In the Grain's realm, a vast grassy plain with flowers and a wall, plants say mortals once came there when free and when they had served. Morgana seeks the cat by communing with animals/plants. A woodlouse says, "Seek more of us. Talk with us. Play with us. And eventually you will find what you seek." Morgana channels through slug and birds, finds the cat, and learns from a bird: "It's dead." A crow-like life elemental bird offers to teach her this animal-channeling ability; he does not kill people and is "more of a talker." Morgana names him Bruce. The dead cat spirit and Bruce return with the party. -Come to a signpost. One arrow towards the prison, and Whel looks like a broken-off arrow. There is a hidden pathway [unclear] [uncertain: sea shell]. The other way has a single sea shell. Decide to go towards the sea shell. +The golden poem door to Attabre / Bynx's father opens after Dirk says "Open sesame." A cloakroom requires civilized guest behaviour: removing cloak, shoes, helm, glove, or similar. Haze cannot enter because dogs are not welcome inside. A sitting room opens after the party relaxes with drinks. A dining room serves each character the meal from their ninth birthday and side dishes from campaign memories. A lion-like tabaxi bard/host reveals himself as a god of knowledge/civilization, Bynx's father. -Cockroach climbs onto Morgana and says that's the wrong way but is also nodding. We continue down the path. Actual goat men seem to run past us. +The god explains the First Pact: five original gods met in the Grand Tower, in a great room at the top, when gods could still walk the mortal plane. As mortals flourished, they agreed to rule from afar and gift mortals fragments of power, making all later divine pacts binding. He says Icefang could see past and future and blessed the party, explaining recurring visions. He tells Eliana she is Icefang's daughter and also his, that she died because she resisted the wizards' magics and mind wipes more strongly than her sister, and that her mother was taken "out of protection" while her father remembered enough to hide the sister. Browning was alive/slumbering for years, brain riddled with parasites and magics, a slave to his chair, working on his own project. Cardinal, Rubia, and Onwe died and were brought back by barrier-tethered souls. The god made a pact with the conspirators so civilization would flourish. He warns Kasia's realm will cut off divine power; if characters die there, their souls belong to her, and one party member is especially desired. Geldrin gives him the Carnox / forbidden-knowledge item to keep in the library. He says bringing down the barrier is the party's choice and would weaken Throngore's position; the barrier acts as a net trapping spirits, and Kasia used her pact to access precious souls including the merfolk babies. Dirk's pact promising Garadwal/Guardwell's soul to Kasia can only be escaped if fulfilled or if Kasia agrees to break it, but mortals can steal souls because they are not bound like gods. The god produces the stone cat body and head; the party mends it. He allows the party to rest in his halls, with only minutes passing outside, then returns them to a throne room where the chandelier light is gone and a black swirling pit shrieks. -Shylow stops to talk to us. Says, "I have something on my horns," and rubs some dirt on them. Believes we are goat people and tell him our names begin with S. +## Dark Realm and Prison Approach, Pages 310-313, Session 2026-02-17 -The prison disappears. Feels like walking through pushing fog. Building appears in front of us, gets very big. Giant purple crystal at the top of the spire with thousands of blue wisps surrounding it. Two wasp people on the door. +Before entering the pit, Morgana distributes goodberries and instructs Dizzle/Dissol to squeeze juice into unconscious mouths. Invar/Timon tests the portal by rope and daylight; Morgana as giant eagle scouts downward until the pull becomes dangerous. Dirk asks the ancestors whether they will land safely. Four Goliath spirits in lion headdresses answer "weal" / "Whel." The party jumps and lands in a darker throne room with a bone throne. -## Page 313 +A huge goat-man, Sauver/Sawyer, one horn silver-capped and carrying a cleaver, says, "The Lord Throngor wishes an audience." A gore room leads to Throngore, first as a hundred-foot demon with bleeding crab claw, taloned hand, goat head, black slit eyes, broken flaming horn, leprous skin and flies, then as a man in a black suit with goat head. He says, "Is that better? Sorry. That was just for my fun." He can smell air, fire, light, earth, and water blessings on the party; their favours hide them from Kasha's eyes but do not make them safe. He wants them to free one of his men from her prison, says they will know him, warns them not to put Air's sister back on his throne, and says Kasha can see them once alerted. He plans a border skirmish as distraction. Instructions: get in, find what they came for, find his friend, leave other prisoners, avoid the main fight, kill guards if needed, leave quickly. He gives them the stone tail and says, "The deal is done." -Try to go around the building. Dead wasp person appears lying against a wall. Dotharl casts See Invisibility and more bodies and a goat man appear. +Throngore sends them to a dark savannah with a skull path toward a gothic prison. Armies of goat-men and wasp-winged humanoids clash. Throngore told them to stay on the path, but Hydran told them to step off the beaten path, so they walk beside it. A signpost points to prison; a broken sign suggests a hidden stone path; a pristine seashell points another way. They follow the seashell. A cockroach says, "No, not this way. Definitely not. This is wrong," but Morgana determines it lies, eats it, and gains freedom from restraints for two hours. A goat soldier, Shylow/Shiloh, mistakes them for goat-men and accepts improvised S-names. -Head towards him and investigate the wasps. Some black coins start wailing slightly when picked up, like the Harley pack of doom. Put them all on one wasp person, gather 15 in total. +Leaving the path makes the gothic prison vanish and a different square tower appear, topped by copper and a huge purple crystal with blue-purple wisps. Two wasp-winged guards stand at the front. The party circles, finds dead wasp bodies, and Dotharl's See Invisibility reveals more corpses and a bored goat-man by a smashed rear door. They find 15 cold black wailing discs/coins, similar to but not the same as the Void communication puck, and leave them together near one corpse. The goat-man guide, Santiago / [uncertain: Shevolt], leads them in but malfunctions, says the prison looks different, notices they look like him, claims he is freeing "Fred," and the party decides something is wrong. -Head further round the tower: smashed-in door. Goat man near it looking irritated. When we get closer, he notices us and was waiting for us. Takes us inside. Lots of prison cells inside. +## Prison Tower Combat, Stone Rampart, and Upper Door, Pages 313-314, Sessions 2026-02-24 and 2026-03-03 -[uncertain: Shevolt] recognises me and seems to malfunction and comes back. Sense of familiar dread comes over me and I feel like I've been here before. Starts acting weird. Ask him what he is here to do. Free a fellow goat. Ask who. Says Fred. Decide to kill him. +Inside is a tall prison tower with central stairs, levels of cells, wasp jailers, and purple glow above. Throngore whispers to Dotharl, "Don't forget what I said. Just free my friend, no one else." The goat-man guide fights with a cleaver blur and later dies into black smoke. Wasp blades deal slashing plus a dangerous necrotic effect; failed saves take 40 necrotic, healing is halved, and a curse of Kasha gives disadvantage on death saves. When Eliana is struck, everyone briefly sees her as a silver dragonborn with ribbons in her horns and an elf teddy bear on her belt. A leader drags her with a chain and calls, "Master! The prisoner has returned!" The empty cell he drags her toward contains a pigeon feather. Eliana recognizes a nearby six-armed stone prisoner, Stone Rampart, who calls her something like "little heart wall" and remembers her from adjacent cells; her mother killed him and dedicated him to Kasha, but he grew to like Eliana. -Leader says I'm a prisoner who was stolen, and when hit with necrotic damage I briefly turn into a silver dragonborn with ribbons on my horns and a teddy attached to my belt. +Eliana and the party steal keyrings from leaders. Keys are linked to gods and floor numbers. The correct key frees Stone Rampart, an enormous six-armed stone humanoid who says, "You look different," helps fight, asks "Did I do good?" after smashing a guard, and holds off a freed goat/demon betrayer. The goat prisoner says, "Look, I can't trust that you won't betray me, so I need to do it first," collapses/breaks the floor, grows horns and wings, and becomes a huge horned demon with flaming horns and molten axe. Geldrin uses Wall of Force and the party tries not to damage the demon because destruction fuels retaliation. Dirk restrains it temporarily with a Chain of Entanglement, which it breaks. -Rock guy in the cell next to "mine". Mum killed him and dedicated him to Kasha. Didn't like Stone Rampart or me at first but grew to like me. +The party frees several prisoners during the battle. Nuts the squirrel vanishes and restores 40 hit points to everyone. A dead halfling woman says, "Just ring it when you want to go home," and gives Geldrin a bell. A fire-bearded dwarf linked to Stolchar asks whether the Lord sent the party, then says, "Maybe you're not as dumb as you look," and grants +2 AC for the battle. A water cow/bull is found but has lost memory and asks, "Why are you back?" Eliana reaches an impossible upper stair/space and finds a plain door locked by godly means, with a DC impossible without similar divine power. -Can see keys for the prisons on the leader's belts. +## Water Bull, Merfolk Unborn, and Kasha's Breach, Pages 314-315, Sessions 2026-03-10 and 2026-03-17 -## Page 314 +On the upper floors the party finds more god-linked prisoners: a red/burgundy-skinned woman, an invisible/blurry young robed figure who says "Innocence" and vanishes when freed with a Squwal/Squall key, a black-robed scholar, a bark-skinned dryad-like woman linked to Igraine who enhances healing, a dove-headed Bridske/Bridge woman who warns about trickery and opens the god-locked top door, a goat trickster, and Lord Briarthorn, a thorn-bearded elf who recognizes Eliana, remembers her sister and Everchard/Razor farm, and says he is better with plants. The Water Bull is confused: "I can't remember anything. I don't know who I am. I'm like forgotten, or something." Kasha begins breaking in below as a colossal skeletal hand and hollow-eyed female face with wasp wings. The top door opens to a wall of seawater. -Gods: +In the final push, Lord Briarthorn says memories are his forte and touches the Water Bull. He disappears into the cow; the Water Bull's eyes blaze blue, grows enormous, and pulls the party into the seawater chamber. The Water Bull says, "Cash's realm? ... I can't be here. It's against the pact," and says the seawater is pain. He needs an envoy because he cannot enter the sea. Eliana enters the seawater and calls for Globule. Globule appears and addresses the Water Bull as "my lord." Geldrin uses the mother-of-pearl conch and sings the Song of Harmony, granting water breathing, speech with sea creatures, and free underwater movement to up to nine people. The Water Bull commands, "Free the babies." Globule says, "Salamis's curse cannot hurt me. From the river to the sea, these babies will be freed." -Kasha; Throngore 4/13; Shylow; Sjorra; Lam 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. +Thousands of unborn merfolk spirits, all girls with fish tails, gather around Globule. Kasha breaks further in and says, "There is no escape." The Water Bull declares, "No, I will retake my place, demon." Globule tells Geldrin, "I'm ready." Geldrin rings the bell. The merbabies sing, the pulse repels Kasha, the water fills with cat-like forms, and the party blacks out/drowns briefly before returning to the material-plane throne room in a cascade of water. Haze says, "You have it. Something's changed. Something's different. Something's shifted. Something watery." -Thorn-beard elf in one of the cells is mortal and calls me darling. Reminds him of the time he went to the moon with my mum. Lord Briarthorn. +The party replaces the final dragonborn/cat tail. All six statues crack open like shells, revealing living tabaxi, including the king figure. He asks how many years have passed; his last remembered year was 2034 AP, approximately 34 BD / 1,050 years ago. He remembers the curse and says the city is sacred. The party explains the city, Salvation, the fire Excellency/Sultan, and the dome. The king says their society was built on two races but shortly before the fall there was a parting of ways, and the attack was likely instigated by "her." The Igraine priestess, likely Lies with the Morning Dew, senses the palace is sick and sorrowful, fire spirits are restless, and Sierra/Stolchar is absent or distant. She can see the party's metal friend Cardonald/Cardinal in one of the minarets and will guide them. -Water Bull has his memories back. Can't get merbabies as can't enter the sea water. I enter into the water and shout for Globule. He comes and helps to free them. +At the fountains, a water elemental says Hydran is very happy and that something large is being celebrated; Hydran is talking about babies and Globule is taking them to the sea. The party, exhausted, chooses to rest before rescuing Cardonald. They find an empty, well-kept house and eat sweet fruit. Dirk allows a scrying attempt. A huge gush of water brings Queen Moon Coral with six mother-of-pearl-armoured merfolk men. She says, "We are here to serve you. Your deeds have come to our priests from Hydran himself," and that the party has righted the greatest wrong done to the merfolk: their first birth outside the dome occurred an hour ago after perhaps a thousand years. She pledges merfolk aid in the final battle and with bringing down the dome, gives a barnacled sending stone, agrees to look for Jingwoo, and gives a Ring of Fire Resistance for the Cardonald rescue. The party sleeps. Page 316 explicitly starts Day 58. -Kasha tries to break through the ceiling and God Bull is defiant, saying he will take his realm back. +# Handwritten Notes Cross-Check -Globule tells Geldrin he is ready, so he rings the bell. Appear back in the throne room. Haze says it smells like something has changed. +- Pages 281-292 remain the primary source for the first part of the day before audio coverage begins. +- Page 293 begins the audio-backed offering-bowl material: throne room return, candelabra on ceiling, Globule, and the first jellyfish guards. +- Page 298 aligns to the jellyfish children and the search of the dead guards. +- Pages 299-302 align to freeing Globule, Hydran's Pact, Hydran's information rooms, the true bowl, and the return to the throne room. +- Pages 303-306 align to the fire painting, Sultan Azar Nuri / Azanari, the tongs bargain, the imp, forge, tapestry, and old Brass City. +- Pages 306-310 align to Serpus, the tongs restoration, the Grain and Attabre realms, the cat, and the dark portal. +- Pages 310-315 align to the dark realm, Throngore, prison tower, Stone Rampart, Water Bull, merfolk unborn, statue restoration, Queen Moon Coral, and rest. +- Page 316 line 5 explicitly starts `Day 58`, confirming day-57 is complete. -Go to the statues and put the tail back. Stone casing breaks off and reveals live tabaxi. King asks how long they've been stone. 2034 AP = 3480 approximately. Same time coins were smelted. They were cursed. +# Conflicts and Uncertainties -They decide to go speak to the people after planning takes place. +- Names vary heavily in transcripts and are preserved where uncertain: Noxia/Noxie, Hydran/Hydrus, Mourning/Morning, Myriad/marid, Azar Nuri/Azanari, Stolchar/Stoltjar, Haze/Nare/Thace, Tremon/Treyman, Envi/Envoi/Ennui, Sauver/Sawyer, Shylow/Shiloh, Shevolt/Santiago, Kasha/Cash/Keshia, Sancery/Sankery, Salanus/Soulless/Selanis, Cardonald/Cardinal/Cardonel. +- The pigeon says Morgana fixed its wing 30 suns ago in audio; the page note says 300 suns. +- Page 315 says the priestess meeting is tomorrow at 12:30; audio suggests morning. Preserve both until clarified. +- Long rests inside Attabre's halls do not count as a day boundary because only minutes pass outside. The sleep at the end of session 2026-03-17 is confirmed as day end by page 316. +- The exact nature of the vessel / fragment of creation in Sancery/Sankery remains uncertain. +- Throngore's intended prisoner remains ambiguous amid Stone Rampart, the goat/demon betrayer, and other prisoners. -## Page 315 +# Source Excerpts -Priestess will guide us to Cardonald. +- Globule: "No, him is forgotten, more than lost." +- Marid / Lord of High Waters: "You have summoned me. I am the lord of the high waters." +- Marid / Lord of High Waters: "Do I look like someone who would betray you?" Response after challenge: "Fair." +- Globule: "I am a guide. For rivers. I show them the way to the sea. Without me, rivers would never flow to the sea." +- Globule after being freed: "Don't free him." +- Hydran pact: "We the Pact Keepers hereby promise to retrieve the captured souls of the merfolk unborn from the realms of darkness." +- Hydran keeper: "No confusion. No subterfuge." +- Hydran keeper: "When you go through to the Realm of Fire, you are literally walking into his house." +- Hydran keeper on Morgana's bones: "You." +- Sultan: "Creatures, you dare present yourself to me? How brazen, how bold." +- Sultan: "Complete the crystal and force the god of death to make a mistake." +- Sultan: "If you betray me I will come for you... this week, next week, a year, 10 years... I will find a way and I will destroy you all." +- Serpus: "This is the creation point. Of course visitors would come straight away." +- Grain messenger: "Seek more of us. Talk with us. Play with us. And eventually you will find what you seek." +- Bruce: "No, I don't kill people. I'm more of a talker." +- Attabre / knowledge god: "Whenever we make pacts, the gods, they are binding, because of this first pact." +- Attabre / knowledge god: "Should you perish, do not expect to be able to get back up, for your soul will belong to her." +- Throngore: "Your favours only hide you from her eyes." +- Throngore: "I have a border skirmish planned." +- Throngore: "When you arrive there, you get in. You find what you are coming for. You find my friend. You leave the other prisoners where they are and you leave." +- Cockroach: "No, not this way. Definitely not. This is wrong." +- Wasp leader: "Master! The prisoner has returned!" +- Stone Rampart: "Did I do good?" +- Halfling woman: "Just ring it when you want to go home." +- Water Bull: "Cash's realm? ... I can't be here. It's against the pact." +- Globule: "Salamis's curse cannot hurt me. From the river to the sea, these babies will be freed." +- Queen Moon Coral: "You have righted the greatest wrong done to our people." +- Queen Moon Coral: "We had our first birth an hour ago." -We go to the fountains. Lots of gossip. Lord Hydran is very happy, doesn't know what's going on. Goes to find out, and Globule is back and is taking the merfolk babies back to the sea. +# People, Factions, Places, Items, and Open Threads -Agree to go rest and meet the priest tomorrow, 12:30. +People and beings include Infestus, Infestus's wife, Salinas, Facets that Gleam in the Sun, Dirk, Eliana, Morgana, Invar, Dotharl, Geldrin, Bynx, Haze, Bob, Bosh, Tremon/Treyman, Valenth, Trixus, Garadwal, Ignan, Mama Hartwall, Hannah, Icefang, Rubyeye, Cacophony, Bleakstorm, Globule, Noxia/Noxie, Hydran/Hydrus, the Lord of High Waters / Myriad/marid, the Lord of Tar, Mourning/Morning, Igraine / the Grain, Errol, Serpus / Serpus Alsepherus, Gleams in the Forge Light, Stolchar, Tor, Sultan Azar Nuri/Azanari, Envi/Envoi, Sierra, Throngore, Kasha, Sauver/Sawyer, Shylow/Shiloh, Stone Rampart, Lord Briarthorn, the Water Bull, Queen Moon Coral, Cardonald/Cardinal, Jingwoo, Salanus/Soulless, and the revived tabaxi Council/king. -Find an empty house and relax for a bit. Dirk feels someone scrying on him. +Factions and groups include The People of Brass City, Glowscale, old masters, blue dragons and blue dragonborn, Dunnans/Dunnen, tabaxi, cobra/snake people, Stone Sages, Hydran's Pact Keepers, merfolk and merfolk unborn, Noxia's jellyfish/wasp/scorpion servants, Azar Nuri's fire servants and armies, gods bound by the First Pact, Throngore's goat-men, Kasha's wasp jailers, and the ancient tabaxi Council. -Massive gush of water outside and six merfolk men clad in mother-of-pearl armour, with a merlady and a driftwood crown. Don't recognise her. They are here to serve us, following our deeds. Queen Mooncoral. We have righted the greatest wrong done to their people, which they didn't know about until recently. +Places include the Black Dragon City in the Underblame, Brass City, the citadel, elemental/throne control room, Earth-plane tavern, Riversmeet temple, Provista, Everchard, the water painting realms, Hydran's underwater side, the fire realm and old Brass City, the Grain realm, Attabre's knowledge/civilization halls, the dark realm, Throngore/Kasha prison tower, the seawater chamber of unborn merfolk souls, and the Brass City house where the party rests. -First birth an hour ago. Receive a sending stone from her. Asked her to look into where In'weo [uncertain] goes. Gives us a ring of fire resistance. +Items and resources include the charged shield crystal, shield-crystal body/focusing crystal, the sword, necklace, offering bowl, conch, Rose of Reincarnation, wooden fake bowl, stone bowls, sacrificial knife, water-baby globes, true bowl from Hydran, tongs, Serpus tapestries, imp's turban and cards, Invar's refined goblet, dead cat spirit and stone cat, Bruce, Carnox/forbidden-knowledge item, stone tail, black wailing discs, chains of entanglement, prison keys, bell, Ring of Fire Resistance, Queen Moon Coral's sending stone, and merfolk support. -Rest and sleep. +Open threads include Hydran's pact to recover unborn merfolk souls, the root cause of future soul trapping while the barrier stands, the fire prince/Sultan bargain and his plan to provoke the death god, Envi's laboratory/body/crystal control, the vessel/fragment of creation in Sancery/Sankery, Morgana's dragon-bone/Igraine/Mourning/Cacophony identity mystery, Eliana's former prison identity and silver dragonborn form, Stone Rampart's fate, Kasha's claim on souls and Dirk's pact for Garadwal/Guardwell, bringing down the dome safely, Cardonald's rescue from a minaret, Soulless/Salanus near Seaward, and finding Jingwoo. diff --git a/data/3-days/day-58.md b/data/3-days/day-58.md new file mode 100644 index 0000000..32eba99 --- /dev/null +++ b/data/3-days/day-58.md @@ -0,0 +1,143 @@ +--- +day: day-58 +date: unknown +complete: true +primary_source: audio +source_coverage: audio-backed with handwritten page cross-checks +source_pages: + - 316 + - 317 + - 318 + - 319 + - 320 + - 321 + - 322 + - 323 + - 324 + - 325 + - 326 + - 327 + - 328 + - 329 +source_audio_transcripts: + - session-2026-03-24 + - session-2026-03-31 + - session-2026-04-07 + - session-2026-04-14 + - session-2026-04-21 + - session-2026-04-28 + - session-2026-05-05 +source_audio_alignment: + - data/2-audio-index/audio-backed-pending-day-58.md +next_day_marker: data/2-pages/330.txt line 13, user-confirmed day-59 start +--- + +# Audio-Derived Event Log + +Day 58 begins after the party sleeps in an abandoned/random Brass City house. The city remains relaxed after the revolution: tabaxi lounge, sew, and dance, while lizard/salamander/snake folk who once served the fire elementals do repairs and cleaning. + +The party returns to the citadel to meet Lies/Walks with/in the Morning Dew. Lord Briarthorn is with her, unexpectedly alive or at least embodied, and Haze/Hayes is no longer with the party. Briarthorn says, "My friends... I thought you were dead," then admits, "I was... Apparently I'm not anymore." He is unsure whether this is his original body: "It is very similar to my body but I'm pretty sure that perished a long time ago." He recognized Eliana in the death realm because she looked different there; now he only knows because he can feel it. His memories of the death realm are unstable: it felt like eternal existence, and "the more I think about it, the more and less I want to think about it." + +Briarthorn remembers Valencia/Cardano/Cardunald as a young one at school and recalls going to the moon with Mama/Mum Marthall/Marshall, Thomas/Ennui [uncertain], and Hannah, Francine Joy's daughter. They used the portal in Eliana's mother's house, linked to the dragon place, but he cannot remember why he had to go: "They needed me to go for some reason. And I can't know why." He also helped create the sentient No Hurt mushroom and warns that its spores can take over the brain, optic nerves, eyes, and later the tongue. Morning Dew senses Cardunald near the top of a minaret, Traymond/Tri-moon's corpse with little guarding, and more angry spirits plus some of her people in another minaret. + +The party enters the Minaret of Learning, a school/library/bureaucratic tower dedicated to Ataba/Attabre. A warded door blocks elementals and spirits. Geldrin modifies the runes so light, water, and air can pass while fire remains blocked, allowing Dotharl and Bynx through. Inside are school rooms, child-level tabaxi classrooms, sphinx drawings, blue dragon toys, university rooms, libraries, and rugs recording old divine and civic knowledge. + +A carpet shows five sphinxes, with Trixus prominent. Morning Dew says the unknown fifth is the sphinx/spirit for the dwarves; merfolk did not get a sphinx but were blessed with memory. A scientific book on Ataba/Attabre lists the higher sphinx/minions as Anadreste/Annadressdey/Annadrazadey for dragons, Trixus/Trixis for tabaxi, Bene/Benu/Benham for elves, Garadwal/Garadul/Garigal for the Dun/Dunnan/Dunnen humans, and Koko Rem/Coco Rem/Kokoram for dwarves. Other gifts include memory for merfolk and learning for gnomes; goliaths and avian folk were seeking Ataba's approval but had not received a sphinx. Annadressdey made a true sacrifice against a massive white dragon threat at Snow Serene, imbuing her power into white dragon descendants including Icefang and Icefang's line. Trixus's bracelet inscription is remembered as: "a blessing from Ataba, protector of the city Salvation to his children, first of his name, fifth of his kind." + +The third spellbook/library floor shows three blue dragons on a rug and heavy brass/copper locked doors. Geldrin identifies high-level magical locks and opens one by tapping Rubyeye's eye/item on it. Inside, a glass coffin or stasis tomb shatters. A woman in blue, Arabic/Hareem-style clothing shouts "Intruders!" and attacks with lightning, then transforms into a huge serpentine blue dragon. The party knocks her unconscious non-lethally. A dead mind worm is found deep in her ear; it is unclear whether a dead worm can still suppress memories. + +Invar accidentally triggers one shelf's fire trap and destroys a travel/location bookcase. The other shelves are warded with fire/evocation traps and Counterspell wards against spells cast at them. Morning Dew identifies the dragon as a former teacher of noble children and wyrmlings. Morning Dew casts Greater Restoration but warns the teacher may still attack. Bynx tries to contact Ataba to heal or clear her, but Merikok/Merocok/Mary Cook speaks through him: "Ah, you lot... still meddling in affairs that don't need meddling," says they keep running into his affairs, says "You'll understand soon," and adds, "You can take this one. I don't need it anymore. Just continue doing what you're doing. It's fine." After a goodberry, the teacher wakes confused, says the library is secret information, recalls "the man with the horns" / "the fallen one" / one of the wizards being there, says Ensi/Ennui/Onwi has something to do with her people leaving and her being left there, and warns that fire elementals are coming. The party tells her it is roughly 1,000 years later than she thinks. She explains she should not forget because she is a teacher with a great memory. The party learns or concludes that Merikok is the fallen form of Koko Rem, the dwarven sphinx, and that part of him is missing. The teacher warns that some library knowledge helped cause her people's downfall and should not fall into other hands. + +Fire elementals approach after the explosion. Dirk hears words including "disturbance," "here," "fire," "care," and "traps." The party locks the door and projects a blue-dragon sigil. One elemental says, "We need to report back," and another says, "Come back later." + +A small retriever-like dog claiming to be Hayes scratches at the door and brings back Bish and Bosh, because he "promised." Bish and Bosh are no longer cursed/compelling. Separately they are normal blackjacks; together they are +1 finesse/light blackjacks. Bish staggers a target on a hit result of 21 or more, preventing reactions and bonus actions until the start of the wielder's next turn. Bosh can, once per day on a hit, force a DC 17 Constitution save or knock a target unconscious for 1d4 rounds. + +The party climbs upper floors. A crowned-tabaxi floor represents past rulers or officials, with one hairless/Sphinx-cat type linked to a Dunham/Dunnan offshoot. A museum/civilization floor shows the original Grand Tower without later copper, crystal, or white-wizard additions; three merfolk cities; several dwarf groups; dragons before the Snow Serene/Snow Sorrow split; a gnome city with airships and towers; and human tribes with a central mediator. Goliaths, halflings, and avian folk are absent. + +The top door is hot and decorated with dancers and performers. Opening it releases magical black smoke. Failed saves cause mind-control effects with smoke trailing from victims' eyes. Eliana is controlled and stabs Geldrin; later Dotharl and Geldrin suffer effects, and controlled Geldrin casts a dangerous high-level fireball. The enemies include exploding flame creatures and a larger smoke-spider/insectoid with eight spindly legs, a man's face, and a distended jaw, whose claws cause psychic or soul/mind damage. Invar's spiritual weapon kills the smoke spider; the smoke rushes out and vanishes. + +Cardunald/Cardano/Valenticard is found lying motionless on a bench as in the earlier truancy vision. She is an ornate, high-grade constructed body and vessel for a soul, not merely an automaton. She has shut herself down to prevent the smoke creature from controlling her. Bynx sends a message to her mind; the party proves themselves with the secret that there is a lot of dwarf porn in her library. Her chest runes fade and she wakes. She says, "It's safe?" and "I had to shut myself down so that he didn't take over me... because in his hands it would have been dangerous." She identifies Dotharl as one of her mother's early creations, like a sentry drone, and calls Platinum "the one creation that hasn't betrayed me." + +Cardunald believes Ensi/Ennui/Onwi caused her capture or translocation through the barrier. She says only one of her compatriots could forcefully translocate her against her will through the barrier and suspects Onwi and Browning are back to old ways. She says Onwi has Traymond's arm/staff, giving him barrier maneuvering ability. The party's head item opens the barrier but does not teleport through it. + +In the library, the blue dragon teacher refuses to let Cardunald take books: "The last time you came here for knowledge... things did not end well." She claims the library for her people but agrees to prepare Geldrin a safe spellbook by tomorrow, taking only knowledge she judges not existentially dangerous to her kind. + +Cardunald says the Dome/barrier was built "to protect people" and appears to believe it. When the party explains Browning's plan to use the trapped population as power to become a god, she realizes it makes sense: like the elemental prisons, the Dome traps everything inside to power something, and sacrificing everybody would be enough power. She says the Dome should come down, but simply breaking it after one more prison collapses could release prisoners in chaos. She proposes using the Grand Towers control room to reroute power so prisoners remain contained by their own prisons while the Dome comes down. + +Cardunald says Avelina/Avaline was possibly the purest of the old group and may have been trapped outside because she resisted the plan or learned Browning's true intent. She says Merikok was "kind of killed," went up in a puff of smoke, and was engineered because they needed a creature of light for the last hole/prison. She says Garadwal chose to bind himself with void to become strong enough for a prison. Wrath holds Rubyeye and has entombed Hartwar/Heartwar/Hartwell [uncertain]. Wrath is not exactly in Rubyeye's eye; the eye is more like where Wrath lives or hides. Replacing the eye may not be enough. + +Cardunald says Lady Envy was originally meant for her because others mistook her envy of Rubyeye's wife for enough of a hook, but she refused because "it was just a crush" and she understood Rubyeye and his wife were truly in love. The party suspects Envy must be handled before freeing Mama Marthall/Hartwell or Rubyeye, so Mama Marthall is not released still under Envy's influence. + +Eliana tells Cardunald, "It appears that I am Evelina/Eliana Hartwell/Marthall." Cardunald remembers Hartwell's second child as if recovering a forgotten fact and remembers Eliana as a "little whelp" who was protective of her mother. She suggests that restoring Eliana's original form or body, if possible, is beyond her and may require a priest of A Grain/Agraine. During talk of Eliana, Marthall/Hartwell, and school memories, Morgana sees a naked long-haired woman reflected in Invar's armour and later motion in Eliana's dagger. Cardunald knows who she is, becomes visibly nervous, and says, "I had a thought that I cannot utter," and "If we can remember her... she's not fully gone." The party stops that line of conversation. + +The party reviews priorities: deal with Envy and remove her influence on Mama Marthall/Hartwell, free Rubyeye from Wrath and the endless-loop prison, free Mama Marthall and reveal Eliana is her daughter, use Cardunald at the Grand Towers control room to bring the Dome down safely while leaving prisoners contained, retrieve Geldrin's spellbook tomorrow, possibly fix Ensi/Ennui/Onwi, and inspect Traymond/Tri-moon's body. + +The party investigates Mama Hartwell/Marthall's imprisonment. It is the burial form of Imprisonment: she is far underground in a magical force sphere and cannot be reached by normal teleport or planar travel. The spell used a silver dragon figurine/statuette as a component. The party remembers such a figurine in Hartwell's lair/shrine, partly green from jade dust, and decides they likely need the exact object. + +Errol is examined. Valenth/Cardunald-like magic determines he is alive and sentient, not merely an automaton: "he's alive like you... he's not just an automaton anymore... his spirit's been awakened." Errol insists, "I've always been real," complains he is not used to being alive, and objects to being stuffed in a bag/pocket dimension. He can find Rubyeye by instinct like a compass, using warmer/colder direction-finding, but cannot describe the location. + +The party explores Stolchar/Stoltjar's tower. Geldrin modifies the door runes to block only fire elementals. The tower contains robust iron-banded doors, mosaics of five chromatic and five metallic dragons, and forges for precious metals, military/war metalwork, and mundane construction. Invar tries to pray to Stolchar for permission but receives no contact despite performing the ritual correctly, implying the Sultan/fire-plane situation blocks Stolchar there. Morning Dew says Squall has a tower, but people avoid it and some do not return. Official records name Squall as god of weather, change, loss, and air; grieving people may pray to Squall to understand change and loss. + +At the top/guildhall of Stolchar's tower, the party finds Trayman/Tresmen/Tremon's body: a huge roughly 30-foot carcass with legs detached and propped against the wall, head missing, at least one arm missing, and torso reshaped into a faceted inward-reflecting crystal reminiscent of shield/pylon crystal but reflecting light inward rather than outward. Geldrin suspects reattaching the head would not simply reanimate it because consciousness, if any, is likely tied to the head. + +In the same room is a very pale, emaciated human-looking figure in red-gold robes and turban, alive but almost motionless in a worn chair. He communicates by blinks. He is not stuck, does not choose to be there, needs help but not escape or completion, does not need food or water, and is concentrating on a dangerous long-running spell. He is shielding the place or Trayman's body rather than locking it. Geldrin detects powerful abjuration/conjuration. The figure is the reason the Sultan cannot get in. Valenth says the Sultan is one of the elemental creatures the tabaxi created protections against and one reason the tabaxi had to leave. The spell's power is compared to Snow/Snowserene's room-moving spell. Further questioning suggests the figure is not a follower of a god, is likely a darkness elemental rather than fire, does not dislike the Sultan, blocks him because consequences would be bad, is not blocking all elements, knew Trayman personally, and has some unclear relationship to Valenthilde/Valentinhard/Valenthide. The party decides not to interfere until they understand him. + +Dotharl stays in Brass City while the others travel. The party receives sending stones from Morning Dew and leaves one with Dotharl. Valenth teleports the travelling group near the Dome by Thomas's lab, and they use Trayman's skull/crystals to open the barrier. Briarthorn leaves near Everchard/swamp to make his own way; the party asks birds/Our Lady Chorus to watch him. Morgana uses Transport via Plants to reach Tradesmalls/Tradesports. + +Tradesmalls is growing into a mixed settlement of Goliaths, Dunnans/Dunham, and greenish-copper Tarnished dragonborn. Dirk visits his family tent, where his sister Ingris immediately looks for Bynx. The council includes Ogrim Fungalus, Sansong, Gren Boulderfist, Dirk senior, Blisterfoot, Knits/Nits Flesh with attendants, and Verdegrim. Verdegrim says peace agreements are going "swimmingly well," with the Tarnished promised part of the city and mutual protection/trade. Ogrim says Tradesmalls historically traded with small folk and should become cosmopolitan again. All Goliath cities are currently under Goliath control; dragons have retreated to guerrilla warfare; Lady Carpool/Harpool's forces defeated or drove off Rockwake; Hartwall is well and garrisoning elsewhere; Willow Whisper has taken over surviving Ashkelon forces and hides in the savannahs. Another Errol-like bird has been found in Worndu, expanding the communication network. Knits/Nits Flesh says Bone/Benu has returned after penance, accompanied by Garadwal, whom Benu says is clean and will watch. Vulture people / former Hephaestus worshippers are integrating with the Dunnans and may be accepted after three years. Dirk's father asks him to keep in touch and gets a sending stone. Bynx stays with the Goliaths/Dunnans/Tarnished to help rebuild civilization and perhaps go to Ashkelon. Dirk sends Anastasia a message via Errol saying they have been busy killing Peridita, freeing peoples and nations, and will see her soon. + +The party teleports to Hartwell/Hathwall's lab. The teleport-room door is blockaded from outside; someone runs barefoot away. In the urn/shrine room, they find a red-haired young woman, about 18, sleeping in commoner clothes with a satchel, later identified as Goldilocks. They retrieve the silver dragon figurine/statue covered in jade dust without waking her. In an old bedroom, they find a red-haired young man named Jack, one of about eleven copper-dragon resistance refugees from Snow/Snowsorrow. Other refugees include Mother Goose and Hansel. Mother Goose says they fled a retaliatory dictatorship, another group went elsewhere, only weak-willed copper dragons remain in the city, and the portal is currently disabled so the bosses cannot follow. The party gives the refugees a map/context, suggests Hartwall/Pine Springs, gives them 100 gp in current coinage for supplies, and receives old copper/silver/platinum dragon coins. They warn the refugees not to release the tiny fire elemental/portal in one bedroom and not to open the small secret dining-room hatch because the place might explode. Mother Goose recalls Hartwall lore: Hartwalls were the ruling family among silver dragons; there was a scandal that a Hartwall slept with a white prince; a silver prince died mysteriously, allegedly in war but maybe due to wizards; and Hartwall was magical, "sort of" a wizard but unlike the city wizards. + +Geldrin inserts the recovered core into the gnome/founder armour. It powers up with purple/light cracks and opens like powered armour. The internal voice takes the name Alfred, recognizes Geldrin's voice pattern as a founder and later elite-class founder, and permits him to use the armour. Alfred has 10 non-recharging charges. One charge activates it for 24 hours as plate armour AC 18 with no Strength requirement, proficiency, and spellcasting compatibility. While active it grants Light, and charges can power Jump, Strength 18 with advantage on Strength checks/saves, Investigation advantage, Shield, and 5th-level Magic Missile. Inactive, it requires Strength 18 to wear or move. + +Dotharl explores Squall's tower alone. Morning Dew brings him there but refuses to enter. The door is blackened/burnt wood and locked; Dotharl cannot open it alone. A snake/lizard ambassador from the party's first Brass City visit helps pick the lock, saying, "I haven't lost my old skills," then leaves. Inside, cold plain stone echoes. Chalk drawings show a living whirlwind with toothy maw and lightning eyes from Dotharl's visions, a six-limbed/four-armed vulture man in a sandstorm, and a non-bipedal eagle crackling with lightning. One room has darkness outside its window, sourceless light, and carefully placed objects including a copper coin, sock, ripped basket, small brown bag, shoelace, and lump of coal. Later rooms and visions include a hot/windy vulture room with pictures of a burned house, library, and white-flower field; a bottomless koi pond whose ripples show a pigtailed girl before an abandoned building; a people-of-the-world floor with pigeon/Arabica [uncertain], gnome, and gaunt elf; a decadent elf dressing room; an abandoned Freeport dock-front warehouse with rags, a stuffed silver dragon toy, and a bloodied tissue; a funeral/gravestone scene with a dwarf/silver dragonborn; barred third-floor doors; and a top minaret/minorette room with compass rose/weather decoration, glass ceiling, chair, and a very elderly man. The old man asks if Dotharl is Errol. A dragon eye appears in the glass dome, resembling the white dragon from dream. The man says he is there because Dotharl expected to see him, says Dotharl is not like his father and is different, likes change and finds being kept a prison because there is no change, says "we all need to make a decision about our forms," and asks what Dotharl came for. Dotharl says he feels lost and wants to learn more. + +The party decides the least risky order is probably Envy, then Wrath/Rubyeye, then freeing Mama Hartwell/Marthall. Bellburn is identified as a logical place to ask about Envy because of prior Envy/Lamia activity there. The party returns to Brass City by plants/teleport/barrier routes. Geldrin collects the promised leather-bound, brass-trimmed spellbook from the blue dragon teacher, who asks them to send any more of her kind back to Brass City if found. + +The party seeks Bellburn/Balburn access. A jeweller/merchant, probably Facets that Gleam in the Sun or a related figure, jokes or lies about Bellburn items but says people from Bellburn are camped in the Earthwise quarter. The party finds light-skinned Goliath-like Bellburners. They greet with "free travel to all" and say they came by "the winds of Bridge." They remember the party member who fought a dragon working for Lady Envy in their streets. They know Envy is at the jade mines, called Lost Vein/Lost Vain, but cannot go because "they'd kill us." Lamias there extort goods/materials and steal children at night to work in the mines. The party teaches them a crude "butt check" to expose Lamia illusions by checking where the invisible body would physically be. + +The Bellburners explain routes: Brass City to Bellburn is about five days by road around the plateaus/mountains near the Great Foot of the Flame Scar; Lost Vein can be reached across the Sulphur Flats or by a longer route through the foot of the Flame Scar/Bellburn roads. They trade a Bellburn pan for a pan from the party and give a Bridge-style blessing: "May the roads forever be open, may your eyes never close, and may the coins fall in your favour." A first pan-based teleport returns the party to the same place, making the Bellburners laugh and call it a Bridge trick. A second attempt lands them on a familiar snowy mountain top outside the barrier. A third attempt, with a penny tossed into the pan, succeeds and brings them to Bellburn/Balburn/Melbourne. The next confirmed day begins on page 330 after Eliana sleeps really well. + +# Handwritten Notes Cross-Check + +Pages 316-321 confirm the Brass City house start, return to Morning Dew, Briarthorn's memories, the No Hurt mushroom warning, the Minaret of Learning, Ataba/sphinx names, the blue dragon teacher, the mind worm, Merocok's intervention, Bish and Bosh, Cardunald's rescue, the Dome-control plan, Envy/Wrath/Rubyeye priorities, Eliana's identity, and the reflected woman. + +Pages 322-324 confirm Mama Marthall's underground imprisonment and silver dragon spell component, Errol's awakened life, the Stolchar tower forges, Squall lore, the top-room Sophy/Sophyx carcass / Trayman-Tresmen body, and the pale emaciated spellcaster blocking the Sultan. + +Pages 325-327 confirm the travel to Tradesmalls, council and faction updates, Hartwall lab refugees, retrieval of the silver dragon statue, Mother Goose/Hansel/Jack, the gnome armour, and Dotharl's solo Squall tower start. + +Pages 328-329 confirm Squall-tower vision details through the old man and dragon eye. Page 330 begins the user-confirmed day-59 material and is excluded except as next-day marker. + +# Conflicts and Uncertainties + +- The same names vary heavily across transcript and handwritten sources: Ataba/Attabre, Anadreste/Annadressdey/Annadrazadey, Koko Rem/Coco Rem/Kokoram, Garadwal/Garadul/Garigal, Dunnan/Dun/Dunnen/Dunham, Lies/Walks with/in Morning Dew, Cardunald/Cardano/Cardonald/Valenticard, Hartwell/Hathwall/Heartwall/Marthall, Ensi/Ennui/Onwi, Trayman/Traymond/Tresmen/Tremon/Tri-moon, Stolchar/Stoltjar/Stolcher, Squall/Swall, Bellburn/Balburn/Melbourne, and Lost Vein/Lost Vain. +- Briarthorn's moon-party memory is fragmented; Thomas, Ennui, Hannah, Francine Joy's daughter, and Mama Marthall may be conflated by damaged recall. +- It is unclear whether the blue dragon teacher was willingly stashed in the glass coffin, trapped as a defense, or imprisoned. +- It is unclear whether the dead mind worm continued suppressing the blue dragon teacher's memory. +- The pale emaciated caster's identity, element, exact relationship to Valenthilde/Valentinhard, and reason for protecting Trayman's body are unresolved. +- Dotharl's Squall-tower visions are symbolic and not fully interpreted. +- The exact location and defenses of Lost Vein remain incomplete. + +# Source Excerpts + +- Briarthorn: "My friends... I thought you were dead." / "I was... Apparently I'm not anymore." +- Briarthorn: "They needed me to go for some reason. And I can't know why." +- Fire elemental: "We need to report back." / "Come back later." +- Merikok/Merocok: "You can take this one. I don't need it anymore. Just continue doing what you're doing. It's fine." +- Cardunald: "I had to shut myself down so that he didn't take over me... because in his hands it would have been dangerous." +- Blue dragon teacher: "The last time you came here for knowledge... things did not end well." +- Cardunald on Browning's plan: the Dome traps everything inside like the elemental prisons and sacrificing everybody would be enough power. +- Reflected-woman thread: "I had a thought that I cannot utter." / "If we can remember her... she's not fully gone." +- Bellburner blessing: "May the roads forever be open, may your eyes never close, and may the coins fall in your favour." + +# People, Factions, Places, Items, and Open Threads + +People and figures include Eliana/Ellaina, Dirk, Morgana, Invar, Geldrin, Dotharl/Dothal, Bynx/Binks, Haze/Hayes, Lies/Walks with/in Morning Dew, Lord Briarthorn, Valencia/Cardano/Cardunald/Cardonald/Valenticard, Mama/Mum Hartwell/Hathwall/Heartwall/Marthall/Marshall, Thomas, Ensi/Ennui/Onwi, Hannah, Francine Joy's daughter, No Hurt, Traymond/Tresmen/Tremon/Tri-moon, Ataba/Attabre, Trixus/Trixis, Anadreste/Annadressdey/Annadrazadey, Bene/Benu/Benham, Garadwal/Garadul/Garigal, Koko Rem/Coco Rem/Kokoram, Merikok/Merocok/Mary Cook, Rubyeye/Ruby Eye, Icefang, Annadressdey's white dragon threat, the blue dragon teacher, fire elementals, Bish and Bosh, Platinum, Browning, Avelina/Avaline, Wrath, Lady Envy, Rubyeye's wife, A Grain/Agraine, the reflected long-haired woman, Errol, Valenth/Valenthilde/Valentinhard/Valenthide, Stolchar/Stoltjar/Stolcher, Squall/Swall, the Sultan, the pale emaciated caster, the darkness elemental [uncertain], Our Lady Chorus, Ogrim Fungalus, Sansong, Gren Boulderfist, Dirk senior, Blisterfoot, Knits/Nits Flesh/Knit's Nest, Verdegrim, Ingris, Lady Carpool/Harpool, Rockwake, Hartwall, Willow Whisper, Bone/Benu, Jack, Mother Goose, Hansel, Goldilocks, Cinderella, Alfred, Anastasia, Peridita/Paradita, the Bellburners, Lady Envy's lamias, and the old man in Squall's tower. + +Places include Brass City, the random/abandoned Brass City house, the citadel, the Minaret of Learning, Ataba's tower, the blue dragon secret library, the Grand Tower/Grand Towers control room, Snow Serene/Snow Sorrow/Snowsorrow/Sun Serene, Salvation, the Dome/barrier, Stolchar's tower, Squall's tower, Thomas's lab, the moon, Everchard/swamp, Tradesmalls/Tradesports, Ashkelon/Ashclone, Worndu, Hartwell/Hathwall's lab and shrine, Pine Springs, Freeport, the Great Foot of the Flame Scar, the Sulphur Flats, Bellburn/Balburn/Melbourne, and Lost Vein/Lost Vain. + +Groups and factions include tabaxi, lizard/salamander/snake folk, blue dragons and wyrmlings, fire elementals, old wizards, gnomes, merfolk, dwarves, dragons, elves, Dunnans/Dunham/Dunnen, humans, goliaths, avian folk, halflings, Tarnished dragonborn, Goliath city forces, guerrilla dragons, Ashkelon forces, vulture people / former Hephaestus worshippers, copper-dragon resistance refugees, Bellburners, Bridge-associated travellers, and lamias. + +Items and resources include Rubyeye's eye/item, Bish and Bosh, the magical apple, the destroyed travel/location bookcase, Geldrin's promised spellbook, the sending stones, the silver dragon figurine/statue with jade dust, Errol, Trayman's skull/crystals, the gnome/founder armour Alfred, old dragon coins, 100 gp given to refugees, the disabled portal, the tiny fire elemental/portal, the dangerous dining-room hatch, the Bellburn pan, the pan traded away, the consumed penny, jade/hexagonal coins and jade daggers considered for teleport anchors, and the Bellburners' route information. + +Open threads include Briarthorn's resurrected state and moon memory, the blue dragon teacher and library dangers, Merikok's missing light/dark split, Cardunald's Dome-control plan, Envy/Wrath/Rubyeye/Mama Hartwell sequencing, Eliana's original form and the reflected woman, the exact use of the silver dragon figurine for Imprisonment, Errol's new sentience and Rubyeye compass instinct, the pale caster protecting Trayman's body, Stolchar's silence, Squall's tower visions, the status of Garadwal, Briarthorn's future, copper refugees in Hartwell's lab, Alfred's recharge method, Anastasia's situation, Lost Vein's defenses, and the Bellburn children stolen by lamias. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index 663ea32..03ea2b3 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -37,141 +37,107 @@ source_pages: - 313 - 314 - 315 +source_audio_transcripts: + - session-2026-01-20 + - session-2026-01-27 + - session-2026-02-03 + - session-2026-02-10 + - session-2026-02-17 + - session-2026-02-24 + - session-2026-03-03 + - session-2026-03-10 + - session-2026-03-17 complete: true --- # Narrative -Day 57 began in the Black Dragon City in the Underblame. At 08:00, the notes expected a council of all towns or states for a treaty to be signed. Infestus could ensure Salinas caused no issues, agreed to get the party to the Brass City, and offered scrolls, a charged shield crystal, and respite in his city. The party bought a newspaper whose only recorded items were that someone had been executed for not paying a bar tab, a Pegaus farm note, and nothing else interesting. +Day 57 began in the Black Dragon City in the Underblame, with an expected 08:00 council of towns or states for a treaty signing. Infestus could keep Salinas from causing trouble and agreed to send the party to Brass City with scrolls, respite, and a charged shield crystal. Infestus's wife gave them scrolls and a powerful shield crystal, smashed an orb, produced a tiny human, and transformed it by chanting into a blue dragon. The dragon carried the party to just outside Brass City. -Infestus's wife was waiting for them. She gave the party a powerful shield crystal and scrolls, smashed an orb, and produced a tiny human. After chanting, she turned the tiny human into a blue dragon. The dragon carried the party to just outside the Brass City, and they walked in. Two diplomats greeted them, one with smoke-skin type scales and a cobra head under his hood. They said "The People" now ruled the city. The Excellence of Air had left and never returned. Inside the walls the city was lush, relaxed, and did not seem enslaved. The Glowscale were excited and intrigued to see the party. The diplomats said elf wizards caused many issues, the old masters had enslaved the labour, and their friend Valenth was best sought at the citadel, still under the old regime, or at the Gaol. +Brass City was now ruled by "The People." Two diplomats greeted the party, one smoke-scaled and cobra-headed beneath his hood. The Excellence of Air had left and never returned. Inside the walls, the city was lush, relaxed, and no longer seemed openly enslaved. The Glowscale were excited to see the party. The diplomats explained that elf wizards had caused many problems, that the old masters had enslaved the labour, and that Valenth was best sought at the citadel or Gaol. -The party learned that many former slaves had repaired and maintained the city while others worked in the citadel on what was said to be a great weapon. A rebellion began when slaves wanted bread and were not allowed any; they protested and burst into flames. They had been told that once their ruler left they would be attacked, but no attackers had appeared, not even Envy. A tabaxi jeweller named Facets that Gleam in the Sun, who had been taken to work in the citadel, said he had cut a gem there and was disappointed he did not finish it. Brass City was a place of great elemental power, with fountains and similar features coming from the planes. He said the supposed weapon was actually a body of shield crystal being crafted into a focusing crystal, stored in one of the four great minarets. Creatures in the towers had become unruly after the Excellence left. +The party learned more about the rebellion and the citadel project. Many former slaves had maintained the city while others worked in the citadel on what had been described as a great weapon. The rebellion began when slaves protested being denied bread and burst into flames. A tabaxi jeweller, Facets that Gleam in the Sun, had been taken to cut a gem in the citadel and said the supposed weapon was actually a shield-crystal body or focusing crystal stored in a great minaret. Creatures in the towers had become unruly after the Excellence left. -Dirk spoke to a fountain. The water wanted to go somewhere but was doing an important job because its father had told it to. It referred to Hydran before being given to the blue dragons, said the dragons went bad, said its father liked the merfolk but was annoyed by the purple thing, and wanted the party to fix the babies not going to him. If they sorted that out, the water promised to be on their side when the end came. +Dirk spoke to a fountain. The water wanted to go somewhere but had been told by its father to do an important job. It referred to Hydran, blue dragons that had gone bad, merfolk, a purple thing, and babies not going to Hydran. If the party fixed the babies, it promised to be on their side when the end came. -At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a sun, a thick-set dwarf, and a slender woman with a bow, and a depiction of Garadwal speaking with the Dunnen people. There was no evidence of a fire elemental living there. Statues lined the corridor facing the wall. One turned statue bore text like "runs in the streams" and possibly "high mountainness?" Another "slays foes bravely." A tabaxi with scales, missing one back leg and ears, was described as "fur of night scales of the sky," first princess of the union, and was slightly cracked. The sword had been made but perhaps the person had not, suggesting a Medusa-type spell. Other statues and objects involved weighted idols, jewellery, gravity and weight, the Lord of the Brass City, a necklace partly carved from a statue, something that hummed and "lungs," "Gleams in the first light," possible high priests of Goklhar, a fine-dressed figure with a book and rose, a brazier, and "Lies in the morning dew," prophet of the light. When a coin was placed in an orbiting spot, Ignan said, "We are close once more. I will help you say his name when you pick him up." +In the citadel, the party found blue dragons, Trixus imagery, a depiction of Garadwal with the Dunnen people, and many corridor statues tied to the Council. The sword was cracked, the necklace was carved into a statue, and one orbiting-coin interaction produced Ignan's words: "We are close once more. I will help you say his name when you pick him up." Picking up the cat released Haze as a big dog. Haze warned them not to damage anything in the city, said the Excellence of Air had gone to the dome to make a trap for Sierra so Browning could take her place, brought Bob and Bosh back, and said the sword was in the Earth plane with Tremon's body. The Trixus throne room controlled several planes at once. -The party picked up the cat. Geldrin said "There," and the cat became Haze as a big dog, who had come to aid them in their travels and was still due to their service to his mistress. Haze warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. Haze remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. Haze stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that Haze called a control room controlling multiple planes at once. The sword was in the Earth plane with Tremon's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. +The party recovered the sword through Earth-plane and memory-room sequences: a dark Earth space, a Harn-like cat tavern, a Riversmeet temple vision, a stone Dirk, moon and water memory doors, and Provista about twenty years earlier. They saw Eliana Hartwall arrive in a box from Everchard with the sword, met Bleakstorm, learned he wanted Icefang's spirit freed, returned to Brass City, and restored the sword. They then recovered the necklace through a theatre/jewellery-box sequence, identified the real necklace as "Drinker beads of wine," made it real, and restored it to its statue. -In the Earth-plane space, it was completely dark and Invar's magic did not work until Haze made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Hartwall, jagged granite, and shield crystal. The shield crystal was a piece of Tremon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. +The party next pursued the offering bowl. The throne room changed, leaving only two paintings and moving the candelabra to the ceiling. Geldrin touched a painting and was shrunk into Eliana's waterskin until school biggening juice restored him. Dotharl activated the painting, and the party entered a water-themed replica throne room with a whirlpool, a tropical fish painting, an icy swamp lake, and a calm lake. -A rat came to Morgana and disintegrated. Cacophony, previously met on page 231, appeared as a huge worm, died, and said it would show her something interesting. Her cider showed Rubyeye in a runed bathroom removing his eye. The cats hissed, the fire burned brighter, and then things returned to normal. A cat said the outcome was not predetermined and that the party had got rid of something bad following them. Dirk put the coal in the fire and saw a man saving a young girl; a clever way appeared with the rings. The party reached a small round temple near the remains of the Riversmeet bridge and the dwarven bridge, with Seward marble, about thirty benches carved with odd stones, five unlit altar candles, and ten gold statues under the altar representing different races but missing a dragon. The candles would not light until Invar used the torches around the room and Geldrin placed the wizard-race statues by the candles. They saw a vision of a large round table with seven people: five wizards, Hannah, and Icefang. Mama Hartwall, angry and holding the blue ball, said, "This is enough. You can't continue this any more." A silver scale in dirt appeared and then a door. +Dirk spoke Aquan to Globule in the whirlpool. Globule said he was trapped and served someone above Hydran and Noxia. When asked about that figure, he said, "No, him is forgotten, more than lost." Behind the throne, two jellyfish-headed guards said the party could not enter, the bowl was theirs, and Noxia had issued a death warrant. They did not attack until Eliana crossed the threshold. The party killed them; one emitted an alarm-like whale noise. -The next space was a thriving, decadent Goliath throne room. Lion-headdress rockmen flanked the throne. Someone who looked like Dirk with his sword was made of stone. Pictures showed a white dragon by a river, the party as they now were, and a young beautiful sphynx. The stone Dirk had the needed sword but had just got it back from a ghost. He wanted proof that the party were themselves and proof of how they killed Perodita. They gave the granite and saw a vision of Justiciars moving rocks off a dragon's body. The stone Dirk told them to return to the fiery-beard chap, Huntmaster Throne, and said stone Dirk had brought the dome down. Four doorways appeared: Moon, Dragon Head, Arching Wave, and Butterfly. The party were told not to choose the moon door but opened it because the last trinket was the moon crystal. It seemed to lead to Craters Edge, and Dirk heard garbled conversations. The dragon door showed snow, pine trees, dread, and a memory of flying or crashing through pine needles, scratching scales. The wave door let water through and left a tiny arm bone when closed. The butterfly door smelled of swampy Everchard and Morgana's house; it showed Morgana's newer-looking house about twenty years earlier. Betty saw someone there before Magpie stopped her: a younger Chorus who had "made" a baby that was given away and already had a name. Haze said these places all seemed a little different from the real locations. +The tropical painting held a large clam and distant shipwreck. The clam said Globule was a bad prisoner and that its friend, a fishman in the icy painting, had the prison key. In the icy painting, the party found a frozen swamp resembling Morgana's home, dead winter bees, dead or removed trees, salty air, many birds, and a boarded hut. A jackdaw told Morgana, "Here at last," and said a white-ish, translucent or glass-like dragon was gone. -When the moon door reopened, it showed a black sky and crystal surface changed to the moon, then Brass City with a massive stone table and purple rock men missing an arm and head. The dragon door shifted to Pinesprings with a green/yellow flash, chatter, crying, and a baby dragonborn. Geldrin entered through the moon door and found Tremon's body incomplete. A salamander expected the tabaxi jeweller Facets that Gleam in the Sun, trying to get light to go in but not out. Geldrin found where a shard had come from and put it back, causing all four doors to open safely. Andy saw the moment after the fight with the Mother: a dark-skinned woman running, with a tree behind her. He charged through a stone door. The wave door led to mother-of-pearl walls, a palace, two mermen, a pool, and the City of Aquarius, where Keepers of the Pact were welcome because Lord Hydran said they could come. The party concluded the doors were memories of promises or deeds, possibly distractions. +Inside the hut were a preserved white rose, a conch horn, and a wooden fake bowl with wrong remembered runes. Blowing the conch summoned a watery marid-like Lord of High Waters / Myriad one, who claimed many titles, connection to Noxia and Hydran/Hydrus, and offered two wishes if one freed him. He insisted he was trustworthy and that he needed to present the bowl to the clam, but insight suggested he was mostly lying or grandstanding. The conch was a powerful abjuration prison for the entity; the white rose was powerful necromancy and later proved to be a Rose of Reincarnation, extending reincarnate's time limit to 1,000 years. Morgana took the jackdaw Mourning/Morning, who said he had been imprisoned for "creating funerals" and admitted killing people he judged bad, such as someone who cut down a tree and someone who shot a rabbit. -The dragon door smelled of the sword and led to Provista, a plateau town about twenty years earlier. The party came out four doors down from Eliana's house, and Haze led them toward the house, following the same baby crying. Eliana's mother saw a box from Everchard, and the family happily brought it in. Morgana said the Chorus made Eliana. At 1 AM, the notes exclaim "Eliana Hartwall!" The sword was in Eliana's house, inside the box with cloths. Morgana found another piece of black thread; the Chorus's eyes and mouth had been sewn shut with black thread. In the town square, a Founder's Day poster showed Bleakstorm and a Geldrin look-alike who was not Geldrin. It had been sent by sending stone and dated 17th March 991, which was not Founding Day. Bleakstorm was in the town hall with a freshly carved ice sculpture of an auroch. He could take them back to Brass City but wanted a personal favour: save him, just him. As the first man, he wanted to know whether Icefang's spirit was still present. It was, because Icefang died in the dome. Bleakstorm wanted the party to free Icefang's spirit. He clapped and sent them back to Brass City's plush throne room, now with only three wall pictures. The party put the sword back into its statue, fixing the cracks. +The party explored the Noxia-side rooms. They found homage-like dragon egg displays of carved salt and porcelain, a quartz dragon skull that shattered and was carefully mended, stored paintings of people they knew dead, and a familiar domed room containing a duplicate Errol. Touching the duplicate stopped the breeze and caused psychic messages: "Message for Errol. Message for Errol. Get back here." Repairing the door stopped the pain. -Bynx called on Trixus to ask why they were fixing the statues. Trixus said the statues were "the Council." The party next sought the necklace. Haze carried them back to the throne room and an air picture. Dotharl looked different and felt stronger. Haze led them to the normal-plane statue room and through a door to a jewellery box. A tabaxi playing piano wore a necklace called "Drinker beads of wine." The party pickpocketed it, and she turned over a five-minute hourglass. In a theatre room they found more false necklaces. Ruby eyes glittered with "useless presents." They eventually found the real necklace on a coat peg, dispelled invisibility, and made it real instead of stone. Their checklist now had the bowl, necklace, and sword checked, with tongs, coat, and a dragonborn-tail crouched fake remaining. After returning the necklace, it melded to the statue while still remaining a necklace. +The yoke/bowl room held a correct-looking stone bowl beneath a greased glass cloche on a wobbly plinth. The cloche and plinth broke, so the party replaced the bowl with the fake wooden one and repaired the display. Archaic tabaxi text on the door was a prayer to Igraine or a Grain deity. A following room had nine more identical stone bowls. Identify visions gave two clues: "Sacrifice and I will let you have it," and "The entrance shows the way, a pain you will take with you." Attempts to fill bowls with booze and pray did not work. Other rooms held a sacrificial knife and nine freshwater globes like pokeballs. In a domestic room, the party found two jellyfish children whose parents were the guards they had killed. The children said Lady Noxie had told them no one could enter and would reward them if they stopped intruders. -For the offering bowl, the room changed again, leaving two paintings and moving the candelabra to the ceiling. Geldrin touched a painting, disappeared, and ended up shrunken in Eliana's waterskin until school biggening juice restored him. Dotharl activated the painting and the party entered a replica throne room with paintings of a vortex or whirlpool, tropical fish under tropical sea, an icy swamp lake, and a calm still lake. Dirk spoke Aquan to Globule in the whirlpool. Globule said Noxia trapped him because he worked for "Him"; when asked who, he said, "Him, Hydran, then Noxia." "Him" was forgotten more than lost, and Globule had no arms or legs. +The party searched the dead jellyfish parents, finding shells, greenish iridescent pearls worth about 500 gp, and crude wasp and scorpion symbols of Noxia. The Rose of Reincarnation glowed while they considered helping the parents. Globule explained himself as a guide for rivers: "I show them the way to the sea. Without me, rivers would never flow to the sea." The party summoned the conch entity and pressured him to prove he could free Globule. He did so. Globule appeared as a ten-foot water bull/steer and immediately warned, "Don't free him," calling the conch entity a con artist whom Hydran had imprisoned. Globule identified the clam as containing the Lord of Tar, said a spirit of Igraine/light/grain had been brought by merfolk about twenty years earlier, said the real bowl was metal rather than stone, and suspected Stone Sages, snake-headed servants of Noxia, had replaced or petrified the bowls. The freshwater globes held young water elemental babies, which Globule collected for safekeeping. -Behind the throne, two jellyfish-headed people guarded the bowl and said the party could not enter or leave because Noxia had issued a death warrant against them. The party fought and killed them. The room held a mother-of-pearl and coral sphynx throne. A painting with tropical fish showed a large closed clam, a shipwreck, and a fish man with the key to the prison. The clam called the whirlpool a bad prisoner. Invar and Dotharl entered another painting and found what seemed to be Morgana's hut near dead Everchard trees, all boarded up and surrounded by birds. Morgana entered, smelled salt, and was called "Mother" by a bird. The notes wonder whether "he" who was gone amid devastation was a dragon, see-through, or Salanus. +Dirk entered the lake painting and found a real landscape with lake, savannah grass, rivers, woodland, and a distant settlement. A bird-followed figure threw something metallic into the lake. A pigeon told Dirk he could not get out, then Morgana entered and helped him leave. The pigeon recognized Morgana, said she had fixed its wing 30 or 300 suns ago, called Mourning her enforcer, referred to what Cacophony had done to her, and was surprised she still had her eyes. After Dirk and Morgana left, the painting turned purple and eerie. Globule warned that staying in such places could erode memory like rushing water. -Inside the hut were a white rose, a sea conch with a mouthpiece, and a wooden offering bowl like the one sought. Morgana blew the conch and released a watery genie-like entity: Myriad one, Lord of the High Waters, seeker of truth for Hydrus. He offered two wishes, one of which had to free him, and said he needed to present the bowl to the clam. The party did not think he was telling the truth. They took the items and birds. `[uncertain: Iachdais]` told them in Common that the other birds were with him; his name was Mourning. Mourning had been imprisoned for creating funerals and killing people who cut down trees or killed rabbits. Morgana had "created" him and had taken a while to come get him. The clam said he did not want the bowl and that Myriad was his friend, true but hiding things. The clam wanted freedom, and only a friend whose name he knew but would not give could free him. +The watertight door led to Hydran's underwater side. Globule cast water breathing. A Hydran keeper / merlady arrived, saying Lord Hydran said the party needed help. A pact parchment promised that the Pact Keepers would retrieve the captured souls of the merfolk unborn from the realms of darkness. Hydran offered the bowl directly if the six party members signed. The keeper said, "No confusion. No subterfuge," and instructed them that when they reached the dark realm they must step off the beaten path. The party signed. At their request, the keeper revived the jellyfish parents and placed them in magical slumber. The Noxia-side walls darkened afterward. -The party left the paintings and explored other doors: a mother-of-pearl dragon door that caused awe, dread, and reverence; a whirlwind elemental door; an oxen-yoke door for an auroch; a room of shells with a porcelain or crystalline salt dragon not recognized as any known dragon species; a smaller quartz dragon like Salanus? that shattered and was reassembled with many tiny cuts; and storage paintings of people the party knew depicting their deaths. Dotharl entered an orb door and found a familiar domed room with a slight breeze and a small mechanical bird. `[uncertain: Eroll?]` said it was him and that he had been trapped there while looking for Ruby Eye from the Goliath tower. The Eroll in Geldrin's bag and the room Eroll were identical. Dotharl touched the room Eroll, cracks spread, the breeze stopped, and psychic damage hurt Eliana until the door was repaired. +Hydran's keeper then showed warning rooms. A tiefling-like man with a staff and jagged hand was the one who captured the party's allies; his body had awakened in his laboratory, his spirit had occupied a stashed body at his base, and he had used power over crystals. A living-flame prince was in the party's next destination and wanted to "pull a Noxia" by becoming a god; going through to the Realm of Fire meant literally walking into his house. A Morgana relief showed birds, Igraine, a knife, and young dragon bones; when asked who the bones were, the keeper answered, "You." The final room held the true bowl and a relief of Noxia wounded by arrows, with the six party members opposite her. Invar took the bowl. Asked about the vessel used against Valenth, the keeper said it was a fragment of creation in Sancery/Sankery [uncertain] and that more information would come soon in a friend's home. She briefly showed a hammerhead-shark / waterspout form before returning the party to the throne room. Only the fire painting remained; the chandelier blazed and an inky shadow lay across the floor. -The yoke door held an offering bowl in a wobbly glass case on a plinth. Morgana removed the case but smashed it, and the plinth broke when the party tried to replace the bowl. Invar created a new case and fixed the plinth. Another rawhide-inlaid door marked the bowl as a tabaxi prayer to Igraine. Beyond it were identical roots on plinths. Invar's attempts to identify them produced anxiety and visions: a voice said, "A sacrifice & I will let you have it," and a later underground scorpion vision said, "The entrance shows the way, a pain you will take with you." The party tried filling the bowl with booze and praying, but received no answer. +Globule stayed with the fountain elementals because he could not pass the barrier. The party restored the bowl to the Priestess of Igraine statue, healing its cracks. Remaining objects were the tongs, cat, and dragonborn tail. The party entered the fire painting. Invar felt Stolchar's presence lessen. The fire realm was wrong: black cracked lava stone, smashed doors, no throne, no paintings, and Haze could not smell Sierra. Red-skinned horned guards served Grand Sultan Azar Nuri / Azanari and said Haze was not welcome. -Further rooms held mushrooms, flowers, trees, bushes, [uncertain: swampy] ground, a bloodied knife in a glass case, a hanging cage with nine condensation-covered globes like pokeballs, and two jellyfish children who had been told by Lady Noxia not to let anyone in. Their parents were the jellyfish people the party had killed. Dirk told the children their parents were not coming back. The dead jellyfish people had shells and pearls worth about 500 gp and scorpion-like symbols under their armour on chains. The White Rose was identified as the Rose of Reincarnation, extending the reincarnation time limit from ten days to one thousand years. +Geldrin's information about Tremon's arm and Envi/Envoi won an audience with the Sultan, a fifty-foot, six-armed, red, horned, brass-armoured fire prince. The Sultan confirmed he had the tongs, objected to Invar's Stolchar symbol, and said Envi worked for him. He wanted passageways to the mortal plane opened, his crystal/entrapment device completed, and the god of death provoked into manifesting on the mortal plane so she would break the ancient contract and could be trapped. He offered the tongs immediately and later 10,000 platinum with trinkets or power. He threatened to destroy the party if betrayed. Geldrin suggested making him god of death instead of fire. The Sultan referenced wizards' ascension notes, Throngor, a piece of creation/orb, and Valenth, and said the Noxia/Sierra plan had been working until the party interfered. The party accepted under duress, and he threw them the stone tongs. -Invar called for the Lord of High Waters and asked that Globule be freed. The Lord demanded freedom first, but the party did not trust him and persuaded him that he was not powerful enough to do it. He freed Globule anyway. Globule warned not to free him, calling him a con artist whom Hydran had imprisoned; the Lord sulked back into his coral. Globule might recognize the true bowl. The Lord of Tar was trapped inside the clam. A foreigner was trapped by the merfolk, a spirit of Igraine, mean, about twenty years ago; Globule did not see whether the bird who flew away came out. The correct bowl was not in the bowl room and was stone, not metal. Globule mentioned Stone Sages, snake-headed people who turn others into stone, and suspected Noxia may have replaced him. The pokeballs contained water elemental babies, perhaps required for the sacrifice; Globule collected all of them and gave them to Dirk. +Because normal exit from the fire realm was blocked, the party explored. An imp merchant sold a turban and deck of cards in exchange for white paint and 15 feet of rope, then revealed that a wall hanging could be entered by lighting candle and incense, taking travellers back before the guards. Invar forged a goblet for Stolchar; the cup refined itself after prayer, proving Stolchar could still hear faintly. The party restored and lit the marketplace tapestry and entered old Brass City. -The "Submarine" door led to Hydran's realm. Dirk entered the lake painting and could not find a way back. He saw a figure with birds. Morgana entered, initially could not find Dirk, left, then returned to help him. A pigeon told Dirk it was too soon and landed on Morgana's head, saying she had fixed his wing 300 suns ago. The pigeon said Mourning was not evil, but was Morgana's enforcer, and that help had been needed after what someone did to her; it was surprised she still had her eyes. The word "Dome" appeared, the village changed only after Dirk left the painting, and an odd scaled fish jumped from the lake. +In the old city, coins read 2842 AP. The city was thriving with tabaxi, blue dragonborn, blue dragons, and traders. The party met Gleams in the Forge Light, a tabaxi priest-smith of Stolchar, and his apprentice Serpus, a human-seeming woman later connected to the blue dragon Serpus Alsepherus. Serpus had just completed the marketplace tapestry the party had used and understood that visitors would come at the creation point. She had visions after meeting Icefang. Using future-linked items, she sent them home through another tapestry of the citadel hall. Back in the present, the page about Serpus Alsepherus had been torn from a dragon book and aged, suggesting she removed knowledge of her future warning. -Beyond the Submarine door was a wall of water, a barnacle door with a rusted handle, and a watchful starfish. A chamber held shark statues jumping over two dying corpses and a parchment contract promising to save babies' spirits from the realm of darkness. The party learned Kesha is Noxia's sister. A merlady appeared, said the party were keepers as she was, and that Hydran said they needed help. She advised that when in the dark plane they should steer off the beaten path. Hydran would get the bowl if the party agreed to sign the Pact; Lord Hydran accepted them, identified himself as patron of travel, and offered information and Pact membership. The merlady agreed to revive the jellyfish people, and the party pushed them back toward the painting room, which had gone dark. +The party restored the tongs. Only the cat and tail remained. Lowering the chandelier allowed entry into the light. In the Grain's realm, Morgana followed a woodlouse's advice to "seek more of us, talk with us, play with us," and learned to act through connected animals. She recovered the dead cat spirit and gained a crow-like life elemental teacher named Bruce, who said, "No, I don't kill people. I'm more of a talker." -The merlady showed them carvings. One showed a man with a staff and a hand, like Envi, described as the one who captured their allies. He was free: his body had awakened in his laboratory, his spirit had reached his base and occupied a body there, and he had gained power and control over the crystals. His goal was uncertain, and he had not been near his other parts. Another warning showed a creature made of living flames, with a small six-armed creature the party had killed looking up at him. This was the creature who wished to "pull a Noxia." He was a prince, in the party's next location, and they were about to walk into his house; they wished to make him a god. Noxia had replaced someone, but Kesha had not. A later picture showed Morgana, Igraine with a knife and birds, standing on the bones of a small dragon. It had not happened yet and was not a picture of murder or the weapon. The notes connect this to reincarnation and Eliana's bones, asking why Eliana does not remember properly if Morgana reincarnated them, whether because of the worm or something else. A final room held the bowl on a plinth and a carving of Noxia wounded by an arrow, with two figures at her sides; where earlier images showed Sierra's dogs, this one showed the six party members. Invar took the bowl. When asked where the vessel that took down the god was, the merlady sent them back and briefly seemed to turn into a hammerhead shark. Back in the throne room, only the fire painting remained, the chandelier was fully ablaze, and a dark inky shadow covered the floor. Globule stayed with the party but Nare thought he was dangerous. Globule wanted to take the baby pokeballs to a river, then stayed with the fountain elementals while the party replaced the bowl. +The golden poem door led to Attabre's civilized halls. The party passed etiquette rooms, relaxed, drank, and sat to eat meals from their ninth birthdays and campaign memories. The lion-like tabaxi host revealed himself as Bynx's father, a god of knowledge and civilization. He explained the First Pact: five original gods met in the Grand Tower and agreed to rule from afar, making later divine pacts binding. He said Icefang's blessing explained the party's repeated visions of past and future. He told Eliana she was Icefang's daughter and also his, that she resisted the wizards' magic and mind wipes more strongly than her sister, and that they killed her. He described Browning as alive but enslaved to his chair by parasites and magics, said Cardinal, Rubia, and Onwe had died and been brought back through the barrier's power, and admitted he had made a pact so civilization would flourish. He warned that in Kasia's realm divine power would be hard to reach and that death there would give souls to her. Geldrin gave him the Carnox / forbidden-knowledge item to keep in the library. The god said the barrier was a net trapping souls on the mortal realm; Kasia had used her pact to get precious souls, including the merfolk babies. Mortals could steal souls from her because they were not bound like gods. He produced the stone cat body and head; the party mended them. He allowed the party to rest, with only minutes passing outside, then returned them to the throne room with the light gone and a black shrieking pit open. -The party next pursued the tongs through the fire painting. Invar felt his presence to `[uncertain: Stolchar]` lessen. They appeared in a fire-realm throne room with broken doors and a missing throne. Haze disliked it because he could not smell Sierra, suggesting it might be someone else's realm. Six identical statues stood below. Red-skinned, small-horned beings guarded doors and served Sultan Azar Nuri. The Sultan, a fifty-foot-tall horned being in a turban, disliked Invar's symbol to `[uncertain: Stolchar]`. Envi worked for him and had Tremon's arm. Geldrin told Azar Nuri to tell Envi to bring it to him; Azar said if Geldrin did, Envi would bring it. Azar Nuri lacked servants on the party's plane and struggled to move minions there. He cared only about retaking his power. He wanted the party to open passageways and continue fixing the crystal body being carved for him. Geldrin tried to promise to make him god of death. The bargain recorded was: tongs now; gold when the crystal is complete; force the god of death to make a mistake and appear on the party's plane; and open a passageway for Azar Nuri's envoys to come to the party's plane. Azar threw them the tongs, and they left. +The party entered the dark realm. Dirk's ancestors answered "weal" when asked whether they would land safely. The party met Sauver/Sawyer, a huge goat-man, then Throngore, who first appeared as a monstrous demon and then a goat-headed man in a black suit. Throngore said the party's divine favours hid them from Kasha's eyes, but only until she learned they were there. He wanted them to free one of his men from her prison, warned them to leave other prisoners and avoid the main fight, and gave them the stone tail. He said, "The deal is done." Although Throngore said to stay on the path, Hydran had told them to step off the beaten path. The party followed a seashell clue instead. A cockroach tried to mislead them by saying, "No, not this way. Definitely not. This is wrong," and Morgana, realizing it lied, ate it and gained temporary freedom from restraint. -The fire realm held other rooms: a meeting room where an imp sold a turban and deck of cards, smoke that could become a passageway to "her" via a candle-and-incense wall hanging and took travellers back in time before guards were there, a well-stocked unused forge where Invar made a goblet for `[uncertain: Stolchar]` and received a refined goblet back, a blank-wall room with thread, a lectern, bowl, stick, and candlestick, and a room with a quiver, leather armour, bow, and antelope or gazelle skin on the floor. The party traded 15A, rope, and a tin of white paint for the imp's cards and turban. They changed the tapestry, lit the candle and incense, and the tapestry came alive. +The party reached an alternate prison tower topped with a purple crystal and surrounded by blue-purple wisps. They found dead wasp bodies, a bored goat-man at a smashed rear door, and 15 cold black wailing discs like but not identical to the Void communication puck. The goat-man guide, Santiago / [uncertain: Shevolt], malfunctioned, claimed he was there to free "Fred," and the party attacked. -The tapestry led to a lively past version of Brass City full of blue dragonborn and dragons. A market trader selling exotic fruits called Eliana a silver [unclear] colour, though they still looked green. The year of the coins was 2842 AP, and a cat wore a crown the party recognized. In the marketplace and gardens, things looked like the current day, and Morgana thought only twenty years had passed and felt closer to Igraine. The notes also record year 3480, when the tabaxi were ousted from the Brass, approximately 1050 years earlier. An elemental confirmed they were on the Mortal plane and needed an invitation to enter the palace. They asked to see "Gleams in the Firelight," one of the statues, and were allowed in. A Qunien-looking woman burst in saying she had finished the marketplace tapestry they had come through; she had enchanted it and had also been working on paintings. She was a dragon or serpent and needed objects from the party's time to return them, so they gave Dirk's Brass City glass beads and a scrap of Eliana's skirt. She cast a spell on another tapestry of the home hallway with the statues, saying it was a vision she had received since Igraine came to see her. Bynx's book was missing a page, apparently the page about her, which she had ripped out. The party returned and put the tongs back, leaving only cat and light/cat matters missing. +Inside the prison tower, wasp jailers struck with spiritually cutting blades that caused necrotic damage, death-save disadvantage, and halved healing. When Eliana was struck, everyone briefly saw her as a silver dragonborn with horn ribbons and an elf teddy bear. A leader dragged her toward a cell and shouted, "Master! The prisoner has returned!" The cell contained a pigeon feather. Eliana recognized the six-armed stone prisoner nearby as Stone Rampart, her former neighbouring prisoner. He called her something like "little heart wall." Her mother had killed him and dedicated him to Kasha; he had initially resented Eliana but came to like her. The party stole keys from jailers, freed Stone Rampart, and he helped fight. -The party chose the Light realm. Bynx lowered the chandelier and took them through to an exact replica room with a platinum throne and doors to each realm, including Attabone and Igraine. Through Igraine's door lay a flat, vast field of buttercups and daisies where Morgana had often been. She spoke with plants. It may have been an afterlife area; many people had once been there, but not for ages. A ladybird said the cat was there and gave a clue: Morgana needed to channel her power, seek more of them, and talk and play with them. Morgana located the cat about a day away, connected through animals and birds, and brought it back. Haze said it smelled like the needed item but seemed too easy. The cat was alive, or not certain; then it was dead. Morgana asked the bird to teach her this again, and it agreed. She named it Bruce. +A freed goat/demon betrayed them, saying, "Look, I can't trust that you won't betray me, so I need to do it first," and became a huge horned demon with flaming horns and molten axe. Stone Rampart held him off while the party freed other prisoners. Nuts the squirrel restored 40 hit points to everyone. A dead halfling woman gave Geldrin a bell and said, "Just ring it when you want to go home." A fire-bearded dwarf linked to Stolchar granted +2 AC. A water cow/bull was found but had lost its memory. A dove-headed Bridske/Bridge woman opened the god-locked top door. Lord Briarthorn, a thorn-bearded elf, recognized Eliana and remembered her sister and an Everchard/Razor farm hedge. Below, Kasha broke in as a colossal skeletal hand and hollow-eyed female face with wasp wings. -The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but Eliana could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from Eliana's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. Leadus' father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. +Lord Briarthorn restored the Water Bull's memory by touching him. The Water Bull's eyes blazed blue, he grew enormous, and he pulled the party into the seawater chamber. He said Kasha's realm was against the pact, that the seawater was pain, and that he needed an envoy because he could not enter the sea. Eliana called Globule. Geldrin used the mother-of-pearl conch and Song of Harmony to let the party breathe and speak underwater. Globule addressed the Water Bull as "my lord." The Water Bull commanded, "Free the babies." Globule replied, "Salamis's curse cannot hurt me. From the river to the sea, these babies will be freed." Thousands of unborn merfolk spirits gathered. Kasha said, "There is no escape." The Water Bull declared, "No, I will retake my place, demon." Globule told Geldrin he was ready; Geldrin rang the bell. The merbabies' song repelled Kasha, and the party returned to the mortal throne room in a cascade of water. -Attabre said Eliana's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. Eliana was not only Icefang's daughter but Attabre's too. Eliana was killed because they got in the way, being more strong-willed; Lady Elissa Hartwall accepted the spells, but Eliana did not, so they killed Eliana. Icefang got Lady Elissa Hartwall out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. +Haze smelled that something watery had changed. The party restored the final tail. All six statues cracked open like shells, revealing living tabaxi including a king. His last remembered year was 2034 AP, approximately 34 BD / 1,050 years earlier. He remembered the curse, learned the city had fallen and Salvation existed, and said the old society had been built on two races before a parting of ways, likely instigated by "her." The Igraine priestess, likely Lies with the Morning Dew, sensed the palace was sick and sorrowful, with restless fire spirits and Sierra/Stolchar absent or distant. She could sense Cardonald/Cardinal in a minaret and offered to guide the party. -The choice to bring down the dome remained the party's. Attabre said the gods would not mind except those who benefited, and bringing down the dome would weaken Throngore. Kasha had been allowed to get certain souls through the Barrier, the merbabies, to help her sister. The party had been good Envoys. Bynx would need to decide whether to stay and build the Goliath race or return to him. Geldrin asked how to leave his pact with Kasha to get Guardwell's soul. Attabre said Kasha was not bound like the gods, but she would do everything she could, which was limited on the Mortal realm but strong in her realm. Attabre let the party rest, and they returned to the Mortal realm. The death realm became a portal and the light disappeared. The party had to leave the safety of the city in the death realm and free the merfolk babies. Geldrin put part of Haze into Errol to help find the tail. Timon abseiled into the portal, Morgana became an eagle to explore, and Dirk asked the ancestors whether they would land safely. The ancestors said Whel, Eliana, and Dotharl should jump straight in, followed by everyone else. - -They landed outside a hole in another throne room. A goat man on the throne, bigger than Steven/Shark, named Sauver and one of Throngore's, asked if they came from the Mortal realm. He seemed bound there until their arrival and said Throngore requested an audience. Past the doors, the party were paralysed before a demon about one hundred feet tall and forty feet wide, with bleeding crab-claw hands, six arms, and four legs. Throngore then changed into a man in a black suit with a giant goat's head. He told Eliana he had not thought they would dare come there. He wanted them to free a prisoner they would know when they saw him. Since they were friendly with Air, he told them not to let her back in to take over his throne. The party had favours from many gods. Kasha could not see them unless told they were there. They would not have time to free any other prisoner, should not get involved in the main fight, and should stay on the path, contradicting Hydran's earlier advice to leave the beaten path. The party agreed. - -Throngore sent them to a path ending at a Dracula-style castle, with armies fighting near a tower like a memory of a fight: goats on one side, wasp humanoids on the other. The party tried to walk off the path while still following it. A signpost pointed one way toward the prison; Whel looked like a broken-off arrow. There was a hidden pathway [unclear] [uncertain: sea shell], and another way had a single sea shell, which they chose. A cockroach climbed onto Morgana and said it was the wrong way while nodding, so they continued. Shylow stopped and spoke to them, said he had something on his horns, rubbed dirt on them, believed they were goat people, and accepted names beginning with S. The prison disappeared, fog pressed around them, and a building appeared and grew huge. A giant purple crystal topped its spire, surrounded by thousands of blue wisps, with two wasp people at the door. - -Trying to circle the building revealed dead and invisible wasp bodies after Dotharl cast See Invisibility. The party found fifteen black coins that wailed like the Harley pack of doom and put them all on one wasp body. Farther around was a smashed-in door and an irritated goat man who had been waiting for them. Inside were many prison cells. `[uncertain: Shevolt]` recognized Eliana, malfunctioned, and returned. A familiar dread made Eliana feel they had been there before. When asked his purpose, he said he was there to free a fellow goat named Fred, and the party decided to kill him. The leader said Eliana was a prisoner who had been stolen. When hit by necrotic damage, Eliana briefly became a silver dragonborn with ribbons on the horns and a teddy on the belt. Stone Rampart, the nearby rock guy, was in the cell next to "mine." Eliana's mother had killed him and dedicated him to Kasha; he had not liked Eliana at first but grew to like her. The keys to the prisons were visible on the leader's belt. - -The notes list gods or god-like names and counts: Kasha; Throngore 4/13; Shylow; Sjorra; Lam 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. In one cell a thorn-beard elf, mortal, called Eliana darling and remembered going to the moon with Eliana's mother. He was Lord Briarthorn. The Water Bull had his memories back but could not reach the merbabies because he could not enter the sea water. Eliana entered the water and shouted for Globule, who came and helped free them. Kasha tried to break through the ceiling, and God Bull defied her, saying he would take his realm back. Globule told Geldrin he was ready; Geldrin rang the bell, and the party reappeared in the throne room. Haze said something smelled changed. - -The party returned to the statues and put back the tail. The stone casing broke away and revealed live tabaxi. The king asked how long they had been stone. The notes equate 2034 AP with approximately 3480, the same time the coins were smelted, and say they were cursed. The restored figures planned to speak to the people after planning. A priestess would guide the party to Cardonald. At the fountains, gossip said Lord Hydran was very happy but did not know what was happening; he went to find out, and Globule was back, taking the merfolk babies to the sea. The party agreed to rest and meet the priest the next day at 12:30. - -The party found an empty house and relaxed. Dirk felt someone scrying on him. Outside came a massive gush of water and six merfolk men in mother-of-pearl armour with a merlady wearing a driftwood crown, unfamiliar to the party. They had come to serve the party because of their deeds. She was Queen Mooncoral. The party had righted the greatest wrong done to the merfolk people, which the merfolk had not known about until recently. The first birth had occurred an hour earlier. Queen Mooncoral gave the party a sending stone, was asked to investigate where In'weo [uncertain] goes, and gave them a ring of fire resistance. The party rested and slept. +At the fountains, Hydran was reported very happy, with Globule taking the babies to the sea. The party rested in an empty Brass City house. Dirk allowed a scrying attempt. A gush of water brought Queen Moon Coral and six mother-of-pearl-armoured merfolk. She said Hydran had told her priests of the party's deeds, that the party had righted the greatest wrong done to the merfolk, and that the first birth outside the dome had occurred an hour earlier after perhaps a thousand years. She pledged merfolk aid in the final battle and in bringing down the dome, gave a barnacled sending stone, agreed to look for Jingwoo, and gave a Ring of Fire Resistance for rescuing Cardonald. The party slept, and the next page begins Day 58. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydran / Lord Hydran, Trixus, Garadwal, Dunnen people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Facets that Gleam in the Sun, Geldrin, There, Sierra, Browning, Bob, Bosh, Tremon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydran, Eliana Hartwall, Bleakstorm, Bynx, Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. +People and name-like figures include Infestus, Infestus's wife, Salinas, Valenth, the Excellence of Air, Facets that Gleam in the Sun, Dirk, Eliana Hartwall, Morgana, Invar, Dotharl, Geldrin, Bynx, Haze, Bob, Bosh, Trixus, Garadwal, Dunnen/Dunnan people, Ignan, Tremon/Treyman, Mama Hartwall, Hannah, Icefang, Rubyeye, Cacophony, Bleakstorm, Globule, Noxia/Noxie, Hydran/Hydrus, the Lord of High Waters / Myriad/marid, the Lord of Tar, Mourning/Morning, Igraine / the Grain, Errol, Lady Fred Thorpe, the Ancient Lion, Thomas James [uncertain], the jellyfish parents and children, Stone Sages, Hydran's keeper / merlady, Kasha/Kasia/Cash, the living-flame prince, Serpus / Serpus Alsepherus, Gleams in the Forge Light, Stolchar, Tor, Sultan Azar Nuri/Azanari, Envi/Envoi/Ennui, Sierra, Throngore, Browning, Cardinal, Rubia, Onwe [uncertain], Attabre, Carnox/Car Nox, Bruce, Sauver/Sawyer, Shylow/Shiloh, Santiago / [uncertain: Shevolt], Fred, Stone Rampart, Nuts, the dead halfling woman, the fire-bearded dwarf, the Water Bull / God Bull, Lord Briarthorn, Queen Moon Coral, Lies with the Morning Dew, Cardonald/Cardinal/Cardonel, Jingwoo, Lady Hartwald, Paradita, Salanus/Soulless/Selanis, and the revived ancient tabaxi king/Council. -Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. +Groups and factions include the party, The People of Brass City, Glowscale, old masters, former slaves, blue dragons, blue dragonborn, tabaxi, cobra/snake people, Stone Sages, Noxia's servants, jellyfish-headed people, wasp jailers, scorpion/wasp symbols, Hydran's Pact Keepers, merfolk and merfolk unborn, water elemental babies, Azar Nuri's guards, efreeti/fire servants, gods bound by the First Pact, Throngore's goat-men, Kasha's wasp forces, the old wizards, Dunnans, Snow Serene people, Bridge followers, and the ancient tabaxi Council. -Places mentioned include the Black Dragon City in the Underblame, Infestus's city, Brass City, the Brass City citadel, Gaol, the lush inner city, the four great minarets, elemental fountains, the citadel corridors, the Trixus control room, the Earth plane, Harn? tavern, the small round temple near the Riversmeet bridge and dwarven bridge, Riversmeet, the Goliath throne room, Craters Edge, Pinesprings, Everchard, Morgana's house, the moon-like crystal surface, Provista, Eliana's house, the town square, Bleakstorm's town hall, the normal-plane statue room, the theatre room, the water painting realm, Morgana's hut with dead Everchard trees, Hydran's realm, the realm of darkness / dark plane, fire realm, Azar Nuri's fire garden and throne room, past Brass City, the marketplace, the palace, Igraine's field / possible afterlife, Attabre's realm, the Mortal realm, Kasha's realm, the death realm, Throngore's throne room, the path to the Dracula-style castle, the memory battlefield, the prison with the purple crystal and blue wisps, the sea-water prison area, and the empty house where the party rested. - -Creatures and creature-like beings mentioned include the orb-made blue dragon, smoke-scaled cobra-headed diplomat, air elementals, fountain water elemental, earth elemental, Haze as a cat/dog, cats, the huge worm form of Cacophony, stone Dirk, the white dragon by a river, young beautiful sphynx, baby dragonborn, salamander, mermen, merlady, jellyfish-headed guards, clam, fish man, birds, Mourning, crystalline and porcelain dragons, small mechanical bird, water elemental babies, odd scaled fish, living-flame prince, hammerhead-shark transformation, imp, ladybird, pigeon / Bruce, Throngore's demon form, cockroach, wasp people, goat men, Water Bull / God Bull, live tabaxi released from stone, and merfolk retinue. +Places include the Black Dragon City in the Underblame, Brass City, the Brass City citadel and minarets, Gaol, the elemental throne/control room, Earth plane, Harn-like cat tavern, Riversmeet temple, Provista, Everchard, Morgana's home/swamp, Hydran's underwater realm, the Realm of Fire, old Brass City in 2842 AP, Serpus's tapestry rooms, the Grain realm, Attabre's knowledge/civilization halls, the Grand Tower, the dark/death realm, Throngore's throne room, Kasha's prison tower, the seawater chamber, Salvation, Seaward, Lake Azure / Azuroside, and the Brass City house where the party rested. # Items, Rewards, and Resources -Items and resources mentioned include scrolls, a powerful charged shield crystal, the newspaper, Infestus's wife's smashed orb, shield-crystal body / focusing crystal, the four great minarets, planar fountains, the citadel statues, a cracked sword, weighted idols, jewellery, a carved necklace, the rose and book statue, brazier, orbiting coin, Trixus-carved door, plane-control throne room, coal, silver dragon object like Mama Hartwall, jagged granite, shield crystal piece of Tremon, wet coal water, Scroll of Fireball, needle and bloodied thread, Rubyeye eye-removal vision, rings, Seward marble, five altar candles, ten gold wizard-race statues, blue ball held by Mama Hartwall, silver scale, moon crystal, tiny arm bone, black thread, the baby box from Everchard, sword in the box, Founder's Day poster dated 17th March 991, sending stone, ice auroch sculpture, the Council statue sword, "Drinker beads of wine" necklace, five-minute hourglass, fake necklaces, checklist box, school biggening juice, whirlpool/tropical/icy/calm lake paintings, wooden offering bowl, white rose / Rose of Reincarnation, sea conch, raven and other birds, mother-of-pearl and coral sphynx throne, shell room, porcelain salt dragon, quartz Salanus-like dragon, storage death paintings, Eroll mechanical bird, offering bowl in a glass case, rawhide-inlaid door, tabaxi prayer to Igraine, roots on plinths, bloodied knife, nine condensation-covered water-baby globes / pokeballs, shells and pearls worth about 500 gp, scorpion-symbol chains, barnacle door, watchful starfish, parchment contract to save babies' spirits, carvings of Envi, living-flame prince, Morgana and Igraine, Noxia wounded by an arrow, fire-realm tongs, Azar Nuri's turban, imp's deck of cards and turban, 15A, rope, tin of white paint, `[uncertain: Stolchar]` refined goblet, thread, lectern, bowl, stick, candlestick, quiver, leather armour, bow, animal skin, incense/candle wall hanging, past-Brass tapestry, glass beads from Brass City, skirt scrap, missing Bynx book page, chandelier, platinum throne, Attabre's book from Geldrin, Haze fragment put into Errol, fifteen wailing black coins, prison keys, bell, live-tabaxi tail restoration, Queen Mooncoral's sending stone, and ring of fire resistance. - -Strategic resources and plans include the expected treaty council, Infestus's support and restraint of Salinas, Brass City access, restoring the Council statues by returning their objects or body parts, There's guidance, Bob and Bosh's possible uncursing later, using planar/memory rooms to recover the sword, necklace, bowl, tongs, cat, light/cat, and tail, fixing Tremon's shield-crystal body, freeing water elemental babies / merbabies from the realm of darkness, Hydran's Pact offer, possible godly gifts before the next realm, Attabre's warning about death in that realm, the choice to bring down the dome, weakening Throngore by bringing down the dome, Kasha's pact pressure over Guardwell's soul, Throngore's demand to free a prisoner and not let Air retake his throne, the priestess guiding the party to Cardonald, and Queen Mooncoral's merfolk support. +Items and resources include scrolls, a charged shield crystal, the shield-crystal body/focusing crystal, the sword, necklace / Drinker beads of wine, offering bowl, candelabra, conch horn, Rose of Reincarnation, wooden fake bowl, stone bowls, greased cloches, sacrificial knife, freshwater water-baby globes, pearls and shells worth about 500 gp, Noxia wasp/scorpion symbols, true bowl from Hydran, mother-of-pearl/coral throne, the tongs, imp's turban and deck of cards, white paint and 15 feet of rope traded away, Invar's refined goblet, Serpus's marketplace and citadel tapestries, future coin, torn Serpus Alsepherus dragon page, dead cat spirit, Bruce, stone cat body and head, Carnox/Car Nox forbidden-knowledge item, goodberries, stone tail, black wailing discs, prison keys with god/floor symbols, Chain of Entanglement, bell from the dead halfling, fire-bearded dwarf's +2 AC blessing, Queen Moon Coral's barnacled sending stone, Ring of Fire Resistance, and future merfolk aid. # Clues, Mysteries, and Open Threads -Brass City appears post-rebellion and no longer openly enslaved, but its old-regime citadel still holds plane-control systems, air elementals, minarets, Council statues, and the shield-crystal body/focusing crystal. The Excellence of Air left and never returned, and after that the tower creatures became unruly. - -The fountain water elemental / Hydran thread links blue dragons, merfolk, a purple thing, and babies not reaching Hydran. Fixing the babies earned Hydran's support and later Queen Mooncoral's service, but the purple thing and exact mechanism remain unclear. - -The Council statues were cursed around 2034 AP / approximately 3480, the same time the coins were smelted and when the tabaxi were ousted from the Brass. Returning their objects or body pieces restored at least one live tabaxi king; the full Council roster and consequences remain unresolved. - -Haze says the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place. This links the dome, Air, Sierra, and Browning's replacement plan but does not fully explain who Sierra is or how the trap works. - -Tremon's body is incomplete and spread across planes or memories. Geldrin restored a shard to the moon/Brass City body, Envi has Tremon's arm, and the party restored the tail at the end of the day. - -The Earth-plane tavern sequence removed something bad that had been following the party, but the identity of that thing remains unknown. Cacophony died as a huge worm after showing Morgana Rubyeye removing his eye. - -Mama Hartwall's vision at the round table with five wizards, Hannah, and Icefang shows her trying to stop something involving the blue ball. It appears tied to the old wizard project, Icefang, Hannah, and Eliana's past. - -Eliana's origin is reframed again: the younger Chorus "made" a baby, a box from Everchard delivered Eliana and sword to Provista about twenty years earlier, the name Eliana Hartwall appears, Attabre says Eliana is both Icefang's and Attabre's daughter, Lady Elissa Hartwall accepted spells while Eliana did not, and Eliana was killed for getting in the way. Necrotic damage in the death realm briefly revealed a silver dragonborn with horn ribbons and a teddy. - -Bleakstorm wants a personal favour to save him and free Icefang's spirit, which remains in the dome because Icefang died there. - -Globule, the Myriad / Lord of the High Waters, Lord of Tar, Hydran, Kesha, Noxia, the clam, Mourning, Igraine's spirit, and the water babies form a tangled water-realm prison problem. Globule calls the Lord of High Waters a con artist whom Hydran imprisoned, while Hydran still offers a Pact and helps free the babies. - -Kesha is Noxia's sister. Noxia replaced someone but Kesha did not. Noxia had issued a death warrant against the party, held jellyfish children as guards, and appears wounded in a carving with the party in place of Sierra's dogs. - -Envi is free, has awakened or occupied a body in his laboratory/base, controls crystals, captured the party's allies, works for Azar Nuri, and holds Tremon's arm. His goal is unknown, and he has not been near his other parts. - -The living-flame prince who wants to "pull a Noxia" is in the party's next location and is being made into a god. This may connect to Azar Nuri, fire powers, and the god-of-death bargain. - -Geldrin's bargain with Sultan Azar Nuri grants the tongs but promises gold when the crystal is complete, an attempt to force the god of death to make a mistake and appear on the Mortal plane, and a passageway for Azar Nuri's envoys. This is dangerous and unresolved. - -The past Brass City tapestry maker is a dragon/serpent who had visions since Igraine visited, enchanted the marketplace tapestry, ripped out the page about herself from Bynx's book, and returned the party with time-linked objects. +Globule says the figure above Hydran and Noxia is "forgotten, more than lost," leaving a major identity mystery. The conch entity / Lord of High Waters is a con artist imprisoned by Hydran, but may still have useful knowledge. The Lord of Tar remains imprisoned in the clam. The Stone Sages and Noxia's replacement or petrification of bowls remain unresolved. -Igraine's realm, Morgana's animal/bird channeling, Bruce, Mourning, the birds calling Morgana Mother, and the picture of Morgana with Igraine over Eliana's small-dragon bones suggest Morgana's created/enforcer role and reincarnation history are still incomplete. +Hydran's pact has been fulfilled for the merfolk unborn, but the barrier still traps souls and the root mechanism may continue until the dome falls or Kasha's claim is broken. The Water Bull has retaken something of his place, Globule is taking the babies to the sea, and Queen Moon Coral's people are recovering, but the long-term state of merfolk souls remains a strategic concern. -Attabre's lore says the princes became dangerous, wrong deals may have kept them in check, a father descended to save an imprisoned child, and five others at Ground Towers made a pact to rule one but from afar. This may explain the gods' bargains, the prisons, and the dome. +The fire prince / Sultan Azar Nuri wants the party to open passageways, complete a crystal entrapment device, provoke the god of death into manifesting, and allow him to seize divine status. The bargain granted the tongs but remains dangerous and unresolved. Envi/Envoi has Tremon's arm, a laboratory body, a stashed body, and crystal influence. -Bringing down the dome remains the party's choice. Attabre says the gods will not mind except those who benefit and that it will weaken Throngore. It may also affect Kasha's access to souls, Throngore's realm, and existing prison bargains. +Serpus Alsepherus tore out her own warning page in the past. Her eventual future as a blue dragon and the consequences of changing that warning remain unclear. -Hydran told the party to leave the beaten path in the dark plane; Throngore told them to stay on the path and avoid the main fight. The party chose the sea-shell direction despite contradictory signs and a cockroach warning that also nodded approval. +Morgana's connection to Igraine, Mourning, Cacophony, her eyes, the pigeon, Bruce, and the dragon bones identified as hers is unresolved. The keeper said the bones were not a murder but a choice. -Throngore wants a prisoner freed and does not want Air to retake his throne. The party found Lord Briarthorn and the Water Bull / God Bull in the prison, but the identity of the prisoner Throngore meant and what freeing Briarthorn means remain unresolved. +Eliana's past imprisonment in Kasha's tower is strongly implied by the silver dragonborn form, horn ribbons, elf teddy, pigeon feather, and Stone Rampart's recognition. The reason she was stolen from the prison and the full identity of her prior self remain open. -The death-realm prison shows Eliana may once have been imprisoned there, stolen from a cell near Stone Rampart, the rock guy killed by Eliana's mother and dedicated to Kasha. `[uncertain: Shevolt]`, Fred, the prison keys, and Stone Rampart remain unclear. +Throngore's bargain and the identity of his intended prisoner are uncertain. Stone Rampart was freed, a goat/demon betrayed the party, and several prisoners were released despite Throngore's warning. Consequences may follow. -Queen Mooncoral and her merfolk now owe the party for righting the greatest wrong to their people, unknown to them until recently. The first merfolk birth occurred an hour before her arrival, and she gave a sending stone and ring of fire resistance. +The vessel / fragment of creation in Sancery/Sankery [uncertain] remains important to Valenth and divine-scale change. Attabre says mortals can steal souls from Kasha because they are not bound by divine law. Dirk's pact over Garadwal/Guardwell's soul remains dangerous. -Dirk felt someone scrying on him while the party rested in Brass City. +The revived tabaxi Council and king may change Brass City politics. The palace remains sick and sorrowful, Cardonald/Cardinal is trapped in a minaret, fire spirits are restless, and Sierra/Stolchar's presence is absent or distant. Queen Moon Coral has pledged aid, agreed to look for Jingwoo, and identified Salanus/Soulless near Seaward as a threat whose salt/poison curse affects land and sea. diff --git a/data/4-days-cleaned/day-58.md b/data/4-days-cleaned/day-58.md new file mode 100644 index 0000000..c1bf29e --- /dev/null +++ b/data/4-days-cleaned/day-58.md @@ -0,0 +1,124 @@ +--- +day: day-58 +date: unknown +source_pages: + - 316 + - 317 + - 318 + - 319 + - 320 + - 321 + - 322 + - 323 + - 324 + - 325 + - 326 + - 327 + - 328 + - 329 +source_audio_transcripts: + - session-2026-03-24 + - session-2026-03-31 + - session-2026-04-07 + - session-2026-04-14 + - session-2026-04-21 + - session-2026-04-28 + - session-2026-05-05 +complete: true +--- + +# Narrative + +Day 58 began after the party slept in a random or abandoned house in Brass City. The city remained relaxed after the revolution, with tabaxi lounging, sewing, and dancing while lizard, salamander, and snake folk who had once served the fire elementals repaired and cleaned the city. + +The party returned to the citadel to meet Lies/Walks with/in the Morning Dew. Lord Briarthorn was with her, unexpectedly alive or at least embodied, while Haze/Hayes had left the party. Briarthorn greeted them with, "My friends... I thought you were dead," then said, "I was... Apparently I'm not anymore." He was unsure whether he had his original body, which seemed similar to the body that had perished long ago. He recognized Eliana in the death realm because she looked different there; outside it, he only knew because he could feel it. His memories of death were unstable and contradictory, an eternal existence that he both did and did not want to think about. + +Briarthorn remembered Valencia/Cardano/Cardunald as a young one at school. He also remembered going to the moon with Mama/Mum Marthall/Marshall, Thomas/Ennui [uncertain], and Hannah, Francine Joy's daughter. They used the portal in Eliana's mother's house, linked to the dragon place, but he could not remember why he went: "They needed me to go for some reason. And I can't know why." He also helped create the sentient No Hurt mushroom and warned that its spores could take over the brain, optic nerves, eyes, and eventually the tongue. Morning Dew sensed Cardunald near the top of a minaret, Traymond/Tri-moon's corpse with little guarding, and angry spirits plus some of her people in another minaret. + +The party entered the Minaret of Learning, a school, library, and bureaucracy tower dedicated to Ataba/Attabre. A warded door blocked elementals and spirits. Geldrin modified its runes so light, water, and air could pass while fire remained blocked, allowing Dotharl and Bynx through. Inside, the lower floors preserved tabaxi classrooms, sphinx drawings, blue dragon toys, university rooms, libraries, and rugs recording old divine and civic knowledge. + +A carpet showed five sphinxes, with Trixus prominent. Morning Dew said the unknown fifth sphinx was the one for the dwarves; merfolk did not receive a sphinx but were blessed with memory. A scientific book on Ataba listed the higher sphinx or minions as Anadreste/Annadressdey/Annadrazadey for dragons, Trixus/Trixis for tabaxi, Bene/Benu/Benham for elves, Garadwal/Garadul/Garigal for the Dun/Dunnan/Dunnen humans, and Koko Rem/Coco Rem/Kokoram for dwarves. Other gifts included memory for merfolk and learning for gnomes. Goliaths and avian folk had sought Ataba's approval but had not received a sphinx. Annadressdey made a true sacrifice against a massive white dragon threat at Snow Serene, imbuing her power into white dragon descendants including Icefang and Icefang's line. Trixus's bracelet inscription was remembered as "a blessing from Ataba, protector of the city Salvation to his children, first of his name, fifth of his kind." + +On a spellbook and library floor, a rug showed three blue dragons. Heavy brass or copper doors were locked and warded. Geldrin identified high-level magical locks and opened one by tapping Rubyeye's eye or item against it. A glass coffin or stasis tomb shattered inside, releasing a woman in blue, Arabic or hareem-style clothes who shouted "Intruders!" and attacked with lightning before transforming into a huge serpentine blue dragon. The party knocked her unconscious without killing her. A dead mind worm was found deep in her ear, though it was unclear whether a dead worm could still suppress memory. + +Invar accidentally triggered a shelf's fire trap and destroyed a travel or location bookcase. The remaining shelves were warded with fire or evocation traps and Counterspell protections. Morning Dew identified the blue dragon as a former teacher of noble children and wyrmlings. Morning Dew cast Greater Restoration, but warned that the teacher might still attack. Bynx tried to contact Ataba to heal or clear her; instead Merikok/Merocok/Mary Cook spoke through him, accusing the party of meddling, saying they would understand soon, and adding, "You can take this one. I don't need it anymore. Just continue doing what you're doing. It's fine." After a goodberry, the teacher woke confused. She said the library held secret information, remembered "the man with the horns" or "the fallen one" being there, and said Ensi/Ennui/Onwi had something to do with her people leaving and her being left behind. She warned that fire elementals were coming and struggled with the news that it was roughly 1,000 years later than she believed. The party learned or concluded that Merikok was the fallen form of Koko Rem, the dwarven sphinx, and that part of him was missing. The teacher warned that some library knowledge had contributed to her people's downfall and should not fall into other hands. + +Fire elementals approached after the explosion. Dirk heard words including "disturbance," "here," "fire," "care," and "traps." The party locked the door and projected a blue-dragon sigil. One elemental said, "We need to report back," and another said, "Come back later." + +A small retriever-like dog claiming to be Hayes scratched at the door and brought back Bish and Bosh because he had "promised." Bish and Bosh were no longer cursed or compelling. Separately, they were normal blackjacks. Together, they became +1 finesse/light blackjacks. Bish could stagger a target on a hit result of 21 or more, preventing reactions and bonus actions until the start of the wielder's next turn. Bosh could, once per day on a hit, force a DC 17 Constitution save or knock a target unconscious for 1d4 rounds. + +The upper floors included a crowned-tabaxi bureaucratic or rulership floor and a museum-like civilization floor. The latter showed the original Grand Tower before later copper, crystal, or white-wizard additions; three merfolk cities; several dwarf groups; dragons before the Snow Serene/Snow Sorrow split; a gnome city with airships and towers; and human tribes with a central mediator. Goliaths, halflings, and avian folk were absent. + +At the top, a hot door decorated with dancers and performers opened into magical black smoke. Failed saves caused mind-control effects, with smoke trailing from victims' eyes. Eliana was controlled and stabbed Geldrin. Dotharl and Geldrin later suffered effects as well, and controlled Geldrin cast a dangerous high-level fireball. The enemies included exploding flame creatures and a larger smoke-spider or insectoid with eight spindly legs, a man's face, and a distended jaw. Its claws damaged mind or soul. Invar's spiritual weapon killed the smoke spider, and the smoke vanished. + +Cardunald/Cardano/Valenticard was found motionless on a bench, as in the earlier truancy vision. She was an ornate, high-grade constructed body and vessel for a soul rather than an ordinary automaton. She had shut herself down to prevent the smoke creature from controlling her. Bynx sent a message into her mind, and the party proved themselves with the secret that there was a lot of dwarf porn in her library. The runes on her chest faded and she woke, asking, "It's safe?" She explained, "I had to shut myself down so that he didn't take over me... because in his hands it would have been dangerous." She identified Dotharl as one of her mother's early creations, like a sentry drone, and called Platinum "the one creation that hasn't betrayed me." + +Cardunald believed Ensi/Ennui/Onwi caused her capture or translocation through the barrier. Only one of her old compatriots could have forcefully moved her against her will through the barrier, and she suspected Onwi and Browning were back to old ways. Onwi had Traymond's arm or staff, which would let him maneuver through the barrier. The party's head item could open the barrier but not teleport through it. + +Back in the library, the blue dragon teacher refused to let Cardunald take books, saying, "The last time you came here for knowledge... things did not end well." She claimed the library for her people but agreed to prepare Geldrin a safe spellbook by tomorrow, selecting only knowledge that would not pose an existential danger to her kind. + +Cardunald said the Dome or barrier had been made "to protect people" and seemed to believe this. When the party explained Browning's plan to use the trapped population as power to become a god, she realized the structure made sense: like the elemental prisons, the Dome trapped everything inside to power something, and sacrificing everybody would be enough. She said the Dome should come down, but simply breaking it after another prison collapse could release all prisoners in chaos. She proposed using the Grand Towers control room to reroute power so the prisoners stayed contained by their own prisons while the Dome came down. + +Cardunald said Avelina/Avaline was perhaps the purest of the old group and may have been trapped outside because she resisted the plan or learned Browning's true intent. She said Merikok had been "kind of killed," gone up in a puff of smoke, and was engineered because they needed a creature of light for the last hole or prison. Garadwal chose to bind himself with void to become strong enough for a prison. Wrath held Rubyeye and had entombed Hartwar/Heartwar/Hartwell [uncertain]. Wrath was not exactly in Rubyeye's eye; the eye was more like where Wrath lived or hid. Replacing the eye might not be enough. + +Cardunald said Lady Envy was originally meant for her because others mistook her envy of Rubyeye's wife for a sufficient hook. She refused because "it was just a crush" and she understood Rubyeye and his wife were truly in love. The party suspected Envy needed to be handled before freeing Mama Marthall/Hartwell or Rubyeye, lest Mama Marthall be released still under Envy's influence. + +Eliana told Cardunald, "It appears that I am Evelina/Eliana Hartwell/Marthall." Cardunald remembered Hartwell's second child as if recovering a forgotten fact and recalled Eliana as a "little whelp" who was protective of her mother. She suggested that restoring Eliana's original form or body, if possible, was beyond her and might require a priest of A Grain/Agraine. During talk of Eliana, Marthall/Hartwell, and school memories, Morgana saw a naked long-haired woman reflected in Invar's armour and later motion in Eliana's dagger. Cardunald knew who she was, became visibly nervous, and said, "I had a thought that I cannot utter," and "If we can remember her... she's not fully gone." The party stopped that line of conversation. + +The party reviewed its priorities: deal with Envy and remove her influence on Mama Marthall/Hartwell, free Rubyeye from Wrath and his endless-loop prison, free Mama Marthall and reveal Eliana is her daughter, use Cardunald at the Grand Towers control room to bring the Dome down safely while leaving prisoners contained, retrieve Geldrin's spellbook, possibly fix Ensi/Ennui/Onwi, and inspect Traymond/Tri-moon's body. + +The party investigated Mama Hartwell/Marthall's imprisonment. It was the burial form of Imprisonment: she was far underground in a magical force sphere and could not be reached by ordinary teleport or planar travel. The spell used a silver dragon figurine or statuette as a component. The party remembered such a figurine in Hartwell's lair or shrine, partly green from jade dust, and decided they likely needed the exact object. + +Errol was examined. Valenth/Cardunald-like magic determined that he was alive and sentient, not merely an automaton: "he's alive like you... he's not just an automaton anymore... his spirit's been awakened." Errol insisted, "I've always been real," complained about not being used to being alive, and objected to being stuffed into a bag or pocket dimension. He could find Rubyeye by instinct like a compass, using warmer/colder direction-finding, but could not describe the location. + +The party explored Stolchar/Stoltjar's tower. Geldrin modified the door runes so only fire elementals were blocked. Inside were iron-banded doors, mosaics of five chromatic and five metallic dragons, and forges for precious metals, military or war metalwork, and mundane construction. Invar tried to pray to Stolchar for permission but received no contact despite performing the ritual correctly, implying the Sultan or fire-plane situation blocked Stolchar there. Morning Dew said Squall had a tower, but people avoided it and some did not return. Official records named Squall as god of weather, change, loss, and air; grieving people prayed to Squall to understand change and loss. + +At the top or guildhall of Stolchar's tower, the party found Trayman/Tresmen/Tremon's body: a huge roughly 30-foot carcass with legs detached and propped against the wall, head missing, at least one arm missing, and torso reshaped into a faceted inward-reflecting crystal reminiscent of shield or pylon crystal. Geldrin suspected reattaching the head would not simply reanimate it because consciousness, if any, was likely tied to the head. + +In the same room was a very pale, emaciated human-looking figure in red-gold robes and turban, alive but almost motionless in a worn chair. He communicated by blinks. He was not stuck, did not choose to be there, needed help but not escape or completion, did not need food or water, and was concentrating on a dangerous long-running spell. He was shielding the place or Trayman's body rather than locking it. Geldrin detected powerful abjuration and conjuration. The figure was the reason the Sultan could not get in. Valenth said the Sultan was one of the elemental creatures the tabaxi created protections against and one reason the tabaxi had to leave. The spell's power was compared to the magic that moved Snow/Snowserene's room. Further questioning suggested the figure was not a follower of a god, was likely a darkness elemental rather than fire, did not dislike the Sultan, blocked him because the consequences of entry would be bad, did not block all elements, knew Trayman personally, and had an unclear relationship to Valenthilde/Valentinhard/Valenthide. The party chose not to interfere until they understood him. + +Dotharl stayed in Brass City while the others traveled. The party received sending stones from Morning Dew and left one with Dotharl. Valenth teleported the travelling group near the Dome by Thomas's lab, and they used Trayman's skull or crystals to open the barrier. Briarthorn left near Everchard or the swamp to make his own way, while the party asked birds and Our Lady Chorus to watch him. Morgana used Transport via Plants to reach Tradesmalls/Tradesports. + +Tradesmalls was becoming a mixed settlement of Goliaths, Dunnans/Dunham, and greenish-copper Tarnished dragonborn. Dirk visited his family tent, where his sister Ingris immediately looked for Bynx. The council included Ogrim Fungalus, Sansong, Gren Boulderfist, Dirk senior, Blisterfoot, Knits/Nits Flesh with attendants, and Verdegrim. Verdegrim said the peace agreements were going "swimmingly well," with the Tarnished promised part of the city and mutual protection and trade. Ogrim said Tradesmalls historically traded with small folk and should become cosmopolitan again. All Goliath cities were under Goliath control; dragons had retreated to guerrilla warfare; Lady Carpool/Harpool's forces had defeated or driven off Rockwake; Hartwall was well and garrisoning elsewhere; and Willow Whisper had taken over surviving Ashkelon forces and hidden in the savannahs. Another Errol-like bird had been found in Worndu, expanding the communication network. Knits/Nits Flesh said Bone/Benu had returned after penance, accompanied by Garadwal, whom Benu said was clean and would watch. Vulture people and former Hephaestus worshippers were integrating with the Dunnans and might be accepted after three years. Dirk's father asked him to keep in touch and received a sending stone. Bynx stayed with the Goliaths, Dunnans, and Tarnished to help rebuild civilization and perhaps go to Ashkelon. Dirk sent Anastasia a message via Errol saying they had been busy killing Peridita, freeing peoples and nations, and would see her soon. + +The party teleported to Hartwell/Hathwall's lab. The teleport-room door was blockaded from outside, and someone ran barefoot away. In the urn or shrine room, they found a red-haired young woman of about 18 sleeping in commoner clothes with a satchel, later identified as Goldilocks. They retrieved the silver dragon figurine or statue covered in jade dust without waking her. In an old bedroom, they found a red-haired young man named Jack, one of about eleven copper-dragon resistance refugees from Snow/Snowsorrow. Other refugees included Mother Goose and Hansel. Mother Goose said they had fled a retaliatory dictatorship, another group had gone elsewhere, only weak-willed copper dragons remained in the city, and the portal was disabled so the bosses could not follow. The party gave the refugees a map and context, suggested Hartwall/Pine Springs, gave them 100 gp in current coinage for supplies, and received old copper, silver, and platinum dragon coins. They warned the refugees not to release the tiny fire elemental or portal in one bedroom and not to open the small secret dining-room hatch because the place might explode. Mother Goose recalled Hartwall lore: Hartwalls were the ruling family among silver dragons, there was a scandal that a Hartwall slept with a white prince, a silver prince died mysteriously in a way that some blamed on wizards, and Hartwall was magical, "sort of" a wizard but unlike the city wizards. + +Geldrin inserted the recovered core into the gnome/founder armour. It powered up with purple or light-filled cracks and opened like powered armour. The internal voice took the name Alfred, recognized Geldrin's voice pattern as a founder and later as elite-class founder, and permitted him to use it. Alfred had 10 non-recharging charges. One charge activated it for 24 hours as plate armour AC 18 with no Strength requirement, proficiency, and spellcasting compatibility. While active it granted Light, and charges could power Jump, Strength 18 with advantage on Strength checks and saves, Investigation advantage, Shield, and 5th-level Magic Missile. Inactive, it required Strength 18 to wear or move. + +Dotharl explored Squall's tower alone. Morning Dew brought him there but refused to enter. The door was blackened or burnt wood and locked; Dotharl could not open it alone. A snake or lizard ambassador from the party's first Brass City visit helped pick the lock, saying, "I haven't lost my old skills," then left. Inside, cold plain stone echoed. Chalk drawings showed a living whirlwind with toothy maw and lightning eyes from Dotharl's visions, a six-limbed or four-armed vulture man in a sandstorm, and a non-bipedal eagle crackling with lightning. One room had darkness outside its window, sourceless light, and carefully placed objects including a copper coin, sock, ripped basket, small brown bag, shoelace, and lump of coal. Later rooms and visions included a hot windy vulture room with pictures of a burned house, library, and white-flower field; a bottomless koi pond whose ripples showed a pigtailed girl before an abandoned building; a people-of-the-world floor with pigeon/Arabica [uncertain], gnome, and gaunt elf; a decadent elf dressing room; an abandoned Freeport dock-front warehouse with rags, a stuffed silver dragon toy, and a bloodied tissue; a funeral or gravestone scene with a dwarf or silver dragonborn; barred third-floor doors; and a top minaret/minorette room with compass rose and weather decoration, a glass ceiling, a chair, and a very elderly man. The old man asked if Dotharl was Errol. A dragon eye appeared in the glass dome, resembling the white dragon from dream. The man said he was there because Dotharl expected to see him, said Dotharl was not like his father and was different, liked change and found being kept a prison because there was no change, said "we all need to make a decision about our forms," and asked what Dotharl came for. Dotharl said he felt lost and wanted to learn more. + +The party decided the least risky order was probably Envy, then Wrath/Rubyeye, then freeing Mama Hartwell/Marthall. Bellburn was a logical place to ask about Envy because of prior Envy and Lamia activity there. The party returned to Brass City by plants, teleport, and barrier routes. Geldrin collected the promised leather-bound, brass-trimmed spellbook from the blue dragon teacher, who asked them to send any more of her kind back to Brass City if found. + +The party sought a way to Bellburn/Balburn. A jeweller or merchant, possibly Facets that Gleam in the Sun or a related figure, joked or lied about Bellburn items but said people from Bellburn were camped in the Earthwise quarter. The party found light-skinned Goliath-like Bellburners who greeted them with "free travel to all" and said they came by "the winds of Bridge." They remembered the party member who had fought a dragon working for Lady Envy in their streets. They knew Envy was at the jade mines, called Lost Vein/Lost Vain, but could not go there because "they'd kill us." Lamias there extorted goods and materials and stole children at night to work in the mines. The party taught them a crude "butt check" to expose Lamia illusions by checking where an invisible body would physically be. + +The Bellburners explained routes. Brass City to Bellburn was about five days by road around the plateaus and mountains near the Great Foot of the Flame Scar. Lost Vein could be reached across the Sulphur Flats or by a longer route through the foot of the Flame Scar and Bellburn roads. They traded a Bellburn pan for one of the party's pans and gave a Bridge-style blessing: "May the roads forever be open, may your eyes never close, and may the coins fall in your favour." A first pan-based teleport returned the party to the same place, making the Bellburners laugh and call it a Bridge trick. A second attempt landed them on a familiar snowy mountain top outside the barrier. A third attempt, with a penny tossed into the pan, succeeded and brought them to Bellburn/Balburn/Melbourne. The next confirmed day began after Eliana slept really well. + +# People, Factions, and Places Mentioned + +People and name-like figures include Eliana/Ellaina, Dirk, Morgana, Invar, Geldrin, Dotharl/Dothal, Bynx/Binks, Haze/Hayes, Lies/Walks with/in Morning Dew, Lord Briarthorn, Valencia/Cardano/Cardunald/Cardonald/Valenticard, Mama/Mum Hartwell/Hathwall/Heartwall/Marthall/Marshall, Thomas, Ensi/Ennui/Onwi, Hannah, Francine Joy's daughter, No Hurt, Traymond/Tresmen/Tremon/Tri-moon, Ataba/Attabre, Trixus/Trixis, Anadreste/Annadressdey/Annadrazadey, Bene/Benu/Benham, Garadwal/Garadul/Garigal, Koko Rem/Coco Rem/Kokoram, Merikok/Merocok/Mary Cook, Rubyeye/Ruby Eye, Icefang, the blue dragon teacher, Bish and Bosh, Platinum, Browning, Avelina/Avaline, Wrath, Lady Envy, Rubyeye's wife, A Grain/Agraine, the reflected long-haired woman, Errol, Valenth/Valenthilde/Valentinhard/Valenthide, Stolchar/Stoltjar/Stolcher, Squall/Swall, the Sultan, the pale emaciated caster, Our Lady Chorus, Ogrim Fungalus, Sansong, Gren Boulderfist, Dirk senior, Blisterfoot, Knits/Nits Flesh/Knit's Nest, Verdegrim, Ingris, Lady Carpool/Harpool, Rockwake, Hartwall, Willow Whisper, Bone/Benu, Jack, Mother Goose, Hansel, Goldilocks, Cinderella, Alfred, Anastasia, Peridita/Paradita, the Bellburners, Lady Envy's lamias, and the old man in Squall's tower. + +Groups and factions include the party, tabaxi, lizard/salamander/snake folk, blue dragons and wyrmlings, fire elementals, old wizards, gnomes, merfolk, dwarves, dragons, elves, Dunnans/Dunham/Dunnen, humans, goliaths, avian folk, Tarnished dragonborn, Goliath city forces, guerrilla dragons, Ashkelon forces, vulture people / former Hephaestus worshippers, copper-dragon resistance refugees, Bellburners, Bridge-associated travellers, and lamias. + +Places include Brass City, the random or abandoned Brass City house, the citadel, the Minaret of Learning, Ataba's tower, the blue dragon secret library, the Grand Tower / Grand Towers control room, Snow Serene/Snow Sorrow/Snowsorrow/Sun Serene, Salvation, the Dome/barrier, Stolchar's tower, Squall's tower, Thomas's lab, the moon, Everchard/swamp, Tradesmalls/Tradesports, Ashkelon/Ashclone, Worndu, Hartwell/Hathwall's lab and shrine, Pine Springs, Freeport, the Great Foot of the Flame Scar, the Sulphur Flats, Bellburn/Balburn/Melbourne, and Lost Vein/Lost Vain. + +# Items, Rewards, and Resources + +Items and resources include Rubyeye's eye/item, Bish and Bosh, the magical apple, the destroyed travel/location bookcase, Geldrin's promised spellbook, sending stones from Morning Dew, Dirk's family sending stone, the silver dragon figurine/statue with jade dust, Errol, Trayman's skull/crystals, the gnome/founder armour Alfred, old dragon coins, 100 gp given to refugees, the disabled portal, the tiny fire elemental/portal, the dangerous dining-room hatch, the Bellburn pan, the pan traded away, the consumed penny, jade or hexagonal coins and jade daggers considered as teleport anchors, and Bellburn route information. + +# Clues, Mysteries, and Open Threads + +Briarthorn's returned body, his fragmented moon memory, and the reason he went with Mama Marthall, Thomas/Ennui, and Hannah remain unresolved. The No Hurt mushroom may still be dangerous if its spores reach eyes or tongue. + +The blue dragon teacher's imprisonment or stasis, the dead mind worm, and the dangerous library knowledge remain unresolved. Merikok/Merocok appears to be the fallen Koko Rem, but his missing light/dark parts and warning that the party will understand soon remain open. + +Cardunald's plan could bring down the Dome safely through the Grand Towers control room, but only if the prisoners remain contained by rerouted power. Browning's godhood plan remains active, and Onwi/Ennui has Traymond's arm or staff. + +The party's strategic order remains Envy, then Wrath/Rubyeye, then Mama Hartwell/Marthall, but the exact risks of freeing each prisoner are uncertain. The silver dragon figurine is likely the spell component for Mama Hartwell/Marthall's Imprisonment, but its exact use is unknown. + +Eliana's original form or body, the reflected long-haired woman, Hannah, and the idea that "if we can remember her... she's not fully gone" remain important mysteries. + +The pale emaciated caster in Stolchar's tower is shielding Trayman/Tresmen/Tremon's body from the Sultan. His identity, elemental nature, relationship to Valenthilde/Valentinhard, and the consequences of ending his spell remain unknown. + +Stolchar's silence in his own tower suggests the Sultan or fire-plane situation blocks him. Squall's tower gave Dotharl major symbolic visions about form, change, loss, his father, Errol, the white dragon eye, Freeport, the silver dragon toy, and bloodied tissue, but their meaning is unresolved. + +Garadwal's current cleanliness, Briarthorn's future path, the safety of the copper-dragon refugees in Hartwell's lab, Alfred's recharge method, Anastasia's situation, Lost Vein's defenses, and the fate of Bellburn children taken by lamias remain open. -
a18719bBridgedby Laura Mostert
data/2-pages/130.txt | 4 +- data/2-pages/137.txt | 8 ++-- data/2-pages/139.txt | 4 +- data/2-pages/140.txt | 8 ++-- data/2-pages/141.txt | 2 +- data/2-pages/169.txt | 2 +- data/2-pages/170.txt | 2 +- data/2-pages/172.txt | 2 +- data/2-pages/174.txt | 2 +- data/2-pages/178.txt | 2 +- data/2-pages/179.txt | 2 +- data/2-pages/258.txt | 4 +- data/2-pages/259.txt | 4 +- data/2-pages/260.txt | 2 +- data/2-pages/262.txt | 6 +-- data/2-pages/263.txt | 8 ++-- data/2-pages/267.txt | 2 +- data/2-pages/270.txt | 2 +- data/2-pages/271.txt | 2 +- data/3-days/day-36.md | 26 +++++------ data/3-days/day-42.md | 12 ++--- data/3-days/day-52.md | 22 ++++----- data/3-days/day-53.md | 4 +- data/3-days/day-55.md | 4 +- data/4-days-cleaned/day-36.md | 28 ++++++------ data/4-days-cleaned/day-42.md | 26 +++++------ data/4-days-cleaned/day-52.md | 38 ++++++++-------- data/4-days-cleaned/day-53.md | 16 +++---- data/4-days-cleaned/day-54.md | 2 +- data/4-days-cleaned/day-55.md | 8 ++-- data/6-wiki/aliases.md | 6 +-- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 2 +- data/6-wiki/clues/days-48-52-coverage-audit.md | 2 +- data/6-wiki/clues/days-53-56-coverage-audit.md | 2 +- .../clues/known-passwords-and-inscriptions.md | 4 +- data/6-wiki/concepts/barrier.md | 2 +- data/6-wiki/concepts/bridgeds-doors.md | 52 ++++++++++++++++++++++ data/6-wiki/concepts/bridgets-doors.md | 48 -------------------- data/6-wiki/concepts/elemental-prisons.md | 2 +- .../concepts/gods-bargains-behind-the-barrier.md | 8 ++-- data/6-wiki/concepts/papa-illmarnes-dome.md | 2 +- data/6-wiki/index.md | 1 + data/6-wiki/inventories/party-treasury.md | 4 +- data/6-wiki/items/minor-items-days-36-40-41.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 2 +- data/6-wiki/items/minor-items-days-48-52.md | 8 ++-- data/6-wiki/open-threads.md | 10 ++--- data/6-wiki/people/dirk.md | 6 +-- data/6-wiki/people/dotharl.md | 8 ++-- data/6-wiki/people/geldrin.md | 4 +- data/6-wiki/people/invar.md | 6 +-- data/6-wiki/people/minor-figures-days-36-40-41.md | 2 +- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- data/6-wiki/people/minor-figures-days-48-52.md | 8 ++-- data/6-wiki/people/minor-figures-days-53-56.md | 2 +- data/6-wiki/people/morgana.md | 2 +- data/6-wiki/people/peridita.md | 4 +- data/6-wiki/people/status.md | 2 +- data/6-wiki/people/valentinhide.md | 14 +++--- data/6-wiki/places/bleakstorm.md | 2 +- data/6-wiki/places/brookville-springs.md | 10 ++--- data/6-wiki/places/magstein-grimcrag.md | 2 +- data/6-wiki/places/minor-places-days-36-40-41.md | 4 +- data/6-wiki/places/minor-places-days-42-44.md | 2 +- data/6-wiki/places/minor-places-days-48-52.md | 8 ++-- data/6-wiki/places/minor-places-days-53-56.md | 2 +- data/6-wiki/places/riversmeet.md | 2 +- data/6-wiki/sources.md | 4 +- data/6-wiki/timeline.md | 4 +- 69 files changed, 258 insertions(+), 253 deletions(-)Show diff
diff --git a/data/2-pages/130.txt b/data/2-pages/130.txt index 257ebb7..466e70f 100644 --- a/data/2-pages/130.txt +++ b/data/2-pages/130.txt @@ -19,7 +19,7 @@ hears a clink where a bracelet falls off his wrist. He doesn't remember being kidnapped. Send Errol to Lady Newgate's sister for some transport -to meet us outside Brookville Springs at Bridge +to meet us outside Brookville Springs at Bridged Statue. Elementarium hasn't seen Peridot Queen in approx 1 month @@ -28,7 +28,7 @@ since we were last in town. Rescuees will go back to Huthnall & remove the worm from Lady Thorpe's ear. -Head around Brookville Springs to the Statue of Bridge +Head around Brookville Springs to the Statue of Bridged (female shape with no other female features, has a face with palms up towards the sky) diff --git a/data/2-pages/137.txt b/data/2-pages/137.txt index 66127d4..a57def6 100644 --- a/data/2-pages/137.txt +++ b/data/2-pages/137.txt @@ -25,13 +25,13 @@ down the corridor Pile through the corridor we came through & all black - no corridor - close & re-open door - looks like -a church, similar to early Bridget temples. +a church, similar to early Bridged temples. Door from the room opens to the outside - but no dome! Lots of doors off the courtyard - try to go up the tower - open the door & a red robed goliath is sat there shocked as we walk through. -clergyman, Arik Bellburn of Bridget. Says we came from -the dome. Bridget has freed us. I have skin of +clergyman, Arik Bellburn of Bridged. Says we came from +the dome. Bridged has freed us. I have skin of evil. Morgana - Bleak glimmer. Geldrin - lost winner - we are in the town of Bellburn. -Prayed for freedom from their oppressors (envy) & Bridget sent us. +Prayed for freedom from their oppressors (envy) & Bridged sent us. diff --git a/data/2-pages/139.txt b/data/2-pages/139.txt index 645af88..c8a2aea 100644 --- a/data/2-pages/139.txt +++ b/data/2-pages/139.txt @@ -27,7 +27,7 @@ Such a big deal Arik was injured - healed up. goliaths pay the blackscales sometimes & the ore kobolds. -Doors are sacred to Bridget +Doors are sacred to Bridged Hellfling - Mayor Longbottom - wants to accommodate us for the evening. Woke up in the church one day @@ -38,5 +38,5 @@ Wrath was part of Ruby eye but left him when we "took him out" Ruby-eye is still in the bag -Morgana asks Bridget if she will get us back in the dome. +Morgana asks Bridged if she will get us back in the dome. takes her to the chorus - has good & bad results diff --git a/data/2-pages/140.txt b/data/2-pages/140.txt index 707114e..cd3c564 100644 --- a/data/2-pages/140.txt +++ b/data/2-pages/140.txt @@ -4,16 +4,16 @@ Source: data/1-source/IMG_9804.jpg Transcription: Dirk & Geldrin put a grand towers penny onto -the statue of Bridget. It disappears & her eyes -glow green. Dirk goes through the door - Bridget +the statue of Bridged. It disappears & her eyes +glow green. Dirk goes through the door - Bridged eyes glow red. - Dirk comes out in Seaward! Tell the priest about penny on hand - she goes and shouts at Arik -about why they never gave Bridget money. +about why they never gave Bridged money. Dirk has gone back to yesterday. -Geldrin drops 2 pennys onto Bridget's hand, her +Geldrin drops 2 pennys onto Bridged's hand, her eyes glow green then yellow. we all go in the closet. We come out into a blue & white tiled diff --git a/data/2-pages/141.txt b/data/2-pages/141.txt index 20f3246..0deb3be 100644 --- a/data/2-pages/141.txt +++ b/data/2-pages/141.txt @@ -21,7 +21,7 @@ be much use now. The gods required a favour each and communication to their priests & a boon. -Bridget - way in but +Bridged - way in but Noxia - trinkets & barrier causes suffering sickness living near & touch diff --git a/data/2-pages/169.txt b/data/2-pages/169.txt index 52cb2f4..9359f4e 100644 --- a/data/2-pages/169.txt +++ b/data/2-pages/169.txt @@ -44,6 +44,6 @@ Inscriptions - Sefu - for the justice for the Hunt Holdhum - guides our hands & warms our hearts Tor - Protects Lion Head - Attabo - from the stories the people of the cats told -El [corna] - Bridge - to keep our peoples free +El [corna] - Bridged - to keep our peoples free offering bowls in front of the statues diff --git a/data/2-pages/170.txt b/data/2-pages/170.txt index df0651f..426ce1a 100644 --- a/data/2-pages/170.txt +++ b/data/2-pages/170.txt @@ -2,7 +2,7 @@ Page: 170 Source: data/1-source/IMG_9836.jpg Transcription: -Geldrin adds a towers penny to Bridge - Statues head moved to look +Geldrin adds a towers penny to Bridged - Statues head moved to look at geldrin - words - This place is safe. Morgana - adds nip to Attabo's bowl - words A drug to dull the loss diff --git a/data/2-pages/172.txt b/data/2-pages/172.txt index c901b5a..6eada55 100644 --- a/data/2-pages/172.txt +++ b/data/2-pages/172.txt @@ -16,7 +16,7 @@ standing rocking slightly laughing. Locked door behind us. Floor 25 (Door at top of tower it opens) 6 doors. Willow wispa is coming - mum's told -sword / shield / Axe / Tower / Book / Bridge / Axe. +sword / shield / Axe / Tower / Book / Bridged / Axe. writing [been?] to come Lock door behind us sleeping & talking Another hour before shift starts - boring. diff --git a/data/2-pages/174.txt b/data/2-pages/174.txt index 3e8be49..b6bdd5f 100644 --- a/data/2-pages/174.txt +++ b/data/2-pages/174.txt @@ -3,7 +3,7 @@ Source: data/1-source/IMG_9840.jpg; data/1-source/IMG_9841.jpg Transcription: Dragon vision on the ceiling shows Dragons terrorising -the town. [new?] used the coin from Bridge +the town. [new?] used the coin from Bridged & all but the fat dragon vanishes. Geldrin uses Treamon's skull to cause a meteor strike diff --git a/data/2-pages/178.txt b/data/2-pages/178.txt index 1ec9af0..0b8abb2 100644 --- a/data/2-pages/178.txt +++ b/data/2-pages/178.txt @@ -33,7 +33,7 @@ He often trusts his god which she appreciates. - Tips outside the barrier can be difficult but Perodita heading to Hartwall -Bridge's sister is nasty trickery (Atana?) Valentenhide +Bridged's sister is nasty trickery (Atana?) Valentenhide we have 7 hours before she gets to Hartwall. can go back in time but there is a cost Ruby eye is out of his sight diff --git a/data/2-pages/179.txt b/data/2-pages/179.txt index 0b7b8a7..caf97bf 100644 --- a/data/2-pages/179.txt +++ b/data/2-pages/179.txt @@ -15,7 +15,7 @@ Gravel basers. 1 hr 35 mins ask if we can free Perodita. - will need to ask -Bridge. - go through a doorway onto an invisible +Bridged. - go through a doorway onto an invisible walkway - Reopen the door to clouds. the clouds transform into a female face proposal to free Perodita - she seems to like that diff --git a/data/2-pages/258.txt b/data/2-pages/258.txt index b6819d3..718f598 100644 --- a/data/2-pages/258.txt +++ b/data/2-pages/258.txt @@ -10,9 +10,9 @@ The pacts are linked to the dome. If the dome ceases, then the pacts also cease. All of the prisons will release if the dome is removed. -Geldrin has a plan. Takes out the broom for her to see her sister, Bridget. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridget and open a pathway to her domain. +Geldrin has a plan. Takes out the broom for her to see her sister, Bridged. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridged and open a pathway to her domain. -Pathway opens and we decide we need to protect her, as by Valentinhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. +Pathway opens and we decide we need to protect her, as by Valentinhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridged will help her. Promise to release her regardless. Go through the door. diff --git a/data/2-pages/259.txt b/data/2-pages/259.txt index 2c9507e..aa70b67 100644 --- a/data/2-pages/259.txt +++ b/data/2-pages/259.txt @@ -11,7 +11,7 @@ Knock. Line appears and door opens. Cricket-headed humanoid appears and says the She is not really yet. -Gives us a screwdriver and is waiting for "Medinner." Bird person. Ask him to ask Bridget if she is taking visitors. He goes away. +Gives us a screwdriver and is waiting for "Medinner." Bird person. Ask him to ask Bridged if she is taking visitors. He goes away. Geldrin puts a red crystal in the divot. Goes to Dotharl and a raven opens the door and says the crystal is for a dwarf. @@ -26,4 +26,4 @@ Plaque on plinth: Dotharl: raven-headed lady tells him to go away; always a choice. -Geldrin asks if she knows where Bridget is and how to get there. No, but her friend does. Going to see him later, not sure when. +Geldrin asks if she knows where Bridged is and how to get there. No, but her friend does. Going to see him later, not sure when. diff --git a/data/2-pages/260.txt b/data/2-pages/260.txt index ed11fde..85afcc5 100644 --- a/data/2-pages/260.txt +++ b/data/2-pages/260.txt @@ -8,7 +8,7 @@ Opens the cricket cage. Cricket jumps onto the bowl and starts eating. Raven is Door comes to us. Cricket comes through: Cedric. -Morgana needs to do something. Tell him to ask Bridget to make a door for Morgana to get back through, and she does. +Morgana needs to do something. Tell him to ask Bridged to make a door for Morgana to get back through, and she does. Geldrin asks for the door, and Medinner can't because her show is on. Geldrin wants to see it and she lets him in. diff --git a/data/2-pages/262.txt b/data/2-pages/262.txt index f3b18fd..fd02c66 100644 --- a/data/2-pages/262.txt +++ b/data/2-pages/262.txt @@ -4,9 +4,9 @@ Source: data/1-source/IMG_9934.jpg Transcription: Medinner tells Dotharl we need to go soon. Takes a step off the edge. -Orb is a present from Bridget. Need to keep it with us until we don't. +Orb is a present from Bridged. Need to keep it with us until we don't. -Cedric and Medinner are Bridget's closest followers and can speak more freely and directly than Bridget. Bridget needs a favour. +Cedric and Medinner are Bridged's closest followers and can speak more freely and directly than Bridged. Bridged needs a favour. Remember she gave us a present as we are about to feel angry. @@ -18,4 +18,4 @@ Realise we can move how we want to. Invar and Dotharl speed towards the storm. D Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." -Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valentinhide, smash the orb, and release her to Bridget. +Dirk imagines a cloud tent house and Bridged on a throne, which merges to other imaginations. She will take gold Valentinhide, smash the orb, and release her to Bridged. diff --git a/data/2-pages/263.txt b/data/2-pages/263.txt index 4178872..7ba0af0 100644 --- a/data/2-pages/263.txt +++ b/data/2-pages/263.txt @@ -2,9 +2,9 @@ Page: 263 Source: data/1-source/IMG_9935.jpg Transcription: -Bridget wishes to be honoured a second time. Gods agreed not to interfere unless asked, but some of our kin interfered a lot. +Bridged wishes to be honoured a second time. Gods agreed not to interfere unless asked, but some of our kin interfered a lot. -Her kin is currently trapped and wishes him to be freed. Dotharl's granddad? Part of Dotharl is Bridget. The part of him being free: his dad is trapped, granddad is lost, Squeall. +Her kin is currently trapped and wishes him to be freed. Dotharl's granddad? Part of Dotharl is Bridged. The part of him being free: his dad is trapped, granddad is lost, Squeall. She likes freedom and trickery. Her husband likes lucky fortune, weather, change, and loss. Whatever her followers need she can get, within reason. @@ -16,7 +16,7 @@ Many paths we will take. Nothing is written in stone. But the freedom we chose t Choice to make: me, keep the identity now, or the one I once had. -Dotharl: keep humanity or not and rejoin Bridget's realm. +Dotharl: keep humanity or not and rejoin Bridged's realm. Geldrin: power offered, maybe too much to resist. Lots we don't know about Browning's. May all seem evil but who decides? He may need to go see his people. @@ -26,7 +26,7 @@ Dirk: on the path to free his people. More steps are needed and will need friend Morgana: choice to help us, cost for the aid given us is great. Those who seek to train her come at great cost to her. -Day 53 - Bridget / Domain +Day 53 - Bridged / Domain Friend is intriguing her. Why do we help each other? diff --git a/data/2-pages/267.txt b/data/2-pages/267.txt index c529cc7..d5408a1 100644 --- a/data/2-pages/267.txt +++ b/data/2-pages/267.txt @@ -18,6 +18,6 @@ At 12:00, army starts to move. Morgana flies ahead of the army to notify the town. -Bridget isn't dwarven construction: elemental? +Bridged isn't dwarven construction: elemental? Morgana comes across a small wagon train with ebony dwarves, around 40. They shoot at her and damage her, but she continues. diff --git a/data/2-pages/270.txt b/data/2-pages/270.txt index 80b27d8..966b7e2 100644 --- a/data/2-pages/270.txt +++ b/data/2-pages/270.txt @@ -20,7 +20,7 @@ Black dragon sister is nowhere to be seen. Bridge was damaged. -Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridget allowed it as it was for a trap, so she found it funny. +Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridged allowed it as it was for a trap, so she found it funny. Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. The Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. diff --git a/data/2-pages/271.txt b/data/2-pages/271.txt index d4a55fc..223d162 100644 --- a/data/2-pages/271.txt +++ b/data/2-pages/271.txt @@ -2,7 +2,7 @@ Page: 271 Source: data/1-source/IMG_9944.jpg Transcription: -Geldrin asks Bridget if Perodita is still travelling. A sleepy cockroach appears: she is asleep. Didn't have a good rest, too painful; it hurts, can't fix. +Geldrin asks Bridged if Perodita is still travelling. A sleepy cockroach appears: she is asleep. Didn't have a good rest, too painful; it hurts, can't fix. Dwarves staying at Grimcrag to recover and recuperate. She is approximately 13 hours away, depending on how much sleep she has had. diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md index 29c7911..a47a10c 100644 --- a/data/3-days/day-36.md +++ b/data/3-days/day-36.md @@ -81,7 +81,7 @@ hears a clink where a bracelet falls off his wrist. He doesn't remember being kidnapped. Send Errol to Lady Newgate's sister for some transport -to meet us outside Brookville Springs at Bridge +to meet us outside Brookville Springs at Bridged Statue. Elementarium hasn't seen Peridot Queen in approx 1 month @@ -90,7 +90,7 @@ since we were last in town. Rescuees will go back to Huthnall & remove the worm from Lady Thorpe's ear. -Head around Brookville Springs to the Statue of Bridge +Head around Brookville Springs to the Statue of Bridged (female shape with no other female features, has a face with palms up towards the sky) @@ -364,16 +364,16 @@ down the corridor Pile through the corridor we came through & all black - no corridor - close & re-open door - looks like -a church, similar to early Bridget temples. +a church, similar to early Bridged temples. Door from the room opens to the outside - but no dome! Lots of doors off the courtyard - try to go up the tower - open the door & a red robed goliath is sat there shocked as we walk through. -clergyman, Arik Bellburn of Bridget. Says we came from -the dome. Bridget has freed us. I have skin of +clergyman, Arik Bellburn of Bridged. Says we came from +the dome. Bridged has freed us. I have skin of evil. Morgana - Bleak glimmer. Geldrin - lost winner - we are in the town of Bellburn. -Prayed for freedom from their oppressors (envy) & Bridget sent us. +Prayed for freedom from their oppressors (envy) & Bridged sent us. ## Page 138 @@ -441,7 +441,7 @@ Such a big deal Arik was injured - healed up. goliaths pay the blackscales sometimes & the ore kobolds. -Doors are sacred to Bridget +Doors are sacred to Bridged Hellfling - Mayor Longbottom - wants to accommodate us for the evening. Woke up in the church one day @@ -452,22 +452,22 @@ Wrath was part of Ruby eye but left him when we "took him out" Ruby-eye is still in the bag -Morgana asks Bridget if she will get us back in the dome. +Morgana asks Bridged if she will get us back in the dome. takes her to the chorus - has good & bad results ## Page 140 Dirk & Geldrin put a grand towers penny onto -the statue of Bridget. It disappears & her eyes -glow green. Dirk goes through the door - Bridget +the statue of Bridged. It disappears & her eyes +glow green. Dirk goes through the door - Bridged eyes glow red. - Dirk comes out in Seaward! Tell the priest about penny on hand - she goes and shouts at Arik -about why they never gave Bridget money. +about why they never gave Bridged money. Dirk has gone back to yesterday. -Geldrin drops 2 pennys onto Bridget's hand, her +Geldrin drops 2 pennys onto Bridged's hand, her eyes glow green then yellow. we all go in the closet. We come out into a blue & white tiled @@ -508,7 +508,7 @@ be much use now. The gods required a favour each and communication to their priests & a boon. -Bridget - way in but +Bridged - way in but Noxia - trinkets & barrier causes suffering sickness living near & touch diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index f91756a..30e2c11 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -189,13 +189,13 @@ Inscriptions - Sefu - for the justice for the Hunt Holdhum - guides our hands & warms our hearts Tor - Protects Lion Head - Attabo - from the stories the people of the cats told -El [corna] - Bridge - to keep our peoples free +El [corna] - Bridged - to keep our peoples free offering bowls in front of the statues ## Page 170 -Geldrin adds a towers penny to Bridge - Statues head moved to look +Geldrin adds a towers penny to Bridged - Statues head moved to look at geldrin - words - This place is safe. Morgana - adds nip to Attabo's bowl - words A drug to dull the loss @@ -306,7 +306,7 @@ standing rocking slightly laughing. Locked door behind us. Floor 25 (Door at top of tower it opens) 6 doors. Willow wispa is coming - mum's told -sword / shield / Axe / Tower / Book / Bridge / Axe. +sword / shield / Axe / Tower / Book / Bridged / Axe. writing [been?] to come Lock door behind us sleeping & talking Another hour before shift starts - boring. @@ -382,7 +382,7 @@ Dirk's sword grew flames. ## Page 174 Dragon vision on the ceiling shows Dragons terrorising -the town. [new?] used the coin from Bridge +the town. [new?] used the coin from Bridged & all but the fat dragon vanishes. Geldrin uses Treamon's skull to cause a meteor strike @@ -584,7 +584,7 @@ He often trusts his god which she appreciates. - Tips outside the barrier can be difficult but Perodita heading to Hartwall -Bridge's sister is nasty trickery (Atana?) Valentenhide +Bridged's sister is nasty trickery (Atana?) Valentenhide we have 7 hours before she gets to Hartwall. can go back in time but there is a cost Ruby eye is out of his sight @@ -604,7 +604,7 @@ Gravel basers. 1 hr 35 mins ask if we can free Perodita. - will need to ask -Bridge. - go through a doorway onto an invisible +Bridged. - go through a doorway onto an invisible walkway - Reopen the door to clouds. the clouds transform into a female face proposal to free Perodita - she seems to like that diff --git a/data/3-days/day-52.md b/data/3-days/day-52.md index 68f2e71..eb70a02 100644 --- a/data/3-days/day-52.md +++ b/data/3-days/day-52.md @@ -48,9 +48,9 @@ The pacts are linked to the dome. If the dome ceases, then the pacts also cease. All of the prisons will release if the dome is removed. -Geldrin has a plan. Takes out the broom for her to see her sister, Bridget. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridget and open a pathway to her domain. +Geldrin has a plan. Takes out the broom for her to see her sister, Bridged. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridged and open a pathway to her domain. -Pathway opens and we decide we need to protect her, as by Valentinhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. +Pathway opens and we decide we need to protect her, as by Valentinhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridged will help her. Promise to release her regardless. Go through the door. @@ -69,7 +69,7 @@ Knock. Line appears and door opens. Cricket-headed humanoid appears and says the She is not really yet. -Gives us a screwdriver and is waiting for "Medinner." Bird person. Ask him to ask Bridget if she is taking visitors. He goes away. +Gives us a screwdriver and is waiting for "Medinner." Bird person. Ask him to ask Bridged if she is taking visitors. He goes away. Geldrin puts a red crystal in the divot. Goes to Dotharl and a raven opens the door and says the crystal is for a dwarf. @@ -84,7 +84,7 @@ Plaque on plinth: Dotharl: raven-headed lady tells him to go away; always a choice. -Geldrin asks if she knows where Bridget is and how to get there. No, but her friend does. Going to see him later, not sure when. +Geldrin asks if she knows where Bridged is and how to get there. No, but her friend does. Going to see him later, not sure when. ## Page 260 @@ -94,7 +94,7 @@ Opens the cricket cage. Cricket jumps onto the bowl and starts eating. Raven is Door comes to us. Cricket comes through: Cedric. -Morgana needs to do something. Tell him to ask Bridget to make a door for Morgana to get back through, and she does. +Morgana needs to do something. Tell him to ask Bridged to make a door for Morgana to get back through, and she does. Geldrin asks for the door, and Medinner can't because her show is on. Geldrin wants to see it and she lets him in. @@ -133,9 +133,9 @@ Geldrin and Dirk: orbs, [unclear: geesie?], and scythe. Stop when pushed togethe Medinner tells Dotharl we need to go soon. Takes a step off the edge. -Orb is a present from Bridget. Need to keep it with us until we don't. +Orb is a present from Bridged. Need to keep it with us until we don't. -Cedric and Medinner are Bridget's closest followers and can speak more freely and directly than Bridget. Bridget needs a favour. +Cedric and Medinner are Bridged's closest followers and can speak more freely and directly than Bridged. Bridged needs a favour. Remember she gave us a present as we are about to feel angry. @@ -147,13 +147,13 @@ Realise we can move how we want to. Invar and Dotharl speed towards the storm. D Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." -Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valentinhide, smash the orb, and release her to Bridget. +Dirk imagines a cloud tent house and Bridged on a throne, which merges to other imaginations. She will take gold Valentinhide, smash the orb, and release her to Bridged. ## Page 263 -Bridget wishes to be honoured a second time. Gods agreed not to interfere unless asked, but some of our kin interfered a lot. +Bridged wishes to be honoured a second time. Gods agreed not to interfere unless asked, but some of our kin interfered a lot. -Her kin is currently trapped and wishes him to be freed. Dotharl's granddad? Part of Dotharl is Bridget. The part of him being free: his dad is trapped, granddad is lost, Squeall. +Her kin is currently trapped and wishes him to be freed. Dotharl's granddad? Part of Dotharl is Bridged. The part of him being free: his dad is trapped, granddad is lost, Squeall. She likes freedom and trickery. Her husband likes lucky fortune, weather, change, and loss. Whatever her followers need she can get, within reason. @@ -165,7 +165,7 @@ Many paths we will take. Nothing is written in stone. But the freedom we chose t Choice to make: me, keep the identity now, or the one I once had. -Dotharl: keep humanity or not and rejoin Bridget's realm. +Dotharl: keep humanity or not and rejoin Bridged's realm. Geldrin: power offered, maybe too much to resist. Lots we don't know about Browning's. May all seem evil but who decides? He may need to go see his people. diff --git a/data/3-days/day-53.md b/data/3-days/day-53.md index 01d6ad7..82adaf3 100644 --- a/data/3-days/day-53.md +++ b/data/3-days/day-53.md @@ -22,7 +22,7 @@ source_ranges: ## Page 263 -Day 53 - Bridget / Domain +Day 53 - Bridged / Domain Friend is intriguing her. Why do we help each other? @@ -133,7 +133,7 @@ At 12:00, army starts to move. Morgana flies ahead of the army to notify the town. -Bridget isn't dwarven construction: elemental? +Bridged isn't dwarven construction: elemental? Morgana comes across a small wagon train with ebony dwarves, around 40. They shoot at her and damage her, but she continues. diff --git a/data/3-days/day-55.md b/data/3-days/day-55.md index 0929679..d3bae44 100644 --- a/data/3-days/day-55.md +++ b/data/3-days/day-55.md @@ -54,7 +54,7 @@ Black dragon sister is nowhere to be seen. Bridge was damaged. -Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridget allowed it as it was for a trap, so she found it funny. +Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridged allowed it as it was for a trap, so she found it funny. Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. The Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. @@ -66,7 +66,7 @@ Plan: leave dwarf army here and teleport to Magstein and attack her there in the ## Page 271 -Geldrin asks Bridget if Perodita is still travelling. A sleepy cockroach appears: she is asleep. Didn't have a good rest, too painful; it hurts, can't fix. +Geldrin asks Bridged if Perodita is still travelling. A sleepy cockroach appears: she is asleep. Didn't have a good rest, too painful; it hurts, can't fix. Dwarves staying at Grimcrag to recover and recuperate. She is approximately 13 hours away, depending on how much sleep she has had. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index e05f0a0..829d890 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -38,9 +38,9 @@ complete: true Day 36 began at about 04:00, approximately five hours outside Brookville Springs. Skum stayed seated by Elementarium's head the whole time. Invar remembered that he knew how to remove curses, heard a clink, and a bracelet fell off his wrist. He did not remember being kidnapped. -The party sent Errol to Lady Newgate's sister to arrange transport to meet them outside Brookville Springs at the Bridge Statue. Elementarium had not seen the Peridot Queen for about a month, since the party was last in town. The rescuees were to go back to Huthnall and remove the worm from Lady Thorpe's ear. +The party sent Errol to Lady Newgate's sister to arrange transport to meet them outside Brookville Springs at the Bridged Statue. Elementarium had not seen the Peridot Queen for about a month, since the party was last in town. The rescuees were to go back to Huthnall and remove the worm from Lady Thorpe's ear. -The party went around Brookville Springs toward the Statue of Bridge. The statue was a female shape with no other female features, a face, and palms turned up toward the sky. There were no offerings or guards, but a copper piece lay randomly about five feet around it. The notes also connected Bridget to a temple in Seaward where people took bets, as a god of freedom, luck, gargoyles, and trickery. +The party went around Brookville Springs toward the Statue of Bridged. The statue was a female shape with no other female features, a face, and palms turned up toward the sky. There were no offerings or guards, but a copper piece lay randomly about five feet around it. The notes also connected Bridged to a temple in Seaward where people took bets, as a god of freedom, luck, gargoyles, and trickery. The party waited by the statue until Newgate's gargoyle arrived. People leaving Brookville Springs had a hurried energy and warned that it was not best to go in because explosions were happening all over town, including brothels, the guard house, and perhaps golems. Human buildings were going bang with purple blasts, and one human blew up. A pigeon on a ledge by the main building reported that the lead human was gone. The explosions had stopped today but happened late at night on Trimoons day. The party recalled that when they left Goldenswell, one automaton had been on the fritz. They wondered whether the exploding things were meant to explode or had been told to do so. @@ -78,9 +78,9 @@ Another orb showed a person being saved while elementals flew around. The towers A further orb showed Browning in the same room calling out through a crystal ball. A giant green dragon appeared. He asked for help getting rid of his husband. The dragon agreed, saying they could use them as cattle wherever they were done. Browning threw a blanket over the view as Valenth walked in. -Geldrin returned, saying he had been on floor 98 and had found Browning. The party needed to get out immediately, and Geldrin told the others about Garadul. They heard an alarm. Four golems appeared in the circles, and the party ran back down the corridor. They piled through the corridor they had used, but it was all black with no corridor. They closed and reopened the door, and it looked like a church similar to early Bridget temples. The door from the room opened outside, with no dome visible. +Geldrin returned, saying he had been on floor 98 and had found Browning. The party needed to get out immediately, and Geldrin told the others about Garadul. They heard an alarm. Four golems appeared in the circles, and the party ran back down the corridor. They piled through the corridor they had used, but it was all black with no corridor. They closed and reopened the door, and it looked like a church similar to early Bridged temples. The door from the room opened outside, with no dome visible. -The party found a courtyard with many doors. They tried to go up the tower. Behind a door, a red-robed goliath sat, shocked as they walked through. He was a clergyman named Arik Bellburn of Bridget. He said the party had come from the dome and Bridget had freed them. He described Eliana as having skin of evil, Morgana as Bleak glimmer, and Geldrin as lost winner. They were in the town of Bellburn. The people had prayed for freedom from their oppressors, Envy, and Bridget sent the party. +The party found a courtyard with many doors. They tried to go up the tower. Behind a door, a red-robed goliath sat, shocked as they walked through. He was a clergyman named Arik Bellburn of Bridged. He said the party had come from the dome and Bridged had freed them. He described Eliana as having skin of evil, Morgana as Bleak glimmer, and Geldrin as lost winner. They were in the town of Bellburn. The people had prayed for freedom from their oppressors, Envy, and Bridged sent the party. The party heard a dragon. In Draconic, it said it had come for payment. Ruby Eye said they needed to go. Suddenly there were sounds of battle. Goliaths were fighting Hartwall's silver dragon on top of a building. The dragon said she had come for payment and Envy would have her due. This dragon looked similar to the original Hartwall but meaner and grimacing, with a green tinge to her scales. The goliaths all seemed to have maces made from Seaward stone. Ruby Eye wanted to leave and thought Hartwall hated him. @@ -88,15 +88,15 @@ The party entered the fight and tried to get Hartwall's attention. Hartwall call Wrath had made a pact with Ruby Eye to help kill the black dragon, and it was his fault Hartwall was outside. Wrath was scared of Browning, who had teamed up with Pride. Wrath had cursed the silver and black dragons so they could not take human form. He promised the party power in exchange for fighting their enemies. He said there were nine of them in total, little demons of Darkness: Wrath, Pride, Envy, and others. Wrath put Hartwall in the ground with imprisonment using a silver dragon statue. He said the wizards had worked with the demons to help make the dome to protect against them. He insisted the party were not working for him in any way, shape, or form, but could assist if mutually beneficial. Wrath wanted the Skull of Tremon because he saw the wizards make it and it helped people get in and out of the barrier. -Arik had been injured and was healed. The goliaths paid the Blackscales and sometimes the ore kobolds. Doors were sacred to Bridget. A hellfling mayor, Mayor Longbottom, wanted to accommodate the party for the evening. She had woken up in the church one day, was originally from Goldenswell, and said there was no way back into the dome. Wrath had been part of Ruby Eye but left him when the party "took him out." Ruby Eye was still in the bag. Morgana asked Bridget if she would get them back into the dome, and Bridget took her to the chorus, with good and bad results. +Arik had been injured and was healed. The goliaths paid the Blackscales and sometimes the ore kobolds. Doors were sacred to Bridged. A hellfling mayor, Mayor Longbottom, wanted to accommodate the party for the evening. She had woken up in the church one day, was originally from Goldenswell, and said there was no way back into the dome. Wrath had been part of Ruby Eye but left him when the party "took him out." Ruby Eye was still in the bag. Morgana asked Bridged if she would get them back into the dome, and Bridged took her to the chorus, with good and bad results. -Dirk and Geldrin put a Grand Towers penny onto Bridget's statue. It disappeared and Bridget's eyes glowed green. Dirk went through the door. Bridget's eyes glowed red, and Dirk came out in Seaward. The party told the priest about the penny on the hand, and she shouted at Arik about why they had never given Bridget money. Dirk had gone back to yesterday. +Dirk and Geldrin put a Grand Towers penny onto Bridged's statue. It disappeared and Bridged's eyes glowed green. Dirk went through the door. Bridged's eyes glowed red, and Dirk came out in Seaward. The party told the priest about the penny on the hand, and she shouted at Arik about why they had never given Bridged money. Dirk had gone back to yesterday. -Geldrin dropped two pennies onto Bridget's hand. Her eyes glowed green and then yellow. The party went into the closet and emerged into a blue-and-white tiled reception room in a great palace with no furniture, reminiscent of Seaward. Dirk felt 400 to 500 miles away earthwise/waterwise; they were still outside the dome. Guards outside the door in blue tabards did not expect the party to be there. A guard chased Morgana and caught her by the door. They tried to confuse him with the room's appearance, and he called for the Baron. The party closed the door and reopened it to blackness. Dirk had not moved before the door opened, but when it opened Dirk was gone. The party closed the door, stepped out, went back through it, and came into Brookville Springs. Sopparra, identified with Mercy in the notes, said Wrath had been a goliath when they went in. +Geldrin dropped two pennies onto Bridged's hand. Her eyes glowed green and then yellow. The party went into the closet and emerged into a blue-and-white tiled reception room in a great palace with no furniture, reminiscent of Seaward. Dirk felt 400 to 500 miles away earthwise/waterwise; they were still outside the dome. Guards outside the door in blue tabards did not expect the party to be there. A guard chased Morgana and caught her by the door. They tried to confuse him with the room's appearance, and he called for the Baron. The party closed the door and reopened it to blackness. Dirk had not moved before the door opened, but when it opened Dirk was gone. The party closed the door, stepped out, went back through it, and came into Brookville Springs. Sopparra, identified with Mercy in the notes, said Wrath had been a goliath when they went in. Dirk remained in Seaward and heard several explosions around midnight. The party got Ruby Eye out, and Ruby Eye shouted at Wrath until Wrath got back into his eye. Dirk reported that most earthwise cities had had explosions, including the Hartwall and Goldenswell areas. Grol found Dirk, and Dirk sent a message back around 20:00. Ruby Eye teleported the party to Dirk. -Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Elissa Hartwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Hartwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. +Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridged gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Elissa Hartwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Hartwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. Ruby Eye said his pact with Wrath came only from needing more power after seeing how much power Browning had with Pride. Browning wanted the biggest tower and to be the greatest wizard of all time. The party teleported to Hartwall, arriving on target by her statue, and went to the castle gates. Sheriff Fathrabit took them to Hartwall and said the other nobles had arrived. @@ -166,19 +166,19 @@ The figure thought it was Ruby Eye. It could not open the barrier because that m # People, Factions, and Places Mentioned -People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadul / Garadul / Garadul, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Elissa Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Hartwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Hartwall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. +People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridged / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadul / Garadul / Garadul, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Elissa Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Hartwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Hartwall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. -Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Hartwall, the castle gates, the courtyard where Hartwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snowsorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. +Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridged Statue / Statue of Bridged, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridged-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Hartwall, the castle gates, the courtyard where Hartwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snowsorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. # Items, Rewards, and Resources -Money, payments, and offerings mentioned include the random copper piece around the Bridge Statue, the party greasing guards' palms to see Seneshell, 25 platinum paid to the captain, the Grand Towers penny used on Bridget's statue, Geldrin's two pennies placed on Bridget's hand, and the note that people should have given Bridget money. +Money, payments, and offerings mentioned include the random copper piece around the Bridged Statue, the party greasing guards' palms to see Seneshell, 25 platinum paid to the captain, the Grand Towers penny used on Bridged's statue, Geldrin's two pennies placed on Bridged's hand, and the note that people should have given Bridged money. Transport and communication resources mentioned include Errol, Newgate's gargoyle, the Bird that did not work, the mage's ring used to locate the party, Terry the obsidian bird, Metallics' bird, the lucky cyclops eye that did not go anywhere, Ruby Eye travelling in the bag, the Grand Towers portal / passage, teleport circles, Mercy's route to Grand Towers, Ruby Eye's teleport to Dirk, obsidian ravens including stealth ravens, the sending stone with a new Underbelly number, the pulley lift to the inn, the dragon ride with Hartwall, Lord Bleakstorm's cow-drawn carriage portal, the snowflake coin that is a one-use portal to Bleakstorm, Jin Woo's teleports, and the merfolk lodge. -Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadul, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Hartwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered Eliana's desire for Dirk's sword and inverse hammer, Hartwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Hartwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Hartwall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, Eliana's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. +Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadul, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Hartwall disappearing, Bridged's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered Eliana's desire for Dirk's sword and inverse hammer, Hartwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Hartwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Hartwall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, Eliana's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. Objects, trinkets, and named resources mentioned include the Skull of Tremon, the Jelly Fish Broach from the 74th floor private mage area, trinkets from the bargains, Scorpion, Snowlee, Jelly Fish, Ant, Ruby Eye's lab orbs, the chair / Gideone chair, the silver dragon statue used in Hartwall's imprisonment, Seaward stone maces, the inverse hammer, the Grand Towers penny, the barrier / dome, the racist automatons, Hartwall's Raven, the pylon, Heamon's skull, the prison symbols, the chest around the intense table in Dirk's vision, the White Rune, Icefang's ice elemental in Rimewock, dead ear grub, black dragon book from Ruby Eye's lab, the auroch not freed by Lord Bleakstorm, the snowflake coin, the statue to Hydrath, steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, the ancient Dull Peake sign, the five runes in a pentagram, the ticking rune door, the upright hand on a plinth, and Envi in a tube of viscous fluid. @@ -202,13 +202,13 @@ Mercy's contractor wanted the Jelly Fish Broach from the 74th floor private mage Grand Towers orb visions revealed hidden wizard bargains, possible memory tampering, Icefang's entombment under snow, black snowflake guards, trinkets including Scorpion, Snowlee, Jelly Fish, and Ant, and Browning's actions. Browning had Pride's power, wanted the biggest tower and to be the greatest wizard, trapped Garadul downstairs, worked with a giant green dragon, and used a device that made Hartwall disappear. The notes preserve multiple uncertain or incomplete statements from these visions. -Bellburn appears outside the dome and treats Bridget's doors as sacred. Arik Bellburn believed Bridget sent the party from the dome in answer to prayers against Envy. Bridget's door travel responded to Grand Towers pennies with different eye colours and sent Dirk to Seaward, then sent the group through a palace-like room and back to Brookville Springs. The exact rules of Bridget's doors, pennies, colour responses, time displacement, and locations remain unclear. +Bellburn appears outside the dome and treats Bridged's doors as sacred. Arik Bellburn believed Bridged sent the party from the dome in answer to prayers against Envy. Bridged's door travel responded to Grand Towers pennies with different eye colours and sent Dirk to Seaward, then sent the group through a palace-like room and back to Brookville Springs. The exact rules of Bridged's doors, pennies, colour responses, time displacement, and locations remain unclear. Wrath impersonated Ruby Eye, cursed silver and black dragons so they could not take human form, and imprisoned Hartwall using a silver dragon statue. He described himself, Pride, Envy, and six other little demons of Darkness as nine total. He said the wizards worked with them to create the dome as protection from them. Wrath claims mutual benefit rather than control over the party, but his bargains and fear of Browning remain dangerous. Ruby Eye's memories and Icefang's memories had both been tampered with through ear-grub-like intervention. A dark elf dropped a grub into Icefang's ear at a mage table during a dispute with Browning. The dark elf may have been from Envy's apprentice. The party is left with questions about who else was altered, what they forgot, and which wizard decisions were made under coercion. -The gods' bargains behind the barrier are only partially understood. Bridget gave a way in; Noxia's bargain involved trinkets and barrier sickness; Otasha received unborn nerfili babies across the race, with the barrier seeming to mitigate it; the god of Darkness was bypassed by making him the god, Leptrop; Ennik and Browning made many deals; Hartwall did not know about half of them. Ruby Eye and Carduneld considered renegotiating deals, breaking the inferlite curse, and addressing barrier damage. +The gods' bargains behind the barrier are only partially understood. Bridged gave a way in; Noxia's bargain involved trinkets and barrier sickness; Otasha received unborn nerfili babies across the race, with the barrier seeming to mitigate it; the god of Darkness was bypassed by making him the god, Leptrop; Ennik and Browning made many deals; Hartwall did not know about half of them. Ruby Eye and Carduneld considered renegotiating deals, breaking the inferlite curse, and addressing barrier damage. Valenthielles prison contained seamless stone, a prison corridor of damaging Joy-like darkness, trapped peepholes, smoke, prison symbols, and a dark female figure who had recent friendly visitors that cleaned up quickly, teleported outside, and left Valenthielles. The identity of the visitors, what they removed or cleaned, and the state of Valenthielles remain open. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index e102dcf..34cf939 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -41,9 +41,9 @@ A large female dragonborn walked down the street and looked at the house. It was The party teleported to a hole higher up in the tower to try to rescue Envi, zooming up the soft tower. An old bird's nest seemed to have been pushed aside for a landing spot. Dirk saw elders whose minds seemed to be on repeat. The party headed upstairs. One room was decorated with Goliath skulls in arches, with old coins dotted around. The sight gave them chills and suggested it might once have been a dragon lair, perhaps connected to Lortesh. Morgana inspected the coins and found one larger than normal currency, a Goliath coin marked "Domain of Pengalis" at the top. Dirk heard a low moan from the wall; all the skulls had been skinned alive. -On the next floor, Invar heard a voice say, "you wear the ring of the betrayer - I can help." In the reflection in the ring, a featureless woman took damage. Another floor was alarmed and had a barracks-style antechamber. The next room was filled with beds and chests, though the chests were oddly empty. A side room contained statues of five gods, but "Goliathified." The statues or figures were Seara, Scorcher, Shielded [uncertain: armel] / Tor, a nondescript elven-like figure sculpted as though the maker did not know who they were sculpting, and a lion-headed figure. Inscriptions named Sefu, "for the justice for the Hunt"; Holdhum, who "guides our hands & warms our hearts"; Tor, who "Protects"; the lion-headed Attabo, "from the stories the people of the cats told"; and El [uncertain: corna] / Bridge, "to keep our peoples free." Offering bowls stood before the statues. +On the next floor, Invar heard a voice say, "you wear the ring of the betrayer - I can help." In the reflection in the ring, a featureless woman took damage. Another floor was alarmed and had a barracks-style antechamber. The next room was filled with beds and chests, though the chests were oddly empty. A side room contained statues of five gods, but "Goliathified." The statues or figures were Seara, Scorcher, Shielded [uncertain: armel] / Tor, a nondescript elven-like figure sculpted as though the maker did not know who they were sculpting, and a lion-headed figure. Inscriptions named Sefu, "for the justice for the Hunt"; Holdhum, who "guides our hands & warms our hearts"; Tor, who "Protects"; the lion-headed Attabo, "from the stories the people of the cats told"; and El [uncertain: corna] / Bridged, "to keep our peoples free." Offering bowls stood before the statues. -Geldrin added a tower's penny to Bridge's bowl. The statue's head moved to look at Geldrin, and words came: "This place is safe." Morgana added nip to Attabo's bowl and heard, "A drug to dull the loss." Geldrin added Brass City platinum and heard, "A payment made." At Seara's bowl, Lortesh's scale or hair of Nature was highly pleased, and the party heard that the hunt would be successful, but betrayal was at hand. Footsteps went up the stairs. +Geldrin added a tower's penny to Bridged's bowl. The statue's head moved to look at Geldrin, and words came: "This place is safe." Morgana added nip to Attabo's bowl and heard, "A drug to dull the loss." Geldrin added Brass City platinum and heard, "A payment made." At Seara's bowl, Lortesh's scale or hair of Nature was highly pleased, and the party heard that the hunt would be successful, but betrayal was at hand. Footsteps went up the stairs. Morgana etched a symbol to Igraine and offered a bottle of cider. The cider emptied, and words came: "do not trust him - I did - he promised me tribute & Never received." Morgana offered another drink and saw a vision of lying in a field of white roses, with children's laughter and the chuckling of a dwarf man and an elf, perhaps [uncertain: Adilth]. A dragon soared above with no barrier. A pregnant elven woman appeared. The message continued that he made a statue to the speaker and the image of another in his home, promised things, but chose the easy path because the speaker could not give her life back. He promised things for her life, came to an arrangement, and took a darker path. An elderly human man looked sad, rubbed his beard, and the vision returned to the room. @@ -67,7 +67,7 @@ Morgana had five goodberries. The party went up to the 28th floor. They found a On the 29th floor, new carvings of scorpions, Tellfether, and other details were present. Evil could be sensed from the door. The party entered the room. Purple crackling energy surrounded a ten-by-ten-foot green blob dripping in the middle. Two figures were around it: a medusa and a statue figure. Also present were a child of the Mother with a worm and an eyeless dog. Bronze and a telescope like Emri's stood at the back of the room, with a painting clockwise on the wall. A shield spell appeared on the floor and shielded the party. A health pipe on Eliana's belt healed people. A coin appeared in Thuvia's hand and got rid of the dragons. Dirk's sword grew flames. -A dragon vision on the ceiling showed dragons terrorising the town. The party used the coin from Bridge, and all but the fat dragon vanished. Geldrin used Treamon's skull to cause a meteor strike on the dragon and the town. The party activated the shield with the coin. Brother fracture used to do shield disappeared [unclear], and the Goliaths in the city all gained weapons and shields and healed slightly. As the blessings activated, a tiny hole became noticeable in the barrier. Emmeredge died. Noxia smashed the floor, broke two floors, and the party fell down through Emri's floor. A book in Geldrin's bag hummed, and Kesha wanted to help at no cost now, but Geldrin did not take the offer. The party killed the Noxia Beast avatar. +A dragon vision on the ceiling showed dragons terrorising the town. The party used the coin from Bridged, and all but the fat dragon vanished. Geldrin used Treamon's skull to cause a meteor strike on the dragon and the town. The party activated the shield with the coin. Brother fracture used to do shield disappeared [unclear], and the Goliaths in the city all gained weapons and shields and healed slightly. As the blessings activated, a tiny hole became noticeable in the barrier. Emmeredge died. Noxia smashed the floor, broke two floors, and the party fell down through Emri's floor. A book in Geldrin's bag hummed, and Kesha wanted to help at no cost now, but Geldrin did not take the offer. The party killed the Noxia Beast avatar. The party spoke to Cardenald. Tradesmells was totally empty: no dragons and no Goliaths. Ruby Eye was missing. They checked on Emri, who was still imprisoned. Cardenald spoke to him and said he was not complete; bits of his soul were missing, including guilt and misery, and possibly sorrow, compassion, Joy, and mercy. The formation of the barriers was not the only thing the elves learned. They also tried to remove other parts of their souls in an effort to perfect themselves. The large man under the mountain was described as a battery. Benu's other kin was named Trixius. The party headed down to the prison rooms. Notes also recorded Treamon's skull with week / charge / cooldown [unclear]. @@ -91,27 +91,27 @@ A device detected time and noted that Dirk was missing a day. Bleakstorm had bee Bleakstorm said he had broken some rules by coming to see the party, and that he could not break them except on occasion. The party requested sanctuary for their dragon friend. He recognized her and needed to look into her name. He would not forgive Emri, because Emri took away his only friend and had entrusted him despite Bleakstorm saying no to it. It was not the dragons who took him; he was tricked into releasing his friend. Bleakstorm often trusts his god, which she appreciates. The party had promised the elementals they would free his friend, [uncertain: leechus]. He warned that trips outside the barrier could be difficult. -Bleakstorm reported that Perodita was heading to Hartwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Hartwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to The Basilisk about Perodita heading to Hartwall, but Bleakstorm did not send the party outside the barrier. Garadul was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. +Bleakstorm reported that Perodita was heading to Hartwall. Bridged's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Hartwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to The Basilisk about Perodita heading to Hartwall, but Bleakstorm did not send the party outside the barrier. Garadul was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. -The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Hartwall, where they saw Perodita vanish. +The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridged. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Hartwall, where they saw Perodita vanish. The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Elissa Hartwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Garadul / Garadul / Garadul / Garadul, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Stuart / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridged, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Garadul / Garadul / Garadul / Garadul, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Stuart / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridged's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodita's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. -Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snowsorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Hartwall, and Emmerave. +Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snowsorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridged encounter, Hartwall, and Emmerave. Creatures and creature-like entities mentioned include the fat-bellied dragon in Dirk's dream, dark demons, the black-feather communication bird, dragonborn, Goliaths, the baby Badger, the featureless woman reflected in the ring, the lion-headed god figure, the dragon in the no-barrier vision, the four card-playing dragonborn with welded armour, something made of air in a barrier, the goat man, the goat-headed sphinx, the copper-haired elven woman / copper dragon, the medusa, the statue figure, the child of the Mother with a worm, the eyeless dog, the fat dragon in the dragon vision, the Noxia Beast avatar, Trixus the elemental of light, Steven the goat man, the copper dragon from Snowsorrow, gold dragons, the female sphinx on Snowsorrow currency, the white creature / white dragon in the Attabre vision, and ice elementals. # Items, Rewards, and Resources -Items, currencies, and physical resources mentioned include Ennuyé's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Garadul / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadul, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. +Items, currencies, and physical resources mentioned include Ennuyé's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Garadul / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridged, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadul, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. -Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia appearing under a dragonborn illusion or disguise, Anastasia sensing the weakened barrier, attunement to three of Ennuyé's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Attabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. +Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia appearing under a dragonborn illusion or disguise, Anastasia sensing the weakened barrier, attunement to three of Ennuyé's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridged declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Attabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridged's cloud-face granting the proposal to free Perodita. Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Stuart's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadul, and time travel, the message sent and resent to The Basilisk, and Lady Elissa Hartwall's movement airwise to help with the battle heading to Emmerave. @@ -135,9 +135,9 @@ Badger, born in captivity and hidden in a linen basket, became a symbol through The skull arches, skinned-alive Goliath skulls, Goliath currency of Pengalis, and possible Lortesh dragon lair suggest old atrocities in the tower. The party did not fully resolve who made the skull display or why the skulls still moaned. -The ring voice addressed Invar as wearing "the ring of the betrayer" and showed a featureless woman taking damage. This may connect to Valentenhide / Bridge's sister or another betrayed figure, but the identity is unresolved. +The ring voice addressed Invar as wearing "the ring of the betrayer" and showed a featureless woman taking damage. This may connect to Valentenhide / Bridged's sister or another betrayed figure, but the identity is unresolved. -The Goliathified statues and offering responses produced multiple clues: Bridge declared safety, Attabo framed nip as a drug to dull loss, Seara / Nature warned that betrayal was at hand, Igraine warned not to trust someone who promised tribute and chose a darker path, Tor protects all, and Stitcher said a gift crafted for a friend is the key to it all. The intended targets of these warnings and the "gift crafted for a friend" remain open. +The Goliathified statues and offering responses produced multiple clues: Bridged declared safety, Attabo framed nip as a drug to dull loss, Seara / Nature warned that betrayal was at hand, Igraine warned not to trust someone who promised tribute and chose a darker path, Tor protects all, and Stitcher said a gift crafted for a friend is the key to it all. The intended targets of these warnings and the "gift crafted for a friend" remain open. The white-roses vision included a dwarf man, an elf perhaps [uncertain: Adilth], children, a no-barrier sky, a pregnant elven woman, a sad elderly human man, and a bargain for a life that turned darker. The identities of the figures and their link to Igraine, Emri, or the barrier are uncertain. @@ -157,7 +157,7 @@ Emri requested Treamon's skull, would not answer questions about the rings, and Ruby Eye said his pacts with Kashe were his downfall and that sacrifices by him and Joy's mother kept Joy safe and eternal. Why Joy needed eternal life, whether she can leave the barrier, and what those sacrifices cost remain unresolved. -The Noxia chamber, green dripping blob, medusa, statue figure, child of the Mother, worm, eyeless dog, telescope, shield spell, health pipe, Thuvia's coin, Bridge coin, and Treamon's skull all interacted during a major battle. The party killed the Noxia Beast avatar and Emmeredge died, but Noxia's larger status remains open. +The Noxia chamber, green dripping blob, medusa, statue figure, child of the Mother, worm, eyeless dog, telescope, shield spell, health pipe, Thuvia's coin, Bridged coin, and Treamon's skull all interacted during a major battle. The party killed the Noxia Beast avatar and Emmeredge died, but Noxia's larger status remains open. Activating blessings gave Goliaths weapons, shields, and healing, and revealed a tiny hole in the barrier. The significance of the hole and whether it can be expanded or exploited remains unknown. @@ -177,6 +177,6 @@ Bleakstorm detected Dirk missing a day. The missing day, Bleakstorm's deals with Bleakstorm will not forgive Emri for taking away his only friend after being told not to entrust him. The friend, [uncertain: leechus], and the promise to free him remain open. -Perodita was heading to Hartwall, Garadul was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Hartwall, and Lady Elissa Hartwall had gone airwise toward Emmerave. +Perodita was heading to Hartwall, Garadul was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridged agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Hartwall, and Lady Elissa Hartwall had gone airwise toward Emmerave. T.J. Boggins remained at Hartwall eating meat and watching opera, while Jin Woo was absent. Their immediate relevance is not stated. diff --git a/data/4-days-cleaned/day-52.md b/data/4-days-cleaned/day-52.md index b0519dd..f10e0f8 100644 --- a/data/4-days-cleaned/day-52.md +++ b/data/4-days-cleaned/day-52.md @@ -18,47 +18,47 @@ Day 52 began at Stonedown. Dothral wanted to know more about his father and thou The notes state that a price was paid by dragonkind, and it was not taken well by those who remained and still had power. Payment was not asked for because the party had not given her to the goats. The party asked whether looking at the night sky and feeling serene was part of Valentinhide. The answer suggested it was. Reuniting that part with her would not completely change Valentinhide, but would soften her edges, making her a goddess of destruction again rather than a being who mindlessly murdered people on the road. -The party understood the released or protected piece as a small shard of a powerful creature. They asked whether destroying the dome would cancel all pacts. The answer was yes: the pacts were linked to the dome, and if the dome ceased, the pacts would cease. Removing the dome would also release all of the prisons. Geldrin tried to show the shard her sister Bridget by communing with Bridget and opening a pathway to her domain. The party decided they needed to protect the shard, because Valentinhide might be able to get her. They discussed an oath of holding elemental and dome energy, and promised to release her regardless. +The party understood the released or protected piece as a small shard of a powerful creature. They asked whether destroying the dome would cancel all pacts. The answer was yes: the pacts were linked to the dome, and if the dome ceased, the pacts would cease. Removing the dome would also release all of the prisons. Geldrin tried to show the shard her sister Bridged by communing with Bridged and opening a pathway to her domain. The party decided they needed to protect the shard, because Valentinhide might be able to get her. They discussed an oath of holding elemental and dome energy, and promised to release her regardless. The party entered the pathway. The walkway stopped partway and turned left, but each member went a different way: Invar forward, Geldrin right, Dotharl left, Eliana up, Dirk down, and Morgana behind. After ten minutes they lost sight of each other. Wind rose and they struck walls. The walls appeared linked in pairs: Invar with Morgana, Geldrin with Dotharl, and Dirk with Eliana. -A Knock revealed a line, and a door opened. A cricket-headed humanoid appeared, said they were busy, and asked how long the party wanted to wait. Two minutes was accepted. He also appeared to Dirk and gave the same timing. The notes say, "She is not really yet." The cricket-headed figure gave the party a screwdriver and said he was waiting for Medinner. A bird person was asked to ask Bridget if she was taking visitors. Geldrin placed a red crystal in a divot, then went to Dotharl, where a raven opened the door and said the crystal was for a dwarf. The screwdriver removed a curved blade; it went to Dirk, who found a button where the blade had been. +A Knock revealed a line, and a door opened. A cricket-headed humanoid appeared, said they were busy, and asked how long the party wanted to wait. Two minutes was accepted. He also appeared to Dirk and gave the same timing. The notes say, "She is not really yet." The cricket-headed figure gave the party a screwdriver and said he was waiting for Medinner. A bird person was asked to ask Bridged if she was taking visitors. Geldrin placed a red crystal in a divot, then went to Dotharl, where a raven opened the door and said the crystal was for a dwarf. The screwdriver removed a curved blade; it went to Dirk, who found a button where the blade had been. -Invar's room held cages with a cricket and a raven on plinths and a steaming bowl of gruel on a third. Plaques instructed: "Honour me first" for the cricket, "Honour me second" for the raven, and "for a song" for the bowl. Dotharl met a raven-headed lady, who told him to go away and said there was always a choice. Geldrin asked about Bridget; the answer was that this person did not know where Bridget was or how to get to her, but her friend did. +Invar's room held cages with a cricket and a raven on plinths and a steaming bowl of gruel on a third. Plaques instructed: "Honour me first" for the cricket, "Honour me second" for the raven, and "for a song" for the bowl. Dotharl met a raven-headed lady, who told him to go away and said there was always a choice. Geldrin asked about Bridged; the answer was that this person did not know where Bridged was or how to get to her, but her friend did. -Invar tried to feed the raven gruel, but the raven did not want it. He opened the cricket cage, and the cricket jumped onto the bowl and began eating. The raven then became interested. The cricket sang, a door handle clicked behind Invar, and Invar opened the bird cage. The raven flew out to eat the cricket, another door clicked, and Invar opened it. The cricket came through and was named Cedric. Morgana needed a way back; the party asked Cedric to ask Bridget to make a door for Morgana, and Bridget did. +Invar tried to feed the raven gruel, but the raven did not want it. He opened the cricket cage, and the cricket jumped onto the bowl and began eating. The raven then became interested. The cricket sang, a door handle clicked behind Invar, and Invar opened the bird cage. The raven flew out to eat the cricket, another door clicked, and Invar opened it. The cricket came through and was named Cedric. Morgana needed a way back; the party asked Cedric to ask Bridged to make a door for Morgana, and Bridged did. Geldrin asked Medinner for a door, but Medinner said she could not because her show was on. Geldrin asked to see the show, and she let him in. Three silver dragonborn on a screen reenacted Eliana realising Avalina was her mum and putting her in the ground. A woman covered in roots appeared. A robot man or copper dragonborn in plates pretended to be on guard duty, with powder around like snow. After an explosion, another figure came and said, "rise my son," and the robot man got up and walked away. Medinner said to use the broom to get to Dotharl. A wall looked like a stone door with the knob at the top; it rotated but did not open, and rotated to match Geldrin's. -Morgana returned through the door. Another room held plinths with playing cards, a bowl, and dice. The party rolled dice, drew cards in order, shuffled and dealt six piles of eight cards, and played magic poker. Morgana trick-dealt a good hand. Twenty cricket/raven gold coins appeared. The gruel tasted bad. Further dice rolls moved Geldrin to a chessboard square twenty squares aside, then Dirk to the far side, with lights appearing on the board. Morgana threw gruel off the platform; Cedric caught and ate it like ambrosia. Bridget would see the party but would not tell them how to get there. Geldrin and Dirk dealt with orbs, `[unclear: geesie?]`, and a scythe. When the objects were pushed together, the floor disappeared and they landed with Invar and Eliana. +Morgana returned through the door. Another room held plinths with playing cards, a bowl, and dice. The party rolled dice, drew cards in order, shuffled and dealt six piles of eight cards, and played magic poker. Morgana trick-dealt a good hand. Twenty cricket/raven gold coins appeared. The gruel tasted bad. Further dice rolls moved Geldrin to a chessboard square twenty squares aside, then Dirk to the far side, with lights appearing on the board. Morgana threw gruel off the platform; Cedric caught and ate it like ambrosia. Bridged would see the party but would not tell them how to get there. Geldrin and Dirk dealt with orbs, `[unclear: geesie?]`, and a scythe. When the objects were pushed together, the floor disappeared and they landed with Invar and Eliana. -Medinner told Dotharl the party needed to go soon and stepped off the edge. An orb was a present from Bridget and needed to be kept until they did not need it. Cedric and Medinner were Bridget's closest followers and could speak more freely and directly than Bridget. Bridget needed a favour. The party was told to remember that Bridget had given them a present when they were about to feel angry, and to remember how they had honoured her. +Medinner told Dotharl the party needed to go soon and stepped off the edge. An orb was a present from Bridged and needed to be kept until they did not need it. Cedric and Medinner were Bridged's closest followers and could speak more freely and directly than Bridged. Bridged needed a favour. The party was told to remember that Bridged had given them a present when they were about to feel angry, and to remember how they had honoured her. The party appeared back where they had started, with a door behind them. Beyond it was darker sky and no platform, with a bouncy-castle feeling underfoot. They realised they could move by intent. Invar and Dotharl sped toward a storm; Dirk decided to move where they needed to go; Eliana went to Dirk; Geldrin went to Invar and Dotharl. Dotharl heard a voice in his head saying he had abandoned them, left them behind, and that mortals were inferior. The voice said he could set Dotharl free if Dotharl asked him to be set free. -Dirk imagined a cloud tent house and Bridget on a throne, and the images merged with other imaginations. Bridget would take the gold Valentinhide, smash the orb, and release her to Bridget. Bridget wished to be honoured a second time. She said the gods had agreed not to interfere unless asked, but some kin had interfered greatly. Her kin was trapped and wished to be freed, perhaps Dotharl's granddad. Part of Dotharl was Bridget. The notes separate Dotharl's dad being trapped, his granddad being lost, and Squeall. Bridget liked freedom and trickery. Her husband liked lucky fortune, weather, change, and loss. Whatever her followers needed, she could get within reason. +Dirk imagined a cloud tent house and Bridged on a throne, and the images merged with other imaginations. Bridged would take the gold Valentinhide, smash the orb, and release her to Bridged. Bridged wished to be honoured a second time. She said the gods had agreed not to interfere unless asked, but some kin had interfered greatly. Her kin was trapped and wished to be freed, perhaps Dotharl's granddad. Part of Dotharl was Bridged. The notes separate Dotharl's dad being trapped, his granddad being lost, and Squeall. Bridged liked freedom and trickery. Her husband liked lucky fortune, weather, change, and loss. Whatever her followers needed, she could get within reason. -The party's questions included whether the trapped being was in Snowsoreen, the order city, or trapped in the dome as order from all the chaos outside it. Bridget said there were many paths and nothing was written in stone. The party had chosen to be constrained to the walkway, though they could have walked off, because of fear of the unknown. Bridget named choices for each party member. Eliana could keep the identity they had now or the one they once had. Dotharl could keep his humanity or rejoin Bridget's realm. Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. Invar, a man of faith who was only beginning to learn it, needed to give him a crystal, the one Geldrin lost, and use it if they returned to his city. Dirk was on the path to free his people; more steps and friends would be needed, not only spirits, and he should not forget the fishing expedition. Morgana's choice to help the party carried great cost, and those who sought to train her also came at great cost. +The party's questions included whether the trapped being was in Snowsoreen, the order city, or trapped in the dome as order from all the chaos outside it. Bridged said there were many paths and nothing was written in stone. The party had chosen to be constrained to the walkway, though they could have walked off, because of fear of the unknown. Bridged named choices for each party member. Eliana could keep the identity they had now or the one they once had. Dotharl could keep his humanity or rejoin Bridged's realm. Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. Invar, a man of faith who was only beginning to learn it, needed to give him a crystal, the one Geldrin lost, and use it if they returned to his city. Dirk was on the path to free his people; more steps and friends would be needed, not only spirits, and he should not forget the fishing expedition. Morgana's choice to help the party carried great cost, and those who sought to train her also came at great cost. -Page 263 then starts Day 53, so Day 52 is complete before the party goes onward to the Bridget / Domain events that follow. +Page 263 then starts Day 53, so Day 52 is complete before the party goes onward to the Bridged / Domain events that follow. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dothral / Dotharl, Dothral's father, Aneurascarle, Squeall, Valentinhide, Bridget, Geldrin, Invar, Eliana, Dirk, Morgana, Medinner, Cedric, Avalina, Dotharl's granddad, Bridget's husband, Brownings, and Eliana's former and current identities. +People and name-like figures mentioned include Dothral / Dotharl, Dothral's father, Aneurascarle, Squeall, Valentinhide, Bridged, Geldrin, Invar, Eliana, Dirk, Morgana, Medinner, Cedric, Avalina, Dotharl's granddad, Bridged's husband, Brownings, and Eliana's former and current identities. -Groups and factions mentioned include the party, dragons, dragonkind, goats, gods, Bridget's kin, Bridget's followers, silver dragonborn in Medinner's show, mortals, Brownings, Dirk's spirits and people, and those who seek to train Morgana. +Groups and factions mentioned include the party, dragons, dragonkind, goats, gods, Bridged's kin, Bridged's followers, silver dragonborn in Medinner's show, mortals, Brownings, Dirk's spirits and people, and those who seek to train Morgana. -Places mentioned include Stonedown, the dome, the night sky, the prisons, the elemental planes by implication from the shard's protection, Bridget's domain, the pathway and linked wall rooms, Invar's cricket/raven/gruel room, Dotharl's raven-headed lady room, Medinner's show space, the chessboard space, the darker-sky realm, the storm, the imagined cloud tent / throne, Snowsoreen, the order city, Dotharl's or Invar's city by instruction, and Dirk's future fishing expedition. +Places mentioned include Stonedown, the dome, the night sky, the prisons, the elemental planes by implication from the shard's protection, Bridged's domain, the pathway and linked wall rooms, Invar's cricket/raven/gruel room, Dotharl's raven-headed lady room, Medinner's show space, the chessboard space, the darker-sky realm, the storm, the imagined cloud tent / throne, Snowsoreen, the order city, Dotharl's or Invar's city by instruction, and Dirk's future fishing expedition. -Creatures and creature-like beings mentioned include Valentinhide as goddess or powerful being, the small shard of a powerful creature, cricket-headed humanoid / Cedric, bird person, raven, cricket, raven-headed lady, Medinner, silver dragonborn performers, woman covered in roots, robot man / copper dragonborn in plates, Bridget, Bridget's trapped kin, and the voice trying to tempt Dotharl. +Creatures and creature-like beings mentioned include Valentinhide as goddess or powerful being, the small shard of a powerful creature, cricket-headed humanoid / Cedric, bird person, raven, cricket, raven-headed lady, Medinner, silver dragonborn performers, woman covered in roots, robot man / copper dragonborn in plates, Bridged, Bridged's trapped kin, and the voice trying to tempt Dotharl. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the dome, pacts linked to the dome, prisons linked to the dome, broom, oath or holding-elemental protection, dome energy, pathway to Bridget, screwdriver, red crystal and divot, curved blade, button, cricket cage, raven cage, steaming bowl of gruel, playing cards, bowl, dice, magic poker setup, twenty cricket/raven gold coins, chessboard lights, orbs, `[unclear: geesie?]`, scythe, orb present from Bridget, gold Valentinhide, the crystal Geldrin lost, and the fishing expedition reminder. +Items, documents, and physical resources mentioned include the dome, pacts linked to the dome, prisons linked to the dome, broom, oath or holding-elemental protection, dome energy, pathway to Bridged, screwdriver, red crystal and divot, curved blade, button, cricket cage, raven cage, steaming bowl of gruel, playing cards, bowl, dice, magic poker setup, twenty cricket/raven gold coins, chessboard lights, orbs, `[unclear: geesie?]`, scythe, orb present from Bridged, gold Valentinhide, the crystal Geldrin lost, and the fishing expedition reminder. -Spells, visions, and magical effects mentioned include memory retrieval about being Hartwall, true-form snippets, opening a pathway to Bridget's domain, Knock, magically linked rooms / walls, Bridget making a door for Morgana, Medinner's reenactment show, movement by intent in Bridget's realm, telepathic or intrusive voice to Dotharl, Bridget's ability to take and smash the orb, and divinely framed choices for party members. +Spells, visions, and magical effects mentioned include memory retrieval about being Hartwall, true-form snippets, opening a pathway to Bridged's domain, Knock, magically linked rooms / walls, Bridged making a door for Morgana, Medinner's reenactment show, movement by intent in Bridged's realm, telepathic or intrusive voice to Dotharl, Bridged's ability to take and smash the orb, and divinely framed choices for party members. -Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridget's offer to take gold Valentinhide, the trapped kin's requested freedom, Dotharl's humanity choice, Eliana's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. +Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridged's offer to take gold Valentinhide, the trapped kin's requested freedom, Dotharl's humanity choice, Eliana's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. # Clues, Mysteries, and Open Threads @@ -72,13 +72,13 @@ The serene night-sky part of Valentinhide can soften her into a goddess of destr Destroying the dome would cancel pacts and release all prisons, creating a direct strategic conflict between freeing prisoners and maintaining existing world-order bargains. -Bridget's domain tests appear to reward honouring her, but the rules of Cedric, Medinner, the raven, gruel, cards, dice, chessboard, orbs, `[unclear: geesie?]`, and scythe remain only partly understood. +Bridged's domain tests appear to reward honouring her, but the rules of Cedric, Medinner, the raven, gruel, cards, dice, chessboard, orbs, `[unclear: geesie?]`, and scythe remain only partly understood. Medinner's show reenacted Eliana, Avalina, a burial, a rooted woman, and a robot or copper dragonborn being raised after an explosion. The meaning and reliability of this reenactment remain open. -The voice to Dotharl that disparaged mortals and offered freedom if asked may be Bridget's trapped kin, Dotharl's father, or another bound entity; its identity and trustworthiness remain unresolved. +The voice to Dotharl that disparaged mortals and offered freedom if asked may be Bridged's trapped kin, Dotharl's father, or another bound entity; its identity and trustworthiness remain unresolved. -Bridget's kin wishes to be freed, while part of Dotharl is Bridget and his father is trapped / granddad lost. Dotharl's choice between humanity and rejoining Bridget's realm remains future-facing. +Bridged's kin wishes to be freed, while part of Dotharl is Bridged and his father is trapped / granddad lost. Dotharl's choice between humanity and rejoining Bridged's realm remains future-facing. Eliana must choose between the current identity and the one they once had. This directly continues Eliana Hartwall identity thread. diff --git a/data/4-days-cleaned/day-53.md b/data/4-days-cleaned/day-53.md index 823e5ce..0635832 100644 --- a/data/4-days-cleaned/day-53.md +++ b/data/4-days-cleaned/day-53.md @@ -13,9 +13,9 @@ complete: true # Narrative -Day 53 began in Bridget's domain. Bridget said the party's friend intrigued her and asked why they helped one another. She warned that a dragon she had banished was coming back and that there was only one way large enough for that return. She nodded at Invar and said the dragon would act soon, having taken the opportunity to get more hands that channelled the power of the silver. Bridget said the information needed for the party's decision was now available. Eliana needed to understand, "I am Eliana and Eliana. I can't be both." +Day 53 began in Bridged's domain. Bridged said the party's friend intrigued her and asked why they helped one another. She warned that a dragon she had banished was coming back and that there was only one way large enough for that return. She nodded at Invar and said the dragon would act soon, having taken the opportunity to get more hands that channelled the power of the silver. Bridged said the information needed for the party's decision was now available. Eliana needed to understand, "I am Eliana and Eliana. I can't be both." -Bridget asked where the party wanted to go, and they chose the dwarf city by Papa Illmarne's dome. When they appeared there, the High Priest King said his job was to keep Papa Illmarne's dome. Two dwarves by the dome said the party were wanted criminals for liberating a prisoner. +Bridged asked where the party wanted to go, and they chose the dwarf city by Papa Illmarne's dome. When they appeared there, the High Priest King said his job was to keep Papa Illmarne's dome. Two dwarves by the dome said the party were wanted criminals for liberating a prisoner. The party entered a council chamber where the High Priest King, General, Advocate, Ambassador, and Guild Mistress sat around a table. Anya Blakedurn, the Guild Mistress and Infestus' daughter, came from the renowned Blakedurn family, had purple eyes, and represented the party before the council. She questioned them about dragons, dragonborn, automatons, and gnomes. Rubyeye was known as a liar, possibly affected by Wrath. Blakedurn wanted more information in exchange for representing them. Geldrin told her that Perodita was trying to get back into the dome through the city. @@ -31,15 +31,15 @@ At Papa's Dome, guards tried to take the party's weapons but were too easily per Roll call counted 1,017 soldiers. Dirk inspected the wagons and found the army badly supplied: no water, much wine, one day's food, and no weapons, arrows, or other supplies. The party got a dwarf promoted to Quartermaster, since the last had died two years earlier and had not been replaced. As he began taking notes, he became glassy-eyed and hopeless. Lesser Restoration returned him to normal. The party attempted the same with the General, but a malevolent presence seemed to stop it. Greater Restoration made his eyes go black; dark smoke rose from his shoulders, flew to the ceiling, dissipated, and he returned to reality and organised the army. -At 12:00 the army moved. Morgana flew ahead to notify the town. The party noted that Bridget might not be dwarven construction but elemental. Morgana encountered a small wagon train of about forty ebony dwarves. They shot her and damaged her, but she continued. She then stopped to speak with envoys from the city who had come to meet the army, then continued to the city. Blood lay around the outside of the city door, and buildings were visibly damaged. A lone dwarf called from a building, warning her she should not be in the streets. Inside, the dwarf turned into a llamia with ratmen companions. Morgana fled back over the bridge. Tendruts followed her and said, "Come back any time." The party then tried to get Morgana back to them. +At 12:00 the army moved. Morgana flew ahead to notify the town. The party noted that Bridged might not be dwarven construction but elemental. Morgana encountered a small wagon train of about forty ebony dwarves. They shot her and damaged her, but she continued. She then stopped to speak with envoys from the city who had come to meet the army, then continued to the city. Blood lay around the outside of the city door, and buildings were visibly damaged. A lone dwarf called from a building, warning her she should not be in the streets. Inside, the dwarf turned into a llamia with ratmen companions. Morgana fled back over the bridge. Tendruts followed her and said, "Come back any time." The party then tried to get Morgana back to them. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Bridget, Invar, Eliana / Eliana Hartwall, Papa Illmarne, the High Priest King, Anya Blakedurn, Rubyeye, Wrath, Perodita, Geldrin, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Calthid Metalshaper, Garadul, Thamia, Noxia, Icefang, Papa / Papa's Dome, Dirk, Morgana, the promoted Quartermaster, Tendruts, and the lone dwarf / llamia. +People and name-like figures mentioned include Bridged, Invar, Eliana / Eliana Hartwall, Papa Illmarne, the High Priest King, Anya Blakedurn, Rubyeye, Wrath, Perodita, Geldrin, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Calthid Metalshaper, Garadul, Thamia, Noxia, Icefang, Papa / Papa's Dome, Dirk, Morgana, the promoted Quartermaster, Tendruts, and the lone dwarf / llamia. -Groups and factions mentioned include the party, Bridget's domain and kin, dwarves, the Dwarven kingdoms, the council, Blakedurn's family, guilds, dragonborn, automatons, gnomes, black dragons, green dragons, blue dragons, goliaths, ratmen, ebony dwarves, the army, and city envoys. +Groups and factions mentioned include the party, Bridged's domain and kin, dwarves, the Dwarven kingdoms, the council, Blakedurn's family, guilds, dragonborn, automatons, gnomes, black dragons, green dragons, blue dragons, goliaths, ratmen, ebony dwarves, the army, and city envoys. -Places mentioned include Bridget's domain, the dwarf city, Papa Illmarne's dome / Papa's Dome, the council chamber, Blakedurn's house, the city approached by the army, the bridge, and the damaged city door. +Places mentioned include Bridged's domain, the dwarf city, Papa Illmarne's dome / Papa's Dome, the council chamber, Blakedurn's house, the city approached by the army, the bridge, and the damaged city door. # Items, Rewards, and Resources @@ -49,9 +49,9 @@ Strategic resources and obligations include Blakedurn's bargain to help defeat P # Clues, Mysteries, and Open Threads -Bridget's warning that a banished dragon is returning through a route involving Invar and silver remains an urgent clue. +Bridged's warning that a banished dragon is returning through a route involving Invar and silver remains an urgent clue. -Eliana's identity problem is sharpened by Bridget's statement that Eliana must understand being "Eliana and Eliana" but cannot be both. +Eliana's identity problem is sharpened by Bridged's statement that Eliana must understand being "Eliana and Eliana" but cannot be both. Papa Illmarne's dome has a hole and cannot be repaired without pylons. Papa's increased freedom is being used to break the dwarves as revenge. diff --git a/data/4-days-cleaned/day-54.md b/data/4-days-cleaned/day-54.md index 088132a..b3b3b7e 100644 --- a/data/4-days-cleaned/day-54.md +++ b/data/4-days-cleaned/day-54.md @@ -31,7 +31,7 @@ The party recovered knowledge of dangerous enemy logistics: invisibility equipme # Clues, Mysteries, and Open Threads -The elementals accepted coins taken to "their mother," suggesting an elemental authority or relationship relevant to the ongoing elemental-prison and Bridget threads. +The elementals accepted coins taken to "their mother," suggesting an elemental authority or relationship relevant to the ongoing elemental-prison and Bridged threads. The carved elven shield crystal and copper appear to enable invisibility, linking shield-crystal technology to battlefield infiltration. diff --git a/data/4-days-cleaned/day-55.md b/data/4-days-cleaned/day-55.md index 9db7264..a59d872 100644 --- a/data/4-days-cleaned/day-55.md +++ b/data/4-days-cleaned/day-55.md @@ -18,9 +18,9 @@ Morgana tried to talk to No-Hurt. It had spread everywhere and had killed things Many attackers waited in the walls. As the party approached the door, the wind grew louder. They sent wagons in with a shield wall. Invar heard a drum reverberating through his feet, along with scraping and grinding. Perodita flew up from the bridge with black ichor coming from her chest. The party damaged her, and she fled. The dwarven army killed the llamia and ratmen. The black dragon sister was nowhere to be seen, and the bridge was damaged. -Invar remembered that Blackthorn had not been allowed to free his friend because it was a trick. Bridget allowed it because it was for a trap and she found it funny. Wrath, a black dragonborn, appeared. He was busy fighting green dragons, Perodita's children. He said the basilisk was currently a piece of coal at Coalmont Rally; crushing it would teleport the party to Infestus. Wrath gave the party memories and offered more. The city had been taken over during the last month through gradual removal of infrastructure, but the occupiers seemed to turn on each other when Perodita attacked the previous day. The party took a long rest, planning to leave the dwarf army at Grimcrag and teleport to Magstein to attack Perodita in her cavern. +Invar remembered that Blackthorn had not been allowed to free his friend because it was a trick. Bridged allowed it because it was for a trap and she found it funny. Wrath, a black dragonborn, appeared. He was busy fighting green dragons, Perodita's children. He said the basilisk was currently a piece of coal at Coalmont Rally; crushing it would teleport the party to Infestus. Wrath gave the party memories and offered more. The city had been taken over during the last month through gradual removal of infrastructure, but the occupiers seemed to turn on each other when Perodita attacked the previous day. The party took a long rest, planning to leave the dwarf army at Grimcrag and teleport to Magstein to attack Perodita in her cavern. -Geldrin asked Bridget whether Perodita was still travelling. A sleepy cockroach appeared and said Perodita was asleep, that she had not rested well because she was in pain and could not fix it. The dwarves stayed at Grimcrag to recover. Perodita was about thirteen hours away, depending on her sleep. The party used the rift blade to teleport to Magstein and went to find the High Priest at Papa Marmaru. Guards tried to stop them, but when Invar and Geldrin got through, the High Priest called off the guards, who stopped as one in an odd manner. +Geldrin asked Bridged whether Perodita was still travelling. A sleepy cockroach appeared and said Perodita was asleep, that she had not rested well because she was in pain and could not fix it. The dwarves stayed at Grimcrag to recover. Perodita was about thirteen hours away, depending on her sleep. The party used the rift blade to teleport to Magstein and went to find the High Priest at Papa Marmaru. Guards tried to stop them, but when Invar and Geldrin got through, the High Priest called off the guards, who stopped as one in an odd manner. The High Priest was no longer the High Priest, but one of the gods: Mericok. Greater Restoration revealed a large smoke sphere with spidery legs and a human-like face that wanted Papa Marmaru. Invar offered Papa Marmaru his goblet. Papa Marmaru asked whether Invar wanted this to happen and, in a raspy voice, warned not to trust Mericok. Marmaru had chosen to be there and looked after the dwarves, so he should be left to it. The party searched for explosives. @@ -32,7 +32,7 @@ The party went to the Crusty Beard to rest at 23:00. The town was mostly quiet, # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dotharl, the green-eyed woman in the dream, her friend, her brother, Envy?, Morgana, No-Hurt, Invar, Perodita, Blackthorn, Bridget, Wrath, Infestus, Geldrin, the High Priest, Mericok, Papa Marmaru, Noxia, and the faceplate guards. +People and name-like figures mentioned include Dotharl, the green-eyed woman in the dream, her friend, her brother, Envy?, Morgana, No-Hurt, Invar, Perodita, Blackthorn, Bridged, Wrath, Infestus, Geldrin, the High Priest, Mericok, Papa Marmaru, Noxia, and the faceplate guards. Groups and factions mentioned include the party, the dwarven army, llamia, ratmen, green dragons / Perodita's children, city occupiers, dwarves at Grimcrag, gods, and Magstein townsfolk. @@ -42,7 +42,7 @@ Places mentioned include the Magstein / Grimcrag bridge side, the glass dome in Items and resources mentioned include the closed doors and arrow slits, wagons and shield wall, basilisk as a piece of coal, rift blade, Papa Marmaru's goblet, explosives, Wall of Force, alarm, Pass without Trace, Walls of Fire, barrel of Noxia ooze, menstruum, 7,000 gp from Perodita's belly scales, the Crusty Beard memorial and hair wall, and the faceplate guards' armour. -Strategic resources and plans include leaving the dwarf army to recover at Grimcrag, using Bridget for information through a cockroach messenger, trapping Perodita in confined passages, and delaying future decisions until after rest in Magstein. +Strategic resources and plans include leaving the dwarf army to recover at Grimcrag, using Bridged for information through a cockroach messenger, trapping Perodita in confined passages, and delaying future decisions until after rest in Magstein. # Clues, Mysteries, and Open Threads diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 20077e0..5c501fd 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -57,7 +57,7 @@ sources: - [Stronghedge](places/stronghedge.md): Stronghedge, Strong Hedge. - [Mosscourt](places/mosscourt.md): Mosscourt. - [Hillcaster](places/hillcaster.md): Hillcaster. -- [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridge Statue, Statue of Bridge, Hazy Days. +- [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridged Statue, Statue of Bridged, Hazy Days. - [Claymeadow](places/claymeadow.md): Claymeadow, Claymeadows, Clay Meadows. - [Ironcroft Firewise](places/ironcroft-firewise.md): Ironcroft Firewise, Ironcroft, Ironcraft [uncertain note variant]. - [Salvation](places/salvation.md): Salvation. @@ -91,7 +91,7 @@ sources: - [Envy](people/envy.md): Envy, Lady Envy, removed elven emotion manifestation. - [Pride](people/pride.md): Pride, removed elven emotion manifestation. - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Matron Cardonald's daughter. Valentinhide variants now also have a separate unresolved page. -- [Valentinhide / Valentenhule](people/valentinhide.md): Valentinhide, Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. +- [Valentinhide / Valentenhule](people/valentinhide.md): Valentinhide, Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridged's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. - [Anastasia](people/anastasia.md): Anastasia, Anestasia, Goliath queen lady. - [Ingris](people/ingris.md): Ingris, Dirk's sister. @@ -130,7 +130,7 @@ sources: - [Hartwall Auction Lots](items/hartwall-auction-lots.md): Hartwall auction, Grand Auction House lots, Browning's scroll, Firefang, Smulty box, Ray of sorting and stirring, bracelet of locating. - [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): Goldenswell prison network, off-the-books prisoners, memory grubs, ear pupae, ear grubs, large grubs attached to ear canals. - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scumbleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Fatrabbit, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardonald, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. -- [Bridget's Doors](concepts/bridgets-doors.md): Bridget, Bridge, Bridget / Bridge, Bridge Statue, Statue of Bridge, Bridget's door travel. +- [Bridged's Doors](concepts/bridgeds-doors.md): Bridged, Bridget, Bridge, Bridged / Bridge, Bridged Statue, Statue of Bridged, Bridge Statue, Statue of Bridge, Bridged's door travel. - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md): Grimescale, Gravltooth, Umberous, Spindl, Cedric, Medinner, Squeall / Squeal, Aglue?, Anemie?. - [Anya Blakedurn](people/anya-blakedurn.md): Anya Blakedurn, Blakedurn, Guild Mistress, Infestus' daughter. - [Magstein and Grimcrag](places/magstein-grimcrag.md): Magstein, Grimcrag, Grimcrag bridge, Crusty Beard. diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index c9ddddf..5ff022f 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -13,7 +13,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Standalone Pages Created -- [Dollarmen](../factions/dollarmen.md), [Brookville Springs](../places/brookville-springs.md), [Grand Towers](../places/grand-towers.md), [Bridget's Doors](../concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md), [Wrath](../people/wrath.md), [Icefang](../people/icefang.md), [Valenthielles Prison](../places/valenthielles-prison.md), [Highden](../places/highden.md), [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md), [Azureside](../places/azureside.md), [Snake Slayers](../items/snake-slayers.md), [Searu's Arrow](../items/searus-arrow.md), and [Searu](../people/searu.md). +- [Dollarmen](../factions/dollarmen.md), [Brookville Springs](../places/brookville-springs.md), [Grand Towers](../places/grand-towers.md), [Bridged's Doors](../concepts/bridgeds-doors.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md), [Wrath](../people/wrath.md), [Icefang](../people/icefang.md), [Valenthielles Prison](../places/valenthielles-prison.md), [Highden](../places/highden.md), [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md), [Azureside](../places/azureside.md), [Snake Slayers](../items/snake-slayers.md), [Searu's Arrow](../items/searus-arrow.md), and [Searu](../people/searu.md). ## Existing Pages Updated or Used diff --git a/data/6-wiki/clues/days-48-52-coverage-audit.md b/data/6-wiki/clues/days-48-52-coverage-audit.md index 81ea1d5..b4c8273 100644 --- a/data/6-wiki/clues/days-48-52-coverage-audit.md +++ b/data/6-wiki/clues/days-48-52-coverage-audit.md @@ -23,7 +23,7 @@ This audit accounts for the people, places, factions, items, clues, and open thr | Simon, Stoven, Stuart, Morgana's `[coded]` circle | Rollups and open thread. | | Benu prophecy, Dunnen people, Garadul old protector made flesh anew | Cleaned narrative, rollups, [Open Threads](../open-threads.md); existing [Garadul](../people/garadul.md) already tracks related protector identity. | | Dothral / Aneurascarle / Squeall family and god-of-lost pact | [Minor Figures](../people/minor-figures-days-48-52.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and open thread. | -| Bridget, Bridget's domain, Cedric, Medinner, raven-headed lady, Bridget's husband, honouring puzzles | Existing [Bridget's Doors](../concepts/bridgets-doors.md) updated; figures, places, and items rollups added. | +| Bridged, Bridged's domain, Cedric, Medinner, raven-headed lady, Bridged's husband, honouring puzzles | Existing [Bridged's Doors](../concepts/bridgeds-doors.md) updated; figures, places, and items rollups added. | | Dome destruction cancels pacts and releases all prisons | [Elemental Prisons](../concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and [Open Threads](../open-threads.md). | | Day 52 personal choices for Eliana, Dotharl, Geldrin, Invar, Dirk, Morgana | Cleaned narrative and open threads; item rollup preserves crystal and fishing expedition hooks. | | Day 53 material from page 263 onward | Intentionally deferred until a later page confirms Day 54; no raw or cleaned Day 53 file should exist yet. | diff --git a/data/6-wiki/clues/days-53-56-coverage-audit.md b/data/6-wiki/clues/days-53-56-coverage-audit.md index 81182f5..954d93e 100644 --- a/data/6-wiki/clues/days-53-56-coverage-audit.md +++ b/data/6-wiki/clues/days-53-56-coverage-audit.md @@ -16,7 +16,7 @@ sources: | Magstein, Grimcrag, bridge, Crusty Beard, dwarven civic collapse | Standalone page: [Magstein and Grimcrag](../places/magstein-grimcrag.md). | | Papa Illmarne's dome / Papa Marmaru / Mericok | Standalone concept: [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md), with Mericok and Papa Marmaru also in minor figures. | | Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Quartermaster, Tendruts, llamia, elementals' mother, green-eyed dream woman, No-Hurt, Blackthorn, Humility fragments, Juticars, Humorous, Ember | Rollup: [Minor Figures from Days 53-56](../people/minor-figures-days-53-56.md). | -| Bridget's return point, council chamber, Blakedurn's house, convoy battlefield, Perodita passages, Grand Towers side rooms, Bluescale, Great Infestus | Rollup: [Minor Places from Days 53-56](../places/minor-places-days-53-56.md). | +| Bridged's return point, council chamber, Blakedurn's house, convoy battlefield, Perodita passages, Grand Towers side rooms, Bluescale, Great Infestus | Rollup: [Minor Places from Days 53-56](../places/minor-places-days-53-56.md). | | Garadul armour, Rubyeye-summoning device, pylons, shield crystal/copper, poison/explosives, basilisk coal, rift blade, Noxia ooze barrel, control-room mechanisms, Rubyeye eye, Bluescale rules, Ember reward | Rollup: [Minor Items from Days 53-56](../items/minor-items-days-53-56.md). | | Peridita / Perodita and Noxia essence | Existing pages updated: [Peridita](../people/peridita.md), [Noxia](../people/noxia.md). | | Grand Towers control room, Browning godhood ritual, Humility / Thomas / Envy, Juticar mission | Existing pages updated: [Grand Towers](../places/grand-towers.md), [Everard Browning](../people/everard-browning.md), [Envy](../people/envy.md), [Removed Elven Emotions](../concepts/removed-elven-emotions.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md). | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index dc0e12c..3c96503 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -74,7 +74,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Serenity stone absence | `data/4-days-cleaned/day-35.md` | Bluemeadows militia-like man did not have a serenity stone. | | Pride, Lust, greed, wrath, envy, gluttony, sloth | `data/4-days-cleaned/day-35.md` | Side note near Lady Envy and dome information; Envy, Wrath, and Pride are manifestations of emotions removed from the elves. | | `3 paws - Beauchamp` | `data/4-days-cleaned/day-35.md` | Note recorded after Lady Katherine Cole woke; meaning unclear. | -| Bridget statue green / red / yellow eye-glows | `data/4-days-cleaned/day-36.md` | Grand Towers pennies caused different colors and door travel; exact mapping unknown. | +| Bridged statue green / red / yellow eye-glows | `data/4-days-cleaned/day-36.md` | Grand Towers pennies caused different colors and door travel; exact mapping unknown. | | Black snowflake tabards and black snowflakes | `data/4-days-cleaned/day-36.md` | Seen in Grand Towers vision and Coalmont Falls weather/scoop. | | Five runes in a pentagram around a twenty-foot statue | `data/4-days-cleaned/day-36.md` | Underwater chamber associated with !Asmoorade! at Coalmont Falls. | | Ticking rune door | `data/4-days-cleaned/day-36.md` | Door in freshly cut Coalmont facility corridor; would not open normally. | @@ -115,7 +115,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `Badger born in freedom` | `data/4-days-cleaned/day-42.md` | Proposed name/sign for the rescued baby Badger; offered to Tor's bowl. | | `Domain of Pengalis` | `data/4-days-cleaned/day-42.md` | Inscription on larger Goliath coin found in skull-arched room. | | `you wear the ring of the betrayer - I can help` | `data/4-days-cleaned/day-42.md` | Ring-reflection voice to Invar; featureless woman took damage in reflection. | -| `This place is safe` | `data/4-days-cleaned/day-42.md` | Bridge statue response to tower's penny. | +| `This place is safe` | `data/4-days-cleaned/day-42.md` | Bridged statue response to tower's penny. | | `A drug to dull the loss` | `data/4-days-cleaned/day-42.md` | Attabo response to nip. | | `A payment made` | `data/4-days-cleaned/day-42.md` | Brass City platinum offering response. | | `the hunt would be successful, but betrayal was at hand` | `data/4-days-cleaned/day-42.md` | Seara / Nature response to Lortesh's scale or hair. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index 31f5d74..c985457 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -61,7 +61,7 @@ The Barrier is the central protective shield, dome, or containment system around - Day 32 records the Tri-moon visible during the day, 16 hours ahead of expected schedule, while the Barrier looked normal and the small chunk was visible. - Day 32 skull lore says [Tremon's skull](../items/tremons-body-and-statue-artifacts.md) had influence over the Barrier and could bend it. - Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said [Lady Envy](../people/envy.md)'s sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. -- Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Hartwall did not know about. +- Day 36 reveals divine bargain terms behind the Barrier: Bridged gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Hartwall did not know about. - Ruby Eye and Wrath both wanted the [Skull of Tremon](../items/tremons-body-and-statue-artifacts.md) because it helped people get in and out of the Barrier. - Day 41 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. - Day 42 says the Barrier was weak, that the party could attune to three of Ennuyé's rings, and that a tiny hole became noticeable after Ashkellon blessings gave Goliaths weapons, shields, and healing. diff --git a/data/6-wiki/concepts/bridgeds-doors.md b/data/6-wiki/concepts/bridgeds-doors.md new file mode 100644 index 0000000..ebba1e9 --- /dev/null +++ b/data/6-wiki/concepts/bridgeds-doors.md @@ -0,0 +1,52 @@ +--- +title: Bridged's Doors +type: concept +aliases: + - Bridget + - Bridget's Doors + - Bridged / Bridge + - Bridge + - Statue of Bridged + - Bridged Statue + - Statue of Bridge + - Bridge Statue + - Bridged's door travel +first_seen: day-36 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-52.md +--- + +# Bridged's Doors + +## Summary + +Bridged is the Goddess of Freedom and Trickery, connected to sacred doors, door-based travel, luck, gargoyles, and Grand Towers pennies that cause colored eye-glows. + +## Known Details + +- Notes connect Bridged to a Seaward temple where people take bets, as a goddess of freedom, trickery, luck, and gargoyles. +- Bellburn goliaths treated doors as sacred to Bridged and believed Bridged freed them from Envy by sending the party from the dome. +- A Grand Towers penny placed on Bridged's statue made her eyes glow green, then red, and sent Dirk to Seaward and apparently back to yesterday. +- Geldrin's two pennies made Bridged's eyes glow green and yellow, sending the group through a blue-and-white palace-like reception room outside the dome before a later door route returned them to Brookville Springs. +- On Day 52, Geldrin opened a pathway to Bridged's domain so a shard or night-sky part of Valentinhide could reach Bridged. +- Bridged's domain used linked rooms, walls, direction choices, honouring puzzles, cards, dice, chessboard movement, and movement by intent. +- Bridged's closest followers, Cedric and Medinner, could speak more freely and directly than Bridged. They warned the party to remember Bridged's present and how they honoured her before anger. +- Bridged wished to be honoured a second time, liked freedom and trickery, and said some kin had interfered despite gods agreeing not to interfere unless asked. +- Bridged said her trapped kin wanted freedom; the notes connect this to Dotharl's dad being trapped, his granddad being lost, and Squeall. + +## Related Entries + +- [Brookville Springs](../places/brookville-springs.md) +- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) +- [Minor Figures from Days 48 and 52](../people/minor-figures-days-48-52.md) +- [Minor Places from Days 48 and 52](../places/minor-places-days-48-52.md) + +## Open Questions + +- What do Bridged's green, red, and yellow eye-glows mean? +- Do Grand Towers pennies control destination, time displacement, cost, or risk? +- Can Bridged's doors reliably enter or leave the dome? +- What exact rules govern Bridged's domain, honouring, gifts, anger, and movement by intent? +- Who is Bridged's trapped kin, and what does freeing him mean for Dotharl? diff --git a/data/6-wiki/concepts/bridgets-doors.md b/data/6-wiki/concepts/bridgets-doors.md deleted file mode 100644 index 8367d12..0000000 --- a/data/6-wiki/concepts/bridgets-doors.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Bridget's Doors -type: concept -aliases: - - Bridget / Bridge - - Bridge - - Statue of Bridge - - Bridge Statue - - Bridget's door travel -first_seen: day-36 -last_updated: day-52 -sources: - - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-52.md ---- - -# Bridget's Doors - -## Summary - -Bridget is connected to freedom, luck, gargoyles, trickery, sacred doors, and door-based travel that responds to Grand Towers pennies with colored eye-glows. - -## Known Details - -- Notes connect Bridget to a Seaward temple where people take bets, as a god of freedom, luck, gargoyles, and trickery. -- Bellburn goliaths treated doors as sacred to Bridget and believed Bridget freed them from Envy by sending the party from the dome. -- A Grand Towers penny placed on Bridget's statue made her eyes glow green, then red, and sent Dirk to Seaward and apparently back to yesterday. -- Geldrin's two pennies made Bridget's eyes glow green and yellow, sending the group through a blue-and-white palace-like reception room outside the dome before a later door route returned them to Brookville Springs. -- On Day 52, Geldrin opened a pathway to Bridget's domain so a shard or night-sky part of Valentinhide could reach Bridget. -- Bridget's domain used linked rooms, walls, direction choices, honouring puzzles, cards, dice, chessboard movement, and movement by intent. -- Bridget's closest followers, Cedric and Medinner, could speak more freely and directly than Bridget. They warned the party to remember Bridget's present and how they honoured her before anger. -- Bridget wished to be honoured a second time, liked freedom and trickery, and said some kin had interfered despite gods agreeing not to interfere unless asked. -- Bridget said her trapped kin wanted freedom; the notes connect this to Dotharl's dad being trapped, his granddad being lost, and Squeall. - -## Related Entries - -- [Brookville Springs](../places/brookville-springs.md) -- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) -- [Minor Figures from Days 48 and 52](../people/minor-figures-days-48-52.md) -- [Minor Places from Days 48 and 52](../places/minor-places-days-48-52.md) - -## Open Questions - -- What do Bridget's green, red, and yellow eye-glows mean? -- Do Grand Towers pennies control destination, time displacement, cost, or risk? -- Can Bridget's doors reliably enter or leave the dome? -- What exact rules govern Bridget's domain, honouring, gifts, anger, and movement by intent? -- Who is Bridget's trapped kin, and what does freeing him mean for Dotharl? diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 78b4995..83f1dc3 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -82,7 +82,7 @@ The elemental prisons are ancient containment systems that imprisoned eight powe - `day-44`: Riversmeet school history reveals old emotional-elimination and automation research connected to later prison and Barrier problems. - `day-47`: The party explores frost-prison structures, negotiates with prisoners and door heads, learns more about dome power dependency, and closes the fire elemental rift. - `day-48`: Rubyeye is arrested for elemental spirit entrapment, a lava orb / prisoner appears, a void elemental escapes after Pride is killed, and a dwarven prison reveals pylon, dome, and Valentinhide-lostness clues. -- `day-52`: Bridget-domain revelations state that the dome anchors pacts and that all prisons release if the dome is removed. +- `day-52`: Bridged-domain revelations state that the dome anchors pacts and that all prisons release if the dome is removed. - `day-54`: Elementals near the bridge accept coins for their mother. - `day-55`: Papa Illmarne's Dome, Mericok, and Papa Marmaru expand the pylon and prison-control problem. - `day-56`: Grand Towers control-room runes, Void and frost components, and dome drain show the prison network still active. diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index c411557..11b7717 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -29,14 +29,14 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a ## Known Details -- Bridget gave a way in. +- Bridged gave a way in. - Noxia's terms involved trinkets and barrier sickness caused by living near or touching the Barrier. - Otasha received unborn nerfili babies across the whole race, though the Barrier seemed to reduce this slightly. - The god of Darkness was worked around by making him the god Leptrop. - Ennik and Browning made many of the deals. - Hartwall did not know about half the deals made. - Ruby Eye and Carduneld discussed renegotiating some deals, breaking the inferlite curse, and addressing Barrier damage. -- Day 42 Ashkellon offering bowls answered offerings to Bridge, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Attabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Attabre's children. +- Day 42 Ashkellon offering bowls answered offerings to Bridged, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Attabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Attabre's children. - Day 43 Attabre manifested at the Ashkellon shrine, sought atonement and justice, was angry with Benu, and was connected to Goliaths receiving a protector like Trixus. - Day 44 old-school lore described Bright and Valentenhule as elemental-plane queens, Hannah as a priestess of Attabre, and Bynx as the baby Attabre spirit intended for the Goliaths as they became Emeraldus's line. - Day 48 introduced the Vessel of Divinity: a lost part of Valentinhide said it made beings into gods, stripped something away, and left lostness behind. @@ -52,7 +52,7 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - [Barrier](barrier.md) - [Grand Towers](../places/grand-towers.md) -- [Bridget's Doors](bridgets-doors.md) +- [Bridged's Doors](bridgeds-doors.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) - [Attabre](../people/attabre.md) - [Valentinhide / Valentenhule](../people/valentinhide.md) @@ -63,7 +63,7 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Which terms are still enforceable, which have been bypassed, and which can be renegotiated? - Are infertility, barrier sickness, nerfili babies, and inferlite curse all results of these bargains? - What did the Ashkellon offering responses mean by betrayal being at hand and a gift crafted for a friend being the key? -- How do Bright, Valentenhule, Bridge, and Attabre fit among the twelve divine terms? +- How do Bright, Valentenhule, Bridged, and Attabre fit among the twelve divine terms? - What exactly is the Vessel of Divinity, and who should or should not hold it? - Which pacts would fail if the dome fell, and which released prisoners would be threats, victims, or both? - Is Browning's godhood ritual another use of the same Vessel, bargain, or dome-prison mechanics? diff --git a/data/6-wiki/concepts/papa-illmarnes-dome.md b/data/6-wiki/concepts/papa-illmarnes-dome.md index c3eb1a1..5a9d164 100644 --- a/data/6-wiki/concepts/papa-illmarnes-dome.md +++ b/data/6-wiki/concepts/papa-illmarnes-dome.md @@ -21,7 +21,7 @@ Papa Illmarne's dome, also called Papa's Dome, is a dwarven containment or prote ## Known Details -- On `day-53`, Bridget sent the party back by Papa Illmarne's dome. +- On `day-53`, Bridged sent the party back by Papa Illmarne's dome. - The High Priest King said his job was to keep Papa Illmarne's dome. - The dome had a hole and could not be repaired without pylons. - Papa had more freedom lately and was using it to break the dwarves as they had treated him. diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 55fd9c8..1378e3a 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -247,6 +247,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Barrier](concepts/barrier.md) - [Elemental Prisons](concepts/elemental-prisons.md) +- [Bridged's Doors](concepts/bridgeds-doors.md) - [Everchard Memory Tampering](concepts/everchard-memory-tampering.md) - [Excellences](concepts/excellences.md) - [Removed Elven Emotions](concepts/removed-elven-emotions.md) diff --git a/data/6-wiki/inventories/party-treasury.md b/data/6-wiki/inventories/party-treasury.md index 41ca325..6dbd798 100644 --- a/data/6-wiki/inventories/party-treasury.md +++ b/data/6-wiki/inventories/party-treasury.md @@ -49,7 +49,7 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | Coins handed to guards and back-gate bribe attempt | `day-35` | `data/4-days-cleaned/day-35.md` | Used to support the drill cover story and entry attempt. | | 25 platinum | `day-36` | `data/4-days-cleaned/day-36.md` | Paid to the captain after Newgate's gargoyle delivered the Claymeadow message. | | Greasing guards' palms | `day-36` | `data/4-days-cleaned/day-36.md` | Paid or bribed guards to see Seneshell; amount not recorded. | -| Grand Towers penny and two pennies | `day-36` | `data/4-days-cleaned/day-36.md` | Offered to Bridget's statue, causing colored eye-glows and door travel. | +| Grand Towers penny and two pennies | `day-36` | `data/4-days-cleaned/day-36.md` | Offered to Bridged's statue, causing colored eye-glows and door travel. | | 15A, rope, and tin of white paint | `day-57` | `data/4-days-cleaned/day-57.md` | Traded to an imp for a deck of cards and turban. | ## Promised, Offered, or Pending @@ -75,5 +75,5 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 50 platinum | `day-12` | `data/4-days-cleaned/day-12.md` | Isabella's gargoyle dropped a bag before flying off with her; later custody unclear. | | `50 per 200g` | `day-15` | `data/4-days-cleaned/day-15.md` | Downpayment phrase preserved as uncertain. | | 150 gp if fight / 5 gp if not | `day-19` | `data/4-days-cleaned/day-19.md` | Possible ship-fight arrangement; unclear or superseded by the 400 gp Kairbidius reward. | -| Random copper piece around Bridge Statue | `day-36` | `data/4-days-cleaned/day-36.md` | Observed about five feet around the statue; not clearly party money. | +| Random copper piece around Bridged Statue | `day-36` | `data/4-days-cleaned/day-36.md` | Observed about five feet around the statue; not clearly party money. | | Fifteen black wailing coins | `day-57` | `data/4-days-cleaned/day-57.md` | Gathered from death-realm wasp bodies and then put on one wasp body; not normal treasury and final status unclear. | diff --git a/data/6-wiki/items/minor-items-days-36-40-41.md b/data/6-wiki/items/minor-items-days-36-40-41.md index 458ecd3..49b02fd 100644 --- a/data/6-wiki/items/minor-items-days-36-40-41.md +++ b/data/6-wiki/items/minor-items-days-36-40-41.md @@ -11,7 +11,7 @@ sources: | Item or resource | Context | Outcome | |---|---|---| -| Random copper piece at Bridge Statue | Offering or loose coin near Bridget statue. | Party Treasury / [Bridget's Doors](../concepts/bridgets-doors.md). | +| Random copper piece at Bridged Statue | Offering or loose coin near Bridged statue. | Party Treasury / [Bridged's Doors](../concepts/bridgeds-doors.md). | | 25 platinum paid to captain; greased palms; Grand Towers pennies | Day-36 payments and offerings. | [Party Treasury](../inventories/party-treasury.md). | | Mage's ring, Newgate's gargoyle, broken Bird, Terry, lucky cyclops eye, teleport circles, obsidian ravens, stealth ravens, sending stone, pulley lift, merfolk lodge | Transport and communication resources. | Inventory/status/open threads. | | The Guilt's dangerous chest and disarm code | Chest like Envy's lab; code exists but not recorded. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 515c25f..2be7b2d 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -18,7 +18,7 @@ sources: | Offering bowls, tower's penny, nip, Brass City platinum, Lortesh's scale / hair of Nature, cider bottle, note `Badger born in freedom`, cloak in Stitcher's bowl | Goliathified god-statue offerings and responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md), treasury/inventory. | | Two large feathers with orange and blue feathers and beads | Hidden behind Benu / Garadul picture; later Garadul communication used a feather. | Party Inventory; [Garadul](../people/garadul.md). | | Red and blue crystals, dwarf-and-dragon-head rug, ornate map of Pentacity slates, four ornate swords, four copper pylons, barrier-opening wheels | Ashkellon tower infrastructure and prison items. | [Ashkellon](../places/ashkellon.md), [Elemental Prisons](../concepts/elemental-prisons.md). | -| Treamon's skull, health pipe, Bridge coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadul/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | +| Treamon's skull, health pipe, Bridged coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadul/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | | Trixus's brass rings | Rings on Trixus's paws with Attabre inscription. | [Trixus](../people/trixus.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Time-detecting device at Bleakstorm | Detected Dirk missing a day. | [Bleakstorm](../places/bleakstorm.md), open thread. | | Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Hartwall / Goldenswell clues. | Rollup/open threads; [Papa Marmaru](../people/papa-marmaru.md). | diff --git a/data/6-wiki/items/minor-items-days-48-52.md b/data/6-wiki/items/minor-items-days-48-52.md index af02daa..5761463 100644 --- a/data/6-wiki/items/minor-items-days-48-52.md +++ b/data/6-wiki/items/minor-items-days-48-52.md @@ -27,14 +27,14 @@ sources: | `mines beneath the real` note | 48 | Note from magic school headmaster's office. | Rollup / open thread. | | Eye-sized ruby with Knock-like spell | 48 | Hidden behind loose stone. | Rollup. | | Vessel of Divinity | 48 | Said to have made beings into gods and stripped away lostness; the figure warned it could not keep the vessel. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | -| Bridget's screwdriver | 52 | Given by Cedric and used to remove a curved blade. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Bridged's screwdriver | 52 | Given by Cedric and used to remove a curved blade. | [Bridged's Doors](../concepts/bridgeds-doors.md). | | Red crystal and divot | 52 | Placed by Geldrin; raven said the crystal was for a dwarf. | Rollup. | | Curved blade and button | 52 | Blade removal revealed a button for Dirk. | Rollup. | -| Cricket/raven gruel | 52 | Honour puzzle object; Cedric later ate gruel like ambrosia. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Cricket/raven gruel | 52 | Honour puzzle object; Cedric later ate gruel like ambrosia. | [Bridged's Doors](../concepts/bridgeds-doors.md). | | Cards, dice, and magic poker | 52 | Gambling puzzle produced twenty cricket/raven gold coins. | Rollup. | | Orbs, `[unclear: geesie?]`, and scythe | 52 | Puzzle items that opened the floor when pushed together. | Rollup. | -| Orb present from Bridget | 52 | To be kept until no longer needed; party warned to remember the gift before anger. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Gold Valentinhide | 52 | Bridget would take it, smash the orb, and release her to Bridget. | [Valentinhide](../people/valentinhide.md). | +| Orb present from Bridged | 52 | To be kept until no longer needed; party warned to remember the gift before anger. | [Bridged's Doors](../concepts/bridgeds-doors.md). | +| Gold Valentinhide | 52 | Bridged would take it, smash the orb, and release her to Bridged. | [Valentinhide](../people/valentinhide.md). | | Geldrin's lost crystal | 52 | Invar must give it to someone and use it if they return to his city. | Rollup / personal quest. | | Fishing expedition reminder | 52 | Dirk warned not to forget it while freeing his people. | Rollup / personal quest. | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index e0403a6..d74b570 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -103,7 +103,7 @@ sources: - How do [Pride](people/pride.md), [Wrath](people/wrath.md), [Envy](people/envy.md), and the other removed elven emotions relate to [The Guilt](concepts/excellences.md), Excellences, demons, and gods' tools? - Is the [Skull of Tremon](items/tremons-body-and-statue-artifacts.md) still safe at Hartwall, and what risk follows if the wrong faction uses it for Barrier passage? - Who is the female outside the Barrier who wants the [Jelly Fish Broach](items/grand-towers-bargain-trinkets.md), and what are Scorpion, Snowlee, Jelly Fish, and Ant? -- How do [Bridget's Doors](concepts/bridgets-doors.md) decide destination, eye color, time displacement, and cost from Grand Towers pennies? +- How do [Bridged's Doors](concepts/bridgeds-doors.md) decide destination, eye color, time displacement, and cost from Grand Towers pennies? - Who tampered with Ruby Eye's and [Icefang](people/icefang.md)'s memories using ear grubs, and was the dark elf from Envy's apprentice? - Can the [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md) be renegotiated without worsening barrier sickness, nerfili infertility, or divine claims? - What did the recent visitors remove from [Valenthielles Prison](places/valenthielles-prison.md), and what is the Joy-like dark female figure? @@ -136,7 +136,7 @@ sources: - Why did [Attabre](people/attabre.md) put Trixus to sleep, and why is Attabre angry with Benu? - What day is Dirk missing according to [Bleakstorm](places/bleakstorm.md)'s time device? - What cost comes with Bleakstorm's time travel, and who is his lost friend [uncertain: leechus]? -- What does Bridge require to free Perodita, and what does releasing [Valentinhide](people/valentinhide.md) under the god rule mean? +- What does Bridged require to free Perodita, and what does releasing [Valentinhide](people/valentinhide.md) under the god rule mean? - Who is the pale dwarf with black dreadlocks and a crown who can help find Ruby Eye? - What are the full Benu-book family names, including Anadreste, the hidden Garadul name, Trixus, Bynx, and any missing unnamed sibling? - What are the lost dwarf cities of Grincray / Grim & Cray, why is Mashir the route, and why is there no third-city book? @@ -200,11 +200,11 @@ sources: - What does the direct answer `Because you are` mean for Eliana's Hartwall identity? - Where is Morgana's `[coded]` teleport circle, and why do Geldrin and Morgana remember making or placing it from uncertain selves? - If destroying the dome cancels all pacts and releases all prisons, which pacts or prisoners become immediate threats or obligations? -- What are Bridget's rules for honouring, gifts, anger, and the gold Valentinhide orb? -- Who is the voice offering to free Dotharl from mortals, and is it Bridget's trapped kin, his father, his grandfather, or another prisoner? +- What are Bridged's rules for honouring, gifts, anger, and the gold Valentinhide orb? +- Who is the voice offering to free Dotharl from mortals, and is it Bridged's trapped kin, his father, his grandfather, or another prisoner? - Which identity should Eliana keep: the current self or the one once held? - What power are the Brownings offering Geldrin, what crystal must Invar give or use, what fishing expedition must Dirk remember, and what training cost threatens Morgana? -- What returning dragon did Bridget warn about, why is Invar / silver the route, and how does that connect to Eliana being "Eliana and Eliana"? +- What returning dragon did Bridged warn about, why is Invar / silver the route, and how does that connect to Eliana being "Eliana and Eliana"? - What is the Rubyeye-summoning device made or provided by [Infestus](people/infestus.md) and mastered by [Anya Blakedurn](people/anya-blakedurn.md), and can her bargain to restore the Dwarven kingdoms be trusted? - What is the hole in [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), what pylons are needed to repair it, and why is Papa breaking dwarves as revenge? - What smoke or malevolent presence caused the Quartermaster and General's hopelessness, and is it the same as Blakedurn's black smoke incident or Mericok's smoke sphere? diff --git a/data/6-wiki/people/dirk.md b/data/6-wiki/people/dirk.md index dbf65cb..8c2f592 100644 --- a/data/6-wiki/people/dirk.md +++ b/data/6-wiki/people/dirk.md @@ -32,7 +32,7 @@ Dirk is a player character played by Laura M. He is one of the original party me - On Day 1, Dirk was present at the Cider Inn Cider when the party began investigating Everchard's missing pigs, missing people, and memory tampering. - Day 1 also records Dirk seeing a rat around the time an unidentified fifth human warrior vanished from memory. - Dirk often consults ancestors for guidance, including asking what would happen if the party released the Valentinhide-like figure and whether the party could defeat Browning as they were. -- Dirk's family and people are recurring concerns: Dirk Sr told Dirk to see his sister Ingris, and Bridget later said Dirk was on the path to free his people. +- Dirk's family and people are recurring concerns: Dirk Sr told Dirk to see his sister Ingris, and Bridged later said Dirk was on the path to free his people. - Dirk's path to freeing his people is now understood as the wider Goliath liberation and restoration arc: freeing Goliaths from dragon control, supporting Dirk Sr and [Anastasia](anastasia.md)'s resistance, reclaiming Ashkellon / the Goliath tower, restoring memories, and restoring the Sphinx protector stolen from the Goliaths. - The party freed Goliaths from tents and camps, learned of generations serving dragons, and supported Dirk Sr's plan to gather armies from Salvation. - In Ashkellon, the party helped the resistance, killed Emmeredge, triggered blessings that armed, shielded, and healed the Goliaths, and later coordinated with [Anastasia](anastasia.md) for a pincer movement against Vathkell. @@ -52,8 +52,8 @@ Dirk is a player character played by Laura M. He is one of the original party me - [Bynx](bynx.md) - [Globule](globule.md) - [Queen Mooncoral](queen-mooncoral.md) -- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Bridged's Doors](../concepts/bridgeds-doors.md) ## Open Questions -- What is the future fishing expedition Bridget warned him not to forget? +- What is the future fishing expedition Bridged warned him not to forget? diff --git a/data/6-wiki/people/dotharl.md b/data/6-wiki/people/dotharl.md index 6b92acd..1d9b7c9 100644 --- a/data/6-wiki/people/dotharl.md +++ b/data/6-wiki/people/dotharl.md @@ -24,7 +24,7 @@ sources: ## Summary -Dotharl, also recorded as Dothral and Dothril, is a player character played by Joshua. His history is tied to awakened constructs, Bridget, Squeall, and elemental-prison lore. +Dotharl, also recorded as Dothral and Dothril, is a player character played by Joshua. His history is tied to awakened constructs, Bridged, Squeall, and elemental-prison lore. ## Known Details @@ -33,14 +33,14 @@ Dotharl, also recorded as Dothral and Dothril, is a player character played by J - Day 47 records Dothral recognizing Hartwall lab architecture, encountering Dothral automatons, and being called the door guard for a prison. - Sunsoreen's court did not want to question Dotharl because they did not question machines, but questions appeared anyway: "Help me, Grandson." - Day 52 says Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. -- Bridget said part of Dotharl was Bridget and framed a future choice: Dotharl could keep his humanity or rejoin Bridget's realm. +- Bridged said part of Dotharl was Bridged and framed a future choice: Dotharl could keep his humanity or rejoin Bridged's realm. - Day 55 gives Dotharl a warning dream involving a glass dome, a blue-eyed figure, a green-eyed woman, her hurt friend, her hostile brother, and possible Envy. - Day 56 uses Dotharl, through Hracency's death and Rubyeye's eye, to locate Rubyeye and Cardinal. - Day 57 records Dotharl entering paintings, casting See Invisibility, and being one of the named jumpers into the death realm. ## Related Entries -- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Bridged's Doors](../concepts/bridgeds-doors.md) - [Sunsoreen / Snowsorrow](../places/sunsoreen.md) - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) - [Valentinhide / Valentenhule](valentinhide.md) @@ -49,6 +49,6 @@ Dotharl, also recorded as Dothral and Dothril, is a player character played by J ## Open Questions - Is Dotharl's father Aneurascarle, and is Squeall truly his grandfather? -- What does it mean that part of Dotharl is Bridget? +- What does it mean that part of Dotharl is Bridged? - Who is the voice offering to free Dotharl from mortals? - What is the meaning of Dotharl's Day 55 dome dream? diff --git a/data/6-wiki/people/geldrin.md b/data/6-wiki/people/geldrin.md index 6b7052d..99e358a 100644 --- a/data/6-wiki/people/geldrin.md +++ b/data/6-wiki/people/geldrin.md @@ -29,7 +29,7 @@ Geldrin, also called Geldrin the Mighty, is a player character played by Shaun. - Geldrin bought a compass box that pointed to Bug Hunter. - Geldrin has repeatedly interacted with unusual books and spellbooks, including Enwi's spellbook, the skin book, and his own spellbook showing Perodita. - Day 47 records Geldrin promising to return and free a massive shaggy blue aurora once he learned how to power the dome without all the elementals. -- In Bridget's Day 52 pathway, Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. +- In Bridged's Day 52 pathway, Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. - On Day 57, Geldrin received a Scroll of Fireball, gave Attabre a book, and made a dangerous bargain with Sultan Azar Nuri for the fire-realm tongs. ## Related Entries @@ -39,7 +39,7 @@ Geldrin, also called Geldrin the Mighty, is a player character played by Shaun. - [Ennuyé](ennuyé.md) - [Peridita](peridita.md) - [Azar Nuri](azar-nuri.md) -- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Bridged's Doors](../concepts/bridgeds-doors.md) ## Open Questions diff --git a/data/6-wiki/people/invar.md b/data/6-wiki/people/invar.md index ff845ca..bd65098 100644 --- a/data/6-wiki/people/invar.md +++ b/data/6-wiki/people/invar.md @@ -27,15 +27,15 @@ Invar is a player character played by Bas. He is one of the original party membe - On Day 1, Invar had delivered weapons to Everchard before the party discovered the militia and memory problems. - Invar briefly remembered Gelissa during the Everchard memory tampering. - Day 47 records Invar hearing, amid mind fog, "I will not lose you again my son." -- In Bridget's Day 52 pathway, Invar's route was paired with Morgana's; his room involved a cricket, raven, and gruel. -- Bridget described Invar as a man of faith only beginning to learn it and said he needed to give someone a crystal, the one Geldrin lost, and use it if they returned to his city. +- In Bridged's Day 52 pathway, Invar's route was paired with Morgana's; his room involved a cricket, raven, and gruel. +- Bridged described Invar as a man of faith only beginning to learn it and said he needed to give someone a crystal, the one Geldrin lost, and use it if they returned to his city. - On Day 57, Invar's magic did not work in the Earth-plane space until Haze made Counterspell work, and later Invar made a new case and repaired a plinth for the offering bowl. ## Related Entries - [Morgana](morgana.md) - [Geldrin](geldrin.md) -- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Bridged's Doors](../concepts/bridgeds-doors.md) - [Brass City](../places/brass-city.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-days-36-40-41.md b/data/6-wiki/people/minor-figures-days-36-40-41.md index 8d61ce6..7a32e9a 100644 --- a/data/6-wiki/people/minor-figures-days-36-40-41.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -30,7 +30,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Half-elf with rounded ears / Drunken Duck barkeep | Came to Mercy's place and asked for Jelly Fish Broach favour. | [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) and rollup. | | Human in snowy room, man from auction/private pictures, black snowflake guards | Grand Towers / Icefang vision figures. | [Grand Towers](../places/grand-towers.md), [Icefang](icefang.md). | | Gazzy and Gideone | Chair / old-man Grand Towers vision details. | Rollup. | -| Arik Bellburn | Bridget clergyman in Bellburn. | Rollup and [Bridget's Doors](../concepts/bridgets-doors.md). | +| Arik Bellburn | Bridged clergyman in Bellburn. | Rollup and [Bridged's Doors](../concepts/bridgeds-doors.md). | | Grol | Found Dirk in Seaward after door travel. | Rollup. | | Noxia, Arile, Otasha, Ennik, Leptrop | Divine bargain figures. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Sheriff Fathrabit / Lady Fat Rabbit / Lady [rabbit] | Hartwall/Hartwall authority and envoy references. | Rollup; variant preserved. | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index e65b3be..85c6a26 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -23,7 +23,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Badger | Baby hidden in linen basket; proposed name `Badger born in freedom`. | NPC Status and rollup. | | Anastasia | Goliath queen lady; gave Dirk Ennuyé's fifth ring, coordinated resistance, and has an important relationship with Dirk. | Standalone [Anastasia](anastasia.md) and status. | | Pengalis | Named on Goliath coin as Domain of Pengalis. | Places/items rollups; identity unresolved. | -| Sefu, Holdhum, Tor, Attabo, El [uncertain: corna] / Bridge, Seara, Scorcher, [uncertain: Shielded armel] | Goliathified god statues and offering responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md); gods rollup via [Gods' Bargains](../concepts/gods-bargains-behind-the-barrier.md). | +| Sefu, Holdhum, Tor, Attabo, El [uncertain: corna] / Bridged, Seara, Scorcher, [uncertain: Shielded armel] | Goliathified god statues and offering responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md); gods rollup via [Gods' Bargains](../concepts/gods-bargains-behind-the-barrier.md). | | Igraine, [uncertain: Adilth], elderly human man, dwarf man, pregnant elven woman | White-roses cider vision figures. | Rollup/open thread. | | Warriors of the Lion and Dunemin | Dedication on hidden Benu / Garadul picture. | Rollup/open thread. | | Lute | Seen in Stitcher smoke image with Ruby Eye about cloaks and hot hands. | Existing [Luth](luth.md) uncertain; not merged. | diff --git a/data/6-wiki/people/minor-figures-days-48-52.md b/data/6-wiki/people/minor-figures-days-48-52.md index 860409e..3be629b 100644 --- a/data/6-wiki/people/minor-figures-days-48-52.md +++ b/data/6-wiki/people/minor-figures-days-48-52.md @@ -35,10 +35,10 @@ This rollup preserves named and name-like figures from Days 48 and 52 that do no | Simon | 48 | Pieced-together figure with Stoven and Stuart; wanted Valentinhide and communicated with Throngore. | Rollup. | | Stoven and Stuart | 48 | Former prisoners released about twenty years after imprisonment; arrived with Simon. | Rollup. | | Squeall / Squeal | 52 | God of the lost / possible grandfather in Dothral's family thread. | Rollup / open thread. | -| Cedric | 52 | Cricket-headed follower of Bridget who handled waiting, gruel, doors, and later ate gruel like ambrosia. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Medinner | 52 | Bridget follower whose show reenacted Eliana/Avalina and a robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Raven-headed lady | 52 | Told Dotharl to go away and emphasized choice. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Bridget's husband | 52 | Likes lucky fortune, weather, change, and loss. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Cedric | 52 | Cricket-headed follower of Bridged who handled waiting, gruel, doors, and later ate gruel like ambrosia. | [Bridged's Doors](../concepts/bridgeds-doors.md). | +| Medinner | 52 | Bridged follower whose show reenacted Eliana/Avalina and a robot/copper dragonborn rising. | [Bridged's Doors](../concepts/bridgeds-doors.md). | +| Raven-headed lady | 52 | Told Dotharl to go away and emphasized choice. | [Bridged's Doors](../concepts/bridgeds-doors.md). | +| Bridged's husband | 52 | Likes lucky fortune, weather, change, and loss. | [Bridged's Doors](../concepts/bridgeds-doors.md). | ## Open Questions diff --git a/data/6-wiki/people/minor-figures-days-53-56.md b/data/6-wiki/people/minor-figures-days-53-56.md index 1410218..0400428 100644 --- a/data/6-wiki/people/minor-figures-days-53-56.md +++ b/data/6-wiki/people/minor-figures-days-53-56.md @@ -20,7 +20,7 @@ sources: - Elementals' mother: entity or authority to whom approximately 100 coins were offered to prevent elementals attacking on Day 54. - Green-eyed woman in Dotharl's dream: woke and helped Dotharl inside the glass dome; had an injured friend, a hostile brother, and possibly a new friend, Envy. - No-Hurt: entity Morgana tried to speak with; it had spread everywhere and killed things. -- Blackthorn: remembered by Invar as someone not allowed to free his friend because it was a trick; Bridget allowed the trap because she found it funny. +- Blackthorn: remembered by Invar as someone not allowed to free his friend because it was a trick; Bridged allowed the trap because she found it funny. - [Mericok](mericok.md): god or possessing entity replacing the High Priest at Papa Marmaru; one of the eight beings imprisoned to power the Barrier; appeared under Greater Restoration as a smoke sphere with spidery legs and a human-like face. - [Papa Marmaru](papa-marmaru.md): raspy-voiced figure and one of the eight beings imprisoned to power the Barrier; warned not to trust Mericok, said Marmaru had chosen to be there, and looked after the dwarves. - Humility fragments: twenty-seven beings in the Grand Towers control area, parts of Thomas removed so he could become Envy. diff --git a/data/6-wiki/people/morgana.md b/data/6-wiki/people/morgana.md index 8db7d9c..ca42701 100644 --- a/data/6-wiki/people/morgana.md +++ b/data/6-wiki/people/morgana.md @@ -35,7 +35,7 @@ Morgana is a human player character played by Laura R. She was sent by The Choru - Day 35 has Morgana scouting as a spider, bribing or attempting to bribe guards, sensing movement, stopping carts with thorns, killing llamia with a cart wheel, and trying to wake Elementarium with a kiss. - The attempted kiss felt forced and gave Morgana a vision of a laughing female dragon, possibly the Peridot Queen. - Day 46 shows Morgana's bee scouting, infinite-library vision, and Chorus magpie guidance. -- Bridget's Day 52 pathway framed Morgana's choice to help the party as costly, with those who sought to train her also coming at great cost. +- Bridged's Day 52 pathway framed Morgana's choice to help the party as costly, with those who sought to train her also coming at great cost. - Day 57 tied Morgana to Igraine, Mourning, Bruce, animal/bird channeling, and a future-looking image of Morgana with Igraine over small-dragon bones. ## Related Entries diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index b973bbf..6fef505 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -40,7 +40,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. - Day 40 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. - Day 41 names Perodita in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. -- Day 42 council history said the Goliath Empire killed Perodita's parents and built a city on their bones; Perodita later headed toward Hartwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. +- Day 42 council history said the Goliath Empire killed Perodita's parents and built a city on their bones; Perodita later headed toward Hartwall and vanished there after Bridged agreed to help free her if the party agreed to release Valentenhide under the god rule. - Galimma's dragon-family information preserves Perodita's children or related dragons with uncertain names and locations. - Day 43 says Lady Elissa Hartwall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. - Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. @@ -60,7 +60,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - How did Peridita's split from Infestus and her relationship with Lortesh shape the Green Dragons and later dragon plots? - Is the laughing female dragon / Peridot Queen vision connected to Peridita, or is it a separate dragon figure? - Are Perodita, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? -- What does freeing Perodita require from Bridge, and what does releasing Valentenhide under the god rule cost? +- What does freeing Perodita require from Bridged, and what does releasing Valentenhide under the god rule cost? - Why does Perodita want flesh-crafting wands? - Why did Perodita pressure Verdigrim to kill the party, and what would she stop doing if he obeyed? - What remains of Perodita after the Day 55 death, Noxia essence release, and retained ooze barrel? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 1ae3069..7bc5a3d 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -65,7 +65,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Lady Yadreya Egrine](lady-yadreya-egrine.md) | rescued | `data/4-days-cleaned/day-35.md` | Baroness of Riversmeet; recognized the ear grubs from her menagerie. | | Invar | curse memory partly restored | `data/4-days-cleaned/day-36.md` | Remembered he knew remove curse; bracelet fell off his wrist; still did not remember being kidnapped. | | [Lady Elissa Hartwall](lady-elissa-hartwall.md) | active in battle | `data/4-days-cleaned/day-36.md` | She transformed and later fought at Highden. | -| Arik Bellburn | injured then healed | `data/4-days-cleaned/day-36.md` | Bridget clergyman in Bellburn. | +| Arik Bellburn | injured then healed | `data/4-days-cleaned/day-36.md` | Bridged clergyman in Bellburn. | | Greysock Soulspindle | reincarnated as elf | `data/4-days-cleaned/day-41.md` | Elderly gnome cobbler changed after battle; Captain Sprat fetched clothes. | | Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-41.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | | Joel / revived dwarf | revived, ran home | `data/4-days-cleaned/day-41.md` | Ticking female stabbed Joel through; after the fight the dwarf was revived. | diff --git a/data/6-wiki/people/valentinhide.md b/data/6-wiki/people/valentinhide.md index ef5876f..84e2691 100644 --- a/data/6-wiki/people/valentinhide.md +++ b/data/6-wiki/people/valentinhide.md @@ -9,7 +9,7 @@ aliases: - Valentenhide - Valentenhule - Valententide - - Bridge's sister + - Bridged's sister - the featureless woman first_seen: day-30 last_updated: user-clarification @@ -29,13 +29,13 @@ sources: ## Summary -Valentinhide, also recorded as Valententhide, Valentenhule, Valentinheide, or Valentenshide, is one of the eight beings imprisoned to power the Barrier. She is a high-sky or dark-sky figure tied to betrayal, lethal gaze warnings, Hannah's erasure, Bright, Bridge, and the old mage-school expedition. This page keeps her separate from [Valenth Cardonald](valenth-cardonald.md) because the identity merge is unresolved. +Valentinhide, also recorded as Valententhide, Valentenhule, Valentinheide, or Valentenshide, is one of the eight beings imprisoned to power the Barrier. She is a high-sky or dark-sky figure tied to betrayal, lethal gaze warnings, Hannah's erasure, Bright, Bridged, and the old mage-school expedition. This page keeps her separate from [Valenth Cardonald](valenth-cardonald.md) because the identity merge is unresolved. ## Known Details - Day 32 preserved `Valentinhide's Betrayal` and skull visions of a featherless female associated with Throngore and darkness. - Valentinhide is one of the eight beings imprisoned to power the Barrier. -- On `day-42`, a ring voice addressed Invar as wearing `the ring of the betrayer`, and Bleakstorm described Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. +- On `day-42`, a ring voice addressed Invar as wearing `the ring of the betrayer`, and Bleakstorm described Bridged's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. - On `day-43`, the Benu book and scroll warnings preserved `One more glance a death dance`, `one brief look last breath Took`, `In her stare Bones laid bare`, and `In her gaze the end of days`. - On `day-44`, Geldrin saw Valentinhide killing Emi's wife, and Tale of Two Sisters described Bright as the low sky and Valentenhule as the high sky whose position caused the void to open. - Valentinhide held Hannah, said Bright had shown the party too much, and said Hannah had been wiped from time and space. @@ -46,14 +46,14 @@ Valentinhide, also recorded as Valententhide, Valentenhule, Valentinheide, or Va - On `day-48`, a featureless figure in a prison dome said it was no one, lost, once part of Valentinhide, and that Thomas put it there and took what was there. It linked the elemental planes, pacts, world creation, the Vessel of Divinity, gods, and lostness. - The same Day 48 figure answered Eliana's question about why everyone thought they were a Hartwall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. - On `day-52`, a night-sky-serenity part of Valentinhide was described as a small shard of a powerful creature. Reuniting it would soften Valentinhide into a goddess of destruction rather than a mindless road-murdering force. -- Bridget would take the gold Valentinhide, smash the orb, and release her to Bridget. +- Bridged would take the gold Valentinhide, smash the orb, and release her to Bridged. - On `day-56`, Valentinhide appeared reflected in Invar's armour, and a tapestry showed five wizards plus an invisible Hannah Joy-like woman whom Dotharl could not see because he knew she existed. - The Grand Towers control room had Valentinhide's statue attack Dotharl, Valentinhide's prison unlit, and later a Valentinhide-related display showing an Attabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Lady Evalina Hartwall / Mama Hartwall. ## Related Entries - [Valenth Cardonald](valenth-cardonald.md) -- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Bridged's Doors](../concepts/bridgeds-doors.md) - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) - [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) - [Minor Places from Day 47](../places/minor-places-day-47.md) @@ -61,14 +61,14 @@ Valentinhide, also recorded as Valententhide, Valentenhule, Valentinheide, or Va ## Open Questions -- Is Valentinhide Bridge's sister, Bright's sister, the high-sky queen, a prison entity, or several confused accounts? +- Is Valentinhide Bridged's sister, Bright's sister, the high-sky queen, a prison entity, or several confused accounts? - How did she kill Emi's wife, and what did Ruby Eye know about it? - Why was Hannah visible if she was wiped from time and space? - What are the faces in her deep-sky palace walls, and what does it mean that she does not have them? - How did she avoid the gods' banishment, and is her house connected to Hartwall's portal network? - What did Thomas remove when he put the lost part of Valentinhide into the dome? - Why did Joy say this figure took her mum, and why did the ancestors still approve releasing it? -- What does the `gold Valentinhide` orb contain, and what would Bridget do with it? +- What does the `gold Valentinhide` orb contain, and what would Bridged do with it? - Why did Valentinhide appear through Invar's armour, and what does the Hannah-like invisible woman in the wizard tapestry imply? - What does the Attabre symbol on Valentinhide's deactivated prison indicate? - Who are the `daughters` and Lady Evalina Hartwall / Mama Hartwall in the replacements' comments? diff --git a/data/6-wiki/places/bleakstorm.md b/data/6-wiki/places/bleakstorm.md index 7a9ad88..73fe8ec 100644 --- a/data/6-wiki/places/bleakstorm.md +++ b/data/6-wiki/places/bleakstorm.md @@ -25,7 +25,7 @@ Bleakstorm is both a cursed/blessed castle location and the title or identity of - On `day-42`, the party teleported to Bleakstorm castle, where blizzards, ice elementals, portraits, a time-detecting device, and a half-elf from Everdard were present. - The device detected time and noted Dirk was missing a day. - Bleakstorm said he could send people back in time at a cost, could not see Ruby Eye, and warned about difficult trips outside the Barrier. -- He reported Perodita heading to Hartwall, Garadul growing stronger at Gravel Basers, and Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. +- He reported Perodita heading to Hartwall, Garadul growing stronger at Gravel Basers, and Bridged's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. - On `day-44`, Lord Bleakstorm appeared as a history teacher in the old mage school and taught about Bright, Valentenhule, Great Farmouth, and gnomes. - `Lord of Bleakstorm and the Gnomes` says Bleakstorm connected gnomes, merfolk, Great Farmouth, and possible gnomish Grand Towers technology. diff --git a/data/6-wiki/places/brookville-springs.md b/data/6-wiki/places/brookville-springs.md index 4909a72..537f67e 100644 --- a/data/6-wiki/places/brookville-springs.md +++ b/data/6-wiki/places/brookville-springs.md @@ -2,8 +2,8 @@ title: Brookville Springs type: place aliases: - - Bridge Statue - - Statue of Bridge + - Bridged Statue + - Statue of Bridged first_seen: day-36 last_updated: day-36 sources: @@ -14,11 +14,11 @@ sources: ## Summary -Brookville Springs is a town tied to Bridget's statue, Hazy Days, The Guilt, Seneshell, Mercy, Grand Towers access, and a wave of purple explosions after Pride was consumed by Garadul. +Brookville Springs is a town tied to Bridged's statue, Hazy Days, The Guilt, Seneshell, Mercy, Grand Towers access, and a wave of purple explosions after Pride was consumed by Garadul. ## Known Details -- The Bridge Statue / Statue of Bridge stood outside town as a female-shaped statue with palms up; a copper piece lay nearby. +- The Bridged Statue / Statue of Bridged stood outside town as a female-shaped statue with palms up; a copper piece lay nearby. - On `day-36`, Brookville Springs was on high alert after purple explosions across human buildings, brothels, the guard house, possible golems, and at least one human. - The town leader vanished on the bang night, and Geldrin found no golems in town. - Hazy Days staff said The Guilt had disappeared on the night of the Trimoons; Seneshell was running the place. @@ -31,7 +31,7 @@ Brookville Springs is a town tied to Bridget's statue, Hazy Days, The Guilt, Sen - [Excellences](../concepts/excellences.md) - [Garadul](../people/garadul.md) - [Dollarmen](../factions/dollarmen.md) -- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Bridged's Doors](../concepts/bridgeds-doors.md) ## Open Questions diff --git a/data/6-wiki/places/magstein-grimcrag.md b/data/6-wiki/places/magstein-grimcrag.md index 792a8e2..782966d 100644 --- a/data/6-wiki/places/magstein-grimcrag.md +++ b/data/6-wiki/places/magstein-grimcrag.md @@ -23,7 +23,7 @@ Magstein and Grimcrag are dwarven locations tied to Papa Illmarne's dome, Perodi ## Known Details -- On `day-53`, the party returned from Bridget's domain to the dwarf city near Papa Illmarne's dome, where they were accused of liberating a prisoner. +- On `day-53`, the party returned from Bridged's domain to the dwarf city near Papa Illmarne's dome, where they were accused of liberating a prisoner. - The dwarven council included High Priest King Calthid Metalshaper, General Tussil Pebblegrinder, Advocate Trinchel Rhinebeard, Ambassador Grunged Thundersinger, and Guild Mistress Anya Blakedurn. - The army roll call counted 1,017 soldiers, but supplies were poor: no water, much wine, one day of food, and no weapons, arrows, or other supplies. - Morgana found the city damaged, with blood outside the door, then encountered a lone dwarf who became a llamia with ratmen companions. diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index a845048..a270093 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -12,12 +12,12 @@ sources: | Place | Context | Outcome | |---|---|---| | Huthnall | Rescuees' return destination. | Rollup. | -| Seaward betting temple of Bridget | Bridget temple where people take bets. | [Bridget's Doors](../concepts/bridgets-doors.md), existing [Seaward](seaward.md). | +| Seaward betting temple of Bridged | Bridged temple where people take bets. | [Bridged's Doors](../concepts/bridgeds-doors.md), existing [Seaward](seaward.md). | | Claymeadow | Message reported explosions, Newgate doppel/imposter, broken Bird. | Open thread / rollup. | | Hazy Days | Brookville Springs establishment run by Seneshell. | [Brookville Springs](brookville-springs.md). | | Envy's lab | Dangerous chest comparison. | [Excellences](../concepts/excellences.md) / rollup. | | Mercy's place, Drunken Duck, Grand Towers passage, broom cupboard, floor 65, floor 74, floor 98 | Grand Towers access route and sites. | [Brookville Springs](brookville-springs.md), [Grand Towers](grand-towers.md). | -| Bellburn, early Bridget-like church, Bellburn courtyard and tower | Outside-dome Bridget/goliath town and Hartwall fight area. | [Bridget's Doors](../concepts/bridgets-doors.md) / rollup. | +| Bellburn, early Bridged-like church, Bellburn courtyard and tower | Outside-dome Bridged/goliath town and Hartwall fight area. | [Bridged's Doors](../concepts/bridgeds-doors.md) / rollup. | | Hartwall / Hartwall castle gates and courtyard | Hartwall transformation and recovery. | [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md). | | Stone Rampart, pylon, bazaar | Day-36 war and travel points. | Rollup. | | Valenthielles prison rooms | Seamless teleport room, middle door, dark corridor, smoky prison room. | [Valenthielles Prison](valenthielles-prison.md). | diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md index 60adf5b..6e1c262 100644 --- a/data/6-wiki/places/minor-places-days-42-44.md +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -14,7 +14,7 @@ sources: | Council tent, Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, [uncertain: Tazer], [uncertain: Gugghut] | Day-42 planning and dragon-family geography. | Rollup; [Ashkellon](ashkellon.md), [Peridita](../people/peridita.md). | | Ashkellon throne room, wash room, resistance building, soft tower, skull-arched room, statue room, prison rooms, Noxia chamber, treasure hall, observatory room | Major Ashkellon tower sites. | [Ashkellon](ashkellon.md). | | Domain of Pengalis, Dunemin, Pentacity slates, sea gap, Shousorrow, Snowsorrow, Fire, great tower, Gravel Basers | Historical and map locations from Ashkellon. | Rollup/open threads. | -| Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Hartwall, Emmerane | Day-42 time/Bridge/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | +| Bleakstorm castle, Everdard, invisible walkway, clouds / Bridged encounter, Hartwall, Emmerane | Day-42 time/Bridged/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | | Goldenswell, Pine Springs, Hartwall, 11th Duke of Hartwall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Hartwall locations. | Rollup/open threads. | | Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise | Tomes about places the tomes had only just discovered. | Rollup/open threads; [Ashkellon](ashkellon.md) is also in this list as Goliath City. | | Grincray / Grim & Cray, Mashir, lake of Papa Marmaru, rear Ironcroft air site, Claymeadow, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | diff --git a/data/6-wiki/places/minor-places-days-48-52.md b/data/6-wiki/places/minor-places-days-48-52.md index 2654a7a..c234cd3 100644 --- a/data/6-wiki/places/minor-places-days-48-52.md +++ b/data/6-wiki/places/minor-places-days-48-52.md @@ -27,11 +27,11 @@ sources: | Morgana's `[coded]` teleport circle | 48 | Wood with bees, apples, snow, furs, rugs, and bird poo; uncertain Geldrin/Morgana memory. | Rollup. | | Morgana's hut | 48 | Reached at 00:00, end of complete Day 48 span. | Rollup. | | Stonedown | 52 | Day 52 starting location. | Rollup. | -| Bridget's domain / pathway | 52 | Linked-path trial where party members split, solved rooms, and met Bridget's followers. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Invar's cricket/raven/gruel room | 52 | Honour puzzle with cricket, raven, and bowl. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Medinner's show space | 52 | Reenacted Eliana, Avalina, burial, rooted woman, and robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Bridged's domain / pathway | 52 | Linked-path trial where party members split, solved rooms, and met Bridged's followers. | [Bridged's Doors](../concepts/bridgeds-doors.md). | +| Invar's cricket/raven/gruel room | 52 | Honour puzzle with cricket, raven, and bowl. | [Bridged's Doors](../concepts/bridgeds-doors.md). | +| Medinner's show space | 52 | Reenacted Eliana, Avalina, burial, rooted woman, and robot/copper dragonborn rising. | [Bridged's Doors](../concepts/bridgeds-doors.md). | | Chessboard space | 52 | Dice/card puzzle moved Geldrin and Dirk; lights appeared on a 20-square board. | Rollup. | -| Darker-sky realm and storm | 52 | Bouncy-castle-feeling space where party moved by intent and Dotharl heard the tempting voice. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Darker-sky realm and storm | 52 | Bouncy-castle-feeling space where party moved by intent and Dotharl heard the tempting voice. | [Bridged's Doors](../concepts/bridgeds-doors.md). | | Snowsoreen / order city | 52 | Named in questions about a trapped being and order. | [Sunsoreen / Snowsorrow](sunsoreen.md). | ## Open Questions diff --git a/data/6-wiki/places/minor-places-days-53-56.md b/data/6-wiki/places/minor-places-days-53-56.md index b54df30..3584dbc 100644 --- a/data/6-wiki/places/minor-places-days-53-56.md +++ b/data/6-wiki/places/minor-places-days-53-56.md @@ -10,7 +10,7 @@ sources: # Minor Places from Days 53-56 -- Bridget's domain return point: route that sent the party back near Papa Illmarne's dome at the start of Day 53. +- Bridged's domain return point: route that sent the party back near Papa Illmarne's dome at the start of Day 53. - Dwarven council chamber: room where Calthid Metalshaper, Tussil Pebblegrinder, Trinchel Rhinebeard, Grunged Thundersinger, and Anya Blakedurn heard the party. - Blakedurn's house: oddly repaired house with Sierra and Dunnen styling, where Blakedurn confessed she was a black dragon. - Damaged city door: city approach with blood outside and building damage where Morgana found a lone dwarf / llamia. diff --git a/data/6-wiki/places/riversmeet.md b/data/6-wiki/places/riversmeet.md index 76ede13..a61f832 100644 --- a/data/6-wiki/places/riversmeet.md +++ b/data/6-wiki/places/riversmeet.md @@ -31,4 +31,4 @@ Riversmeet is a mapped city west of Grand Towers, tied to old mage-school histor - [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md) - [Grand Towers](grand-towers.md) -- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Bridged's Doors](../concepts/bridgeds-doors.md) diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 80ffd57..93241a7 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -84,7 +84,7 @@ sources: - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Everard Browning](people/everard-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Lam](people/lam.md), [Sierra](people/sierra.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Envy](people/envy.md), [Pride](people/pride.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Pride](people/pride.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadul](people/garadul.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridged's Doors](concepts/bridgeds-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Pride](people/pride.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadul](people/garadul.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadul](people/garadul.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Noxia](people/noxia.md), [Sierra](people/sierra.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). @@ -93,7 +93,7 @@ sources: - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Void Spheres](items/void-spheres.md), [Garadul](people/garadul.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Sierra](people/sierra.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Garadul](people/garadul.md), [Joy](people/joy.md), [Sierra](people/sierra.md), [Sierra's Arrows](items/sierras-arrows.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). - `data/4-days-cleaned/day-48.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). -- `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). +- `data/4-days-cleaned/day-52.md`: [Bridged's Doors](concepts/bridgeds-doors.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index e8cfce7..62826a0 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -95,8 +95,8 @@ sources: - `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre.md) as his father, [Anadreste](people/anadreste.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valentinhide](people/valentinhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. - `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing [Pride](people/pride.md), explores a dwarven prison tied to Throngore and a lost part of [Valentinhide](people/valentinhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. -- `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valentinhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. -- `day-53`: Bridget sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. +- `day-52`: At Stonedown and in [Bridged's Doors](concepts/bridgeds-doors.md) / Bridged's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valentinhide shard to Bridged, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. +- `day-53`: Bridged sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. - `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. - `day-55`: The party fights through Magstein / Grimcrag, learns Mericok has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. - `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become [Envy](people/envy.md), confronts Justicars and [Everard Browning](people/everard-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. -
7614ff5Dome Creationby Laura Mostert
data/6-wiki/concepts/barrier.md | 5 +++-- data/6-wiki/open-threads.md | 2 +- data/6-wiki/people/brutor-ruby-eye.md | 7 ++++--- "data/6-wiki/people/ennuy\303\251.md" | 6 ++++-- data/6-wiki/people/everard-browning.md | 8 +++++--- data/6-wiki/people/lady-evalina-hartwall.md | 6 ++++-- data/6-wiki/people/original-goliath-sphinx.md | 6 ++++-- data/6-wiki/people/valenth-cardonald.md | 4 +++- data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md | 6 ++++-- 9 files changed, 32 insertions(+), 18 deletions(-)Show diff
diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index c26b0c2..31f5d74 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -38,6 +38,7 @@ sources: - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md - data/5-retrospective/day-46-original-goliath-sphinx.md + - user clarification --- # Barrier @@ -49,7 +50,7 @@ The Barrier is the central protective shield, dome, or containment system around ## Known Details - A state charter required sufficient militia near the Barrier. -- It was created by five figures including [Ennuyé](../people/ennuyé.md), with [Brutor Ruby Eye](../people/brutor-ruby-eye.md) heavily involved in containment and pylon plans. +- The Dome / Barrier was created by [Everard Browning](../people/everard-browning.md), [Ennuyé](../people/ennuyé.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Valenth Cardonald](../people/valenth-cardonald.md), and [Lady Evalina Hartwall](../people/lady-evalina-hartwall.md). - It depends on eight imprisoned beings: [Valentinhide](../people/valentinhide.md), [Anorazorak](../people/anorazorak.md), [Garadul](../people/garadul.md), [Limusvita](../people/limusvita.md), [Salinus](../people/salinus.md), [Leedus](../people/leedus.md), [Mericok](../people/mericok.md), and [Papa Marmaru](../people/papa-marmaru.md). - Shield pylons and crystals regulate or focus it. - Attacks on it may speed the [Tri-moon Shard](../items/tri-moon-shard.md). @@ -113,4 +114,4 @@ The Barrier is the central protective shield, dome, or containment system around - Can the divine bargains be renegotiated without worsening infertility, barrier sickness, or prisoner exploitation? - What is the strategic consequence of the new Grand Towers Barrier? - Can the tiny hole revealed at Ashkellon be safely expanded, repaired, or used? -- Who altered the original Goliath Sphinx into the Dome-wide memory mechanism? +- Which of the Dome creators altered the original Goliath Sphinx into the Dome-wide memory mechanism, and did any of the others oppose it? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index a12f45e..e0403a6 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -169,7 +169,7 @@ sources: - Who are the Tarnished, what is Verdigren, and what is hidden fifteen miles below Tradesmells? - What is Metatous's incomplete soul, and why did Morgana's reincarnation produce Garadul instead? - What are Limos Vita, the mushroom organism, and the cat-horned flesh bag spreading mushroom pieces? -- Who stole and altered the [Original Goliath Sphinx](people/original-goliath-sphinx.md) when the Dome was created, and how exactly was it used to rewrite memories across the Dome? +- Which of the Dome creators stole and altered the [Original Goliath Sphinx](people/original-goliath-sphinx.md), did any of the other creators oppose it, and how exactly was it used to rewrite memories across the Dome? - Why is Amoursorate's orb scratched and unlit, and what does `look after my son` mean for Dotharl? - What did Squeal really mean by asking for `the loss of everything`, and why did a message saying `Bread & Circus` impersonate Rubyeye? - What did the lost ring remove from Dirk and Geldrin, and can compassion or curiosity be restored? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 20f2334..80afb86 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -24,17 +24,19 @@ sources: - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-56.md + - user clarification --- # Brutor Ruby Eye ## Summary -Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or analyst of the [Barrier](../concepts/barrier.md), containment, pylons, and prison lore. +Brutor Ruby Eye was a dwarf abjuration wizard of Tor and one of the five creators of the Dome / [Barrier](../concepts/barrier.md), with deep knowledge of containment, pylons, and prison lore. ## Known Details - His skull became a consulted source of lore and was transferred to the party. +- The Dome / Barrier was created by [Everard Browning](everard-browning.md), [Ennuyé](ennuyé.md), Brutor Ruby Eye, [Valenth Cardonald](valenth-cardonald.md), and [Lady Evalina Hartwall](lady-evalina-hartwall.md). - He identified [Garadul](garadul.md) as the only void they could find and one of eight whose escape would weaken the Barrier. - His laboratory contained pylon plans, memory orbs, void containment, museum artifacts, alarm systems keyed by blood or hand, and lore about the first crack. - He was described as powerful, possibly a demi-lich figure, and interested in immortality, runes, sacrifice, and containment. @@ -44,8 +46,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - He created his own prison-status readout using a humanized effigy of the spirit, runes, and links to the prison and prison runes. - Rubyeye described Grand Towers technology beneath the towers, the overseer controls, Valentinhide prison, and an automaton guard. - On day 30 Cardenald resurrected him from the skull; Rubyeye returned with glowing red eyes, made a beard, and helped gather Counterspell scrolls and orbs. -- On Day 32, Geldrin attuned to the skull and saw visions of Valentinhide, dragon fights, 629 AD, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, the Mother crater, Condennis Place, an underground dwarven city, the molten prison, Goldenswell prisoners, and a ruined Goliath City. -- The skull was linked to ascension to godhood, the daytime Tri-moon event, influence over the Barrier, and the ability to show visions, crush foes, let him pass, and smite foes only when nearby. +- On Day 32, Geldrin attuned to [Tremon's skull](../items/tremons-body-and-statue-artifacts.md), not Ruby Eye's skull, and saw visions linked to the Barrier and ascension lore. - On Day 36, Ruby Eye appeared still convalescing, travelled in the party's bag, and wanted the [Skull of Tremon](../items/tremons-body-and-statue-artifacts.md) because it helped with passage through the Barrier. - Day 36 revealed Ruby Eye's pact with [Wrath](wrath.md), made after he saw how much power Browning had through Pride; Ruby Eye later shouted Wrath back into his eye. - Ruby Eye explained that the Grand Towers trinkets were part of a bargain, that gods required favours, priest communication, and boons, and that Ennik and Browning made many deals. diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index 293d72e..eda7a7a 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -13,7 +13,7 @@ aliases: - The Mage - Visage Ennuyé first_seen: day-05 -last_updated: day-57 +last_updated: user-clarification sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -29,17 +29,19 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-57.md + - user clarification --- # Ennuyé ## Summary -Ennuyé, previously called Thomas in the old Riversmeet mage school, and later recorded as Envoi and uncertainly as Enoi or Enoin, was one of the figures who made the [Barrier](../concepts/barrier.md), Joy's father, and a source of containment tampering tied to the first crack. +Ennuyé, previously called Thomas in the old Riversmeet mage school, and later recorded as Envoi and uncertainly as Enoi or Enoin, was one of the five creators of the Dome / [Barrier](../concepts/barrier.md), Joy's father, and a source of containment tampering tied to the first crack. ## Known Details - He appears as a well-groomed tiefling in a picture holding a baby girl. +- The Dome / Barrier was created by [Everard Browning](everard-browning.md), Ennuyé, [Brutor Ruby Eye](brutor-ruby-eye.md), [Valenth Cardonald](valenth-cardonald.md), and [Lady Evalina Hartwall](lady-evalina-hartwall.md). - He is Joy's father. - Observatory clues connect him to Joy, moon observation, rings, and repeated attempts to bring Joy back. - Brutor's later lore says Ennuyé tampered with a containment device for his own means and that something happening to Ennuyé could have caused the first crack. diff --git a/data/6-wiki/people/everard-browning.md b/data/6-wiki/people/everard-browning.md index e279e5b..8ac2cfa 100644 --- a/data/6-wiki/people/everard-browning.md +++ b/data/6-wiki/people/everard-browning.md @@ -6,7 +6,7 @@ aliases: - Edward Browning - Everard first_seen: day-23 -last_updated: day-56 +last_updated: user-clarification sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md @@ -19,17 +19,19 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-56.md + - user clarification --- # Everard Browning ## Summary -Everard Browning, usually called Browning, is an ancient mage or engineer tied to automations, Grand Towers, the dome, laboratories, and hidden technical systems. +Everard Browning, usually called Browning, is an ancient mage or engineer and one of the five creators of the Dome / [Barrier](../concepts/barrier.md), tied to automations, Grand Towers, laboratories, and hidden technical systems. ## Known Details - Day 23 names Browning among the figures commemorated in the desert laboratory statue and later in paintings from 314 BD. +- The Dome / Barrier was created by Browning, [Ennuyé](ennuyé.md), [Brutor Ruby Eye](brutor-ruby-eye.md), [Valenth Cardonald](valenth-cardonald.md), and [Lady Evalina Hartwall](lady-evalina-hartwall.md). - The desert laboratory had automation construction manuals by Everard Browning, and the kitchen was said to have been made by Cardonal and Browning. - Browning allegedly spread the word that he died of old age so magisters and Justiciars could act as his proxy. - Day 28 connects Browning and Ennui to something beneath Grand Towers, possibly an advance in dome technology or a power source for the workshop. @@ -57,7 +59,7 @@ Everard Browning, usually called Browning, is an ancient mage or engineer tied t ## Open Questions - Is Browning alive, dead, hidden, or operating through proxies? -- What exactly did Browning and Ennui find or build under Grand Towers? +- What exactly did Browning, Ennuyé, Ruby Eye, Valenth Cardonald, and Lady Evalina Hartwall build under Grand Towers as part of the Dome / Barrier? - What was the peace treaty tied to clearing fishes from the Barrier? - Who is Skutey Galvin, and what was the Justicar impersonation? - What bargain did Browning make with Pride, and did he engineer Pride's consumption by Garadul? diff --git a/data/6-wiki/people/lady-evalina-hartwall.md b/data/6-wiki/people/lady-evalina-hartwall.md index 5424e3b..84f8409 100644 --- a/data/6-wiki/people/lady-evalina-hartwall.md +++ b/data/6-wiki/people/lady-evalina-hartwall.md @@ -8,24 +8,26 @@ aliases: - Miana - Avalina first_seen: day-36 -last_updated: day-57 +last_updated: user-clarification sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-56.md - data/4-days-cleaned/day-57.md + - user clarification --- # Lady Evalina Hartwall ## Summary -Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall family, Eliana's older identity threads, and the old wizard project around Hannah, Icefang, Envy, and the blue ball. +Lady Evalina Hartwall, also known as Mama Hartwall, is one of the five creators of the Dome / [Barrier](../concepts/barrier.md), tied to the Hartwall family, Eliana's older identity threads, and the old wizard project around Hannah, Icefang, Envy, and the blue ball. ## Known Details - Day 43 says Wroth trapped Envy in Mama Hartwall's head the same way Envy is in Ruby Eye's. +- The Dome / Barrier was created by [Everard Browning](everard-browning.md), [Ennuyé](ennuyé.md), [Brutor Ruby Eye](brutor-ruby-eye.md), [Valenth Cardonald](valenth-cardonald.md), and Lady Evalina Hartwall. - Day 36 has Ruby Eye and Carduneld say the party should talk to Mama Hartwall after recognizing memory tampering around Ruby Eye and Icefang. - On Day 36, Wrath impersonating Ruby Eye imprisoned Lady Evalina Hartwall with a silver dragon statue, then later claimed to remove the curse while lying about full recovery. - Day 44 has Eliana give the name Evalina Hartwall in the old school sequence; Miana / Lady Evalina was assigned Air. diff --git a/data/6-wiki/people/original-goliath-sphinx.md b/data/6-wiki/people/original-goliath-sphinx.md index d0430a0..f30b82b 100644 --- a/data/6-wiki/people/original-goliath-sphinx.md +++ b/data/6-wiki/people/original-goliath-sphinx.md @@ -7,10 +7,11 @@ aliases: - altered original Goliath Sphinx - 40-foot memory-destroying creature first_seen: day-46 -last_updated: day-46 +last_updated: user-clarification sources: - data/4-days-cleaned/day-46.md - data/5-retrospective/day-46-original-goliath-sphinx.md + - user clarification --- # Original Goliath Sphinx @@ -23,6 +24,7 @@ The original Goliath Sphinx was the Sphinx meant for the Goliaths, stolen and al - The creature behind the Day 46 orb-room warning was the original Sphinx meant for the Goliaths. - It had been stolen and altered long ago when the Dome was created. +- The Dome was created by [Everard Browning](everard-browning.md), [Ennuyé](ennuyé.md), [Brutor Ruby Eye](brutor-ruby-eye.md), [Valenth Cardonald](valenth-cardonald.md), and [Lady Evalina Hartwall](lady-evalina-hartwall.md). - It was used to alter the memories of everyone inside the Dome. - In the Menagerie / old mage school, it appeared as a forty-foot alien, squelchy creature with an anguished humanoid face. - [Mr Moreley](../places/riversmeet-menagerie-and-old-mage-school.md) was the spectral dragon holding the creature down. @@ -40,5 +42,5 @@ The original Goliath Sphinx was the Sphinx meant for the Goliaths, stolen and al ## Open Questions -- Who stole and altered the original Goliath Sphinx when the Dome was created? +- Which of the Dome creators stole and altered the original Goliath Sphinx, and did any of the others oppose it? - How much of the original Sphinx remains in Bynx after reincarnation? diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index 2a3af60..038c78d 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -23,17 +23,19 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - user clarification --- # Valenth Cardonald ## Summary -Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Freeport Baroness](freeport-baroness.md) and [Brutor Ruby Eye](brutor-ruby-eye.md)'s best friend, a mage connected to sentient-item work, automations, prison repair, and the desert laboratory. +Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Freeport Baroness](freeport-baroness.md), [Brutor Ruby Eye](brutor-ruby-eye.md)'s best friend, and one of the five creators of the Dome / [Barrier](../concepts/barrier.md), connected to sentient-item work, automations, prison repair, and the desert laboratory. ## Known Details - The Baroness knew Velenth/Valenth Cardonald and was shaken by revelations about her. +- The Dome / Barrier was created by [Everard Browning](everard-browning.md), [Ennuyé](ennuyé.md), [Brutor Ruby Eye](brutor-ruby-eye.md), Valenth Cardonald, and [Lady Evalina Hartwall](lady-evalina-hartwall.md). - Valenth wanted to transfer herself into an object. - Valenth Cardonald is the same person described as Ruby Eye's best friend who wanted to craft herself into something and continue in that form. - At the desert laboratory, Cardonal communicated through a copper astrolabe with a red gem after 907 years and later took over Silver's construct body when Silver was thrown into the Barrier. diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index 08fde11..e0847a7 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -8,12 +8,13 @@ aliases: - old mage school - mage school first_seen: day-35 -last_updated: day-46 +last_updated: user-clarification sources: - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md + - user clarification - data/5-retrospective/day-46-original-goliath-sphinx.md --- @@ -35,6 +36,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, Bynx as a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. - On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadul's reincarnation. - The school contained the [Original Goliath Sphinx](../people/original-goliath-sphinx.md), stolen and altered long ago when the Dome was created and used to alter memories across the Dome. +- The Dome was created by [Everard Browning](../people/everard-browning.md), [Ennuyé](../people/ennuyé.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Valenth Cardonald](../people/valenth-cardonald.md), and [Lady Evalina Hartwall](../people/lady-evalina-hartwall.md). - Mr Moreley was the spectral dragon holding the altered Sphinx down during the orb-room battle. - During the battle, an invisible entity escaped and made the party forget it, but the entity was defeated; the party's memories were restored after they protected a glowing thing in linked rooms. - Day 46 also connected the school to Riversmeet's current town-hall infiltration, because mind magic used by the infiltrators began malfunctioning after something happened at the school. @@ -54,5 +56,5 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - What are the eight spheres, and who created or hid them? - What happened to Hannah after being wiped from time and space? - What is the current state of the twenty wizards who locked down the Menagerie? -- Who stole and altered the original Goliath Sphinx when the Dome was created? +- Which of the Dome creators stole and altered the original Goliath Sphinx, and did any of the others oppose it? - What is the relationship between Willowispa, Mother, the Tarnished, and the hidden objects in the school? -
f13ae57Papa marmaruby Laura Mostert
data/2-pages/182.txt | 2 +- data/2-pages/184.txt | 2 +- data/3-days/day-43.md | 4 +-- data/4-days-cleaned/day-43.md | 20 ++++++------- data/6-wiki/aliases.md | 5 ++-- data/6-wiki/clues/days-42-44-coverage-audit.md | 4 +-- data/6-wiki/inventories/party-inventory.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 4 +-- data/6-wiki/open-threads.md | 2 +- data/6-wiki/people/anadreste.md | 4 +-- data/6-wiki/people/anorazorak.md | 4 +-- data/6-wiki/people/attabre.md | 2 +- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- data/6-wiki/people/papa-marmaru.md | 24 ++++++++++++--- data/6-wiki/people/papae-munera.md | 41 -------------------------- data/6-wiki/people/status.md | 2 +- data/6-wiki/places/minor-places-days-42-44.md | 2 +- data/6-wiki/sources.md | 2 +- data/6-wiki/timeline.md | 2 +- 19 files changed, 52 insertions(+), 78 deletions(-)Show diff
diff --git a/data/2-pages/182.txt b/data/2-pages/182.txt index 5ae3705..43c6c6d 100644 --- a/data/2-pages/182.txt +++ b/data/2-pages/182.txt @@ -20,7 +20,7 @@ Book written by Benu. & 5 books in total - Goldenswell, Snowsorrow, Dumnensend, Freeport & Hartwall -Ask book for location of papa e' mamara - just shows a blank page. +Ask book for location of Papa Marmaru - just shows a blank page. Lost dwarf civilisation 2nd came the dwarves first of tops & fire of diff --git a/data/2-pages/184.txt b/data/2-pages/184.txt index f793d3c..bb073b3 100644 --- a/data/2-pages/184.txt +++ b/data/2-pages/184.txt @@ -18,7 +18,7 @@ to go through the racks - & snake heads as eyes. doesn't respond to Morgana trying to speak to it. Speaks lots of languages. Been in the box for one min moon 300 days. -Icefang said we could release him - papa'e munera +Icefang said we could release him - Papa Marmaru just a part of him - knows where the rest of him is & will take us there to free him & [unrasorak] blessed by Anadreste diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index 0c40c15..4ebb8b7 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -139,7 +139,7 @@ Book written by Benu. & 5 books in total - Goldenswell, Snowsorrow, Dumnensend, Freeport & Hartwall -Ask book for location of papa e' mamara - just shows a blank page. +Ask book for location of Papa Marmaru - just shows a blank page. Lost dwarf civilisation 2nd came the dwarves first of tops & fire of @@ -212,7 +212,7 @@ to go through the racks - & snake heads as eyes. doesn't respond to Morgana trying to speak to it. Speaks lots of languages. Been in the box for one min moon 300 days. -Icefang said we could release him - papa'e munera +Icefang said we could release him - Papa Marmaru just a part of him - knows where the rest of him is & will take us there to free him & [unrasorak] blessed by Anadreste diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index 49ff509..b6cf2ae 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -29,7 +29,7 @@ A dwarf blacksmith pulled Invar aside and said it was good to see others lost ar A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown; the picture smudged, and the words said, "One more glance a death dance." Geldrin asked how to wake Trixus. The book showed Benu, Trixus, and Garadul, with two sphinxes behind them and the words "a family reunited" underneath. One sphinx was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath Took." He turned and saw a featureless woman, Valentinhide, reflected in Invar's armour, then collapsed to the floor. -The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall. When the party asked the book for the location of papa e' mamara, it showed only a blank page. The party also learned about lost dwarf civilisation: second came the dwarves, first of tops and fire of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Garadul with the name hidden on the page, and Trixus. Someone felt a hand on their hand, though nothing was there. The vulture man, or a force through him, said "in her stare Bones laid bare," though he did not remember speaking. +The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall. When the party asked the book for the location of Papa Marmaru, it showed only a blank page. The party also learned about lost dwarf civilisation: second came the dwarves, first of tops and fire of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Garadul with the name hidden on the page, and Trixus. Someone felt a hand on their hand, though nothing was there. The vulture man, or a force through him, said "in her stare Bones laid bare," though he did not remember speaking. The party asked what was on page two. The elements seemed to clash; a bright light rose from the page and left a black hole, while many different elements appeared and converged into the world the party knows. The last page showed "The End," then the repeated death-rhyme: "one more glance a death dance," "one brief look last breath Took," "In her stare Bones laid bare," and "in her gaze the end of days." The book slammed shut, which it had never done before. This reminded the party of Dumnensend and a children's poetry book. Morgana had the book whose last poem was that one; the second-to-last was a council meeting with plans to take out Valentinhide. @@ -37,7 +37,7 @@ The golden dragonborn searched for dwarven lost cities and found two books writt The dragonborn found a book on Hawthorn. Hawthorn was a botanist, and it was unclear why he wrote about dwarves or [uncertain: otres]. The biography was written by Ruby Eye but borrowed 94k, and Hawthorn was one of the first people who left, [uncertain: 90] years ago. He developed giant bees and winter-flowering plants, bred some animals at the Menagerie, created winter rose, and may have gifted a blossoming tree to Goldenswell. -The party returned to the castle to wait for the bird. They decided to open Invar's box. It contained a small black orb where lava stone went through the racks, and snake heads as eyes. It did not respond to Morgana's attempt to speak with it, but it spoke many languages. It said it had been in the box for one min moon, 300 days. Icefang said the party could release him. The name papa'e munera was given; the orb was only part of him. It knew where the rest of him was and would take the party there to free him and [uncertain: unrasorak]. It was blessed by Anadreste. Friends had extracted him from the lake. The dwarves had seen the errors of their ways and now wanted to release him. Ruby Eye was no longer welcome at the city, and the king there was pale-skinned with black dreads. +The party returned to the castle to wait for the bird. They decided to open Invar's box. It contained a small black orb where lava stone went through the racks, and snake heads as eyes. It did not respond to Morgana's attempt to speak with it, but it spoke many languages. It said it had been in the box for one min moon, 300 days. Icefang said the party could release him. The name Papa Marmaru was given; the orb was only part of him. It knew where the rest of him was and would take the party there to free him and [uncertain: unrasorak]. It was blessed by Anadreste. Friends had extracted him from the lake. The dwarves had seen the errors of their ways and now wanted to release him. Ruby Eye was no longer welcome at the city, and the king there was pale-skinned with black dreads. Shurling arrived. The Chorus knew where the entrance to Grincray was, but they needed to go through Mashir. The flesh-crafting wands were discussed; something was still out there stopping all of the lost knowledge from being retrieved. @@ -75,19 +75,19 @@ Cardonald gave Geldrin all of the teleportation circles: seven prisons with no d # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadul / Garadul / Garadul / Garadul, Valentinhide / Valentinhide, papa e' mamara / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadul / Garadul / Garadul / Garadul, Valentinhide / Valentinhide, Papa Marmaru, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. -Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snowsorrow, and the dwarves, Garadul's allies, Mother as Garadul's ally, mages trapped by Garadul, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. +Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted Papa Marmaru from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snowsorrow, and the dwarves, Garadul's allies, Mother as Garadul's ally, mages trapped by Garadul, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. -Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Snowsorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. +Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Snowsorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which Papa Marmaru was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. -Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snowsorrow, gold dragons, Benu, Trixus, Garadul, Perodita, Hephestos as a soul, and Morgana as a crow. +Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, Papa Marmaru as a black orb or fragment, dragonborn, the copper dragon from Snowsorrow, gold dragons, Benu, Trixus, Garadul, Perodita, Hephestos as a soul, and Morgana as a crow. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadul's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. +Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / Papa Marmaru fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadul's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. -Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentinhide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadul killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadul's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. +Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentinhide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, Papa Marmaru knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadul killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadul's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for waking or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadul's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine of Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, labs, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashkhellon, and pylons. @@ -103,11 +103,11 @@ The scroll phrase "In her gaze, End of Days" joined the Benu book's warnings: "O The auction house receipt for a massive moth picture frame, the wizard-piece chess board, and the rook resembling [uncertain: brakemen] are unexplained but may be clues. -The dwarf blacksmith gave Invar the glowing box for reasons beyond selling wares. The black orb inside identified itself as part of papa'e munera and wanted to reunite with the rest of itself and [uncertain: unrasorak]. Its blessing by Anadreste, extraction from the lake, and connection to dwarves who changed their minds remain unresolved. +The dwarf blacksmith gave Invar the glowing box for reasons beyond selling wares. The black orb inside identified itself as part of Papa Marmaru and wanted to reunite with the rest of itself and [uncertain: unrasorak]. Its blessing by Anadreste, extraction from the lake, and connection to dwarves who changed their minds remain unresolved. The vulture man's book identified a pale dwarf with black dreadlocks and a crown as someone who could help find Ruby Eye, but the caption was smudged. The same book showed Benu, Trixus, Garadul, and two sphinxes as "a family reunited," with one outline figure. This was later partly fulfilled, but the outline figure and exile question remain significant. -Benu's five books, the blank page for papa e' mamara, and the listed family names of Anadreste, Benu, hidden Garadul, Trixus, and one missing unnamed sibling establish a family structure that remains incomplete. +Benu's five books, the blank page for Papa Marmaru, and the listed family names of Anadreste, Benu, hidden Garadul, Trixus, and one missing unnamed sibling establish a family structure that remains incomplete. The page-two elemental clash and black hole appeared to depict world creation or current-world formation. The exact cosmology remains unclear. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 8791301..20077e0 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -139,7 +139,7 @@ sources: - [Salinus](people/salinus.md): Salinus, Salinas, Salias, salt dragon. - [Leedus](people/leedus.md): Leedus, Leadus. - [Mericok](people/mericok.md): Mericok, Merocole. -- [Papa Marmaru](people/papa-marmaru.md): Papa Marmaru, Papa Illmarne, Papa I Meurina. +- [Papa Marmaru](people/papa-marmaru.md): Papa Marmaru, Papa Illmarne, Papa I Meurina, papael'munsera, black orb. - [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md): Papa Illmarne's dome, Papa's Dome, Papa Illmarne, Papa Marmaru. - [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Mericok, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Hartwall, Windows, Ember, [uncertain: Antherous?]. - [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. @@ -176,7 +176,6 @@ sources: - [Attabre](people/attabre.md): Attabre, Altarrb, Protector of the Brass city, father of the sphinxes. - [Anadreste](people/anadreste.md): Anadreste, Annadressdey, Annadrazadey, Bynx's sister, guardian of the white dragons, white dragon guardian. - [Galimma, the Peridot Queen](people/galimma-peridot-queen.md): Galimma, Peridot Queen. -- [Papa'e Munera](people/papae-munera.md): Papa'e Munera, papa'e munera, papael'munsera, papa e' mamara, papa I Meurina, black orb. - [Noxia](people/noxia.md): Noxia, Noxia Beast avatar, Noxia blood, lady of destruction. - [Ashkellon](places/ashkellon.md): Ashkellon, Askellon, Ashkhellion, Ashhellier, Goliath City, Emeredge's city. - [Bleakstorm](places/bleakstorm.md): Bleakstorm, Lord Bleakstorm, Bleakstorm castle. @@ -184,7 +183,7 @@ sources: - [Void Spheres](items/void-spheres.md): void spheres, orb of void, void orb, eight spheres, Brotor's gift. - [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Stuart / Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Ennuyé / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. - [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. -- [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadul's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. +- [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa Marmaru black orb, Garadul's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. - [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. - [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. - [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md): Skull of Tremon, Tremon's skull, Treamen's skull, Treamon's skull, Tremon's body, shield-crystal body, focusing crystal. diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index e5bfedc..6881f5f 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -33,7 +33,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Subject or cluster | Outcome | |---|---| | Riversmeet Menagerie / Mages College at Riversmeet as upcoming memory-spell site | Standalone page created and updated from day 43-44: [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md). | -| Papa'e Munera / papa e' mamara / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | +| Papa Marmaru / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa Marmaru](../people/papa-marmaru.md); aliases, inventory, open threads updated. | | Garadul feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadul banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | | Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | | Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md), [Ashkellon](../places/ashkellon.md), and open threads. | @@ -63,7 +63,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Icefang / Altith / Atlih / Ice Fury | Preserved as variants or uncertain related names on [Icefang](../people/icefang.md); not normalized. | | Emri / Emi vs [Ennuyé](../people/ennuyé.md) / [Envy](../people/envy.md) | Existing Ennuyé page updated for Envi; Envy now has a separate removed-emotion page; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | | Brotor vs Brutor Ruby Eye | Preserved as a context-dependent alias on Ruby Eye and [Void Spheres](../items/void-spheres.md), not treated as certain. | -| Papa'e Munera / Papa I Meurina | Merged on [Papa'e Munera](../people/papae-munera.md) as likely but uncertain due earlier prison-name variant. | +| Papa Marmaru / Papa I Meurina | Merged on [Papa Marmaru](../people/papa-marmaru.md) as likely but uncertain due earlier prison-name variant. | | Galimma / Peridot Queen vs Peridita / Poison Dragon | Kept separate, with cross-links and open questions. | ## Subjects Only In Rollups diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index b23f01b..550ac5e 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -53,7 +53,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Snowflake coin | Eliana / party | `day-36` | `data/4-days-cleaned/day-36.md` | Lord Bleakstorm gave a one-use portal coin to Bleakstorm. | | Ennuyé's fifth ring | Dirk | `day-42` | `data/4-days-cleaned/day-42.md` | Given by Anastasia; by 15:00 the party could attune to three of the rings. | | Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Garadul picture; later Garadul's feather functioned as one-person communication. | -| Papa'e Munera black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | +| Papa Marmaru black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | | Garadul's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadul. | | Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, labs, Grand Towers sites, Dunnendale gate, Arafar mines, Goldenswell impact site, Menagerie, Ashkhellon, and pylons. | | Void orb / sphere | party | `day-44` | `data/4-days-cleaned/day-44.md` | Left after the void entity recognized Brotor's eye and vanished; party needs eight spheres total. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 336642a..515c25f 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -21,10 +21,10 @@ sources: | Treamon's skull, health pipe, Bridge coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadul/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | | Trixus's brass rings | Rings on Trixus's paws with Attabre inscription. | [Trixus](../people/trixus.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Time-detecting device at Bleakstorm | Detected Dirk missing a day. | [Bleakstorm](../places/bleakstorm.md), open thread. | -| Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Hartwall / Goldenswell clues. | Rollup/open threads; [Papa'e Munera](../people/papae-munera.md). | +| Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Hartwall / Goldenswell clues. | Rollup/open threads; [Papa Marmaru](../people/papa-marmaru.md). | | Benu's glowing open book and five Benu books | Drew answers and death warnings; five books in Goldenswell, Snowsorrow, Dumnensend, Freeport, Hartwall. | [Benu](../people/benu.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Hawthorn lost-city books, Ruby Eye biography of Hawthorn, giant bees, winter rose, winter-flowering plants | Dwarven lost-city and Hawthorn botanical resources. | Rollup/open thread. | -| Papa'e Munera black orb | Fragment of Papa'e Munera in Invar's box. | [Papa'e Munera](../people/papae-munera.md), inventory. | +| Papa Marmaru black orb | Fragment of Papa Marmaru in Invar's box. | [Papa Marmaru](../people/papa-marmaru.md), inventory. | | Garadul's feather, sending stones, magical scrolls, barrier opener / dome opener, barrier tools, Cardonald teleportation circles | Day-43 strategic resources. | Party Inventory / [Garadul](../people/garadul.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Hartwall old lab key, Geldrin's arcane Draconic teleport/seeing scroll, fruit and vegetables, wrestler throne cart | Day-44 opening resources. | Inventory/open threads. | | Head teacher necklace, picture chest, sceptre key, alteration/empathy orb, note `mine felt right here yours is under real` | Old school office clues. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md), inventory/open thread. | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 53c7329..a12f45e 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -140,7 +140,7 @@ sources: - Who is the pale dwarf with black dreadlocks and a crown who can help find Ruby Eye? - What are the full Benu-book family names, including Anadreste, the hidden Garadul name, Trixus, Bynx, and any missing unnamed sibling? - What are the lost dwarf cities of Grincray / Grim & Cray, why is Mashir the route, and why is there no third-city book? -- What is [Papa'e Munera](people/papae-munera.md), where is the rest of him, and who or what is [uncertain: unrasorak]? +- What is [Papa Marmaru](people/papa-marmaru.md), where is the rest of him, and who or what is [uncertain: unrasorak]? - What blocks lost knowledge retrieval, and is it tied to flesh-crafting wands, Barrier magic, or the Riversmeet memory-interference spell? - What are the Heathmoor plagues if they are not barrier sickness, and why are the people not healing with the land? - What happened to [Errol the Obsidian Raven](people/errol.md) and Ruby Eye while they were possibly not on the same plane? diff --git a/data/6-wiki/people/anadreste.md b/data/6-wiki/people/anadreste.md index 165f936..d638e38 100644 --- a/data/6-wiki/people/anadreste.md +++ b/data/6-wiki/people/anadreste.md @@ -27,7 +27,7 @@ Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s s - The Sphinx are the children of Attabre. - [Trixus](trixus.md), [Benu](benu.md), and [Garadul](garadul.md) are [Bynx](bynx.md)'s brothers. - Day 43's Benu-family list names Anadreste among the sphynx siblings. -- Anadreste blessed [Papa'e Munera](papae-munera.md), the fragmented black orb from Invar's box. +- Anadreste blessed [Papa Marmaru](papa-marmaru.md), the fragmented black orb from Invar's box. - Anadreste sacrificed herself to become part of the white dragons, turning them into good dragons. - Because of that sacrifice, all white dragons and their descendants should have a trace of her present. - This explains why Eliana can also be Attabre's daughter: Icefang is Eliana and Lady Elissa Hartwall's white dragon father, and Anadreste is one of Attabre's Sphinx children. @@ -44,7 +44,7 @@ Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s s - [Icefang](icefang.md) - [Eliana](eliana.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) -- [Papa'e Munera](papae-munera.md) +- [Papa Marmaru](papa-marmaru.md) - [Sunsoreen / Snowsorrow](../places/sunsoreen.md) ## Open Questions diff --git a/data/6-wiki/people/anorazorak.md b/data/6-wiki/people/anorazorak.md index ac2dd76..7bd439c 100644 --- a/data/6-wiki/people/anorazorak.md +++ b/data/6-wiki/people/anorazorak.md @@ -19,13 +19,13 @@ Anorazorak is one of the eight beings imprisoned to power the [Barrier](../conce ## Known Details - The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. -- Earlier notes preserve an uncertain `unrasorak` in connection with [Papa'e Munera](papae-munera.md); this may be Anorazorak, but the connection remains uncertain. +- Earlier notes preserve an uncertain `unrasorak` in connection with [Papa Marmaru](papa-marmaru.md); this may be Anorazorak, but the connection remains uncertain. ## Related Entries - [Elemental Prisons](../concepts/elemental-prisons.md) - [Barrier](../concepts/barrier.md) -- [Papa'e Munera](papae-munera.md) +- [Papa Marmaru](papa-marmaru.md) ## Open Questions diff --git a/data/6-wiki/people/attabre.md b/data/6-wiki/people/attabre.md index a83e930..6979c26 100644 --- a/data/6-wiki/people/attabre.md +++ b/data/6-wiki/people/attabre.md @@ -56,7 +56,7 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadul, - [Anadreste](anadreste.md) - [Eliana](eliana.md) - [Icefang](icefang.md) -- [Papa'e Munera](papae-munera.md) +- [Papa Marmaru](papa-marmaru.md) - [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index be1984e..e65b3be 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -45,7 +45,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Wroth, [Envy](envy.md) / Envi, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Wroth trapped Envy in Lady Evalina Hartwall's head like Envy in Ruby Eye's. Envy is a removed elven emotion manifestation, while the Envi / Ennuyé relationship remains uncertain. | [Envy](envy.md), [Ennuyé](ennuyé.md). | | [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Hartwall street, receipt, chess, pub, and church details. | Rollup/open thread. | | Dwarf blacksmith, golden dragonborn, vulture man, bushy-eared elf, pale dwarf with black dreadlocks and crown | Box and Benu-book scene figures. | Rollup; pale dwarf unresolved Ruby Eye lead. | -| Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre](attabre.md), [Papa'e Munera](papae-munera.md). | +| Anadreste and missing unnamed sibling | Benu-family list and Papa Marmaru blessing. | [Attabre](attabre.md), [Papa Marmaru](papa-marmaru.md). | | Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | | Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcroft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | diff --git a/data/6-wiki/people/papa-marmaru.md b/data/6-wiki/people/papa-marmaru.md index 275e096..3c1ff33 100644 --- a/data/6-wiki/people/papa-marmaru.md +++ b/data/6-wiki/people/papa-marmaru.md @@ -5,9 +5,13 @@ aliases: - Papa Marmaru - Papa Illmarne - Papa I Meurina -first_seen: day-53 + - papael'munsera + - black orb +first_seen: day-23 last_updated: user-clarification sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-53.md - data/4-days-cleaned/day-55.md - user clarification @@ -17,13 +21,19 @@ sources: ## Summary -Papa Marmaru is one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md), connected to Papa Illmarne's dome near Magstein. +Papa Marmaru is one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md), connected to Papa Illmarne's dome near Magstein and to the black orb fragment from Invar's box. ## Known Details - The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. -- Earlier notes refer to Papa Illmarne's dome, Papa's Dome, and Papa I Meurina in related prison lore. -- Papa Marmaru had chosen to be there, looked after the dwarves, and warned Invar not to trust Mericok / Mericok. +- Earlier notes refer to Papa Illmarne's dome, Papa's Dome, Papa I Meurina, and Papa Marmaru in related prison lore. +- Earlier prison lore described Papa I Meurina as a crab with three snake heads and magma. +- On `day-43`, a dwarf blacksmith gave Invar a glowing warm box containing a small black orb with lava-stone racks and snake-head eyes. +- The orb spoke many languages, said it had been boxed for one min moon / 300 days, and identified itself as only part of Papa Marmaru. +- The orb knew where the rest of itself was and wanted the party to free him and [uncertain: unrasorak]. +- The orb was blessed by [Anadreste](anadreste.md) and had been extracted from a lake by friends; dwarves had seen the errors of their ways and now wanted to release him. +- The Benu book's page was blank when asked for the location of Papa Marmaru. +- Papa Marmaru had chosen to be there, looked after the dwarves, and warned Invar not to trust Mericok. ## Related Entries @@ -31,3 +41,9 @@ Papa Marmaru is one of the eight beings imprisoned to power the [Barrier](../con - [Barrier](../concepts/barrier.md) - [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md) - [Mericok](mericok.md) +- [Anadreste](anadreste.md) +- [Attabre](attabre.md) + +## Open Questions + +- Where is the rest of Papa Marmaru, and who or what is [uncertain: unrasorak]? diff --git a/data/6-wiki/people/papae-munera.md b/data/6-wiki/people/papae-munera.md deleted file mode 100644 index 6033022..0000000 --- a/data/6-wiki/people/papae-munera.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Papa'e Munera -type: fragmented being -aliases: - - papa'e munera - - papael'munsera - - papa e' mamara - - papa I Meurina - - black orb -first_seen: day-23 -last_updated: day-43 -sources: - - data/4-days-cleaned/day-23.md - - data/4-days-cleaned/day-43.md ---- - -# Papa'e Munera - -## Summary - -Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a black orb in Invar's box, [Anadreste](anadreste.md)'s blessing, and possible elemental-prison naming. - -## Known Details - -- Earlier prison lore included Papa I Meurina among named or described prisoners. -- On `day-43`, a dwarf blacksmith gave Invar a glowing warm box containing a small black orb with lava-stone racks and snake-head eyes. -- The orb spoke many languages, said it had been boxed for one min moon / 300 days, and identified itself as only part of papa'e munera. -- It knew where the rest of itself was and wanted the party to free him and [uncertain: unrasorak]. -- It was blessed by [Anadreste](anadreste.md) and had been extracted from a lake by friends; dwarves had seen the errors of their ways and now wanted to release him. -- The Benu book's page was blank when asked for the location of papa e' mamara. - -## Related Entries - -- [Attabre](attabre.md) -- [Trixus](trixus.md) -- [Elemental Prisons](../concepts/elemental-prisons.md) - -## Open Questions - -- Is Papa'e Munera one of the prison beings, a sphinx-family member, or a separate dwarven-lost-city entity? -- Where is the rest of him, and who or what is [uncertain: unrasorak]? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 43c4697..1ae3069 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -158,7 +158,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Valenthielles | left in prison by recent visitors | `data/4-days-cleaned/day-36.md` | Dark prison entity said visitors cleaned up quickly and left Valenthielles there. | | Icefang's ice elemental | imprisoned at Rimewock / Rimewatch | `data/4-days-cleaned/day-36.md` | Water elementals required the party to agree to free it. | | Hephestus / Hephestos | imprisoned soul or barrier entity | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Door had ninth-level Banishment; later described as only his soul and wanted a pact to be let out. | -| Papa'e Munera fragment | boxed fragment with party | `data/4-days-cleaned/day-43.md` | Black orb in Invar's box; wants reunion with the rest of itself and [uncertain: unrasorak]. | +| Papa Marmaru fragment | boxed fragment with party | `data/4-days-cleaned/day-43.md` | Black orb in Invar's box; wants reunion with the rest of itself and [uncertain: unrasorak]. | | Dribble and fresh water elemental | released and temporarily allied | `data/4-days-cleaned/day-44.md` | Dribble was in a jade/grey desk object; a fresh water elemental agreed to join the party around the school for a while. | | [Globule](globule.md) | freed, allied, taking babies to sea | `data/4-days-cleaned/day-57.md` | Freed from Noxia's whirlpool painting and helped rescue merbabies from the death realm. | | [Lord Briarthorn](lord-briarthorn.md) | found imprisoned, mortal | `data/4-days-cleaned/day-57.md` | Thorn-beard elf in death-realm prison cell who remembered going to the moon with Eliana's mother. | diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md index 85dedea..60adf5b 100644 --- a/data/6-wiki/places/minor-places-days-42-44.md +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -17,7 +17,7 @@ sources: | Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Hartwall, Emmerane | Day-42 time/Bridge/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | | Goldenswell, Pine Springs, Hartwall, 11th Duke of Hartwall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Hartwall locations. | Rollup/open threads. | | Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise | Tomes about places the tomes had only just discovered. | Rollup/open threads; [Ashkellon](ashkellon.md) is also in this list as Goliath City. | -| Grincray / Grim & Cray, Mashir, lake of Papa'e Munera, rear Ironcroft air site, Claymeadow, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | +| Grincray / Grim & Cray, Mashir, lake of Papa Marmaru, rear Ironcroft air site, Claymeadow, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | | Riversmeet, Ruby Eye's melted house ruins and gravestone, central bridge manor house, temples of Hydrun / Igraine / Lam / Kasha | Day-44 Riversmeet investigation. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Hartwall's old lab, Howling Tombs, Menagerie outpost, Menagerie grounds, apothecary, infirmary, head teacher's office, old classrooms, Air common room, astronomy room | Day-44 Menagerie and school spaces. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Far Grove, Waterrose, Great Farmouth, tower tunnels, Blackhold, white classroom, Brass City, room above Air common room, kitchen, Ruby Eye's old stomping ground | Historical/planar route locations in the old school. | Rollup; [Bleakstorm](bleakstorm.md), [Void Spheres](../items/void-spheres.md). | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 5c72771..80ffd57 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -88,7 +88,7 @@ sources: - `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadul](people/garadul.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Noxia](people/noxia.md), [Sierra](people/sierra.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Garadul](people/garadul.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Papa'e Munera](people/papae-munera.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Garadul](people/garadul.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Papa Marmaru](people/papa-marmaru.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre](people/attabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Void Spheres](items/void-spheres.md), [Garadul](people/garadul.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Sierra](people/sierra.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Garadul](people/garadul.md), [Joy](people/joy.md), [Sierra](people/sierra.md), [Sierra's Arrows](items/sierras-arrows.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 9b384a2..e8cfce7 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -88,7 +88,7 @@ sources: - `day-40`: At [Azureside](places/azureside.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). - `day-41`: Perodita / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears The Basilisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). - `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadul](people/garadul.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Hartwall. -- `day-43`: Goldenswell and Hartwall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadul's feather claims, the Ashkellon sphinx-family reunion, Garadul's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. +- `day-43`: Goldenswell and Hartwall investigations reveal Grimby, Papa Marmaru, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadul's feather claims, the Ashkellon sphinx-family reunion, Garadul's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valentinhide](people/valentinhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadul](people/garadul.md), defeats the altered [Original Goliath Sphinx](people/original-goliath-sphinx.md) and its invisible memory entity, restores memories, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valentinhide](people/valentinhide.md)'s costly pathways. -
76847b3Add audio transcriptsby Bas Mostert
data/2-audio-transcripts/session-2026-01-20.md | 2272 ++++ data/2-audio-transcripts/session-2026-01-27.md | 7471 ++++++++++++++ data/2-audio-transcripts/session-2026-02-03.md | 4638 +++++++++ data/2-audio-transcripts/session-2026-02-10.md | 6646 ++++++++++++ data/2-audio-transcripts/session-2026-02-17.md | 5374 ++++++++++ data/2-audio-transcripts/session-2026-02-24.md | 6503 ++++++++++++ data/2-audio-transcripts/session-2026-03-03.md | 6421 ++++++++++++ data/2-audio-transcripts/session-2026-03-10.md | 5999 +++++++++++ data/2-audio-transcripts/session-2026-03-17.md | 7473 ++++++++++++++ data/2-audio-transcripts/session-2026-03-24.md | 8704 ++++++++++++++++ data/2-audio-transcripts/session-2026-03-31.md | 6737 ++++++++++++ data/2-audio-transcripts/session-2026-04-07.md | 9348 +++++++++++++++++ data/2-audio-transcripts/session-2026-04-14.md | 8718 ++++++++++++++++ data/2-audio-transcripts/session-2026-04-21.md | 8538 +++++++++++++++ data/2-audio-transcripts/session-2026-04-28.md | 3851 +++++++ data/2-audio-transcripts/session-2026-05-05.md | 5685 ++++++++++ data/2-audio-transcripts/session-2026-05-12.md | 12631 +++++++++++++++++++++++ 17 files changed, 117009 insertions(+) -
8890b89Clarify Tremon skull lore and update campaign wikiby Laura Mostert
data/2-pages/101.txt | 2 +- data/2-pages/102.txt | 2 +- data/2-pages/106.txt | 2 +- data/2-pages/107.txt | 6 +- data/2-pages/108.txt | 2 +- data/2-pages/112.txt | 2 +- data/2-pages/114.txt | 2 +- data/2-pages/122.txt | 2 +- data/2-pages/132.txt | 2 +- data/2-pages/134.txt | 4 +- data/2-pages/136.txt | 2 +- data/2-pages/137.txt | 2 +- data/2-pages/150.txt | 4 +- data/2-pages/151.txt | 2 +- data/2-pages/156.txt | 2 +- data/2-pages/16.txt | 2 +- data/2-pages/170.txt | 2 +- data/2-pages/176.txt | 4 +- data/2-pages/179.txt | 2 +- data/2-pages/182.txt | 6 +- data/2-pages/183.txt | 2 +- data/2-pages/186.txt | 4 +- data/2-pages/187.txt | 4 +- data/2-pages/188.txt | 22 ++-- data/2-pages/192.txt | 2 +- data/2-pages/198.txt | 2 +- data/2-pages/200.txt | 6 +- data/2-pages/201.txt | 2 +- data/2-pages/205.txt | 2 +- data/2-pages/207.txt | 2 +- data/2-pages/211.txt | 2 +- data/2-pages/212.txt | 6 +- data/2-pages/213.txt | 4 +- data/2-pages/214.txt | 2 +- data/2-pages/215.txt | 4 +- data/2-pages/217.txt | 2 +- data/2-pages/223.txt | 2 +- data/2-pages/225.txt | 2 +- data/2-pages/234.txt | 2 +- data/2-pages/235.txt | 4 +- data/2-pages/238.txt | 4 +- data/2-pages/244.txt | 4 +- data/2-pages/247.txt | 2 +- data/2-pages/250.txt | 4 +- data/2-pages/254.txt | 2 +- data/2-pages/255.txt | 2 +- data/2-pages/256.txt | 4 +- data/2-pages/258.txt | 2 +- data/2-pages/262.txt | 2 +- data/2-pages/264.txt | 2 +- data/2-pages/271.txt | 4 +- data/2-pages/274.txt | 2 +- data/2-pages/275.txt | 6 +- data/2-pages/277.txt | 6 +- data/2-pages/278.txt | 4 +- data/2-pages/281.txt | 2 +- data/2-pages/284.txt | 2 +- data/2-pages/309.txt | 2 +- data/2-pages/317.txt | 2 +- data/2-pages/326.txt | 2 +- data/2-pages/35.txt | 8 +- data/2-pages/37.txt | 4 +- data/2-pages/39.txt | 8 +- data/2-pages/56.txt | 2 +- data/2-pages/66.txt | 6 +- data/2-pages/67.txt | 2 +- data/2-pages/68.txt | 2 +- data/2-pages/74.txt | 2 +- data/2-pages/75.txt | 2 +- data/2-pages/76.txt | 2 +- data/2-pages/78.txt | 8 +- data/2-pages/79.txt | 10 +- data/2-pages/80.txt | 2 +- data/2-pages/82.txt | 4 +- data/2-pages/83.txt | 2 +- data/2-pages/86.txt | 8 +- data/2-pages/87.txt | 8 +- data/2-pages/91.txt | 6 +- data/2-pages/95.txt | 2 +- data/3-days/day-06.md | 2 +- data/3-days/day-14.md | 12 +-- data/3-days/day-15.md | 8 +- data/3-days/day-17.md | 2 +- data/3-days/day-20.md | 6 +- data/3-days/day-21.md | 4 +- data/3-days/day-23.md | 26 ++--- data/3-days/day-25.md | 4 +- data/3-days/day-26.md | 20 ++-- data/3-days/day-27.md | 6 +- data/3-days/day-28.md | 2 +- data/3-days/day-29.md | 2 +- data/3-days/day-30.md | 10 +- data/3-days/day-32.md | 6 +- data/3-days/day-36.md | 18 ++-- data/3-days/day-42.md | 8 +- data/3-days/day-43.md | 38 +++---- data/3-days/day-44.md | 12 +-- data/3-days/day-46.md | 26 ++--- data/3-days/day-47.md | 16 +-- data/3-days/day-48.md | 14 +-- data/3-days/day-52.md | 4 +- data/3-days/day-53.md | 2 +- data/3-days/day-55.md | 4 +- data/3-days/day-56.md | 18 ++-- data/3-days/day-57.md | 6 +- data/4-days-cleaned/day-01.md | 6 +- data/4-days-cleaned/day-06.md | 6 +- data/4-days-cleaned/day-14.md | 18 ++-- data/4-days-cleaned/day-15.md | 16 +-- data/4-days-cleaned/day-17.md | 4 +- data/4-days-cleaned/day-20.md | 6 +- data/4-days-cleaned/day-21.md | 8 +- data/4-days-cleaned/day-23.md | 22 ++-- data/4-days-cleaned/day-25.md | 8 +- data/4-days-cleaned/day-26.md | 30 +++--- data/4-days-cleaned/day-27.md | 12 +-- data/4-days-cleaned/day-28.md | 8 +- data/4-days-cleaned/day-29.md | 6 +- data/4-days-cleaned/day-30.md | 16 +-- data/4-days-cleaned/day-32.md | 26 ++--- data/4-days-cleaned/day-36.md | 40 +++---- data/4-days-cleaned/day-42.md | 18 ++-- data/4-days-cleaned/day-43.md | 46 ++++---- data/4-days-cleaned/day-44.md | 22 ++-- data/4-days-cleaned/day-46.md | 40 +++---- data/4-days-cleaned/day-47.md | 26 ++--- data/4-days-cleaned/day-48.md | 24 ++--- data/4-days-cleaned/day-52.md | 16 +-- data/4-days-cleaned/day-53.md | 6 +- data/4-days-cleaned/day-55.md | 6 +- data/4-days-cleaned/day-56.md | 24 ++--- data/4-days-cleaned/day-57.md | 12 +-- data/5-retrospective/day-01.txt | 2 +- data/6-wiki/aliases.md | 24 +++-- data/6-wiki/clues/day-46-coverage-audit.md | 12 +-- data/6-wiki/clues/day-47-coverage-audit.md | 4 +- data/6-wiki/clues/day-57-coverage-audit.md | 6 +- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 12 +-- data/6-wiki/clues/days-48-52-coverage-audit.md | 6 +- data/6-wiki/clues/days-53-56-coverage-audit.md | 6 +- .../clues/known-passwords-and-inscriptions.md | 12 +-- data/6-wiki/concepts/barrier.md | 19 ++-- data/6-wiki/concepts/bridgets-doors.md | 2 +- data/6-wiki/concepts/elemental-prisons.md | 34 +++--- data/6-wiki/concepts/excellences.md | 6 +- .../concepts/gods-bargains-behind-the-barrier.md | 6 +- data/6-wiki/concepts/papa-illmarnes-dome.md | 15 +-- data/6-wiki/factions/black-scales.md | 16 +-- data/6-wiki/index.md | 12 ++- data/6-wiki/inventories/party-inventory.md | 12 +-- data/6-wiki/items/hartwall-auction-lots.md | 4 +- data/6-wiki/items/minor-items-day-46.md | 2 +- data/6-wiki/items/minor-items-day-47.md | 4 +- data/6-wiki/items/minor-items-day-57.md | 2 +- data/6-wiki/items/minor-items-days-36-40-41.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 6 +- data/6-wiki/items/minor-items-days-48-52.md | 6 +- data/6-wiki/items/minor-items-days-53-56.md | 6 +- .../items/rings-of-joy-ennuy\303\251-and-dirk.md" | 2 +- data/6-wiki/items/sierras-arrows.md | 37 +++++++ .../items/tremons-body-and-statue-artifacts.md | 15 ++- data/6-wiki/items/void-spheres.md | 4 +- data/6-wiki/open-threads.md | 39 ++++--- data/6-wiki/people/anadreste.md | 4 +- data/6-wiki/people/anorazorak.md | 32 ++++++ data/6-wiki/people/anya-blakedurn.md | 4 +- data/6-wiki/people/astraywoo.md | 2 +- data/6-wiki/people/attabre.md | 10 +- data/6-wiki/people/benu.md | 20 ++-- data/6-wiki/people/brutor-ruby-eye.md | 10 +- data/6-wiki/people/bynx.md | 10 +- data/6-wiki/people/dirk.md | 2 +- data/6-wiki/people/dotharl.md | 2 +- "data/6-wiki/people/ennuy\303\251.md" | 4 +- data/6-wiki/people/errol.md | 4 +- data/6-wiki/people/everard-browning.md | 4 +- data/6-wiki/people/garadul.md | 119 +++++++++++++++++++++ data/6-wiki/people/garadwal.md | 119 --------------------- data/6-wiki/people/haze.md | 35 ++++++ data/6-wiki/people/infestus.md | 8 +- data/6-wiki/people/lady-evalina-hartwall.md | 2 +- data/6-wiki/people/leedus.md | 29 +++++ data/6-wiki/people/limusvita.md | 30 ++++++ data/6-wiki/people/lortesh.md | 2 +- data/6-wiki/people/malcolm-donovan.md | 2 +- data/6-wiki/people/mericok.md | 31 ++++++ data/6-wiki/people/minor-figures-day-46.md | 6 +- data/6-wiki/people/minor-figures-day-47.md | 4 +- data/6-wiki/people/minor-figures-day-57.md | 6 +- data/6-wiki/people/minor-figures-days-23-31.md | 2 +- data/6-wiki/people/minor-figures-days-32-35.md | 6 +- data/6-wiki/people/minor-figures-days-36-40-41.md | 2 +- data/6-wiki/people/minor-figures-days-42-44.md | 10 +- data/6-wiki/people/minor-figures-days-48-52.md | 6 +- data/6-wiki/people/minor-figures-days-53-56.md | 4 +- data/6-wiki/people/noxia.md | 3 +- data/6-wiki/people/original-goliath-sphinx.md | 2 +- data/6-wiki/people/papa-marmaru.md | 33 ++++++ data/6-wiki/people/peridita.md | 2 +- data/6-wiki/people/pride.md | 4 +- data/6-wiki/people/salinus.md | 32 ++++++ data/6-wiki/people/sierra.md | 46 ++++++++ data/6-wiki/people/status.md | 14 +-- data/6-wiki/people/the-mother.md | 5 +- data/6-wiki/people/trixus.md | 10 +- data/6-wiki/people/valententhide.md | 72 ------------- data/6-wiki/people/valenth-cardonald.md | 18 ++-- data/6-wiki/people/valentinhide.md | 74 +++++++++++++ data/6-wiki/people/wrath.md | 2 +- data/6-wiki/places/ashkellon.md | 6 +- data/6-wiki/places/bleakstorm.md | 4 +- data/6-wiki/places/brookville-springs.md | 6 +- .../places/coalmont-falls-and-asmoorade-prison.md | 8 +- data/6-wiki/places/desert-laboratory.md | 4 +- data/6-wiki/places/dunensend.md | 6 +- data/6-wiki/places/grand-towers.md | 10 +- data/6-wiki/places/highden.md | 2 +- data/6-wiki/places/minor-places-day-46.md | 6 +- data/6-wiki/places/minor-places-day-47.md | 4 +- data/6-wiki/places/rimewatch-ice-prison.md | 4 +- .../riversmeet-menagerie-and-old-mage-school.md | 4 +- data/6-wiki/places/salt-dragon-prison.md | 7 +- data/6-wiki/sources.md | 40 +++---- data/6-wiki/timeline.md | 32 +++--- 225 files changed, 1345 insertions(+), 1011 deletions(-)Show diff
diff --git a/data/2-pages/101.txt b/data/2-pages/101.txt index b79203e..242926d 100644 --- a/data/2-pages/101.txt +++ b/data/2-pages/101.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9764.jpg Transcription: - Controls the overseer - Cardenald should be - separate to the mainframe. Double locked: Valenthide + separate to the mainframe. Double locked: Valentinhide prison & automaton guard. by Pride's prison isn't connected to the barrier diff --git a/data/2-pages/102.txt b/data/2-pages/102.txt index 08bb26d..7b65a06 100644 --- a/data/2-pages/102.txt +++ b/data/2-pages/102.txt @@ -33,7 +33,7 @@ goat head sphinx 6 legged cat like creature with braided beard, egyptian headdress lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen style clothes (honour guard style) each side. -Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. +Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Garadul failed. Think his brother is looking for him. Goliaths came to him asking for help to trap his brother. we will protect him if we escort him to see the Dunnen people. Doesn't want to go to Dunensend after we told him about the automaton - may have something to show faith diff --git a/data/2-pages/106.txt b/data/2-pages/106.txt index 54a9b0f..3c23f27 100644 --- a/data/2-pages/106.txt +++ b/data/2-pages/106.txt @@ -16,7 +16,7 @@ moon shard in the sea - Invar retrieved it & tried to take it back to ground tow Huan survived - ship missing - Census / Hydratrox. Our Council members on their way to Highden. -Wrath to Valenthide. +Wrath to Valentinhide. Xinquss to shield crystal. Benu staying in Dunensend will build a temple in city. diff --git a/data/2-pages/107.txt b/data/2-pages/107.txt index 064e9da..54131ad 100644 --- a/data/2-pages/107.txt +++ b/data/2-pages/107.txt @@ -3,8 +3,8 @@ Source: data/1-source/IMG_9768.jpg Transcription: -Salinay sealed - barrier energy depleted. -- Valententhide is the cause of that. +Salinus sealed - barrier energy depleted. +- Valentinhide is the cause of that. Betrayer - will be working on another Body - take 20-30 days. @@ -23,7 +23,7 @@ The Guilt is an excellence!! Browning's lab near Craters edge. -Magical defenses against Valententhide. Counterspell. +Magical defenses against Valentinhide. Counterspell. Message to The Basilisk to say guilt is Excellence & ask for mage help with Wrath. diff --git a/data/2-pages/108.txt b/data/2-pages/108.txt index 53919ac..a395e37 100644 --- a/data/2-pages/108.txt +++ b/data/2-pages/108.txt @@ -14,7 +14,7 @@ Geldrin tries to find valententhide or goliath city in the library. scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunensend. Master Shined glass. Goliath Capital - Ashktioth. Tradesmall - Goliath town. -Valententhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). +Valentinhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). Army leaves @ 16:00. 16:00! diff --git a/data/2-pages/112.txt b/data/2-pages/112.txt index 8c714d4..c4bee53 100644 --- a/data/2-pages/112.txt +++ b/data/2-pages/112.txt @@ -18,7 +18,7 @@ Earthwise. one I know. Decide to travel to Hartwall - Rift block. Statue to Lan (Earth god to love, home & family) outside Hartwall - teleport there. on target. -Statue of Lan is very similar in style to the Statue of Serva. +Statue of Lan is very similar in style to the Statue of Sierra. 2 guards - human & half elf - city is fine - Lady Elissa Hartwall still injured. Lady Freya in attendance in the city. diff --git a/data/2-pages/114.txt b/data/2-pages/114.txt index bc4b42b..c1fdff1 100644 --- a/data/2-pages/114.txt +++ b/data/2-pages/114.txt @@ -44,5 +44,5 @@ image of someone lowering a rope down a hole 35g for too much jewellery < human male Lot 19 obsidian & bone statue - crab claw & talon shielding Throngore -over a featherless female - "Valententide's Betrayal" 140g +over a featherless female - "Valentinhide's Betrayal" 140g Raven 1 diff --git a/data/2-pages/122.txt b/data/2-pages/122.txt index 0b2ee41..ca27cec 100644 --- a/data/2-pages/122.txt +++ b/data/2-pages/122.txt @@ -14,7 +14,7 @@ true form. - was assaulted when he came to the god meeting. - mortals -- Valententide was attacked by Throngore - Darkness +- Valentinhide was attacked by Throngore - Darkness 525 years before the veridian dragonborns - dragons fighting diff --git a/data/2-pages/132.txt b/data/2-pages/132.txt index 9b9b96c..bac4d26 100644 --- a/data/2-pages/132.txt +++ b/data/2-pages/132.txt @@ -21,7 +21,7 @@ left town, he's back in his room. The explosions where the Guilt's bosses guardsman - the reason he's unconscious is the reason for the explosions. The boss (Pride) -has been eaten. (Garadwal!!) +has been eaten. (Garadul!!) We are much the same as her as just work for someone. diff --git a/data/2-pages/134.txt b/data/2-pages/134.txt index c709b1c..5e8040c 100644 --- a/data/2-pages/134.txt +++ b/data/2-pages/134.txt @@ -6,7 +6,7 @@ Transcription: Big flash - Rubyeye appears. - Valenth still repairing. - Valenth & Ruby eye have been convalescing. -asks about the crystal shell - told him we off it +asks about the Skull of Tremon - told him we off it at Hartwall. Doesn't know about Envy. @@ -15,7 +15,7 @@ lots of giants rampaging at his clan's settlement. Asks about Lady Envy ??? & lady Hartwall. Made some enemies but the dome is proof of his efforts. -Wants to retrieve the shell of [uncertain: Tremoon]. doesn't want +Wants to retrieve the Skull of Tremon. doesn't want it falling into the wrong hands. More interested in it than he is telling on. diff --git a/data/2-pages/136.txt b/data/2-pages/136.txt index 25fc2a9..359acf9 100644 --- a/data/2-pages/136.txt +++ b/data/2-pages/136.txt @@ -38,5 +38,5 @@ garadwal. speaking through his greater gravel children. garadwal locked downstairs here him when it are ready walked into Browning's trap. -Rubyeye says they will sort Garadwal out like Browning +Rubyeye says they will sort Garadul out like Browning is his boss... Rubyeye knows what is good for him. diff --git a/data/2-pages/137.txt b/data/2-pages/137.txt index 085ba21..66127d4 100644 --- a/data/2-pages/137.txt +++ b/data/2-pages/137.txt @@ -19,7 +19,7 @@ yes use them as cattle wherever we are done throws blanket over as Valenth walks in. Geldrin back - was on floor 98 found Browning. -Need to get out of here now. tell us about Garadwal. +Need to get out of here now. tell us about Garadul. Hear an alarm - 4 golems appear in the circles - run back down the corridor diff --git a/data/2-pages/150.txt b/data/2-pages/150.txt index a4f9350..b33ded5 100644 --- a/data/2-pages/150.txt +++ b/data/2-pages/150.txt @@ -12,8 +12,8 @@ Water Elementals say we need to agree to free Icefang Ice elemental in the prison at Rimewock, Geldrin summon the void elemental to help us -says we will owe him another favour as Garadwel -Garadwel revenge is the previous favour - +says we will owe him another favour as Garadul +Garadul revenge is the previous favour - - Do not free Valentenhide & let Kasher Reign - Not oppose Kasher - will bring somebody else to the fight - Agree to the water Elemental. diff --git a/data/2-pages/151.txt b/data/2-pages/151.txt index 75866e7..2c35d69 100644 --- a/data/2-pages/151.txt +++ b/data/2-pages/151.txt @@ -24,7 +24,7 @@ my child what is it you wish" dispel dragon magic. "Only just put it on and took him as payment" "watched him with great interest since hatching didn't" "have some of the other deals caused you" No but taking the mother down -was, offers to give her Garadwel. She agrees & +was, offers to give her Garadul. She agrees & Geldrin chants & soots flames vanish & bones scatter. I Breath weapon the dragon head. Water elemental retrieves Icefang & lays him on diff --git a/data/2-pages/156.txt b/data/2-pages/156.txt index 92bc804..9364c18 100644 --- a/data/2-pages/156.txt +++ b/data/2-pages/156.txt @@ -12,7 +12,7 @@ Water - Continue down the stream leaving the statue behind river & approaches a barrier of sort. doesn't hurt to touch. cruched. -Land Mention Garaduel's plans & Anthrosite +Land Mention Garadul's plans & Anthrosite states he will allow us in to use the Portal to speak to infestus. Didn't kill us on sight as Geldrin wears the diff --git a/data/2-pages/16.txt b/data/2-pages/16.txt index 63e0feb..3947edd 100644 --- a/data/2-pages/16.txt +++ b/data/2-pages/16.txt @@ -31,7 +31,7 @@ give it one of the Brass feathers to communicate with the master for an audience. [your] horned mechanical hellraiser sphinx creature. -- Garadwal? +- Garadul? Where is your army servant. We those guys instead... do not need to know wot co-ordinates required for triangulation need diff --git a/data/2-pages/170.txt b/data/2-pages/170.txt index 0a8e2e8..df0651f 100644 --- a/data/2-pages/170.txt +++ b/data/2-pages/170.txt @@ -25,7 +25,7 @@ path. Elderly human man, looks sad, rubs beard & back in room - Royal room - mess Hall? - feels like honoured guard space old pictures on the wall one out of place of -Benu / Guradwal / Goat headed sphinx +Benu / Garadul / Goat headed sphinx back - to the Warriors of the Lion from the Dunemin backing & canvas comes apart - 2 large feathers tied the the top with orange & blue feathers diff --git a/data/2-pages/176.txt b/data/2-pages/176.txt index 7b3d142..6f43069 100644 --- a/data/2-pages/176.txt +++ b/data/2-pages/176.txt @@ -21,9 +21,9 @@ dragon. - take copper dragon down & put Tixun's hand on her head - he has a brief stir & recognition but stays asleep. -- Library - book on Benu, Garadwal & Trixus - last 3 of Attabre's +- Library - book on Benu, Garadul & Trixus - last 3 of Attabre's children who walk on the earth. - came from -Fire Gardwell looked after the Dumnen's - enjoyed the +Fire Garadul looked after the Dumnen's - enjoyed the gifts. - Igrine gave them the gifts to heal their people Trixus - helped to create Brass city - Tabaxi, confused diff --git a/data/2-pages/179.txt b/data/2-pages/179.txt index 015f1d1..0b7b8a7 100644 --- a/data/2-pages/179.txt +++ b/data/2-pages/179.txt @@ -9,7 +9,7 @@ Send a message to The Basilisk about Perodita heading to Hartwall - Didn't send us outside the Barrier. -Gardwal getting stronger inside the barrier at +Garadul getting stronger inside the barrier at Gravel basers. 1 hr 35 mins diff --git a/data/2-pages/182.txt b/data/2-pages/182.txt index 9e222f0..5ae3705 100644 --- a/data/2-pages/182.txt +++ b/data/2-pages/182.txt @@ -8,12 +8,12 @@ drawn of a pale dwarf with black dreadlocks with a crown. The picture smudges and words say "One more glance a death dance" Geldrin - how do you wake Trixus? -A picture appears of Benu & Trixus & Garadwel with 2 sphinx behind +A picture appears of Benu & Trixus & Garadul with 2 sphinx behind them - "a family reunited" is written underneath One Sphinx is just an outline. Geldrin then hears a whisper in his ear "one brief look - last breath Took" -Geldrin turns round - sees a featureless woman (Valentenshide) +Geldrin turns round - sees a featureless woman (Valentinhide) reflected in Invar's armor & he collapse to the floor. Book written by Benu. @@ -31,7 +31,7 @@ Benu's family names: missing one - no name given Anadreste Benu - Gardwel - name hidden on the page + Garadul - name hidden on the page Trixus I feel a hand on my hand - nothing there diff --git a/data/2-pages/183.txt b/data/2-pages/183.txt index 5168c2e..7825cc6 100644 --- a/data/2-pages/183.txt +++ b/data/2-pages/183.txt @@ -19,7 +19,7 @@ reminds us of Dumnensend & a kids poetry book Morgana has the book last poem in the book is that one - 2nd to last is a -council meeting with plans to take out Valentenshide +council meeting with plans to take out Valentinhide Golden dragon born looks for Dwarven lost cities. finds 2 books - written by a scholar - Lord Hawthorn diff --git a/data/2-pages/186.txt b/data/2-pages/186.txt index f3670c4..8214e97 100644 --- a/data/2-pages/186.txt +++ b/data/2-pages/186.txt @@ -18,10 +18,10 @@ Options: Dwarves find out what is going on with Grand Towers -use Gardwell's feather to speak to him. +use Garadul's feather to speak to him. Feather is a one person walkie talkie. -Try to speak to Garadwel - it vibrates & chill in the +Try to speak to Garadul - it vibrates & chill in the air - calls as his allies - huge we came to see the errors of our ways - "he has kept them here - barrier is his - Betrayer sits amongst us (daughter) diff --git a/data/2-pages/187.txt b/data/2-pages/187.txt index f7bf242..33c7987 100644 --- a/data/2-pages/187.txt +++ b/data/2-pages/187.txt @@ -8,11 +8,11 @@ Benu failed as abandoned his post - Trixus didn't as he didn't abandon his post. Dad - -Tells Garadwell the Vulture men are back at +Tells Garadul the Vulture men are back at Dumnensend and Hephestos is still alive... Quick update - via sending stone - Grand Towers dome -is down - Garadwell probably gone to Ashkhellion. +is down - Garadul probably gone to Ashkhellion. Do we go to Ashkhellion & get Benu first? Go to the library to speak to the Vulture Man. goes to get his sending stone to speak to Ashtrigwos diff --git a/data/2-pages/188.txt b/data/2-pages/188.txt index b64c5bb..083910c 100644 --- a/data/2-pages/188.txt +++ b/data/2-pages/188.txt @@ -4,14 +4,14 @@ Source: data/1-source/IMG_9855.jpg Transcription: Steven not in his barrier -Benu lands between us & Trixus/Garadwal (Trixus still in barrier) -Ask Gardwel to lay down his weapons & he refuses -Try to get the dome opener & Garadwal kills me. -Benu attacks Garadwal. Geldrin uses tremor skill to release Trixus. -revive me & see Valentenshide manage to look away. -Benu & Garadwal break through the walls & fight -outside. - fight ensues - Garadwal is banished 5:00 -Benu tells Trixus what has happened to Garadwal. Trixus +Benu lands between us & Trixus/Garadul (Trixus still in barrier) +Ask Garadul to lay down his weapons & he refuses +Try to get the dome opener & Garadul kills me. +Benu attacks Garadul. Geldrin uses tremor skill to release Trixus. +revive me & see Valentinhide manage to look away. +Benu & Garadul break through the walls & fight +outside. - fight ensues - Garadul is banished 5:00 +Benu tells Trixus what has happened to Garadul. Trixus asks where Benu was when his people were in trouble. Dark clouds above the dune - Perodita appears but looks very bedraggled compared to a day ago. Says she will get back @@ -26,15 +26,15 @@ so we will let him out. wants to give us a piece of information to help him get out. was asked to attack the dome. ?Browning? -Need to save Garadwel +Need to save Garadul Trixus says Trixus & Benu transform into humanoids to go to -the shrine room to see if they can check if Garadwel +the shrine room to see if they can check if Garadul is there Ask a Brass city Platinum to the offering bowl to help with communicate with the god. -Attabre comes through - Garadwal is not with him. +Attabre comes through - Garadul is not with him. what do we seek. we seek justice. Benu disappears. he seek atonement for his crimes. justice. Trixus is looking but ok. Attabre angry with Benu. diff --git a/data/2-pages/192.txt b/data/2-pages/192.txt index 5235304..aee462c 100644 --- a/data/2-pages/192.txt +++ b/data/2-pages/192.txt @@ -25,7 +25,7 @@ Go through hole which has been dug by Geldrin. Enter the grounds. Invar looks into a window & disappears. Geldrin disintegrates the door & has a vision -of Valentinheide killing Emi's wife. +of Valentinhide killing Emi's wife. Dirk disappears - Banished. Geldrin appears to be enrolling in mage school. (Acroneth, Crindler, Belocoose, Sphynx on another plane.) diff --git a/data/2-pages/198.txt b/data/2-pages/198.txt index b13378d..77628dd 100644 --- a/data/2-pages/198.txt +++ b/data/2-pages/198.txt @@ -34,7 +34,7 @@ Bright - low sky. Valentenhule - high sky & when lesser races were made Bright grew close to them & enjoyed playing with them. But Valentenhule was haughty & grew to enjoy harm to the beings & both grew from their -Valententhides position in the high/dark sky caused the void +Valentinhides position in the high/dark sky caused the void to open. Bright position in the low sky witnessed the humans be enslaved by the ice elementals & when they broke free she awarded them for it. diff --git a/data/2-pages/200.txt b/data/2-pages/200.txt index 74cadee..20c4bc0 100644 --- a/data/2-pages/200.txt +++ b/data/2-pages/200.txt @@ -19,17 +19,17 @@ Agree to go with them. Tallith didn't hire the Janitor for nothing - he used to work with the elves. -Valententhides - says her sister's magic protects us for now. +Valentinhides - says her sister's magic protects us for now. Hannah - priestess of Attabre - thinks the elves have the same magic as the [?]. Open a door to a dark corridor. -- Valententhide says we shouldn't have seen this. Bright +- Valentinhide says we shouldn't have seen this. Bright has shown us too much. We shouldn't even see Hannah as she has been wiped from time & space. Everard enters & we follow in the corridor & close the door. -Valententhide hovers over us & lets go of Hannah. +Valentinhide hovers over us & lets go of Hannah. Opens into a janitor's closet - Reborn stone? Throw a coin into Bright statue & door disappears. - Dirk party - appears at a bathhouse room - human - Blackhold - diff --git a/data/2-pages/201.txt b/data/2-pages/201.txt index 3539372..0bdca9a 100644 --- a/data/2-pages/201.txt +++ b/data/2-pages/201.txt @@ -29,7 +29,7 @@ in the cave - don't even remember her name. Noxia glob - some of the rest has returned home - Magic doors now feel cold. -Go through the door & see shadows of Valententhides face. +Go through the door & see shadows of Valentinhides face. Feel like we are being pulled up. Get out of the door & other side of the barrier to the room above the air common room. diff --git a/data/2-pages/205.txt b/data/2-pages/205.txt index c87d2f8..7eb89a2 100644 --- a/data/2-pages/205.txt +++ b/data/2-pages/205.txt @@ -29,7 +29,7 @@ Try broom again on the floor - seems to come out in a cathedral & the door is in the ceiling - Morgana tries to detect Dirk's dad & feels like we are in Hartwall. Strange wood & vacuum feel - the holes have now gone?? -Morgana tries to leave note saying we may have left Valententhides +Morgana tries to leave note saying we may have left Valentinhides home. Sees her & yelps - asks if she is the lord Squall - tells him to go warn someone. diff --git a/data/2-pages/207.txt b/data/2-pages/207.txt index 0a68db7..8a05887 100644 --- a/data/2-pages/207.txt +++ b/data/2-pages/207.txt @@ -17,7 +17,7 @@ to Evocation. Floor of the corridor between 3rd dorm & main hall seems to be covered in 4 rays from different areas: -- Dunensend - Orange with stained glass effect showing Garadwal +- Dunensend - Orange with stained glass effect showing Garadul at one angle & can see the word "Terror". - Another copper with perfect concentric circles. - Another fur - white - like dog fur (Kite/ghost fur). diff --git a/data/2-pages/211.txt b/data/2-pages/211.txt index 9f4badb..5e4bdb9 100644 --- a/data/2-pages/211.txt +++ b/data/2-pages/211.txt @@ -34,7 +34,7 @@ A cat horned flesh bag. - Morgana - body starts to form on the floor - elven body, male, greenish hair. He feels a lot of divine energy. - Says his name is Garadwal! + Says his name is Garadul! Supplemental map / diagram: - Grand floor (?) / 1st floor. diff --git a/data/2-pages/212.txt b/data/2-pages/212.txt index f4b7edc..6781b0c 100644 --- a/data/2-pages/212.txt +++ b/data/2-pages/212.txt @@ -9,14 +9,14 @@ he last remembers. Tell him what has happened to him. He seems to be good now. -When Benn banished Garadwal he wasn't where he +When Benn banished Garadul he wasn't where he thought he would be. Morgana thinks a lot of -Garadwal was in the vulture body. +Garadul was in the vulture body. Emeraldus - one of his children? - Decide to call him Groot for now. - Go back to the basement. -Garadwal senses spirits protect this area. +Garadul senses spirits protect this area. Put the orbs into the relevant slots - slight glow. Some shining on the locked door, but nothing else happens. diff --git a/data/2-pages/213.txt b/data/2-pages/213.txt index 788eb0b..d46522d 100644 --- a/data/2-pages/213.txt +++ b/data/2-pages/213.txt @@ -35,9 +35,9 @@ an illusion toad appears next to her with something in its mouth. Geldrin appears in a dark room in front of Kasha's throne -& she wants to claim her debt for Garadwal & wants +& she wants to claim her debt for Garadul & wants him like him as is her [unclear: father]. Back in the room & his bag starts dripping blood. -Tells Garadwal Kasha wants his soul. +Tells Garadul Kasha wants his soul. Investigates the non glowing orb & there is a tiny scratch in it. diff --git a/data/2-pages/214.txt b/data/2-pages/214.txt index 8e6fd34..f02c576 100644 --- a/data/2-pages/214.txt +++ b/data/2-pages/214.txt @@ -17,7 +17,7 @@ dragging the mermaid we rescued. Dirk asks why he's here & it replies because you have seen me & now it will be your end. -Garadwal removes Morgana's feeble mind. She sees +Garadul removes Morgana's feeble mind. She sees 2 storm rubyeyes before coming back to herself. - Remove the salt orb & the prison door shuts. diff --git a/data/2-pages/215.txt b/data/2-pages/215.txt index 45ed089..9dc9b56 100644 --- a/data/2-pages/215.txt +++ b/data/2-pages/215.txt @@ -14,12 +14,12 @@ Dunnen Door - Statue of Sierra is in one piece. Lodest surrounded by vulture men & Anastasia is chained up. Lodest hunts him in. -Another door - having a nice stroll & heading towards Valententhide's +Another door - having a nice stroll & heading towards Valentinhide's prison with purpose. Shock it & doesn't seem to notice & continues towards the door to the prison. Door glows. Morgana hits the mermaid & we take damage. -Dirk, Garadwal, me & Morgana all protect the glowing +Dirk, Garadul, me & Morgana all protect the glowing thing in the rooms & wake up back in the original room. Geldrin & Invar also wake up. Dead! diff --git a/data/2-pages/217.txt b/data/2-pages/217.txt index fa2919a..6438d05 100644 --- a/data/2-pages/217.txt +++ b/data/2-pages/217.txt @@ -2,7 +2,7 @@ Page: 217 Source: data/1-source/IMG_9885.jpg Transcription: -Invar brings Garadwal out of feeble mind. +Invar brings Garadul out of feeble mind. Looks like he's in shock as now remembers everything. Needs to find his brothers & teleports away. diff --git a/data/2-pages/223.txt b/data/2-pages/223.txt index e4b3446..45b5281 100644 --- a/data/2-pages/223.txt +++ b/data/2-pages/223.txt @@ -14,7 +14,7 @@ Mirror hums - back of a female Lady hair - says she can take us there & is a friend. Voice is cold & wishes for the same thing we seek, & any debts she perceives will be repaid. -The end of all things - Valententhide! - will let +The end of all things - Valentinhide! - will let us use her pathways - wants the artifact & will come at the cost of some identities & some eyes & some pride. Shut her off. diff --git a/data/2-pages/225.txt b/data/2-pages/225.txt index 9a37398..9ad4ca6 100644 --- a/data/2-pages/225.txt +++ b/data/2-pages/225.txt @@ -17,7 +17,7 @@ the statue. Ornate door - long throne room. One throne Hartwall carved, crudely decorated with skulls. Dead elf & 6 skeletons. Pictures - copper mines / saintshrine / snowy mountain tops / lots of -people (portraits), silver hair / sphynx (Garadwal). +people (portraits), silver hair / sphynx (Garadul). One of Avalina, Argathum, Corundum, Argea? No Cetiosa. No obvious missing pictures. Males - um, females - ex. (random order but all aligned.) diff --git a/data/2-pages/234.txt b/data/2-pages/234.txt index 13cc731..e4f5ddc 100644 --- a/data/2-pages/234.txt +++ b/data/2-pages/234.txt @@ -8,7 +8,7 @@ Invisible handle removed, invisible. Creates on the design. Arc: go get tongs fr Morgana: second round, added feeling of writing on a piece of paper. Feel fear and resentment. Pull out a random piece of paper like I knew it was there: "Nope, not going there. Going to use grandson's old trick." Taotli? Find his picture in the flying room and the handle is inside. Charge it in the fire in the bedroom. -Put the handles in the wall. Wall goes into the floor. Archway in the back wall with a glass clock on it. Empty. Spear / Arrow of Sierra. A box in the middle. Coffin door open. Humanoid of the barrier from the prison room disappears. +Put the handles in the wall. Wall goes into the floor. Archway in the back wall with a glass clock on it. Empty. Sierra's arrows. A box in the middle. Coffin door open. Humanoid of the barrier from the prison room disappears. Control: three different effects when blown, once a day. Control water / song of thrumming / conjure elemental of water. Create water, breathe underwater, speak to animals (sea creatures), move underwater. diff --git a/data/2-pages/235.txt b/data/2-pages/235.txt index 4781478..683be3c 100644 --- a/data/2-pages/235.txt +++ b/data/2-pages/235.txt @@ -9,13 +9,13 @@ Day 47 Skygate-type portal has runes on it. Three seem like places: glittering-type word and a cryptic-type word. Can't do the third. Original something. Frost elemental prison runes have totally disappeared, as though they were not there in the first place. Very strange. -Diary: middle, fighting by Dunnen people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. +Diary: middle, fighting by Dunnen people. Her and Argentum want to help Garadul. Fight against elementals in the name of [Hafelius?]. Garadul had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. 18:00. Geldrin investigates the portal and works it out. 22:00. Diary: symbol similar to "glittering." They have hidden the whole place with them. Petty. Not sure how Argentum is taking it. Allegations against her were valid but extreme to take the city. -Taler on actual word for captive, talking about prisoners assembled. Them all. Others disagree with official alternatives. Bronze won't take her suggestion. Want alternative for Garadwal. Want to believe intentions were good but can't see the path anymore. +Taler on actual word for captive, talking about prisoners assembled. Them all. Others disagree with official alternatives. Bronze won't take her suggestion. Want alternative for Garadul. Want to believe intentions were good but can't see the path anymore. Arc asks Dothral to set it free. Teleport to frost prison. Blows ice all away. Elemental speaks to Dothral and says we want to come in and it stops blowing, head back inside. Lightning crackles in the distance. diff --git a/data/2-pages/238.txt b/data/2-pages/238.txt index 7c78774..c2a3d5b 100644 --- a/data/2-pages/238.txt +++ b/data/2-pages/238.txt @@ -8,7 +8,7 @@ Archway, same as Hartwall lab one. Prison symbol says "home." Table is made out of seaward stone. Veining seems to be a map but don't recognise the area. Hat stand. Cloak on it. Turns me invisible when I put it on. -Bookshelf full of books about the moon and one nursery rhyme book about Valententhide. One by unknown author: Palace of Valententhide, forged palace in deep sky. Has a domain outside of the mortal realms and has a palace on the crimson. Walls of faces she doesn't have. Unbreathable air unless you bring your own. When the gods were banished to another plane, she had a loophole to stay at this palace. +Bookshelf full of books about the moon and one nursery rhyme book about Valentinhide. One by unknown author: Palace of Valentinhide, forged palace in deep sky. Has a domain outside of the mortal realms and has a palace on the crimson. Walls of faces she doesn't have. Unbreathable air unless you bring your own. When the gods were banished to another plane, she had a loophole to stay at this palace. Geldrin feels urge to put the book on the table. Blue veins morph to look like the moon. @@ -18,4 +18,4 @@ Coat stand has some invisible eyes on it. Cloak, when invisible, has moving star Geldrin puts different books on the table. Ennuyé's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Ennuyé's soul? -Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadwal. +Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadul. diff --git a/data/2-pages/244.txt b/data/2-pages/244.txt index be47237..e198825 100644 --- a/data/2-pages/244.txt +++ b/data/2-pages/244.txt @@ -16,8 +16,8 @@ Hayhearn reminds guest rights and tries to arrest us. Aurum Prudence kicks off a See lots of people running to the chambers with papers. Emergency law-making meeting. -Go back to frost prison. Geldrin tries to turn the portal off and activates another location. Square black obsidian room with no doors. Geldrin finds a door and places a hand on it to open it. Opens to a black corridor: Valententhide's house. +Go back to frost prison. Geldrin tries to turn the portal off and activates another location. Square black obsidian room with no doors. Geldrin finds a door and places a hand on it to open it. Opens to a black corridor: Valentinhide's house. One charge left on the portal, shared between the portals and resets once a day. -Open portal and as we attempt to go through, see Valententhide. Pass out. Three go through the portal and it closes. Morgana hears me and feels cold hands on her shoulder. +Open portal and as we attempt to go through, see Valentinhide. Pass out. Three go through the portal and it closes. Morgana hears me and feels cold hands on her shoulder. diff --git a/data/2-pages/247.txt b/data/2-pages/247.txt index 52723ea..36f6ea6 100644 --- a/data/2-pages/247.txt +++ b/data/2-pages/247.txt @@ -8,7 +8,7 @@ Go to see the Dunnen people. Seem to get lots of respect. Elders come out to see There is a plan for us. They have seen the prophecy in the texts now uncovered. They know due to the convalescence of Benu he will be back but needs to pay for his misdeeds. -Heard words of their old protector made flesh anew (Garadwal). He had good and wanted to protect people. Not sure if they should accept him back as their protector. +Heard words of their old protector made flesh anew (Garadul). He had good and wanted to protect people. Not sure if they should accept him back as their protector. Find the Goliath strong-minded. Merfolk have retreated to the sea. Suppressed memories have horrified them, although spoke highly of us. diff --git a/data/2-pages/250.txt b/data/2-pages/250.txt index 7456861..5c1e6fe 100644 --- a/data/2-pages/250.txt +++ b/data/2-pages/250.txt @@ -6,11 +6,11 @@ Go with Wrath to a huge underground dwarven city. Lava ball contains a humongous elemental lava orb. Prisoner? King dwarf praying to the gods to keep orbs safe. -Female dwarf with massive ruby in her chest plate. Garadwal's body with a new owner? Earth elementals. +Female dwarf with massive ruby in her chest plate. Garadul's body with a new owner? Earth elementals. Female dwarf called Spindl (Rubyeye's auntie) has seen us before and knew we were coming. -"Garadwal" called us. We have come to help him. +"Garadul" called us. We have come to help him. Invar makes an offering to the lava orb. Invar opens a box with a tiny creature in it who jumps to the lava orb and tells him to go aid his friends. diff --git a/data/2-pages/254.txt b/data/2-pages/254.txt index 7de0dbe..2ae8b65 100644 --- a/data/2-pages/254.txt +++ b/data/2-pages/254.txt @@ -8,7 +8,7 @@ Goat urine covers them. Try to match up the armour with the statues. Fine glass dust in cracks of the stone. Diamond resurrection spell? Both Stoven and Stuart were imprisoned 20 years ago, only recently released, by us and another party. -Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valententhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. +Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valentinhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. Third door. Magical runes on the door knob, infernal-like writing in Ennuyé's lab. diff --git a/data/2-pages/255.txt b/data/2-pages/255.txt index afda98b..e7f85b9 100644 --- a/data/2-pages/255.txt +++ b/data/2-pages/255.txt @@ -14,6 +14,6 @@ Trying to tell who is missing as six dwarves in the main room and [uncertain: ?] Geldrin finds a loose stone, small ruby behind the wall to touch, eye-sized. Item isn't magical. Has a spell in it similar to the Knock spell. -Geldrin uses Skull of Iresmun to open the dome a tiny bit. Figure spins towards the hole. It is no one, wants to know if we are there to help it. It is lost, was part of Valententhide a long time ago but doesn't know what it is now. Thomas put it in the dome and took what was here. +Geldrin uses Skull of Iresmun to open the dome a tiny bit. Figure spins towards the hole. It is no one, wants to know if we are there to help it. It is lost, was part of Valentinhide a long time ago but doesn't know what it is now. Thomas put it in the dome and took what was here. Elemental planes were highway, made a pact and created the world, but still too much highway. Vessel of Divinity made them gods, beings of awe, and stripped some of it away and left the lostness behind. Can't be allowed to keep the vessel. Wants to help us and doesn't feel like its deceiving us will give us three questions to ask her. diff --git a/data/2-pages/256.txt b/data/2-pages/256.txt index 8b6700d..cd7d446 100644 --- a/data/2-pages/256.txt +++ b/data/2-pages/256.txt @@ -3,7 +3,7 @@ Source: data/1-source/IMG_9928.jpg Transcription: Questions: -- What will happen if Valententhide is reformed? +- What will happen if Valentinhide is reformed? - Why does everyone think Eliana is a Hartwall? Morgana gets a voice saying the vessel is theirs. @@ -26,4 +26,4 @@ Stoven and Stuart and Simon come into the prison shouting about their stuff bein Tendrils crawl over the daylight dome. Go back to the dwarf room. Simon is all pieced together and some weird stuff. -Don't like Valententhide and want her. Say no and try to persuade him they haven't fulfilled finding Rubyeye, so no. +Don't like Valentinhide and want her. Say no and try to persuade him they haven't fulfilled finding Rubyeye, so no. diff --git a/data/2-pages/258.txt b/data/2-pages/258.txt index 2d464f6..b6819d3 100644 --- a/data/2-pages/258.txt +++ b/data/2-pages/258.txt @@ -12,7 +12,7 @@ All of the prisons will release if the dome is removed. Geldrin has a plan. Takes out the broom for her to see her sister, Bridget. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridget and open a pathway to her domain. -Pathway opens and we decide we need to protect her, as by Valententhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. +Pathway opens and we decide we need to protect her, as by Valentinhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. Go through the door. diff --git a/data/2-pages/262.txt b/data/2-pages/262.txt index c5b3de7..f3b18fd 100644 --- a/data/2-pages/262.txt +++ b/data/2-pages/262.txt @@ -18,4 +18,4 @@ Realise we can move how we want to. Invar and Dotharl speed towards the storm. D Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." -Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valententhide, smash the orb, and release her to Bridget. +Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valentinhide, smash the orb, and release her to Bridget. diff --git a/data/2-pages/264.txt b/data/2-pages/264.txt index 936668c..caeac53 100644 --- a/data/2-pages/264.txt +++ b/data/2-pages/264.txt @@ -22,6 +22,6 @@ Male: General Tussil Pebblegrinder. Male: High Priest King, Calthid Metalshaper. -King is not happy with us for introducing, giving him Garadwal's armour. +King is not happy with us for introducing, giving him Garadul's armour. Thinks we summoned a creature of darkness. Blakedurn says that wasn't us. diff --git a/data/2-pages/271.txt b/data/2-pages/271.txt index 143e5f2..d4a55fc 100644 --- a/data/2-pages/271.txt +++ b/data/2-pages/271.txt @@ -12,10 +12,10 @@ Go to find the High Priest at Papa Marmaru. Guards try to stop us but we try to break through. Invar and Geldrin get through and the High Priest calls off the guards. They stop as one, odd. -High Priest is not the high priest any more. One of the gods: which one? Merocole. +High Priest is not the high priest any more. One of the gods: which one? Mericok. Cast Greater Restoration on high priest. Large smoke sphere, spidery legs, human-like face. Wants Papa Marmaru. -Invar offers Papa Marmaru his goblet. It asks if he wants this to happen. Sounds raspy: don't trust Merocole, Marmaru has chosen to be here, and looks after the dwarves. Leave him to it. +Invar offers Papa Marmaru his goblet. It asks if he wants this to happen. Sounds raspy: don't trust Mericok, Marmaru has chosen to be here, and looks after the dwarves. Leave him to it. Search for some explosives. diff --git a/data/2-pages/274.txt b/data/2-pages/274.txt index fdfb7c5..d04d88d 100644 --- a/data/2-pages/274.txt +++ b/data/2-pages/274.txt @@ -2,7 +2,7 @@ Page: 274 Source: data/1-source/IMG_9947.jpg Transcription: -Dotharl sees Valententhide reflected in Invar's armour. +Dotharl sees Valentinhide reflected in Invar's armour. We leave the room and see lots of doors and two "people" guarding? diff --git a/data/2-pages/275.txt b/data/2-pages/275.txt index efa44a8..b8aefe1 100644 --- a/data/2-pages/275.txt +++ b/data/2-pages/275.txt @@ -8,17 +8,17 @@ Go in and see eight statues around the room. Salana's runes are intact. -Garadwal and Valententhide runes are unlit; the rest are flickering. +Garadul and Valentinhide runes are unlit; the rest are flickering. Most of the monks are meandering around the room. -Dotharl looks at the Valententhide statue and thinks he just sees the statue, but it then attacks him. +Dotharl looks at the Valentinhide statue and thinks he just sees the statue, but it then attacks him. Geldrin investigates the statue and takes damage. The runes around it light up saying, "leave here." -Merocole has a tiny dwarf face carved into his mouth. +Mericok has a tiny dwarf face carved into his mouth. Geldrin fixes the runes on the prison. Goes to close them all except Keakis? on one of them, where Geldrin's fixing mark comes over and it works. diff --git a/data/2-pages/277.txt b/data/2-pages/277.txt index 2f05dd3..1b0bc88 100644 --- a/data/2-pages/277.txt +++ b/data/2-pages/277.txt @@ -2,13 +2,13 @@ Page: 277 Source: data/1-source/IMG_9950.jpg Transcription: -Valententhide and Garadwal were important; replacements think it was me who stopped them from tricking the statues. +Valentinhide and Garadul were important; replacements think it was me who stopped them from tricking the statues. "I thought my daughters would like it? Mama Hartwall??" The table was a trap. -Prisons look the same except Valententhide's shows symbol of Atlabre. Deactivated. Atlabre symbol not there before. +Prisons look the same except Valentinhide's shows symbol of Atlabre. Deactivated. Atlabre symbol not there before. Think the dome activation captured the sphynx brothers. @@ -28,6 +28,6 @@ Thinks Dirk looks like a Thrunglagen. He is looking for his spellbook. Found it in his room. Humorous: old Rivermeet headmaster. -Open the door to the teleport room and Barrier trapping Trixus, Benu, Garadwal, and Bynx. +Open the door to the teleport room and Barrier trapping Trixus, Benu, Garadul, and Bynx. Temporary Wisdom removed. diff --git a/data/2-pages/278.txt b/data/2-pages/278.txt index c6f3ddc..c22790e 100644 --- a/data/2-pages/278.txt +++ b/data/2-pages/278.txt @@ -6,7 +6,7 @@ Benu says they have news and have reunited in this dire hour. Thwarted many of their plans and things came to light after speaking to his dad. -Garadwal's mind is clearer and the way to repay his misdeeds is by helping us. His dad now trusts us after bringing his children back together. +Garadul's mind is clearer and the way to repay his misdeeds is by helping us. His dad now trusts us after bringing his children back together. Wizards seeking godhood all sought to live forever. Envy sought too much power and it corrupts him. @@ -16,7 +16,7 @@ Ancient helped? Something gave the ability to remove the emotions. We should bring down the dome, but what will become of the bad elementals? -Garadwal asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. +Garadul asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. Hartwall was part of his downfall and Argentum died defending his people. diff --git a/data/2-pages/281.txt b/data/2-pages/281.txt index c59cdff..3095d0d 100644 --- a/data/2-pages/281.txt +++ b/data/2-pages/281.txt @@ -26,4 +26,4 @@ Day 57 - Black Dragon City in The Underblame At 08:00, a council of all towns/states for a treaty to be signed? -Can ensure Salinas causes no issues. Agreed to get us to the Brass City. Scrolls. Charged shield crystal. Respite in his city. +Can ensure Salinus causes no issues. Agreed to get us to the Brass City. Scrolls. Charged shield crystal. Respite in his city. diff --git a/data/2-pages/284.txt b/data/2-pages/284.txt index 9aa06b2..7b880e6 100644 --- a/data/2-pages/284.txt +++ b/data/2-pages/284.txt @@ -8,7 +8,7 @@ Blue dragons and Trixus. Tapestry carpet with a sun that has a thick-set dwarf and a slender woman with a bow. -See a depiction of Garadwal talking to the Dunnen people with him. +See a depiction of Garadul talking to the Dunnen people with him. No evidence of a fire elemental living here. diff --git a/data/2-pages/309.txt b/data/2-pages/309.txt index 709ebda..542cf03 100644 --- a/data/2-pages/309.txt +++ b/data/2-pages/309.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9982.jpg Transcription: All started to become wary of the princes. May have made the wrong deals to keep the princes in check. -Leadus' dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. +Leedus' dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. Connection to my father has allowed to view pieces of my past, so knows most of it. Icefang gave us all vision. diff --git a/data/2-pages/317.txt b/data/2-pages/317.txt index 3e081b4..3c32c55 100644 --- a/data/2-pages/317.txt +++ b/data/2-pages/317.txt @@ -12,6 +12,6 @@ Write a sending stone to Queen Mooncoral but can't send it yet. Continue up to the second floor. Find a book on Attabre. Scientific description instead of religion. -Sphynxes listed as: Annadrazadey - dragon; Trixus - tabaxi; Bene - elves; Garadwal - Dunned (humans); Koko rem - dwarves. +Sphynxes listed as: Annadrazadey - dragon; Trixus - tabaxi; Bene - elves; Garadul - Dunned (humans); Koko rem - dwarves. Other gifts: merfolk - memory; gnomes - learning. Seeking gifts from Attabre: Goliaths; Avian. diff --git a/data/2-pages/326.txt b/data/2-pages/326.txt index 1afb12d..87002dd 100644 --- a/data/2-pages/326.txt +++ b/data/2-pages/326.txt @@ -6,7 +6,7 @@ Hathwall is well and been successful. Using Errol's to communicate, found another one to add to the collection. -Dunnens: Bone has returned, paid his penance, accompanied by Garadwal. Vulture people integrating well into the city. If going well after three years, they will be accepted as part of the Dunnens. +Dunnens: Bone has returned, paid his penance, accompanied by Garadul. Vulture people integrating well into the city. If going well after three years, they will be accepted as part of the Dunnens. Get a sending stone for Dirk's dad. diff --git a/data/2-pages/35.txt b/data/2-pages/35.txt index 1639150..f1281ac 100644 --- a/data/2-pages/35.txt +++ b/data/2-pages/35.txt @@ -14,13 +14,13 @@ death dome - came through hole made for poison water. hole hurts. [Monde? crossed out] (in the sea) [Elemental shelters ->] trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. -Powers death dome. Garadwal was one until he +Powers death dome. Garadul was one until he escaped. moon rock full create hole - two moons ago = scaly dragon with web fingers. goes through dome - blue/grey colour - [one formed crossed out] one big one with four arms - work with -poison water & Garadwal with tridents +poison water & Garadul with tridents - hole by cliff face at bottom of sea occasionally somebody/thing goes down to annoy @@ -28,9 +28,9 @@ the crystal 13:00 - head back to the town to speak to militia/guards. -* Salias - the guy our amulet is talking +* Salinus - the guy our amulet is talking about. - earth + water -- soon free like our master Garadwal - Sand earth & fire. +- soon free like our master Garadul - Sand earth & fire. Barrier is enslavement. * 8 altogether - soon find hidden lair of oppressors - used us as batteries. diff --git a/data/2-pages/37.txt b/data/2-pages/37.txt index 1f55e9e..dba89c0 100644 --- a/data/2-pages/37.txt +++ b/data/2-pages/37.txt @@ -30,10 +30,10 @@ The Basilisk went to check observatory - couldn't open the chest. & couldn't get in the golem underground room either. -Garadwal +Garadul prison at lake by lab? - ooze one. frozen near Rhinewatch - ice one -Garadwal - Sand? seems wrong as buried North +Garadul - Sand? seems wrong as buried North of Aegis-on-Sands is he an elemental? go speak to Elementarium guy in Seaward. diff --git a/data/2-pages/39.txt b/data/2-pages/39.txt index b3882f6..7a28d43 100644 --- a/data/2-pages/39.txt +++ b/data/2-pages/39.txt @@ -4,9 +4,9 @@ Source: data/1-source/IMG_5155.png Transcription: Arrange to meet back with him @ 9:30 -Dirk asks about Garadwal - he goes down to +Dirk asks about Garadul - he goes down to the chamber & retrieves a Dwarf Skull & asks -it the question about Garadwal +it the question about Garadul The information you seek is not for your kind he is imprisoned in the prison of the Sands Brutor Ruby Eye - knowledgeable being wizard of @@ -15,7 +15,7 @@ great power - Shows us the skull room - he talks to them for information -What would happen if Garadwal escaped? +What would happen if Garadul escaped? it would be bad indeed. The barrier would be weakened by the loss of one of the 8 he was the only void they could find. if one @@ -28,7 +28,7 @@ with it for his own means tampering with the containment device & if something happened to him it would be bad & cause the crack. Wizards didn't agree of their entrapment but they -all agreed Garadwal needed to be contained. +all agreed Garadul needed to be contained. ooze was a good one. ice & storm [crossed out] were put in the same chamber as land was tricky to be dug diff --git a/data/2-pages/56.txt b/data/2-pages/56.txt index 06e0ac7..7aaa433 100644 --- a/data/2-pages/56.txt +++ b/data/2-pages/56.txt @@ -42,6 +42,6 @@ mate & so did he, they then became the gods light & dark fought & because of this the physical - leaking elemental prisons -- Garadwal +- Garadul - void on the loose - shield crystal in the sea. diff --git a/data/2-pages/66.txt b/data/2-pages/66.txt index 85ba688..7493ae4 100644 --- a/data/2-pages/66.txt +++ b/data/2-pages/66.txt @@ -18,7 +18,7 @@ her out. 22:00 -Return to temple of Cierra. +Return to temple of Sierra. Huntsman has returned & comes over to us. * Huntmaster Thrune. @@ -35,9 +35,9 @@ before she tries to get it. she was herself into some thing & continue in that form. -Spear was a gift from a Huntsman of Cierra +Spear was a gift from a Huntsman of Sierra but it's actually an arrow and there were 5 -of them taken from Cierra's last battlefield. +of them taken from Sierra's last battlefield. Back to Pirates Pearls Plunder. diff --git a/data/2-pages/67.txt b/data/2-pages/67.txt index 3451940..09ca184 100644 --- a/data/2-pages/67.txt +++ b/data/2-pages/67.txt @@ -17,7 +17,7 @@ a crater but is in fact a black hole pulling in more buildings. hear a voice "where is he I know you hide him" horrible voice -Panic & hunt then wake up (looking for Garadwal??) Void! +Panic & hunt then wake up (looking for Garadul??) Void! - Just our room is cold. as the ice melted. a white dragonscale drops from the icicle. diff --git a/data/2-pages/68.txt b/data/2-pages/68.txt index e88b71c..f2e0424 100644 --- a/data/2-pages/68.txt +++ b/data/2-pages/68.txt @@ -7,7 +7,7 @@ Transcription: Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaws -- Wrath (Kolin) middle name - Request to look for the location of Garadwal +- Wrath (Kolin) middle name - Request to look for the location of Garadul when he gets to Black scale - Island - pass it & nothing seems to happen. diff --git a/data/2-pages/74.txt b/data/2-pages/74.txt index 1e0c432..7822a8c 100644 --- a/data/2-pages/74.txt +++ b/data/2-pages/74.txt @@ -41,7 +41,7 @@ Dwarf - Rubyeye Halfling Enwi Dragon - Muttowh -Sphynx - Garadwal +Sphynx - Garadul commemorate: death of hephaestos exhalted of air diff --git a/data/2-pages/75.txt b/data/2-pages/75.txt index 8bddb59..1b081e1 100644 --- a/data/2-pages/75.txt +++ b/data/2-pages/75.txt @@ -7,7 +7,7 @@ Transcription: Rubodueul called for aid friend of Dunnen people 2 years later he returned with mages & defeated Hephaestos. -lamented not helping Gardolwal in his revenge +lamented not helping Garadul in his revenge when he learned a void (lieutenant) had escaped. he sought revenge. diff --git a/data/2-pages/76.txt b/data/2-pages/76.txt index cef478d..f392d24 100644 --- a/data/2-pages/76.txt +++ b/data/2-pages/76.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9737.jpg Transcription: Look behind pictures - Dirk looks uneasy. -Garadwal picture has a ring behind it +Garadul picture has a ring behind it apparently is dangerous. - Silver tries to get it golden band, ruby. looks familiar. Gem is smashed, arcane runes to me - Similar to Eno's ring - seems like hurt it is not quite powerful but it is broken. seems like a sentient ring. diff --git a/data/2-pages/78.txt b/data/2-pages/78.txt index 4903128..bd6d4b6 100644 --- a/data/2-pages/78.txt +++ b/data/2-pages/78.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9739.jpg Transcription: * Silver's defence mechanisms are extensive -* Silence when told her Gardwel escaped. +* Silence when told her Garadul escaped. * She in all ways holds Barrier / constructs / Silver in check. * Barrier shock might help to get Silver out of the body * Plan to trick Silver into opening the door. @@ -13,12 +13,12 @@ Transcription: Dirk manages to throw her into the barrier & destroys the Soul. Cardonal then takes over the construct. "Acore Iceland" - The Ancient One was her friend who tried to save her. 13:00 -Enwi's Apprentice seemed to be the end of Garadwal's Sanity. -Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Dunnen people. +Enwi's Apprentice seemed to be the end of Garadul's Sanity. +Garadul locked up as he consumed the void's lieutenant, slaughtering the rest of the Dunnen people. leader of Dunnen people. Alliance with the gods for the barrier to entrap the other "gods". -Dragon crashing into grand towers was enough to weaken the prisons enough for Garadwal to escape +Dragon crashing into grand towers was enough to weaken the prisons enough for Garadul to escape * Can provide codes for other teleport circles 7 prisons diff --git a/data/2-pages/79.txt b/data/2-pages/79.txt index 0cde49e..a5271e2 100644 --- a/data/2-pages/79.txt +++ b/data/2-pages/79.txt @@ -7,21 +7,21 @@ Additional Dwarven city has disappeared. Ruby eye Connection to both Dwarf city & Goliath city that are now missing? Elemental Princes - Pact with the gods who were worried, they would want extra power like the other elementals. -Salinas - salt +Salinus - salt limus vita - ooze - friendly Iceblus - ice - monster cow Arasarath - swirling humanoid dark cloud. -Merocole - Spider like - torso ball of smoke - thumping demon -Gardwel - Consumed 1 of the 2 void princes +Mericok - Spider like - torso ball of smoke - thumping demon +Garadul - Consumed 1 of the 2 void princes Papa I Meurina - Crab with 3 snake heads - magma Valententhidle - Extra precautions for her with Galetea (Automation) female human with ashen skin - but is faded & only thing visible is her eye. -Gardwal may not know where the other prisons are. +Garadul may not know where the other prisons are. - Contact her with fixed Enwi 14:00 -head to Garadwal Prison +head to Garadul Prison store room door into a smashed open ruins. runes scratched / torn near due acid burnt, lots of toys intertwined with copper, coins etc. rotting corpse smell. Dragon nest - Dark green black egg shells tiny dragon corpse falls out very green skin, hint black diff --git a/data/2-pages/80.txt b/data/2-pages/80.txt index 553536b..dbc93e6 100644 --- a/data/2-pages/80.txt +++ b/data/2-pages/80.txt @@ -6,7 +6,7 @@ Transcription: Inqueshwash - thinks Dirk tasty. & mother sent him to be eaten. made it back to -Void elemental blaming veridican dragonborn for Gardwel's escape +Void elemental blaming veridican dragonborn for Garadul's escape "Dragon" we originally known as the exiled 100's years ago. diff --git a/data/2-pages/82.txt b/data/2-pages/82.txt index 3958fb0..a46b04e 100644 --- a/data/2-pages/82.txt +++ b/data/2-pages/82.txt @@ -12,7 +12,7 @@ Dragon full names - Calemnis Bereth - Girth, literal green again. wife of death (veridican) 1st plot to get rid of certain cities -2nd to break out Garadwal. +2nd to break out Garadul. * Most of the townsfolk are Dragonborn & Ice dwarves. @@ -24,7 +24,7 @@ Grubins will take us to the Howling tombs @ 7am tomorrow Rubyeye - create own readout of the prison status - need humanized effigy of the spirit & runes drawn on it - connect it to the prison & connect it to the runes on the prison. Iceland & Arasarath prisons -* Arranged refugee camps for Garadwal's people +* Arranged refugee camps for Garadul's people * Could use Control Centre in Grand Tower (Accessible) * wheels from Ruby eye's lab. diff --git a/data/2-pages/83.txt b/data/2-pages/83.txt index d639e05..e0ee0f2 100644 --- a/data/2-pages/83.txt +++ b/data/2-pages/83.txt @@ -13,7 +13,7 @@ Coalment Invar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. -Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadwal. Infestus looks cross but stabs a coin into the portal & garadwal goes through. +Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadul. Infestus looks cross but stabs a coin into the portal & garadwal goes through. Me - Surrounded by baren desert, step back & fall into hole with dragon in (garadwal prison) landing on the dragon who flys out to the edge another abnormal dragon two heads & extra kind of wings & arm. They nuzzle & cackle. the ground opens next to them & then goes vertical & void says "where is he I know you know" diff --git a/data/2-pages/86.txt b/data/2-pages/86.txt index e0a33dc..7559701 100644 --- a/data/2-pages/86.txt +++ b/data/2-pages/86.txt @@ -7,9 +7,9 @@ Transcription: It says "Hopefully we'll catch some big ones" ! Kill it?! Advance to prison room - Mother threatens us. -Believe she is in Baytail accord with Garadwal +Believe she is in Baytail accord with Garadul -Limnuvela is dying - Energy has been syphoned. +Limusvita is dying - Energy has been syphoned. too much. Mother tried to absorb him, but he was too much for her - he is holding on to keep the barrier up. @@ -24,13 +24,13 @@ head to envi's lab door is shattered & bits of automaton scattered around the room & across the whole lab. -Garadwal was in the Blackscale yesterday. +Garadul was in the Blackscale yesterday. he's now back in the dome. Baytail Accord has kicked off in the last hour. Blackscale is using our kings as servants. Boss likes the barrier as it keeps his head in one -place. told Gardwal not to bring down the +place. told Garadul not to bring down the barrier. (lvl up!) diff --git a/data/2-pages/87.txt b/data/2-pages/87.txt index ecf0917..338666a 100644 --- a/data/2-pages/87.txt +++ b/data/2-pages/87.txt @@ -14,15 +14,15 @@ glowing parchment inside a glass dome under the water. sickly green flames from buildings in town - -lots of dead townsfolk. Garadwal hovering above +lots of dead townsfolk. Garadul hovering above * unnatural amount of rat poo on the harbour Mermaid of this city is in trouble Contact the void elemental - on his way. -Garadwal tries to find some thing +Garadul tries to find some thing -* 15 feet square in front of Garadwal is unnaturally empty +* 15 feet square in front of Garadul is unnaturally empty of debris - monstrosity is attacking the hatchery. @@ -36,6 +36,6 @@ elemental out. horrible boob covered form appears - The Mother? Send a message for help to The Basilisk he appears with a tabaxi & his boss -Garadwal teleports out +Garadul teleports out Void also disappears The Mother DIES!!! diff --git a/data/2-pages/91.txt b/data/2-pages/91.txt index 0b3c31d..daab110 100644 --- a/data/2-pages/91.txt +++ b/data/2-pages/91.txt @@ -19,7 +19,7 @@ Tiana Dreams - over many years they could be saved. many recently show who we are. -Plan to go to Salinas Statue to fix that +Plan to go to Salinus Statue to fix that Stay in tavern - Bounty of the Sea. Day 27 (Sunday) @@ -34,8 +34,8 @@ Helps Geldrin calculate the trajectory - will probably still hit Grand Towers if nothing happens. If we stop another it won't be on course ship 2. -Garadwal possibly setting up another plan. -- Cardenald to go to Salinas statue with Merfolk +Garadul possibly setting up another plan. +- Cardenald to go to Salinus statue with Merfolk & destroy it. Teleport to statue close to Dunensend diff --git a/data/2-pages/95.txt b/data/2-pages/95.txt index fec518b..d6ac53a 100644 --- a/data/2-pages/95.txt +++ b/data/2-pages/95.txt @@ -37,5 +37,5 @@ upon barrier creation will fix a prison to show us it will help us. Prisoners they hardly existed when it was imprisoned. -Pick Valenthide to fix first - geldrin sees him +Pick Valentinhide to fix first - geldrin sees him doing it - Solinavi prison still pulsing. diff --git a/data/3-days/day-06.md b/data/3-days/day-06.md index 3cb8964..f972eac 100644 --- a/data/3-days/day-06.md +++ b/data/3-days/day-06.md @@ -152,7 +152,7 @@ give it one of the Brass feathers to communicate with the master for an audience. [your] horned mechanical hellraiser sphinx creature. -- Garadwal? +- Garadul? Where is your army servant. We those guys instead... do not need to know wot co-ordinates required for triangulation need diff --git a/data/3-days/day-14.md b/data/3-days/day-14.md index 3e4e29b..9910838 100644 --- a/data/3-days/day-14.md +++ b/data/3-days/day-14.md @@ -105,13 +105,13 @@ death dome - came through hole made for poison water. hole hurts. [Monde? crossed out] (in the sea) [Elemental shelters ->] trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. -Powers death dome. Garadwal was one until he +Powers death dome. Garadul was one until he escaped. moon rock full create hole - two moons ago = scaly dragon with web fingers. goes through dome - blue/grey colour - [one formed crossed out] one big one with four arms - work with -poison water & Garadwal with tridents +poison water & Garadul with tridents - hole by cliff face at bottom of sea occasionally somebody/thing goes down to annoy @@ -119,9 +119,9 @@ the crystal 13:00 - head back to the town to speak to militia/guards. -* Salias - the guy our amulet is talking +* Salinus - the guy our amulet is talking about. - earth + water -- soon free like our master Garadwal - Sand earth & fire. +- soon free like our master Garadul - Sand earth & fire. Barrier is enslavement. * 8 altogether - soon find hidden lair of oppressors - used us as batteries. @@ -209,10 +209,10 @@ The Basilisk went to check observatory - couldn't open the chest. & couldn't get in the golem underground room either. -Garadwal +Garadul prison at lake by lab? - ooze one. frozen near Rhinewatch - ice one -Garadwal - Sand? seems wrong as buried North +Garadul - Sand? seems wrong as buried North of Aegis-on-Sands is he an elemental? go speak to Elementarium guy in Seaward. diff --git a/data/3-days/day-15.md b/data/3-days/day-15.md index 3ab6784..12e18cd 100644 --- a/data/3-days/day-15.md +++ b/data/3-days/day-15.md @@ -61,9 +61,9 @@ Source: data/1-source/IMG_5155.png Transcription: Arrange to meet back with him @ 9:30 -Dirk asks about Garadwal - he goes down to +Dirk asks about Garadul - he goes down to the chamber & retrieves a Dwarf Skull & asks -it the question about Garadwal +it the question about Garadul The information you seek is not for your kind he is imprisoned in the prison of the Sands Brutor Ruby Eye - knowledgeable being wizard of @@ -72,7 +72,7 @@ great power - Shows us the skull room - he talks to them for information -What would happen if Garadwal escaped? +What would happen if Garadul escaped? it would be bad indeed. The barrier would be weakened by the loss of one of the 8 he was the only void they could find. if one @@ -85,7 +85,7 @@ with it for his own means tampering with the containment device & if something happened to him it would be bad & cause the crack. Wizards didn't agree of their entrapment but they -all agreed Garadwal needed to be contained. +all agreed Garadul needed to be contained. ooze was a good one. ice & storm [crossed out] were put in the same chamber as land was tricky to be dug diff --git a/data/3-days/day-17.md b/data/3-days/day-17.md index 56b8e8c..cbe5b25 100644 --- a/data/3-days/day-17.md +++ b/data/3-days/day-17.md @@ -191,7 +191,7 @@ mate & so did he, they then became the gods light & dark fought & because of this the physical - leaking elemental prisons -- Garadwal +- Garadul - void on the loose - shield crystal in the sea. diff --git a/data/3-days/day-20.md b/data/3-days/day-20.md index 212e016..cc0aff3 100644 --- a/data/3-days/day-20.md +++ b/data/3-days/day-20.md @@ -240,7 +240,7 @@ her out. 22:00 -Return to temple of Cierra. +Return to temple of Sierra. Huntsman has returned & comes over to us. * Huntmaster Thrune. @@ -257,9 +257,9 @@ before she tries to get it. she was herself into some thing & continue in that form. -Spear was a gift from a Huntsman of Cierra +Spear was a gift from a Huntsman of Sierra but it's actually an arrow and there were 5 -of them taken from Cierra's last battlefield. +of them taken from Sierra's last battlefield. Back to Pirates Pearls Plunder. diff --git a/data/3-days/day-21.md b/data/3-days/day-21.md index 0f01ea3..39591e6 100644 --- a/data/3-days/day-21.md +++ b/data/3-days/day-21.md @@ -28,7 +28,7 @@ a crater but is in fact a black hole pulling in more buildings. hear a voice "where is he I know you hide him" horrible voice -Panic & hunt then wake up (looking for Garadwal??) Void! +Panic & hunt then wake up (looking for Garadul??) Void! - Just our room is cold. as the ice melted. a white dragonscale drops from the icicle. @@ -79,7 +79,7 @@ Transcription: Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaws -- Wrath (Kolin) middle name - Request to look for the location of Garadwal +- Wrath (Kolin) middle name - Request to look for the location of Garadul when he gets to Black scale - Island - pass it & nothing seems to happen. diff --git a/data/3-days/day-23.md b/data/3-days/day-23.md index e6ddea0..7610783 100644 --- a/data/3-days/day-23.md +++ b/data/3-days/day-23.md @@ -212,7 +212,7 @@ Dwarf - Rubyeye Halfling Enwi Dragon - Muttowh -Sphynx - Garadwal +Sphynx - Garadul commemorate: death of hephaestos exhalted of air @@ -227,7 +227,7 @@ Cardonal Rubodueul called for aid friend of Dunnen people 2 years later he returned with mages & defeated Hephaestos. -lamented not helping Gardolwal in his revenge +lamented not helping Garadul in his revenge when he learned a void (lieutenant) had escaped. he sought revenge. @@ -261,7 +261,7 @@ painted 314 years BD ## Page 76 Look behind pictures - Dirk looks uneasy. -Garadwal picture has a ring behind it +Garadul picture has a ring behind it apparently is dangerous. - Silver tries to get it golden band, ruby. looks familiar. Gem is smashed, arcane runes to me - Similar to Eno's ring - seems like hurt it is not quite powerful but it is broken. seems like a sentient ring. @@ -332,7 +332,7 @@ Nobody knows the city was there - Browning's doing. ## Page 78 * Silver's defence mechanisms are extensive -* Silence when told her Gardwel escaped. +* Silence when told her Garadul escaped. * She in all ways holds Barrier / constructs / Silver in check. * Barrier shock might help to get Silver out of the body * Plan to trick Silver into opening the door. @@ -341,12 +341,12 @@ Nobody knows the city was there - Browning's doing. Dirk manages to throw her into the barrier & destroys the Soul. Cardonal then takes over the construct. "Acore Iceland" - The Ancient One was her friend who tried to save her. 13:00 -Enwi's Apprentice seemed to be the end of Garadwal's Sanity. -Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Dunnen people. +Enwi's Apprentice seemed to be the end of Garadul's Sanity. +Garadul locked up as he consumed the void's lieutenant, slaughtering the rest of the Dunnen people. leader of Dunnen people. Alliance with the gods for the barrier to entrap the other "gods". -Dragon crashing into grand towers was enough to weaken the prisons enough for Garadwal to escape +Dragon crashing into grand towers was enough to weaken the prisons enough for Garadul to escape * Can provide codes for other teleport circles 7 prisons @@ -366,21 +366,21 @@ Additional Dwarven city has disappeared. Ruby eye Connection to both Dwarf city & Goliath city that are now missing? Elemental Princes - Pact with the gods who were worried, they would want extra power like the other elementals. -Salinas - salt +Salinus - salt limus vita - ooze - friendly Iceblus - ice - monster cow Arasarath - swirling humanoid dark cloud. -Merocole - Spider like - torso ball of smoke - thumping demon -Gardwel - Consumed 1 of the 2 void princes +Mericok - Spider like - torso ball of smoke - thumping demon +Garadul - Consumed 1 of the 2 void princes Papa I Meurina - Crab with 3 snake heads - magma Valententhidle - Extra precautions for her with Galetea (Automation) female human with ashen skin - but is faded & only thing visible is her eye. -Gardwal may not know where the other prisons are. +Garadul may not know where the other prisons are. - Contact her with fixed Enwi 14:00 -head to Garadwal Prison +head to Garadul Prison store room door into a smashed open ruins. runes scratched / torn near due acid burnt, lots of toys intertwined with copper, coins etc. rotting corpse smell. Dragon nest - Dark green black egg shells tiny dragon corpse falls out very green skin, hint black @@ -397,7 +397,7 @@ Dragon approaches - very muscular & odd looking - head is repulsive - no horns o Inqueshwash - thinks Dirk tasty. & mother sent him to be eaten. made it back to -Void elemental blaming veridican dragonborn for Gardwel's escape +Void elemental blaming veridican dragonborn for Garadul's escape "Dragon" we originally known as the exiled 100's years ago. diff --git a/data/3-days/day-25.md b/data/3-days/day-25.md index 19dcd03..d9b486a 100644 --- a/data/3-days/day-25.md +++ b/data/3-days/day-25.md @@ -46,7 +46,7 @@ Dragon full names - Calemnis Bereth - Girth, literal green again. wife of death (veridican) 1st plot to get rid of certain cities -2nd to break out Garadwal. +2nd to break out Garadul. * Most of the townsfolk are Dragonborn & Ice dwarves. @@ -58,7 +58,7 @@ Grubins will take us to the Howling tombs @ 7am tomorrow Rubyeye - create own readout of the prison status - need humanized effigy of the spirit & runes drawn on it - connect it to the prison & connect it to the runes on the prison. Iceland & Arasarath prisons -* Arranged refugee camps for Garadwal's people +* Arranged refugee camps for Garadul's people * Could use Control Centre in Grand Tower (Accessible) * wheels from Ruby eye's lab. diff --git a/data/3-days/day-26.md b/data/3-days/day-26.md index fc33b9e..1f05e8e 100644 --- a/data/3-days/day-26.md +++ b/data/3-days/day-26.md @@ -36,7 +36,7 @@ Coalment Invar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. -Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadwal. Infestus looks cross but stabs a coin into the portal & garadwal goes through. +Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadul. Infestus looks cross but stabs a coin into the portal & garadwal goes through. Me - Surrounded by baren desert, step back & fall into hole with dragon in (garadwal prison) landing on the dragon who flys out to the edge another abnormal dragon two heads & extra kind of wings & arm. They nuzzle & cackle. the ground opens next to them & then goes vertical & void says "where is he I know you know" @@ -127,9 +127,9 @@ Through the doors is a golem made of all It says "Hopefully we'll catch some big ones" ! Kill it?! Advance to prison room - Mother threatens us. -Believe she is in Baytail accord with Garadwal +Believe she is in Baytail accord with Garadul -Limnuvela is dying - Energy has been syphoned. +Limusvita is dying - Energy has been syphoned. too much. Mother tried to absorb him, but he was too much for her - he is holding on to keep the barrier up. @@ -144,13 +144,13 @@ head to envi's lab door is shattered & bits of automaton scattered around the room & across the whole lab. -Garadwal was in the Blackscale yesterday. +Garadul was in the Blackscale yesterday. he's now back in the dome. Baytail Accord has kicked off in the last hour. Blackscale is using our kings as servants. Boss likes the barrier as it keeps his head in one -place. told Gardwal not to bring down the +place. told Garadul not to bring down the barrier. (lvl up!) @@ -168,15 +168,15 @@ glowing parchment inside a glass dome under the water. sickly green flames from buildings in town - -lots of dead townsfolk. Garadwal hovering above +lots of dead townsfolk. Garadul hovering above * unnatural amount of rat poo on the harbour Mermaid of this city is in trouble Contact the void elemental - on his way. -Garadwal tries to find some thing +Garadul tries to find some thing -* 15 feet square in front of Garadwal is unnaturally empty +* 15 feet square in front of Garadul is unnaturally empty of debris - monstrosity is attacking the hatchery. @@ -188,7 +188,7 @@ manage to kick the runes away & let the void horrible boob covered form appears - The Mother? Send a message for help to The Basilisk he appears with a tabaxi & his boss -Garadwal teleports out +Garadul teleports out Void also disappears The Mother DIES!!! @@ -327,5 +327,5 @@ Tiana Dreams - over many years they could be saved. many recently show who we are. -Plan to go to Salinas Statue to fix that +Plan to go to Salinus Statue to fix that Stay in tavern - Bounty of the Sea. diff --git a/data/3-days/day-27.md b/data/3-days/day-27.md index 832bbd3..3d588a4 100644 --- a/data/3-days/day-27.md +++ b/data/3-days/day-27.md @@ -42,8 +42,8 @@ Helps Geldrin calculate the trajectory - will probably still hit Grand Towers if nothing happens. If we stop another it won't be on course ship 2. -Garadwal possibly setting up another plan. -- Cardenald to go to Salinas statue with Merfolk +Garadul possibly setting up another plan. +- Cardenald to go to Salinus statue with Merfolk & destroy it. Teleport to statue close to Dunensend @@ -213,7 +213,7 @@ upon barrier creation will fix a prison to show us it will help us. Prisoners they hardly existed when it was imprisoned. -Pick Valenthide to fix first - geldrin sees him +Pick Valentinhide to fix first - geldrin sees him ## Page 96 diff --git a/data/3-days/day-28.md b/data/3-days/day-28.md index 62c6cba..fa2d0ff 100644 --- a/data/3-days/day-28.md +++ b/data/3-days/day-28.md @@ -57,7 +57,7 @@ Darkness, Excellence ## Page 101 - Controls the overseer - Cardenald should be - separate to the mainframe. Double locked: Valenthide + separate to the mainframe. Double locked: Valentinhide prison & automaton guard. by Pride's prison isn't connected to the barrier diff --git a/data/3-days/day-29.md b/data/3-days/day-29.md index dd7940d..3934485 100644 --- a/data/3-days/day-29.md +++ b/data/3-days/day-29.md @@ -44,7 +44,7 @@ goat head sphinx 6 legged cat like creature with braided beard, egyptian headdress lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen style clothes (honour guard style) each side. -Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. +Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Garadul failed. Think his brother is looking for him. Goliaths came to him asking for help to trap his brother. we will protect him if we escort him to see the Dunnen people. Doesn't want to go to Dunensend after we told him about the automaton - may have something to show faith diff --git a/data/3-days/day-30.md b/data/3-days/day-30.md index 17055fe..8e4bcb5 100644 --- a/data/3-days/day-30.md +++ b/data/3-days/day-30.md @@ -40,7 +40,7 @@ moon shard in the sea - Invar retrieved it & tried to take it back to ground tow Huan survived - ship missing - Census / Hydratrox. Our Council members on their way to Highden. -Wrath to Valenthide. +Wrath to Valentinhide. Xinquss to shield crystal. Benu staying in Dunensend will build a temple in city. @@ -62,8 +62,8 @@ can fix Errol. ## Page 107 -Salinay sealed - barrier energy depleted. -- Valententhide is the cause of that. +Salinus sealed - barrier energy depleted. +- Valentinhide is the cause of that. Betrayer - will be working on another Body - take 20-30 days. @@ -82,7 +82,7 @@ The Guilt is an excellence!! Browning's lab near Craters edge. -Magical defenses against Valententhide. Counterspell. +Magical defenses against Valentinhide. Counterspell. Message to The Basilisk to say guilt is Excellence & ask for mage help with Wrath. @@ -105,7 +105,7 @@ Geldrin tries to find valententhide or goliath city in the library. scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunensend. Master Shined glass. Goliath Capital - Ashktioth. Tradesmall - Goliath town. -Valententhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). +Valentinhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). Army leaves @ 16:00. 16:00! diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md index 780c2a7..b79cb13 100644 --- a/data/3-days/day-32.md +++ b/data/3-days/day-32.md @@ -46,7 +46,7 @@ Earthwise. one I know. Decide to travel to Hartwall - Rift block. Statue to Lan (Earth god to love, home & family) outside Hartwall - teleport there. on target. -Statue of Lan is very similar in style to the Statue of Serva. +Statue of Lan is very similar in style to the Statue of Sierra. 2 guards - human & half elf - city is fine - Lady Elissa Hartwall still injured. Lady Freya in attendance in the city. @@ -134,7 +134,7 @@ image of someone lowering a rope down a hole 35g for too much jewellery < human male Lot 19 obsidian & bone statue - crab claw & talon shielding Throngore -over a featherless female - "Valententide's Betrayal" 140g +over a featherless female - "Valentinhide's Betrayal" 140g Raven 1 ## Page 115 @@ -455,7 +455,7 @@ true form. - was assaulted when he came to the god meeting. - mortals -- Valententide was attacked by Throngore - Darkness +- Valentinhide was attacked by Throngore - Darkness 525 years before the veridian dragonborns - dragons fighting diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md index 621954c..29c7911 100644 --- a/data/3-days/day-36.md +++ b/data/3-days/day-36.md @@ -172,7 +172,7 @@ left town, he's back in his room. The explosions where the Guilt's bosses guardsman - the reason he's unconscious is the reason for the explosions. The boss (Pride) -has been eaten. (Garadwal!!) +has been eaten. (Garadul!!) We are much the same as her as just work for someone. @@ -234,7 +234,7 @@ their infertility. Not yet confirm." Big flash - Rubyeye appears. - Valenth still repairing. - Valenth & Ruby eye have been convalescing. -asks about the crystal shell - told him we off it +asks about the Skull of Tremon - told him we off it at Hartwall. Doesn't know about Envy. @@ -243,7 +243,7 @@ lots of giants rampaging at his clan's settlement. Asks about Lady Envy ??? & lady Hartwall. Made some enemies but the dome is proof of his efforts. -Wants to retrieve the shell of [uncertain: Tremoon]. doesn't want +Wants to retrieve the Skull of Tremon. doesn't want it falling into the wrong hands. More interested in it than he is telling on. @@ -337,7 +337,7 @@ garadwal. speaking through his greater gravel children. garadwal locked downstairs here him when it are ready walked into Browning's trap. -Rubyeye says they will sort Garadwal out like Browning +Rubyeye says they will sort Garadul out like Browning is his boss... Rubyeye knows what is good for him. ## Page 137 @@ -358,7 +358,7 @@ yes use them as cattle wherever we are done throws blanket over as Valenth walks in. Geldrin back - was on floor 98 found Browning. -Need to get out of here now. tell us about Garadwal. +Need to get out of here now. tell us about Garadul. Hear an alarm - 4 golems appear in the circles - run back down the corridor @@ -822,8 +822,8 @@ Water Elementals say we need to agree to free Icefang Ice elemental in the prison at Rimewock, Geldrin summon the void elemental to help us -says we will owe him another favour as Garadwel -Garadwel revenge is the previous favour - +says we will owe him another favour as Garadul +Garadul revenge is the previous favour - - Do not free Valentenhide & let Kasher Reign - Not oppose Kasher - will bring somebody else to the fight - Agree to the water Elemental. @@ -867,7 +867,7 @@ my child what is it you wish" dispel dragon magic. "Only just put it on and took him as payment" "watched him with great interest since hatching didn't" "have some of the other deals caused you" No but taking the mother down -was, offers to give her Garadwel. She agrees & +was, offers to give her Garadul. She agrees & Geldrin chants & soots flames vanish & bones scatter. I Breath weapon the dragon head. Water elemental retrieves Icefang & lays him on @@ -1040,7 +1040,7 @@ Water - Continue down the stream leaving the statue behind river & approaches a barrier of sort. doesn't hurt to touch. cruched. -Land Mention Garaduel's plans & Anthrosite +Land Mention Garadul's plans & Anthrosite states he will allow us in to use the Portal to speak to infestus. Didn't kill us on sight as Geldrin wears the diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index 2bcdb77..f91756a 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -218,7 +218,7 @@ path. Elderly human man, looks sad, rubs beard & back in room - Royal room - mess Hall? - feels like honoured guard space old pictures on the wall one out of place of -Benu / Guradwal / Goat headed sphinx +Benu / Garadul / Goat headed sphinx back - to the Warriors of the Lion from the Dunemin backing & canvas comes apart - 2 large feathers tied the the top with orange & blue feathers @@ -496,9 +496,9 @@ dragon. - take copper dragon down & put Tixun's hand on her head - he has a brief stir & recognition but stays asleep. -- Library - book on Benu, Garadwal & Trixus - last 3 of Attabre's +- Library - book on Benu, Garadul & Trixus - last 3 of Attabre's children who walk on the earth. - came from -Fire Gardwell looked after the Dumnen's - enjoyed the +Fire Garadul looked after the Dumnen's - enjoyed the gifts. - Igrine gave them the gifts to heal their people Trixus - helped to create Brass city - Tabaxi, confused @@ -598,7 +598,7 @@ Send a message to The Basilisk about Perodita heading to Hartwall - Didn't send us outside the Barrier. -Gardwal getting stronger inside the barrier at +Garadul getting stronger inside the barrier at Gravel basers. 1 hr 35 mins diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index 6c24774..0c40c15 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -127,12 +127,12 @@ drawn of a pale dwarf with black dreadlocks with a crown. The picture smudges and words say "One more glance a death dance" Geldrin - how do you wake Trixus? -A picture appears of Benu & Trixus & Garadwel with 2 sphinx behind +A picture appears of Benu & Trixus & Garadul with 2 sphinx behind them - "a family reunited" is written underneath One Sphinx is just an outline. Geldrin then hears a whisper in his ear "one brief look - last breath Took" -Geldrin turns round - sees a featureless woman (Valentenshide) +Geldrin turns round - sees a featureless woman (Valentinhide) reflected in Invar's armor & he collapse to the floor. Book written by Benu. @@ -150,7 +150,7 @@ Benu's family names: missing one - no name given Anadreste Benu - Gardwel - name hidden on the page + Garadul - name hidden on the page Trixus I feel a hand on my hand - nothing there @@ -176,7 +176,7 @@ reminds us of Dumnensend & a kids poetry book Morgana has the book last poem in the book is that one - 2nd to last is a -council meeting with plans to take out Valentenshide +council meeting with plans to take out Valentinhide Golden dragon born looks for Dwarven lost cities. finds 2 books - written by a scholar - Lord Hawthorn @@ -285,10 +285,10 @@ Options: Dwarves find out what is going on with Grand Towers -use Gardwell's feather to speak to him. +use Garadul's feather to speak to him. Feather is a one person walkie talkie. -Try to speak to Garadwel - it vibrates & chill in the +Try to speak to Garadul - it vibrates & chill in the air - calls as his allies - huge we came to see the errors of our ways - "he has kept them here - barrier is his - Betrayer sits amongst us (daughter) @@ -310,11 +310,11 @@ Benu failed as abandoned his post - Trixus didn't as he didn't abandon his post. Dad - -Tells Garadwell the Vulture men are back at +Tells Garadul the Vulture men are back at Dumnensend and Hephestos is still alive... Quick update - via sending stone - Grand Towers dome -is down - Garadwell probably gone to Ashkhellion. +is down - Garadul probably gone to Ashkhellion. Do we go to Ashkhellion & get Benu first? Go to the library to speak to the Vulture Man. goes to get his sending stone to speak to Ashtrigwos @@ -338,14 +338,14 @@ humanoid is the size of the tower & wakes Trixus Steven not in his barrier -Benu lands between us & Trixus/Garadwal (Trixus still in barrier) -Ask Gardwel to lay down his weapons & he refuses -Try to get the dome opener & Garadwal kills me. -Benu attacks Garadwal. Geldrin uses tremor skill to release Trixus. -revive me & see Valentenshide manage to look away. -Benu & Garadwal break through the walls & fight -outside. - fight ensues - Garadwal is banished 5:00 -Benu tells Trixus what has happened to Garadwal. Trixus +Benu lands between us & Trixus/Garadul (Trixus still in barrier) +Ask Garadul to lay down his weapons & he refuses +Try to get the dome opener & Garadul kills me. +Benu attacks Garadul. Geldrin uses tremor skill to release Trixus. +revive me & see Valentinhide manage to look away. +Benu & Garadul break through the walls & fight +outside. - fight ensues - Garadul is banished 5:00 +Benu tells Trixus what has happened to Garadul. Trixus asks where Benu was when his people were in trouble. Dark clouds above the dune - Perodita appears but looks very bedraggled compared to a day ago. Says she will get back @@ -360,15 +360,15 @@ so we will let him out. wants to give us a piece of information to help him get out. was asked to attack the dome. ?Browning? -Need to save Garadwel +Need to save Garadul Trixus says Trixus & Benu transform into humanoids to go to -the shrine room to see if they can check if Garadwel +the shrine room to see if they can check if Garadul is there Ask a Brass city Platinum to the offering bowl to help with communicate with the god. -Attabre comes through - Garadwal is not with him. +Attabre comes through - Garadul is not with him. what do we seek. we seek justice. Benu disappears. he seek atonement for his crimes. justice. Trixus is looking but ok. Attabre angry with Benu. diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md index 20b56fc..ad7cb33 100644 --- a/data/3-days/day-44.md +++ b/data/3-days/day-44.md @@ -107,7 +107,7 @@ Go through hole which has been dug by Geldrin. Enter the grounds. Invar looks into a window & disappears. Geldrin disintegrates the door & has a vision -of Valentinheide killing Emi's wife. +of Valentinhide killing Emi's wife. Dirk disappears - Banished. Geldrin appears to be enrolling in mage school. (Acroneth, Crindler, Belocoose, Sphynx on another plane.) @@ -345,7 +345,7 @@ Bright - low sky. Valentenhule - high sky & when lesser races were made Bright grew close to them & enjoyed playing with them. But Valentenhule was haughty & grew to enjoy harm to the beings & both grew from their -Valententhides position in the high/dark sky caused the void +Valentinhides position in the high/dark sky caused the void to open. Bright position in the low sky witnessed the humans be enslaved by the ice elementals & when they broke free she awarded them for it. @@ -403,17 +403,17 @@ Agree to go with them. Tallith didn't hire the Janitor for nothing - he used to work with the elves. -Valententhides - says her sister's magic protects us for now. +Valentinhides - says her sister's magic protects us for now. Hannah - priestess of Attabre - thinks the elves have the same magic as the [?]. Open a door to a dark corridor. -- Valententhide says we shouldn't have seen this. Bright +- Valentinhide says we shouldn't have seen this. Bright has shown us too much. We shouldn't even see Hannah as she has been wiped from time & space. Everard enters & we follow in the corridor & close the door. -Valententhide hovers over us & lets go of Hannah. +Valentinhide hovers over us & lets go of Hannah. Opens into a janitor's closet - Reborn stone? Throw a coin into Bright statue & door disappears. - Dirk party - appears at a bathhouse room - human - Blackhold - @@ -448,7 +448,7 @@ in the cave - don't even remember her name. Noxia glob - some of the rest has returned home - Magic doors now feel cold. -Go through the door & see shadows of Valententhides face. +Go through the door & see shadows of Valentinhides face. Feel like we are being pulled up. Get out of the door & other side of the barrier to the room above the air common room. diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md index 964eacf..641e11c 100644 --- a/data/3-days/day-46.md +++ b/data/3-days/day-46.md @@ -75,7 +75,7 @@ Try broom again on the floor - seems to come out in a cathedral & the door is in the ceiling - Morgana tries to detect Dirk's dad & feels like we are in Hartwall. Strange wood & vacuum feel - the holes have now gone?? -Morgana tries to leave note saying we may have left Valententhides +Morgana tries to leave note saying we may have left Valentinhides home. Sees her & yelps - asks if she is the lord Squall - tells him to go warn someone. @@ -138,7 +138,7 @@ to Evocation. Floor of the corridor between 3rd dorm & main hall seems to be covered in 4 rays from different areas: -- Dunensend - Orange with stained glass effect showing Garadwal +- Dunensend - Orange with stained glass effect showing Garadul at one angle & can see the word "Terror". - Another copper with perfect concentric circles. - Another fur - white - like dog fur (Kite/ghost fur). @@ -306,7 +306,7 @@ A cat horned flesh bag. - Morgana - body starts to form on the floor - elven body, male, greenish hair. He feels a lot of divine energy. - Says his name is Garadwal! + Says his name is Garadul! Supplemental map / diagram: - Grand floor (?) / 1st floor. @@ -324,14 +324,14 @@ he last remembers. Tell him what has happened to him. He seems to be good now. -When Benn banished Garadwal he wasn't where he +When Benn banished Garadul he wasn't where he thought he would be. Morgana thinks a lot of -Garadwal was in the vulture body. +Garadul was in the vulture body. Emeraldus - one of his children? - Decide to call him Groot for now. - Go back to the basement. -Garadwal senses spirits protect this area. +Garadul senses spirits protect this area. Put the orbs into the relevant slots - slight glow. Some shining on the locked door, but nothing else happens. @@ -386,10 +386,10 @@ an illusion toad appears next to her with something in its mouth. Geldrin appears in a dark room in front of Kasha's throne -& she wants to claim her debt for Garadwal & wants +& she wants to claim her debt for Garadul & wants him like him as is her [unclear: father]. Back in the room & his bag starts dripping blood. -Tells Garadwal Kasha wants his soul. +Tells Garadul Kasha wants his soul. Investigates the non glowing orb & there is a tiny scratch in it. @@ -410,7 +410,7 @@ dragging the mermaid we rescued. Dirk asks why he's here & it replies because you have seen me & now it will be your end. -Garadwal removes Morgana's feeble mind. She sees +Garadul removes Morgana's feeble mind. She sees 2 storm rubyeyes before coming back to herself. - Remove the salt orb & the prison door shuts. @@ -448,12 +448,12 @@ Dunnen Door - Statue of Sierra is in one piece. Lodest surrounded by vulture men & Anastasia is chained up. Lodest hunts him in. -Another door - having a nice stroll & heading towards Valententhide's +Another door - having a nice stroll & heading towards Valentinhide's prison with purpose. Shock it & doesn't seem to notice & continues towards the door to the prison. Door glows. Morgana hits the mermaid & we take damage. -Dirk, Garadwal, me & Morgana all protect the glowing +Dirk, Garadul, me & Morgana all protect the glowing thing in the rooms & wake up back in the original room. Geldrin & Invar also wake up. Dead! @@ -516,7 +516,7 @@ Bubble around the elf & Mercy pulls through the blade. ## Page 217 -Invar brings Garadwal out of feeble mind. +Invar brings Garadul out of feeble mind. Looks like he's in shock as now remembers everything. Needs to find his brothers & teleports away. @@ -752,7 +752,7 @@ Mirror hums - back of a female Lady hair - says she can take us there & is a friend. Voice is cold & wishes for the same thing we seek, & any debts she perceives will be repaid. -The end of all things - Valententhide! - will let +The end of all things - Valentinhide! - will let us use her pathways - wants the artifact & will come at the cost of some identities & some eyes & some pride. Shut her off. diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index e443df1..b35f8ea 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -123,7 +123,7 @@ the statue. Ornate door - long throne room. One throne Hartwall carved, crudely decorated with skulls. Dead elf & 6 skeletons. Pictures - copper mines / saintshrine / snowy mountain tops / lots of -people (portraits), silver hair / sphynx (Garadwal). +people (portraits), silver hair / sphynx (Garadul). One of Avalina, Argathum, Corundum, Argea? No Cetiosa. No obvious missing pictures. Males - um, females - ex. (random order but all aligned.) @@ -327,7 +327,7 @@ Invisible handle removed, invisible. Creates on the design. Arc: go get tongs fr Morgana: second round, added feeling of writing on a piece of paper. Feel fear and resentment. Pull out a random piece of paper like I knew it was there: "Nope, not going there. Going to use grandson's old trick." Taotli? Find his picture in the flying room and the handle is inside. Charge it in the fire in the bedroom. -Put the handles in the wall. Wall goes into the floor. Archway in the back wall with a glass clock on it. Empty. Spear / Arrow of Sierra. A box in the middle. Coffin door open. Humanoid of the barrier from the prison room disappears. +Put the handles in the wall. Wall goes into the floor. Archway in the back wall with a glass clock on it. Empty. Sierra's arrows. A box in the middle. Coffin door open. Humanoid of the barrier from the prison room disappears. Control: three different effects when blown, once a day. Control water / song of thrumming / conjure elemental of water. Create water, breathe underwater, speak to animals (sea creatures), move underwater. @@ -344,13 +344,13 @@ Day 47 Skygate-type portal has runes on it. Three seem like places: glittering-type word and a cryptic-type word. Can't do the third. Original something. Frost elemental prison runes have totally disappeared, as though they were not there in the first place. Very strange. -Diary: middle, fighting by Dunnen people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. +Diary: middle, fighting by Dunnen people. Her and Argentum want to help Garadul. Fight against elementals in the name of [Hafelius?]. Garadul had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. 18:00. Geldrin investigates the portal and works it out. 22:00. Diary: symbol similar to "glittering." They have hidden the whole place with them. Petty. Not sure how Argentum is taking it. Allegations against her were valid but extreme to take the city. -Taler on actual word for captive, talking about prisoners assembled. Them all. Others disagree with official alternatives. Bronze won't take her suggestion. Want alternative for Garadwal. Want to believe intentions were good but can't see the path anymore. +Taler on actual word for captive, talking about prisoners assembled. Them all. Others disagree with official alternatives. Bronze won't take her suggestion. Want alternative for Garadul. Want to believe intentions were good but can't see the path anymore. Arc asks Dothral to set it free. Teleport to frost prison. Blows ice all away. Elemental speaks to Dothral and says we want to come in and it stops blowing, head back inside. Lightning crackles in the distance. @@ -404,7 +404,7 @@ Archway, same as Hartwall lab one. Prison symbol says "home." Table is made out of seaward stone. Veining seems to be a map but don't recognise the area. Hat stand. Cloak on it. Turns me invisible when I put it on. -Bookshelf full of books about the moon and one nursery rhyme book about Valententhide. One by unknown author: Palace of Valententhide, forged palace in deep sky. Has a domain outside of the mortal realms and has a palace on the crimson. Walls of faces she doesn't have. Unbreathable air unless you bring your own. When the gods were banished to another plane, she had a loophole to stay at this palace. +Bookshelf full of books about the moon and one nursery rhyme book about Valentinhide. One by unknown author: Palace of Valentinhide, forged palace in deep sky. Has a domain outside of the mortal realms and has a palace on the crimson. Walls of faces she doesn't have. Unbreathable air unless you bring your own. When the gods were banished to another plane, she had a loophole to stay at this palace. Geldrin feels urge to put the book on the table. Blue veins morph to look like the moon. @@ -414,7 +414,7 @@ Coat stand has some invisible eyes on it. Cloak, when invisible, has moving star Geldrin puts different books on the table. Ennuyé's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Ennuyé's soul? -Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadwal. +Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadul. ## Page 239 @@ -523,11 +523,11 @@ Hayhearn reminds guest rights and tries to arrest us. Aurum Prudence kicks off a See lots of people running to the chambers with papers. Emergency law-making meeting. -Go back to frost prison. Geldrin tries to turn the portal off and activates another location. Square black obsidian room with no doors. Geldrin finds a door and places a hand on it to open it. Opens to a black corridor: Valententhide's house. +Go back to frost prison. Geldrin tries to turn the portal off and activates another location. Square black obsidian room with no doors. Geldrin finds a door and places a hand on it to open it. Opens to a black corridor: Valentinhide's house. One charge left on the portal, shared between the portals and resets once a day. -Open portal and as we attempt to go through, see Valententhide. Pass out. Three go through the portal and it closes. Morgana hears me and feels cold hands on her shoulder. +Open portal and as we attempt to go through, see Valentinhide. Pass out. Three go through the portal and it closes. Morgana hears me and feels cold hands on her shoulder. ## Page 245 diff --git a/data/3-days/day-48.md b/data/3-days/day-48.md index a05046d..c6042cb 100644 --- a/data/3-days/day-48.md +++ b/data/3-days/day-48.md @@ -69,7 +69,7 @@ Go to see the Dunnen people. Seem to get lots of respect. Elders come out to see There is a plan for us. They have seen the prophecy in the texts now uncovered. They know due to the convalescence of Benu he will be back but needs to pay for his misdeeds. -Heard words of their old protector made flesh anew (Garadwal). He had good and wanted to protect people. Not sure if they should accept him back as their protector. +Heard words of their old protector made flesh anew (Garadul). He had good and wanted to protect people. Not sure if they should accept him back as their protector. Find the Goliath strong-minded. Merfolk have retreated to the sea. Suppressed memories have horrified them, although spoke highly of us. @@ -131,11 +131,11 @@ Go with Wrath to a huge underground dwarven city. Lava ball contains a humongous elemental lava orb. Prisoner? King dwarf praying to the gods to keep orbs safe. -Female dwarf with massive ruby in her chest plate. Garadwal's body with a new owner? Earth elementals. +Female dwarf with massive ruby in her chest plate. Garadul's body with a new owner? Earth elementals. Female dwarf called Spindl (Rubyeye's auntie) has seen us before and knew we were coming. -"Garadwal" called us. We have come to help him. +"Garadul" called us. We have come to help him. Invar makes an offering to the lava orb. Invar opens a box with a tiny creature in it who jumps to the lava orb and tells him to go aid his friends. @@ -230,7 +230,7 @@ Goat urine covers them. Try to match up the armour with the statues. Fine glass dust in cracks of the stone. Diamond resurrection spell? Both Stoven and Stuart were imprisoned 20 years ago, only recently released, by us and another party. -Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valententhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. +Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valentinhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. Third door. Magical runes on the door knob, infernal-like writing in Ennuyé's lab. @@ -254,14 +254,14 @@ Trying to tell who is missing as six dwarves in the main room and [uncertain: ?] Geldrin finds a loose stone, small ruby behind the wall to touch, eye-sized. Item isn't magical. Has a spell in it similar to the Knock spell. -Geldrin uses Skull of Iresmun to open the dome a tiny bit. Figure spins towards the hole. It is no one, wants to know if we are there to help it. It is lost, was part of Valententhide a long time ago but doesn't know what it is now. Thomas put it in the dome and took what was here. +Geldrin uses Skull of Iresmun to open the dome a tiny bit. Figure spins towards the hole. It is no one, wants to know if we are there to help it. It is lost, was part of Valentinhide a long time ago but doesn't know what it is now. Thomas put it in the dome and took what was here. Elemental planes were highway, made a pact and created the world, but still too much highway. Vessel of Divinity made them gods, beings of awe, and stripped some of it away and left the lostness behind. Can't be allowed to keep the vessel. Wants to help us and doesn't feel like its deceiving us will give us three questions to ask her. ## Page 256 Questions: -- What will happen if Valententhide is reformed? +- What will happen if Valentinhide is reformed? - Why does everyone think Eliana is a Hartwall? Morgana gets a voice saying the vessel is theirs. @@ -284,7 +284,7 @@ Stoven and Stuart and Simon come into the prison shouting about their stuff bein Tendrils crawl over the daylight dome. Go back to the dwarf room. Simon is all pieced together and some weird stuff. -Don't like Valententhide and want her. Say no and try to persuade him they haven't fulfilled finding Rubyeye, so no. +Don't like Valentinhide and want her. Say no and try to persuade him they haven't fulfilled finding Rubyeye, so no. ## Page 257 diff --git a/data/3-days/day-52.md b/data/3-days/day-52.md index 06e214d..68f2e71 100644 --- a/data/3-days/day-52.md +++ b/data/3-days/day-52.md @@ -50,7 +50,7 @@ All of the prisons will release if the dome is removed. Geldrin has a plan. Takes out the broom for her to see her sister, Bridget. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridget and open a pathway to her domain. -Pathway opens and we decide we need to protect her, as by Valententhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. +Pathway opens and we decide we need to protect her, as by Valentinhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. Go through the door. @@ -147,7 +147,7 @@ Realise we can move how we want to. Invar and Dotharl speed towards the storm. D Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." -Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valententhide, smash the orb, and release her to Bridget. +Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valentinhide, smash the orb, and release her to Bridget. ## Page 263 diff --git a/data/3-days/day-53.md b/data/3-days/day-53.md index 2a8b312..01d6ad7 100644 --- a/data/3-days/day-53.md +++ b/data/3-days/day-53.md @@ -60,7 +60,7 @@ Male: General Tussil Pebblegrinder. Male: High Priest King, Calthid Metalshaper. -King is not happy with us for introducing, giving him Garadwal's armour. +King is not happy with us for introducing, giving him Garadul's armour. Thinks we summoned a creature of darkness. Blakedurn says that wasn't us. diff --git a/data/3-days/day-55.md b/data/3-days/day-55.md index 2e39b33..0929679 100644 --- a/data/3-days/day-55.md +++ b/data/3-days/day-55.md @@ -76,11 +76,11 @@ Go to find the High Priest at Papa Marmaru. Guards try to stop us but we try to break through. Invar and Geldrin get through and the High Priest calls off the guards. They stop as one, odd. -High Priest is not the high priest any more. One of the gods: which one? Merocole. +High Priest is not the high priest any more. One of the gods: which one? Mericok. Cast Greater Restoration on high priest. Large smoke sphere, spidery legs, human-like face. Wants Papa Marmaru. -Invar offers Papa Marmaru his goblet. It asks if he wants this to happen. Sounds raspy: don't trust Merocole, Marmaru has chosen to be here, and looks after the dwarves. Leave him to it. +Invar offers Papa Marmaru his goblet. It asks if he wants this to happen. Sounds raspy: don't trust Mericok, Marmaru has chosen to be here, and looks after the dwarves. Leave him to it. Search for some explosives. diff --git a/data/3-days/day-56.md b/data/3-days/day-56.md index 2f04186..3421dfe 100644 --- a/data/3-days/day-56.md +++ b/data/3-days/day-56.md @@ -42,7 +42,7 @@ Door was trapped but disarmed in the last 5-10 minutes. ## Page 274 -Dotharl sees Valententhide reflected in Invar's armour. +Dotharl sees Valentinhide reflected in Invar's armour. We leave the room and see lots of doors and two "people" guarding? @@ -74,17 +74,17 @@ Go in and see eight statues around the room. Salana's runes are intact. -Garadwal and Valententhide runes are unlit; the rest are flickering. +Garadul and Valentinhide runes are unlit; the rest are flickering. Most of the monks are meandering around the room. -Dotharl looks at the Valententhide statue and thinks he just sees the statue, but it then attacks him. +Dotharl looks at the Valentinhide statue and thinks he just sees the statue, but it then attacks him. Geldrin investigates the statue and takes damage. The runes around it light up saying, "leave here." -Merocole has a tiny dwarf face carved into his mouth. +Mericok has a tiny dwarf face carved into his mouth. Geldrin fixes the runes on the prison. Goes to close them all except Keakis? on one of them, where Geldrin's fixing mark comes over and it works. @@ -120,13 +120,13 @@ Device is a remote to activate a shield. No way to reverse it. Shouldn't be far ## Page 277 -Valententhide and Garadwal were important; replacements think it was me who stopped them from tricking the statues. +Valentinhide and Garadul were important; replacements think it was me who stopped them from tricking the statues. "I thought my daughters would like it? Mama Hartwall??" The table was a trap. -Prisons look the same except Valententhide's shows symbol of Atlabre. Deactivated. Atlabre symbol not there before. +Prisons look the same except Valentinhide's shows symbol of Atlabre. Deactivated. Atlabre symbol not there before. Think the dome activation captured the sphynx brothers. @@ -146,7 +146,7 @@ Thinks Dirk looks like a Thrunglagen. He is looking for his spellbook. Found it in his room. Humorous: old Rivermeet headmaster. -Open the door to the teleport room and Barrier trapping Trixus, Benu, Garadwal, and Bynx. +Open the door to the teleport room and Barrier trapping Trixus, Benu, Garadul, and Bynx. Temporary Wisdom removed. @@ -156,7 +156,7 @@ Benu says they have news and have reunited in this dire hour. Thwarted many of their plans and things came to light after speaking to his dad. -Garadwal's mind is clearer and the way to repay his misdeeds is by helping us. His dad now trusts us after bringing his children back together. +Garadul's mind is clearer and the way to repay his misdeeds is by helping us. His dad now trusts us after bringing his children back together. Wizards seeking godhood all sought to live forever. Envy sought too much power and it corrupts him. @@ -166,7 +166,7 @@ Ancient helped? Something gave the ability to remove the emotions. We should bring down the dome, but what will become of the bad elementals? -Garadwal asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. +Garadul asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. Hartwall was part of his downfall and Argentum died defending his people. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index 474a0fe..596791c 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -84,7 +84,7 @@ Day 57 - Black Dragon City in The Underblame At 08:00, a council of all towns/states for a treaty to be signed? -Can ensure Salinas causes no issues. Agreed to get us to the Brass City. Scrolls. Charged shield crystal. Respite in his city. +Can ensure Salinus causes no issues. Agreed to get us to the Brass City. Scrolls. Charged shield crystal. Respite in his city. ## Page 282 @@ -157,7 +157,7 @@ Blue dragons and Trixus. Tapestry carpet with a sun that has a thick-set dwarf and a slender woman with a bow. -See a depiction of Garadwal talking to the Dunnen people with him. +See a depiction of Garadul talking to the Dunnen people with him. No evidence of a fire elemental living here. @@ -597,7 +597,7 @@ Leaders: the one who was a god before him. Leaders dead. Lifted the cold element All started to become wary of the princes. May have made the wrong deals to keep the princes in check. -Leadus' dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. +Leedus' dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. Connection to my father has allowed to view pieces of my past, so knows most of it. Icefang gave us all vision. diff --git a/data/4-days-cleaned/day-01.md b/data/4-days-cleaned/day-01.md index 041b63a..24c64bf 100644 --- a/data/4-days-cleaned/day-01.md +++ b/data/4-days-cleaned/day-01.md @@ -28,13 +28,13 @@ The militia records were deeply wrong. Names such as Terry, Stonejaw, Rob, and R The memory tampering became undeniable when nobody remembered Gelissa except Geldrin, though Invar remembered her for a split second. The party saw one of the people get up and walk out. They chased him, and when his hood dropped they saw a face stitched below the eye line, a mouth missing rows of teeth, bone-splinted fingers, and a split tongue. The birthmark on his right hand identified him as Malcolm. He had been a human male, and magic had clearly been used to make these changes. -The name Guardwel/Garadwal was connected to this horror, described as the Terror of the Sands and nightmare of the darkness, a being who would consume souls. The tales mentioned a sphinx that learned dark magic and experimented on itself. Garadwal was understood to be imprisoned in the Prison of the Sands; Brutor Ruby Eye called him the only void they could find, one of eight whose escape would weaken the barrier, and someone the wizards agreed needed to be contained. After Malcolm was found, memories shifted again. Someone remembered Isabella and remembered that Gelissa had said she had not arrived. Gelissa herself was remembered again. +The name Guardwel/Garadul was connected to this horror, described as the Terror of the Sands and nightmare of the darkness, a being who would consume souls. The tales mentioned a sphinx that learned dark magic and experimented on itself. Garadul was understood to be imprisoned in the Prison of the Sands; Brutor Ruby Eye called him the only void they could find, one of eight whose escape would weaken the barrier, and someone the wizards agreed needed to be contained. After Malcolm was found, memories shifted again. Someone remembered Isabella and remembered that Gelissa had said she had not arrived. Gelissa herself was remembered again. The party took Malcolm to the jail. A deputy went to fetch Sheriff Jeremia, who now remembered the third Thornhollows daughter, Gelissa, and the homeless people. Jeremia made the party deputies and gave them badges under Sir Alstir Florent. Another displaced memory also surfaced: a fifth person, a human warrior, had been at the bar helping the party and had picked one of the keys. He was remembered only up to the point when the group went fishing, around the time Dirk saw a rat. Gristak Brinson was recorded as mayor. # People, Factions, and Places Mentioned -Everchard, the Cider Inn Cider, the cider breweries, the woodland tours, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bug Hunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel/Garadwal, Brutor Ruby Eye, the Prison of the Sands, and the unidentified fifth human warrior were all established or referenced. +Everchard, the Cider Inn Cider, the cider breweries, the woodland tours, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bug Hunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel/Garadul, Brutor Ruby Eye, the Prison of the Sands, and the unidentified fifth human warrior were all established or referenced. # Items, Rewards, and Resources @@ -42,4 +42,4 @@ The party were offered 1 gp each to investigate the missing pigs. They received # Clues, Mysteries, and Open Threads -The major open threads were the missing pigs, possible missing sheep, Bess's missing cat, the absence of rats, the missing or forgotten militia, the changing number of keys, the hostel's connection to the anti-tax, Bug Hunter's arrival with tubes and pipes, the winter fruiting trees, the altered Malcolm Donovan, the shifting memories around Gelissa and the homeless people, the vanished fifth human warrior, and Guardwel/Garadwal, the Terror of the Sands, linked to a dark-magic sphinx, the Prison of the Sands, void, one of the eight, and the barrier. +The major open threads were the missing pigs, possible missing sheep, Bess's missing cat, the absence of rats, the missing or forgotten militia, the changing number of keys, the hostel's connection to the anti-tax, Bug Hunter's arrival with tubes and pipes, the winter fruiting trees, the altered Malcolm Donovan, the shifting memories around Gelissa and the homeless people, the vanished fifth human warrior, and Guardwel/Garadul, the Terror of the Sands, linked to a dark-magic sphinx, the Prison of the Sands, void, one of the eight, and the barrier. diff --git a/data/4-days-cleaned/day-06.md b/data/4-days-cleaned/day-06.md index b46a01f..ff9af11 100644 --- a/data/4-days-cleaned/day-06.md +++ b/data/4-days-cleaned/day-06.md @@ -34,7 +34,7 @@ The diary's last page read: "Pelt rough today. don't know how much Longer able t Under another rug was a trapdoor with a wooden ladder down into a stone room containing a beanbag and toys, apparently a secret den. Dirk went to the beanbag and saw a little girl sitting there. She got up and said, "maybe I should go back up daddy can see me in my room." She also said she was "feeling better glott because daddy's creepy friend is here so I can hide" [uncertain wording], and "he'll find me here u should go to my holy place." The party went upstairs into a massive dome with a large golden spyglass. Crystals around the telescope broke the Barrier. Someone sat in a chair with their back to the party. Two eight-foot ugly, wiry humanoids were present. The chair-person looked like the creature the party had killed, but with all the parts opposite: a worm and dog-like creature were with it. -The being, Musher, had been asked to observe the Tri-moon and had no desire to fight. The party had killed his counterpart. He said the worm was useful and rare. He spoke of someone living there 900 years ago and of using townsfolk to attack the Barrier. He gave the party one of the brass feathers to communicate with the master for an audience: [your] horned mechanical hellraiser sphinx creature [uncertain wording]. The name Garadwal was raised. The speaker asked, "Where is your army servant," and spoke of using those people instead. It did not need to know what coordinates were required for triangulation, but needed to know where the army would strike next month so they could have freedom from the dome. Shifting the Barrier increased the flow, possibly enough for the fragment of the moon to destroy Grand Towers and destroy the dome. The being lived outside the Barrier. Its talk of freedom seemed partly true, but the phrase "freedom from the confines of everything" was odd. +The being, Musher, had been asked to observe the Tri-moon and had no desire to fight. The party had killed his counterpart. He said the worm was useful and rare. He spoke of someone living there 900 years ago and of using townsfolk to attack the Barrier. He gave the party one of the brass feathers to communicate with the master for an audience: [your] horned mechanical hellraiser sphinx creature [uncertain wording]. The name Garadul was raised. The speaker asked, "Where is your army servant," and spoke of using those people instead. It did not need to know what coordinates were required for triangulation, but needed to know where the army would strike next month so they could have freedom from the dome. Shifting the Barrier increased the flow, possibly enough for the fragment of the moon to destroy Grand Towers and destroy the dome. The being lived outside the Barrier. Its talk of freedom seemed partly true, but the phrase "freedom from the confines of everything" was odd. The party asked what would happen if the creature did not obey the sphinx. It would find him because of the pact made in darkness or in sorrow; the creature looked forlorn, perhaps tied to finding Joy. They learned or stated that the Tri-moon is a crystal. The sphinx had been cast out for practicing unsavoury magic. The creature asked whether the party wished to join him. He was one cell [uncertain phrasing], trying to aid locations to attack. The party all agreed to clobber him. They killed them all, including the worm thing, which they suspected had mind-control powers. @@ -62,7 +62,7 @@ The party went to look at the moon and opened Maiden's Dew, a good wine. Through # People, Factions, and Places Mentioned -Dirk, Geldrin, Invar, Joy, Joy's father/Daddy, Daddy's creepy friend, Pelt, Musher, Garadwal [possible], horned mechanical hellraiser sphinx creature, Brownmity, [bucsalik], Core, Throngore, Igraine, Ennuyé/The Mage by implication, townsfolk, Grand Towers, Goldenswell, Arvoreds [uncertain], observatory, Barrier, shield pylons, Tri-moon, Joy's room, Joy's secret den, Joy's holy place, maintenance area, kitchen, library, riverbank shrine, lake, caverns, and towns/cities connected by summoning circle. +Dirk, Geldrin, Invar, Joy, Joy's father/Daddy, Daddy's creepy friend, Pelt, Musher, Garadul [possible], horned mechanical hellraiser sphinx creature, Brownmity, [bucsalik], Core, Throngore, Igraine, Ennuyé/The Mage by implication, townsfolk, Grand Towers, Goldenswell, Arvoreds [uncertain], observatory, Barrier, shield pylons, Tri-moon, Joy's room, Joy's secret den, Joy's holy place, maintenance area, kitchen, library, riverbank shrine, lake, caverns, and towns/cities connected by summoning circle. # Items, Rewards, and Resources @@ -70,4 +70,4 @@ Important items and resources included a bronze feather, brass feather for commu # Clues, Mysteries, and Open Threads -Joy appears to have died or been recreated multiple times, with six Joy graves and clone-spell research matching them. Joy's illness may have been Slowbane poisoning, a rare heavy-metal-like poison found on the black market and possibly connected to shield crystal sickness near pylon cities. Joy's father and an unnamed creepy friend were making rings, using boxes, and trying to save Joy when payment could not cure her. The rings refer to pacts, bargains, sorrow, darkness, souls, infinity, and bringing Joy back. The horned sphinx or Garadwal-like master lives outside the Barrier or dome and seeks freedom from the dome or "freedom from the confines of everything." The attacks on the Barrier and shield pylons may accelerate the Tri-moon shard's fall. The Tri-moon is a crystal, and a smaller shard is halfway between the world and moon, synced with it. The observatory changes by direction: earthwise, firewise, airwise, and waterwise routes produce different rooms, runes, barriers, shrines, flowers, doors, and traps. The bleeding acidic runes, Throngore and Igraine statues, metal clone chamber, empty glass chambers, two filled chambers, glowing rings, giant lake object, disturbed Joy grave, and the exact identity of Daddy's friend remain unresolved. +Joy appears to have died or been recreated multiple times, with six Joy graves and clone-spell research matching them. Joy's illness may have been Slowbane poisoning, a rare heavy-metal-like poison found on the black market and possibly connected to shield crystal sickness near pylon cities. Joy's father and an unnamed creepy friend were making rings, using boxes, and trying to save Joy when payment could not cure her. The rings refer to pacts, bargains, sorrow, darkness, souls, infinity, and bringing Joy back. The horned sphinx or Garadul-like master lives outside the Barrier or dome and seeks freedom from the dome or "freedom from the confines of everything." The attacks on the Barrier and shield pylons may accelerate the Tri-moon shard's fall. The Tri-moon is a crystal, and a smaller shard is halfway between the world and moon, synced with it. The observatory changes by direction: earthwise, firewise, airwise, and waterwise routes produce different rooms, runes, barriers, shrines, flowers, doors, and traps. The bleeding acidic runes, Throngore and Igraine statues, metal clone chamber, empty glass chambers, two filled chambers, glowing rings, giant lake object, disturbed Joy grave, and the exact identity of Daddy's friend remain unresolved. diff --git a/data/4-days-cleaned/day-14.md b/data/4-days-cleaned/day-14.md index b03cbd3..b88b2f5 100644 --- a/data/4-days-cleaned/day-14.md +++ b/data/4-days-cleaned/day-14.md @@ -26,9 +26,9 @@ By 08:50 and then 09:00 the barrier problem was more obvious: it was flickering, At 09:50 the party followed the salt trail left by the water elementals. The trail thinned out, with no sight of the elementals, but after some time the land became more lush. This was about seven miles from the barrier, and insects appeared there, which the party had not seen before. At 11:00 they reached a river that ended at the cliff and fell away as a waterfall. The river was shallow, and the path ended at the river. The route seemed about twenty years old. -The river appeared to contain water elementals. One elemental said, "Pain gone, no hurt me / you come take me like others take we escape / through pain, closest, good water." Geldrin freed the two elementals trapped in the blue crystals. The elemental wanted the party to free the rest. It described a "death dome" and said they had come through a hole made for poison water. The hole hurt and was in the sea. The elementals seemed to be trying to free creatures trapped underground. A poisoned one, made of poisoned crystal, powered the death dome. Garadwal was apparently one of these beings until he escaped. A moon rock had created the hole two moons ago. The notes connect this with a scaly dragon with webbed fingers, blue-grey in colour, that goes through the dome, and with one big four-armed being that worked with poison water and Garadwal using tridents. +The river appeared to contain water elementals. One elemental said, "Pain gone, no hurt me / you come take me like others take we escape / through pain, closest, good water." Geldrin freed the two elementals trapped in the blue crystals. The elemental wanted the party to free the rest. It described a "death dome" and said they had come through a hole made for poison water. The hole hurt and was in the sea. The elementals seemed to be trying to free creatures trapped underground. A poisoned one, made of poisoned crystal, powered the death dome. Garadul was apparently one of these beings until he escaped. A moon rock had created the hole two moons ago. The notes connect this with a scaly dragon with webbed fingers, blue-grey in colour, that goes through the dome, and with one big four-armed being that worked with poison water and Garadul using tridents. -The hole was said to be by the cliff face at the bottom of the sea. Occasionally somebody or something went down to annoy the crystal. At 13:00 the party headed back to town to speak to the militia or guards. They identified Salias as the person or being their amulet was talking about, associated with earth and water. The notes record language from the elementals or related beings: "soon free like our master Garadwal," with Garadwal associated with sand, earth, and fire. They called the barrier enslavement. They said there were eight altogether and that they would soon find the hidden lair of their oppressors, who had used them as batteries. +The hole was said to be by the cliff face at the bottom of the sea. Occasionally somebody or something went down to annoy the crystal. At 13:00 the party headed back to town to speak to the militia or guards. They identified Salinus as the person or being their amulet was talking about, associated with earth and water. The notes record language from the elementals or related beings: "soon free like our master Garadul," with Garadul associated with sand, earth, and fire. They called the barrier enslavement. They said there were eight altogether and that they would soon find the hidden lair of their oppressors, who had used them as batteries. The party theorised about the elemental categories. One diagram listed ooze, earth, sand, fire, smoke, air, ice, water, with magma and lightning also noted. Another listed ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt. The party debated whether the prisons were justified: perhaps the needs of the many outweighed the needs of the few; perhaps the beings had tried to destroy the world and were locked up; or perhaps they were preemptively locked up. @@ -40,7 +40,7 @@ The gnome or the locals wanted the Justicar kept out of what was happening below The party learned that the cult was looking for a laboratory. The Basilisk said there was a laboratory of a similar vein twenty miles earthwise along the barrier. At 20:00 the party headed back to town. In the common room they were sharing with one other person who had not shown up. -The party sent a message to The Basilisk, who came to them. He knew little about the salt elemental. He identified the Black Scales as a mercenary group working for Infestus, the black dragon. The Basilisk had checked the observatory but could not open the chest and could not get into the golem underground room either. The party discussed Garadwal and the elemental prisons: a prison at a lake by a lab might hold the ooze one; one was frozen near Rhinewatch or Runewatch and might be the ice one; Garadwal was thought to be sand, though that seemed wrong because he was buried north of Aegis-on-Sands, raising the question of whether he was an elemental. The party planned to speak to the Elementarium person in Seaward. +The party sent a message to The Basilisk, who came to them. He knew little about the salt elemental. He identified the Black Scales as a mercenary group working for Infestus, the black dragon. The Basilisk had checked the observatory but could not open the chest and could not get into the golem underground room either. The party discussed Garadul and the elemental prisons: a prison at a lake by a lab might hold the ooze one; one was frozen near Rhinewatch or Runewatch and might be the ice one; Garadul was thought to be sand, though that seemed wrong because he was buried north of Aegis-on-Sands, raising the question of whether he was an elemental. The party planned to speak to the Elementarium person in Seaward. # People, Factions, and Places Mentioned @@ -52,8 +52,8 @@ The party sent a message to The Basilisk, who came to them. He knew little about - Joy: invisible, in pain, said it burned, and asked Dirk for help. - Private Burke: wanted the party to visit the Maktum before leaving. - Maktum: a person, group, or place the party was asked to visit before leaving. -- Salias: identified as the person or being the party's amulet was talking about; associated with earth and water. -- Garadwal / Terror of the Sands: described as master by the elementals, linked with sand, earth, and fire, said to have escaped, and possibly one of the beings used in the barrier system. +- Salinus: identified as the person or being the party's amulet was talking about; associated with earth and water. +- Garadul / Terror of the Sands: described as master by the elementals, linked with sand, earth, and fire, said to have escaped, and possibly one of the beings used in the barrier system. - Underbelly: mentioned during the underground prison tour; a truce seemed to be in place. - Justicar: locals wanted the Justicar kept out of the underground prison area. - Black dragonborn tour-guide's boss: came into the prison area; noted as one of few black dragonborn around. @@ -67,7 +67,7 @@ The party sent a message to The Basilisk, who came to them. He knew little about - Laboratory: a cult target; one similar to the current structure was said to be twenty miles earthwise along the barrier. - Observatory: the original entrance resembled a room previously seen there. - Rhinewatch / Runewatch [uncertain]: place near a frozen prison, possibly holding the ice one. -- Aegis-on-Sands: Garadwal was said to have been buried north of it. +- Aegis-on-Sands: Garadul was said to have been buried north of it. # Items, Rewards, and Resources @@ -77,7 +77,7 @@ The party sent a message to The Basilisk, who came to them. He knew little about - Copper pylons: removed from the salt dragon prison room; four curved copper pylons were seen in another room. - Dragon-head ring door: huge metal door with a dragon head holding a ring, leading toward the salt dragon prison. - Runes on the floor: barely visible under salt in the salt dragon chamber. -- Party amulet: referred to as talking about Salias. +- Party amulet: referred to as talking about Salinus. - Salt trail: followed from the water elementals toward the river. # Clues, Mysteries, and Open Threads @@ -87,10 +87,10 @@ The party sent a message to The Basilisk, who came to them. He knew little about - The barrier flickered and was worsening by 09:00, but no obvious mechanism was identified. - Water elementals described a painful hole in the sea made for poison water, a death dome, and trapped underground creatures. - A poisoned crystal one may power the death dome; the identity and exact nature of this being remain unresolved. -- Garadwal may be one of the eight imprisoned beings, but his category is uncertain: sand, earth, fire, or possibly something else. +- Garadul may be one of the eight imprisoned beings, but his category is uncertain: sand, earth, fire, or possibly something else. - The beings call the barrier enslavement and claim the prisons used them as batteries, but the party also considered that they may have been locked up for dangerous reasons. - There may be eight major imprisoned entities, but the diagrams list more possible quasi-elemental categories: ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt. - The massive salt dragon has been sweating salt into the earth for twenty years, and the reason the copper pylons were removed remains important. - The cult is looking for a laboratory twenty miles earthwise along the barrier. - The Basilisk could not open the observatory chest or enter the golem underground room. -- The location and identity of the ooze prison, ice prison, and Garadwal's prison remain uncertain. +- The location and identity of the ooze prison, ice prison, and Garadul's prison remain uncertain. diff --git a/data/4-days-cleaned/day-15.md b/data/4-days-cleaned/day-15.md index e7243ff..19c511e 100644 --- a/data/4-days-cleaned/day-15.md +++ b/data/4-days-cleaned/day-15.md @@ -20,11 +20,11 @@ After discussing salt water elementals with the party, the Elementharium went do Dirk asked whether crystals were helping the barrier. The Elementharium seemed to believe it, but he needed the Justicar to believe it so that she would leave. Geldrin planned to try to sway the guards or towers to persuade the Justicar to leave. [Rhonati?] or Hevii might have an obsidian bird for relaying a message. The party arranged to meet back with the Elementharium at 21:30. -Dirk asked about Garadwal. The Elementharium went down to the chamber, retrieved a dwarf skull, and asked it the question about Garadwal. The skull replied, "The information you seek is not for your kind." It then said Garadwal was imprisoned in the Prison of the Sands. The skull was Brutor Ruby Eye, a knowledgeable being and wizard of great power. +Dirk asked about Garadul. The Elementharium went down to the chamber, retrieved a dwarf skull, and asked it the question about Garadul. The skull replied, "The information you seek is not for your kind." It then said Garadul was imprisoned in the Prison of the Sands. The skull was Brutor Ruby Eye, a knowledgeable being and wizard of great power. -The Elementharium showed the party the skull room, where he speaks to skulls for information. When asked what would happen if Garadwal escaped, Brutor answered that it would be bad indeed. The barrier would be weakened by the loss of one of the eight. Brutor said Garadwal was the only void they could find, and that if one of the eight were to escape, it would be him. The feedback from the destruction of his prison would have damaged the others. Geldrin told Brutor about the Tri-moon shard. Brutor knew of the first crack and said Ennuyé had been tampering with it for his own means, meddling with the containment device. If something happened to Ennuyé, it would be bad and could cause the crack. +The Elementharium showed the party the skull room, where he speaks to skulls for information. When asked what would happen if Garadul escaped, Brutor answered that it would be bad indeed. The barrier would be weakened by the loss of one of the eight. Brutor said Garadul was the only void they could find, and that if one of the eight were to escape, it would be him. The feedback from the destruction of his prison would have damaged the others. Geldrin told Brutor about the Tri-moon shard. Brutor knew of the first crack and said Ennuyé had been tampering with it for his own means, meddling with the containment device. If something happened to Ennuyé, it would be bad and could cause the crack. -Brutor said the wizards did not agree about the entrapment of the elementals, but they all agreed that Garadwal needed to be contained. The ooze one was described as a good one. Ice and storm [crossed out] were placed in the same chamber because the land was tricky to dig. The party considered whether the leaking might be stopped by correcting sigils that were out of alignment. The notes also say Brutor was killed by the Black Dragon and identify him as a demi-lich, or mention how he was made. +Brutor said the wizards did not agree about the entrapment of the elementals, but they all agreed that Garadul needed to be contained. The ooze one was described as a good one. Ice and storm [crossed out] were placed in the same chamber because the land was tricky to dig. The party considered whether the leaking might be stopped by correcting sigils that were out of alignment. The notes also say Brutor was killed by the Black Dragon and identify him as a demi-lich, or mention how he was made. The party considered whether there might be a way to reverse the polarity. They learned or recorded "Spinal" as Brutor's password. A boxed note also records "Winter Roses?" as Ennuyé's password. @@ -33,12 +33,12 @@ The party's broader thread list included halfling killers, eight things linked t # People, Factions, and Places Mentioned - Elementharium: Seaward elemental expert who explained quasi-elementals, discussed salt and water as separate beings, and used skulls for information. -- Dirk: listened to the Elementharium's private conversation and asked about Garadwal. +- Dirk: listened to the Elementharium's private conversation and asked about Garadul. - Geldrin: planned to sway the guards or towers and told Brutor about the Tri-moon shard. - Justicar: needed to be convinced that the crystals were helping the barrier so she would leave. - [Rhonati?] or Hevii: possible source of an obsidian bird for relaying a message. -- Garadwal: said by Brutor to be imprisoned in the Prison of the Sands and also called the only void they could find. -- Brutor Ruby Eye: dwarf skull, knowledgeable being, powerful wizard, demi-lich, source of information about Garadwal, Ennuyé, and the containment system. +- Garadul: said by Brutor to be imprisoned in the Prison of the Sands and also called the only void they could find. +- Brutor Ruby Eye: dwarf skull, knowledgeable being, powerful wizard, demi-lich, source of information about Garadul, Ennuyé, and the containment system. - Ennuyé: said to have tampered with the containment device for his own ends; linked to the first crack and a possible password, "Winter Roses?" - Black Dragon: said to have killed Brutor. - Seaward: town where the party met the Elementharium and stayed the night. @@ -59,10 +59,10 @@ The party's broader thread list included halfling killers, eight things linked t - Salt water elementals may not exist; instead, salt and water are separate entities, with salt acting as pollution against water. - Sand still does not fit cleanly into the Elementharium's quasi-elemental model. - The Justicar's presence is considered a problem, and the party wants her to leave. -- Brutor said Garadwal was the only void they could find, which complicates earlier associations of Garadwal with sand, earth, and fire. +- Brutor said Garadul was the only void they could find, which complicates earlier associations of Garadul with sand, earth, and fire. - The barrier depends on eight beings linked to poles; losing one would weaken it. - Ennuyé tampered with the containment device, and something happening to him could have caused or worsened the first crack. -- The wizards disagreed about elemental entrapment, but agreed Garadwal had to be contained. +- The wizards disagreed about elemental entrapment, but agreed Garadul had to be contained. - Ice and storm may have been placed in the same chamber due to difficult land, though "storm" is crossed out in the raw notes. - Leaking prisons might be repairable if the sigils are out of alignment, or perhaps by reversing polarity. - Halfling killers, pirates, elementals, and the eight pole-linked entities remain active unresolved threads. diff --git a/data/4-days-cleaned/day-17.md b/data/4-days-cleaned/day-17.md index 0a2ba44..35e0e39 100644 --- a/data/4-days-cleaned/day-17.md +++ b/data/4-days-cleaned/day-17.md @@ -34,7 +34,7 @@ The council had concerns about whether the party's friend had awakened the ancie The council suggested three possible priorities: head to the merfolk, get the crystal from the water, or speak to the ancient one. The party passed off the twin mum. They also discussed elven creation theology or history. Elves were first on the earth. Everywhere there was light, and with light there was dark. From this came life, and a couple sprang forth; one created a mate, and so did he, and they then became the gods. Light and dark fought, and because of this the physical world was made. There was much fighting, then a truce in which each side agreed not to enter the other's territory and created the twelve gods. They decided to meet on the combination plane, but it was difficult, so they created six Excellences. The Excellences fought, the gods needed armies, and fighting continued, but those armies gained free will and thrived in certain places. The multiple-armed beings are the Excellences. Five is a holy number because it is seen as removing the darkness. -The major crisis list remained: leaking elemental prisons, Garadwal, the void on the loose, and the shield crystal in the sea. The Basilisk was arranging for someone to meet the party in Fairshaws or Freeport; that contact would carry a Winter Rose. The party gave The Basilisk the coin press and told him the coins in the cart were a crate of them. +The major crisis list remained: leaking elemental prisons, Garadul, the void on the loose, and the shield crystal in the sea. The Basilisk was arranging for someone to meet the party in Fairshaws or Freeport; that contact would carry a Winter Rose. The party gave The Basilisk the coin press and told him the coins in the cart were a crate of them. At 17:30 the party returned to their cart and headed down the main road toward Fairshaws. By 22:00 they began hearing birds and animals again and found a place to camp for the night. Around 02:00 or 03:00, a dog going around with the twins approached the camp. Five attackers attacked and died. The notes also show 11:00, likely pointing into the following day. @@ -102,6 +102,6 @@ At 17:30 the party returned to their cart and headed down the main road toward F - The veridian dragon may be teaming up with the red dragon. - Keely Caardenalb's desert research may be critical. - The party must choose between heading to the merfolk, getting the water crystal, or speaking to the ancient one. -- Leaking elemental prisons, Garadwal, the free void fragment, and the sea shield crystal remain immediate threats. +- Leaking elemental prisons, Garadul, the free void fragment, and the sea shield crystal remain immediate threats. - A Fairshaws or Freeport contact carrying Winter Rose is expected. - The dog traveling with the twins and the five attackers at camp are unexplained. diff --git a/data/4-days-cleaned/day-20.md b/data/4-days-cleaned/day-20.md index b18ab45..ca85a60 100644 --- a/data/4-days-cleaned/day-20.md +++ b/data/4-days-cleaned/day-20.md @@ -41,17 +41,17 @@ The Baroness then granted the party an audience immediately. Her room was old an The Baroness promised to loan some forces and gave information about a laboratory. She said there could be a diamond in the workshop, a gaping hole in the side of the building, Barrier emergency systems, and something else inside. She had been very young when she ran. A dragon was rumoured to roost in the ruins of Dirk's old city. The creature in her chamber logs was noted as possibly "Garaduck?" but then rejected with "no." She had the code to the circle and the safe, and said the code worked while the defences were up. She gave the party permission for the lab. Valenth wanted to transfer herself into an object. The Baroness seemed shaken, and a guard helped her out. -At 22:00 the party returned to the temple of Cierra. The Huntsman had returned and came over to them. He was Huntmaster Thrune. Ruby Eye had spoken to this church often and was interested in runes. Huntmaster Thrune agreed to provide aid to kill the Excellence. Ruby Eye thought the party might want to get something before she tried to get it; the sentence is unfinished in the raw notes. Ruby Eye's best friend had wanted to craft herself into something and continue in that form. The spear was a gift from a Huntsman of Cierra, but it was actually an arrow. There were five of them, taken from Cierra's last battlefield. +At 22:00 the party returned to the temple of Sierra. The Huntsman had returned and came over to them. He was Huntmaster Thrune. Ruby Eye had spoken to this church often and was interested in runes. Huntmaster Thrune agreed to provide aid to kill the Excellence. Ruby Eye thought the party might want to get something before she tried to get it; the sentence is unfinished in the raw notes. Ruby Eye's best friend had wanted to craft herself into something and continue in that form. The spear was a gift from a Huntsman of Sierra, but it was actually an arrow. There were five of them, taken from Sierra's last battlefield. The party returned to Pirates Pearls Plundered. Guardfree said he would get his mistress to bring guest shells. The party tried to plan what they were doing next. # People, Factions, and Places Mentioned -Freeport, Baytrail Accord, Seaward, Turisle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snowsorrow or Snowsorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, The Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. +Freeport, Baytrail Accord, Seaward, Turisle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snowsorrow or Snowsorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Sierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, The Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. # Items, Rewards, and Resources -Important items and resources included the shipment from the Earl to Malcolm Jeffries or Malcolm Jethnes, boxes like those seen outside Seaward, the Pact Scepter, scepter conches with only eight in existence, Kiendra's conch, a smell unit for the shipment, food brought to the cabin, the party's cart, the seized desert archaeological goods, bound elementals and arc and water gems, the Lesser Rift Blade dagger +1, the copper weapons, the marked padlock, the spear that was actually one of five arrows from Cierra's last battlefield, guest shells, possible forces loaned by the Baroness, and possible aid from Huntmaster Thrune. The Lesser Rift Blade has three charges, can spend one charge for dimension door, can spend three charges for teleport through a 5-second person-sized portal, and recharges one charge per day. +Important items and resources included the shipment from the Earl to Malcolm Jeffries or Malcolm Jethnes, boxes like those seen outside Seaward, the Pact Scepter, scepter conches with only eight in existence, Kiendra's conch, a smell unit for the shipment, food brought to the cabin, the party's cart, the seized desert archaeological goods, bound elementals and arc and water gems, the Lesser Rift Blade dagger +1, the copper weapons, the marked padlock, the spear that was actually one of five arrows from Sierra's last battlefield, guest shells, possible forces loaned by the Baroness, and possible aid from Huntmaster Thrune. The Lesser Rift Blade has three charges, can spend one charge for dimension door, can spend three charges for teleport through a 5-second person-sized portal, and recharges one charge per day. # Clues, Mysteries, and Open Threads diff --git a/data/4-days-cleaned/day-21.md b/data/4-days-cleaned/day-21.md index e464ab1..ef162a0 100644 --- a/data/4-days-cleaned/day-21.md +++ b/data/4-days-cleaned/day-21.md @@ -9,7 +9,7 @@ complete: true # Narrative -Day 21 was Monday, 6th Jan 1002, with 13 days until the Tri-moon. Everyone had dreams tinged with cold. One dream took place in the dreamer's family home, with siblings playing and happy memories around the local town hall. The town hall looked like a crater, but was actually a black hole pulling in more buildings. A horrible voice said, "where is he I know you hide him." The dreamer panicked, hunted, and woke up, wondering if the voice was looking for Garadwal. The note "Void!" was attached to this dream. +Day 21 was Monday, 6th Jan 1002, with 13 days until the Tri-moon. Everyone had dreams tinged with cold. One dream took place in the dreamer's family home, with siblings playing and happy memories around the local town hall. The town hall looked like a crater, but was actually a black hole pulling in more buildings. A horrible voice said, "where is he I know you hide him." The dreamer panicked, hunted, and woke up, wondering if the voice was looking for Garadul. The note "Void!" was attached to this dream. Only the party's room was cold. As the ice melted, a white dragonscale dropped from an icicle. The party went looking for the captain for a boat. They arranged to loan a boat for 100 gp per day with a 500 gp deposit, divided as 125 gp each. @@ -17,7 +17,7 @@ At Pier 12, a large force gathered. There were about 30 merfolk plus two little The group set sail on a calm sea. The water seemed clear, with no noticeable sign of the Excellence yet. Merfolk, Zinquiss, Wrath, and half the clerics were in the sea with the party. The party considered that the Excellence had seemed to come from 80 miles away when they were at the turtle village, so it might have come from Dunhold Cache or the smaller islands around it. -The party made or planned a pulley system and net to hoist the shield crystal onto the ship when they reached Fairshaws. Wrath's middle name was recorded as Kolin. The party asked him to look for the location of Garadwal when he got to Black Scale. +The party made or planned a pulley system and net to hoist the shield crystal onto the ship when they reached Fairshaws. Wrath's middle name was recorded as Kolin. The party asked him to look for the location of Garadul when he got to Black Scale. They passed an island and nothing seemed to happen. When they arrived at Fairshaws, their boat was seized on the Earl's orders, and the occupants were detained for treason and related accusations. The party presented the situation as a diplomatic mission carrying members of the Pact. They suspected the Earl was part of the Cult. @@ -25,7 +25,7 @@ The party gave Zinquiss 200 gp for four healing potions. Guards returned and tol # People, Factions, and Places Mentioned -Fairshaws, Pier 12, the Barrier, the keep, the turtle village, Dunhold Cache, the smaller islands around Dunhold Cache, Black Scale, Highden, Heartmoor, Grand Towers, the five points of the Penta City states, Provincia, the Earl, the Cult, Garadwal, Zinquiss, Wrath or Kolin, Tiana or Taina, Pact leader Alana, Captain Huen, the sergeant with a necklace, merfolk, guardsmen, clerics, Justiciars, Perodetta, a lightning dragon, a white dragon or source of a white dragonscale, the Excellence, and the Pact were all mentioned. +Fairshaws, Pier 12, the Barrier, the keep, the turtle village, Dunhold Cache, the smaller islands around Dunhold Cache, Black Scale, Highden, Heartmoor, Grand Towers, the five points of the Penta City states, Provincia, the Earl, the Cult, Garadul, Zinquiss, Wrath or Kolin, Tiana or Taina, Pact leader Alana, Captain Huen, the sergeant with a necklace, merfolk, guardsmen, clerics, Justiciars, Perodetta, a lightning dragon, a white dragon or source of a white dragonscale, the Excellence, and the Pact were all mentioned. # Items, Rewards, and Resources @@ -33,4 +33,4 @@ The party loaned a boat for 100 gp per day with a 500 gp deposit, paid as 125 gp # Clues, Mysteries, and Open Threads -The cold dreams, the black hole in the town hall, the horrible voice asking "where is he I know you hide him," the possible link to Garadwal, the word "Void!," and the white dragonscale are all unresolved. The Excellence may have come from Dunhold Cache or nearby islands, based on the apparent 80-mile distance from the turtle village. Wrath was asked to search for Garadwal's location when he reached Black Scale. The Earl seized the party's boat and accused the diplomatic mission of treason, strengthening suspicion that the Earl was connected to the Cult. News from Highden, Heartmoor, Grand Towers, and Provincia indicates simultaneous crises involving a lightning dragon, illness possibly linked to Perodetta, Justiciars moving to the five points, locusts, and mysterious spiritual activity. +The cold dreams, the black hole in the town hall, the horrible voice asking "where is he I know you hide him," the possible link to Garadul, the word "Void!," and the white dragonscale are all unresolved. The Excellence may have come from Dunhold Cache or nearby islands, based on the apparent 80-mile distance from the turtle village. Wrath was asked to search for Garadul's location when he reached Black Scale. The Earl seized the party's boat and accused the diplomatic mission of treason, strengthening suspicion that the Earl was connected to the Cult. News from Highden, Heartmoor, Grand Towers, and Provincia indicates simultaneous crises involving a lightning dragon, illness possibly linked to Perodetta, Justiciars moving to the five points, locusts, and mysterious spiritual activity. diff --git a/data/4-days-cleaned/day-23.md b/data/4-days-cleaned/day-23.md index 66357c2..7016ec5 100644 --- a/data/4-days-cleaned/day-23.md +++ b/data/4-days-cleaned/day-23.md @@ -40,15 +40,15 @@ At the desert laboratory, they found a coil of rope with a burnt end on the rug, The party was served wine from 37 BD, Before Dome. Silver said the mistress died there in a spell accident, and Silver cleaned her up. No one had met with the mistress in the last 907 years. Rubyeye had last visited 908 years ago and had met her 47 times. Rubyeye had requested a copy of a book after viewing it at Aquaria, but Silver did not have it; Rubyeye had it. The runes had been lit since the mistress died. The book came back two days before the death, despite usually being returned daily. -On the tour, a room opposite contained flower beds with well-pruned white roses, disposed of with fire at a different temperature, and insects in the dirt. Down the corridor, a door on the left opened into a room with a huge silver statue of a dragon, a sphinx, and humans and others at the base with a dead eagle. The inscription or note read: "Victorious but too late it was still the Dunewand." The figures included the human Browning, the elf Cardonal, the dwarf Rubyeye, the halfling Enwi, the dragon Muttowh, and the sphinx Garadwal. The statue commemorated the death of Hephaestos, exalted of air. The names Valianth and Cardonal were boxed in the notes. +On the tour, a room opposite contained flower beds with well-pruned white roses, disposed of with fire at a different temperature, and insects in the dirt. Down the corridor, a door on the left opened into a room with a huge silver statue of a dragon, a sphinx, and humans and others at the base with a dead eagle. The inscription or note read: "Victorious but too late it was still the Dunewand." The figures included the human Browning, the elf Cardonal, the dwarf Rubyeye, the halfling Enwi, the dragon Muttowh, and the sphinx Garadul. The statue commemorated the death of Hephaestos, exalted of air. The names Valianth and Cardonal were boxed in the notes. -The history recorded there said that in 29 BC Hephaestos formed an army. Rubodueul, a friend of the Dunnen people, called for aid. Two years later he returned with mages and defeated Hephaestos. He lamented not helping Gardolwal in his revenge when he learned that a void lieutenant had escaped, and he sought revenge. The Brass City fell and drove the tabaxi out. He had been a friend of the mages, but they trapped him and he became friends with another mage. +The history recorded there said that in 29 BC Hephaestos formed an army. Rubodueul, a friend of the Dunnen people, called for aid. Two years later he returned with mages and defeated Hephaestos. He lamented not helping Garadul in his revenge when he learned that a void lieutenant had escaped, and he sought revenge. The Brass City fell and drove the tabaxi out. He had been a friend of the mages, but they trapped him and he became friends with another mage. The elven art gallery was a marble room dominated by statues of very muscular elves, like the Elementarium, and pictures of pale skin. Aranthium was named as the main architect of the Great Tower. Elementarium was a great scholar, slain by Excellence or entombed for 400 years, worshipped darker gods, and died in 741 BD. Others shown were local folk heroes. A picture showed Aranthium in front of the Great Tower. Browning died in 44 AD, but Rubyeye and Cardonal had talked about him as though he were alive. The mistress had defensive automations that could teleport in from the factory through a teleport circle if needed. At the end of the corridor, Silver could not go through a door without a person. Beyond were rot and decay. The mistress had played the flute. The kitchen was dark but lit up when the party entered, and had been made by Cardonal and Browning. In the dining room were pictures of Enwi, Joy, Browning looking in his fifties, Rubyeye, the human Heurhall, and a sphinx, painted in 314 BD. -Behind the pictures, Dirk looked uneasy. Behind Garadwal's picture was a golden band with a ruby. Silver tried to get it. The gem was smashed, with arcane runes, and it resembled Eno's ring. It seemed hurt, broken, not quite powerful, and possibly sentient. Eliana opened the music room. While Geldrin checked the magically lit fireplace, Silver watched Eliana. The music room contained various instruments, including a harp, and a hat stand resembling the one in Enwi's lab, but with no rug. +Behind the pictures, Dirk looked uneasy. Behind Garadul's picture was a golden band with a ruby. Silver tried to get it. The gem was smashed, with arcane runes, and it resembled Eno's ring. It seemed hurt, broken, not quite powerful, and possibly sentient. Eliana opened the music room. While Geldrin checked the magically lit fireplace, Silver watched Eliana. The music room contained various instruments, including a harp, and a hat stand resembling the one in Enwi's lab, but with no rug. Geldrin found a stone in the fire and recognised it as a stone of sending. When the rock cooled, a piece of paper appeared underneath it reading, "I'm coming to get you." Geldrin showed it to Eliana, and they did not recognise the handwriting. Silver took a tube from the harp. Playing "Ode to Mountain Halls" was noted. A piano held sheet music for the harp song "Betrayal." @@ -58,19 +58,19 @@ The door next to the lab was trapped and led to a storeroom with parchment, copp The library contained no grimoire, but Noxus was in the building. A project automation construction manual by Everard Browning existed in many versions. Automations were powered by a weak elemental, shield crystals, and copper to animate them. A key elven form involved binding one's own spirit to it. "Instructions for creating sentient jewellery" by Cardonal was written in Celestial. Sentient items needed a soul. The party managed to stun Silver and lock her in the dining room, then opened the laboratory. -Inside the laboratory, Gardwal armour was piled as though to remind the mistress of shame. There were practice enchanted items. On the desk was a copper astrolabe containing a red gem. A voice came from the crystal and asked who the party were and what year it was. It had been 907 years. The speaker knew or was unsure that the necklace would survive her friend [unclear]. Enwi was being protected by Goliaths. Nobody knew the city was there, due to Browning's doing. Silver had taken over the body from the ring. +Inside the laboratory, Garadul armour was piled as though to remind the mistress of shame. There were practice enchanted items. On the desk was a copper astrolabe containing a red gem. A voice came from the crystal and asked who the party were and what year it was. It had been 907 years. The speaker knew or was unsure that the necklace would survive her friend [unclear]. Enwi was being protected by Goliaths. Nobody knew the city was there, due to Browning's doing. Silver had taken over the body from the ring. -Silver's defence mechanisms were extensive. The voice fell silent when told that Gardwel had escaped. She held the barrier, constructs, and Silver in check in all ways. A barrier shock might help remove Silver from the body. The party planned to trick Silver into opening the door. Silver tried something, was propelled across the room into shelving, slumped against the wall, and the lights in her eyes went out. When the party tried to take her to the barrier, Cardonal said she was still active. She woke up by the portal room. Dirk threw her into the barrier, destroying the soul, and Cardonal then took over the construct. +Silver's defence mechanisms were extensive. The voice fell silent when told that Garadul had escaped. She held the barrier, constructs, and Silver in check in all ways. A barrier shock might help remove Silver from the body. The party planned to trick Silver into opening the door. Silver tried something, was propelled across the room into shelving, slumped against the wall, and the lights in her eyes went out. When the party tried to take her to the barrier, Cardonal said she was still active. She woke up by the portal room. Dirk threw her into the barrier, destroying the soul, and Cardonal then took over the construct. -At 13:00, "Acore Iceland" was recorded. The Ancient One was Cardonal's friend and had tried to save her. Enwi's apprentice seemed to have been the end of Garadwal's sanity. Gardwal had been locked up after consuming the void's lieutenant and slaughtering the rest of the Dunnen people. He was the leader of the Dunnen people. An alliance with the gods had created the barrier to entrap the other "gods." The dragon crashing into Grand Towers had been enough to weaken the prisons so Garadwal could escape. +At 13:00, "Acore Iceland" was recorded. The Ancient One was Cardonal's friend and had tried to save her. Enwi's apprentice seemed to have been the end of Garadul's sanity. Garadul had been locked up after consuming the void's lieutenant and slaughtering the rest of the Dunnen people. He was the leader of the Dunnen people. An alliance with the gods had created the barrier to entrap the other "gods." The dragon crashing into Grand Towers had been enough to weaken the prisons so Garadul could escape. Cardonal could provide codes for other teleport circles. There were seven prisons, five labs, Browning's inaccessible the last time, and three Grand Towers levels: factory, control room, and meeting level. Other sites included the gate in the mountains earthwise of Coalment Falls, Coppermines at Arthur, the impact site earthwise of Goldenswell, the menagerie at Riversmeet, the Goliath city, and one location close to each pylon. An additional dwarven city had disappeared. Rubyeye had a connection to both the missing dwarf city and the missing Goliath city. -The Elemental Princes were described as having made a pact with the gods, who worried they would want extra power like the other elementals. The listed princes were Salinas of salt, Limus Vita of ooze and friendly, Iceblus of ice and a monster cow, Arasarath as a swirling humanoid dark cloud, Merocole as a spider-like figure with a torso ball of smoke and thumping demon, Gardwel who consumed one of the two void princes, Papa I Meurina as a crab with three snake heads and magma, and Valententhidle, who had extra precautions with Galetea the automation. Valententhidle appeared as a female human with ashen skin, faded so that only her eye was visible. Gardwal might not know where the other prisons were. Cardonal could be contacted with fixed Enwi. +The Elemental Princes were described as having made a pact with the gods, who worried they would want extra power like the other elementals. The listed princes were Salinus of salt, Limusvita of ooze and friendly, Iceblus of ice and a monster cow, Arasarath as a swirling humanoid dark cloud, Mericok as a spider-like figure with a torso ball of smoke and thumping demon, Garadul who consumed one of the two void princes, Papa I Meurina as a crab with three snake heads and magma, and Valententhidle, who had extra precautions with Galetea the automation. Valententhidle appeared as a female human with ashen skin, faded so that only her eye was visible. Garadul might not know where the other prisons were. Cardonal could be contacted with fixed Enwi. -At 14:00, the party headed to Garadwal's prison. A storeroom door opened into smashed ruins. Runes were scratched or torn away near acid burns, with toys intertwined with copper, coins, and other debris, and the smell of rotting corpses. It was a dragon nest, containing dark green-black egg shells and a tiny dragon corpse with very green skin and a hint of black, more perodlus colouring than Infestus. Poison or acid erosion surrounded the prison circle. The dragon was a young adult. The treasure appeared to be from Dunengend, with copper coins. A standout coin showed a well-chiselled man on one side and a funnel on the other, identified as Goliath coins. +At 14:00, the party headed to Garadul's prison. A storeroom door opened into smashed ruins. Runes were scratched or torn away near acid burns, with toys intertwined with copper, coins, and other debris, and the smell of rotting corpses. It was a dragon nest, containing dark green-black egg shells and a tiny dragon corpse with very green skin and a hint of black, more perodlus colouring than Infestus. Poison or acid erosion surrounded the prison circle. The dragon was a young adult. The treasure appeared to be from Dunengend, with copper coins. A standout coin showed a well-chiselled man on one side and a funnel on the other, identified as Goliath coins. -A very muscular and odd-looking dragon approached, with a repulsive head, no horns or ridges, no lips, and an attic-like inbred appearance. Inqueshwash thought Dirk looked tasty and said his mother sent him to be eaten. A void elemental blamed veridican dragonborn for Gardwel's escape and said "Dragon." The party were originally known as the exiled hundreds of years ago. The Perodot princess was very well known, and the party might need to see Provista Town Hall for the history of other tribes. +A very muscular and odd-looking dragon approached, with a repulsive head, no horns or ridges, no lips, and an attic-like inbred appearance. Inqueshwash thought Dirk looked tasty and said his mother sent him to be eaten. A void elemental blamed veridican dragonborn for Garadul's escape and said "Dragon." The party were originally known as the exiled hundreds of years ago. The Perodot princess was very well known, and the party might need to see Provista Town Hall for the history of other tribes. Browning had put out the word that he died of old age so he could bring in the magisters and Justiciars to act as his proxy. Enwi's spellbook was locked by one of Cardonal's creations, and she changed it so that it was attuned to Geldrin. Automations were identified as Explorer, one guarding Valententhidle's prison, and the overseer of the factory. @@ -82,7 +82,7 @@ Iceland needed the party's help with the prisons. The shimmery one required taki Freeport, the Castle, the Drunken Duck, the Jewelry District, Baytail Accord, Grand Towers, the Underbelly, the Brass City, the desert laboratory, Aquaria, the Great Tower, the factory, the music room, the laboratory, the portal room, the barrier, Coalment Falls, Arthur, Goldenswell, Riversmeet, the Goliath city, Dunengend, Provista Town Hall, and Iceland were all mentioned. -Alana, the merfolk, Guardseen, the Huntmaster, Princess Aquunea, Salt elementals, The Basilisk, the Baroness, the sergeant with the necklace, Valenth Caerdunel, Arxion, the Little Finger, tabaxi, automations, Silver, the mistress, Rubyeye, Cardonal, Browning, Enwi, Joy, Heurhall, Garadwal/Gardwal/Gardolwal/Gardwel, Muttowh, Hephaestos, Rubodueul, the Dunnen people, Aranthium, Elementarium, Excellence, Dirk, Eliana, Geldrin, Noxus, the Ancient One, Enwi's apprentice, the gods, Salinas, Limus Vita, Iceblus, Arasarath, Merocole, Papa I Meurina, Valententhidle, Galetea, Inqueshwash, veridican dragonborn, the Perodot princess, magisters, Justiciars, Explorer, and Iceland were all mentioned. +Alana, the merfolk, Guardseen, the Huntmaster, Princess Aquunea, Salt elementals, The Basilisk, the Baroness, the sergeant with the necklace, Valenth Caerdunel, Arxion, the Little Finger, tabaxi, automations, Silver, the mistress, Rubyeye, Cardonal, Browning, Enwi, Joy, Heurhall, Garadul/Garadul/Garadul/Garadul, Muttowh, Hephaestos, Rubodueul, the Dunnen people, Aranthium, Elementarium, Excellence, Dirk, Eliana, Geldrin, Noxus, the Ancient One, Enwi's apprentice, the gods, Salinus, Limusvita, Iceblus, Arasarath, Mericok, Papa I Meurina, Valententhidle, Galetea, Inqueshwash, veridican dragonborn, the Perodot princess, magisters, Justiciars, Explorer, and Iceland were all mentioned. # Items, Rewards, and Resources @@ -98,4 +98,4 @@ The shared dreams over Freeport contradicted one another and may have come from The desert laboratory established that Silver, Cardonal, the mistress, Rubyeye, Browning, Enwi, the automations, and the sentient rings or jewellery are deeply connected. The exact identity of the voice in the red gem, the phrase about the necklace surviving her friend, the role of Noxus in the building, the threat implied by "I'm coming to get you," and Silver's shifting control remain uncertain. Sentient items requiring souls, Silver as a practice vessel, and Cardonal taking over the construct are major open consequences. -Garadwal's escape appears tied to the dragon crashing into Grand Towers weakening the prisons. Garadwal consumed a void lieutenant, killed Dunnen people, and may not know the other prison locations. The seven prisons, five labs, missing dwarven and Goliath cities, Rubyeye's connections, Elemental Princes, prison-status systems, and Grand Towers control levels remain central campaign threads. Iceland's visions point toward threats at Ice's prison, the shimmery one, the black spider thing, a two-headed green dragon, the pirate, Excellence, and Browning still in the tower. +Garadul's escape appears tied to the dragon crashing into Grand Towers weakening the prisons. Garadul consumed a void lieutenant, killed Dunnen people, and may not know the other prison locations. The seven prisons, five labs, missing dwarven and Goliath cities, Rubyeye's connections, Elemental Princes, prison-status systems, and Grand Towers control levels remain central campaign threads. Iceland's visions point toward threats at Ice's prison, the shimmery one, the black spider thing, a two-headed green dragon, the pirate, Excellence, and Browning still in the tower. diff --git a/data/4-days-cleaned/day-25.md b/data/4-days-cleaned/day-25.md index 03a59c8..80b5d74 100644 --- a/data/4-days-cleaned/day-25.md +++ b/data/4-days-cleaned/day-25.md @@ -18,9 +18,9 @@ The party learned that 20 years ago someone briefly woke up. The notes record a Dragon full names and titles were recorded. Infestus was "bane of multitude," "slayer of Ruby eye," black, and father of the veridican. Peridita was "The Choking Death," "The whispers in the dark," and "Mother of many," and was green. Calemnis Bereth, also written as Girth or literal green again, was wife of death and veridican. -Two plots were identified: the first to get rid of certain cities, and the second to break out Garadwal. Most townsfolk were dragonborn and Ice dwarves. The Howling Tombs were identified as where the storms start from. A different Justiciar was present, and the party was not sure whether they knew of them. The party obtained winter clothes that granted advantage against severe exposure. Grubins would take them to the Howling Tombs at 7am the next morning. +Two plots were identified: the first to get rid of certain cities, and the second to break out Garadul. Most townsfolk were dragonborn and Ice dwarves. The Howling Tombs were identified as where the storms start from. A different Justiciar was present, and the party was not sure whether they knew of them. The party obtained winter clothes that granted advantage against severe exposure. Grubins would take them to the Howling Tombs at 7am the next morning. -Rubyeye had created his own readout of prison status. It required a humanized effigy of the spirit and runes drawn on it, connected both to the prison and to the runes on the prison. Iceland and Arasarath's prisons were discussed. Refugee camps had been arranged for Garadwal's people. The Grand Tower control centre was accessible and could be used, along with wheels from Rubyeye's lab. +Rubyeye had created his own readout of prison status. It required a humanized effigy of the spirit and runes drawn on it, connected both to the prison and to the runes on the prison. Iceland and Arasarath's prisons were discussed. Refugee camps had been arranged for Garadul's people. The Grand Tower control centre was accessible and could be used, along with wheels from Rubyeye's lab. When shown Salina's runes, the party learned that they needed to go back to Enwi's lab. Enwi had been tapping the life force from his prison, and the shade to the system had been replicated across all prisons, weakening them. Access to the Ice prison was through Enwi's basement with the automations. Three automations were noted, with a shutdown button in the control room. @@ -28,7 +28,7 @@ When shown Salina's runes, the party learned that they needed to go back to Enwi Coalment, Snowsorrow, Rimewatch, the pylon, the town, the inn, the Ice prison, the Howling Tombs, Grand Tower, Rubyeye's lab, Enwi's lab, Enwi's basement, the control room, and Arasarath's prison were all mentioned. -Icefang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Dunnen's mage, Garadwal, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadwal's people, Salina, Enwi, and three automations were all mentioned. +Icefang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Dunnen's mage, Garadul, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadul's people, Salina, Enwi, and three automations were all mentioned. # Items, Rewards, and Resources @@ -38,4 +38,4 @@ The party gained winter clothes that provide advantage against severe exposure. The warning from 20 years ago points to dragons plotting again, dragons breathing the Terror of the Sands out of her prison, and a connection to the black one being cast out. Peridita may be the "mother of many" and "mother" in the warning, though the notes preserve uncertainty over whether the mother could instead be Dunnen's mage. -The named dragons and titles connect Infestus, Peridita, Calemnis Bereth/Girth, Rubyeye, the veridican, and Garadwal to two plots: removing certain cities and breaking out Garadwal. The Howling Tombs appear to be the source of the storms. Enwi's tapping of life force from his prison has weakened the replicated prison system across all prisons, making Enwi's lab, the Grand Tower control centre, Rubyeye's readout, and the automations in Enwi's basement urgent open threads. +The named dragons and titles connect Infestus, Peridita, Calemnis Bereth/Girth, Rubyeye, the veridican, and Garadul to two plots: removing certain cities and breaking out Garadul. The Howling Tombs appear to be the source of the storms. Enwi's tapping of life force from his prison has weakened the replicated prison system across all prisons, making Enwi's lab, the Grand Tower control centre, Rubyeye's readout, and the automations in Enwi's basement urgent open threads. diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md index 00b7ff4..c52f77a 100644 --- a/data/4-days-cleaned/day-26.md +++ b/data/4-days-cleaned/day-26.md @@ -20,9 +20,9 @@ Day 26 was Saturday, 10th Tan 101, with 8 days to Arrynoon and 5 days to Autumn. Invar dreamed of a meeting hall filled with red-bearded dwarves. He arrived at a large platinum chair, where a concerned dwarf sat while a smaller [unclear] person told him something. They strode out to an Ironforge-type building where magma was held back by a dome. A dire crab with multiple heads seemed to be trying to get through, and magma was coming through the dome until the king chanted and the dome closed up. -Dirk dreamed of an obsidian city where black Dragonborn strode around as if they owned the place. The scene was animated and included a town-hall-style building. Two black Dragonborn stood beside an archway with mosquitoes on the shield. Beyond the archway, Infestus spoke to Garadwal. Infestus looked cross, then stabbed a coin into the portal and Garadwal went through. +Dirk dreamed of an obsidian city where black Dragonborn strode around as if they owned the place. The scene was animated and included a town-hall-style building. Two black Dragonborn stood beside an archway with mosquitoes on the shield. Beyond the archway, Infestus spoke to Garadul. Infestus looked cross, then stabbed a coin into the portal and Garadul went through. -Eliana dreamed of a barren desert, stepping back and falling into a hole containing the dragon in Garadwal's prison. They landed on the dragon, which flew out to the edge. Another abnormal dragon appeared, with two heads, extra wings of some kind, and an arm. The two dragons nuzzled and cackled. The ground opened next to them, then went vertical, and a void voice said, "where is he I know you know". +Eliana dreamed of a barren desert, stepping back and falling into a hole containing the dragon in Garadul's prison. They landed on the dragon, which flew out to the edge. Another abnormal dragon appeared, with two heads, extra wings of some kind, and an arm. The two dragons nuzzled and cackled. The ground opened next to them, then went vertical, and a void voice said, "where is he I know you know". Geldrin dreamed through someone else's perspective in a plush human bedchamber, rich but without style. The viewer walked out through a long corridor with old, similar pictures of the guild, then entered a large stone chamber that felt like a different place. Eight statues stood around the room with runes. The route continued down another corridor to a teleport circle, then turned left 10 times, through another room and corridor, and a couple more left turns. In a room with an old withered man in bed, the person Geldrin was seeing through took a box from the pillow and replaced it. The person did not look like Browning. @@ -38,17 +38,17 @@ The spheres were containment devices for elementals. The party used speak with d At 18:00, the party headed to the life prison. The room had once been stone but had become flesh, pulsating across the whole room with eyes, veins, and other features everywhere. It was high-level Carnamancy to craft this fleshy thing, perhaps created by "The Mother". Dispel magic turned it into 14 fleshy parts of [unclear]. Isabella noted humans, dwarves, elves, and others, but no bones or teeth. Through the doors was a golem made entirely of teeth. -A message said, "Sorry Couldn't be here, gone fishing with a friend!" and "Hopefully we'll catch some big ones". The note asks whether to kill it. The party advanced to the prison room, where Mother threatened them. They believed she was in Baytail Accord with Garadwal. +A message said, "Sorry Couldn't be here, gone fishing with a friend!" and "Hopefully we'll catch some big ones". The note asks whether to kill it. The party advanced to the prison room, where Mother threatened them. They believed she was in Baytail Accord with Garadul. -Limnuvela was dying. Too much energy had been siphoned from him. Mother had tried to absorb him, but he was too much for her, and he was holding on to keep the barrier up. His barrier had a copper pipe in the top where Mother siphoned energy. The party moved the pipe to the floor to try to heal him, then poured a pouch of White Rose powder on it, restoring some health. If the prison were fully closed, the elemental would be in stasis; removing pylons would slow it down. +Limusvita was dying. Too much energy had been siphoned from him. Mother had tried to absorb him, but he was too much for her, and he was holding on to keep the barrier up. His barrier had a copper pipe in the top where Mother siphoned energy. The party moved the pipe to the floor to try to heal him, then poured a pouch of White Rose powder on it, restoring some health. If the prison were fully closed, the elemental would be in stasis; removing pylons would slow it down. -The party went to Envi's lab. The door was shattered, and bits of automaton were scattered around the room and across the lab. Garadwal had been in the Blackscale yesterday and was now back in the dome. Baytail Accord had "kicked off" in the last hour. Blackscale was using the party's kings as servants. The boss liked the barrier because it kept his head in one place, and had told Garadwal not to bring down the barrier. The party levelled up. +The party went to Envi's lab. The door was shattered, and bits of automaton were scattered around the room and across the lab. Garadul had been in the Blackscale yesterday and was now back in the dome. Baytail Accord had "kicked off" in the last hour. Blackscale was using the party's kings as servants. The boss liked the barrier because it kept his head in one place, and had told Garadul not to bring down the barrier. The party levelled up. -The party teleported to Baytail Accord, leaving Cardenald behind at the life prison. At 19:00, they arrived in a temple half on land and half in the sea. A hammerhead shark-man god was shown on the wall. A glowing parchment lay inside a glass dome under the water. Sickly green flames rose from buildings in town, and many townsfolk were dead while Garadwal hovered above. There was an unnatural amount of rat poo on the harbour, and the Mermaid of the city was in trouble. +The party teleported to Baytail Accord, leaving Cardenald behind at the life prison. At 19:00, they arrived in a temple half on land and half in the sea. A hammerhead shark-man god was shown on the wall. A glowing parchment lay inside a glass dome under the water. Sickly green flames rose from buildings in town, and many townsfolk were dead while Garadul hovered above. There was an unnatural amount of rat poo on the harbour, and the Mermaid of the city was in trouble. -The party contacted the void elemental, who was on his way. Garadwal tried to find something. A 15-foot square in front of Garadwal was unnaturally empty of debris. A monstrosity was attacking the hatchery. The void elemental appeared and was trapped by a dome. Geldrin tried to dispel magic; it seemed to do something, but the dome remained. The party managed to kick the runes away and let the void elemental out. +The party contacted the void elemental, who was on his way. Garadul tried to find something. A 15-foot square in front of Garadul was unnaturally empty of debris. A monstrosity was attacking the hatchery. The void elemental appeared and was trapped by a dome. Geldrin tried to dispel magic; it seemed to do something, but the dome remained. The party managed to kick the runes away and let the void elemental out. -A horrible boob-covered form appeared, apparently The Mother. The party sent a message for help to The Basilisk. He appeared with a tabaxi and his boss. Garadwal teleported out, and the void elemental also disappeared. The Mother died. +A horrible boob-covered form appeared, apparently The Mother. The party sent a message for help to The Basilisk. He appeared with a tabaxi and his boss. Garadul teleported out, and the void elemental also disappeared. The Mother died. The party needed to check on the Hatchery. The Basilisk returned to other important things. Everyone was thanking the merfolk for saving them, and the rest of the town seemed all right. The party checked Mother's corpse, which had fallen apart. Geldrin found a spellbook on her with the same cipher as Envi's and the same spells as Envi's. @@ -72,27 +72,27 @@ Terry received a message from Erroll, establishing two-way communication. Valent What The Mother had done seemed impossible, since a clone should be a clone of yourself. They did not think it was possible to set another clone outside the 120 days, and did not think The Mother knew Valenth was there. There were no records of the mages' laboratories; all were thought to live in Grand Towers. Errol and Terry were linked now, but not connecting the others. The party requested that Tiana look after their items in Freeport. -Dreams were discussed: over many years they could be saved, and many recent dreams showed who the party are. The plan was to go to the Salinas Statue to fix that. The party stayed in a tavern called Bounty of the Sea. +Dreams were discussed: over many years they could be saved, and many recent dreams showed who the party are. The plan was to go to the Salinus Statue to fix that. The party stayed in a tavern called Bounty of the Sea. # People, Factions, and Places Mentioned -Coalment, Invar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Lortesh, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hartwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hartwall State, Goldenswell State, and Snowsorrow State were all mentioned. +Coalment, Invar, Dirk, Geldrin, Browning, Garadul, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limusvita, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadul's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Lortesh, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinus Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hartwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hartwall State, Goldenswell State, and Snowsorrow State were all mentioned. # Items, Rewards, and Resources -The party noted a large platinum chair, the portal coin Infestus stabbed into the portal, a box taken from and replaced by a pillow, the sled and dogs, six empty-seeming copper rune orbs like those from Seaward, pale blue rocks present for around 3 months, five hollow smooth rocks or possible eggs, visitor shells, a holy symbol of Noxia with a lightning bolt, elemental containment spheres, the runes given to Anrasurall, a golem made of teeth, a copper pipe siphoning energy from Limnuvela, a pouch of White Rose powder, pylons, automaton fragments in Envi's lab, a glowing parchment under a glass dome, runes used to trap the void elemental, Mother's spellbook in the same cipher as Envi's and containing the same spells, Pact chairs brought by Guardfree, Azureside records, Terry the merfolk messenger bird, Erroll/Errol's linked communication, and the party's items in Freeport under Tiana's care. +The party noted a large platinum chair, the portal coin Infestus stabbed into the portal, a box taken from and replaced by a pillow, the sled and dogs, six empty-seeming copper rune orbs like those from Seaward, pale blue rocks present for around 3 months, five hollow smooth rocks or possible eggs, visitor shells, a holy symbol of Noxia with a lightning bolt, elemental containment spheres, the runes given to Anrasurall, a golem made of teeth, a copper pipe siphoning energy from Limusvita, a pouch of White Rose powder, pylons, automaton fragments in Envi's lab, a glowing parchment under a glass dome, runes used to trap the void elemental, Mother's spellbook in the same cipher as Envi's and containing the same spells, Pact chairs brought by Guardfree, Azureside records, Terry the merfolk messenger bird, Erroll/Errol's linked communication, and the party's items in Freeport under Tiana's care. The party gained the title "Saviours of the Pact" and levelled up. The new baby girl in Baytail Accord was the first born there in 20 years, though she had not yet been named. # Clues, Mysteries, and Open Threads -The dreams pointed to multiple unresolved threats: a magma dome and multi-headed dire crab in a dwarf or Ironforge-like place, Infestus sending Garadwal through a portal with a coin, Garadwal's prison and abnormal dragons, the void voice asking "where is he I know you know", and Geldrin's vision of someone replacing a box near an old withered man after passing through guild imagery, statues, runes, and teleport circles. The identity of the smaller [unclear] person, the box, the old man, and the viewer in Geldrin's dream remains uncertain. +The dreams pointed to multiple unresolved threats: a magma dome and multi-headed dire crab in a dwarf or Ironforge-like place, Infestus sending Garadul through a portal with a coin, Garadul's prison and abnormal dragons, the void voice asking "where is he I know you know", and Geldrin's vision of someone replacing a box near an old withered man after passing through guild imagery, statues, runes, and teleport circles. The identity of the smaller [unclear] person, the box, the old man, and the viewer in Geldrin's dream remains uncertain. The prison near the hunting tents had burst open, with a snow haunt, claw-torn tents, pale blue rocks, hollow rocks or possible eggs, and an ice-white eagle guarding or attacking the site. Anrasurall had tried to free someone using given runes, claimed he did not miss, and was killed by the bird; who gave him the runes and exactly whom he tried to free remain open. -The life prison had been converted into flesh by high-level Carnamancy, possibly by The Mother. Limnuvela was only holding on to keep the barrier up after Mother siphoned him. The prison mechanics remain important: a fully closed prison puts the elemental in stasis, while removing pylons slows it down. +The life prison had been converted into flesh by high-level Carnamancy, possibly by The Mother. Limusvita was only holding on to keep the barrier up after Mother siphoned him. The prison mechanics remain important: a fully closed prison puts the elemental in stasis, while removing pylons slows it down. -Garadwal's movement through Blackscale, the dome, and Baytail Accord remains unresolved. Blackscale was using the party's kings as servants, and the boss wanted the barrier maintained because it kept his head in one place. The meaning of that head and the boss's relationship to Garadwal remain open. +Garadul's movement through Blackscale, the dome, and Baytail Accord remains unresolved. Blackscale was using the party's kings as servants, and the boss wanted the barrier maintained because it kept his head in one place. The meaning of that head and the boss's relationship to Garadul remain open. The Mother died at Baytail Accord, but her ability to repurpose Envi's clone seemed impossible under known clone rules, especially outside the 120 days. Her spellbook matched Envi's cipher and spells. Valenth saw Joy during the barrier energy surge, but she was not headed to a specific circle. @@ -102,4 +102,4 @@ Azureside records say the Goliaths were wiped out by Green Dragons, with no cont Reports from the Pact leaders point to wider instability: colder weather and storms near Fishbait's Edge, lost loggers at Dine Springs, Baron attacks and nefarious Seaward shipments near Fairshore, a menagerie break-in and black-market animal fines, Dunensend not sending troops against giants, and unusual Seaward barrier repairs by gushiers including an unknown "Gendrin". The noble council meeting on the next Trimoon remains pending. -The party planned to go to the Salinas Statue to fix that, while Cardenald was back and the party's Freeport items were entrusted to Tiana. Dreams may have been saved over many years, with many recent dreams showing who the party are. +The party planned to go to the Salinus Statue to fix that, while Cardenald was back and the party's Freeport items were entrusted to Tiana. Dreams may have been saved over many years, with many recent dreams showing who the party are. diff --git a/data/4-days-cleaned/day-27.md b/data/4-days-cleaned/day-27.md index 42ab453..56bcc47 100644 --- a/data/4-days-cleaned/day-27.md +++ b/data/4-days-cleaned/day-27.md @@ -17,7 +17,7 @@ complete: true # Narrative -Day 27 was Sunday, 11th Tan, with 7 days to Trimoon and 5 days to the auction. A note records "Gull level down". Geldrin needed 4-5 hours to calculate the shard's trajectory. Cardenald came to Baytail Accord and helped Geldrin calculate it. The shard would probably still hit Grand Towers if nothing changed. If the party stopped another shard, it would not be on course for ship 2. Garadwal was possibly setting up another plan. Cardenald was to go to the Salinas statue with merfolk and destroy it. +Day 27 was Sunday, 11th Tan, with 7 days to Trimoon and 5 days to the auction. A note records "Gull level down". Geldrin needed 4-5 hours to calculate the shard's trajectory. Cardenald came to Baytail Accord and helped Geldrin calculate it. The shard would probably still hit Grand Towers if nothing changed. If the party stopped another shard, it would not be on course for ship 2. Garadul was possibly setting up another plan. Cardenald was to go to the Salinus statue with merfolk and destroy it. The party teleported to the statue close to Dunensend, a giant statue of Serra. Two guards were at the statue: one sphinx-tabaxi with ebony skin and human features, and another with reptilian hide skin and spears. At 12:00, the party headed down to Dunensend, which shone blue and orange and had a very Arabic style. @@ -43,7 +43,7 @@ The party was taken to a room. The bird-man's boss was in the Elven Ruins and wa A message from Cardenald reported that the Salt was sorted. Seaward should be fixed, but something else seemed to be affecting the barrier. He had to use magics and other means to get there quicker. Eroll had forgotten he gave the party the message. Dirk told the spider they could do with a chat. A Dunar guard knocked on the door and turned out to be another automaton. It did not know why it was there. The whole place was riddled with automatons. It was a prisoner, not part of the barrier, under Grand Towers, and not one of the three. The control room was completely empty of people. -"The guilt" was one of its names. It kept calling Eliana sweetie. It knew who was behind the message from Cardenald and wanted to make a deal, saying it had been freeing itself to communicate again. It could reset the control room and would do one as a show of help. It laid a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It said there should be five of the party after all, but because there were four they had gone under the radar. Alistair in Everchard was the same as with the wizards, as one disappeared upon barrier creation. It would fix a prison to show it would help. The prisoners hardly existed when it was imprisoned. The party chose Valenthide to fix first, and Geldrin saw him. +"The guilt" was one of its names. It kept calling Eliana sweetie. It knew who was behind the message from Cardenald and wanted to make a deal, saying it had been freeing itself to communicate again. It could reset the control room and would do one as a show of help. It laid a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It said there should be five of the party after all, but because there were four they had gone under the radar. Alistair in Everchard was the same as with the wizards, as one disappeared upon barrier creation. It would fix a prison to show it would help. The prisoners hardly existed when it was imprisoned. The party chose Valentinhide to fix first, and Geldrin saw him. There were many spiders around. The party thought the imprisoned being under Grand Towers might be light or dark. The Huntsmistress reported that many automatons had been located and blew up when confronted. No other lion-beast things had been found. Grand Huntsmen in Grand Towers had been contracted. The Goliaths might be linked to the matter. Haemia, the lion lady beast, was a creature created by a dark power. The notes ask whether Darkness and Light Excellence exist. The Haemia might be trying to make space or clear out. @@ -73,17 +73,17 @@ The Hard Cheese was a cafe down the road for people out of towers and sold booze # People, Factions, and Places Mentioned -Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunensend, Serra, Dunensend, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Attabre, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, The Basilisk, Ingris / Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. +Geldrin, Cardenald, Garadul, Grand Towers, ship 2, Salinus statue, merfolk, Dunensend, Serra, Dunensend, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Attabre, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valentinhide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, The Basilisk, Ingris / Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. # Items, Rewards, and Resources -The shard trajectory calculations required 4-5 hours and indicated Grand Towers remained threatened. The Salinas statue near Dunensend was targeted for destruction by Cardenald and the merfolk. Dunensend's rules prohibited alcohol, spell writing, and worship of liar or darkness. The Hearth Master produced trade logs confirming the party's map. The party received feathers similar to arakobra feathers, a blowgun, fragments of a core cage from Agugu, and a small mechanical spider automaton from a pot. +The shard trajectory calculations required 4-5 hours and indicated Grand Towers remained threatened. The Salinus statue near Dunensend was targeted for destruction by Cardenald and the merfolk. Dunensend's rules prohibited alcohol, spell writing, and worship of liar or darkness. The Hearth Master produced trade logs confirming the party's map. The party received feathers similar to arakobra feathers, a blowgun, fragments of a core cage from Agugu, and a small mechanical spider automaton from a pot. -The guilt placed a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It claimed it could reset the control room and would fix one prison to prove its help. The party chose Valenthide first. Geldrin's compass could detect automatons. A broken bowstring was found in Indanyu's room. The party learned of a box like the one from Gelissa, but not the same, held by Sister Proulsothight [uncertain]. The heat box was intercepted by the party, and The Basilisk had been looking for the box. Morgana carried two birds and had the pigeon that helped in Everchard. Morgana gave goodberries to heal refugees. The Hard Cheese sold booze. +The guilt placed a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It claimed it could reset the control room and would fix one prison to prove its help. The party chose Valentinhide first. Geldrin's compass could detect automatons. A broken bowstring was found in Indanyu's room. The party learned of a box like the one from Gelissa, but not the same, held by Sister Proulsothight [uncertain]. The heat box was intercepted by the party, and The Basilisk had been looking for the box. Morgana carried two birds and had the pigeon that helped in Everchard. Morgana gave goodberries to heal refugees. The Hard Cheese sold booze. # Clues, Mysteries, and Open Threads -The shard would probably still hit Grand Towers unless something changed, and Garadwal may have been setting up another plan. Stopping another shard would alter the course for ship 2. Cardenald was sent with merfolk to destroy the Salinas statue, while Seaward was reported fixed but still affected by something else in the barrier. +The shard would probably still hit Grand Towers unless something changed, and Garadul may have been setting up another plan. Stopping another shard would alter the course for ship 2. Cardenald was sent with merfolk to destroy the Salinus statue, while Seaward was reported fixed but still affected by something else in the barrier. Dunensend was under multiple pressures: Vulturemen or Arahuoa assassins, fire demons, snake-lizard people, a moving fort in the desert, green dragon attacks, deaths in the city, and possible assassination of the Chancellor. The captured bird-man seemed innocent of the immediate crime but lied about whether his people were missing. Feather coloration may identify the true attackers. diff --git a/data/4-days-cleaned/day-28.md b/data/4-days-cleaned/day-28.md index 8d71fcf..3fbcc50 100644 --- a/data/4-days-cleaned/day-28.md +++ b/data/4-days-cleaned/day-28.md @@ -16,7 +16,7 @@ At 8:00, the party headed to the palace to meet the Huntsmistress for mounts and This report differed from the one received a few days earlier. The party tried to understand whether Pride was a friend. Pride was meant to fix the prison, but instead seemed to have opened it. They called on Rubyeye, who thought he knew who the relevant figure was, saying that he and Valenth had long discussed it. Rubyeye said Browning and Ennui had something under the grand towers: an advance in the technology for creating the dome, discovered during excavation for the dome. The notes suggest that elves may have trapped him and Browning and Ennui backwards, and that something had been engineered to create the dome in the workshop or to serve as a power source for the workshop. Darkness and Excellence were both noted in connection with this. -Rubyeye explained that the controls for the overseer, Cardenald, should be separate from the mainframe. The system was double locked by Valenthide prison and an automaton guard. Pride's prison was not connected to the barrier network. An entrapment ritual could subdue and hold beings in place by weakening them and activating the runes. +Rubyeye explained that the controls for the overseer, Cardenald, should be separate from the mainframe. The system was double locked by Valentinhide prison and an automaton guard. Pride's prison was not connected to the barrier network. An entrapment ritual could subdue and hold beings in place by weakening them and activating the runes. The party suspected someone might be trying to distract them from saving the shield from crushing, setting many things in motion so they would be distracted and unable to get help. They considered visiting the elven ruins with the Vulture prisoner, going to visit mother, and asking the Huntsmistress to lend them a man. They asked about the automatons; the Huntsmistress did not know, but said someone of her talent had made them, probably Ennui and Browning. She had heard about the party's run-in with the sister the previous night and wanted proof that the vulture people were not behind the killings before she would give aid. @@ -30,12 +30,12 @@ The party went the other way and approached an oasis. The dragons seemed to be h # People, Factions, and Places Mentioned -Dunensend palace, the grand towers, the dome, the workshop, the barrier network, Valenthide prison, the elven ruins, the Endless Dunes, the ruins, and the oasis were all mentioned. Dirk, Morgana, Geldrin, the Huntsmistress, Rubyeye, Valenth, Browning, Ennui, Pride, Cardenald, mother, the sister, the Vulture prisoner, the Vulture-man, Vulturemen, Haemia, athruygon? [uncertain name], Salamander men, fire creatures, Excellence, elves, scouts, dragons, a purple vision of a dragon, and one two-headed young adult dragon were also mentioned. +Dunensend palace, the grand towers, the dome, the workshop, the barrier network, Valentinhide prison, the elven ruins, the Endless Dunes, the ruins, and the oasis were all mentioned. Dirk, Morgana, Geldrin, the Huntsmistress, Rubyeye, Valenth, Browning, Ennui, Pride, Cardenald, mother, the sister, the Vulture prisoner, the Vulture-man, Vulturemen, Haemia, athruygon? [uncertain name], Salamander men, fire creatures, Excellence, elves, scouts, dragons, a purple vision of a dragon, and one two-headed young adult dragon were also mentioned. # Items, Rewards, and Resources -The party arranged mounts from the Huntsmistress, including an extra mount for Morgana. The statue was surrounded by red flashing runes. Rubyeye described controls for the overseer, Cardenald, separated from the mainframe and double locked by Valenthide prison and an automaton guard. An entrapment ritual was described as a way to subdue and hold targets by weakening them and activating runes. The possible technology under the grand towers related to creating the dome, the workshop, or a power source for the workshop. +The party arranged mounts from the Huntsmistress, including an extra mount for Morgana. The statue was surrounded by red flashing runes. Rubyeye described controls for the overseer, Cardenald, separated from the mainframe and double locked by Valentinhide prison and an automaton guard. An entrapment ritual was described as a way to subdue and hold targets by weakening them and activating runes. The possible technology under the grand towers related to creating the dome, the workshop, or a power source for the workshop. # Clues, Mysteries, and Open Threads -Dirk and Geldrin both experienced possible scrying or mental intrusion. The animated statue, red flashing runes, 40 Salamander men, fire creatures, and purple six-armed Excellence suggested that the situation at the statue had changed significantly from earlier reports. Pride may have opened a prison rather than fixing it, and it remains unclear whether Pride is an ally, a manipulated actor, or a threat. Rubyeye's account connected Valenth, Browning, Ennui, elves, the dome, the workshop, Cardenald, Valenthide prison, the mainframe, the automaton guard, Darkness, and Excellence, but the exact relationship remains uncertain. The Huntsmistress withheld full aid until given proof that the vulture people were not behind the killings. The Vulture-man offered a possible cease fire meeting if the leaders would agree. The dragons searching the ruins, including a two-headed young adult dragon and a purple draconic vision, remain a major threat in the Endless Dunes. +Dirk and Geldrin both experienced possible scrying or mental intrusion. The animated statue, red flashing runes, 40 Salamander men, fire creatures, and purple six-armed Excellence suggested that the situation at the statue had changed significantly from earlier reports. Pride may have opened a prison rather than fixing it, and it remains unclear whether Pride is an ally, a manipulated actor, or a threat. Rubyeye's account connected Valenth, Browning, Ennui, elves, the dome, the workshop, Cardenald, Valentinhide prison, the mainframe, the automaton guard, Darkness, and Excellence, but the exact relationship remains uncertain. The Huntsmistress withheld full aid until given proof that the vulture people were not behind the killings. The Vulture-man offered a possible cease fire meeting if the leaders would agree. The dragons searching the ruins, including a two-headed young adult dragon and a purple draconic vision, remain a major threat in the Endless Dunes. diff --git a/data/4-days-cleaned/day-29.md b/data/4-days-cleaned/day-29.md index 31d0248..f14978f 100644 --- a/data/4-days-cleaned/day-29.md +++ b/data/4-days-cleaned/day-29.md @@ -18,7 +18,7 @@ The party was en route to Dunensend to see whether the issues there had been res The party continued in the same direction and came across rocks like seaweed, but with a different vein colour. Pressing a rock caused a staircase to appear, opening into a large under-sand structure. Inside was a mosaic on the floor showing a lionin creature, a four-legged sphinx, a goat-headed sphinx, and a six-legged cat-like creature with a braided beard and Egyptian headdress. The central figure had a lion body, six limbs with hand-like feet, and was flanked on each side by six vulturemen wearing Dunnen-style clothes in an honour guard style. -Astraywoo bowed to the figure. Dirk greeted him as "Excellence", describing him as having the vultures under his wings to protect them after Gardwal failed. The party thought his brother was looking for him. The Goliaths had come to him asking for help to trap his brother. The party said they would protect him if they escorted him to see the Dunnen people. After being told about the automaton, he did not want to go to Dunensend, but he may have had something to show faith. +Astraywoo bowed to the figure. Dirk greeted him as "Excellence", describing him as having the vultures under his wings to protect them after Garadul failed. The party thought his brother was looking for him. The Goliaths had come to him asking for help to trap his brother. The party said they would protect him if they escorted him to see the Dunnen people. After being told about the automaton, he did not want to go to Dunensend, but he may have had something to show faith. The notes then jump because pages 103 and 104 were missing or unavailable. The next available material records a fight with Lortesh, ending with the party killing him. Dirk took skulls. Geldin found two skulls in them, which were given to Invar. Dirk buried their dragon skulls. The party scoured the beard and took it back to town. Morgana noticed the plants starting to grow. @@ -32,7 +32,7 @@ Errol hopped onto a message table. A message or voice said, "make your decision # People, Factions, and Places Mentioned -Dunensend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, The Basilisk, Anite!, the Dunnen people, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. +Dunensend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Garadul, Luth, Lortesh, Benu, mother, father, Arvel, Errol, The Basilisk, Anite!, the Dunnen people, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. # Items, Rewards, and Resources @@ -40,4 +40,4 @@ The under-sand structure was opened by pressing a rock among seaweed-like rocks # Clues, Mysteries, and Open Threads -Pages 103 and 104 were missing or unavailable, so the transition from the under-sand meeting with Excellence to the fight with Lortesh is incomplete. The identity and motives of the Salamander-like invaders from the great Brass City, their true salamander leader, and their reference to kin seeking "their thorn in their sides" remain open. Luth was reportedly alive and hiding with the vulturemen, possibly in the dome. Excellence protected the vultures after Gardwal failed, and his brother was apparently looking for him; the Goliaths had asked Excellence for help trapping that brother. Excellence was reluctant to go to Dunensend after hearing about the automaton, though he may have had something to show faith. The Rhelmbreaker giant was spotted at Highden travelling waterwise. The message table incident with Errol preserved the strange statements "make your decision (Anite!)", an admission of mistakenly controlling the wizard and accidentally opening the prison, and happiness that the party killed the dragon and felt proud of themselves. +Pages 103 and 104 were missing or unavailable, so the transition from the under-sand meeting with Excellence to the fight with Lortesh is incomplete. The identity and motives of the Salamander-like invaders from the great Brass City, their true salamander leader, and their reference to kin seeking "their thorn in their sides" remain open. Luth was reportedly alive and hiding with the vulturemen, possibly in the dome. Excellence protected the vultures after Garadul failed, and his brother was apparently looking for him; the Goliaths had asked Excellence for help trapping that brother. Excellence was reluctant to go to Dunensend after hearing about the automaton, though he may have had something to show faith. The Rhelmbreaker giant was spotted at Highden travelling waterwise. The message table incident with Errol preserved the strange statements "make your decision (Anite!)", an admission of mistakenly controlling the wizard and accidentally opening the prison, and happiness that the party killed the dragon and felt proud of themselves. diff --git a/data/4-days-cleaned/day-30.md b/data/4-days-cleaned/day-30.md index 9721978..5929a1f 100644 --- a/data/4-days-cleaned/day-30.md +++ b/data/4-days-cleaned/day-30.md @@ -17,23 +17,23 @@ The party received Town Crier information on the laptop. The Basilisk had sent a Hucan's ship had been attacked and rummaged in the night, and the party's cart had also been rummaged through. Messages were being intercepted. The notes connect this to a blue dragon, leaked battle plans, and a magical attack at Craters Edge. The cart guards had been found in a mess, pointing toward a betrayer. -The moon shard had gone into the sea. Invar retrieved it and tried to take it back to the ground towers, while Xinquss had been tasked to retrieve it. Huan survived, but the ship was missing, with Census / Hydratrox noted beside that thread. Council members were on their way to Highden. Wrath was connected to Valenthide, and Xinquss was connected to the shield crystal. +The moon shard had gone into the sea. Invar retrieved it and tried to take it back to the ground towers, while Xinquss had been tasked to retrieve it. Huan survived, but the ship was missing, with Census / Hydratrox noted beside that thread. Council members were on their way to Highden. Wrath was connected to Valentinhide, and Xinquss was connected to the shield crystal. Benu was staying in Dunensend and would build a temple in the city. The party's father had sent feelers to the army and could spare 100 troops: 30 skilled fighters and 70 conscripts. The Huntmistress also provided 5 healers. Transport was obtained for everyone, along with 10 cavalry. Scouts reported a similar-sized army at the barrier. Benu could message Cardenald and ask her to meet at 09:00 in Dunensend. Cardenald would meet them at the shrine, and the party saw her glinting in the sun. She had sent them a message that they had not received. She thought somebody was trying to get into her thoughts, though she had kept them out so far. She could also fix Errol. -Salinay was sealed, and the barrier energy was depleted. Valententhide was identified as the cause. The Betrayer would be working on another body and would take 20-30 days. +Salinus was sealed, and the barrier energy was depleted. Valentinhide was identified as the cause. The Betrayer would be working on another body and would take 20-30 days. The party asked Cardenald about resurrecting Rubyeye. She said yes, and the party was also leaning that way, so they agreed to do it. Both eyes glowed red, the skull floated and animated, and Rubyeye came back to life and made a beard. Geldrin had a flashback to a room with a floating skull. The party also learned that Enwi's gloves were in the Goliath Tower in the Oasis, meaning Enwi died and went there, but nobody knew, so Enwi had not been released. -Browning had made a bargain to rid fishes from the barrier in return for a peace treaty. Enwi had also made some sort of pact involving rings. The phrase "The Guilt is an excellence!!" was recorded. Browning's lab was near Craters Edge. The party discussed magical defenses against Valententhide, especially Counterspell. +Browning had made a bargain to rid fishes from the barrier in return for a peace treaty. Enwi had also made some sort of pact involving rings. The phrase "The Guilt is an excellence!!" was recorded. Browning's lab was near Craters Edge. The party discussed magical defenses against Valentinhide, especially Counterspell. A message was sent to The Basilisk saying that the Guilt was Excellence and asking for mage help with Wrath. Benu could create a hero's feast. The party went to the Cheese shop looking for mages or scrolls. There were no mages or scrolls there, but someone could speak to [uncertain: Proloknight] for them about Counterspell and Polymorph. Counterspell cost 500g, with an additional 10g [unclear]. A finder's fee was noted only for two scrolls, though the party wanted three. Polymorph was estimated at 3-4kg, and Morgana could do it. -The party tried to see what the automaton, Galatrayer, was doing. Cardenald tapped into the one guarding Valententhide's prison and saw a stone room, with somebody there and out of focus. Valententhide might still be imprisoned, but Geldrin was not convinced. Groll wondered whether somebody was in Galatrayer's head: the overseer or the explorer. +The party tried to see what the automaton, Galatrayer, was doing. Cardenald tapped into the one guarding Valentinhide's prison and saw a stone room, with somebody there and out of focus. Valentinhide might still be imprisoned, but Geldrin was not convinced. Groll wondered whether somebody was in Galatrayer's head: the overseer or the explorer. -The party returned to the palace. Cardenald and Rubyeye went back to Cardenald's lab to study and gather supplies. Geldrin searched the library for Valententhide or the Goliath city. A scholar described Goliath people from about 900 years ago and said Goliaths helped build Dunensend. Master Shined glass was noted. The Goliath capital was Ashktioth, and Tradesmall was a Goliath town. In a book of fables, Valententhide should have been one of the 12 and was given the undesirable job of looking after dust; the apprentice became the god instead, connected to darkness. +The party returned to the palace. Cardenald and Rubyeye went back to Cardenald's lab to study and gather supplies. Geldrin searched the library for Valentinhide or the Goliath city. A scholar described Goliath people from about 900 years ago and said Goliaths helped build Dunensend. Master Shined glass was noted. The Goliath capital was Ashktioth, and Tradesmall was a Goliath town. In a book of fables, Valentinhide should have been one of the 12 and was given the undesirable job of looking after dust; the apprentice became the god instead, connected to darkness. The army left at 16:00. Invar received a message back saying the Lady was unavailable because she was fighting on the front lines. They counted their money back. News that morning mentioned a village, but there was no other news, and the battle was going badly. Soots bones were being inspected by a scholar from Dunensend on behalf of Lady R. Beauchamp?!?, with "Blue Dragon?!?" written beside it. @@ -41,7 +41,7 @@ Cardenald and Rubyeye returned with 2 orbs and 2 scrolls of Counterspell. Errol # People, Factions, and Places Mentioned -The Basilisk, Lady Elissa Hartwall, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunensend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. +The Basilisk, Lady Elissa Hartwall, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valentinhide / Valentinhide, Benu, Dunensend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinus, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. Places mentioned include Dunensend, the shrine, the barrier, the sea, the ground towers, the shield crystal, Highden, Craters Edge / Crater's Edge, Browning's lab, the Cheese shop, the palace, Cardenald's lab, the library, the Goliath Tower in the Oasis, the Goliath capital Ashktioth, and Tradesmall. @@ -57,8 +57,8 @@ Messages were being intercepted, including a message from Cardenald that the par The moon shard, Invar's attempt to take it to the ground towers, and Xinquss's task to retrieve it remain important. Huan survived, but the ship was missing, with Census / Hydratrox recorded uncertainly. Cardenald believed someone was trying to enter her thoughts, though she had resisted so far. -Salinay was sealed and the barrier energy depleted, with Valententhide named as the cause. Valententhide may still have been imprisoned in a stone room, but Geldrin was not convinced by what Cardenald saw through Galatrayer. Groll's question about someone being in Galatrayer's head, possibly the overseer or the explorer, remains unresolved. The Betrayer's next body would take 20-30 days. +Salinus was sealed and the barrier energy depleted, with Valentinhide named as the cause. Valentinhide may still have been imprisoned in a stone room, but Geldrin was not convinced by what Cardenald saw through Galatrayer. Groll's question about someone being in Galatrayer's head, possibly the overseer or the explorer, remains unresolved. The Betrayer's next body would take 20-30 days. Enwi died and went to the Goliath Tower in the Oasis, but because nobody knew this, Enwi had not been released. Browning's bargain to clear fishes from the barrier in return for a peace treaty, Enwi's pact involving rings, Browning's lab near Craters Edge, and the note "The Guilt is an excellence!!" all remain linked but not fully explained. -Valententhide's fable says he should have been one of the 12, was given the undesirable task of looking after dust, and the apprentice became the god instead, connected to darkness. Crater's Edge appeared intact and quiet at 24:00, with a possible Joy-like tiefling child looking from a window, raising the question of whether it was a trap. +Valentinhide's fable says he should have been one of the 12, was given the undesirable task of looking after dust, and the apprentice became the god instead, connected to darkness. Crater's Edge appeared intact and quiet at 24:00, with a possible Joy-like tiefling child looking from a window, raising the question of whether it was a trap. diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index dc8ff1b..6f2f35a 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -20,7 +20,7 @@ complete: true # Narrative -Day 32 began in a Hillfolk village between [uncertain: Prortibhe] and Stone Rampart, earthwise. The party decided to travel to Hartwall because of the Rift block. They teleported to the statue of Lan outside Hartwall and arrived on target. Lan was noted as an earth god associated with love, home, and family, and the statue of Lan was very similar in style to the Statue of Serva. +Day 32 began in a Hillfolk village between [uncertain: Prortibhe] and Stone Rampart, earthwise. The party decided to travel to Hartwall because of the Rift block. They teleported to the statue of Lan outside Hartwall and arrived on target. Lan was noted as an earth god associated with love, home, and family, and the statue of Lan was very similar in style to the Statue of Sierra. At Hartwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Elissa Hartwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hartwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. @@ -36,7 +36,7 @@ The drink lots began. Lot 1 was a famous 28-year elven bottle of booze and sold The coin lots followed. Lot 10 was five Black Dragons, bought for 10g by a shiny man who was dressed up by someone. Lot 11 was a Grand Towers penny, bought for 3g by Raven no. 1. Lot 12 was a golden crown and two silver clappers, sold for 15g. Lot 13 was dwarven copper coins, with two people bidding, sold for 1g. Lot 14 was electrum and did not sell. Lot 15 was silver pieces, associated with gnome great Fummouth, sold for 8g to Raven 2. Lot 16 was a Brass City coin, sold for 160g to a tabaxi with a shaved head and pink mohawk. -The art lots began with Lot 17, talon of soot, sold by remote bid for 50g. Lot 18 was a painting of Lord Bleakstorm refusing demands, a female being relieved in Caroline Harthwall(?) with an infant and a blue cow, and a male the party might have recognized: Iceborg, with Jayseel horns. The image of someone lowering a rope down a hole sold for 35g, apparently for too much jewellery to a human male. Lot 19 was an obsidian and bone statue showing a crab claw and talon shielding Throngore over a featherless female, titled "Valententide's Betrayal." It sold for 140g to Raven 1. +The art lots began with Lot 17, talon of soot, sold by remote bid for 50g. Lot 18 was a painting of Lord Bleakstorm refusing demands, a female being relieved in Caroline Harthwall(?) with an infant and a blue cow, and a male the party might have recognized: Iceborg, with Jayseel horns. The image of someone lowering a rope down a hole sold for 35g, apparently for too much jewellery to a human male. Lot 19 was an obsidian and bone statue showing a crab claw and talon shielding Throngore over a featherless female, titled "Valentinhide's Betrayal." It sold for 140g to Raven 1. Lot 20 showed Davina Browning covering her eyes with her hands, with eyes on the hands, titled "circling vultures." It sold for 10g to the jewellery guy. Lot 21 was love poetry, blessings of Laurel, and sold for 7g. Lot 22 was a red and blue glass sculpture of Serra and sold for 10g. Lot 23 was the functioning moon pocket watch and sold for 175g. Lot 24 was the green-rim spectacles, which translated elven into common, and sold for 112g. Lot 25 was the mahogany box, also called the Smulty box, and sold for 30g to a bidder described as an elf / flirting woman with goat legs. Lot 26 was a Ray of sorting and stirring and sold for 85g. Lot 27 was an elven forest comb of delousing and sold for 35g. Lot 28 was an elven flute carved with mice, called a turtle flute, and sold for 65g. Lot 29 was an hourglass of smoke instead of sand and sold for 85g. @@ -60,7 +60,7 @@ Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not the Claymeadow and Lady Neegate were noted; she had been quiet lately due to a loss in the family. The party decided to make a plan before speaking to the wizard and went to the Irate Unicorn, where there was a shrine to Lam. They asked The Basilisk for help from the guild to check the prisons. They then went to see a tortle wizard who could teleport them somewhere and would come back tomorrow. -The internal note marked "Day 27" was recorded here but was not treated as a day boundary. The bag began humming and glowing, and there was a note from The Basilisk. Redford and Everchard had no Lady Thorpe. Goldenswell refused and prevented access; The Basilisk met a few things, reporters, and so on. Little Bugy was noted as someone tried to assassinate Sefris on the ground, connected to the Cult of Salvation, last night. The skull was glowing, humming, and vibrating, and it was given to Geldrin. +The internal note marked "Day 27" was recorded here but was not treated as a day boundary. The bag began humming and glowing, and there was a note from The Basilisk. Redford and Everchard had no Lady Thorpe. Goldenswell refused and prevented access; The Basilisk met a few things, reporters, and so on. Little Bugy was noted as someone tried to assassinate Sefris on the ground, connected to the Cult of Salvation, last night. Tremon's skull was glowing, humming, and vibrating, and it was given to Geldrin. The connection destabilised all charms out of the windows. The Tri-moon was visible in the day, which does not usually happen. It seemed to hang ominously. Usually it is seen in the dark; seeing it in daylight showed it as a crystal. The Barrier looked normal, and the moon did not look different in size; the small chunk was visible. At 09:30, Geldrin estimated it should have been there around 2am, so it was 16 hours ahead of schedule. The party told everyone about The Basilisk's note and the three prisons. @@ -76,13 +76,13 @@ When the captain was awakened, he said he got in trouble with the Duke for attra The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardonald via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Elissa Hartwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. -The skull's connection to ascension to godhood was discussed, and it was linked to when the moon did this, like the Tri-moon / Treamen. Geldrin tried to attune to the skull. An obsidian raven circled overhead as if looking for something and then flew off toward Grand Towers. +The connection between Tremon's skull and ascension to godhood was discussed, and it was linked to when the moon did this, like the Tri-moon / Treamen. Geldrin tried to attune to the skull. An obsidian raven circled overhead as if looking for something and then flew off toward Grand Towers. -When Geldrin attuned to the skull, he saw visions. A woman with no belly button and other unusual details was grabbed by a crab claw; Vallententide was grabbed, and she disappeared. A black and white dragon fought, and the white dragon was injured; a silver dragon rescued someone. A veridian dragonborn, a gnome, and an old man smiled at a dragonborn and nodded. 629 AD was noted. In a throne room with dwarven guards, walls crumbled as a giant skeletal dragon breathed out; "today" and soot were noted. These were the things the skull had gazed upon last. +When Geldrin attuned to Tremon's skull, he saw visions. A woman with no belly button and other unusual details was grabbed by a crab claw; Vallententide was grabbed, and she disappeared. A black and white dragon fought, and the white dragon was injured; a silver dragon rescued someone. A veridian dragonborn, a gnome, and an old man smiled at a dragonborn and nodded. 629 AD was noted. In a throne room with dwarven guards, walls crumbled as a giant skeletal dragon breathed out; "today" and soot were noted. These were the things the skull had gazed upon last. -The skull could crush foes, let him pass, and show visions, though the visions were the only thing Geldrin had seen it do. "The lord above place in the sky" was noted. Noxia could poison things to stop them being their true form. The skull had influence over the Barrier and could bend it. It had been assaulted by mortals when he came to the god meeting. Valententide had been attacked by Throngore, with darkness. The dragons fighting were 525 years before the veridian dragonborns. Gary, the corrupted sphinx, was heading toward Grand Towers. +Tremon's skull could crush foes, let him pass, and show visions, though the visions were the only thing Geldrin had seen it do. "The lord above place in the sky" was noted. Noxia could poison things to stop them being their true form. The skull had influence over the Barrier and could bend it. It had been assaulted by mortals when he came to the god meeting. Valentinhide had been attacked by Throngore, with darkness. The dragons fighting were 525 years before the veridian dragonborns. Gary, the corrupted sphinx, was heading toward Grand Towers. -The skull showed a projection of Grand Towers using moon reflections. The party saw a man walking through the streets toward the prison device. It showed "The Mother" crater, a small town, which was the place he fell, and a small halfling girl sitting at a table seeing dogs together. At Condennis Place, which was empty, the vision went to an underground dwarven city. A figure was laid out on a table with a skull floating next to her and an old wizened dwarf noting; this was the wizard from Invar's vision, looking after the molten prison. He touched it and stopped it leaking. The notes question whether this related to Ruby Eye's wife or village. +Tremon's skull showed a projection of Grand Towers using moon reflections. The party saw a man walking through the streets toward the prison device. It showed "The Mother" crater, a small town, which was the place he fell, and a small halfling girl sitting at a table seeing dogs together. At Condennis Place, which was empty, the vision went to an underground dwarven city. A figure was laid out on a table with a skull floating next to her and an old wizened dwarf noting; this was the wizard from Invar's vision, looking after the molten prison. He touched it and stopped it leaking. The notes question whether this related to Ruby Eye's wife or village. The skull showed the Goldenswell militia house with the same desk sergeant sitting there now. Prisoners seen included an elven man, the Elementarium; a human male in his mid-40s with a scar on his right cheek; a halfling woman, Baytail, accused as head of the Underbelly; an empty cell; a half-elven woman who resembled someone's sister, with the note that the party had seen their brothers before; a kobold in a tattered robe whose robe was recognized; and a pale-skinned halfling female with brown speckled eyes like tiger eye, likely someone the party had met, possibly Isabella Neegale's aunt or the Earl of Clay Meadows. @@ -92,11 +92,11 @@ The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Re # People, Factions, and Places Mentioned -People and name-like figures mentioned include Lan, Serva, Lady Elissa Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scumbleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Invar, Laura, Skutey Galvin, Constantine Harthwall, Dirk, Morgana, Eliana, Wroth, Lady Blossom Fatrabbit / Lady Fatrabbit, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardonald, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. +People and name-like figures mentioned include Lan, Sierra, Lady Elissa Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valentinhide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scumbleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Invar, Laura, Skutey Galvin, Constantine Harthwall, Dirk, Morgana, Eliana, Wroth, Lady Blossom Fatrabbit / Lady Fatrabbit, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardonald, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. -Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Elissa Hartwall's bedroom, the castle dungeons, the militia house, Highden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Lam, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. +Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Sierra, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Elissa Hartwall's bedroom, the castle dungeons, the militia house, Highden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Lam, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. # Items, Rewards, and Resources @@ -104,17 +104,17 @@ Resources and possessions mentioned include 870kg at the auction, "1600" recorde Auction lots and sale details mentioned include grand towers penne / Goliath coins x2; sosen mistle eel wine; a functioning moon-cycle pocket watch; elven green-rimmed glasses; a mahogany box / Smulty box with a red velvet curtain that formed illusionary scenes; a loved patched leather backpack / bag of sorting worth around 3-500g and able to hold 500lb or 64 gems while weighing 15lb; a silver scorpion on a chain / holy symbol of Noxia; Firefang, an 8/400-year-old longsword in Invar's style with +1D6, 5 spell charges, and Burning Hands, initially priced at 4500g and sold for 2050g; an Amle for adult?; a ring of protection; the chariot associated with the Guilt and an excellence defeated in the "battle of the unending seas," bid up to 11,900g and [uncertain: we got] 14,000g; Browning's scroll, which generates a new random spell every morning at 2:37, was disrupted by Geldrin's Dispel Magic, valued at 600g, and sold for 6,200g; a bracelet of locating won by Laura for 101g; art cork; rare poetry books; and a talon of soot sold remotely for 50g. -Specific auction lots mentioned include Lot 1, famous 28-year elven booze sold for 20g; Lot 2, 100-year-old Candelissa; Lot 3, older one sold for 350g to Candelissa; Lot 4, Smehlebeard whiskey sold for 270g to Janet Boulderdew; Lot 5, Crankfruit 75-year bottle / 280 years sold for 400g; Lot 6, Blind gale XXX with physick before imbibing; Lot 7, cherry wine / Sereza sold for 10g; Lot 10, five Black Dragons sold for 10g to the shiny man; Lot 11, Grand Towers penny sold for 3g to Raven no. 1; Lot 12, golden crown and two silver clappers sold for 15g; Lot 13, dwarven copper coins sold for 1g; Lot 14, electrum with no sale; Lot 15, silver pieces / gnome great Fummouth sold for 8g to Raven 2; Lot 16, Brass City coin sold for 160g to the tabaxi with a shaved head and pink mohawk; Lot 18, painting involving Lord Bleakstorm, Caroline Harthwall(?), an infant, a blue cow, Iceborg, Jayseel horns, and someone lowering a rope down a hole, sold for 35g; Lot 19, "Valententide's Betrayal," an obsidian and bone statue sold for 140g to Raven 1; Lot 20, Davina Browning's "circling vultures" sold for 10g to the jewellery guy; Lot 21, love poetry / blessings of Laurel sold for 7g; Lot 22, red and blue glass sculpture of Serra sold for 10g; Lot 23, moon pocket watch sold for 175g; Lot 24, green-rim spectacles translating elven into common sold for 112g; Lot 25, mahogany / Smulty box sold for 30g; Lot 26, Ray of sorting and stirring sold for 85g; Lot 27, elven forest comb of delousing sold for 35g; Lot 28, elven turtle flute carved with mice sold for 65g; Lot 29, smoke hourglass sold for 85g; Lot 30, holy symbol of Noxia sold for 175g to Raven 1; Lot 31, shield ring with runes of Lauren sold for 600g; Lot 32, Firefang sold for 2050g; Lot 33, chariot; Lot 34, Browning spell scroll; and Lot 35, mimic mouse trap. +Specific auction lots mentioned include Lot 1, famous 28-year elven booze sold for 20g; Lot 2, 100-year-old Candelissa; Lot 3, older one sold for 350g to Candelissa; Lot 4, Smehlebeard whiskey sold for 270g to Janet Boulderdew; Lot 5, Crankfruit 75-year bottle / 280 years sold for 400g; Lot 6, Blind gale XXX with physick before imbibing; Lot 7, cherry wine / Sereza sold for 10g; Lot 10, five Black Dragons sold for 10g to the shiny man; Lot 11, Grand Towers penny sold for 3g to Raven no. 1; Lot 12, golden crown and two silver clappers sold for 15g; Lot 13, dwarven copper coins sold for 1g; Lot 14, electrum with no sale; Lot 15, silver pieces / gnome great Fummouth sold for 8g to Raven 2; Lot 16, Brass City coin sold for 160g to the tabaxi with a shaved head and pink mohawk; Lot 18, painting involving Lord Bleakstorm, Caroline Harthwall(?), an infant, a blue cow, Iceborg, Jayseel horns, and someone lowering a rope down a hole, sold for 35g; Lot 19, "Valentinhide's Betrayal," an obsidian and bone statue sold for 140g to Raven 1; Lot 20, Davina Browning's "circling vultures" sold for 10g to the jewellery guy; Lot 21, love poetry / blessings of Laurel sold for 7g; Lot 22, red and blue glass sculpture of Serra sold for 10g; Lot 23, moon pocket watch sold for 175g; Lot 24, green-rim spectacles translating elven into common sold for 112g; Lot 25, mahogany / Smulty box sold for 30g; Lot 26, Ray of sorting and stirring sold for 85g; Lot 27, elven forest comb of delousing sold for 35g; Lot 28, elven turtle flute carved with mice sold for 65g; Lot 29, smoke hourglass sold for 85g; Lot 30, holy symbol of Noxia sold for 175g to Raven 1; Lot 31, shield ring with runes of Lauren sold for 600g; Lot 32, Firefang sold for 2050g; Lot 33, chariot; Lot 34, Browning spell scroll; and Lot 35, mimic mouse trap. Spells and magical effects mentioned include teleporting to the statue of Lan, Dispel Magic cast by Geldrin on Browning's scroll, Xinquiss / Mith teleporting away, a Justicar attempting Counterspell, Scumbleduck casting a spell by smashing a stick on the floor, the locating duck, an invisible obstruction, the concentration spell failing so false Lady Thorpe became a llama, a magical poison or religious curse possibly linked to Noxia, Geldrin's Scrying on Lady Thorpe, Morgana locating Lady Thorpe in the Goldenswell militia house, Eroll messages, Jin-Loo teleportation, the humming and glowing bag, the glowing/humming/vibrating skull, the skull's attunement visions, the skull's ability to show visions, crush foes, let him pass, influence / bend the Barrier, and need to be near foes to smite them. # Clues, Mysteries, and Open Threads -The page's opening location preserves uncertainty: the Hillfolk village was between [uncertain: Prortibhe] and Stone Rampart. The note "Day 32 [uncertain: Chuwee]" remains unclear. The relationship between the statue of Lan and the Statue of Serva remains significant because they are very similar in style. +The page's opening location preserves uncertainty: the Hillfolk village was between [uncertain: Prortibhe] and Stone Rampart. The note "Day 32 [uncertain: Chuwee]" remains unclear. The relationship between the statue of Lan and the Statue of Sierra remains significant because they are very similar in style. Xinqus / Xinquiss was in Hartwall with a cart and a [uncertain: pigeon/aracock], with "1600" recorded without explanation. The party agreed to drop off a piece of shield crystal for Xinquiss, and Wroth later helped hide that crystal. Xinquiss was being sought by Justicars. The party told Xinquiss that the quilt might be an "excellence" or working for one, but the meaning and target remain unresolved. -The auction contained many significant artifacts and historical references, including the chariot tied to an excellence defeated in the "battle of the unending seas," "Valententide's Betrayal," Browning's spell scroll, Firefang, the holy symbol of Noxia, the shield ring with runes of Lauren, and the talon of soot. The identities and agendas of the Ravens, jewellery men, emissary, Dally who walks in the room, the Hartwall partner, and the werewolfish [uncertain: Repiteth] remain open. The meaning of the Amle for adult? remains unclear. +The auction contained many significant artifacts and historical references, including the chariot tied to an excellence defeated in the "battle of the unending seas," "Valentinhide's Betrayal," Browning's spell scroll, Firefang, the holy symbol of Noxia, the shield ring with runes of Lauren, and the talon of soot. The identities and agendas of the Ravens, jewellery men, emissary, Dally who walks in the room, the Hartwall partner, and the werewolfish [uncertain: Repiteth] remain open. The meaning of the Amle for adult? remains unclear. False Lady Thorpe's odd mannerisms, failure to recognize the party, transformation into a llama when concentration failed, and the Noxia-like magical poison / religious curse suggest impersonation, shapeshifting, and identity suppression. The real Lady Thorpe had been abducted and held in Goldenswell. Lady Elissa Hartwall remained injured, and the antidote's target and composition are not fully clear. @@ -130,7 +130,7 @@ The Goldenswell operation exposed an off-the-books prison run under orders from The Elementarium had been in town crier information four days earlier but had been imprisoned for over a week, implying an imposter was active. Cardonald did not answer Eroll despite the direct contact, which remains unexplained. A few people tried to survey or enter the prison, including Scumi with a bag of skulls. -The skull's visions tied together Treamen / Tri-moon, ascension to godhood, Noxia's ability to poison things so they cannot be their true form, influence over the Barrier, mortals assaulting him at a god meeting, Valententide being attacked by Throngore, a black and white dragon fight, a silver dragon rescue, a veridian dragonborn, a gnome, an old man, 629 AD, soot, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, and a man walking through Grand Towers toward the prison device. These links remain unresolved. +The visions from Tremon's skull tied together Treamen / Tri-moon, ascension to godhood, Noxia's ability to poison things so they cannot be their true form, influence over the Barrier, mortals assaulting him at a god meeting, Valentinhide being attacked by Throngore, a black and white dragon fight, a silver dragon rescue, a veridian dragonborn, a gnome, an old man, 629 AD, soot, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, and a man walking through Grand Towers toward the prison device. These links remain unresolved. The Mother crater, the small town where he fell, the small halfling girl seeing dogs together, Condennis Place, the underground dwarven city, the old wizened dwarf from Invar's vision, the molten prison, and the possible connection to Ruby Eye's wife or village are all open threads. The skull's projection using moon reflections may connect the Tri-moon to distant surveillance or prison devices. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index 8928b83..e05f0a0 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -52,7 +52,7 @@ The party went to Hazy Days. Dirk, Invar, and Morgana queued for smokes and ques At about 15:00 the party went to the main building and queued to get in. They greased the palms of the guards to see Seneshell. The entrance hall contained all twelve gods. Inside was a thick plush red carpet, a chaise lounge, a tattooed female sparrow aarakocra wearing feathers, described as Briker / Magi, and a green lamp. Seneshell said that the Guilt had offered an olive branch, the party had not taken it, and now the Guilt was stuck. The Guilt's master had not left town and was back in his room. -Seneshell explained that the explosions were the Guilt's boss's guardsmen. The reason the Guilt was unconscious was also the reason for the explosions. The Guilt's boss, Pride, had been eaten by Garadwal. Seneshell said the party were much the same as her, because they also just worked for someone. Pride was a dark entity who wanted people to be proud. For the party, her big bad was a bit tougher. The Guilt's boss had been running things at Grand Towers. Seneshell suggested the party speak to Browning. The Guilt was an Avatar of Pride. [uncertain: Morrowred] had sold out the leaders. Pride had tried to put as many things out of commission as possible before he was consumed. Pride was neither good nor bad. +Seneshell explained that the explosions were the Guilt's boss's guardsmen. The reason the Guilt was unconscious was also the reason for the explosions. The Guilt's boss, Pride, had been eaten by Garadul. Seneshell said the party were much the same as her, because they also just worked for someone. Pride was a dark entity who wanted people to be proud. For the party, her big bad was a bit tougher. The Guilt's boss had been running things at Grand Towers. Seneshell suggested the party speak to Browning. The Guilt was an Avatar of Pride. [uncertain: Morrowred] had sold out the leaders. Pride had tried to put as many things out of commission as possible before he was consumed. Pride was neither good nor bad. The Guilt had a portal to Grand Towers, and Mercy would show the party a favour later. The party asked to see the Guilt. Seneshell sent them out of the room. They heard grinding and dragging across the plush carpet. When they returned, there was a chest similar to the one in Envy's lab, open, with the Guilt inside. The chest was dangerous when armed and had a code to disarm it. The party sent Errol to get Ruby Eye. There was no sign of the Underbelly. The party rubbed the lucky cyclops eye, but it did not go anywhere. @@ -60,7 +60,7 @@ The party headed back to the statue by the outskirts of town. They saw a few shi At the statue, an obsidian bird named Terry, Metallics' bird, waited with a private message from Incara: the party should be wary if their compatriot wizards were working against them, because the wizards were the reason for their infertility, though this was not yet confirmed. A margin note said the party would go down the passage after getting Ruby Eye. -There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Hartwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Elissa Hartwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. +There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the Skull of Tremon. The party told him they had left it at Hartwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Elissa Hartwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the Skull of Tremon and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. The party returned to Mercy's place. Behind Mercy stood a half-elf with rounded ears, the barkeep from the Drunken Duck. Mercy had told him what was going on, and he had come down to ease the party's worries. They were independent contractors for the Guilt, concerned citizens hired for money. He wanted to cash in the favour now. He wanted something from Grand Towers: a small trinket from the private mage area on the 74th floor, a Jelly Fish Broach. An interested party wanted it retrieved. The buyer was not the party's current mutual antagonist, but a female outside the barrier. The party promised to attempt to retrieve it. @@ -72,13 +72,13 @@ They followed Ruby Eye down the corridor to an elevator room with a teleport cir The party put another ball in the front. This vision showed a Grand Towers boardroom. Ruby Eye, Hartwall, and all five except Browning were present. Trinkets lay in front of them: Scorpion, Snowlee, Jelly Fish, Ant, and others. The other wizards looked uncomfortable. Someone put something into a pouch, and the deal was done. When asked how many more, the answer was about seven signed up and five more to go. The wizards looked uncomfortable, saying there must be another way. Ruby Eye was unhappy and said they were good people, but the only people who would suffer; it would save millions in the long run. -The mages knew Geldrin was following their progress and that he had succeeded in the barrier safely. A chair guy had altered Pride to be eaten by Garadwal, speaking through his greater gravel children. Garadwal was locked downstairs and heard him when he was ready; he had walked into Browning's trap. Ruby Eye said they would sort Garadwal out, as if Browning was his boss, and said Ruby Eye knew what was good for him. +The mages knew Geldrin was following their progress and that he had succeeded in the barrier safely. A chair guy had altered Pride to be eaten by Garadul, speaking through his greater gravel children. Garadul was locked downstairs and heard him when he was ready; he had walked into Browning's trap. Ruby Eye said they would sort Garadul out, as if Browning was his boss, and said Ruby Eye knew what was good for him. Another orb showed a person being saved while elementals flew around. The towers were completed, and fighting happened at a panel. Hartwall asked if they were nearly ready to kill them off. Browning said ready, turned into a dragon, activated the device, and Hartwall disappeared. Browning said it was too late and it had started. Ruby Eye said they needed to go now. A further orb showed Browning in the same room calling out through a crystal ball. A giant green dragon appeared. He asked for help getting rid of his husband. The dragon agreed, saying they could use them as cattle wherever they were done. Browning threw a blanket over the view as Valenth walked in. -Geldrin returned, saying he had been on floor 98 and had found Browning. The party needed to get out immediately, and Geldrin told the others about Garadwal. They heard an alarm. Four golems appeared in the circles, and the party ran back down the corridor. They piled through the corridor they had used, but it was all black with no corridor. They closed and reopened the door, and it looked like a church similar to early Bridget temples. The door from the room opened outside, with no dome visible. +Geldrin returned, saying he had been on floor 98 and had found Browning. The party needed to get out immediately, and Geldrin told the others about Garadul. They heard an alarm. Four golems appeared in the circles, and the party ran back down the corridor. They piled through the corridor they had used, but it was all black with no corridor. They closed and reopened the door, and it looked like a church similar to early Bridget temples. The door from the room opened outside, with no dome visible. The party found a courtyard with many doors. They tried to go up the tower. Behind a door, a red-robed goliath sat, shocked as they walked through. He was a clergyman named Arik Bellburn of Bridget. He said the party had come from the dome and Bridget had freed them. He described Eliana as having skin of evil, Morgana as Bleak glimmer, and Geldrin as lost winner. They were in the town of Bellburn. The people had prayed for freedom from their oppressors, Envy, and Bridget sent the party. @@ -86,7 +86,7 @@ The party heard a dragon. In Draconic, it said it had come for payment. Ruby Eye The party entered the fight and tried to get Hartwall's attention. Hartwall called out Ruby Eye and told him to come remove the curse he had put on her. It was about 17:00. Ruby Eye cast imprisonment on Hartwall, shouting "Burial" in a voice that echoed like an unearthly command. Ruby Eye sounded odd, like someone doing an impression of him, and seemed furious with Dirk after Dirk hit him with a magic missile. A changing touch made Eliana think Dirk's sword was the most amazing thing ever for a brief moment. Eliana heard a voice, felt "my brother's touch" upon them, and wanted the inverse hammer. Morgana's moonbeam revealed that "Ruby Eye" was actually a red-skinned tiefling: Wrath. -Wrath had made a pact with Ruby Eye to help kill the black dragon, and it was his fault Hartwall was outside. Wrath was scared of Browning, who had teamed up with Pride. Wrath had cursed the silver and black dragons so they could not take human form. He promised the party power in exchange for fighting their enemies. He said there were nine of them in total, little demons of Darkness: Wrath, Pride, Envy, and others. Wrath put Hartwall in the ground with imprisonment using a silver dragon statue. He said the wizards had worked with the demons to help make the dome to protect against them. He insisted the party were not working for him in any way, shape, or form, but could assist if mutually beneficial. Wrath wanted [uncertain: Tremoon's] shell because he saw the wizards make it and it helped people get in and out of the barrier. +Wrath had made a pact with Ruby Eye to help kill the black dragon, and it was his fault Hartwall was outside. Wrath was scared of Browning, who had teamed up with Pride. Wrath had cursed the silver and black dragons so they could not take human form. He promised the party power in exchange for fighting their enemies. He said there were nine of them in total, little demons of Darkness: Wrath, Pride, Envy, and others. Wrath put Hartwall in the ground with imprisonment using a silver dragon statue. He said the wizards had worked with the demons to help make the dome to protect against them. He insisted the party were not working for him in any way, shape, or form, but could assist if mutually beneficial. Wrath wanted the Skull of Tremon because he saw the wizards make it and it helped people get in and out of the barrier. Arik had been injured and was healed. The goliaths paid the Blackscales and sometimes the ore kobolds. Doors were sacred to Bridget. A hellfling mayor, Mayor Longbottom, wanted to accommodate the party for the evening. She had woken up in the church one day, was originally from Goldenswell, and said there was no way back into the dome. Wrath had been part of Ruby Eye but left him when the party "took him out." Ruby Eye was still in the bag. Morgana asked Bridget if she would get them back into the dome, and Bridget took her to the chorus, with good and bad results. @@ -128,13 +128,13 @@ As they drew closer, the smoke shape came to attack them. Hartwall protected the Eliana felt sick, with salt water in their nose, like after holding the White Rune. Dirk had a familiar brain tickle and saw another feeling: a room with other goliaths, a sickly threat on female green dragon armour, a chin tick like Shibble grossing, and a chest around a table that was intense. A female smiled and said, "you need to go back to now." Geldrin saw a circular table where mages discussed her and slid a paper to her. Another vision showed a man knee-deep in a ford; as he crossed, a woman said no no no, and red thorns were everywhere. Hartwall saw her mother buried in the ground. -The party went to the river to speak to water elementals and ask for help with the dragon flames. Dirk used the rod to speak to the elementals. The water elementals required the party to agree to free Icefang's ice elemental in the prison at Rimewock. Geldrin summoned the void elemental to help. The void elemental said the party would owe him another favour, since Garadwal revenge was the previous favour. The requested terms were not to free Valentenhide and to let Kasher reign, and not to oppose Kasher; the void would bring someone else to the fight. The party agreed to the water elemental. Geldrin told the void they could not accept. The party managed to say that someone might be trapped. When given a dead grub like the ear grubs, [unclear: a wanders]. +The party went to the river to speak to water elementals and ask for help with the dragon flames. Dirk used the rod to speak to the elementals. The water elementals required the party to agree to free Icefang's ice elemental in the prison at Rimewock. Geldrin summoned the void elemental to help. The void elemental said the party would owe him another favour, since Garadul revenge was the previous favour. The requested terms were not to free Valentenhide and to let Kasher reign, and not to oppose Kasher; the void would bring someone else to the fight. The party agreed to the water elemental. Geldrin told the void they could not accept. The party managed to say that someone might be trapped. When given a dead grub like the ear grubs, [unclear: a wanders]. The party then appeared in their minds in a palace-style room with plush carpets. An elderly gentleman, Icefang, sat looking at them, older than in his paintings, sane and at ease. He said, "I disagreed." A memory showed the mage table, with Icefang shouting at Browning. A dark elf appeared and dropped a grub in his ear. Icefang said he never would have dropped a rope, was glad he was sane before the end, and said they needed to right the wrongs. The party should not feel sorry for him; he had lived a good life for the half he could remember. The barrier was a good thing, but too many sacrifices had been made. A black hole opened under the battle. Snowflakes appeared, and a massive frost dragon burst through the hole, seized the skeletal dragon, carried it to the barrier, passed Hartwall, and said "My Child." Icefang came back through, crashed through the barrier, and soot crashed down from the barrier, badly injured. Eliana felt the salt water feeling again. Icefang crashed into the river, and Soot shouted that he would take them all with him. -Geldrin entered or invoked a dark cavern with a throne made of skulls. He walked toward a pale human female seated on the throne, with bleeding eye sockets and skeletal hands and feet. She said, "hello my child what is it you wish." Geldrin asked to dispel dragon magic. She said she had only just put it on and had taken him as payment. She had watched him with great interest since hatching. When asked whether some of the other deals had caused her [unfinished], she said no, but taking the Mother down had. Geldrin offered her Garadwal. She agreed. Geldrin chanted, Soot's flames vanished, and his bones scattered. Eliana used breath weapon on the dragon head. A water elemental retrieved Icefang and laid him down. +Geldrin entered or invoked a dark cavern with a throne made of skulls. He walked toward a pale human female seated on the throne, with bleeding eye sockets and skeletal hands and feet. She said, "hello my child what is it you wish." Geldrin asked to dispel dragon magic. She said she had only just put it on and had taken him as payment. She had watched him with great interest since hatching. When asked whether some of the other deals had caused her [unfinished], she said no, but taking the Mother down had. Geldrin offered her Garadul. She agreed. Geldrin chanted, Soot's flames vanished, and his bones scattered. Eliana used breath weapon on the dragon head. A water elemental retrieved Icefang and laid him down. Hartwall did not know who her father was; she had always been told he died in battle while her mother was pregnant. Tirar's vision was at Rellport: leeches attacked in the river and made victims believe they were not really there so they could feed on as much blood as they wanted. Hartwall saw her mother in the ground, trapped by a hundred tiny red creatures. @@ -154,7 +154,7 @@ The party went upriver to investigate the black water. Merfolk, Hanner, and Morg Underwater, Morgana came into an underground chamber with ledges leading into further darkness. Hanner used a light orb, revealing a twenty-foot statue with five runes hovering in a pentagram around it. The cyclone bottom sounded like one of the main prisoners: !Asmoorade! Morgana tried to touch a rune, and it threw lightning. On land, wingbeats sounded and the dragonborn walked into view. It had dull, deathly, sooty scales and a large overbite. Its name was Nelkish. -Nelkish walked confidently toward the party and announced the Domain of Anthrosite. He worked for Infestus. The party told him they had returned his brother's skull to Infestus. He called Eliana pure blood, not half blood, like himself. He had no quarrel with their kind under the agreement made. In the water, Morgana continued down the stream, leaving the statue behind, and approached a barrier. Touching it did not hurt, but [unclear: cruched]. On land, the party mentioned Garadwal's plans, and Anthrosite said he would allow them in to use the portal to speak to Infestus. Nelkish had not killed them on sight because Geldrin wore the wizards' robes, which were part of the agreement; the wizards brought food and similar supplies. +Nelkish walked confidently toward the party and announced the Domain of Anthrosite. He worked for Infestus. The party told him they had returned his brother's skull to Infestus. He called Eliana pure blood, not half blood, like himself. He had no quarrel with their kind under the agreement made. In the water, Morgana continued down the stream, leaving the statue behind, and approached a barrier. Touching it did not hurt, but [unclear: cruched]. On land, the party mentioned Garadul's plans, and Anthrosite said he would allow them in to use the portal to speak to Infestus. Nelkish had not killed them on sight because Geldrin wore the wizards' robes, which were part of the agreement; the wizards brought food and similar supplies. Morgana tried to misty step through the underwater barrier and succeeded. She could see the merfolk but could not touch them, and dispel did not work. The cavern broadened to the left. Derek told the land party about the barrier, and that the others were close by but far below. Jin Woo thought they should have gone to see Infestus. The land party continued down the road, which seemed to stop suddenly. Morgana was stuck and could not misty step again. She tried to dry a torch to see farther into the cavern. Thorn whip struck a crack in the wall and seemed to open a door. @@ -162,11 +162,11 @@ Beyond the crack, the mindless moss stopped dead, and the stone looked freshly c The cavern kept getting bigger and downhill, though the water had not changed direction. Morgana saw a giant jet-black figure, one hundred feet tall, standing in a hole in the ground with four large arms stretched out. Water came out of the pit and shot upward like a geyser. It seemed like a statue but felt alive. The party sent Errol to find a cave they could shelter in and went in out of the wind. Morgana went back and told Hanner about the figure. She said "winter roses" at the door, and it came to life. -The figure thought it was Ruby Eye. It could not open the barrier because that might let other people in. Rumplky opened the door, and Envi said it was probably best to come in. Morgana followed the corridor to a circular room with two suits of armour and a pillar with purple cores for automatons who would help with what she was there for: to revive him. She activated one. When she tried to leave, the door started to close, so she activated the other. The automatons did not detect any rings. The door between the automatons opened, revealing an upright hand on a plinth and a [strils] Envi in a tube of viscous fluid. Morgana let her out. The released figure would find the rings, and the robots followed. They left the chamber. One forced a hole in the barrier, and an automaton came through. The automaton introduced himself as Garaduel, activated recall protocol, and they disappeared. The party headed back to Coalmont Falls in the merfolk lodge at 01:00. +The figure thought it was Ruby Eye. It could not open the barrier because that might let other people in. Rumplky opened the door, and Envi said it was probably best to come in. Morgana followed the corridor to a circular room with two suits of armour and a pillar with purple cores for automatons who would help with what she was there for: to revive him. She activated one. When she tried to leave, the door started to close, so she activated the other. The automatons did not detect any rings. The door between the automatons opened, revealing an upright hand on a plinth and a [strils] Envi in a tube of viscous fluid. Morgana let her out. The released figure would find the rings, and the robots followed. They left the chamber. One forced a hole in the barrier, and an automaton came through. The automaton introduced himself as Garadul, activated recall protocol, and they disappeared. The party headed back to Coalmont Falls in the merfolk lodge at 01:00. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Elissa Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Hartwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Hartwall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. +People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadul / Garadul / Garadul, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Elissa Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Hartwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Hartwall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. @@ -178,11 +178,11 @@ Money, payments, and offerings mentioned include the random copper piece around Transport and communication resources mentioned include Errol, Newgate's gargoyle, the Bird that did not work, the mage's ring used to locate the party, Terry the obsidian bird, Metallics' bird, the lucky cyclops eye that did not go anywhere, Ruby Eye travelling in the bag, the Grand Towers portal / passage, teleport circles, Mercy's route to Grand Towers, Ruby Eye's teleport to Dirk, obsidian ravens including stealth ravens, the sending stone with a new Underbelly number, the pulley lift to the inn, the dragon ride with Hartwall, Lord Bleakstorm's cow-drawn carriage portal, the snowflake coin that is a one-use portal to Bleakstorm, Jin Woo's teleports, and the merfolk lodge. -Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadwal, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Hartwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered Eliana's desire for Dirk's sword and inverse hammer, Hartwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Hartwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Hartwall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, Eliana's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. +Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadul, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Hartwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered Eliana's desire for Dirk's sword and inverse hammer, Hartwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Hartwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Hartwall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, Eliana's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. -Objects, trinkets, and named resources mentioned include the crystal shell / shell of [uncertain: Tremoon], the Jelly Fish Broach from the 74th floor private mage area, trinkets from the bargains, Scorpion, Snowlee, Jelly Fish, Ant, Ruby Eye's lab orbs, the chair / Gideone chair, the silver dragon statue used in Hartwall's imprisonment, Seaward stone maces, the inverse hammer, the Grand Towers penny, the barrier / dome, the racist automatons, Hartwall's Raven, the pylon, Heamon's skull, the prison symbols, the chest around the intense table in Dirk's vision, the White Rune, Icefang's ice elemental in Rimewock, dead ear grub, black dragon book from Ruby Eye's lab, the auroch not freed by Lord Bleakstorm, the snowflake coin, the statue to Hydrath, steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, the ancient Dull Peake sign, the five runes in a pentagram, the ticking rune door, the upright hand on a plinth, and Envi in a tube of viscous fluid. +Objects, trinkets, and named resources mentioned include the Skull of Tremon, the Jelly Fish Broach from the 74th floor private mage area, trinkets from the bargains, Scorpion, Snowlee, Jelly Fish, Ant, Ruby Eye's lab orbs, the chair / Gideone chair, the silver dragon statue used in Hartwall's imprisonment, Seaward stone maces, the inverse hammer, the Grand Towers penny, the barrier / dome, the racist automatons, Hartwall's Raven, the pylon, Heamon's skull, the prison symbols, the chest around the intense table in Dirk's vision, the White Rune, Icefang's ice elemental in Rimewock, dead ear grub, black dragon book from Ruby Eye's lab, the auroch not freed by Lord Bleakstorm, the snowflake coin, the statue to Hydrath, steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, the ancient Dull Peake sign, the five runes in a pentagram, the ticking rune door, the upright hand on a plinth, and Envi in a tube of viscous fluid. -Rewards, obligations, and bargains mentioned include Mercy owing or showing a favour, Mercy's contractor wanting the Jelly Fish Broach as immediate payment for the favour, Wrath offering power in exchange for fighting the party's enemies, Wrath asking the party to tell Envy that he did it, Ruby Eye's pact with Wrath to kill the black dragon, the gods requiring a favour each plus communication to priests and a boon, the water elementals requiring the party to free Icefang's ice elemental at Rimewock, the void elemental requesting another favour involving not freeing Valentenhide and letting Kasher reign, Geldrin offering Garadwal to the skull-throne woman, Lord Bleakstorm giving the one-use snowflake portal coin, and Geldrin's plan to free Justicarus by posing as Grand Towers medical staff. +Rewards, obligations, and bargains mentioned include Mercy owing or showing a favour, Mercy's contractor wanting the Jelly Fish Broach as immediate payment for the favour, Wrath offering power in exchange for fighting the party's enemies, Wrath asking the party to tell Envy that he did it, Ruby Eye's pact with Wrath to kill the black dragon, the gods requiring a favour each plus communication to priests and a boon, the water elementals requiring the party to free Icefang's ice elemental at Rimewock, the void elemental requesting another favour involving not freeing Valentenhide and letting Kasher reign, Geldrin offering Garadul to the skull-throne woman, Lord Bleakstorm giving the one-use snowflake portal coin, and Geldrin's plan to free Justicarus by posing as Grand Towers medical staff. # Clues, Mysteries, and Open Threads @@ -190,17 +190,17 @@ Brookville Springs had purple explosions across human buildings, including broth The message from Claymeadow reported explosions across town, Newgate's doppel/imposter in quarters, and a Bird that did not work. The party arranged contact by Errol and the mage's ring, leaving the exact state of Claymeadow, Newgate's sister, and the doppel/imposter unresolved. -Seneshell said Pride had been eaten by Garadwal, leaving the Guilt unconscious in a chest like the one in Envy's lab. Pride was the Guilt's boss, a dark entity who wanted people to be proud, and the Guilt was an Avatar of Pride. [uncertain: Morrowred] had sold out the leaders. Pride had tried to disable as much as possible before being consumed. The relationship between Pride, the Guilt, Seneshell, Browning, Grand Towers, and Garadwal remains central. +Seneshell said Pride had been eaten by Garadul, leaving the Guilt unconscious in a chest like the one in Envy's lab. Pride was the Guilt's boss, a dark entity who wanted people to be proud, and the Guilt was an Avatar of Pride. [uncertain: Morrowred] had sold out the leaders. Pride had tried to disable as much as possible before being consumed. The relationship between Pride, the Guilt, Seneshell, Browning, Grand Towers, and Garadul remains central. The Dollarmans identified themselves as assassins, included a half-orc and a human female, and seemed to want to fight but were under orders not to. Their employer and target remain unknown. Incara's private message through Terry warned that the party's compatriot wizards might be working against them and might be responsible for their infertility, though this was not yet confirmed. This ties to later revelations about the nerfili baby bargain and barrier effects, but the exact truth and scope remain uncertain. -Ruby Eye wanted the shell of [uncertain: Tremoon] more than he admitted and said it helped with passage in and out of the barrier. Wrath also wanted it because he saw the wizards make it. The shell's exact function, current safety at Hartwall, and risk if obtained by the wrong faction remain unresolved. +Ruby Eye wanted the Skull of Tremon more than he admitted and said it helped with passage in and out of the barrier. Wrath also wanted it because he saw the wizards make it. The Skull of Tremon's exact function, current safety at Hartwall, and risk if obtained by the wrong faction remain unresolved. Mercy's contractor wanted the Jelly Fish Broach from the 74th floor private mage area in Grand Towers for a female buyer outside the barrier who was not the party's current mutual antagonist. The buyer, purpose, and consequences of retrieving the broach remain unknown. -Grand Towers orb visions revealed hidden wizard bargains, possible memory tampering, Icefang's entombment under snow, black snowflake guards, trinkets including Scorpion, Snowlee, Jelly Fish, and Ant, and Browning's actions. Browning had Pride's power, wanted the biggest tower and to be the greatest wizard, trapped Garadwal downstairs, worked with a giant green dragon, and used a device that made Hartwall disappear. The notes preserve multiple uncertain or incomplete statements from these visions. +Grand Towers orb visions revealed hidden wizard bargains, possible memory tampering, Icefang's entombment under snow, black snowflake guards, trinkets including Scorpion, Snowlee, Jelly Fish, and Ant, and Browning's actions. Browning had Pride's power, wanted the biggest tower and to be the greatest wizard, trapped Garadul downstairs, worked with a giant green dragon, and used a device that made Hartwall disappear. The notes preserve multiple uncertain or incomplete statements from these visions. Bellburn appears outside the dome and treats Bridget's doors as sacred. Arik Bellburn believed Bridget sent the party from the dome in answer to prayers against Envy. Bridget's door travel responded to Grand Towers pennies with different eye colours and sent Dirk to Seaward, then sent the group through a palace-like room and back to Brookville Springs. The exact rules of Bridget's doors, pennies, colour responses, time displacement, and locations remain unclear. @@ -216,14 +216,14 @@ The Mother was found near a crater at the side of the barrier close to the mount Highden suffered crystal sickness / internal consumption, blistering skin, military retreat, false obsidian raven messages, and a major battle against tribesfolk, giants, and dragons. The Underbelly was rebuilding under Lady Coke, with Granny and Scurry as trusted contacts, while Highden was described as a wreck that never sees the sun. -The battle near Highden involved Hartwall, a skeletal dragon with Ruby Eye's lab book, Soot, Icefang's intervention as a frost dragon, water elementals, a void elemental, the skull-throne woman, and a bargain offering Garadwal. Several visions occurred: Dirk's green-dragon-armour room, Geldrin's mage-table paper, the ford with red thorns, Hartwall's mother buried and trapped by tiny red creatures, and Tirar's Rellport leech vision. Their full meanings remain unresolved. +The battle near Highden involved Hartwall, a skeletal dragon with Ruby Eye's lab book, Soot, Icefang's intervention as a frost dragon, water elementals, a void elemental, the skull-throne woman, and a bargain offering Garadul. Several visions occurred: Dirk's green-dragon-armour room, Geldrin's mage-table paper, the ford with red thorns, Hartwall's mother buried and trapped by tiny red creatures, and Tirar's Rellport leech vision. Their full meanings remain unresolved. -The skull-throne woman with bleeding eye sockets had taken Soot as payment and accepted Garadwal in exchange for dispelling dragon magic. Her identity, relationship to Geldrin, interest in Soot since hatching, and connection to other deals remain unclear. +The skull-throne woman with bleeding eye sockets had taken Soot as payment and accepted Garadul in exchange for dispelling dragon magic. Her identity, relationship to Geldrin, interest in Soot since hatching, and connection to other deals remain unclear. Lord Bleakstorm appeared dead but active, delivered a message from Icefang outside the dome, and gave a one-use portal coin to Bleakstorm. He could not stay inside the dome because Browning would detect him and send minions. He had not freed the auroch. His current power, limits, and exact role remain unresolved. Coalmont Falls has black water that has occurred for one thousand years, once monthly but now twice daily, following a pattern with elemental schools of magic. Morgana's commune with nature found a six-armed black creature shackled underwater, linked to alien material and an obsidian archway. The black water, black sediment, roar, and increasing frequency suggest the prisoner or prison is destabilizing. -The underwater prison or facility contained a twenty-foot statue with five runes in a pentagram, the name !Asmoorade!, a barrier that Morgana crossed with misty step but could not dispel or recross, a freshly cut stone corridor, a ticking-rune door, black snowflakes, and a giant jet-black four-armed figure in a geyser pit. Envi, Rumplky, purple-cored automatons, the upright hand, [strils], and a tube of viscous fluid suggest a hidden revival process. The automaton introduced himself as Garaduel and recalled the automatons away after forcing a hole in the barrier, leaving the state of Envi, the rings, and the prison unknown. +The underwater prison or facility contained a twenty-foot statue with five runes in a pentagram, the name !Asmoorade!, a barrier that Morgana crossed with misty step but could not dispel or recross, a freshly cut stone corridor, a ticking-rune door, black snowflakes, and a giant jet-black four-armed figure in a geyser pit. Envi, Rumplky, purple-cored automatons, the upright hand, [strils], and a tube of viscous fluid suggest a hidden revival process. The automaton introduced himself as Garadul and recalled the automatons away after forcing a hole in the barrier, leaving the state of Envi, the rings, and the prison unknown. -Anthrosite's domain and agreement with the wizards protected the party because Geldrin wore wizard robes and because Nelkish recognized Eliana as pure blood rather than half blood. Infestus's portal, the food-supply agreement, the returned skull of Nelkish's brother, and Garadwal's plans remain active threads. +Anthrosite's domain and agreement with the wizards protected the party because Geldrin wore wizard robes and because Nelkish recognized Eliana as pure blood rather than half blood. Infestus's portal, the food-supply agreement, the returned skull of Nelkish's brother, and Garadul's plans remain active threads. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index 7a5de1d..e102dcf 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -47,7 +47,7 @@ Geldrin added a tower's penny to Bridge's bowl. The statue's head moved to look Morgana etched a symbol to Igraine and offered a bottle of cider. The cider emptied, and words came: "do not trust him - I did - he promised me tribute & Never received." Morgana offered another drink and saw a vision of lying in a field of white roses, with children's laughter and the chuckling of a dwarf man and an elf, perhaps [uncertain: Adilth]. A dragon soared above with no barrier. A pregnant elven woman appeared. The message continued that he made a statue to the speaker and the image of another in his home, promised things, but chose the easy path because the speaker could not give her life back. He promised things for her life, came to an arrangement, and took a darker path. An elderly human man looked sad, rubbed his beard, and the vision returned to the room. -The party found what might have been a royal room, mess hall, or honoured guard space. Old pictures hung on the wall, one out of place: Benu / Guradwal / a goat-headed sphinx. On the back, it was dedicated to the Warriors of the Lion from the Dunemin. The backing and canvas came apart, revealing two large feathers tied at the top with orange and blue feathers and beads. The feathers were given to Geldrin. A kitchenette had a chimney that seemed to go to daylight through a communal chimney. +The party found what might have been a royal room, mess hall, or honoured guard space. Old pictures hung on the wall, one out of place: Benu / Garadul / a goat-headed sphinx. On the back, it was dedicated to the Warriors of the Lion from the Dunemin. The backing and canvas came apart, revealing two large feathers tied at the top with orange and blue feathers and beads. The feathers were given to Geldrin. A kitchenette had a chimney that seemed to go to daylight through a communal chimney. At Tor's statue, the party added a note with "Badger born in freedom" to the offering bowl and heard, "Tor Protects all." They put a cloak in the fire in Stitcher's bowl. Smoke showed an image of Ruby Eye and Lute talking about hot hands; Lute said, "tell you what I'll make you all cloaks." The words came: "A gift crafted for a friend is the key to it all." The party felt solace. There were no spirits in the main room. @@ -79,7 +79,7 @@ The party went to see Trixus, Benu's little brother. He was asleep, and loud noi The party checked the treasure hall. It contained lots of Goliath currency, Brass City currency, Dumnen currency, and massive triangular coins of Snowsorrow. One coin showed a female sphinx resting its hand on a dragon. The party took the copper dragon down and put Trixus's hand on her head. He briefly stirred with recognition but stayed asleep. -In the library, the party found a book on Benu, Garadwal, and Trixus, described as the last three of Attabre's children who walk on the earth. They came from Fire. Gardwell looked after the Dumnens and enjoyed the gifts. Igraine gave them the gifts to heal their people. Trixus helped create Brass City. The tabaxi were confused and lost, and Trixus helped them; they became industrious and proactive in creating things. It was not clear where the brass came from, perhaps a blessing from [uncertain: Shulcher]. Benu was protector of the elves and helped construct the great tower, but did little protection, instead seeming to train them in art and poetry until they became obsessed with it. Benu saw errors in its ways, eventually left for an unknown reason, and hid. The historian seemed to be waiting to be noticed to get a protector. The book mentioned knowledge of five sphinxes and was dated 700 BD, with a note about returning to Attabre. +In the library, the party found a book on Benu, Garadul, and Trixus, described as the last three of Attabre's children who walk on the earth. They came from Fire. Garadul looked after the Dumnens and enjoyed the gifts. Igraine gave them the gifts to heal their people. Trixus helped create Brass City. The tabaxi were confused and lost, and Trixus helped them; they became industrious and proactive in creating things. It was not clear where the brass came from, perhaps a blessing from [uncertain: Shulcher]. Benu was protector of the elves and helped construct the great tower, but did little protection, instead seeming to train them in art and poetry until they became obsessed with it. Benu saw errors in its ways, eventually left for an unknown reason, and hid. The historian seemed to be waiting to be noticed to get a protector. The book mentioned knowledge of five sphinxes and was dated 700 BD, with a note about returning to Attabre. Geldrin placed a Snowsorrow coin into Attabre's offering bowl. A white creature came in and destroyed the city; a female sphinx came out and laid a hand on its head, and both disappeared. The sphinx disappeared in sparkles, while the white dragon remained as the vision ended. The words came: "The father wishes freedom for all his children." The statue seemed to look at Geldrin. The party wondered whether the sphinx turned into the dragon and what the symbolism of the shield and Trixus meant. @@ -91,7 +91,7 @@ A device detected time and noted that Dirk was missing a day. Bleakstorm had bee Bleakstorm said he had broken some rules by coming to see the party, and that he could not break them except on occasion. The party requested sanctuary for their dragon friend. He recognized her and needed to look into her name. He would not forgive Emri, because Emri took away his only friend and had entrusted him despite Bleakstorm saying no to it. It was not the dragons who took him; he was tricked into releasing his friend. Bleakstorm often trusts his god, which she appreciates. The party had promised the elementals they would free his friend, [uncertain: leechus]. He warned that trips outside the barrier could be difficult. -Bleakstorm reported that Perodita was heading to Hartwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Hartwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to The Basilisk about Perodita heading to Hartwall, but Bleakstorm did not send the party outside the barrier. Gardwal was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. +Bleakstorm reported that Perodita was heading to Hartwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Hartwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to The Basilisk about Perodita heading to Hartwall, but Bleakstorm did not send the party outside the barrier. Garadul was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Hartwall, where they saw Perodita vanish. @@ -99,7 +99,7 @@ The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Elissa Hart # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Stuart / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Garadul / Garadul / Garadul / Garadul, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Stuart / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodita's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. @@ -109,11 +109,11 @@ Creatures and creature-like entities mentioned include the fat-bellied dragon in # Items, Rewards, and Resources -Items, currencies, and physical resources mentioned include Ennuyé's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. +Items, currencies, and physical resources mentioned include Ennuyé's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Garadul / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadul, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia appearing under a dragonborn illusion or disguise, Anastasia sensing the weakened barrier, attunement to three of Ennuyé's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Attabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. -Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Stuart's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Elissa Hartwall's movement airwise to help with the battle heading to Emmerave. +Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Stuart's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadul, and time travel, the message sent and resent to The Basilisk, and Lady Elissa Hartwall's movement airwise to help with the battle heading to Emmerave. # Clues, Mysteries, and Open Threads @@ -141,7 +141,7 @@ The Goliathified statues and offering responses produced multiple clues: Bridge The white-roses vision included a dwarf man, an elf perhaps [uncertain: Adilth], children, a no-barrier sky, a pregnant elven woman, a sad elderly human man, and a bargain for a life that turned darker. The identities of the figures and their link to Igraine, Emri, or the barrier are uncertain. -The out-of-place picture of Benu / Guradwal / goat-headed sphinx and the Warriors of the Lion from the Dunemin hid two large orange-and-blue-feathered relics. The feathers' full purpose remains unresolved, though later one feather functioned as communication with Garadwal. +The out-of-place picture of Benu / Garadul / goat-headed sphinx and the Warriors of the Lion from the Dunemin hid two large orange-and-blue-feathered relics. The feathers' full purpose remains unresolved, though later one feather functioned as communication with Garadul. The map of the Pentacity slates, red dome, ground towers, sea gap, and palace near Shousorrow may be a strategic map of barrier infrastructure or old power sites. Its exact reading remains open. @@ -169,7 +169,7 @@ The copper dragon from Snowsorrow remembered after a maggot was removed from her Trixus, Benu's little brother and Attabre's child, remained under Slumber Imprisonment despite barriers being opened. His rings identify Attabre as Protector of Brass City and first of his name, fifth of his kind. The "father wishes freedom for all his children" vision suggests Attabre wants the sphinxes freed. -The histories of Benu, Garadwal, and Trixus show flawed protectors: Garadwal with the Dumnens, Trixus with Brass City and the tabaxi, and Benu with the elves and the great tower. Benu's departure and hiding remain unexplained. +The histories of Benu, Garadul, and Trixus show flawed protectors: Garadul with the Dumnens, Trixus with Brass City and the tabaxi, and Benu with the elves and the great tower. Benu's departure and hiding remain unexplained. Noxia's blood corrupted land after a fight with Sierra and caused things not to grow. This may connect to earlier poisoned or cursed lands. @@ -177,6 +177,6 @@ Bleakstorm detected Dirk missing a day. The missing day, Bleakstorm's deals with Bleakstorm will not forgive Emri for taking away his only friend after being told not to entrust him. The friend, [uncertain: leechus], and the promise to free him remain open. -Perodita was heading to Hartwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Hartwall, and Lady Elissa Hartwall had gone airwise toward Emmerave. +Perodita was heading to Hartwall, Garadul was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Hartwall, and Lady Elissa Hartwall had gone airwise toward Emmerave. T.J. Boggins remained at Hartwall eating meat and watching opera, while Jin Woo was absent. Their immediate relevance is not stated. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index 8b84ecf..49ff509 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -27,11 +27,11 @@ The party also discussed Wroth. Wroth trapped Envy when he trapped Mama Hartwall A dwarf blacksmith pulled Invar aside and said it was good to see others lost around. He was there for other reasons, not just to sell wares, and gave Invar a box. A golden dragonborn had tomes about places the tomes had only just discovered: Ashkhellion, Goliath City, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, and Last Post Airwise. Invar opened the box slightly. It glowed bright and warm, and he closed it to open fully later. -A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown; the picture smudged, and the words said, "One more glance a death dance." Geldrin asked how to wake Trixus. The book showed Benu, Trixus, and Garadwel, with two sphinxes behind them and the words "a family reunited" underneath. One sphinx was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath Took." He turned and saw a featureless woman, Valentenshide, reflected in Invar's armour, then collapsed to the floor. +A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown; the picture smudged, and the words said, "One more glance a death dance." Geldrin asked how to wake Trixus. The book showed Benu, Trixus, and Garadul, with two sphinxes behind them and the words "a family reunited" underneath. One sphinx was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath Took." He turned and saw a featureless woman, Valentinhide, reflected in Invar's armour, then collapsed to the floor. -The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall. When the party asked the book for the location of papa e' mamara, it showed only a blank page. The party also learned about lost dwarf civilisation: second came the dwarves, first of tops and fire of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Gardwel with the name hidden on the page, and Trixus. Someone felt a hand on their hand, though nothing was there. The vulture man, or a force through him, said "in her stare Bones laid bare," though he did not remember speaking. +The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall. When the party asked the book for the location of papa e' mamara, it showed only a blank page. The party also learned about lost dwarf civilisation: second came the dwarves, first of tops and fire of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Garadul with the name hidden on the page, and Trixus. Someone felt a hand on their hand, though nothing was there. The vulture man, or a force through him, said "in her stare Bones laid bare," though he did not remember speaking. -The party asked what was on page two. The elements seemed to clash; a bright light rose from the page and left a black hole, while many different elements appeared and converged into the world the party knows. The last page showed "The End," then the repeated death-rhyme: "one more glance a death dance," "one brief look last breath Took," "In her stare Bones laid bare," and "in her gaze the end of days." The book slammed shut, which it had never done before. This reminded the party of Dumnensend and a children's poetry book. Morgana had the book whose last poem was that one; the second-to-last was a council meeting with plans to take out Valentenshide. +The party asked what was on page two. The elements seemed to clash; a bright light rose from the page and left a black hole, while many different elements appeared and converged into the world the party knows. The last page showed "The End," then the repeated death-rhyme: "one more glance a death dance," "one brief look last breath Took," "In her stare Bones laid bare," and "in her gaze the end of days." The book slammed shut, which it had never done before. This reminded the party of Dumnensend and a children's poetry book. Morgana had the book whose last poem was that one; the second-to-last was a council meeting with plans to take out Valentinhide. The golden dragonborn searched for dwarven lost cities and found two books written by a scholar, Lord Hawthorn, who was extracted from civilization after the death of Princess Maesthon and [uncertain: Grin gray] / [uncertain: Atltrino]. The location was in one volcano. Each book referenced the other city, and neither referenced a third. The books referenced the author's friend Ruby Eye, who was married to a princess of Grincray, but written so the reader would not believe she was really a princess of Grincray, described as a princess of the lost ones. Morgana asked a [uncertain: Shutiny] to speak to the Chorus of the Kings about the location of Grim & Cray. The answer was that the door was the entrance to both cities. @@ -45,21 +45,21 @@ Lady Elissa Hartwall appeared. She had gone with forces from Dumnensend to defen The Menagerie was then discussed. The mages who worked there had not returned to Grand Towers and had locked the Menagerie down; no one could get in. It used to be the mage school. Emi's apprentice was a dark-skinned elf. Joy did not like him, and Mr Browning also did not like him. Browning was described as a nice man, though the note adds that this is not what the party has seen. Storms were bad in the latest reports. Heathmoor plagues were very bad. The land was healing, but the people were not, and the plagues did not share similarities with barrier sickness. News from a rear Ironcraft air site said a tradesman went to pick someone up but that person had "disappeared." The guilt was Emi's guilt. -Lady Elissa Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Hartwall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Hartwall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snowsorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. +Lady Elissa Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Hartwall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Hartwall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snowsorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadul's feather to speak to him. The feather was a one-person walkie-talkie. -The party tried to speak to Garadwel through the feather. It vibrated, and there was a chill in the air. Garadwel called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. +The party tried to speak to Garadul through the feather. It vibrated, and there was a chill in the air. Garadul called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. -Garadwel said people did not build things as he taught them and instead ran off to live like primitives. Benu failed because he abandoned his post. Trixus, by contrast, did not fail because he did not abandon his post. The party or Eliana addressed "Dad" and told Garadwel that the vulture men were back at Dumnensend and that Hephestos was still alive. +Garadul said people did not build things as he taught them and instead ran off to live like primitives. Benu failed because he abandoned his post. Trixus, by contrast, did not fail because he did not abandon his post. The party or Eliana addressed "Dad" and told Garadul that the vulture men were back at Dumnensend and that Hephestos was still alive. -A quick update came by sending stone: the Grand Towers dome was down, and Garadwell had probably gone to Ashkhellion. The party debated whether to go to Ashkhellion and get Benu first. They went to the library to speak to the vulture man. He went to get his sending stone to speak to [uncertain: Ashtrigwos], to tell Benu to meet the party at the tower in Ashkhellion. Geldrin asked for magical scrolls and got them just before the teleportation circle completed. The party went to Ashkhellion. +A quick update came by sending stone: the Grand Towers dome was down, and Garadul had probably gone to Ashkhellion. The party debated whether to go to Ashkhellion and get Benu first. They went to the library to speak to the vulture man. He went to get his sending stone to speak to [uncertain: Ashtrigwos], to tell Benu to meet the party at the tower in Ashkhellion. Geldrin asked for magical scrolls and got them just before the teleportation circle completed. The party went to Ashkhellion. -They appeared higher up in the tower, and Hartwall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Elissa Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. +They appeared higher up in the tower, and Hartwall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadul asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Elissa Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. -Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadwal, while Trixus was still in a barrier. The party asked Garadwel to lay down his weapons, but he refused. Eliana tried to get the dome opener, and Garadwal killed them. Benu attacked Garadwal. Geldrin used a tremor skill to release Trixus. Eliana was revived and saw Valentenshide manage to look away. Benu and Garadwal broke through the walls and fought outside. A fight ensued, and Garadwal was banished at 5:00. +Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadul, while Trixus was still in a barrier. The party asked Garadul to lay down his weapons, but he refused. Eliana tried to get the dome opener, and Garadul killed them. Benu attacked Garadul. Geldrin used a tremor skill to release Trixus. Eliana was revived and saw Valentinhide manage to look away. Benu and Garadul broke through the walls and fought outside. A fight ensued, and Garadul was banished at 5:00. -Benu told Trixus what had happened to Garadwal. Trixus asked where Benu had been when his people were in trouble. Dark clouds gathered above the dune. Perodita appeared, looking very bedraggled compared with the previous day. She said she would get back in and wanted the flesh-crafting wands. Trixus said father had put him to sleep. The party returned to the tower and retrieved the barrier tools. Benu knew of a way to live peacefully without the barrier. +Benu told Trixus what had happened to Garadul. Trixus asked where Benu had been when his people were in trouble. Dark clouds gathered above the dune. Perodita appeared, looking very bedraggled compared with the previous day. She said she would get back in and wanted the flesh-crafting wands. Trixus said father had put him to sleep. The party returned to the tower and retrieved the barrier tools. Benu knew of a way to live peacefully without the barrier. -Hephestos was only his soul. He wanted to make a pact with the party so they would let him out and wanted to give them information to help him get out. He had been asked to attack the dome, perhaps by Browning. The party needed to save Garadwel. Trixus and Benu transformed into humanoids and went to the shrine room to check whether Garadwel was there. The party added Brass City platinum to the offering bowl to help communicate with the god. Attabre came through. Garadwal was not with him. When Attabre asked what the party sought, they answered that they sought justice. Benu disappeared. Attabre said he sought atonement for his crimes, justice. Trixus was looking but seemed okay. Attabre was angry with Benu. Goliaths were due to get a protector like Trixus. The party began to tell Hartwall about the ancient [unclear]. +Hephestos was only his soul. He wanted to make a pact with the party so they would let him out and wanted to give them information to help him get out. He had been asked to attack the dome, perhaps by Browning. The party needed to save Garadul. Trixus and Benu transformed into humanoids and went to the shrine room to check whether Garadul was there. The party added Brass City platinum to the offering bowl to help communicate with the god. Attabre came through. Garadul was not with him. When Attabre asked what the party sought, they answered that they sought justice. Benu disappeared. Attabre said he sought atonement for his crimes, justice. Trixus was looking but seemed okay. Attabre was angry with Benu. Goliaths were due to get a protector like Trixus. The party began to tell Hartwall about the ancient [unclear]. The party reflected that the barrier was possibly a bad thing, but had been made for noble and proud reasons. Trixus could help with the memories, but a spell within the barrier was interfering. The magic involved Attabre and another force. The location of the spell was waterwise at the Mages College at Riversmeet. Trixus did not like the barrier and did not think the elves should have been able to remove their pride. The party planned to go to Riversmeet and speak to Lady Igraine. They split: Dirk, Eliana, and Morgana took Hartwall to meet Anastasia; Invar and Geldrin took Trixus to see Emi. @@ -75,21 +75,21 @@ Cardonald gave Geldrin all of the teleportation circles: seven prisons with no d # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papa e' mamara / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadul / Garadul / Garadul / Garadul, Valentinhide / Valentinhide, papa e' mamara / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. -Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snowsorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. +Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snowsorrow, and the dwarves, Garadul's allies, Mother as Garadul's ally, mages trapped by Garadul, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Snowsorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. -Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snowsorrow, gold dragons, Benu, Trixus, Garadwal, Perodita, Hephestos as a soul, and Morgana as a crow. +Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snowsorrow, gold dragons, Benu, Trixus, Garadul, Perodita, Hephestos as a soul, and Morgana as a crow. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadwal's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. +Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadul's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. -Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. +Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentinhide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadul killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadul's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. -Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for waking or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine of Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, labs, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashkhellon, and pylons. +Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for waking or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadul's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine of Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, labs, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashkhellon, and pylons. # Clues, Mysteries, and Open Threads @@ -99,19 +99,19 @@ Grimby the 3rd's story connects Klesha, a silvery-green Envoy, murdered townsfol Wroth trapped Envy in Mama Hartwall's head the way Envy is in Ruby Eye's. This suggests Envy can be contained inside people or minds, but the mechanism and current risk to Mama Hartwall and Ruby Eye are unresolved. -The scroll phrase "In her gaze, End of Days" joined the Benu book's warnings: "One more glance a death dance," "one brief look last breath Took," and "In her stare Bones laid bare." These warnings must be preserved with Valentenshide / Valentenhide. +The scroll phrase "In her gaze, End of Days" joined the Benu book's warnings: "One more glance a death dance," "one brief look last breath Took," and "In her stare Bones laid bare." These warnings must be preserved with Valentinhide / Valentenhide. The auction house receipt for a massive moth picture frame, the wizard-piece chess board, and the rook resembling [uncertain: brakemen] are unexplained but may be clues. The dwarf blacksmith gave Invar the glowing box for reasons beyond selling wares. The black orb inside identified itself as part of papa'e munera and wanted to reunite with the rest of itself and [uncertain: unrasorak]. Its blessing by Anadreste, extraction from the lake, and connection to dwarves who changed their minds remain unresolved. -The vulture man's book identified a pale dwarf with black dreadlocks and a crown as someone who could help find Ruby Eye, but the caption was smudged. The same book showed Benu, Trixus, Garadwel, and two sphinxes as "a family reunited," with one outline figure. This was later partly fulfilled, but the outline figure and exile question remain significant. +The vulture man's book identified a pale dwarf with black dreadlocks and a crown as someone who could help find Ruby Eye, but the caption was smudged. The same book showed Benu, Trixus, Garadul, and two sphinxes as "a family reunited," with one outline figure. This was later partly fulfilled, but the outline figure and exile question remain significant. -Benu's five books, the blank page for papa e' mamara, and the listed family names of Anadreste, Benu, hidden Gardwel, Trixus, and one missing unnamed sibling establish a family structure that remains incomplete. +Benu's five books, the blank page for papa e' mamara, and the listed family names of Anadreste, Benu, hidden Garadul, Trixus, and one missing unnamed sibling establish a family structure that remains incomplete. The page-two elemental clash and black hole appeared to depict world creation or current-world formation. The exact cosmology remains unclear. -The children's poetry book and Dumnensend poem preserve plans to take out Valentenshide. The origin and accuracy of those poems are unknown. +The children's poetry book and Dumnensend poem preserve plans to take out Valentinhide. The origin and accuracy of those poems are unknown. The dwarven lost-city books refer to Lord Hawthorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Grincray, a volcano, a princess of the lost ones, and Ruby Eye's marriage. The third city is not referenced by either book, making it a gap. @@ -129,9 +129,9 @@ Heathmoor plagues are severe, differ from barrier sickness, and are not healing The rear Ironcraft air-site disappearance, the Earl of Goldenswell withdrawing armies, the murdered niece in Claymeadows, Harthden's demolition by giants, and Threepaws' rallying difficulty create multiple political and military threads. -Garadwal's feather conversation revealed his belief that the barrier is his, that a betrayer or daughter sits among the party, that Mother was a useful ally, that only one more remains, perhaps Anroch or the Grab, that his friends trapped him, that he convinced the vessel, and that the fifth sphinx was father. These claims are self-serving but vital. +Garadul's feather conversation revealed his belief that the barrier is his, that a betrayer or daughter sits among the party, that Mother was a useful ally, that only one more remains, perhaps Anroch or the Grab, that his friends trapped him, that he convinced the vessel, and that the fifth sphinx was father. These claims are self-serving but vital. -Benu's failure, Trixus's non-abandonment, Garadwal's rage, and Attabre's anger at Benu leave the sphinx family conflict unresolved despite Garadwal's banishment. +Benu's failure, Trixus's non-abandonment, Garadul's rage, and Attabre's anger at Benu leave the sphinx family conflict unresolved despite Garadul's banishment. Steven was missing from his barrier after the confrontation. His whereabouts and whether this is dangerous are unknown. diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index f5493b8..5956459 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -32,7 +32,7 @@ The party headed into Riversmeet. On the way, Morgana bought a load of fruit and The party asked where Lady Igraine of Riversmeet was. They learned that her manor house was on the central bridge, and the time was 10:00. Temples to Hydrun, the goddess Igraine, Lam, and Kasha stood in town; this was the first temple to Kasha the party had seen. Freeport guards were in Riversmeet. Lady Igraine was not at the manor but at the outpost set up at the Menagerie. A strong hedge surrounded the Menagerie. Lady Igraine sat with a black dragonborn and came out of the tent to see the party. They could not get in because of a wall of force or similar effect. A magician had come to repay a favour. About twenty wizards were inside. They had recently refused inspections and prevented the militia from entering. -The party tried to dispel the magic and get through. Geldrin used Mold Earth to get under the hedge and sent his familiar to look around the outside of the building. The building looked good, but many cages had signs that things had broken out, including griffon, dragon, wolf, and human cages, each with door handles. When the familiar tried to open one cage, it was frazzled. The party went through the hole Geldrin dug and entered the grounds. Invar looked into a window and disappeared. Geldrin disintegrated the door and had a vision of Valentinheide killing Emi's wife. Dirk disappeared, apparently banished. Geldrin appeared to be enrolling in mage school. The names Acroneth, Crindler, Belocoose, and a sphinx on another plane were noted. After killing an acid beast, the party entered the building. They were hit by a fireball from an invisible foe. They knocked three times on the Divination wall and got stairs. +The party tried to dispel the magic and get through. Geldrin used Mold Earth to get under the hedge and sent his familiar to look around the outside of the building. The building looked good, but many cages had signs that things had broken out, including griffon, dragon, wolf, and human cages, each with door handles. When the familiar tried to open one cage, it was frazzled. The party went through the hole Geldrin dug and entered the grounds. Invar looked into a window and disappeared. Geldrin disintegrated the door and had a vision of Valentinhide killing Emi's wife. Dirk disappeared, apparently banished. Geldrin appeared to be enrolling in mage school. The names Acroneth, Crindler, Belocoose, and a sphinx on another plane were noted. After killing an acid beast, the party entered the building. They were hit by a fireball from an invisible foe. They knocked three times on the Divination wall and got stairs. They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter, Valenth Cardonald, was in Geldrin's year. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Torlish Hartwall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. @@ -64,21 +64,21 @@ The remaining students gathered around a very dark-skinned elf with a bottle of Dirk and Invar went to the library to get Lord of Bleakstorm and the Gnomes and Tale of Two Sisters around 17:00. Tale of Two Sisters was a very expensive book with a front picture of two women embracing, with Barbie-doll-type body features. Morgana and Eliana tried to open the secret door but failed. They went to the dining hall and ruined a classroom so the janitor would appear. They tried the knock pattern in a different classroom, but it did not work, and Eliana was sent to detention. Morgana returned to tell everyone what had happened. -Tale of Two Sisters described high-ranking queens of the elemental plane. They got on but were like oil and water and were never together. Bright was the low sky, while Valentenhule was the high sky. When lesser races were made, Bright grew close to them and enjoyed playing with them. Valentenhule was haughty and came to enjoy harming the beings. Both grew from their roles. Valententhide's position in the high or dark sky caused the void to open. Bright's position in the low sky let her witness humans enslaved by ice elementals, and when they broke free she rewarded them. +Tale of Two Sisters described high-ranking queens of the elemental plane. They got on but were like oil and water and were never together. Bright was the low sky, while Valentenhule was the high sky. When lesser races were made, Bright grew close to them and enjoyed playing with them. Valentenhule was haughty and came to enjoy harming the beings. Both grew from their roles. Valentinhide's position in the high or dark sky caused the void to open. Bright's position in the low sky let her witness humans enslaved by ice elementals, and when they broke free she rewarded them. Lord of Bleakstorm and the Gnomes said Bleakstorm thought the gnomes were cast-outs chosen to show anything but recently started showing off seas. The gnomes seemed to have an agreement with merfolk, because they always turned away from a port he knew existed: Great Farmouth. Bleakstorm thought Grand Towers was made with gnomish technology. Gnomes used random names to hide their family names. Morgana tried to find detention and headed to the principal's office on the map. Altith / Icefang tried to contact Eliana and said they had been meant to meet after Eliana met with Argathum. A man appeared, Icefang. He warned that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snowsorrow. The party needed the janitor's broom to open the door. The note also says "T look silver with a hint of green," with two green dragons named Emeraldus and another. Goliaths were meant to go and attack them and be one of [unclear]. Icefang tried to see the future. When asked what happened if Browning did, the vision showed broken tower fields, burning blue, black, green, and red dragons flying around, small settlements of people hiding, and elementals destroying things. Icefang said, "The future could be desperate, the people are not ready yet." Cold Identify revealed that something had come with the party. Icefang suggested they go see Browning and ask him for the broom. -The party went to the Air common room at 22:00. Its door was flanked by pictures of a dwarf with a bushy beard and a blue dragonborn. Four or five mages were present: Browning, Valenth, Brotor, Ennuyé, and Hannah. A featureless woman had her hands on Hannah's shoulders. She thanked the party for bringing the broom because it was part of the plan. Everard thought he had found a way into the tower through the tunnels, and they needed the broom to get there. They wanted to see secrets of emotional elimination, memories, and automations, and to help defend the land because they did not think the elemental truce would last much longer. The party agreed to go with them. Tallith had not hired the janitor for nothing; he used to work with the elves. Valententhide said her sister's magic protected the party for now. Hannah, a priestess of Attabre, thought the elves had the same magic as the [unclear]. +The party went to the Air common room at 22:00. Its door was flanked by pictures of a dwarf with a bushy beard and a blue dragonborn. Four or five mages were present: Browning, Valenth, Brotor, Ennuyé, and Hannah. A featureless woman had her hands on Hannah's shoulders. She thanked the party for bringing the broom because it was part of the plan. Everard thought he had found a way into the tower through the tunnels, and they needed the broom to get there. They wanted to see secrets of emotional elimination, memories, and automations, and to help defend the land because they did not think the elemental truce would last much longer. The party agreed to go with them. Tallith had not hired the janitor for nothing; he used to work with the elves. Valentinhide said her sister's magic protected the party for now. Hannah, a priestess of Attabre, thought the elves had the same magic as the [unclear]. -They opened a door to a dark corridor. Valententhide said the party should not have seen this, that Bright had shown them too much, and that they should not even be able to see Hannah because she had been wiped from time and space. Everard entered, and the party followed into the corridor and closed the door. Valententhide hovered over them and let go of Hannah. The corridor opened into a janitor's closet. Reborn stone was noted. A coin thrown into Bright's statue made the door disappear. Dirk's group appeared in a bathhouse room with a human and the name Blackhold noted. The party tried to find everyone and succeeded. +They opened a door to a dark corridor. Valentinhide said the party should not have seen this, that Bright had shown them too much, and that they should not even be able to see Hannah because she had been wiped from time and space. Everard entered, and the party followed into the corridor and closed the door. Valentinhide hovered over them and let go of Hannah. The corridor opened into a janitor's closet. Reborn stone was noted. A coin thrown into Bright's statue made the door disappear. Dirk's group appeared in a bathhouse room with a human and the name Blackhold noted. The party tried to find everyone and succeeded. When they tried to open the door back to the school, a silver dragon appeared. Earth flowed through, and a silver-green claw burst through. Geldrin forced it closed. A voice said, "Taken my form give it back" and connected this to Avalina, saying it had taken everything from her. The party managed to close the door and give Geldrin the broom; they could not give it to Ennuyé, Thomas, or Browning [uncertain]. They opened into an empty room with shelves and stacks of paper. It was a white room with blue viewing and gorgeous red desks, where young elven children sat at each desk for simple maths. Ennuyé said it was taking too long. The party gave the broom, and they ended up in a field. The next small room was made of brass: Brass City. Browning took the broom in the Air common room, then gave it back. The group went out, and the door slammed shut. It reopened to a dusky room like the Air common room, with black windows and cracking glass sounds. The party exited and seemed to return to their own time. They no longer remembered Hannah, except the image of her turning to dust in the cave; they did not even remember her name. The Noxia glob had some of the rest returned home, and magic doors now felt cold. -The party went through the door and saw shadows of Valententhide's face. They felt as if they were being pulled up. They got out through the door on the other side of the barrier, to the room above the Air common room. The door there was made of black crystal, nearly transparent and enchanted. They found a suit of armour sized for a Goliath or goblin, with a gnomish hole set up so someone could stand on it and put it on. Purple crystals were linked with copper wire to a hatch containing an automaton core. A rug showed a cityscape with buildings and walkways. A label said "Great Farmouth." The armour was an enhanced suit with a world of magic missiles, a power suit, and a shield. +The party went through the door and saw shadows of Valentinhide's face. They felt as if they were being pulled up. They got out through the door on the other side of the barrier, to the room above the Air common room. The door there was made of black crystal, nearly transparent and enchanted. They found a suit of armour sized for a Goliath or goblin, with a gnomish hole set up so someone could stand on it and put it on. Purple crystals were linked with copper wire to a hatch containing an automaton core. A rug showed a cityscape with buildings and walkways. A label said "Great Farmouth." The armour was an enhanced suit with a world of magic missiles, a power suit, and a shield. The party got Bosh out and went downstairs. In one set of quarters, the room had a homely farmhouse feel and no dust. It belonged to Professor Arnisimus Goldenfields. Papers on the desk were waterwheel blueprints for Goldenswell. A desk picture showed a bleach-blond halfling standing with a blonde human woman, probably family, inscribed "To my love Arnisimus." There were seven cat collars. A bleach velvet box contained a golden chain with a symbol of a fireplace and a cat, the symbol of Larn. Lesson plans and other papers were present. @@ -94,7 +94,7 @@ Back in Mr Moreley's room, after breaking the void out, the dragon on the wall s # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine of Riversmeet, Hydrun, the goddess Igraine, Lam, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Lady Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Valenth Cardonald, the gremlin janitor, Torlish Hartwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Ennuyé / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. +People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine of Riversmeet, Hydrun, the goddess Igraine, Lam, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Lady Igraine, Invar, Dirk, Valentinhide / Valentinhide / Valentenhule / Valentinhide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Valenth Cardonald, the gremlin janitor, Torlish Hartwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Ennuyé / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. Groups and factions mentioned include the party, adventurers who found Hartwall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. @@ -106,7 +106,7 @@ Creatures and creature-like beings mentioned include oxen-horse crossbreeds, gri Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with far-seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade frog containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunnen-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowsorrow mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. -Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Ennuyé recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. +Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinhide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Ennuyé recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valentinhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. Strategic resources and plans mentioned include the Howling Tombs lead through Hartwall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine of Riversmeet's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. @@ -120,7 +120,7 @@ Cardonald's familiar reported that other adventurers found Hartwall's old lab an Geldrin's powerful arcane Draconic teleport / seeing scroll may reveal where "they" went, but who "they" are and how to use it remain unclear. -Ruby Eye's melted house and his wife's grave are tied directly to Valentinheide killing Emi's wife. The exact sequence of Ruby Eye, Emi, wife, house, and Valentinheide remains important. +Ruby Eye's melted house and his wife's grave are tied directly to Valentinhide killing Emi's wife. The exact sequence of Ruby Eye, Emi, wife, house, and Valentinhide remains important. Riversmeet contains temples to Hydrun, Igraine, Lam, and Kasha; the Kasha temple is the first the party has seen, making it notable. @@ -136,7 +136,7 @@ The fresh water elemental Dribble was trapped in a jade frog and felt as if some The alteration orb overwhelmed Geldrin with empathy and regret. The note "mine felt right here yours is under real" implies another emotion-orb location, but the meaning of "under real" is uncertain. -The sphinx book by serpans describes a parallel place and sphinxes who moved their city underground. This may connect to Trixus, Benu, Garadwal, the sixth sphinx, or Grincray, but the exact connection is not established. +The sphinx book by serpans describes a parallel place and sphinxes who moved their city underground. This may connect to Trixus, Benu, Garadul, the sixth sphinx, or Grincray, but the exact connection is not established. The four-armed vulture men making pots, the mindflayer-like observer, Dunnen-style pots, and poetry about Dirk's home remain unexplained. @@ -150,7 +150,7 @@ Cardonald's automations contained Thinglaens / Goliaths or light-like entities, Eliana's assumed identity as Evalina Hartwall / Miana / Avalina, seen by Truesight as a dragon, triggered concern about Argathum, Hartwall's childhood sweetheart, and the Gold Dragon Pact. Whether this is a past-life, disguise, stolen form, or time paradox is unresolved. -Lord Bleakstorm's lesson and the books Tale of Two Sisters and Lord of Bleakstorm and the Gnomes preserve history about Bright, Valentenhule / Valententhide, Great Farmouth, gnomes, merfolk, Grand Towers technology, and everlasting life. These are major lore threads. +Lord Bleakstorm's lesson and the books Tale of Two Sisters and Lord of Bleakstorm and the Gnomes preserve history about Bright, Valentenhule / Valentinhide, Great Farmouth, gnomes, merfolk, Grand Towers technology, and everlasting life. These are major lore threads. Ennuyé recognised Geldrin as touched by the lady of destruction and was researching dark magic. Hannah was later described as wiped from time and space. Their role in the tower expedition is critical. @@ -160,7 +160,7 @@ Icefang warned that humans were getting above their station, the gods would take The janitor's broom was required to open the tower route, and Tallith had hired the janitor because he used to work with elves. The janitor's identity, broom's mechanics, and Tallith's motives remain unclear. -The featureless woman / Valententhide held Hannah and said Bright had shown the party too much. Hannah should not have been visible because she was wiped from time and space. After returning, the party remembered only Hannah turning to dust in a cave and not her name. +The featureless woman / Valentinhide held Hannah and said Bright had shown the party too much. Hannah should not have been visible because she was wiped from time and space. After returning, the party remembered only Hannah turning to dust in a cave and not her name. The silver dragon / silver-green claw demanded its form back from Avalina, saying she had taken everything. This is a major unresolved identity and form-theft clue. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index 99226de..ca9c0d8 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -30,7 +30,7 @@ Day 46 began in the old Riversmeet mage school / Menagerie after midnight. Morga The party found a first-year dorm with no bedding despite the late hour. In a possible surgical or experiment room, a horse lay cut open but still alive on a slab. Men with squid heads were speaking to an elf with green or moss-like hair. One said, "There's no need for her to be here." The elf replied that there was, with the meddlers around and her mother gone. This was identified as Willowispa. -The party tried using the broom to reach the kitchen, but the darkness worsened. The door disappeared, leaving two black holes with a black ring around them. A second attempt with the broom opened into a cathedral, with the door in the ceiling. Morgana tried to detect Dirk's father and felt they were in Hartwall. The place had strange wood and a vacuum-like feel, and the holes then vanished. Morgana tried to leave a note saying they might have left Valententhide's home. She saw Valententhide, yelped, and asked if she was Lord Squall. Valententhide told someone to go warn someone. +The party tried using the broom to reach the kitchen, but the darkness worsened. The door disappeared, leaving two black holes with a black ring around them. A second attempt with the broom opened into a cathedral, with the door in the ceiling. Morgana tried to detect Dirk's father and felt they were in Hartwall. The place had strange wood and a vacuum-like feel, and the holes then vanished. Morgana tried to leave a note saying they might have left Valentinhide's home. She saw Valentinhide, yelped, and asked if she was Lord Squall. Valentinhide told someone to go warn someone. The party eventually reached the kitchen. A salt pot would not move, but its top behaved like a safe dial. The sequence `6/11/10/13/7` opened it and revealed salt. Mr Moreley appeared from the well and said Evocation would make sense when they got there, with no point in riddles. @@ -40,7 +40,7 @@ The party was then attacked and plunged into darkness. Willowispa attacked them, The basement contained a relief map, roughly from dome time, with eight divots around the outside, possibly for the orbs. Two doors stood to either side: one had no handle, and one had a handle but was magically trapped, with dried blood seeping underneath and a breaking head on the other side. Traps went off from the outside as designed. An antechamber had three doors. The people who had been in the room were dead, with evidence they had been trying to decipher the traps. Other wizards had apparently been ordered to get in at all costs and had spent twenty years trying to get through. Three were killed by the trap. There was no visible way into a plain room, though the wizards had broken through the ceiling. The party found a gap between the mortar that seemed to be a door but could not open it. -Through the hole, the party seemed to reach the third-year dorm, with about ten people sleeping there. They locked all the dorm doors and went to Evocation. The corridor floor between the third-year dorm and main hall was covered in four rays from different areas: an orange stained-glass-like ray from Dunensend showing Garadwal from one angle with the word "Terror" visible, a copper ray with perfect concentric circles, a white fur-like ray like dog or ghost fur, and a cheap-looking hexagonal design split into six primary and secondary colour segments. Pictures on the walls matched the rug styles: dark shirts, tabaxi or elves, a dwarf or copper dragonborn, and a tiny fluffling or thri-kreen male. A far rug was labelled "A gift from the Coppers." +Through the hole, the party seemed to reach the third-year dorm, with about ten people sleeping there. They locked all the dorm doors and went to Evocation. The corridor floor between the third-year dorm and main hall was covered in four rays from different areas: an orange stained-glass-like ray from Dunensend showing Garadul from one angle with the word "Terror" visible, a copper ray with perfect concentric circles, a white fur-like ray like dog or ghost fur, and a cheap-looking hexagonal design split into six primary and secondary colour segments. Pictures on the walls matched the rug styles: dark shirts, tabaxi or elves, a dwarf or copper dragonborn, and a tiny fluffling or thri-kreen male. A far rug was labelled "A gift from the Coppers." The music room had a musical lock on the door up to Evocation. The classroom had been ransacked, but a large metal table remained intact with a circle of dark runes. The runes glowed when Geldrin approached with flint and steel. A copper-scaled dragonborn with a human-like head approached. The party subdued him, though no one could see him. He was a copper-goliath mix called one of the Tarnished, apparently the offspring of a prisoner and [unclear] sons. When the party fetched a rock from the excavation hole, a squid-headed man attacked and died. The party found a jellyfish brooch and a 5th-level scroll of Magic Missile. @@ -62,23 +62,23 @@ During the spell, Morgana blanked out. She had a vision of an infinite library a Invar got Dirk to open a door while a warning said the party might not come in and that the creature had to be contained. A tendril spoke to Dirk and asked to be freed. Dirk refused, and it said he had blockers too, then showed him a vision of a sickly goliath entering a tent and being pulled out by a green dragon or dragonborn. The party managed to push the door open enough for Geldrin to get inside. An automaton was holding the door back and was there to stop the mushroom escaping. The mushroom tendrils wanted freedom. The automaton had only ever been in two places; a student of Lord [unclear: Dunthing] had taken it to study. The mushroom wanted to give the party five pieces to plant a mile apart, earthwise from a river. The party agreed to wait five years. -Morgana's reincarnation formed a male elven body with greenish hair on the floor. He felt full of divine energy and said his name was Garadwal. He did not recognise the party. The last thing he remembered was the desert and his people, before any Dome existed. The party told him what had happened, and he seemed good for the moment. When Benn banished Garadwal, he had not gone where expected. Morgana thought much of Garadwal had been in the vulture body. Emeraldus was wondered to be one of his children. The party decided to call him Groot for the time being. +Morgana's reincarnation formed a male elven body with greenish hair on the floor. He felt full of divine energy and said his name was Garadul. He did not recognise the party. The last thing he remembered was the desert and his people, before any Dome existed. The party told him what had happened, and he seemed good for the moment. When Benn banished Garadul, he had not gone where expected. Morgana thought much of Garadul had been in the vulture body. Emeraldus was wondered to be one of his children. The party decided to call him Groot for the time being. -The party returned to the basement. Garadwal sensed spirits protecting the area. They placed the orbs into their relevant slots, producing a slight glow and some light on the locked door, but nothing else happened. The door changed and showed ancient Draconic runes: "You've got this far. I'll do my best to aid you in the battle you are about to have. The creature you are about to face will destroy your memories & you will not remember the spell you are about to cast." The party tried to tell Garadwal what he might encounter. A forty-foot alien, squelchy creature appeared, with an anguished humanoid face half scared and half in pain. Skeletal wings and a spectral dragon were holding it down. Mr Moreley was the spectral dragon restraining it. The creature was the original Sphinx meant for the Goliaths, stolen and altered long ago when the Dome was created, and used to alter the memories of everyone inside the Dome. Mr Moreley was pulled back into the school, and the creature rose. +The party returned to the basement. Garadul sensed spirits protecting the area. They placed the orbs into their relevant slots, producing a slight glow and some light on the locked door, but nothing else happened. The door changed and showed ancient Draconic runes: "You've got this far. I'll do my best to aid you in the battle you are about to have. The creature you are about to face will destroy your memories & you will not remember the spell you are about to cast." The party tried to tell Garadul what he might encounter. A forty-foot alien, squelchy creature appeared, with an anguished humanoid face half scared and half in pain. Skeletal wings and a spectral dragon were holding it down. Mr Moreley was the spectral dragon restraining it. The creature was the original Sphinx meant for the Goliaths, stolen and altered long ago when the Dome was created, and used to alter the memories of everyone inside the Dome. Mr Moreley was pulled back into the school, and the creature rose. Ichor sprayed, and the party experienced visions. Eliana saw a cave with small creatures clad in metal, firing repeating crossbows, running past while a dragon roared. Dirk saw a thriving goliath city with many races trading. Geldrin saw a metal tower with zeppelins flying around, and the dragon skull was gone. The party felt the mind-altering effect coming from the back. Morgana saw a grassy field of daisies, a hand on her shoulder, and a warm, calming feeling from a barefoot faceless woman in silks. The creature died, but an invisible entity escaped through the door. The party attacked it, but forgot it was there. Dirk ran through it and thought it was a wall. It became visible and ran through the orb room. The room began to disappear, and four doors appeared in the map room. One orb was not lit: Amoursorate's. An illusion of Joy appeared on the far side of the map table, saying she was there because the party had met her and she was lost and always had been, then disappeared. Morgana was a head when she came into the room, and an illusion toad appeared beside her with something in its mouth. -Geldrin appeared in a dark room before Kasha's throne. Kasha wanted to claim her debt for Garadwal and wanted him because he was like her [unclear: father]. Geldrin returned to the room with his bag dripping blood and told Garadwal that Kasha wanted his soul. When the party investigated the non-glowing orb, they found a tiny scratch in it. Geldrin asked for cake and tried to hear the orb. A rug on the floor said "lost" in several languages. The main door had disappeared. The orb contained a skull with ruby eyes, which said he had been close to working it out, had given Errol a message, could not stay much longer, and then vanished. Lightning reappeared in the orb. +Geldrin appeared in a dark room before Kasha's throne. Kasha wanted to claim her debt for Garadul and wanted him because he was like her [unclear: father]. Geldrin returned to the room with his bag dripping blood and told Garadul that Kasha wanted his soul. When the party investigated the non-glowing orb, they found a tiny scratch in it. Geldrin asked for cake and tried to hear the orb. A rug on the floor said "lost" in several languages. The main door had disappeared. The orb contained a skull with ruby eyes, which said he had been close to working it out, had given Errol a message, could not stay much longer, and then vanished. Lightning reappeared in the orb. -The water room held the water Excellence the party had battled, dragging the mermaid they had rescued. When Dirk asked why it was there, it replied that because they had seen it, now it would be their end. Garadwal removed Morgana's Feeble Mind. Before returning to herself, she saw two storm Rubyeyes. The party removed the salt orb, and the prison door shut. +The water room held the water Excellence the party had battled, dragging the mermaid they had rescued. When Dirk asked why it was there, it replied that because they had seen it, now it would be their end. Garadul removed Morgana's Feeble Mind. Before returning to herself, she saw two storm Rubyeyes. The party removed the salt orb, and the prison door shut. Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but when Geldrin called out the lie, Errol opened his desk and a ruby dropped out. The ruby played a scene of Ennuyé and Browning in a huddle. Browning asked what Squeal had asked for. He said the weather to come through the Barrier, but the notes clarify that was not what Squeal said; Squeal actually asked for "the loss of everything." Ennuyé said it was cryptic but might help them. A second message showed red glowing eyes with white minds for eyes, a water Excellence, and a whirlwind being. Errol refused to play the message. Morgana turned into a bat and found something by echolocation, then forgot she had found it and turned back. The lost ring was given to Geldrin. When he put it on, it disappeared. Dirk lost compassion, and Geldrin no longer wanted to learn things. A message said "Bread & Circus" and pretended to be Rubyeye. -Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunnen door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. +Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunnen door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valentinhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. -Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" The invisible entity was defeated, and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward Dotharl, and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." +Dirk, Garadul, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" The invisible entity was defeated, and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward Dotharl, and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." Dotharl, played by Joshua, had only been aware for twenty years. A soul crashing into the tower had awakened a few constructs. A magpie landed on Morgana and said it could help her. The Chorus had sent it. Difficult times were coming, but Morgana would know the right path when it came. The magpie could say no more because Morgana had told it not to say anything else, though she could not remember doing so. It said it was time; the Chorus could not help before but could now. Willowispa was flying away furious. Dotharl had awakened around Rhime watches about twenty years earlier, near a door, and something had forcefully propelled him through it. @@ -86,7 +86,7 @@ The notes mark Day 46 again as the party moved mattresses into the map room to r Six people dropped down the hole. They included a gnoll, probably Longfang, who thought the dragon in Lake Azure might be dead; a sparrow aarakocra called Mercy; and a pesky elf connected to the bellow men. Mercy stopped Longfang from opening the trapped door, saying they were on reconnaissance and the boss had said one was here, with quick mystic listening. The party tried to rip out the blade and opened the door. A bubble surrounded the elf, and Mercy pulled through the blade. -Invar brought Garadwal out of Feeble Mind. Garadwal looked shocked as he now remembered everything. He needed to find his brothers and teleported away. Morgana tried to reincarnate the baby sphinx. She could feel where some light spirit had been and also felt someone else pulling at the spirit. She blacked out and was drawn before Kasha, who said the spirit was hers and Morgana could not have it. Kasha was taking it as alternative payment. Morgana argued that the original payment would be made as promised. She asked Igraine, Abraxas, and [unclear: Typh] for help; they came to Morgana's feet, allowing her wholly. She drifted toward Heather. A strange warmth came, and Invar blacked out and appeared next to Morgana. Kasha said this had not happened for many years, saw why the party had been chosen, but warned she could not be fooled like the others and would not be taken like them. She allowed them to have the goliath child. The spell completed too quickly, as if someone else had cast it. The baby felt hot and unwell, apparently reflecting the state of goliath civilisation. The Sphinx aspect of the altered memory creature was what reincarnated as Bynx. +Invar brought Garadul out of Feeble Mind. Garadul looked shocked as he now remembered everything. He needed to find his brothers and teleported away. Morgana tried to reincarnate the baby sphinx. She could feel where some light spirit had been and also felt someone else pulling at the spirit. She blacked out and was drawn before Kasha, who said the spirit was hers and Morgana could not have it. Kasha was taking it as alternative payment. Morgana argued that the original payment would be made as promised. She asked Igraine, Abraxas, and [unclear: Typh] for help; they came to Morgana's feet, allowing her wholly. She drifted toward Heather. A strange warmth came, and Invar blacked out and appeared next to Morgana. Kasha said this had not happened for many years, saw why the party had been chosen, but warned she could not be fooled like the others and would not be taken like them. She allowed them to have the goliath child. The spell completed too quickly, as if someone else had cast it. The baby felt hot and unwell, apparently reflecting the state of goliath civilisation. The Sphinx aspect of the altered memory creature was what reincarnated as Bynx. The party went back up the hole. Invar's robes now showed his surname; it had supposedly been there the whole time, and he now recognised it. They exited by the main entrance. The tents were abandoned and empty of people and belongings, though furniture remained. It was 11:00. They went into the town, which was bustling. @@ -110,29 +110,29 @@ The party learned that Igraine had returned that morning, had two guards on her Militia rewards were distributed at "I'm the Drink" and "The Olde Clay Jug." The party got the other half of the sending stone from the pub man connected to the Exchequer and gave it to the seneschal. At The Olde Clay Jug, they spotted a waitress carrying a tray with leaves. They could not ask to see Highgate, but asked her as she passed. She went through the "Earth hath no" door. The dwarf the party had been speaking to left, and another dwarf sat in his place. -Bollar men were looking for the party. He agreed to help the militia and find the missing townsfolk. Friends back home, including an ice dwarf, said a mutual friend sent out of the Barrier had taken the opportunity to do something before trying to get back in, had not found a way back, and had visited Lord Bleakstorm. A mirror hummed, and the back of a female lady's hair appeared. A cold voice said she could take the party there and was a friend. She wished for the same thing they sought and said any debts she perceived would be repaid. The party recognised the "end of all things" as Valententhide. She would let them use her pathways, wanted the artifact, and said the cost would be some identities, some eyes, and some pride. The party shut her off and decided to go to Hartwall's lab after resting and eating chicken. +Bollar men were looking for the party. He agreed to help the militia and find the missing townsfolk. Friends back home, including an ice dwarf, said a mutual friend sent out of the Barrier had taken the opportunity to do something before trying to get back in, had not found a way back, and had visited Lord Bleakstorm. A mirror hummed, and the back of a female lady's hair appeared. A cold voice said she could take the party there and was a friend. She wished for the same thing they sought and said any debts she perceived would be repaid. The party recognised the "end of all things" as Valentinhide. She would let them use her pathways, wanted the artifact, and said the cost would be some identities, some eyes, and some pride. The party shut her off and decided to go to Hartwall's lab after resting and eating chicken. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Ennuyé, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Dotharl, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine of Riversmeet, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. +People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valentinhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadul / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Ennuyé, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Dotharl, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine of Riversmeet, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valentinhide. Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. -Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowsorrow, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunnen door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. +Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valentinhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowsorrow, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunnen door, Valentinhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the defeated invisible entity, the altered original Goliath Sphinx / 40-foot memory-destroying creature, Mr Moreley as spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child Bynx, undead sphinx, and possible tainted dragons. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the broom, salt pot safe with sequence `6/11/10/13/7`, salt, beast-sales ledger, Noxia-symbol snake-and-scorpion necklace, basement relief map with eight divots, magical traps, musical lock, dark-rune summoning circle, jellyfish brooch, 5th-level Magic Missile scroll, coin necklace, curved sword with purple-crystal hilt, note reading "propell," Alarm spell, elemental ornate handle, globe with rock, lava-transformed rock, socks and trinkets, Snowsorrow snowglobe, racing automatons, cakes and potions, Storm Orb, seasoned stone, mushroom pieces, ancient Draconic warning runes, orbs in slots, Amoursorate's scratched orb, rug saying "lost," skull-and-ruby-eyes orb, ruby messages, lost ring, coral door, power-armour suit, Invar's robe surname, deputy badges, sending stones, 500 gp jade purchase, jade earrings, jade-disguised staff, mirror, 80 hexagon coins, dark grey rose, Bartholomew's silver chain with green pendant, 50,000 gp worth of jade, militia rewards, tray with leaves, and the mirror through which Valententhide offered pathways. +Items, documents, and physical resources mentioned include the broom, salt pot safe with sequence `6/11/10/13/7`, salt, beast-sales ledger, Noxia-symbol snake-and-scorpion necklace, basement relief map with eight divots, magical traps, musical lock, dark-rune summoning circle, jellyfish brooch, 5th-level Magic Missile scroll, coin necklace, curved sword with purple-crystal hilt, note reading "propell," Alarm spell, elemental ornate handle, globe with rock, lava-transformed rock, socks and trinkets, Snowsorrow snowglobe, racing automatons, cakes and potions, Storm Orb, seasoned stone, mushroom pieces, ancient Draconic warning runes, orbs in slots, Amoursorate's scratched orb, rug saying "lost," skull-and-ruby-eyes orb, ruby messages, lost ring, coral door, power-armour suit, Invar's robe surname, deputy badges, sending stones, 500 gp jade purchase, jade earrings, jade-disguised staff, mirror, 80 hexagon coins, dark grey rose, Bartholomew's silver chain with green pendant, 50,000 gp worth of jade, militia rewards, tray with leaves, and the mirror through which Valentinhide offered pathways. -Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadwal, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadwal's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity until it was defeated, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valententhide's proposed pathway magic. +Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadul, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadul's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity until it was defeated, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valentinhide's proposed pathway magic. -Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Ennuyé, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowsorrow, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. +Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Ennuyé, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadul's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowsorrow, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valentinhide's offer of pathways at the price of identities, eyes, and pride. # Clues, Mysteries, and Open Threads -The Menagerie / old mage school still contains layered rooms, planar routes, time effects, living or dead experiment subjects, traps, and spiritual memory interference. The precise mechanism joining Hartwall, Valententhide's home, the cathedral, the kitchen, the basement, and historical school spaces remains unresolved. +The Menagerie / old mage school still contains layered rooms, planar routes, time effects, living or dead experiment subjects, traps, and spiritual memory interference. The precise mechanism joining Hartwall, Valentinhide's home, the cathedral, the kitchen, the basement, and historical school spaces remains unresolved. Willowispa's statement about her mother being gone, the possible male and female Willowispa voices, the hidden things unknown to dragons, and the reference to Mother remain active clues. @@ -144,17 +144,17 @@ The Tarnished, their Verdigren orders, their hideout fifteen miles below Tradesm Metatous's incomplete soul, the mushroom organism, Limos Vita, the cat-horned flesh bag spreading mushroom pieces, and the requested five plantings a mile apart earthwise from a river after five years remain unresolved. -Garadwal was reincarnated in an elven, green-haired, divine-energy body, remembered the pre-Dome desert after being restored, and left to find his brothers. Whether he is now ally, threat, divided being, or restored protector remains open. +Garadul was reincarnated in an elven, green-haired, divine-energy body, remembered the pre-Dome desert after being restored, and left to find his brothers. Whether he is now ally, threat, divided being, or restored protector remains open. The memory-destroying creature was the original Sphinx meant for the Goliaths, stolen and altered when the Dome was created, then used to alter memories across the Dome. Mr Moreley was the spectral dragon holding it down. The invisible entity that escaped during the battle was defeated, restoring the party's memories and allowing the Sphinx aspect to reincarnate as Bynx. -Kasha claimed a debt for Garadwal and later tried to claim the baby sphinx / goliath child as alternative payment. Her statement that she cannot be fooled or taken like the others raises questions about which gods or powers were fooled and by whom. +Kasha claimed a debt for Garadul and later tried to claim the baby sphinx / goliath child as alternative payment. Her statement that she cannot be fooled or taken like the others raises questions about which gods or powers were fooled and by whom. Rubyeye's preserved messages indicate Squeal asked not for weather through the Barrier but for "the loss of everything." The later "Bread & Circus" impersonation of Rubyeye is unresolved. The lost ring removed or altered traits: Dirk lost compassion, and Geldrin no longer wanted to learn. The status of those losses and the ring remains unresolved. -The visions behind the doors, including the restored statue of Sierra, Lodest with vulture men and Anastasia chained, and movement toward Valententhide's prison, may represent current or historical prison states. +The visions behind the doors, including the restored statue of Sierra, Lodest with vulture men and Anastasia chained, and movement toward Valentinhide's prison, may represent current or historical prison states. The memory flood restored or revealed relationships, including Invar and Eliana remembering Morgana as more familiar than expected. The source and implications of those restored memories remain unresolved. @@ -172,4 +172,4 @@ The huge jade cache on the boat, the 500 gp jade purchase, jade earrings, and ja The "Earth hath no" door, Highgate request, waitress with leaves, and dwarf replacement are unresolved leads at The Olde Clay Jug. -Valententhide offered pathways to Hartwall's lab or the party's goal but demanded the artifact and warned of costs in identities, eyes, and pride. The party rejected the immediate offer and planned to rest, eat chicken, and go to Hartwall's lab. +Valentinhide offered pathways to Hartwall's lab or the party's goal but demanded the artifact and warned of costs in identities, eyes, and pride. The party rejected the immediate offer and planned to rest, eat chicken, and go to Hartwall's lab. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index bb6dc6d..d2db8d6 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -40,7 +40,7 @@ An obsidian statue had no face but suggested a gracious god, with an eyestone in When the party checked the crack, someone became petrified by it and instinctively threw the flute at it. The crack looked as if something spherical had hit it. Dirk checked the urn, found it contained dust, and tried to speak to it. The phrase "In her strange bones laid bare" was recorded. Nearby metal looked tarnished, odd for silver; when wiped, it revealed crystallised jade dust, as if silver were turning into jade. Geldrin cleaned both statues and became lost looking at one. -An ornate door led to a long throne room. One throne was Hartwall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadwal. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. +An ornate door led to a long throne room. One throne was Hartwall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadul. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Ennuyé's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Browning came in a day later and left with a key. The door said Hartwall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." @@ -90,13 +90,13 @@ Another diary section, on the Anvil pages, said the writer was unhappy about hav Back in the empty room, the party worked out what was behind the odd brick. A handle started vibrating; the stone no longer held, and the handle glowed cold. In the bathroom, they worked the shower. Filling the handle with water made it glow. The invisible handle was removed and was itself invisible, creating something on the design. Arc suggested fetching tongs from the kitchen. Nothing happened when it was put in the fire, leading to the question of whether it was the air one. Taking it to the flying room made it glow. -On a second round, Morgana felt writing on a piece of paper, fear, and resentment. She pulled out a random paper as if she knew it was there. It read, "Nope, not going there. Going to use grandson's old trick." The notes preserve the uncertain name Taotli?. The party found his picture in the flying room, and the handle was inside. They charged it in the bedroom fire. Putting the handles in the wall made the wall sink into the floor. An archway appeared in the back wall with a glass clock on it. The space was empty except for the Spear / Arrow of Sierra, a central box, and an open coffin door. The humanoid of the barrier from the prison room disappeared. +On a second round, Morgana felt writing on a piece of paper, fear, and resentment. She pulled out a random paper as if she knew it was there. It read, "Nope, not going there. Going to use grandson's old trick." The notes preserve the uncertain name Taotli?. The party found his picture in the flying room, and the handle was inside. They charged it in the bedroom fire. Putting the handles in the wall made the wall sink into the floor. An archway appeared in the back wall with a glass clock on it. The space was empty except for the Sierra's arrows, a central box, and an open coffin door. The humanoid of the barrier from the prison room disappeared. A conch-like control item had three once-per-day effects when blown: Control Water, a song of thrumming, and Conjure Water Elemental. It also granted or involved Create Water, underwater breathing, speaking to sea creatures, and underwater movement. A chest showed a well wall without a bottom, causing overwhelming vertigo. Cold entered the room. Rimefrost shrieked for "little dragons." The party killed the ice elemental. A fire elemental in a rip under the fireplace seemed evil. The party attempted to put the elemental puzzle into an elemental ball. -The notes then repeat the Day 47 marker. A Skygate-type portal had runes on it; three seemed to be places, including a glittering-type word, a cryptic-type word, and an unclear third word, perhaps "Original something." The frost elemental prison runes had completely disappeared as if never there. Diary entries described fighting by Dunnen people. The writer and Argentum wanted to help Garadwal. They fought elementals in the name of `[Hafelius?]`. Garadwal had trouble fighting them, while Metatous seemed more powerful than he should have been. After a two-week break, Argentum died, having fallen to the armies. +The notes then repeat the Day 47 marker. A Skygate-type portal had runes on it; three seemed to be places, including a glittering-type word, a cryptic-type word, and an unclear third word, perhaps "Original something." The frost elemental prison runes had completely disappeared as if never there. Diary entries described fighting by Dunnen people. The writer and Argentum wanted to help Garadul. They fought elementals in the name of `[Hafelius?]`. Garadul had trouble fighting them, while Metatous seemed more powerful than he should have been. After a two-week break, Argentum died, having fallen to the armies. -At 18:00, Geldrin investigated the portal and worked it out. At 22:00, another diary entry said a symbol was similar to "glittering." They had hidden the whole place with them, described as petty. The writer was unsure how Argentum was taking it. Allegations against her were valid, but taking the city was extreme. A discussion preserved as "Taler" involved the actual word for captive, prisoners assembled, disagreement over official alternatives, Bronze refusing her suggestion, and wanting an alternative for Garadwal. The writer wanted to believe intentions were good but could no longer see the path. +At 18:00, Geldrin investigated the portal and worked it out. At 22:00, another diary entry said a symbol was similar to "glittering." They had hidden the whole place with them, described as petty. The writer was unsure how Argentum was taking it. Allegations against her were valid, but taking the city was extreme. A discussion preserved as "Taler" involved the actual word for captive, prisoners assembled, disagreement over official alternatives, Bronze refusing her suggestion, and wanting an alternative for Garadul. The writer wanted to believe intentions were good but could no longer see the path. Arc asked Dothral to set it free. The party teleported to the frost prison. Ice blew away. The elemental spoke to Dothral; when told the party wanted to come in, it stopped blowing and they headed inside while lightning crackled in the distance. Invar found it difficult to connect to Shotcher. Behind the ice, two corridor doors had a lightning bolt and a snowflake, followed by two plain handleless doors. At the end of the corridor was a T-junction and a painting with a thick wheel of compass points, sun and moon in the middle, symbols for the compass points, and scraping or scratches where something had been rubbed off between the points. A flute sounded from the left. @@ -108,9 +108,9 @@ One dark door now held nothing; it had been a prisoner of a different time. Anot At the snake door, the party chipped at the ice and one head spoke. It knew the door at Hartwall's lab for Ennuyé and needed a Hartwall-style door handle and archway. The goat was Dorion, the bull was Tim, and the lion was Geoffrey. The door's conditions were to use the arch, oil the hinges, and not break it. It called Dotharl the door guard for this prison. Geoffrey wanted a new body before allowing them in. The party agreed not to take or break anything. Inside, the walls were intricately carved with faces showing different expressions, except for eyeballs or hair. -The floor was a mosaic of seaward stone, purple crystal, and other materials. The archway matched the Hartwall lab archway, and the prison symbol said "home." A seaward-stone table had veining like an unrecognised map. A hat stand held a cloak that made the wearer invisible. Bookshelves held books about the moon and a nursery rhyme book about Valententhide. One unknown-author book, `Palace of Valententhide`, said her palace was forged in the deep sky, in a domain outside mortal realms, on the crimson. Its walls were faces she did not have, the air was unbreathable unless visitors brought their own, and when the gods were banished to another plane, Valententhide used a loophole to stay at this palace. +The floor was a mosaic of seaward stone, purple crystal, and other materials. The archway matched the Hartwall lab archway, and the prison symbol said "home." A seaward-stone table had veining like an unrecognised map. A hat stand held a cloak that made the wearer invisible. Bookshelves held books about the moon and a nursery rhyme book about Valentinhide. One unknown-author book, `Palace of Valentinhide`, said her palace was forged in the deep sky, in a domain outside mortal realms, on the crimson. Its walls were faces she did not have, the air was unbreathable unless visitors brought their own, and when the gods were banished to another plane, Valentinhide used a loophole to stay at this palace. -Geldrin felt urged to put the book on the table. The table's blue veins morphed to look like the moon. The nursery rhyme book showed a castle, perhaps in Hartwall escape style. The coat stand had invisible eyes on it. The cloak, when invisible, showed moving starscapes to observers but not to the wearer. When Geldrin placed other books on the table, Ennuyé's spellbook made it blank, then showed sleeping men, then a girl in a dome, then an endless well with more at the bottom, then two grinning figures guarding a door with weapons, perhaps a picture of Ennuyé's soul. A Mythos spellbook showed a pyramid, temples beside a sphynx, an egg, and Garadwal. +Geldrin felt urged to put the book on the table. The table's blue veins morphed to look like the moon. The nursery rhyme book showed a castle, perhaps in Hartwall escape style. The coat stand had invisible eyes on it. The cloak, when invisible, showed moving starscapes to observers but not to the wearer. When Geldrin placed other books on the table, Ennuyé's spellbook made it blank, then showed sleeping men, then a girl in a dome, then an endless well with more at the bottom, then two grinning figures guarding a door with weapons, perhaps a picture of Ennuyé's soul. A Mythos spellbook showed a pyramid, temples beside a sphynx, an egg, and Garadul. A tome of dome making displayed strange curving patterns, a "magnet curvature pattern," Grand Towers, a crystal, mountains, the atmosphere, and a giant flaming rock. Geldrin's spellbook showed a massive dragon, Perodita, now with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the windows. Other pages showed trees, then nothing, then a two-lodge logging area. The table spoke the words on the page. Another image showed a dragon lady and two dragon men, possibly silver, white, or gold. `Flight of the Gold` showed an enormous palace with tiny dragons flying around, a snow screen, flowers and trees, no snow, and a temperate appearance. @@ -136,25 +136,25 @@ The notes record that Dothril / Dotharl had a familial tie to an elemental. Bynx Aurum left, and Hayhearn said that explained a lot. Bynx cast Truesight and found his sister was no longer there; there was no trace of her in the white dragon. This was significant because her sacrifice should have left a trace in all white dragons and their descendants. Aurum returned with the rest of the council, and the empty chair was now filled by a silver-skinned human. The council proposed that Eliana stay and they would help Eliana find out what they had lost. The party did not trust this. The party demanded release of all Sunsoreen citizens; the council declined. Hayhearn invoked guest rights and tried to arrest them, but Aurum Prudence objected forcefully and told the party to leave. Many people then ran to the chambers with papers for an emergency law-making meeting. -The party returned to the frost prison. Geldrin tried to turn the portal off but accidentally activated another location: a square black obsidian room with no doors. Geldrin found a door, placed a hand on it, and opened it into a black corridor in Valententhide's house. The portal had one charge left, shared between portals and resetting once a day. When the party opened the portal and tried to go through, they saw Valententhide and passed out. Three went through before the portal closed. Morgana heard Eliana and felt cold hands on her shoulder. +The party returned to the frost prison. Geldrin tried to turn the portal off but accidentally activated another location: a square black obsidian room with no doors. Geldrin found a door, placed a hand on it, and opened it into a black corridor in Valentinhide's house. The portal had one charge left, shared between portals and resetting once a day. When the party opened the portal and tried to go through, they saw Valentinhide and passed out. Three went through before the portal closed. Morgana heard Eliana and felt cold hands on her shoulder. The party then used the right blade to go to Hartwall's lab. They gave the ice elemental ball to the fire elemental in the fireplace, cast Dispel Magic on the rift in the fireplace, and closed the portal to the fire elemental. Page 245 then begins Day 48, so Day 47 is complete at this point. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Ennuyé, Mr Browning, Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellburn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Ennuyé, Mr Browning, Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellburn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadul, Igraine, Cacophony, Throngore, Bynx, Tremon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valentinhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellburn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunnen people / Dunnen people, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. -Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Ennuyé's lab, `[unclear: aprosur]`, the corridor with `Fuck you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. +Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Ennuyé's lab, `[unclear: aprosur]`, the corridor with `Fuck you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valentinhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valentinhide's house. Creatures and creature-like beings mentioned include the magical black green-eyed cat, the sphynx / Bynx, the goliath baby, a crab in Invar's bag, the Attabre toy figure with an elven body and lion's head, the huge black dragon with flies, the drow or green dragon, a copper dragon, a dragon lady and dragon men, a white dragon, red and blue dragons, a fire elemental, ice elemental, frost elemental, massive shaggy blue aurora, elemental prisoners, insects speaking for Cacophony, and invisible hooded figures, one of whom became a copper dragon. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Ennuyé's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tremon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. +Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Sierra's arrows, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valentinhide, `Palace of Valentinhide`, Ennuyé's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tremon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. -Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Lam / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. +Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Lam / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valentinhide and passing out, Dispel Magic, and closure of the fire elemental portal. Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Hartwall had two daughters; the note hiding items in a cell and a false teddy; Bynx identifying the Attabre toy figure as his father; the Hartwall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming Eliana as Eliana Hartwall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. @@ -178,7 +178,7 @@ The room with the goliath song, flute, stuffed "bears," rose-field window, label The stone door recognised sons of fire and stone, and the room held a memory orb showing Grand Towers, seven elves, whorls of wind, and a toy figure of Attabre with an elven body and a lion's head. Bynx identified Attabre as his father. -The desert-badlands room showed Noxia fighting Sierra, while later plinths named the Blood of Noxia and Spear / Arrow of Sierra. How these artifacts and the battle relate remains unresolved. +The desert-badlands room showed Noxia fighting Sierra, while later plinths named the Blood of Noxia and Sierra's arrows. How these artifacts and the battle relate remains unresolved. The black dragon with flies, drow or green dragon attacker, jar, beautiful elf, Barrier crash, and statement "that's your form now" appear to explain a transformation and Barrier passage, but the figures are not fully identified. @@ -194,7 +194,7 @@ Rimefrost's cry for "little dragons," the killed ice elemental, the fire element The frost prison, the dark door to an ancient dwarven hold, the massive shaggy blue aurora, the semicircular oracle room, and prisoners Dorion, Tim, and Geoffrey indicate multiple elemental or time-displaced prisoners. Geldrin promised to free at least one once the dome can be powered without elementals. -The `Palace of Valententhide` book reveals Valententhide's deep-sky palace, unbreathable domain, wall of faces, and loophole after the gods' banishment. The party's later accidental portal to Valententhide's house and cold hands on Morgana show this thread remains immediate. +The `Palace of Valentinhide` book reveals Valentinhide's deep-sky palace, unbreathable domain, wall of faces, and loophole after the gods' banishment. The party's later accidental portal to Valentinhide's house and cold hands on Morgana show this thread remains immediate. Aurum Prudence and Sunsoreen revealed a city moved to the other side of the earth after broken pacts, with the Tri-moon visible at the wrong time and the Council enforcing absorption, new laws, job mandates, outbreeding controls, and information control. Whether Sunsoreen is ally, authoritarian remnant, or active threat remains open. diff --git a/data/4-days-cleaned/day-48.md b/data/4-days-cleaned/day-48.md index d1d911e..0072dfd 100644 --- a/data/4-days-cleaned/day-48.md +++ b/data/4-days-cleaned/day-48.md @@ -28,7 +28,7 @@ The notes then connect to Courtwood's "Musing" from four days earlier, when Worn Scout reports listed four entrances. The main cliff entrance was nine miles away and guarded by about one hundred humans, dragonborn, and Duhg guards. Other patrol entrances lay under a shrub, behind a rock, behind a poison door, and in the ground, about one mile apart. Many traps had been placed, and the enemy had a movable poison weapon. The party recovered a poison weapon that felt familiar. Its poison seemed to have an alchemical base, breath-weapon qualities, poisonous herbs, and scorpion venom. Normal healing could heal the wound, but the wound would not close. -The party visited the Dunnen people and received substantial respect. Elders came out, including an older one and a knower of flesh, acting on the word of Benu. They said there was a plan for the party. Texts now uncovered showed prophecy, and because of Benu's convalescence they knew he would return but needed to pay for his misdeeds. They had heard of their old protector made flesh anew, Garadwal. He had been good and had wanted to protect people, but they were unsure whether they should accept him back as their protector. The goliaths proved strong-minded. The merfolk had retreated to the sea. Suppressed memories horrified them, although they had spoken highly of the party. The party considered options: diplomacy, attack, sneaking, or leaving. +The party visited the Dunnen people and received substantial respect. Elders came out, including an older one and a knower of flesh, acting on the word of Benu. They said there was a plan for the party. Texts now uncovered showed prophecy, and because of Benu's convalescence they knew he would return but needed to pay for his misdeeds. They had heard of their old protector made flesh anew, Garadul. He had been good and had wanted to protect people, but they were unsure whether they should accept him back as their protector. The goliaths proved strong-minded. The merfolk had retreated to the sea. Suppressed memories horrified them, although they had spoken highly of the party. The party considered options: diplomacy, attack, sneaking, or leaving. Dirk asked his ancestors whether diplomacy could work. They indicated help could be gained, but the price would be high. The party told the council they would try diplomacy and advised them to give Verdigrim trade terms. The council disliked the plan but listened. At the dragonborn base, one dragonborn saw the party, followed briefly, then disappeared toward a hidden entrance. Many more surrounded the party. Three dragonborn approached: a burly mean-looking woman, a small old man, and a burly one. They said Eliana bore the shine of stepmother and that Verdigrim had ordered them to speak. The burly envoy was Grimescale, envoy of mighty Verdigrim; the old man was Gravltooth. @@ -38,7 +38,7 @@ Verdigrim wanted to keep his own "Verdigrimtown" and wanted what was already his When the party returned to their tent, Wrath was waiting, smartly dressed and holding Rubyeye. Wrath said Rubyeye needed rescuing; Cardinal had gone but been useless. Eliana stated they were called Eliana Hartwall because that was apparently their mother's name, though one of their mothers was and one was not. Ingus was told to inform the council where the party was going. -Wrath took the party to a huge underground dwarven city. A lava ball held a humongous elemental lava orb, possibly a prisoner. A dwarf king prayed to the gods to keep the orbs safe. A female dwarf with a massive ruby in her chest plate was present, and the notes question whether Garadwal's body had a new owner. Earth elementals were present. The female dwarf was Spindl, Rubyeye's auntie; she had seen the party before and knew they were coming. The party said "Garadwal" had called them and they had come to help him. +Wrath took the party to a huge underground dwarven city. A lava ball held a humongous elemental lava orb, possibly a prisoner. A dwarf king prayed to the gods to keep the orbs safe. A female dwarf with a massive ruby in her chest plate was present, and the notes question whether Garadul's body had a new owner. Earth elementals were present. The female dwarf was Spindl, Rubyeye's auntie; she had seen the party before and knew they were coming. The party said "Garadul" had called them and they had come to help him. Invar made an offering to the lava orb. He opened a box containing a tiny creature, which leapt to the lava orb and told him to aid his friends. The party saw cells and a dark-skinned man crawling across sand and begging for help. They saw Grand Towers elves leaving defeated and in pride, and the fall of two empires. Pride teleported away. Wrath became angry because the party had not killed Pride. The dwarf High Priest wanted to arrest Wrath for existing. Rubyeye was present and was arrested for ancient crimes after the council deemed him a wanted criminal and summoned him. Wrath had been advocating for Rubyeye and had brought Pride while claiming the party caused events. @@ -52,25 +52,25 @@ The party threw slurry, bones, and metal through the Barrier. The slurry and sim The party investigated the prison. A door rune read "Empty." Corridors were lined with heavily armoured dwarf statues. Plaques named Ugarth Thunderfut, slain by the demon Samuel; Borbor Thunderfut, who saw Samuel slain by the demon Struct; and Lhura Trutbrow, slain by Struct but bound in chain upon him. The story involved thirty dwarves from two clans capturing Throngore. A thirty-foot circular room held six more dwarves who had bound the creature there. One statue should have held a crystal or diamond-type gem, but the gem was missing. A dark corridor led to a chamber of thirty dwarf sarcophagi. The room stank of decay, and the bodies had been decapitated around twenty years earlier, despite sarcophagus inscriptions saying the thirty dwarves had lived in the corridor and all died on the same date 1,050 years ago. Their armour and weapons were present as heirlooms and had been covered with goat urine. -The party tried to match armour to statues and found fine glass dust in stone cracks, suggesting a diamond resurrection spell or similar. Stoven and Stuart had both been imprisoned twenty years earlier and only recently released by the party and another group. A narrowing dark corridor led to a handleless door with a panel. Beyond it was a prison dome containing a featureless humanoid figure, uncertainly noted as Aglue?, Anemie?, or Valententhide. Pylon runes explained the pylons and mentioned a key or "wheel" to open it. A third door had magical infernal-like writing on the doorknob, reminiscent of Ennuyé's lab. When Dothral tried to open it, he heard, "Come on, boy, we haven't got all day." Inside were five living dwarves with no hands or feet, their eyes and lips sewn shut. They wanted only to be killed. A crystal gave Eliana a faint memory of medical school and playing with a sister by the river in Provista, where she looked different and called Eliana silly poo-poo head. +The party tried to match armour to statues and found fine glass dust in stone cracks, suggesting a diamond resurrection spell or similar. Stoven and Stuart had both been imprisoned twenty years earlier and only recently released by the party and another group. A narrowing dark corridor led to a handleless door with a panel. Beyond it was a prison dome containing a featureless humanoid figure, uncertainly noted as Aglue?, Anemie?, or Valentinhide. Pylon runes explained the pylons and mentioned a key or "wheel" to open it. A third door had magical infernal-like writing on the doorknob, reminiscent of Ennuyé's lab. When Dothral tried to open it, he heard, "Come on, boy, we haven't got all day." Inside were five living dwarves with no hands or feet, their eyes and lips sewn shut. They wanted only to be killed. A crystal gave Eliana a faint memory of medical school and playing with a sister by the river in Provista, where she looked different and called Eliana silly poo-poo head. When the party took the crystal to the dwarves, they smiled and passed happily into the afterlife. As the party moved past, Invar's bag of holding opened by itself so something inside could emerge: an Orb of Compassion. The headmaster's office at the magic school had held a note reading "mines beneath the real." The party became overwhelmed with compassion and dropped the orb and crystal. Geldrin found a loose stone hiding a small eye-sized ruby with a spell similar to Knock. -Geldrin used the Skull of Iresmun to open the dome slightly. The figure turned toward the hole. It said it was no one, lost, once part of Valententhide, and unsure what it was now. Thomas had put it in the dome and taken what had been there. It explained that the elemental planes were a highway, that a pact had made the world but left too much highway, and that the Vessel of Divinity had made beings into gods, stripping some of that away and leaving lostness behind. It said it could not be allowed to keep the vessel, wanted to help, did not think deception would help, and would answer three questions. +Geldrin used the Skull of Iresmun to open the dome slightly. The figure turned toward the hole. It said it was no one, lost, once part of Valentinhide, and unsure what it was now. Thomas had put it in the dome and taken what had been there. It explained that the elemental planes were a highway, that a pact had made the world but left too much highway, and that the Vessel of Divinity had made beings into gods, stripping some of that away and leaving lostness behind. It said it could not be allowed to keep the vessel, wanted to help, did not think deception would help, and would answer three questions. -The party asked what would happen if Valententhide were reformed and why everyone thought Eliana was a Hartwall. Morgana heard a voice saying the vessel was theirs. Dirk saw Joy, who warned not to trust the figure because it took her mum. A dwarf voice warned that the party's tormentors were coming. Dothral had a vision of his grandfather saying the figure would take his place and telling Geldrin to remove the skull from the dome, then saying "They are all lost" in a voice that was not his. Dirk asked the ancestors what would happen if they let her out and received a positive response. +The party asked what would happen if Valentinhide were reformed and why everyone thought Eliana was a Hartwall. Morgana heard a voice saying the vessel was theirs. Dirk saw Joy, who warned not to trust the figure because it took her mum. A dwarf voice warned that the party's tormentors were coming. Dothral had a vision of his grandfather saying the figure would take his place and telling Geldrin to remove the skull from the dome, then saying "They are all lost" in a voice that was not his. Dirk asked the ancestors what would happen if they let her out and received a positive response. -The room darkened when Invar said "original." Darkness closed in, stars appeared, and Morgana's Daylight revealed clouds and sunrise at the edge of the spell. A shadowy figure appeared on the far wall. The party opened the dome and let her out. When asked why everyone thought Eliana was a Hartwall, she answered, "Because you are." Stoven, Stuart, and Simon arrived, shouting about their stuff being disturbed. Simon was strangely pieced together. They disliked Valententhide and wanted her, but the party refused and argued that their bargain to find Rubyeye had not been fulfilled. Simon communicated with Throngore, who was happy to meet the party and would see them soon. Morgana teleported the party to `[coded]`, a wood with bees, apples, and snow, with a teleport circle made of furs, rugs, and bird poo. Geldrin felt as if he had made it, though not as he would make it; Morgana thought she had placed the memory there but not from her current self. The party went to Morgana's hut at 00:00. Page 257 then starts Day 52, so Day 48 is complete at that point. +The room darkened when Invar said "original." Darkness closed in, stars appeared, and Morgana's Daylight revealed clouds and sunrise at the edge of the spell. A shadowy figure appeared on the far wall. The party opened the dome and let her out. When asked why everyone thought Eliana was a Hartwall, she answered, "Because you are." Stoven, Stuart, and Simon arrived, shouting about their stuff being disturbed. Simon was strangely pieced together. They disliked Valentinhide and wanted her, but the party refused and argued that their bargain to find Rubyeye had not been fulfilled. Simon communicated with Throngore, who was happy to meet the party and would see them soon. Morgana teleported the party to `[coded]`, a wood with bees, apples, and snow, with a teleport circle made of furs, rugs, and bird poo. Geldrin felt as if he had made it, though not as he would make it; Morgana thought she had placed the memory there but not from her current self. The party went to Morgana's hut at 00:00. Page 257 then starts Day 52, so Day 48 is complete at that point. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Ennuyé, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Cardonald, Eliana Hartwall, Ingus, Spindl, Pride, the dwarf High Priest, Ennuyé, Coalmont Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. +People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Ennuyé, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadul, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Cardonald, Eliana Hartwall, Ingus, Spindl, Pride, the dwarf High Priest, Ennuyé, Coalmont Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valentinhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. Groups and factions mentioned include the party, Dunnen people, goliaths, merfolk, dragonborn, Duhg guards, Verdigrim's people, Verdigrimtown, Ashkielion's goliath claimants, the council in camp, dwarves, the dwarf council, herfolk babies, elemental spirits, ancient race, Grand Towers elves, black dragonborn or Umberous's faction, Infestus's side, two dwarf clans, thirty dwarves who captured Throngore, handless and footless preserved dwarves, gods, elemental-plane powers, tormentors, and another party that helped release prisoners. Places mentioned include Azureside, blue-sky passageways, the capital, cave-network entrances, the main cliff entrance, hidden patrol entrances under shrub / behind rock / poison door / ground, the Dunnen people's camp, Ashkielion, Verdigrimtown, the dragonborn tunnels and Dunnen-style throne room, the goliath council tent, the huge underground dwarven city, the lava-orb chamber, Grand Towers, Salanar's prison, the seaside of the world, the Barrier, snowy mountain and great stone sky fort, the scared dwarven prison room, Throngore's possible prison under Lewshis and Aneurascarle, the circular dwarf statue chamber, the thirty-dwarf sarcophagus chamber, Ennuyé's lab, medical school, Provista, the magic school headmaster's office, elemental planes as highway, Morgana's `[coded]` teleport circle, and Morgana's hut. -Creatures and creature-like beings mentioned include a squirrel, magpie, floppy bronze lizard, metallic brass dragon, manticore, invisible enemies, white raiding forces, earth elementals, tiny creature from Invar's box, lava elemental orb or prisoner, void elemental, black dragonborn / Umberous, featureless dome figure / lost part of Valententhide, gods, shadowy figure, and preserved mutilated dwarves. +Creatures and creature-like beings mentioned include a squirrel, magpie, floppy bronze lizard, metallic brass dragon, manticore, invisible enemies, white raiding forces, earth elementals, tiny creature from Invar's box, lava elemental orb or prisoner, void elemental, black dragonborn / Umberous, featureless dome figure / lost part of Valentinhide, gods, shadowy figure, and preserved mutilated dwarves. # Items, Rewards, and Resources @@ -84,7 +84,7 @@ Bynx's statements that Eliana was not always green and sometimes reminds him of The possible god-deal to wipe Eliana from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Ennuyé, Joy, Hannah, and Eliana's Hartwall identity. -The Dunnen people's uncovered texts, Benu's convalescence, the prophecy of the child's return, and the question of accepting Garadwal as old protector made flesh anew remain active political and religious threads. +The Dunnen people's uncovered texts, Benu's convalescence, the prophecy of the child's return, and the question of accepting Garadul as old protector made flesh anew remain active political and religious threads. Verdigrim's bargain, his claim to Verdigrimtown, the status of Ashkielion, the five white raiding forces, and his desire to meet his mother remain unresolved diplomatic leverage. @@ -98,14 +98,14 @@ The void elemental released by killing Pride absorbed its brother, may have abso Throngore's possible prison beneath Lewshis and Aneurascarle, the thirty dwarves, the missing crystal, Samuel, Struct, and the glass-dust / diamond-resurrection clue remain unresolved. -The featureless dome figure, uncertainly Aglue? / Anemie? / Valententhide, claimed to be a lost part of Valententhide placed there by Thomas after he took what was there. Its true identity and Thomas's role remain unresolved. +The featureless dome figure, uncertainly Aglue? / Anemie? / Valentinhide, claimed to be a lost part of Valentinhide placed there by Thomas after he took what was there. Its true identity and Thomas's role remain unresolved. The Vessel of Divinity, elemental planes as highway, pacts that created the world, lostness stripped from gods, and the figure's warning that it cannot be allowed to keep the vessel are major cosmology clues. -Joy's warning that the figure took her mum conflicts with the ancestors' positive response to freeing it. The consequence of freeing this lost part of Valententhide remains uncertain. +Joy's warning that the figure took her mum conflicts with the ancestors' positive response to freeing it. The consequence of freeing this lost part of Valentinhide remains uncertain. The answer "Because you are" to why everyone thinks Eliana is a Hartwall is a direct but unexplained identity confirmation. -Simon, Stoven, and Stuart still want Valententhide. Simon communicated with Throngore, who promised to meet the party soon. +Simon, Stoven, and Stuart still want Valentinhide. Simon communicated with Throngore, who promised to meet the party soon. Morgana's `[coded]` teleport circle and the uncertain memories of Geldrin and Morgana suggest memory manipulation or alternate-self involvement. diff --git a/data/4-days-cleaned/day-52.md b/data/4-days-cleaned/day-52.md index 5e2e854..b0519dd 100644 --- a/data/4-days-cleaned/day-52.md +++ b/data/4-days-cleaned/day-52.md @@ -16,9 +16,9 @@ complete: true Day 52 began at Stonedown. Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. A memory showed dragons talking about a beehive being poked and why the dome had been created. Questions arose about Eliana fully regaining memories of being a Hartwall. Recovering what was lost would not be easy, because the memories aligned with broader memories tied to the pact with the god of the lost. Dothral saw snippets of Eliana's true form and the need to do something with the J. -The notes state that a price was paid by dragonkind, and it was not taken well by those who remained and still had power. Payment was not asked for because the party had not given her to the goats. The party asked whether looking at the night sky and feeling serene was part of Valententhide. The answer suggested it was. Reuniting that part with her would not completely change Valententhide, but would soften her edges, making her a goddess of destruction again rather than a being who mindlessly murdered people on the road. +The notes state that a price was paid by dragonkind, and it was not taken well by those who remained and still had power. Payment was not asked for because the party had not given her to the goats. The party asked whether looking at the night sky and feeling serene was part of Valentinhide. The answer suggested it was. Reuniting that part with her would not completely change Valentinhide, but would soften her edges, making her a goddess of destruction again rather than a being who mindlessly murdered people on the road. -The party understood the released or protected piece as a small shard of a powerful creature. They asked whether destroying the dome would cancel all pacts. The answer was yes: the pacts were linked to the dome, and if the dome ceased, the pacts would cease. Removing the dome would also release all of the prisons. Geldrin tried to show the shard her sister Bridget by communing with Bridget and opening a pathway to her domain. The party decided they needed to protect the shard, because Valententhide might be able to get her. They discussed an oath of holding elemental and dome energy, and promised to release her regardless. +The party understood the released or protected piece as a small shard of a powerful creature. They asked whether destroying the dome would cancel all pacts. The answer was yes: the pacts were linked to the dome, and if the dome ceased, the pacts would cease. Removing the dome would also release all of the prisons. Geldrin tried to show the shard her sister Bridget by communing with Bridget and opening a pathway to her domain. The party decided they needed to protect the shard, because Valentinhide might be able to get her. They discussed an oath of holding elemental and dome energy, and promised to release her regardless. The party entered the pathway. The walkway stopped partway and turned left, but each member went a different way: Invar forward, Geldrin right, Dotharl left, Eliana up, Dirk down, and Morgana behind. After ten minutes they lost sight of each other. Wind rose and they struck walls. The walls appeared linked in pairs: Invar with Morgana, Geldrin with Dotharl, and Dirk with Eliana. @@ -36,7 +36,7 @@ Medinner told Dotharl the party needed to go soon and stepped off the edge. An o The party appeared back where they had started, with a door behind them. Beyond it was darker sky and no platform, with a bouncy-castle feeling underfoot. They realised they could move by intent. Invar and Dotharl sped toward a storm; Dirk decided to move where they needed to go; Eliana went to Dirk; Geldrin went to Invar and Dotharl. Dotharl heard a voice in his head saying he had abandoned them, left them behind, and that mortals were inferior. The voice said he could set Dotharl free if Dotharl asked him to be set free. -Dirk imagined a cloud tent house and Bridget on a throne, and the images merged with other imaginations. Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. Bridget wished to be honoured a second time. She said the gods had agreed not to interfere unless asked, but some kin had interfered greatly. Her kin was trapped and wished to be freed, perhaps Dotharl's granddad. Part of Dotharl was Bridget. The notes separate Dotharl's dad being trapped, his granddad being lost, and Squeall. Bridget liked freedom and trickery. Her husband liked lucky fortune, weather, change, and loss. Whatever her followers needed, she could get within reason. +Dirk imagined a cloud tent house and Bridget on a throne, and the images merged with other imaginations. Bridget would take the gold Valentinhide, smash the orb, and release her to Bridget. Bridget wished to be honoured a second time. She said the gods had agreed not to interfere unless asked, but some kin had interfered greatly. Her kin was trapped and wished to be freed, perhaps Dotharl's granddad. Part of Dotharl was Bridget. The notes separate Dotharl's dad being trapped, his granddad being lost, and Squeall. Bridget liked freedom and trickery. Her husband liked lucky fortune, weather, change, and loss. Whatever her followers needed, she could get within reason. The party's questions included whether the trapped being was in Snowsoreen, the order city, or trapped in the dome as order from all the chaos outside it. Bridget said there were many paths and nothing was written in stone. The party had chosen to be constrained to the walkway, though they could have walked off, because of fear of the unknown. Bridget named choices for each party member. Eliana could keep the identity they had now or the one they once had. Dotharl could keep his humanity or rejoin Bridget's realm. Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. Invar, a man of faith who was only beginning to learn it, needed to give him a crystal, the one Geldrin lost, and use it if they returned to his city. Dirk was on the path to free his people; more steps and friends would be needed, not only spirits, and he should not forget the fishing expedition. Morgana's choice to help the party carried great cost, and those who sought to train her also came at great cost. @@ -44,21 +44,21 @@ Page 263 then starts Day 53, so Day 52 is complete before the party goes onward # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dothral / Dotharl, Dothral's father, Aneurascarle, Squeall, Valententhide, Bridget, Geldrin, Invar, Eliana, Dirk, Morgana, Medinner, Cedric, Avalina, Dotharl's granddad, Bridget's husband, Brownings, and Eliana's former and current identities. +People and name-like figures mentioned include Dothral / Dotharl, Dothral's father, Aneurascarle, Squeall, Valentinhide, Bridget, Geldrin, Invar, Eliana, Dirk, Morgana, Medinner, Cedric, Avalina, Dotharl's granddad, Bridget's husband, Brownings, and Eliana's former and current identities. Groups and factions mentioned include the party, dragons, dragonkind, goats, gods, Bridget's kin, Bridget's followers, silver dragonborn in Medinner's show, mortals, Brownings, Dirk's spirits and people, and those who seek to train Morgana. Places mentioned include Stonedown, the dome, the night sky, the prisons, the elemental planes by implication from the shard's protection, Bridget's domain, the pathway and linked wall rooms, Invar's cricket/raven/gruel room, Dotharl's raven-headed lady room, Medinner's show space, the chessboard space, the darker-sky realm, the storm, the imagined cloud tent / throne, Snowsoreen, the order city, Dotharl's or Invar's city by instruction, and Dirk's future fishing expedition. -Creatures and creature-like beings mentioned include Valententhide as goddess or powerful being, the small shard of a powerful creature, cricket-headed humanoid / Cedric, bird person, raven, cricket, raven-headed lady, Medinner, silver dragonborn performers, woman covered in roots, robot man / copper dragonborn in plates, Bridget, Bridget's trapped kin, and the voice trying to tempt Dotharl. +Creatures and creature-like beings mentioned include Valentinhide as goddess or powerful being, the small shard of a powerful creature, cricket-headed humanoid / Cedric, bird person, raven, cricket, raven-headed lady, Medinner, silver dragonborn performers, woman covered in roots, robot man / copper dragonborn in plates, Bridget, Bridget's trapped kin, and the voice trying to tempt Dotharl. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the dome, pacts linked to the dome, prisons linked to the dome, broom, oath or holding-elemental protection, dome energy, pathway to Bridget, screwdriver, red crystal and divot, curved blade, button, cricket cage, raven cage, steaming bowl of gruel, playing cards, bowl, dice, magic poker setup, twenty cricket/raven gold coins, chessboard lights, orbs, `[unclear: geesie?]`, scythe, orb present from Bridget, gold Valententhide, the crystal Geldrin lost, and the fishing expedition reminder. +Items, documents, and physical resources mentioned include the dome, pacts linked to the dome, prisons linked to the dome, broom, oath or holding-elemental protection, dome energy, pathway to Bridget, screwdriver, red crystal and divot, curved blade, button, cricket cage, raven cage, steaming bowl of gruel, playing cards, bowl, dice, magic poker setup, twenty cricket/raven gold coins, chessboard lights, orbs, `[unclear: geesie?]`, scythe, orb present from Bridget, gold Valentinhide, the crystal Geldrin lost, and the fishing expedition reminder. Spells, visions, and magical effects mentioned include memory retrieval about being Hartwall, true-form snippets, opening a pathway to Bridget's domain, Knock, magically linked rooms / walls, Bridget making a door for Morgana, Medinner's reenactment show, movement by intent in Bridget's realm, telepathic or intrusive voice to Dotharl, Bridget's ability to take and smash the orb, and divinely framed choices for party members. -Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridget's offer to take gold Valententhide, the trapped kin's requested freedom, Dotharl's humanity choice, Eliana's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. +Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridget's offer to take gold Valentinhide, the trapped kin's requested freedom, Dotharl's humanity choice, Eliana's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. # Clues, Mysteries, and Open Threads @@ -68,7 +68,7 @@ The pact with the god of the lost appears tied to Eliana's lost Hartwall memorie Dragonkind paid a price for the dome or related pact, and the remaining dragons still have power. The exact price and consequences remain unresolved. -The serene night-sky part of Valententhide can soften her into a goddess of destruction rather than a mindless road-murdering force, but what full reunification would cause remains uncertain. +The serene night-sky part of Valentinhide can soften her into a goddess of destruction rather than a mindless road-murdering force, but what full reunification would cause remains uncertain. Destroying the dome would cancel pacts and release all prisons, creating a direct strategic conflict between freeing prisoners and maintaining existing world-order bargains. diff --git a/data/4-days-cleaned/day-53.md b/data/4-days-cleaned/day-53.md index 8274ffe..823e5ce 100644 --- a/data/4-days-cleaned/day-53.md +++ b/data/4-days-cleaned/day-53.md @@ -19,7 +19,7 @@ Bridget asked where the party wanted to go, and they chose the dwarf city by Pap The party entered a council chamber where the High Priest King, General, Advocate, Ambassador, and Guild Mistress sat around a table. Anya Blakedurn, the Guild Mistress and Infestus' daughter, came from the renowned Blakedurn family, had purple eyes, and represented the party before the council. She questioned them about dragons, dragonborn, automatons, and gnomes. Rubyeye was known as a liar, possibly affected by Wrath. Blakedurn wanted more information in exchange for representing them. Geldrin told her that Perodita was trying to get back into the dome through the city. -Other council figures arrived or were identified: Ambassador Grunged Thundersinger, who also wanted to speak privately and offer things; Advocate Trinchel Rhinebeard, who spoke for minorities; General Tussil Pebblegrinder; and High Priest King Calthid Metalshaper. Calthid was unhappy that the party had brought or introduced Garadwal's armour, believing they had summoned a creature of darkness. Blakedurn said that had not been the party. +Other council figures arrived or were identified: Ambassador Grunged Thundersinger, who also wanted to speak privately and offer things; Advocate Trinchel Rhinebeard, who spoke for minorities; General Tussil Pebblegrinder; and High Priest King Calthid Metalshaper. Calthid was unhappy that the party had brought or introduced Garadul's armour, believing they had summoned a creature of darkness. Blakedurn said that had not been the party. The council would not discuss why Rubyeye had been imprisoned, but named his crimes as treason, responsibility for the death of the princess, and demon pacts condemning souls to death. Perodita was treated as the pressing emergency, though the party remained under investigation. The Advocate wished to contact his kin. The party agreed to fight Perodita, and the General went to gather the army. @@ -35,7 +35,7 @@ At 12:00 the army moved. Morgana flew ahead to notify the town. The party noted # People, Factions, and Places Mentioned -People and name-like figures mentioned include Bridget, Invar, Eliana / Eliana Hartwall, Papa Illmarne, the High Priest King, Anya Blakedurn, Rubyeye, Wrath, Perodita, Geldrin, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Calthid Metalshaper, Garadwal, Thamia, Noxia, Icefang, Papa / Papa's Dome, Dirk, Morgana, the promoted Quartermaster, Tendruts, and the lone dwarf / llamia. +People and name-like figures mentioned include Bridget, Invar, Eliana / Eliana Hartwall, Papa Illmarne, the High Priest King, Anya Blakedurn, Rubyeye, Wrath, Perodita, Geldrin, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Calthid Metalshaper, Garadul, Thamia, Noxia, Icefang, Papa / Papa's Dome, Dirk, Morgana, the promoted Quartermaster, Tendruts, and the lone dwarf / llamia. Groups and factions mentioned include the party, Bridget's domain and kin, dwarves, the Dwarven kingdoms, the council, Blakedurn's family, guilds, dragonborn, automatons, gnomes, black dragons, green dragons, blue dragons, goliaths, ratmen, ebony dwarves, the army, and city envoys. @@ -43,7 +43,7 @@ Places mentioned include Bridget's domain, the dwarf city, Papa Illmarne's dome # Items, Rewards, and Resources -Items and resources mentioned include Garadwal's armour, Rubyeye's prison history, demon pacts, the ear-bug check, Blakedurn's Rubyeye-summoning device from her father, the hole in Papa's Dome, pylons needed to repair the dome, poor army supplies, wagons, Greater Restoration and Lesser Restoration, and the city convoy. +Items and resources mentioned include Garadul's armour, Rubyeye's prison history, demon pacts, the ear-bug check, Blakedurn's Rubyeye-summoning device from her father, the hole in Papa's Dome, pylons needed to repair the dome, poor army supplies, wagons, Greater Restoration and Lesser Restoration, and the city convoy. Strategic resources and obligations include Blakedurn's bargain to help defeat Perodita in exchange for restoring the Dwarven kingdoms, the need to recover Rubyeye for Blakedurn, the army of 1,017 soldiers, the restored Quartermaster and General, and Morgana's reconnaissance of the city. diff --git a/data/4-days-cleaned/day-55.md b/data/4-days-cleaned/day-55.md index b692a4d..9db7264 100644 --- a/data/4-days-cleaned/day-55.md +++ b/data/4-days-cleaned/day-55.md @@ -22,7 +22,7 @@ Invar remembered that Blackthorn had not been allowed to free his friend because Geldrin asked Bridget whether Perodita was still travelling. A sleepy cockroach appeared and said Perodita was asleep, that she had not rested well because she was in pain and could not fix it. The dwarves stayed at Grimcrag to recover. Perodita was about thirteen hours away, depending on her sleep. The party used the rift blade to teleport to Magstein and went to find the High Priest at Papa Marmaru. Guards tried to stop them, but when Invar and Geldrin got through, the High Priest called off the guards, who stopped as one in an odd manner. -The High Priest was no longer the High Priest, but one of the gods: Merocole. Greater Restoration revealed a large smoke sphere with spidery legs and a human-like face that wanted Papa Marmaru. Invar offered Papa Marmaru his goblet. Papa Marmaru asked whether Invar wanted this to happen and, in a raspy voice, warned not to trust Merocole. Marmaru had chosen to be there and looked after the dwarves, so he should be left to it. The party searched for explosives. +The High Priest was no longer the High Priest, but one of the gods: Mericok. Greater Restoration revealed a large smoke sphere with spidery legs and a human-like face that wanted Papa Marmaru. Invar offered Papa Marmaru his goblet. Papa Marmaru asked whether Invar wanted this to happen and, in a raspy voice, warned not to trust Mericok. Marmaru had chosen to be there and looked after the dwarves, so he should be left to it. The party searched for explosives. The party prepared a trap in two small passages where Perodita would need to pull in her wings. Explosives were arranged to crush her midpoint, with Wall of Force to stop her moving forward. The party made a hide, blasted holes in the ceiling, set an alarm in the second choke point, and used Pass without Trace. After twenty-seven hours the alarm went off. Forty-five minutes later, echoes grew louder, and Perodita stumbled and crashed into a wall. She saw the hide, realised something was wrong, and attacked before the party could run away, catching them with her breath weapon. The party trapped her in the tunnel and killed her with Walls of Fire. @@ -32,7 +32,7 @@ The party went to the Crusty Beard to rest at 23:00. The town was mostly quiet, # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dotharl, the green-eyed woman in the dream, her friend, her brother, Envy?, Morgana, No-Hurt, Invar, Perodita, Blackthorn, Bridget, Wrath, Infestus, Geldrin, the High Priest, Merocole, Papa Marmaru, Noxia, and the faceplate guards. +People and name-like figures mentioned include Dotharl, the green-eyed woman in the dream, her friend, her brother, Envy?, Morgana, No-Hurt, Invar, Perodita, Blackthorn, Bridget, Wrath, Infestus, Geldrin, the High Priest, Mericok, Papa Marmaru, Noxia, and the faceplate guards. Groups and factions mentioned include the party, the dwarven army, llamia, ratmen, green dragons / Perodita's children, city occupiers, dwarves at Grimcrag, gods, and Magstein townsfolk. @@ -52,7 +52,7 @@ No-Hurt has spread everywhere and killed things, but its full nature and relatio Wrath's claim that the basilisk could teleport the party to Infestus, his conflict with green dragons, and his offer of memories remain active leverage. -Merocole's possession or replacement of the High Priest, the smoke sphere with spidery legs, and Papa Marmaru's warning not to trust Merocole are major divine/dwarven corruption clues. +Mericok's possession or replacement of the High Priest, the smoke sphere with spidery legs, and Papa Marmaru's warning not to trust Mericok are major divine/dwarven corruption clues. Perodita's Noxia essence, old unhealed wounds, and the tower-blood experiment suggest Perodita was being used, sustained, or modified by Noxia-linked magic. diff --git a/data/4-days-cleaned/day-56.md b/data/4-days-cleaned/day-56.md index 8298e0c..64d4abd 100644 --- a/data/4-days-cleaned/day-56.md +++ b/data/4-days-cleaned/day-56.md @@ -18,19 +18,19 @@ complete: true Day 56 began at the Crusty Beard in Magstein. The party had Temporary Wisdom -2. At 11:00, they went to an abandoned house to teleport to the Grand Towers control room. During the teleport, Geldrin entered a dreamlike state and saw an elf face say, "I'm foolish. I should have known this was going to happen... Never mind." The teleport destination was extravagant compared with other teleport rooms they had visited, with elaborate tapestries that felt out of place. The door had been trapped, but someone had disarmed it within the last five to ten minutes. -Dotharl saw Valententhide reflected in Invar's armour. The party left the room and found many doors and two possible guards. A tapestry showed five wizards and an invisible lady who was invisible in the painting too. She looked like Hannah Joy. Dotharl could not see her because he did not know who she was, or because he knew she existed. A creature said she was new. The party were expected. There were twenty-seven such beings, all part of Humility, and they had disarmed the traps. In a spherical room with four doors, an elf stood in the middle: the same elf Geldrin had seen while teleporting. The Humility fragments currently controlled the control room but were not using it; they had taken it for the party. They were all parts of Thomas, removed so he could become Envy, and could not be fully recombined without the large weak part because many parts had died. They thanked the party for freeing him from the cart on the dwarf bridge and led them to the control room. +Dotharl saw Valentinhide reflected in Invar's armour. The party left the room and found many doors and two possible guards. A tapestry showed five wizards and an invisible lady who was invisible in the painting too. She looked like Hannah Joy. Dotharl could not see her because he did not know who she was, or because he knew she existed. A creature said she was new. The party were expected. There were twenty-seven such beings, all part of Humility, and they had disarmed the traps. In a spherical room with four doors, an elf stood in the middle: the same elf Geldrin had seen while teleporting. The Humility fragments currently controlled the control room but were not using it; they had taken it for the party. They were all parts of Thomas, removed so he could become Envy, and could not be fully recombined without the large weak part because many parts had died. They thanked the party for freeing him from the cart on the dwarf bridge and led them to the control room. -The control room was guarded by two automatons and held eight statues. Salana's runes were intact. Garadwal and Valententhide's runes were unlit, while the rest flickered. Monks meandered through the room. Dotharl looked at the Valententhide statue, thought he saw only a statue, and was attacked by it. Geldrin investigated and took damage. Runes lit up around the statue saying, "leave here." Merocole had a tiny dwarf face carved into his mouth. Geldrin fixed the prison runes and closed them all except possibly `[unclear: Keakis?]`, where his fixing mark carried over and worked. Two creatures brought a small box as a present. Inside was a black shard. They called it the elemental of Void and wanted the party to put him where he belonged. Eliana brought a gift: the Frost pole ball, with a desire to switch out the frost elementals. The party suspected Browning was running events there. Dotharl interfered with the symbols on Aneurascarle's prison. +The control room was guarded by two automatons and held eight statues. Salana's runes were intact. Garadul and Valentinhide's runes were unlit, while the rest flickered. Monks meandered through the room. Dotharl looked at the Valentinhide statue, thought he saw only a statue, and was attacked by it. Geldrin investigated and took damage. Runes lit up around the statue saying, "leave here." Mericok had a tiny dwarf face carved into his mouth. Geldrin fixed the prison runes and closed them all except possibly `[unclear: Keakis?]`, where his fixing mark carried over and worked. Two creatures brought a small box as a present. Inside was a black shard. They called it the elemental of Void and wanted the party to put him where he belonged. Eliana brought a gift: the Frost pole ball, with a desire to switch out the frost elementals. The party suspected Browning was running events there. Dotharl interfered with the symbols on Aneurascarle's prison. -Bynx told Dirk his brothers were coming and to close the door. His brothers are Trixus, Benu, and Garadwal, all children of Attabre. When Eliana shut it, purple bears appeared. Four Juticars came through tears: Scumbleduck, the rubber-eye figure, a silver dragonborn, and another. A robot Juticar addressed "Justicar Geldrin," saying Geldrin seemed to have forgotten his mission and that the party were not as compliant as they should be. Geldrin had been obeying orders until the worm was removed; everything up to that point had happened as foretold, and the Juticars believed he had been compromised. They spoke of chaotic tendencies visible in the prognostic machine. +Bynx told Dirk his brothers were coming and to close the door. His brothers are Trixus, Benu, and Garadul, all children of Attabre. When Eliana shut it, purple bears appeared. Four Juticars came through tears: Scumbleduck, the rubber-eye figure, a silver dragonborn, and another. A robot Juticar addressed "Justicar Geldrin," saying Geldrin seemed to have forgotten his mission and that the party were not as compliant as they should be. Geldrin had been obeying orders until the worm was removed; everything up to that point had happened as foretold, and the Juticars believed he had been compromised. They spoke of chaotic tendencies visible in the prognostic machine. The wizards altered the map, saying they were preparing for fuel incoming. The map appeared recently reconfigured for another purpose. They activated the table, and a giant bearded head, Browning, appeared above it chanting. The party countered the spell, but Browning finished with, "and the flight of the gold ends." A dragonborn, elf, and dwarf teleported away, leaving a gnome behind. She refused to speak until Morgana dispelled magic and she recovered. She was a treasure hunter from Great Farnworth, remembered a voyage across the sea, did not know the year, and remembered place details both before and after the dome. A device nearby was a remote to activate a shield, with no apparent way to reverse it, and it should not be far from the party. -The replacements thought Eliana had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Hartwall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers: Trixus, Benu, and Garadwal. +The replacements thought Eliana had stopped Valentinhide and Garadul from tricking the statues. The notes record, "I thought my daughters would like it? Mama Hartwall??" The table had been a trap. The prisons looked the same except Valentinhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers: Trixus, Benu, and Garadul. -The party explored nearby rooms. One dusty room held a circle in the middle that looked dragged toward the door and taken to the teleport circle. Another held an old man sleeping. Dirk found a box under his pillow. A dormitory lay opposite, and another bedroom held books on alloys, travel, and botany. Dirk searched under another pillow and found a thorny brush or briar; Morgana kept it. The box put Geldrin and Morgana to sleep. The mage woke thinking it was 3740 AC and that Dirk looked like a Thrunglagen. He searched for his spellbook, which was found in his room. He was Humorous, an old Rivermeet headmaster. The party opened the teleport-room door and found a Barrier trapping Trixus, Benu, Garadwal, and Bynx. Temporary Wisdom was removed. +The party explored nearby rooms. One dusty room held a circle in the middle that looked dragged toward the door and taken to the teleport circle. Another held an old man sleeping. Dirk found a box under his pillow. A dormitory lay opposite, and another bedroom held books on alloys, travel, and botany. Dirk searched under another pillow and found a thorny brush or briar; Morgana kept it. The box put Geldrin and Morgana to sleep. The mage woke thinking it was 3740 AC and that Dirk looked like a Thrunglagen. He searched for his spellbook, which was found in his room. He was Humorous, an old Rivermeet headmaster. The party opened the teleport-room door and found a Barrier trapping Trixus, Benu, Garadul, and Bynx. Temporary Wisdom was removed. -Benu said they had news and had reunited in the dire hour. Plans had been thwarted, and things came to light after speaking with his father. Garadwal's mind was clearer, and he now intended to repay his misdeeds by helping the party. Garadwal's father trusted the party after they brought his children back together. The wizards who sought godhood all sought to live forever. Envy sought too much power, and it corrupted him. The generator was not only protective; it also made them more powerful and was an experiment. Something ancient may have helped, giving the ability to remove emotions. Benu said the dome should be brought down, though the fate of bad elementals remained a problem. Garadwal had asked months earlier to bring it down and now asked the same for different reasons: a part of him enjoyed the bad part and had grown lazy with it. Hartwall was part of his downfall, and Argentum died defending his people. Garadwal's father said the choice was the party's. The wizards were being controlled, and the five wizards could not affect the power sources. The party decided Browning needed to die and considered whether the wizards should be brought back to help. +Benu said they had news and had reunited in the dire hour. Plans had been thwarted, and things came to light after speaking with his father. Garadul's mind was clearer, and he now intended to repay his misdeeds by helping the party. Garadul's father trusted the party after they brought his children back together. The wizards who sought godhood all sought to live forever. Envy sought too much power, and it corrupted him. The generator was not only protective; it also made them more powerful and was an experiment. Something ancient may have helped, giving the ability to remove emotions. Benu said the dome should be brought down, though the fate of bad elementals remained a problem. Garadul had asked months earlier to bring it down and now asked the same for different reasons: a part of him enjoyed the bad part and had grown lazy with it. Hartwall was part of his downfall, and Argentum died defending his people. Garadul's father said the choice was the party's. The wizards were being controlled, and the five wizards could not affect the power sources. The party decided Browning needed to die and considered whether the wizards should be brought back to help. Dirk asked his ancestors whether the party could defeat Browning as they were. Instead of seeing the ancestors, he saw sickly, elongated, groaning elves. Browning's ritual to become a god takes one thousand years and could have completed thirteen years earlier if Soul had not crashed into the tower. The dome drains the party like it drains the elementals, though it is noticeable only near the edges. Browning had a plan to increase his power by obtaining a great amount of crystal. Scumbledunk betrayed the party and teleported away after overhearing their discussion. The party considered next steps. Some went to Riversmeet with Bynx while others went to Emercurine to help Hartwall. In the Headmaster's office, they used Rubyeye's eye and Dotharl, through the death of Hracency, to locate Rubyeye and Cardinal. Cardinal appeared inside a Brass dome on a beach with air elementals around her, in Brass City. Rubyeye appeared floating through dwarven stone corridors in an endless loop, far airwise. A dragon war was underway back in Humorous, with Emeraldous causing trouble and Ember remembered. Humorous was about three hundred years old. The party tried to contact Fairlight Hartwall, but Windows could not find him. @@ -40,17 +40,17 @@ Infestus wanted to pay the party for their good deeds and what they had done for # People, Factions, and Places Mentioned -People and name-like figures mentioned include Geldrin, Dotharl, Valententhide, Invar, Hannah Joy, Humility, Thomas, Envy, Salana, Garadwal, Merocole, `[unclear: Keakis?]`, Aneurascarle, Bynx, Dirk, Scumbleduck / Scumbledunk, Browning, Morgana, the gnome treasure hunter, Mama Hartwall, Humorous, Trixus, Benu, Argentum, Soul, Rubyeye, Cardinal, Hracency, Emeraldous, Ember, Fairlight Hartwall, Windows, Infestus, `[uncertain: Antherous?]`, Bluescale, Jeroll, Wrath, and Hartwall. +People and name-like figures mentioned include Geldrin, Dotharl, Valentinhide, Invar, Hannah Joy, Humility, Thomas, Envy, Salana, Garadul, Mericok, `[unclear: Keakis?]`, Aneurascarle, Bynx, Dirk, Scumbleduck / Scumbledunk, Browning, Morgana, the gnome treasure hunter, Mama Hartwall, Humorous, Trixus, Benu, Argentum, Soul, Rubyeye, Cardinal, Hracency, Emeraldous, Ember, Fairlight Hartwall, Windows, Infestus, `[uncertain: Antherous?]`, Bluescale, Jeroll, Wrath, and Hartwall. Groups and factions mentioned include the party, Grand Towers wizards, Humility fragments, monks, automatons, Juticars, Browning-controlled wizards, sphynx brothers, Rivermeet headmasters, bad elementals, controlled wizards, five wizards, dragons, red dragons / dragonborn, Bluescale, and Infestus's people. Places mentioned include Magstein, the Grand Towers control room, the elaborate teleport room, the spherical Humility room, the prison-control room, the teleport circle, Rivermeet, the Barrier, Riversmeet, Emercurine, the Headmaster's office, Brass City, the Brass dome, Humorous, the plateau with purple sky, Bluescale, the market-square archway, Infestus's city, the museum, Keep Rememberence, and the Great Infestus pub. -Creatures and creature-like beings mentioned include the invisible lady like Hannah Joy, Humility fragments, the Valententhide statue, the elemental of Void, frost elementals, purple bears, Juticars, a giant Browning head, sickly elongated elves, air elementals, and red dragonborn. +Creatures and creature-like beings mentioned include the invisible lady like Hannah Joy, Humility fragments, the Valentinhide statue, the elemental of Void, frost elementals, purple bears, Juticars, a giant Browning head, sickly elongated elves, air elementals, and red dragonborn. # Items, Rewards, and Resources -Items and resources mentioned include the Grand Towers teleport route, elaborate tapestries, traps, eight statues, Salana's runes, Garadwal and Valententhide's runes, runes reading "leave here," a small black shard / elemental of Void, Frost pole ball, prison symbols, prognostic machine, reconfigured map, control-room table, shield remote, thorny brush / briar, spellbook, Barrier, Rubyeye's eye, Dotharl's connection through Hracency's death, piece of coal for travel to Infestus, Bluescale archway runes, museum curiosity from Keep Rememberence, Jeroll's ode, charged shield crystal, and 1,000 gp offered by Ember. +Items and resources mentioned include the Grand Towers teleport route, elaborate tapestries, traps, eight statues, Salana's runes, Garadul and Valentinhide's runes, runes reading "leave here," a small black shard / elemental of Void, Frost pole ball, prison symbols, prognostic machine, reconfigured map, control-room table, shield remote, thorny brush / briar, spellbook, Barrier, Rubyeye's eye, Dotharl's connection through Hracency's death, piece of coal for travel to Infestus, Bluescale archway runes, museum curiosity from Keep Rememberence, Jeroll's ode, charged shield crystal, and 1,000 gp offered by Ember. Strategic resources and plans include repairing or closing prison runes, possibly switching frost elementals, stopping Browning, deciding whether to bring down the dome, considering whether to restore wizards, locating Rubyeye and Cardinal, freeing Cardinal in Brass City through Infestus, bargaining under Bluescale rules, and possible deals with Infestus or Ember. @@ -58,7 +58,7 @@ Strategic resources and plans include repairing or closing prison runes, possibl The twenty-seven Humility fragments are parts of Thomas removed so he could become Envy. They cannot be fully recombined without a large weak part, and many parts have died. -The Grand Towers control room has active prison infrastructure: Salana's runes intact, Garadwal and Valententhide unlit, others flickering, Merocole altered, and Valententhide showing an Atlabre symbol when deactivated. +The Grand Towers control room has active prison infrastructure: Salana's runes intact, Garadul and Valentinhide unlit, others flickering, Mericok altered, and Valentinhide showing an Atlabre symbol when deactivated. The black shard called the elemental of Void and the Frost pole ball may be intended replacements in the prison or elemental system, but using them remains unresolved. @@ -66,11 +66,11 @@ The Juticars' claim that Geldrin was previously obedient until the worm was remo Browning's interrupted spell still ended with "the flight of the gold ends," and his godhood ritual may be close to completion after nearly one thousand years. -Dome activation may have captured Bynx's sphynx brothers, Trixus, Benu, and Garadwal, making the dome's creation or reactivation directly tied to sphynx imprisonment. +Dome activation may have captured Bynx's sphynx brothers, Trixus, Benu, and Garadul, making the dome's creation or reactivation directly tied to sphynx imprisonment. Humorous waking in 3740 AC, remembering before and after the dome, and having been an old Rivermeet headmaster adds another displaced witness to pre-dome history. -Benu, Garadwal, and Garadwal's father now urge bringing down the dome, but the release of bad elementals and the fate of prisons remain unresolved. +Benu, Garadul, and Garadul's father now urge bringing down the dome, but the release of bad elementals and the fate of prisons remain unresolved. Scumbledunk betrayed the party and escaped with knowledge of their discussion about Browning. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index 663ea32..fc87b79 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -42,7 +42,7 @@ complete: true # Narrative -Day 57 began in the Black Dragon City in the Underblame. At 08:00, the notes expected a council of all towns or states for a treaty to be signed. Infestus could ensure Salinas caused no issues, agreed to get the party to the Brass City, and offered scrolls, a charged shield crystal, and respite in his city. The party bought a newspaper whose only recorded items were that someone had been executed for not paying a bar tab, a Pegaus farm note, and nothing else interesting. +Day 57 began in the Black Dragon City in the Underblame. At 08:00, the notes expected a council of all towns or states for a treaty to be signed. Infestus could ensure Salinus caused no issues, agreed to get the party to the Brass City, and offered scrolls, a charged shield crystal, and respite in his city. The party bought a newspaper whose only recorded items were that someone had been executed for not paying a bar tab, a Pegaus farm note, and nothing else interesting. Infestus's wife was waiting for them. She gave the party a powerful shield crystal and scrolls, smashed an orb, and produced a tiny human. After chanting, she turned the tiny human into a blue dragon. The dragon carried the party to just outside the Brass City, and they walked in. Two diplomats greeted them, one with smoke-skin type scales and a cobra head under his hood. They said "The People" now ruled the city. The Excellence of Air had left and never returned. Inside the walls the city was lush, relaxed, and did not seem enslaved. The Glowscale were excited and intrigued to see the party. The diplomats said elf wizards caused many issues, the old masters had enslaved the labour, and their friend Valenth was best sought at the citadel, still under the old regime, or at the Gaol. @@ -50,7 +50,7 @@ The party learned that many former slaves had repaired and maintained the city w Dirk spoke to a fountain. The water wanted to go somewhere but was doing an important job because its father had told it to. It referred to Hydran before being given to the blue dragons, said the dragons went bad, said its father liked the merfolk but was annoyed by the purple thing, and wanted the party to fix the babies not going to him. If they sorted that out, the water promised to be on their side when the end came. -At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a sun, a thick-set dwarf, and a slender woman with a bow, and a depiction of Garadwal speaking with the Dunnen people. There was no evidence of a fire elemental living there. Statues lined the corridor facing the wall. One turned statue bore text like "runs in the streams" and possibly "high mountainness?" Another "slays foes bravely." A tabaxi with scales, missing one back leg and ears, was described as "fur of night scales of the sky," first princess of the union, and was slightly cracked. The sword had been made but perhaps the person had not, suggesting a Medusa-type spell. Other statues and objects involved weighted idols, jewellery, gravity and weight, the Lord of the Brass City, a necklace partly carved from a statue, something that hummed and "lungs," "Gleams in the first light," possible high priests of Goklhar, a fine-dressed figure with a book and rose, a brazier, and "Lies in the morning dew," prophet of the light. When a coin was placed in an orbiting spot, Ignan said, "We are close once more. I will help you say his name when you pick him up." +At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a sun, a thick-set dwarf, and a slender woman with a bow, and a depiction of Garadul speaking with the Dunnen people. There was no evidence of a fire elemental living there. Statues lined the corridor facing the wall. One turned statue bore text like "runs in the streams" and possibly "high mountainness?" Another "slays foes bravely." A tabaxi with scales, missing one back leg and ears, was described as "fur of night scales of the sky," first princess of the union, and was slightly cracked. The sword had been made but perhaps the person had not, suggesting a Medusa-type spell. Other statues and objects involved weighted idols, jewellery, gravity and weight, the Lord of the Brass City, a necklace partly carved from a statue, something that hummed and "lungs," "Gleams in the first light," possible high priests of Goklhar, a fine-dressed figure with a book and rose, a brazier, and "Lies in the morning dew," prophet of the light. When a coin was placed in an orbiting spot, Ignan said, "We are close once more. I will help you say his name when you pick him up." The party picked up the cat. Geldrin said "There," and the cat became Haze as a big dog, who had come to aid them in their travels and was still due to their service to his mistress. Haze warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. Haze remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. Haze stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that Haze called a control room controlling multiple planes at once. The sword was in the Earth plane with Tremon's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. @@ -94,7 +94,7 @@ The tapestry led to a lively past version of Brass City full of blue dragonborn The party chose the Light realm. Bynx lowered the chandelier and took them through to an exact replica room with a platinum throne and doors to each realm, including Attabone and Igraine. Through Igraine's door lay a flat, vast field of buttercups and daisies where Morgana had often been. She spoke with plants. It may have been an afterlife area; many people had once been there, but not for ages. A ladybird said the cat was there and gave a clue: Morgana needed to channel her power, seek more of them, and talk and play with them. Morgana located the cat about a day away, connected through animals and birds, and brought it back. Haze said it smelled like the needed item but seemed too easy. The cat was alive, or not certain; then it was dead. Morgana asked the bird to teach her this again, and it agreed. She named it Bruce. -The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but Eliana could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from Eliana's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. Leadus' father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. +The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but Eliana could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from Eliana's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. Leedus' father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. Attabre said Eliana's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. Eliana was not only Icefang's daughter but Attabre's too. Eliana was killed because they got in the way, being more strong-willed; Lady Elissa Hartwall accepted the spells, but Eliana did not, so they killed Eliana. Icefang got Lady Elissa Hartwall out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. @@ -114,7 +114,7 @@ The party found an empty house and relaxed. Dirk felt someone scrying on him. Ou # People, Factions, and Places Mentioned -People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydran / Lord Hydran, Trixus, Garadwal, Dunnen people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Facets that Gleam in the Sun, Geldrin, There, Sierra, Browning, Bob, Bosh, Tremon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydran, Eliana Hartwall, Bleakstorm, Bynx, Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. +People and name-like figures mentioned include Infestus, Infestus's wife, Salinus, Valenth, Excellence of Air, Envy, Dirk, Hydran / Lord Hydran, Trixus, Garadul, Dunnen people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Facets that Gleam in the Sun, Geldrin, There, Sierra, Browning, Bob, Bosh, Tremon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydran, Eliana Hartwall, Bleakstorm, Bynx, Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. @@ -126,7 +126,7 @@ Creatures and creature-like beings mentioned include the orb-made blue dragon, s Items and resources mentioned include scrolls, a powerful charged shield crystal, the newspaper, Infestus's wife's smashed orb, shield-crystal body / focusing crystal, the four great minarets, planar fountains, the citadel statues, a cracked sword, weighted idols, jewellery, a carved necklace, the rose and book statue, brazier, orbiting coin, Trixus-carved door, plane-control throne room, coal, silver dragon object like Mama Hartwall, jagged granite, shield crystal piece of Tremon, wet coal water, Scroll of Fireball, needle and bloodied thread, Rubyeye eye-removal vision, rings, Seward marble, five altar candles, ten gold wizard-race statues, blue ball held by Mama Hartwall, silver scale, moon crystal, tiny arm bone, black thread, the baby box from Everchard, sword in the box, Founder's Day poster dated 17th March 991, sending stone, ice auroch sculpture, the Council statue sword, "Drinker beads of wine" necklace, five-minute hourglass, fake necklaces, checklist box, school biggening juice, whirlpool/tropical/icy/calm lake paintings, wooden offering bowl, white rose / Rose of Reincarnation, sea conch, raven and other birds, mother-of-pearl and coral sphynx throne, shell room, porcelain salt dragon, quartz Salanus-like dragon, storage death paintings, Eroll mechanical bird, offering bowl in a glass case, rawhide-inlaid door, tabaxi prayer to Igraine, roots on plinths, bloodied knife, nine condensation-covered water-baby globes / pokeballs, shells and pearls worth about 500 gp, scorpion-symbol chains, barnacle door, watchful starfish, parchment contract to save babies' spirits, carvings of Envi, living-flame prince, Morgana and Igraine, Noxia wounded by an arrow, fire-realm tongs, Azar Nuri's turban, imp's deck of cards and turban, 15A, rope, tin of white paint, `[uncertain: Stolchar]` refined goblet, thread, lectern, bowl, stick, candlestick, quiver, leather armour, bow, animal skin, incense/candle wall hanging, past-Brass tapestry, glass beads from Brass City, skirt scrap, missing Bynx book page, chandelier, platinum throne, Attabre's book from Geldrin, Haze fragment put into Errol, fifteen wailing black coins, prison keys, bell, live-tabaxi tail restoration, Queen Mooncoral's sending stone, and ring of fire resistance. -Strategic resources and plans include the expected treaty council, Infestus's support and restraint of Salinas, Brass City access, restoring the Council statues by returning their objects or body parts, There's guidance, Bob and Bosh's possible uncursing later, using planar/memory rooms to recover the sword, necklace, bowl, tongs, cat, light/cat, and tail, fixing Tremon's shield-crystal body, freeing water elemental babies / merbabies from the realm of darkness, Hydran's Pact offer, possible godly gifts before the next realm, Attabre's warning about death in that realm, the choice to bring down the dome, weakening Throngore by bringing down the dome, Kasha's pact pressure over Guardwell's soul, Throngore's demand to free a prisoner and not let Air retake his throne, the priestess guiding the party to Cardonald, and Queen Mooncoral's merfolk support. +Strategic resources and plans include the expected treaty council, Infestus's support and restraint of Salinus, Brass City access, restoring the Council statues by returning their objects or body parts, There's guidance, Bob and Bosh's possible uncursing later, using planar/memory rooms to recover the sword, necklace, bowl, tongs, cat, light/cat, and tail, fixing Tremon's shield-crystal body, freeing water elemental babies / merbabies from the realm of darkness, Hydran's Pact offer, possible godly gifts before the next realm, Attabre's warning about death in that realm, the choice to bring down the dome, weakening Throngore by bringing down the dome, Kasha's pact pressure over Guardwell's soul, Throngore's demand to free a prisoner and not let Air retake his throne, the priestess guiding the party to Cardonald, and Queen Mooncoral's merfolk support. # Clues, Mysteries, and Open Threads @@ -136,7 +136,7 @@ The fountain water elemental / Hydran thread links blue dragons, merfolk, a purp The Council statues were cursed around 2034 AP / approximately 3480, the same time the coins were smelted and when the tabaxi were ousted from the Brass. Returning their objects or body pieces restored at least one live tabaxi king; the full Council roster and consequences remain unresolved. -Haze says the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place. This links the dome, Air, Sierra, and Browning's replacement plan but does not fully explain who Sierra is or how the trap works. +Haze says the Excellence of Air went to the dome to make a trap for Sierra, the Goddess of the Hunt, so Browning could take her place. Haze is one of Sierra's dogs. This links the dome, Air, Sierra, and Browning's replacement plan, but the trap's mechanism remains unclear. Tremon's body is incomplete and spread across planes or memories. Geldrin restored a shard to the moon/Brass City body, Envi has Tremon's arm, and the party restored the tail at the end of the day. diff --git a/data/5-retrospective/day-01.txt b/data/5-retrospective/day-01.txt index 8efd9d3..067d540 100644 --- a/data/5-retrospective/day-01.txt +++ b/data/5-retrospective/day-01.txt @@ -7,5 +7,5 @@ Later notes on page 9 establish that Everchard had visiting tourists, cider brew Source: data/2-pages/9.txt Retrospective Context: day-01 -Later notes on page 39 establish that Guardwel/Garadwal is imprisoned in the Prison of the Sands, that Brutor Ruby Eye called him the only void they could find, and that the wizards agreed Garadwal needed to be contained because his escape would weaken the barrier through the loss of one of the eight. This clarifies the Day 1 Terror of the Sands reference while preserving the original uncertain spelling. +Later notes on page 39 establish that Guardwel/Garadul is imprisoned in the Prison of the Sands, that Brutor Ruby Eye called him the only void they could find, and that the wizards agreed Garadul needed to be contained because his escape would weaken the barrier through the loss of one of the eight. This clarifies the Day 1 Terror of the Sands reference while preserving the original uncertain spelling. Source: data/2-pages/39.txt diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 14ae6e8..8791301 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -42,7 +42,7 @@ sources: # Aliases and Variant Spellings -- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Garadwel, Garaduel [uncertain automaton spelling], Guradwal, Gardwell, Terror of the Sands, nightmare of the darkness. +- [Garadul](people/garadul.md): Garadul, Garadwal, Guardwel, Garadwel, Garaduel, Gardwel, Gardwal, Gardolwal, Guradwal, Gardwell, Terror of the Sands, nightmare of the darkness. - [Everchard](places/everchard.md): Everchard. - [Seaward](places/seaward.md): Seaward. - [Fairshaw](places/fairshaw.md): Fairshaw, Fairshaws. @@ -80,6 +80,9 @@ sources: - [Baytail Accord](places/baytail-accord.md): Baytail Accord, Baylen Accord [uncertain note variant], Baylain Accord [uncertain note variant]. - [Torisle Point](places/torisle-point.md): Torisle Point, Turisle Point. - [Bug Hunter](people/bug-hunter.md): Bug Hunter. +- [Sierra](people/sierra.md): Sierra, Cierra, Goddess of the Hunt. +- [Haze](people/haze.md): Haze, There, Sierra's dog. +- [Sierra's Arrows](items/sierras-arrows.md): Sierra's arrows, Spear of Sierra, Spears of Sierra, Arrow of Sierra. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent], Brotor / Brutor [context: void gift and Brotor's eye uncertain]. - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. - [Everard Browning](people/everard-browning.md): Everard Browning, Browning, Edward Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. @@ -87,8 +90,8 @@ sources: - [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Ennui, Thomas, The Mage, Visage Ennuyé. - [Envy](people/envy.md): Envy, Lady Envy, removed elven emotion manifestation. - [Pride](people/pride.md): Pride, removed elven emotion manifestation. -- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Matron Cardonald's daughter. Valenthide/Valententhide variants now also have a separate unresolved page. -- [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Matron Cardonald's daughter. Valentinhide variants now also have a separate unresolved page. +- [Valentinhide / Valentenhule](people/valentinhide.md): Valentinhide, Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. - [Anastasia](people/anastasia.md): Anastasia, Anestasia, Goliath queen lady. - [Ingris](people/ingris.md): Ingris, Dirk's sister. @@ -131,8 +134,14 @@ sources: - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md): Grimescale, Gravltooth, Umberous, Spindl, Cedric, Medinner, Squeall / Squeal, Aglue?, Anemie?. - [Anya Blakedurn](people/anya-blakedurn.md): Anya Blakedurn, Blakedurn, Guild Mistress, Infestus' daughter. - [Magstein and Grimcrag](places/magstein-grimcrag.md): Magstein, Grimcrag, Grimcrag bridge, Crusty Beard. +- [Anorazorak](people/anorazorak.md): Anorazorak, unrasorak [uncertain earlier form]. +- [Limusvita](people/limusvita.md): Limusvita, Limus Vita, Limnuvela. +- [Salinus](people/salinus.md): Salinus, Salinas, Salias, salt dragon. +- [Leedus](people/leedus.md): Leedus, Leadus. +- [Mericok](people/mericok.md): Mericok, Merocole. +- [Papa Marmaru](people/papa-marmaru.md): Papa Marmaru, Papa Illmarne, Papa I Meurina. - [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md): Papa Illmarne's dome, Papa's Dome, Papa Illmarne, Papa Marmaru. -- [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Merocole, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Hartwall, Windows, Ember, [uncertain: Antherous?]. +- [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Mericok, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Hartwall, Windows, Ember, [uncertain: Antherous?]. - [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. - [Brass City](places/brass-city.md): Brass City, the Brass, old-regime citadel, Brass City citadel. - [Brass City Council](factions/brass-city-council.md): the Council, Council statues, cursed statues, live tabaxi restored from stone. @@ -150,7 +159,7 @@ sources: - [Dotharl](people/dotharl.md): Dotharl, Dothral, Dothril. - [Lady Elissa Hartwall](people/lady-elissa-hartwall.md): Lady Elissa Hartwall, Lady Hartwall, Hartwall, Elissa, Kaylissa, Kaylara, Lady Eliisa Hartwall. - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md): Lady Evalina Hartwall, Evalina Hartwall, Mama Hartwall, Miana, Avalina. -- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydran, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, Haze, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. +- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinus, Excellence of Air, Envy, Hydran, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Lam](people/lam.md): Lam, god of Lam. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. @@ -175,7 +184,8 @@ sources: - [Void Spheres](items/void-spheres.md): void spheres, orb of void, void orb, eight spheres, Brotor's gift. - [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Stuart / Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Ennuyé / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. - [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. -- [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. +- [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadul's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. - [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. - [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. -- [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md): shell of [uncertain: Tremoon], crystal shell, lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. +- [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md): Skull of Tremon, Tremon's skull, Treamen's skull, Treamon's skull, Tremon's body, shield-crystal body, focusing crystal. +- [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md): lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index a435f57..1accd1f 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -13,7 +13,7 @@ This audit records where each Day 46 mention-section subject was placed in the w |---|---| | Morgana, Dirk, Geldrin, Invar, Eliana, Bosh | Party members; covered through Day 46 cleaned narrative and relevant existing pages where present. | | Willowispa / Willowwispa | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); open threads added. | -| Valententhide / Lord Squall / cold mirror voice | Existing [Valententhide](../people/valententhide.md); Day 46 pathway offer added to [Open Threads](../open-threads.md). | +| Valentinhide / Lord Squall / cold mirror voice | Existing [Valentinhide](../people/valentinhide.md); Day 46 pathway offer added to [Open Threads](../open-threads.md). | | Mr Moreley / Abraxus / Professor Moreley | Existing [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); clarified as the spectral dragon holding the altered Sphinx down. | | Rubyeye / Ruby Eye / Brutor | Updated [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | | Errol | Covered through [Errol the Obsidian Raven](../people/errol.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Open Threads](../open-threads.md), and Day 46 cleaned narrative. | @@ -22,13 +22,13 @@ This audit records where each Day 46 mention-section subject was placed in the w | The Basilisk | Existing [The Basilisk](../people/the-basilisk.md); Day 46 message preserved in cleaned narrative. | | Mother | Existing [The Mother](../people/the-mother.md); Day 46 Willowispa/Mother uncertainty added to [Open Threads](../open-threads.md). | | Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing] | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | -| Garadwal / Groot, Benn, Emeraldus | Updated [Garadwal](../people/garadwal.md); Benn and Emeraldus added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Garadul / Groot, Benn, Emeraldus | Updated [Garadul](../people/garadul.md); Benn and Emeraldus added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Joy | Updated [Joy](../people/joy.md). | -| Kasha / Kashe | Existing deity/pact coverage; Day 46 baby-spirit and Garadwal claims preserved in cleaned narrative and [Open Threads](../open-threads.md). | +| Kasha / Kashe | Existing deity/pact coverage; Day 46 baby-spirit and Garadul claims preserved in cleaned narrative and [Open Threads](../open-threads.md). | | Amoursorate, Dotharl | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md) and linked to [Dotharl](../people/dotharl.md); orb context added to [Void Spheres](../items/void-spheres.md). | | Ennuyé, Browning, Squeal | Existing Rubyeye/Browning context; Squeal added to [Minor Figures from Day 46](../people/minor-figures-day-46.md) and [Open Threads](../open-threads.md). | | Water Excellence | Existing [Excellences](../concepts/excellences.md); Day 46 context preserved in cleaned narrative. | -| Sierra, Lodest, Anastasia | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Sierra, Lodest, Anastasia | Sierra has a standalone page; Lodest and Anastasia vision coverage remains in [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Platinum, Cardonald | Platinum added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); Cardonald covered by existing Cardonald/Rubyeye context and cleaned narrative. | | The Chorus and chorus magpie | Existing [The Chorus](../people/the-chorus.md); magpie added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Longfang, Mercy, [unclear: Typh], Heather | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | @@ -37,9 +37,9 @@ This audit records where each Day 46 mention-section subject was placed in the w | Hartwall, Highgate, Lord Bleakstorm | Existing or rollup coverage; Highgate and Hartwall lab leads added to [Minor Places from Day 46](../places/minor-places-day-46.md) and [Open Threads](../open-threads.md). | | Squid-headed men, human wizards, stock-beast handlers, twins, copper-goliath offspring, fish men, leech creatures, lamias, rats, undead sphinx, tainted dragons, altered original Goliath Sphinx, invisible memory entity | Covered in cleaned narrative; specific named/plot-bearing groups in [Minor Figures from Day 46](../people/minor-figures-day-46.md), [Original Goliath Sphinx](../people/original-goliath-sphinx.md), or [Open Threads](../open-threads.md). | | Riversmeet Menagerie / old mage school and internal rooms | Updated [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); room details in [Minor Places from Day 46](../places/minor-places-day-46.md). | -| Hartwall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | +| Hartwall, Valentinhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | | Coalmount Hills portal | Preserved in cleaned narrative; existing prison/barrier context. | | Dunensend, Tradesmells, Snowsorrow, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pine Springs, Hartwall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | | Salt pot safe, sequence `6/11/10/13/7`, beast ledger, Noxia necklace, relief map, musical lock, Evocation circle, jellyfish brooch, Magic Missile scroll, purple-crystal sword, note `propell`, snowglobe, cakes, potions, Storm Orb, mushroom pieces, Draconic warning, scratched Amoursorate orb, `lost` rug, ruby messages, lost ring, power armour, deputy badges, sending stones, jade resources, hexagon coins, dark grey rose, silver chain with green pendant, mirror | Added to [Minor Items from Day 46](../items/minor-items-day-46.md); Storm Orb and Amoursorate orb also updated in [Void Spheres](../items/void-spheres.md); Ruby messages updated in [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | | Spells, visions, and magical effects | Preserved in cleaned narrative; memory-alteration clarification added to [Original Goliath Sphinx](../people/original-goliath-sphinx.md) and [Open Threads](../open-threads.md). | -| Strategic resources and plans | Preserved in cleaned narrative; Hartwall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | +| Strategic resources and plans | Preserved in cleaned narrative; Hartwall artifact, jade cache, town-hall infiltration, Squeal request, Valentinhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index 8b092f2..f3df3ea 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -12,10 +12,10 @@ sources: | Bynx / sphynx baby / goliath baby / Anadreste | Standalone [Bynx](../people/bynx.md) and [Anadreste](../people/anadreste.md). | | Sunsoreen / Snowsorrow | Standalone [Sunsoreen](../places/sunsoreen.md). | | Sunsoreen Council, Council of Gold, Aurum, Hayhearn, Sophus, Orius, Silent One | Standalone [Sunsoreen Council](../factions/sunsoreen-council.md). | -| Valententhide palace, house, deep-sky domain, wall of faces | Existing [Valententhide](../people/valententhide.md) updated. | +| Valentinhide palace, house, deep-sky domain, wall of faces | Existing [Valentinhide](../people/valentinhide.md) updated. | | Elemental prisons, frost prison, Dorion, Tim, Geoffrey, aurora prisoner, fire rift | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; minor names also in [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Joy / Hannah / Ennuyé sacrifice | Existing [Joy](../people/joy.md) and [Ennuyé](../people/ennuyé.md) updated; Hannah in minor figures and open threads. | -| Garadwal, Argentum, Metatous, Bynx identifying Attabre as his father | Existing [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), and [Attabre](../people/attabre.md) updated. | +| Garadul, Argentum, Metatous, Bynx identifying Attabre as his father | Existing [Garadul](../people/garadul.md), [Bynx](../people/bynx.md), and [Attabre](../people/attabre.md) updated. | | Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Browning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Hartwall lab rooms, Pine Springs, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index 37303cb..006cc75 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -11,7 +11,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Subject or cluster | Coverage outcome | |---|---| -| Infestus, Infestus's wife, Salinas, treaty/council setup, Black Dragon City in the Underblame | Existing [Infestus](../people/infestus.md); added [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | +| Infestus, Infestus's wife, Salinus, treaty/council setup, Black Dragon City in the Underblame | Existing [Infestus](../people/infestus.md); added [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | | Brass City, The People, Glowscale, old masters, slave rebellion, citadel, Gaol, four great minarets, fountains, past Brass City | Added standalone [Brass City](../places/brass-city.md); Gaol/minarets/past spaces also in [Minor Places from Day 57](../places/minor-places-day-57.md). | | Brass City Council, Council statues, tabaxi king, first princess, Gleams in the first light / Firelight, Lies in the morning dew, statue inscriptions | Added [Brass City Council](../factions/brass-city-council.md); inscriptions added to [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Shield-crystal body, focusing crystal, Tremon/Tremon pieces, sword, necklace, bowl, tongs, cat/light-cat, tail | Added [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md); updated [Shield Crystals](../items/shield-crystals.md). | @@ -25,11 +25,11 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Lord Briarthorn, thorn-beard elf, moon trip with Eliana's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | | Eliana and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana](../people/eliana.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre](../people/attabre.md). | | Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | -| Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre](../people/attabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | +| Attabre, Benu, Trixus, Garadul, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre](../people/attabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadul](../people/garadul.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tremon's arm | Updated [Ennuyé](../people/ennuyé.md); added [Envy](../people/envy.md), [Azar Nuri](../people/azar-nuri.md), and [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | -| Haze, Errol/Eroll, Bob, Bosh, Dotharl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Errol the Obsidian Raven](../people/errol.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | +| Haze, Errol/Eroll, Bob, Bosh, Dotharl/Dotharl, Nare, Timon, Whel, party-support figures | Haze has a standalone page as one of [Sierra](../people/sierra.md)'s dogs; other support figures covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Errol the Obsidian Raven](../people/errol.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | | Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | | Craters Edge, Pine Springs, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index 4958d2c..c9ddddf 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -17,7 +17,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Existing Pages Updated or Used -- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Everard Browning](../people/everard-browning.md), [Garadwal](../people/garadwal.md), [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Ennuyé](../people/ennuyé.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). +- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Everard Browning](../people/everard-browning.md), [Garadul](../people/garadul.md), [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Ennuyé](../people/ennuyé.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). ## Rollups Used diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 08a07f4..e5bfedc 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -17,7 +17,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is |---|---| | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | -| Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre](../people/attabre.md). | +| Benu, Garadul / Garadul / Garadul, Trixus / Trixius, Attabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadul](../people/garadul.md), [Trixus](../people/trixus.md), [Attabre](../people/attabre.md). | | Ruby Eye, Envi / Envy, Joy, Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed; [Envy](../people/envy.md) now tracks the removed-emotion manifestation separately from [Ennuyé](../people/ennuyé.md). | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | @@ -34,18 +34,18 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is |---|---| | Riversmeet Menagerie / Mages College at Riversmeet as upcoming memory-spell site | Standalone page created and updated from day 43-44: [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md). | | Papa'e Munera / papa e' mamara / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | -| Garadwal feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadwal banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | +| Garadul feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadul banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | | Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | | Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md), [Ashkellon](../places/ashkellon.md), and open threads. | -| Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadwal's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | -| Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), [Envy](../people/envy.md), [Errol the Obsidian Raven](../people/errol.md), and related standalone pages. | +| Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadul's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | +| Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadul claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), [Envy](../people/envy.md), [Errol the Obsidian Raven](../people/errol.md), and related standalone pages. | ## Day 44 Outcomes | Subject or cluster | Outcome | |---|---| | Riversmeet, Menagerie, old mage school, Ruby Eye's house, school rooms, Air common room, astronomy, old-school time/plane rules | Standalone page: [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md). | -| Valententhide / Valentinheide / Valentenhule, Bright, Hannah, featureless woman, death-rhyme cluster | Standalone unresolved page: [Valententhide / Valentenhule](../people/valententhide.md); [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md) and open threads updated. | +| Valentinhide / Valentinhide / Valentenhule, Bright, Hannah, featureless woman, death-rhyme cluster | Standalone unresolved page: [Valentinhide / Valentenhule](../people/valentinhide.md); [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md) and open threads updated. | | Noxia green liquid / blood, lady of destruction, Noxia-return-to-desert clue | [Noxia](../people/noxia.md), [Minor Items](../items/minor-items-days-42-44.md), inventory, and open threads. | | Void orb, eight spheres, Squall's Belt, Brotor's gift, Aurises, kitchen seasoning lead | Standalone item page: [Void Spheres](../items/void-spheres.md); inventory and clues updated. | | Ruby Eye, Browning / Everard, Icefang / Altith, Joy, Attabre, Grand Towers, Barrier, Bleakstorm | Existing pages updated. | @@ -58,7 +58,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Names | Decision | |---|---| -| Valententhide / Valentenshide / Valentinheide / Valentenhule vs [Valenth Cardonald](../people/valenth-cardonald.md) | Kept separate and cross-linked. Day 44 strongly supports a high-sky / Bright's sister figure distinct from Cardonald, but older notes collide. | +| Valentinhide / Valentinhide / Valentinhide / Valentenhule vs [Valenth Cardonald](../people/valenth-cardonald.md) | Kept separate and cross-linked. Day 44 strongly supports a high-sky / Bright's sister figure distinct from Cardonald, but older notes collide. | | Lute vs [Luth](../people/luth.md) | Not merged; Lute appears in a Ruby Eye cloak vision, while Luth is an existing Dunensend figure. | | Icefang / Altith / Atlih / Ice Fury | Preserved as variants or uncertain related names on [Icefang](../people/icefang.md); not normalized. | | Emri / Emi vs [Ennuyé](../people/ennuyé.md) / [Envy](../people/envy.md) | Existing Ennuyé page updated for Envi; Envy now has a separate removed-emotion page; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | diff --git a/data/6-wiki/clues/days-48-52-coverage-audit.md b/data/6-wiki/clues/days-48-52-coverage-audit.md index 36ff1ba..81ea1d5 100644 --- a/data/6-wiki/clues/days-48-52-coverage-audit.md +++ b/data/6-wiki/clues/days-48-52-coverage-audit.md @@ -18,10 +18,10 @@ This audit accounts for the people, places, factions, items, clues, and open thr | Umberous, Salanar's prison, Sending Stone, favour owed, Infestus secrecy | Rollups [Minor Figures](../people/minor-figures-days-48-52.md), [Minor Places](../places/minor-places-days-48-52.md), [Minor Items](../items/minor-items-days-48-52.md), and [Open Threads](../open-threads.md). | | Void elemental released by killing Pride | Added [Pride](../people/pride.md); existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; open thread added. | | Throngore prison clues, Thunderfut / Trutbrow plaques, Samuel, Struct, thirty dwarves, missing crystal | Rollups and [Elemental Prisons](../concepts/elemental-prisons.md); open thread added. | -| Featureless figure / Aglue? / Anemie? / lost part of Valententhide, Thomas, Vessel of Divinity | Existing [Valententhide](../people/valententhide.md), [Elemental Prisons](../concepts/elemental-prisons.md), and [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) updated; rollups preserve variants. | -| Joy warning, Hannah-style erasure, Eliana Hartwall identity confirmation | Existing [Valententhide](../people/valententhide.md) and [Open Threads](../open-threads.md); Day 48 cleaned narrative preserves details. | +| Featureless figure / Aglue? / Anemie? / lost part of Valentinhide, Thomas, Vessel of Divinity | Existing [Valentinhide](../people/valentinhide.md), [Elemental Prisons](../concepts/elemental-prisons.md), and [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) updated; rollups preserve variants. | +| Joy warning, Hannah-style erasure, Eliana Hartwall identity confirmation | Existing [Valentinhide](../people/valentinhide.md) and [Open Threads](../open-threads.md); Day 48 cleaned narrative preserves details. | | Simon, Stoven, Stuart, Morgana's `[coded]` circle | Rollups and open thread. | -| Benu prophecy, Dunnen people, Garadwal old protector made flesh anew | Cleaned narrative, rollups, [Open Threads](../open-threads.md); existing [Garadwal](../people/garadwal.md) already tracks related protector identity. | +| Benu prophecy, Dunnen people, Garadul old protector made flesh anew | Cleaned narrative, rollups, [Open Threads](../open-threads.md); existing [Garadul](../people/garadul.md) already tracks related protector identity. | | Dothral / Aneurascarle / Squeall family and god-of-lost pact | [Minor Figures](../people/minor-figures-days-48-52.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and open thread. | | Bridget, Bridget's domain, Cedric, Medinner, raven-headed lady, Bridget's husband, honouring puzzles | Existing [Bridget's Doors](../concepts/bridgets-doors.md) updated; figures, places, and items rollups added. | | Dome destruction cancels pacts and releases all prisons | [Elemental Prisons](../concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/days-53-56-coverage-audit.md b/data/6-wiki/clues/days-53-56-coverage-audit.md index 92a2006..81182f5 100644 --- a/data/6-wiki/clues/days-53-56-coverage-audit.md +++ b/data/6-wiki/clues/days-53-56-coverage-audit.md @@ -14,13 +14,13 @@ sources: | --- | --- | | Anya Blakedurn / black dragon / Rubyeye device | Standalone page: [Anya Blakedurn](../people/anya-blakedurn.md). | | Magstein, Grimcrag, bridge, Crusty Beard, dwarven civic collapse | Standalone page: [Magstein and Grimcrag](../places/magstein-grimcrag.md). | -| Papa Illmarne's dome / Papa Marmaru / Merocole | Standalone concept: [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md), with Merocole and Papa Marmaru also in minor figures. | +| Papa Illmarne's dome / Papa Marmaru / Mericok | Standalone concept: [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md), with Mericok and Papa Marmaru also in minor figures. | | Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Quartermaster, Tendruts, llamia, elementals' mother, green-eyed dream woman, No-Hurt, Blackthorn, Humility fragments, Juticars, Humorous, Ember | Rollup: [Minor Figures from Days 53-56](../people/minor-figures-days-53-56.md). | | Bridget's return point, council chamber, Blakedurn's house, convoy battlefield, Perodita passages, Grand Towers side rooms, Bluescale, Great Infestus | Rollup: [Minor Places from Days 53-56](../places/minor-places-days-53-56.md). | -| Garadwal armour, Rubyeye-summoning device, pylons, shield crystal/copper, poison/explosives, basilisk coal, rift blade, Noxia ooze barrel, control-room mechanisms, Rubyeye eye, Bluescale rules, Ember reward | Rollup: [Minor Items from Days 53-56](../items/minor-items-days-53-56.md). | +| Garadul armour, Rubyeye-summoning device, pylons, shield crystal/copper, poison/explosives, basilisk coal, rift blade, Noxia ooze barrel, control-room mechanisms, Rubyeye eye, Bluescale rules, Ember reward | Rollup: [Minor Items from Days 53-56](../items/minor-items-days-53-56.md). | | Peridita / Perodita and Noxia essence | Existing pages updated: [Peridita](../people/peridita.md), [Noxia](../people/noxia.md). | | Grand Towers control room, Browning godhood ritual, Humility / Thomas / Envy, Juticar mission | Existing pages updated: [Grand Towers](../places/grand-towers.md), [Everard Browning](../people/everard-browning.md), [Envy](../people/envy.md), [Removed Elven Emotions](../concepts/removed-elven-emotions.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md). | -| Benu, Garadwal, Trixus, Bynx, sphinx brothers, dome-down choice | Existing pages updated or already covered: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), [Trixus](../people/trixus.md), [Elemental Prisons](../concepts/elemental-prisons.md). | +| Benu, Garadul, Trixus, Bynx, sphinx brothers, dome-down choice | Existing pages updated or already covered: [Benu](../people/benu.md), [Garadul](../people/garadul.md), [Bynx](../people/bynx.md), [Trixus](../people/trixus.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Cardinal, Rubyeye, Infestus, Wrath, Ember, Brass City route | Existing pages updated or linked: [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Infestus](../people/infestus.md), [Wrath](../people/wrath.md), minor figure/place/item rollups. | | Open questions from Days 53-56 | Added to [Open Threads](../open-threads.md). | | Day 57 material from pages 281-315 | Processed separately in [Day 57 Coverage Audit](day-57-coverage-audit.md). | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index d74fcb8..dc0e12c 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -59,16 +59,16 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `Tor Protects` | `data/4-days-cleaned/day-16.md` | Inscription beneath the statue of Tor. | | Five hands making a star | `data/4-days-cleaned/day-16.md` | Pub sign identified as [The Pact](../factions/the-pact.md), where the five wizards used to meet. | | `Drunken Duck` | `data/4-days-cleaned/day-20.md` | Upside-down thieves' cant scratched on the cart padlock with claws like Dirk's; party changed markings to Everchard. | -| `where is he I know you hide him` / `Void!` | `data/4-days-cleaned/day-21.md` | Horrible voice in cold dream, possibly looking for [Garadwal](../people/garadwal.md). | -| Statue of Lan style matching the Statue of Serva | `data/4-days-cleaned/day-32.md` | Lan was an earth god of love, home, and family; the matching statue style may be significant. | +| `where is he I know you hide him` / `Void!` | `data/4-days-cleaned/day-21.md` | Horrible voice in cold dream, possibly looking for [Garadul](../people/garadul.md). | +| Statue of Lan style matching the Statue of [Sierra](../people/sierra.md) | `data/4-days-cleaned/day-32.md` | Lan was an earth god of love, home, and family; Sierra is the Goddess of the Hunt. | | `Patches of night & husband` | `data/4-days-cleaned/day-32.md` | Description or phrase attached to the Baked Mattress barkeep. | | `1600` | `data/4-days-cleaned/day-32.md` | Recorded near Xinqus's cart and [uncertain: pigeon/aracock] without explanation. | -| `Valententide's Betrayal` | `data/4-days-cleaned/day-32.md` | Title of obsidian and bone statue showing a crab claw and talon shielding Throngore over a featherless female. | +| `Valentinhide's Betrayal` | `data/4-days-cleaned/day-32.md` | Title of obsidian and bone statue showing a crab claw and talon shielding Throngore over a featherless female. | | `circling vultures` | `data/4-days-cleaned/day-32.md` | Title of Davina Browning painting where she covered her eyes with hands that had eyes on them. | | Runes of Lauren | `data/4-days-cleaned/day-32.md` | Runes on a shield ring sold for 600 gp to werewolfish [uncertain: Repiteth]. | | Lady Fatrabbit's armour dedication to the god of Lam | `data/4-days-cleaned/day-32.md` | Armour engravings recorded while Lady Fatrabbit escorted the party through the Castle. | | `Don't come to Strong hedge Compromised.` | `data/4-days-cleaned/day-32.md` | The Basilisk warning after Goldenswell refused prison access. | -| `The lord above place in the sky` | `data/4-days-cleaned/day-32.md` | Phrase linked to Ruby Eye skull lore. | +| `The lord above place in the sky` | `data/4-days-cleaned/day-32.md` | Phrase linked to Tremon's skull lore. | | Yellow guards' half-sun tattoo obscured by a waterfall | `data/4-days-cleaned/day-32.md` | Symbol worn by guards in the Goldenswell militia-house operation. | | College of Surgeons symbol | `data/4-days-cleaned/day-35.md` | Geldrin added it to the wagon at Bluemeadows. | | Serenity stone absence | `data/4-days-cleaned/day-35.md` | Bluemeadows militia-like man did not have a serenity stone. | @@ -124,8 +124,8 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `A gift crafted for a friend is the key to it all` | `data/4-days-cleaned/day-42.md` | Stitcher bowl smoke image response showing Ruby Eye and Lute. | | `A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` | `data/4-days-cleaned/day-42.md` | Runes on Trixus's four brass rings. | | `The father wishes freedom for all his children` | `data/4-days-cleaned/day-42.md` | Attabre offering-bowl response after Snowsorrow coin. | -| `In her gaze, End of Days`; `One more glance a death dance`; `one brief look last breath Took`; `In her stare Bones laid bare`; `in her gaze the end of days` | `data/4-days-cleaned/day-43.md` | Valentenshide / Valentenhide death-rhyme cluster from scroll and Benu book. | -| `a family reunited` | `data/4-days-cleaned/day-43.md` | Benu book image of Benu, Trixus, Garadwel, and two sphinxes, one only an outline. | +| `In her gaze, End of Days`; `One more glance a death dance`; `one brief look last breath Took`; `In her stare Bones laid bare`; `in her gaze the end of days` | `data/4-days-cleaned/day-43.md` | Valentinhide / Valentenhide death-rhyme cluster from scroll and Benu book. | +| `a family reunited` | `data/4-days-cleaned/day-43.md` | Benu book image of Benu, Trixus, Garadul, and two sphinxes, one only an outline. | | `Battery is the clue` | `data/4-days-cleaned/day-44.md` | Draconic book for Ruby Eye in Mr Moreley's room. | | `mine felt right here yours is under real` | `data/4-days-cleaned/day-44.md` | Note with alteration / empathy orb. | | `Taken my form give it back` | `data/4-days-cleaned/day-44.md` | Silver dragon / silver-green claw voice connected to Avalina. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index 3ff5f92..c26b0c2 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -6,7 +6,7 @@ aliases: - dome - containment system first_seen: day-01 -last_updated: day-44 +last_updated: user-clarification sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-04.md @@ -50,30 +50,30 @@ The Barrier is the central protective shield, dome, or containment system around - A state charter required sufficient militia near the Barrier. - It was created by five figures including [Ennuyé](../people/ennuyé.md), with [Brutor Ruby Eye](../people/brutor-ruby-eye.md) heavily involved in containment and pylon plans. -- It depends on eight beings or poles; one prison's escape weakens it. +- It depends on eight imprisoned beings: [Valentinhide](../people/valentinhide.md), [Anorazorak](../people/anorazorak.md), [Garadul](../people/garadul.md), [Limusvita](../people/limusvita.md), [Salinus](../people/salinus.md), [Leedus](../people/leedus.md), [Mericok](../people/mericok.md), and [Papa Marmaru](../people/papa-marmaru.md). - Shield pylons and crystals regulate or focus it. - Attacks on it may speed the [Tri-moon Shard](../items/tri-moon-shard.md). - It has been attacked at Everchard, flickered near Seaward, interacted with elemental prisons, and required underwater shield crystal intervention. - Cardonal's laboratory identifies Grand Towers factory/control/meeting levels, multiple labs, prison sites, teleport circles, and pylon-adjacent locations as part of the wider system. -- Enwi's life-force siphoning replicated across prisons and weakened the system, while Valententhide later depleted Barrier energy. -- The Guilt claimed it could reset the control room; Rubyeye described overseer controls separate from the mainframe and double-locked by Valenthide prison and an automaton guard. +- Enwi's life-force siphoning replicated across prisons and weakened the system, while Valentinhide later depleted Barrier energy. +- The Guilt claimed it could reset the control room; Rubyeye described overseer controls separate from the mainframe and double-locked by Valentinhide prison and an automaton guard. - Day 32 records the Tri-moon visible during the day, 16 hours ahead of expected schedule, while the Barrier looked normal and the small chunk was visible. -- Day 32 skull lore says Ruby Eye's skull had influence over the Barrier and could bend it. +- Day 32 skull lore says [Tremon's skull](../items/tremons-body-and-statue-artifacts.md) had influence over the Barrier and could bend it. - Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said [Lady Envy](../people/envy.md)'s sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. - Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Hartwall did not know about. -- Ruby Eye and Wrath both wanted the shell of [uncertain: Tremoon] because it helped people get in and out of the Barrier. +- Ruby Eye and Wrath both wanted the [Skull of Tremon](../items/tremons-body-and-statue-artifacts.md) because it helped people get in and out of the Barrier. - Day 41 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. - Day 42 says the Barrier was weak, that the party could attune to three of Ennuyé's rings, and that a tiny hole became noticeable after Ashkellon blessings gave Goliaths weapons, shields, and healing. - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) said the rings activate in `the Barrier` so Joy cannot leave and that sacrifices kept Joy safe. - [Bleakstorm](../places/bleakstorm.md) warned that trips outside the Barrier could be difficult and could send people back in time at a cost. - Day 43 says the Barrier may have been made for noble and proud reasons but was possibly bad; [Trixus](../people/trixus.md) did not like it, and a spell within the Barrier interfered with memory restoration. -- Day 44 old-school history says [Bright](../people/valententhide.md) does not work linearly in time, old mages used routes through doors and tower tunnels, and the party reached a room above the Air common room on the other side of the Barrier. +- Day 44 old-school history says [Bright](../people/valentinhide.md) does not work linearly in time, old mages used routes through doors and tower tunnels, and the party reached a room above the Air common room on the other side of the Barrier. - Day 46 clarifies that the altered [Original Goliath Sphinx](../people/original-goliath-sphinx.md) was used to alter the memories of everyone inside the Dome. - After the invisible memory entity tied to the altered Sphinx was defeated, memories were restored. ## Timeline -- `day-01`: Garadwal is introduced as one of eight whose escape would weaken the Barrier. +- `day-01`: Garadul is introduced as one of eight whose escape would weaken the Barrier. - `day-05`: Controlled townsfolk and militia attack the Barrier near the observatory. - `day-11`: Wider Barrier crisis reports put major settlements and Justicars on alert. - `day-14`: Elementals describe the Barrier as enslavement and batteries. @@ -83,7 +83,7 @@ The Barrier is the central protective shield, dome, or containment system around - `day-25`: Enwi's siphoning is identified as a replicated weakness across the prison system. - `day-26`: Life-prison damage shows direct risk to the Barrier. - `day-27`: The Guilt offers to reset the control room and fix a prison. -- `day-30`: Salinay is sealed, Barrier energy is depleted, and Valententhide is named as the cause. +- `day-30`: Salinus is sealed, Barrier energy is depleted, and Valentinhide is named as the cause. - `day-32`: The Tri-moon appears in daylight ahead of schedule, daylight shows it as a crystal, and the Barrier seems normal. - `day-35`: The Barrier thickens and pulls while prisoner carts move, and outside-dome accounts describe a sand dome keeping elementals out. - `day-36`: The Barrier's divine bargains, hidden costs, shell-passage tools, and multiple prison/facility interactions become clearer. @@ -108,7 +108,6 @@ The Barrier is the central protective shield, dome, or containment system around - Can the Barrier be repaired without exploiting prisoners? - Must it be dropped to repel the Tri-moon shard? -- What are the eight beings or poles? - Can Grand Towers controls be reset safely while The Guilt, Galatrayer, and the overseer remain uncertain? - Are the Barrier, sand dome, and `Bun` different names for one system or overlapping shields? - Can the divine bargains be renegotiated without worsening infertility, barrier sickness, or prisoner exploitation? diff --git a/data/6-wiki/concepts/bridgets-doors.md b/data/6-wiki/concepts/bridgets-doors.md index 82c3616..8367d12 100644 --- a/data/6-wiki/concepts/bridgets-doors.md +++ b/data/6-wiki/concepts/bridgets-doors.md @@ -26,7 +26,7 @@ Bridget is connected to freedom, luck, gargoyles, trickery, sacred doors, and do - Bellburn goliaths treated doors as sacred to Bridget and believed Bridget freed them from Envy by sending the party from the dome. - A Grand Towers penny placed on Bridget's statue made her eyes glow green, then red, and sent Dirk to Seaward and apparently back to yesterday. - Geldrin's two pennies made Bridget's eyes glow green and yellow, sending the group through a blue-and-white palace-like reception room outside the dome before a later door route returned them to Brookville Springs. -- On Day 52, Geldrin opened a pathway to Bridget's domain so a shard or night-sky part of Valententhide could reach Bridget. +- On Day 52, Geldrin opened a pathway to Bridget's domain so a shard or night-sky part of Valentinhide could reach Bridget. - Bridget's domain used linked rooms, walls, direction choices, honouring puzzles, cards, dice, chessboard movement, and movement by intent. - Bridget's closest followers, Cedric and Medinner, could speak more freely and directly than Bridget. They warned the party to remember Bridget's present and how they honoured her before anger. - Bridget wished to be honoured a second time, liked freedom and trickery, and said some kin had interfered despite gods agreeing not to interfere unless asked. diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index a249727..78b4995 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -33,21 +33,20 @@ sources: ## Summary -The elemental prisons are ancient containment systems that may hold or exploit powerful beings as batteries for the [Barrier](barrier.md). +The elemental prisons are ancient containment systems that imprisoned eight powerful beings as batteries for the [Barrier](barrier.md). ## Known Details - Elementals said the Barrier was enslavement and that oppressors used them as batteries. -- There were said to be eight altogether. -- Possible categories or associated forms include ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt, but this list is uncertain and may exceed eight. -- The [Salt Dragon Prison](../places/salt-dragon-prison.md) contained a salt dragon inside a smaller barrier. -- [Garadwal](../people/garadwal.md), Salias, the salt dragon, and void fragments are connected to this prison network; Garadwal was imprisoned in one of the eight dome prisons after consuming a void elemental. +- The eight beings imprisoned to power the Barrier were [Valentinhide](../people/valentinhide.md), [Anorazorak](../people/anorazorak.md), [Garadul](../people/garadul.md), [Limusvita](../people/limusvita.md), [Salinus](../people/salinus.md), [Leedus](../people/leedus.md), [Mericok](../people/mericok.md), and [Papa Marmaru](../people/papa-marmaru.md). +- The [Salt Dragon Prison](../places/salt-dragon-prison.md) contained Salinus, the salt dragon, inside a smaller barrier. +- Garadul was imprisoned in one of the eight dome prisons after consuming a void elemental. - Quasi-elemental lore distinguishes salt and water, with salt poisoning or polluting water elementals. - Cardonal described seven prisons, five labs, three Grand Towers levels, and teleport-circle codes, with other sites near pylons, a Goldenswell impact site, Riversmeet menagerie, a Goliath city, and missing dwarf and Goliath cities. -- Named or described prisoners and princes include Salinas of salt, Limus Vita/Limnuvela of ooze or life, Iceblus/Iceland of ice, Arasarath, Merocole, Gardwel, Papa I Meurina, and Valententhidle/Valententhide. +- Earlier uncertain names and descriptions for the prisoners included Salinas or Salias of salt, Limus Vita / Limnuvela of ooze or life, Merocole, Papa I Meurina, and Valententhidle / Valententhide; the settled list is now preserved above. - Rubyeye's prison-status readout used an effigy, runes, and prison connections; the Grand Tower control centre and Rubyeye lab wheels could affect prison systems. - Enwi's siphoning of life force from his prison replicated across the prison system and weakened all prisons. -- The life prison was converted into flesh by high-level Carnamancy and siphoned by The Mother; Limnuvela survived by holding the Barrier up. +- The life prison was converted into flesh by high-level Carnamancy and siphoned by The Mother; Limusvita survived by holding the Barrier up. - The Guilt claimed it could reset the control room and fix a prison, and later admitted it accidentally opened a prison while controlling a wizard. - Treamen, the Earth Excellence, was killed and left a jagged purple crystal skull artifact made partly from [uncertain: shield] crystal. - Day 42 Ashkellon prison rooms contained air, light, goat, sphinx, copper-dragon, mirror, and other entities behind barriers, including [Trixus](../people/trixus.md), Steven, Hephestus, and a copper dragon from Snowsorrow. @@ -61,45 +60,44 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Bynx explained that where the pure elemental planes meet, they combine. - Day 48 added a lava elemental orb / prisoner in an underground dwarven city, Rubyeye's charges of elemental spirit entrapment, and Rubyeye's statement that there were six elemental forces all along. - Killing Pride released a void elemental that absorbed its brother, teleported away, and may also have absorbed Pride. -- Day 48's dwarven prison included pylon runes, a key or wheel to open a dome, a featureless lost part of Valententhide, and a claim that elemental planes were a highway used in a world-making pact. +- Day 48's dwarven prison included pylon runes, a key or wheel to open a dome, a featureless lost part of Valentinhide, and a claim that elemental planes were a highway used in a world-making pact. - Day 52 says destroying the dome would cancel all pacts and release all prisons. - Day 54 elementals at the Magstein / Grimcrag bridge were appeased with about 100 coins to `their mother`, adding another unresolved elemental authority or relation. -- Day 55 adds Papa Illmarne's dome and Papa Marmaru / Merocole to the prison network: Papa's Dome had a hole that could not be repaired without pylons, Papa had more freedom and was breaking dwarves, and Merocole appeared as a smoke sphere with spidery legs and a human face. -- Day 56 Grand Towers control-room systems included prison runes, statue states, a black shard claimed to be an elemental of Void, a Frost pole ball for switching frost elementals, and possible dome activation that captured Bynx's sphynx brothers: Trixus, Benu, and Garadwal. The dome also drained the party like elementals, especially near the edges. +- Day 55 adds Papa Illmarne's dome and Papa Marmaru / Mericok to the prison network: Papa's Dome had a hole that could not be repaired without pylons, Papa had more freedom and was breaking dwarves, and Mericok appeared as a smoke sphere with spidery legs and a human face. +- Day 56 Grand Towers control-room systems included prison runes, statue states, a black shard claimed to be an elemental of Void, a Frost pole ball for switching frost elementals, and possible dome activation that captured Bynx's sphynx brothers: Trixus, Benu, and Garadul. The dome also drained the party like elementals, especially near the edges. ## Timeline -- `day-14`: The party learns of elemental battery claims, Garadwal, Salias, and the salt dragon prison. +- `day-14`: The party learns of elemental battery claims, Garadul, Salinus, and the salt dragon prison. - `day-15`: Elementharium/Clementarium explains quasi-elemental categories and salt-water problems. - `day-17`: Leaking elemental prisons are part of the urgent Barrier crisis. - `day-23`: Cardonal's lab reveals the larger prison/lab/Grand Towers network and named prisoners. - `day-25`: Rimewatch identifies Ice prison concerns and Enwi's system-wide siphoning. - `day-26`: The party investigates the Ice prison and life prison, then moves to Baytail Accord. - `day-27`: The Guilt offers to fix a prison and gives an Abyssal-inscribed ring. -- `day-30`: Valententhide, Galatrayer, Salinay, and barrier energy depletion become urgent. +- `day-30`: Valentinhide, Galatrayer, Salinus, and barrier energy depletion become urgent. - `day-31`: Treamen the Earth Excellence dies, leaving a skull artifact. - `day-42`: Ashkellon exposes multiple prison rooms and confirms Trixus, Steven, Hephestus, the copper dragon, and Emri-related soul-part issues. - `day-43`: Trixus is released, Hephestos's soul status is discussed, and the Riversmeet memory-interference spell is located. - `day-44`: Riversmeet school history reveals old emotional-elimination and automation research connected to later prison and Barrier problems. - `day-47`: The party explores frost-prison structures, negotiates with prisoners and door heads, learns more about dome power dependency, and closes the fire elemental rift. -- `day-48`: Rubyeye is arrested for elemental spirit entrapment, a lava orb / prisoner appears, a void elemental escapes after Pride is killed, and a dwarven prison reveals pylon, dome, and Valententhide-lostness clues. +- `day-48`: Rubyeye is arrested for elemental spirit entrapment, a lava orb / prisoner appears, a void elemental escapes after Pride is killed, and a dwarven prison reveals pylon, dome, and Valentinhide-lostness clues. - `day-52`: Bridget-domain revelations state that the dome anchors pacts and that all prisons release if the dome is removed. - `day-54`: Elementals near the bridge accept coins for their mother. -- `day-55`: Papa Illmarne's Dome, Merocole, and Papa Marmaru expand the pylon and prison-control problem. +- `day-55`: Papa Illmarne's Dome, Mericok, and Papa Marmaru expand the pylon and prison-control problem. - `day-56`: Grand Towers control-room runes, Void and frost components, and dome drain show the prison network still active. ## Related Entries - [Barrier](barrier.md) - [Salt Dragon Prison](../places/salt-dragon-prison.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) - [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) - [Cardonald's Desert Laboratory](../places/desert-laboratory.md) - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) ## Open Questions -- Which eight prisoners are real? - Were they imprisoned for danger, exploited for power, or both? - How do sand and void fit the quasi-elemental model? - Why do some sources say eight imprisoned beings while Cardonal lists seven prisons? @@ -112,6 +110,6 @@ The elemental prisons are ancient containment systems that may hold or exploit p - What is the escaped void elemental after absorbing its brother and possibly Pride? - Would releasing all prisons by destroying the dome be liberation, disaster, or both? - Who is the elementals' mother, and why would coins appease her? -- Is Papa Illmarne / Papa Marmaru a prisoner, controller, elemental, or another dome-bound being? +- How do Papa Illmarne's dome and Papa Marmaru's identity relate to the eight-prison system? - What does the black shard elemental of Void contain or release? -- Did dome activation capture Bynx's sphynx brothers, Trixus, Benu, and Garadwal, and can they be released safely? +- Did dome activation capture Bynx's sphynx brothers, Trixus, Benu, and Garadul, and can they be released safely? diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 74cbd61..714eb5b 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -44,14 +44,14 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - Dunensend treated `agents of the excellence` as agents of Infestus. - The Guilt, a prisoner under Grand Towers, claimed it could reset the control room, fix a prison, and later was identified in notes as `an excellence!!`. - Pride was expected to fix a prison but may have opened it instead. -- Excellence beneath the sands protected the vulturemen after Gardwal failed and may have a brother looking for him. +- Excellence beneath the sands protected the vulturemen after Garadul failed and may have a brother looking for him. - The leader of the Brass City was an Excellence killed during the battle with Dunensend forces. - Treamen was identified as the Earth Excellence; his jagged purple crystal skull artifact was recovered. - Day 32 records the party telling Xinquiss that the quilt might be an `excellence` or might be working for one. - A Hartwall auction chariot was linked to an Excellence defeated in the `battle of the unending seas`. - Day 35 council-memory manipulation made rescued prisoners forget that The Guilt was part of the council and distrust him. - A Day 35 side note listed Pride, Lust, greed, wrath, envy, gluttony, and sloth near Lady Envy and dome information; the relationship to Excellences is unresolved. -- Day 36 states The Guilt was an Avatar of Pride, Pride had been eaten by [Garadwal](../people/garadwal.md), Pride was a dark entity who wanted people to be proud, and Pride tried to disable as much as possible before being consumed. +- Day 36 states The Guilt was an Avatar of Pride, Pride had been eaten by [Garadul](../people/garadul.md), Pride was a dark entity who wanted people to be proud, and Pride tried to disable as much as possible before being consumed. - Day 36 introduces [Wrath](../people/wrath.md), who described Wrath, Pride, Envy, and six others as nine little demons of Darkness; whether these are Excellences remains unresolved. - Day 42 identifies [Trixus](../people/trixus.md) as an elemental of light and says Emri was missing soul-parts including guilt and misery, possibly overlapping the sin/emotion taxonomy. - Day 44 old-school history found an alteration orb that overwhelmed Geldrin with empathy and regret, and a note implying another emotion-orb location. @@ -70,7 +70,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - `day-31`: The Brass City leader Excellence and Treamen the Earth Excellence are killed or defeated. - `day-32`: Auction history links a chariot to an Excellence defeated in the `battle of the unending seas`. - `day-35`: Memory grubs erase council members' memories of The Guilt's membership. -- `day-36`: Seneshell explains The Guilt's relationship to Pride, Garadwal's consumption of Pride, and Wrath's nine-demon Darkness framework. +- `day-36`: Seneshell explains The Guilt's relationship to Pride, Garadul's consumption of Pride, and Wrath's nine-demon Darkness framework. ## Related Entries diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index d65d3e2..c411557 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -39,9 +39,9 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Day 42 Ashkellon offering bowls answered offerings to Bridge, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Attabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Attabre's children. - Day 43 Attabre manifested at the Ashkellon shrine, sought atonement and justice, was angry with Benu, and was connected to Goliaths receiving a protector like Trixus. - Day 44 old-school lore described Bright and Valentenhule as elemental-plane queens, Hannah as a priestess of Attabre, and Bynx as the baby Attabre spirit intended for the Goliaths as they became Emeraldus's line. -- Day 48 introduced the Vessel of Divinity: a lost part of Valententhide said it made beings into gods, stripped something away, and left lostness behind. +- Day 48 introduced the Vessel of Divinity: a lost part of Valentinhide said it made beings into gods, stripped something away, and left lostness behind. - Day 52 says the pacts are linked to the dome; if the dome ceases, the pacts cease, and all prisons release. -- Day 55's Papa Marmaru warning and Merocole intrusion show another dome-bound or prison-adjacent being whose consent, corruption, and identity remain uncertain. +- Day 55's Papa Marmaru warning and Mericok intrusion show another dome-bound or prison-adjacent being whose consent, corruption, and identity remain uncertain. - Day 56 says Browning's godhood ritual takes 1,000 years, was delayed when Soul crashed into the tower, and may now be powered by a crystal while the dome drains the party like elementals. - Day 57 Attabre lore says dangerous princes, a father descending to save an imprisoned child, and five others at Ground Towers led to a pact to `rule one, but from afar`. - Day 57 says the gods befriended by the party may offer gifts before the next realm, but choosing will be hard and death there may be final. @@ -55,7 +55,7 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - [Bridget's Doors](bridgets-doors.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) - [Attabre](../people/attabre.md) -- [Valententhide / Valentenhule](../people/valententhide.md) +- [Valentinhide / Valentenhule](../people/valentinhide.md) ## Open Questions diff --git a/data/6-wiki/concepts/papa-illmarnes-dome.md b/data/6-wiki/concepts/papa-illmarnes-dome.md index 63242ef..c3eb1a1 100644 --- a/data/6-wiki/concepts/papa-illmarnes-dome.md +++ b/data/6-wiki/concepts/papa-illmarnes-dome.md @@ -7,7 +7,7 @@ aliases: - Papa Illmarne - Papa Marmaru first_seen: day-53 -last_updated: day-55 +last_updated: user-clarification sources: - data/4-days-cleaned/day-53.md - data/4-days-cleaned/day-55.md @@ -17,7 +17,7 @@ sources: ## Summary -Papa Illmarne's dome, also called Papa's Dome, is a dwarven containment or protection system near Magstein. It has a hole, cannot be repaired without pylons, and appears connected to Papa's increased freedom and the breaking of dwarven society. +Papa Illmarne's dome, also called Papa's Dome, is a dwarven containment or protection system near Magstein tied to [Papa Marmaru](../people/papa-marmaru.md), one of the eight beings imprisoned to power the Barrier. It has a hole, cannot be repaired without pylons, and appears connected to Papa's increased freedom and the breaking of dwarven society. ## Known Details @@ -26,19 +26,20 @@ Papa Illmarne's dome, also called Papa's Dome, is a dwarven containment or prote - The dome had a hole and could not be repaired without pylons. - Papa had more freedom lately and was using it to break the dwarves as they had treated him. - Guards at the dome were too easily persuaded to let the armed party through. -- On `day-55`, the party went to Papa Marmaru while seeking the High Priest. -- The High Priest was no longer the High Priest but Merocole; Greater Restoration revealed a large smoke sphere with spidery legs and a human-like face that wanted Papa Marmaru. -- When Invar offered Papa Marmaru his goblet, Papa Marmaru asked whether Invar wanted this to happen and warned in a raspy voice not to trust Merocole. Marmaru had chosen to be there and looked after the dwarves. +- On `day-55`, the party went to [Papa Marmaru](../people/papa-marmaru.md) while seeking the High Priest. +- The High Priest was no longer the High Priest but [Mericok](../people/mericok.md); Greater Restoration revealed a large smoke sphere with spidery legs and a human-like face that wanted Papa Marmaru. +- When Invar offered Papa Marmaru his goblet, Papa Marmaru asked whether Invar wanted this to happen and warned in a raspy voice not to trust Mericok. Marmaru had chosen to be there and looked after the dwarves. ## Related Entries - [Magstein and Grimcrag](../places/magstein-grimcrag.md) - [Elemental Prisons](elemental-prisons.md) - [Gods' Bargains Behind the Barrier](gods-bargains-behind-the-barrier.md) +- [Papa Marmaru](../people/papa-marmaru.md) +- [Mericok](../people/mericok.md) ## Open Questions -- Is Papa Illmarne the same entity or system as Papa Marmaru, or are the names related through uncertain notes? - What pylons are required to repair the dome? - Why did Papa choose to remain there, and what bargain or abuse lets him break dwarves in return? -- What is Merocole, and why does it want Papa Marmaru? +- What is Mericok, and why does it want Papa Marmaru? diff --git a/data/6-wiki/factions/black-scales.md b/data/6-wiki/factions/black-scales.md index 81b6f34..5ee20f9 100644 --- a/data/6-wiki/factions/black-scales.md +++ b/data/6-wiki/factions/black-scales.md @@ -17,33 +17,33 @@ sources: ## Summary -The Black Scales are mercenaries or a place/faction associated with the black dragon [Infestus](../people/infestus.md) and later with Wrath/Kolin searching for [Garadwal](../people/garadwal.md). +The Black Scales are mercenaries or a place/faction associated with the black dragon [Infestus](../people/infestus.md) and later with Wrath/Kolin searching for [Garadul](../people/garadul.md). ## Known Details - The Basilisk identified the Black Scales as mercenaries working for Infestus. -- Wrath/Kolin, a black dragonborn, would stay beyond the Barrier and asked to search for Garadwal at Black Scale. +- Wrath/Kolin, a black dragonborn, would stay beyond the Barrier and asked to search for Garadul at Black Scale. - The notes preserve uncertainty over whether Black Scale is a place, group, or both. - Merfolk said the city of the Black Scales had a `door` into [unclear], with access requiring a Grand Towers penny. -- Garadwal had reportedly been in Blackscale the day before Baytail Accord and then returned to the dome. -- Blackscale was using the party's kings as servants; its boss liked the Barrier because it kept his head in one place and told Garadwal not to bring the Barrier down. +- Garadul had reportedly been in Blackscale the day before Baytail Accord and then returned to the dome. +- Blackscale was using the party's kings as servants; its boss liked the Barrier because it kept his head in one place and told Garadul not to bring the Barrier down. - TJ Biggins described Blackscales coming to his outside-dome mining town for tributes and then leaving; he also named the greenscale family and the Loose Teeth in the same context. ## Timeline - `day-14`: Black Scales are linked to Infestus. -- `day-21`: Wrath/Kolin links Black Scale to a Garadwal search. +- `day-21`: Wrath/Kolin links Black Scale to a Garadul search. - `day-23`: Merfolk report a Black Scales city door and Grand Towers penny access. -- `day-26`: Blackscale is active around Garadwal, the dome, the party's kings, and the Barrier. +- `day-26`: Blackscale is active around Garadul, the dome, the party's kings, and the Barrier. ## Related Entries - [Infestus](../people/infestus.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) ## Open Questions - Is Black Scale a location, faction, mercenary company, or shorthand for the Black Scales? - What is the Black Scales `door`, and where does it lead? - Who is the boss whose head depends on the Barrier? -- Are the Blackscales collecting tribute outside the dome the same group as the Black Scales tied to Infestus and Garadwal? +- Are the Blackscales collecting tribute outside the dome the same group as the Black Scales tied to Infestus and Garadul? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 0dfee4a..55fd9c8 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -78,13 +78,20 @@ This wiki indexes searchable campaign material extracted from the cleaned day na ## People -- [Garadwal](people/garadwal.md) +- [Garadul](people/garadul.md) - [Brutor Ruby Eye](people/brutor-ruby-eye.md) - [Ennuyé](people/ennuyé.md) - [Joy](people/joy.md) - [Infestus](people/infestus.md) - [Pythus Aleyvarus](people/pythus-aleyvarus.md) - [Valenth Cardonald](people/valenth-cardonald.md) +- [Valentinhide](people/valentinhide.md) +- [Anorazorak](people/anorazorak.md) +- [Limusvita](people/limusvita.md) +- [Salinus](people/salinus.md) +- [Leedus](people/leedus.md) +- [Mericok](people/mericok.md) +- [Papa Marmaru](people/papa-marmaru.md) - [Everard Browning](people/everard-browning.md) - [Silver](people/silver.md) - [The Mother](people/the-mother.md) @@ -107,6 +114,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Tiana/Taina](people/tiana-taina.md) - [The Chorus](people/the-chorus.md) - [Bug Hunter](people/bug-hunter.md) +- [Sierra](people/sierra.md) +- [Haze](people/haze.md) - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) - [Anastasia](people/anastasia.md) @@ -228,6 +237,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Void Spheres](items/void-spheres.md) - [Minor Items from Day 46](items/minor-items-day-46.md) - [Minor Items from Day 47](items/minor-items-day-47.md) +- [Sierra's Arrows](items/sierras-arrows.md) - [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md) - [Minor Items from Days 53-56](items/minor-items-days-53-56.md) - [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index e3031b3..b23f01b 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -46,15 +46,15 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Drown spear +1 returning | party | `day-22` | `data/4-days-cleaned/day-22.md` | Dull-blue spear from the Bug Boss; speaks Aquan. | | Plate of Hydran +1 | party | `day-22` | `data/4-days-cleaned/day-22.md` | Plate mail granting cold resistance. | | Three dispel magic scrolls | Geldrin | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the shield crystal site and went to Geldrin. | -| Brutor Ruby Eye skull | Geldrin / party | `day-32` | `data/4-days-cleaned/day-32.md` | The glowing, humming, vibrating skull was given to Geldrin; attunement produced visions and Barrier-related lore. | +| [Skull of Tremon](../items/tremons-body-and-statue-artifacts.md) | Geldrin / party | `day-32` | `data/4-days-cleaned/day-32.md` | The glowing, humming, vibrating skull was given to Geldrin; attunement produced visions and Barrier-related lore. | | Jin-Loo's ring | party | `day-32` | `data/4-days-cleaned/day-32.md` | Eroll returned with a ring, and Jin-Loo appeared next to the party; the party kept the ring so Jin-Loo could find them again. | | Silver serpent pendant talisman | party | `day-35` | `data/4-days-cleaned/day-35.md` | Found on the snake-bodied boss; magical talisman described as +1 cleric cash rolls [unclear] with Noxia catch spells. | | Bob's shell | party | `day-35` | `data/4-days-cleaned/day-35.md` | Given by Skum when he appeared to rescue Elementarium. | | Snowflake coin | Eliana / party | `day-36` | `data/4-days-cleaned/day-36.md` | Lord Bleakstorm gave a one-use portal coin to Bleakstorm. | | Ennuyé's fifth ring | Dirk | `day-42` | `data/4-days-cleaned/day-42.md` | Given by Anastasia; by 15:00 the party could attune to three of the rings. | -| Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Guradwal picture; later Garadwal's feather functioned as one-person communication. | +| Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Garadul picture; later Garadul's feather functioned as one-person communication. | | Papa'e Munera black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | -| Garadwal's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadwal. | +| Garadul's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadul. | | Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, labs, Grand Towers sites, Dunnendale gate, Arafar mines, Goldenswell impact site, Menagerie, Ashkhellon, and pylons. | | Void orb / sphere | party | `day-44` | `data/4-days-cleaned/day-44.md` | Left after the void entity recognized Brotor's eye and vanished; party needs eight spheres total. | | Powerful charged shield crystal and scrolls | party | `day-57` | `data/4-days-cleaned/day-57.md` | Given by Infestus's wife before Brass City travel; exact scrolls not listed. | @@ -69,7 +69,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Item | Disposition | Day | Source | Notes | |---|---|---|---|---| | 1,000-year-old Grand Tower penny / old coin | donated to church | `day-09` | `data/4-days-cleaned/day-09.md` | Basalik disliked that the party had donated it. | -| Spear of Ciara / arrow of Cierra | taken by temple representative for checking | `day-20` | `data/4-days-cleaned/day-20.md` | Initially taken from the museum division; Huntmaster Thrune said it was actually one of five arrows from Cierra's last battlefield. Final custody is not explicit. | +| [Sierra's arrows](../items/sierras-arrows.md) | taken by temple representative for checking | `day-20` | `data/4-days-cleaned/day-20.md` | Initially taken from the museum division as a spear; Huntmaster Thrune said it was actually one of five arrows from Sierra's last battlefield. Final custody is not explicit. | | Noctus Cairinium Grimoire / creepy skin book | taken by [Pythus Aleyvarus](../people/pythus-aleyvarus.md) | `day-16` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Later seen with Pythus near Salvation. | | Celestial book | taken by Pythus | `day-16` | `data/4-days-cleaned/day-16.md` | Part of the museum treasure division. | | Coin press | given to The Basilisk | `day-17` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Initially selected by the note-writer, then given to The Basilisk. | @@ -108,7 +108,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Mother-of-pearl elemental chariot | `day-22` | `data/4-days-cleaned/day-22.md` | Party took it back, but sale is pending and the chained water elementals' desired outcome is unclear. | | Bangle attached to prisoner cart | `day-35` | `data/4-days-cleaned/day-35.md` | The party used invisibility to attach a bangle to the prisoner cart; exact function is not stated. | | Ear pupae / memory grubs | `day-35` | `data/4-days-cleaned/day-35.md` | Removed from rescued prisoners' ear canals; killing Lady Cole's grub restored memories and ended the watched feeling. | -| Shell of [uncertain: Tremoon] / crystal shell | `day-36` | `data/4-days-cleaned/day-36.md` | Left at Hartwall; Ruby Eye and Wrath wanted it because it helped passage through the Barrier. | +| [Skull of Tremon](../items/tremons-body-and-statue-artifacts.md) | `day-36` | `data/4-days-cleaned/day-36.md` | Left at Hartwall; Ruby Eye and Wrath wanted it because it helped passage through the Barrier. | | Lucky cyclops eye | `day-36` | `data/4-days-cleaned/day-36.md` | Rubbed near The Guilt's dangerous chest but did not go anywhere. | | Dirk's rod for speaking with water elementals | `day-36` | `data/4-days-cleaned/day-36.md` | Used at the river to negotiate help against dragon flames; current custody not restated. | | Black dragon book from Ruby Eye's lab | `day-36` | `data/4-days-cleaned/day-36.md` | Held by skeletal dragon; words spoken from it were not understood. | @@ -120,7 +120,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Three Finger Dune Shwelter's black-feather communication brick | `day-42` | `data/4-days-cleaned/day-42.md` | It flew to other birds; whether the party retained access is unclear. | | Treamon's skull | `day-42`, `day-44` | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-44.md` | Used for meteor strike and to make a new core; charge/cooldown unclear. | | Flesh-crafting wand | `day-42`, `day-43` | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Found in observatory room; Perodita later wanted flesh-crafting wands. Custody and count unclear. | -| Barrier opener / dome opener and barrier tools | `day-43` | `data/4-days-cleaned/day-43.md` | Retrieved from Ashkellon after Trixus/Garadwal confrontation; final holder unclear. | +| Barrier opener / dome opener and barrier tools | `day-43` | `data/4-days-cleaned/day-43.md` | Retrieved from Ashkellon after Trixus/Garadul confrontation; final holder unclear. | | Magical scrolls obtained by Geldrin | `day-43` | `data/4-days-cleaned/day-43.md` | Received just before teleportation to Ashkellion; exact scrolls unclear. | | Geldrin's arcane Draconic teleport/seeing scroll | `day-44` | `data/4-days-cleaned/day-44.md` | Extremely powerful; may reveal where `they` went. | | Alteration / empathy orb | `day-44` | `data/4-days-cleaned/day-44.md` | Geldrin removed it and was overwhelmed with empathy/regret; final custody unclear. | diff --git a/data/6-wiki/items/hartwall-auction-lots.md b/data/6-wiki/items/hartwall-auction-lots.md index ca52705..c47192d 100644 --- a/data/6-wiki/items/hartwall-auction-lots.md +++ b/data/6-wiki/items/hartwall-auction-lots.md @@ -20,7 +20,7 @@ The Hartwall Grand Auction House lots included historical art, magical items, co - Drink lots included 28-year elven booze sold for 20 gp, 100-year-old and older bottles bought by Candelissa Hustlebustle, Smehlebeard whiskey bought by Janet Boulderdew for 270 gp, Crankfruit sold for 400 gp, Blind gale XXX with `physick before imbibing`, and Sereza cherry wine sold for 10 gp. - Coin lots included five Black Dragons, a Grand Towers penny, a golden crown and two silver clappers, dwarven copper coins, unsold electrum, silver pieces associated with gnome great Fummouth, and a Brass City coin. -- Art lots included the talon of soot, a painting of Lord Bleakstorm / Caroline Harthwall(?) / Iceborg / Jayseel details, `Valententide's Betrayal`, Davina Browning's `circling vultures`, love poetry / blessings of Laurel, and a red and blue glass sculpture of Serra. +- Art lots included the talon of soot, a painting of Lord Bleakstorm / Caroline Harthwall(?) / Iceborg / Jayseel details, `Valentinhide's Betrayal`, Davina Browning's `circling vultures`, love poetry / blessings of Laurel, and a red and blue glass sculpture of Serra. - Magical and unusual lots included a moon-cycle pocket watch, green-rim spectacles translating elven to common, the mahogany / Smulty box that made illusionary scenes, Ray of sorting and stirring, elven forest comb of delousing, elven turtle flute carved with mice, smoke hourglass, holy symbol of Noxia, shield ring with runes of Lauren, Firefang, Browning's spell scroll, bracelet of locating, and a mimic mouse trap. - Firefang was an 8/400-year-old longsword in Invar's style with +1D6, 5 spell charges, and Burning Hands; it sold for 2,050 gp. - Browning's spell scroll generated a new random spell every morning at 2:37, was disrupted by Geldrin's Dispel Magic, was valued at 600 gp, and sold for 6,200 gp. @@ -40,4 +40,4 @@ The Hartwall Grand Auction House lots included historical art, magical items, co - Is the Hartwall chariot the same object as the mother-of-pearl elemental chariot from Day 22, or a separate chariot? - What is the `Amle for adult?` lot mentioned before detailed bidding? - Who are the Ravens, jewellery men, emissary, Dally, and Hartwall partner, and what were their agendas? -- What did `battle of the unending seas`, `Valententide's Betrayal`, and the `talon of soot` refer to historically? +- What did `battle of the unending seas`, `Valentinhide's Betrayal`, and the `talon of soot` refer to historically? diff --git a/data/6-wiki/items/minor-items-day-46.md b/data/6-wiki/items/minor-items-day-46.md index 3b1fbad..7069ad2 100644 --- a/data/6-wiki/items/minor-items-day-46.md +++ b/data/6-wiki/items/minor-items-day-46.md @@ -30,4 +30,4 @@ sources: | Sending stones | Used by spies and recovered from `I'm the Drink`; one half was given to the seneschal. | Rollup/status. | | Jade purchases, earrings, staff disguise, and 50,000 gp jade cache | Jade appeared in a 500 gp purchase, Terrance's wife's earrings, Geldrin's bait, and the destroyed boat's cargo. | Party treasury/open thread. | | 80 hexagon coins, dark grey rose, silver chain with green pendant | Loot from Bartholomew / lamia fight. | Party treasury/inventory, custody unclear. | -| Mirror | Used by infiltrators to contact Garrick; later cold female mirror voice offered Valententhide's pathways. | Rollup/open thread. | +| Mirror | Used by infiltrators to contact Garrick; later cold female mirror voice offered Valentinhide's pathways. | Rollup/open thread. | diff --git a/data/6-wiki/items/minor-items-day-47.md b/data/6-wiki/items/minor-items-day-47.md index dfdb67e..5bc07b6 100644 --- a/data/6-wiki/items/minor-items-day-47.md +++ b/data/6-wiki/items/minor-items-day-47.md @@ -22,12 +22,12 @@ sources: | Invisible handle | Found under a dining table loose stone and later used in the handle puzzle. | Rollup. | | Blue object from Throngore vision | Fell after a glowing blue ball vanished; silver dragon said it was done. | Rollup / open thread. | | Trophy plinth list | Names Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, Crown of Thorns, and books. | Rollup / artifact index. | -| Stone arrow and Spear / Arrow of Sierra | Stone arrow found behind plinth plaque; later archway room had Spear / Arrow of Sierra. | Existing [Searu's Arrow](searus-arrow.md) may be related but not merged. | +| Stone arrow and [Sierra's arrows](sierras-arrows.md) | Stone arrow found behind plinth plaque; later archway room had Sierra's arrows. | [Sierra](../people/sierra.md). | | Avalina's diary and Anvil pages | Revealed illness, promises, daughters, forced mate, and Council of Gold marriage pressure. | [Open Threads](../open-threads.md). | | Conch control item | Once-per-day Control Water, song of thrumming, and Conjure Water Elemental; also water-breathing / sea-creature speech / underwater movement details. | Rollup / party resources. | | Elemental ball / ice elemental ball | Used to contain elemental puzzle and later given to fire elemental. | [Elemental Prisons](../concepts/elemental-prisons.md). | | Invisibility cloak with starscapes | Made wearer invisible and showed moving starscapes to others. | Rollup / party resources. | -| `Palace of Valententhide` | Book describing Valententhide's deep-sky palace, crimson domain, wall of faces, and gods-banished loophole. | [Valententhide](../people/valententhide.md). | +| `Palace of Valentinhide` | Book describing Valentinhide's deep-sky palace, crimson domain, wall of faces, and gods-banished loophole. | [Valentinhide](../people/valentinhide.md). | | City-moving scroll | Geldrin held the scroll explaining how Sunsoreen moved to the other side of the earth; Aurum wanted it. | [Sunsoreen](../places/sunsoreen.md). | | TV orb | Showed copper dragon / claw marks and The Shadow's information request; also revealed party surveillance. | Sunsoreen rollup. | | Portal charge | Shared between portals and reset once per day. | Rollup. | diff --git a/data/6-wiki/items/minor-items-day-57.md b/data/6-wiki/items/minor-items-day-57.md index ac7e722..6e74e6a 100644 --- a/data/6-wiki/items/minor-items-day-57.md +++ b/data/6-wiki/items/minor-items-day-57.md @@ -27,7 +27,7 @@ sources: | Rose of Reincarnation | White rose extending reincarnation time from ten days to one thousand years. | [Igraine](../people/igraine.md), [Party Inventory](../inventories/party-inventory.md). | | Sea conch | Released Myriad / Lord of the High Waters. | [Myriad / Lord of the High Waters](../people/myriad-lord-of-the-high-waters.md). | | Porcelain salt dragon and quartz Salanus-like dragon | Dragon objects in water-realm rooms; quartz one shattered and was reassembled. | Rollup. | -| Eroll mechanical bird | Room version and bag version were identical; used later with part of Haze to find the tail. | Rollup. | +| Eroll mechanical bird | Room version and bag version were identical; used later with part of [Haze](../people/haze.md) to find the tail. | [Errol the Obsidian Raven](../people/errol.md). | | Bloodied knife | Display-case item in Noxia-linked rooms. | Rollup. | | Nine water-baby globes / pokeballs | Condensation-covered globes containing water elemental babies; Globule collected them and gave them to Dirk. | [Globule](../people/globule.md). | | Shells, pearls, and scorpion-symbol chains | Loot/symbols from killed jellyfish people, worth about 500 gp. | [Party Treasury](../inventories/party-treasury.md). | diff --git a/data/6-wiki/items/minor-items-days-36-40-41.md b/data/6-wiki/items/minor-items-days-36-40-41.md index 4d3cc02..458ecd3 100644 --- a/data/6-wiki/items/minor-items-days-36-40-41.md +++ b/data/6-wiki/items/minor-items-days-36-40-41.md @@ -15,7 +15,7 @@ sources: | 25 platinum paid to captain; greased palms; Grand Towers pennies | Day-36 payments and offerings. | [Party Treasury](../inventories/party-treasury.md). | | Mage's ring, Newgate's gargoyle, broken Bird, Terry, lucky cyclops eye, teleport circles, obsidian ravens, stealth ravens, sending stone, pulley lift, merfolk lodge | Transport and communication resources. | Inventory/status/open threads. | | The Guilt's dangerous chest and disarm code | Chest like Envy's lab; code exists but not recorded. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | -| Shell of [uncertain: Tremoon] / crystal shell | At Hartwall; desired by Ruby Eye and Wrath for Barrier passage. | [Party Inventory](../inventories/party-inventory.md), open thread. | +| [Skull of Tremon](tremons-body-and-statue-artifacts.md) | At Hartwall; desired by Ruby Eye and Wrath for Barrier passage. | [Party Inventory](../inventories/party-inventory.md), [Tremon's Body and Statue Artifacts](tremons-body-and-statue-artifacts.md). | | Jelly Fish Broach, Scorpion, Snowlee, Jelly Fish, Ant | Bargain trinkets. | [Grand Towers Bargain Trinkets](grand-towers-bargain-trinkets.md). | | Ruby Eye's lab orbs, memory orbs, Gideone chair | Grand Towers vision devices. | [Grand Towers](../places/grand-towers.md). | | Silver dragon statue, Seaward stone maces, inverse hammer | Bellburn / Wrath battle objects. | [Wrath](../people/wrath.md), rollup/open thread. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 59a664b..336642a 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -16,16 +16,16 @@ sources: | Linen basket, dirty soap, new linen, towel pile, dagger in Araks's back | Ashkellon worker-rescue details. | Rollup/status. | | Domain of Pengalis Goliath coin, old tower coins, dragon bone-chip currency, Goliath / Brass City / Dumnen / Snowsorrow currencies | Tower and treasure-hall currencies. | Party Treasury / rollup. | | Offering bowls, tower's penny, nip, Brass City platinum, Lortesh's scale / hair of Nature, cider bottle, note `Badger born in freedom`, cloak in Stitcher's bowl | Goliathified god-statue offerings and responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md), treasury/inventory. | -| Two large feathers with orange and blue feathers and beads | Hidden behind Benu / Guradwal picture; later Garadwal communication used a feather. | Party Inventory; [Garadwal](../people/garadwal.md). | +| Two large feathers with orange and blue feathers and beads | Hidden behind Benu / Garadul picture; later Garadul communication used a feather. | Party Inventory; [Garadul](../people/garadul.md). | | Red and blue crystals, dwarf-and-dragon-head rug, ornate map of Pentacity slates, four ornate swords, four copper pylons, barrier-opening wheels | Ashkellon tower infrastructure and prison items. | [Ashkellon](../places/ashkellon.md), [Elemental Prisons](../concepts/elemental-prisons.md). | -| Treamon's skull, health pipe, Bridge coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadwal/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | +| Treamon's skull, health pipe, Bridge coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadul/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | | Trixus's brass rings | Rings on Trixus's paws with Attabre inscription. | [Trixus](../people/trixus.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Time-detecting device at Bleakstorm | Detected Dirk missing a day. | [Bleakstorm](../places/bleakstorm.md), open thread. | | Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Hartwall / Goldenswell clues. | Rollup/open threads; [Papa'e Munera](../people/papae-munera.md). | | Benu's glowing open book and five Benu books | Drew answers and death warnings; five books in Goldenswell, Snowsorrow, Dumnensend, Freeport, Hartwall. | [Benu](../people/benu.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Hawthorn lost-city books, Ruby Eye biography of Hawthorn, giant bees, winter rose, winter-flowering plants | Dwarven lost-city and Hawthorn botanical resources. | Rollup/open thread. | | Papa'e Munera black orb | Fragment of Papa'e Munera in Invar's box. | [Papa'e Munera](../people/papae-munera.md), inventory. | -| Garadwal's feather, sending stones, magical scrolls, barrier opener / dome opener, barrier tools, Cardonald teleportation circles | Day-43 strategic resources. | Party Inventory / [Garadwal](../people/garadwal.md), [Elemental Prisons](../concepts/elemental-prisons.md). | +| Garadul's feather, sending stones, magical scrolls, barrier opener / dome opener, barrier tools, Cardonald teleportation circles | Day-43 strategic resources. | Party Inventory / [Garadul](../people/garadul.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Hartwall old lab key, Geldrin's arcane Draconic teleport/seeing scroll, fruit and vegetables, wrestler throne cart | Day-44 opening resources. | Inventory/open threads. | | Head teacher necklace, picture chest, sceptre key, alteration/empathy orb, note `mine felt right here yours is under real` | Old school office clues. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md), inventory/open thread. | | Dunnen-style pot and food, ancient dragon scroll, Ruby Eye self-reincarnation spell, student robes, Hammerguard embroidery | Old school social/classroom items. | Rollup; inventory where custody unclear. | diff --git a/data/6-wiki/items/minor-items-days-48-52.md b/data/6-wiki/items/minor-items-days-48-52.md index c101b15..af02daa 100644 --- a/data/6-wiki/items/minor-items-days-48-52.md +++ b/data/6-wiki/items/minor-items-days-48-52.md @@ -11,7 +11,7 @@ sources: | Item or Resource | Day | Notes | Coverage | | --- | --- | --- | --- | | Movable poison weapon | 48 | Familiar poison weapon with alchemical base, breath-weapon qualities, herbs, and scorpion venom; wound healed but would not close. | Rollup. | -| Uncovered prophecy texts | 48 | Dunnen people connected Benu's convalescence, the child's return, and Garadwal's misdeeds. | Rollup / [Garadwal](../people/garadwal.md). | +| Uncovered prophecy texts | 48 | Dunnen people connected Benu's convalescence, the child's return, and Garadul's misdeeds. | Rollup / [Garadul](../people/garadul.md). | | Verdigrim trade terms | 48 | Possible agreement involving Ashkielion, Verdigrimtown, land, payment, and five white raiding forces. | [Verdigrim](../people/verdigrim.md). | | Lava elemental orb | 48 | Humongous lava orb, possibly prisoner, kept safe by dwarf prayers and Invar's offering. | [Elemental Prisons](../concepts/elemental-prisons.md). | | Rubyeye charges | 48 | 174,312 herfolk babies murdered, elemental spirit entrapment, tower construction, ancient-race downfall. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | @@ -34,11 +34,11 @@ sources: | Cards, dice, and magic poker | 52 | Gambling puzzle produced twenty cricket/raven gold coins. | Rollup. | | Orbs, `[unclear: geesie?]`, and scythe | 52 | Puzzle items that opened the floor when pushed together. | Rollup. | | Orb present from Bridget | 52 | To be kept until no longer needed; party warned to remember the gift before anger. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Gold Valententhide | 52 | Bridget would take it, smash the orb, and release her to Bridget. | [Valententhide](../people/valententhide.md). | +| Gold Valentinhide | 52 | Bridget would take it, smash the orb, and release her to Bridget. | [Valentinhide](../people/valentinhide.md). | | Geldrin's lost crystal | 52 | Invar must give it to someone and use it if they return to his city. | Rollup / personal quest. | | Fishing expedition reminder | 52 | Dirk warned not to forget it while freeing his people. | Rollup / personal quest. | ## Open Questions - What is the Orb of Compassion part of, and can lost compassion or other emotions be restored? -- What are the exact rules of the Vessel of Divinity and the `gold Valententhide` orb? +- What are the exact rules of the Vessel of Divinity and the `gold Valentinhide` orb? diff --git a/data/6-wiki/items/minor-items-days-53-56.md b/data/6-wiki/items/minor-items-days-53-56.md index 76789dc..975af74 100644 --- a/data/6-wiki/items/minor-items-days-53-56.md +++ b/data/6-wiki/items/minor-items-days-53-56.md @@ -10,7 +10,7 @@ sources: # Minor Items from Days 53-56 -- Garadwal's armour: object Calthid Metalshaper blamed the party for introducing or giving, believing it summoned darkness. +- Garadul's armour: object Calthid Metalshaper blamed the party for introducing or giving, believing it summoned darkness. - Rubyeye-summoning device: device from Infestus, Anya Blakedurn's father, that took her years to master. - Papa Illmarne pylons: required to repair the hole in Papa's Dome. - Army wagons and supplies: revealed no water, much wine, one day of food, no weapons, no arrows, and no useful supplies. @@ -19,12 +19,12 @@ sources: - Poison barrels and general-purpose explosives: seized from convoy wagons on Day 54. - Coal from The Basilisk: piece of coal at Coalmont Rally that Wrath said could be crushed to teleport to Infestus. - Rift blade: used to teleport to Magstein for the Perodita ambush. -- Papa Marmaru's goblet: offered by Invar during the Merocole / Papa Marmaru encounter. +- Papa Marmaru's goblet: offered by Invar during the Mericok / Papa Marmaru encounter. - Perodita trap materials: explosives, Wall of Force, hide, blasting holes, alarm, Pass without Trace, and Walls of Fire. - Noxia ooze barrel: container holding ooze from Noxia after Perodita's death. - Perodita's belly-scale coins: varied coins of different types and ages totalling 7,000 gp. - Faceplate guard armour: distinctive armour worn by intimidating Magstein guards at the Crusty Beard. -- Grand Towers prison runes and statues: Salana intact, Garadwal and Valententhide unlit, others flickering; Valententhide's runes said "leave here." +- Grand Towers prison runes and statues: Salana intact, Garadul and Valentinhide unlit, others flickering; Valentinhide's runes said "leave here." - Black shard / elemental of Void: presented in a small box as something to place where it belonged. - Frost pole ball: gift brought by Eliana with intent to switch out frost elementals. - Prognostic machine: Juticars cited it while discussing Geldrin's chaotic tendencies and compromised mission. diff --git "a/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" "b/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" index 7f5193a..3a8266f 100644 --- "a/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" +++ "b/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" @@ -48,7 +48,7 @@ Several rune rings connect [Joy](../people/joy.md), [Ennuyé](../people/ennuyé. - [Anastasia](../people/anastasia.md) - [Barrier Observatory](../places/barrier-observatory.md) - [Barrier](../concepts/barrier.md) -- [Valententhide / Valentenhule](../people/valententhide.md) +- [Valentinhide / Valentenhule](../people/valentinhide.md) ## Open Questions diff --git a/data/6-wiki/items/sierras-arrows.md b/data/6-wiki/items/sierras-arrows.md new file mode 100644 index 0000000..3ecf0bc --- /dev/null +++ b/data/6-wiki/items/sierras-arrows.md @@ -0,0 +1,37 @@ +--- +title: Sierra's Arrows +type: magic weapon set +aliases: + - Spear of Sierra + - Spears of Sierra + - Arrow of Sierra + - arrows of Sierra +first_seen: day-20 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-47.md +--- + +# Sierra's Arrows + +## Summary + +The so-called spears of [Sierra](../people/sierra.md) were actually her arrows. Five were taken from Sierra's last battlefield. + +## Known Details + +- On Day 20, a weapon described as a spear gifted by a Huntsman of Sierra was clarified as an arrow. +- There were five of Sierra's arrows, taken from Sierra's last battlefield. +- Day 47 Hartwall lab material included a stone arrow and an archway room containing Sierra's arrows. + +## Related Entries + +- [Sierra](../people/sierra.md) +- [Noxia](../people/noxia.md) +- [Minor Items from Day 47](minor-items-day-47.md) + +## Open Questions + +- Where are all five arrows now? +- Were the arrows used in the fight between Sierra and Noxia? diff --git a/data/6-wiki/items/tremons-body-and-statue-artifacts.md b/data/6-wiki/items/tremons-body-and-statue-artifacts.md index 56442af..3519dad 100644 --- a/data/6-wiki/items/tremons-body-and-statue-artifacts.md +++ b/data/6-wiki/items/tremons-body-and-statue-artifacts.md @@ -3,12 +3,19 @@ title: Tremon's Body and Statue Artifacts type: item cluster aliases: - Tremon's body + - Skull of Tremon + - Tremon's skull + - Treamen's skull + - Treamon's skull - shield-crystal body - focusing crystal - Council statue artifacts -first_seen: day-57 -last_updated: day-57 +first_seen: day-32 +last_updated: user-clarification sources: + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-57.md --- @@ -16,11 +23,13 @@ sources: ## Summary -Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identified in places as Tremon's body. Pieces and Council artifacts were scattered through plane rooms, memory doors, and realm puzzles. +The Skull of Tremon, earlier uncertainly recorded as Treamen/Treamon's skull and later as a shell or crystal shell, helped passage through the Barrier and was sought by Ruby Eye and Wrath. Day 57 later revealed a shield-crystal body or focusing crystal in Brass City, identified in places as Tremon's body. Pieces and Council artifacts were scattered through plane rooms, memory doors, and realm puzzles. ## Known Pieces and Artifacts - Shield-crystal body: crafted in the citadel and stored in one of the four great minarets; described by a gem-cutter as not obviously a weapon. +- Skull of Tremon: given to Geldrin on Day 32 while glowing, humming, and vibrating. Geldrin's attunement produced visions and lore about ascension to godhood, Tri-moon / Treamen, Noxia, Valentinhide, Throngore, Grand Towers, the Barrier, and the skull's ability to crush foes, let someone pass, and show visions. +- The skull was left at Hartwall on Day 36; Ruby Eye and Wrath wanted it because it helped people pass in and out of the Barrier. It was seen vibrating on Day 47, and later notes mention using Tremon's skull to pass through the dome. - Shield crystal piece: found on an earth elemental's table and identified as a piece of Tremon. - Moon / Brass City body shard: Geldrin found where a shard had come from and put it back, stabilizing the four memory doors. - Sword: found in Eliana's old Provista house in a box from Everchard and returned to a cracked statue. diff --git a/data/6-wiki/items/void-spheres.md b/data/6-wiki/items/void-spheres.md index 673e862..76b4210 100644 --- a/data/6-wiki/items/void-spheres.md +++ b/data/6-wiki/items/void-spheres.md @@ -41,13 +41,13 @@ The void spheres are a set of eight containment or power objects discovered thro - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) - [Original Goliath Sphinx](../people/original-goliath-sphinx.md) ## Open Questions - What do the eight spheres contain or power? -- Is the void sphere connected to Garadwal, Brotor / Brutor, Mr Moreley, or Squall's Belt? +- Is the void sphere connected to Garadul, Brotor / Brutor, Mr Moreley, or Squall's Belt? - Who are the Aurises? - Why is Amoursorate's orb scratched and unlit? - How does the Storm Orb relate to the earlier void sphere and kitchen `seasoning` clue? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index e29ea8c..53c7329 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -52,11 +52,10 @@ sources: # Open Threads -- How do [Garadwal](people/garadwal.md)'s current forms and motives relate to his original identity as a Sphinx protector of the Dunnen People corrupted by consuming a void elemental? +- How do [Garadul](people/garadul.md)'s current forms and motives relate to his original identity as a Sphinx protector of the Dunnen People corrupted by consuming a void elemental? - Who made the pact described by the [rings](items/rings-of-joy-ennuyé-and-dirk.md), and what did it do to Joy's soul or clones? - Can the [Tri-moon Shard](items/tri-moon-shard.md) be repelled without dropping or fatally weakening the [Barrier](concepts/barrier.md)? - Are the [Elemental Prisons](concepts/elemental-prisons.md) justified containment, exploitation, or both? -- Which eight beings or poles power the Barrier, and are Garadwal, Salias, the salt dragon, and the void fragment among them? - Who controlled the Everchard militia and transformed townsfolk during the [memory tampering](concepts/everchard-memory-tampering.md)? - What happened to the Earl of Everchard after memories returned? - What is the relationship between [Infestus](people/infestus.md), the [Black Scales](factions/black-scales.md), black dragonborn agents, and the suspicious shipments? @@ -73,9 +72,9 @@ sources: - What did the cold dream voice mean by `where is he I know you hide him`, and why did a white dragonscale fall from the party room icicle? - Did the Ruby Eye riddle/layout mechanism have further consequences after the hidden laboratory was opened? - Who or what sent the white powder visions of basilisk, salamanders, Arabic writing, white dragon, black void, cold blue eyes, and contradictory Freeport dreams? -- What is the exact relationship between [Garadwal](people/garadwal.md), Enwi's apprentice, and the dragon crash that weakened the prisons? +- What is the exact relationship between [Garadul](people/garadul.md), Enwi's apprentice, and the dragon crash that weakened the prisons? - Which of the seven named prisons, five labs, Grand Towers levels, Goliath city, missing dwarf city, Goldenswell impact site, Riversmeet menagerie, and pylon-adjacent sites are still intact or compromised? -- Did [Ennuyé](people/ennuyé.md)'s life-force siphoning replicate across all prisons by design, sabotage, or later misuse, and can it be reversed without killing prisoners like Limnuvela? +- Did [Ennuyé](people/ennuyé.md)'s life-force siphoning replicate across all prisons by design, sabotage, or later misuse, and can it be reversed without killing prisoners like Limusvita? - Who gave Anrasurall the Ice prison runes, what was he trying to free at [Rimewatch](places/rimewatch-ice-prison.md), and what are the hollow rocks or possible eggs near the burst entrance? - How did The Mother repurpose Envi's clone despite known clone limits, and what remains of her Carnamancy, cipher, spellbook, Baytail Accord plan, and link to Peridita or `Mother` warnings? - What does the Blackscale boss mean by needing the [Barrier](concepts/barrier.md) to keep his head in one place, and why was Blackscale using the party's kings as servants? @@ -92,7 +91,7 @@ sources: - What happened to [Lady Elissa Hartwall](people/lady-elissa-hartwall.md) after the antidote, injury, and Lady Thorpe impersonation crisis? - Who replaced [Lady Thorpe](people/lady-thorpe.md) with a llama-form impostor, why did the impostor use Noxia-like identity-suppression poison or curse, and what did the Justicars learn after taking the llama to Grand Towers? - What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s shield-crystal role after hiding a crystal piece with Wroth, and why were Justicars looking for him at the Hartwall auction? -- Are the [Hartwall Auction Lots](items/hartwall-auction-lots.md) chariot, `Valententide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? +- Are the [Hartwall Auction Lots](items/hartwall-auction-lots.md) chariot, `Valentinhide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? - Why was the Tri-moon visible during the day 16 hours early, and why did Jin-Loo's records list 104 AD, 339 AD, 629 AD, and 1012 AD despite saying the event happened three times in 1,000 years? - Who runs the [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): the Duke's office, the woman with a bag on her head, the snake-bodied emissary, [Lady Envy](people/envy.md), Noxia-linked agents, or another faction? - Why did memory grubs erase council members' memories of [The Guilt](concepts/excellences.md), make them distrust him, and create a feeling of being watched? @@ -102,14 +101,14 @@ sources: - What does Morgana's forced-feeling kiss vision of a laughing female dragon, possibly the Peridot Queen, mean for Elementarium's green eyes and the silver dragon man who cast a spell on him? - What caused the [Brookville Springs](places/brookville-springs.md) purple explosions, vanished leader, and Claymeadow's broken Bird / Newgate doppel crisis? - How do [Pride](people/pride.md), [Wrath](people/wrath.md), [Envy](people/envy.md), and the other removed elven emotions relate to [The Guilt](concepts/excellences.md), Excellences, demons, and gods' tools? -- What is the shell of [uncertain: Tremoon], why do Ruby Eye and Wrath want it, and is it safe at Hartwall? +- Is the [Skull of Tremon](items/tremons-body-and-statue-artifacts.md) still safe at Hartwall, and what risk follows if the wrong faction uses it for Barrier passage? - Who is the female outside the Barrier who wants the [Jelly Fish Broach](items/grand-towers-bargain-trinkets.md), and what are Scorpion, Snowlee, Jelly Fish, and Ant? - How do [Bridget's Doors](concepts/bridgets-doors.md) decide destination, eye color, time displacement, and cost from Grand Towers pennies? - Who tampered with Ruby Eye's and [Icefang](people/icefang.md)'s memories using ear grubs, and was the dark elf from Envy's apprentice? - Can the [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md) be renegotiated without worsening barrier sickness, nerfili infertility, or divine claims? - What did the recent visitors remove from [Valenthielles Prison](places/valenthielles-prison.md), and what is the Joy-like dark female figure? -- Who is the skull-throne woman who accepted Garadwal for Soot, and what claim did she already have on Soot? -- What is destabilizing [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), and what happened to Envi, Rumplky, the purple-cored automatons, the upright hand, and Garaduel? +- Who is the skull-throne woman who accepted Garadul for Soot, and what claim did she already have on Soot? +- What is destabilizing [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), and what happened to Envi, Rumplky, the purple-cored automatons, the upright hand, and Garadul? - What caused Heartmoor's contagious magically linked plague, Azureside's diseased land, and the venomous female lake figure: the Poison Dragon, Perodita, Dollarmen, dragons, or another force? - What hierarchy sent the [Dollarmen](factions/dollarmen.md) boss to the `easy town`, and what is the Council with Mercy from Brookville Springs? - What exactly are [Snake Slayers](items/snake-slayers.md), and is Bosh's crossbow the same weapon? @@ -127,7 +126,7 @@ sources: - What happened to resistance members who used Three Finger Dune Shwelter's black-feather communication device to contact the outside? - Did Badger survive after Ashkellon, and did the name `Badger born in freedom` become a real resistance symbol? - Who made the Ashkellon skull arches, skinned Goliath skulls, Domain of Pengalis coins, and possible Lortesh lair, and why did the skulls still moan? -- Who is the featureless woman seen through the `ring of the betrayer`, and is she [Valententhide](people/valententhide.md)? +- Who is the featureless woman seen through the `ring of the betrayer`, and is she [Valentinhide](people/valentinhide.md)? - What do the Ashkellon offering responses mean: betrayal at hand, tribute never received, and `a gift crafted for a friend is the key to it all`? - Can [Hephestus / Hephestos](people/minor-figures-days-42-44.md) be trusted, and what air entity did he warn Morgana not to free? - Where is [Brutor Ruby Eye](people/brutor-ruby-eye.md) after Day 42, who has him, and why can neither Cardonald nor Bleakstorm find him? @@ -137,9 +136,9 @@ sources: - Why did [Attabre](people/attabre.md) put Trixus to sleep, and why is Attabre angry with Benu? - What day is Dirk missing according to [Bleakstorm](places/bleakstorm.md)'s time device? - What cost comes with Bleakstorm's time travel, and who is his lost friend [uncertain: leechus]? -- What does Bridge require to free Perodita, and what does releasing [Valententhide](people/valententhide.md) under the god rule mean? +- What does Bridge require to free Perodita, and what does releasing [Valentinhide](people/valentinhide.md) under the god rule mean? - Who is the pale dwarf with black dreadlocks and a crown who can help find Ruby Eye? -- What are the full Benu-book family names, including Anadreste, the hidden Gardwel name, Trixus, Bynx, and any missing unnamed sibling? +- What are the full Benu-book family names, including Anadreste, the hidden Garadul name, Trixus, Bynx, and any missing unnamed sibling? - What are the lost dwarf cities of Grincray / Grim & Cray, why is Mashir the route, and why is there no third-city book? - What is [Papa'e Munera](people/papae-munera.md), where is the rest of him, and who or what is [uncertain: unrasorak]? - What blocks lost knowledge retrieval, and is it tied to flesh-crafting wands, Barrier magic, or the Riversmeet memory-interference spell? @@ -149,7 +148,7 @@ sources: - Who built Morgana's statue, and how fast did her Goliath-child healing become legend? - What is in Hartwall's old lab, and how does its key help access the Howling Tombs? - How should Geldrin's arcane Draconic teleport/seeing scroll be used to understand where `they` went? -- What exactly happened at Ruby Eye's melted house, his wife's grave, and Valentinheide killing Emi's wife? +- What exactly happened at Ruby Eye's melted house, his wife's grave, and Valentinhide killing Emi's wife? - Why was the Riversmeet Kasha temple notable, and what local role do Hydrun, Igraine, Lam, and Kasha temples play? - What are the rules of the Riversmeet Menagerie / old mage-school displacement, time, and planar rooms? - Who are Acroneth, Crindler, Belocoose, and the sphinx on another plane? @@ -158,7 +157,7 @@ sources: - What future knowledge did Mr Moreley recognize in Geldrin's ancient dragon scroll, and what was Hartwall hiding from the Gold Dragon Council? - What was Ruby Eye's eye-removal final project, and why did he recruit Geldrin to join Everard, Thomas / Ennuyé, and Valenth? - What is the Lady Evalina Hartwall / Miana / Avalina identity, and why did a silver dragon or silver-green claw demand its form back? -- What did [Bright](people/valententhide.md), Valentenhule, Great Farmouth, gnomes, merfolk, and Grand Towers technology really have to do with each other? +- What did [Bright](people/valentinhide.md), Valentenhule, Great Farmouth, gnomes, merfolk, and Grand Towers technology really have to do with each other? - What did Ennuyé mean by Geldrin being touched by the lady of destruction, and what dark magic was Ennuyé researching? - What is the green liquid / possible Noxia blood from the desert, and what came with the party? - Who was Hannah, how was she wiped from time and space, and why did the party forget her name? @@ -168,7 +167,7 @@ sources: - What does `Battery is the clue`, the sixth sphinx, and Mother hive for the worm using Attabre excellence mean? - What are Willowispa's hidden things, her absent mother, and the possible male/female Willowispa voices in the old school? - Who are the Tarnished, what is Verdigren, and what is hidden fifteen miles below Tradesmells? -- What is Metatous's incomplete soul, and why did Morgana's reincarnation produce Garadwal instead? +- What is Metatous's incomplete soul, and why did Morgana's reincarnation produce Garadul instead? - What are Limos Vita, the mushroom organism, and the cat-horned flesh bag spreading mushroom pieces? - Who stole and altered the [Original Goliath Sphinx](people/original-goliath-sphinx.md) when the Dome was created, and how exactly was it used to rewrite memories across the Dome? - Why is Amoursorate's orb scratched and unlit, and what does `look after my son` mean for Dotharl? @@ -179,7 +178,7 @@ sources: - Which prison near Snowsorrow holds the Hartwall artifact, and how does it affect Hartwall's memory work? - What is the purpose of the 50,000 gp jade cache from the boat, and how does it connect to Terrance's wife's jade earrings and the 500 gp jade order? - Where does the `Earth hath no` door at The Olde Clay Jug lead, and who is Highgate? -- What did Valententhide intend to charge in identities, eyes, and pride for use of her pathways? +- What did Valentinhide intend to charge in identities, eyes, and pride for use of her pathways? - What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? - Who was removed from the Hartwall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Hartwall's daughters? @@ -196,29 +195,29 @@ sources: - What favour does Umberous want in exchange for hiding Rubyeye from [Infestus](people/infestus.md), and who is Umberous's father? - What is the escaped void elemental after absorbing its brother and possibly Pride? - What prison under Lewshis and Aneurascarle did Rubyeye recognise, and how do the Thunderfut / Trutbrow plaques, Samuel, Struct, thirty dwarves, and missing crystal connect to Throngore? -- What exactly is the featureless lost part of [Valententhide](people/valententhide.md), what did Thomas remove, and what is the Vessel of Divinity? +- What exactly is the featureless lost part of [Valentinhide](people/valentinhide.md), what did Thomas remove, and what is the Vessel of Divinity? - Why did Joy warn that the lost part took her mum when the ancestors gave a positive response to releasing it? - What does the direct answer `Because you are` mean for Eliana's Hartwall identity? - Where is Morgana's `[coded]` teleport circle, and why do Geldrin and Morgana remember making or placing it from uncertain selves? - If destroying the dome cancels all pacts and releases all prisons, which pacts or prisoners become immediate threats or obligations? -- What are Bridget's rules for honouring, gifts, anger, and the gold Valententhide orb? +- What are Bridget's rules for honouring, gifts, anger, and the gold Valentinhide orb? - Who is the voice offering to free Dotharl from mortals, and is it Bridget's trapped kin, his father, his grandfather, or another prisoner? - Which identity should Eliana keep: the current self or the one once held? - What power are the Brownings offering Geldrin, what crystal must Invar give or use, what fishing expedition must Dirk remember, and what training cost threatens Morgana? - What returning dragon did Bridget warn about, why is Invar / silver the route, and how does that connect to Eliana being "Eliana and Eliana"? - What is the Rubyeye-summoning device made or provided by [Infestus](people/infestus.md) and mastered by [Anya Blakedurn](people/anya-blakedurn.md), and can her bargain to restore the Dwarven kingdoms be trusted? - What is the hole in [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), what pylons are needed to repair it, and why is Papa breaking dwarves as revenge? -- What smoke or malevolent presence caused the Quartermaster and General's hopelessness, and is it the same as Blakedurn's black smoke incident or Merocole's smoke sphere? +- What smoke or malevolent presence caused the Quartermaster and General's hopelessness, and is it the same as Blakedurn's black smoke incident or Mericok's smoke sphere? - Who or what is the elementals' mother who accepted coins at the Grimcrag bridge? - What did the carved elven shield crystal and copper do to make convoy attackers invisible? - Who are the blue-eyed dome figure, green-eyed woman, hurt friend, hostile brother, and possible [Envy](people/envy.md) in Dotharl's Day 55 dream? - What is No-Hurt, and why has it spread everywhere and killed things? -- What exactly is Merocole, why did it replace the High Priest, and why did Papa Marmaru warn not to trust it? +- What exactly is Mericok, why did it replace the High Priest, and why did Papa Marmaru warn not to trust it? - What should be done with the barrel of Noxia ooze recovered after [Peridita](people/peridita.md)'s death? - What are the twenty-seven Humility fragments, where is the large weak part needed to recombine Thomas, and what did Thomas remove to become [Envy](people/envy.md)? - What is the black shard / elemental of Void, and should it be placed into the Grand Towers prison system? - What did [Everard Browning](people/everard-browning.md)'s phrase `and the flight of the gold ends` accomplish after his table spell was countered? -- Did dome activation capture [Bynx](people/bynx.md)'s sphynx brothers, [Trixus](people/trixus.md), [Benu](people/benu.md), and [Garadwal](people/garadwal.md), and can they be released without collapsing other prisons? +- Did dome activation capture [Bynx](people/bynx.md)'s sphynx brothers, [Trixus](people/trixus.md), [Benu](people/benu.md), and [Garadul](people/garadul.md), and can they be released without collapsing other prisons? - What is the shield remote near Grand Towers, and why is there no obvious way to reverse it? - Can [Browning](people/everard-browning.md)'s near-complete godhood ritual be stopped before he uses more crystal? - Where exactly are Cardinal in the Brass dome and [Rubyeye](people/brutor-ruby-eye.md) in the far-airwise dwarven loop? diff --git a/data/6-wiki/people/anadreste.md b/data/6-wiki/people/anadreste.md index f595f80..165f936 100644 --- a/data/6-wiki/people/anadreste.md +++ b/data/6-wiki/people/anadreste.md @@ -25,7 +25,7 @@ Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s s ## Known Details - The Sphinx are the children of Attabre. -- [Trixus](trixus.md), [Benu](benu.md), and [Garadwal](garadwal.md) are [Bynx](bynx.md)'s brothers. +- [Trixus](trixus.md), [Benu](benu.md), and [Garadul](garadul.md) are [Bynx](bynx.md)'s brothers. - Day 43's Benu-family list names Anadreste among the sphynx siblings. - Anadreste blessed [Papa'e Munera](papae-munera.md), the fragmented black orb from Invar's box. - Anadreste sacrificed herself to become part of the white dragons, turning them into good dragons. @@ -40,7 +40,7 @@ Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s s - [Attabre](attabre.md) - [Trixus](trixus.md) - [Benu](benu.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Icefang](icefang.md) - [Eliana](eliana.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) diff --git a/data/6-wiki/people/anorazorak.md b/data/6-wiki/people/anorazorak.md new file mode 100644 index 0000000..ac2dd76 --- /dev/null +++ b/data/6-wiki/people/anorazorak.md @@ -0,0 +1,32 @@ +--- +title: Anorazorak +type: imprisoned being +aliases: + - Anorazorak + - unrasorak +first_seen: user-clarification +last_updated: user-clarification +sources: + - user clarification +--- + +# Anorazorak + +## Summary + +Anorazorak is one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md). + +## Known Details + +- The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. +- Earlier notes preserve an uncertain `unrasorak` in connection with [Papa'e Munera](papae-munera.md); this may be Anorazorak, but the connection remains uncertain. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Barrier](../concepts/barrier.md) +- [Papa'e Munera](papae-munera.md) + +## Open Questions + +- Is the earlier uncertain `unrasorak` the same being as Anorazorak? diff --git a/data/6-wiki/people/anya-blakedurn.md b/data/6-wiki/people/anya-blakedurn.md index 8910532..fce13e5 100644 --- a/data/6-wiki/people/anya-blakedurn.md +++ b/data/6-wiki/people/anya-blakedurn.md @@ -20,7 +20,7 @@ Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa I - On `day-53`, Blakedurn represented the party before the dwarven council and questioned them about dragons, dragonborn, automatons, and gnomes. - Her ear had no worm, but the canal was wrong: too small and hairless. Dirk or Thamia determined she was not a Thamia. -- Her house had Sierra aspects and Dunnen styling. +- Her house had [Sierra](sierra.md) aspects and Dunnen styling. - She confessed she was not a dwarf but a black dragon. - Anya Blakedurn is Infestus' daughter. - She wants the dwarves to succeed, but also wants personal rewards such as jewels. @@ -42,4 +42,4 @@ Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa I - How did Infestus build or obtain the Rubyeye-summoning device used by Blakedurn? - What exactly was the black smoke incident? - Does Blakedurn's plan to restore the Dwarven kingdoms align with the party's goals, or only with her own hoard and control interests? -- Why does her house include Sierra and Dunnen styling? +- Why does her house include [Sierra](sierra.md) and Dunnen styling? diff --git a/data/6-wiki/people/astraywoo.md b/data/6-wiki/people/astraywoo.md index b686f01..08e3b1a 100644 --- a/data/6-wiki/people/astraywoo.md +++ b/data/6-wiki/people/astraywoo.md @@ -20,7 +20,7 @@ Astraywoo is an uncertain named figure associated with the vulturemen and the un - Day 28 preserves a possible Vulture-man or leader name as `athruygon?` during cease-fire discussions. - Day 29 says Astraywoo bowed to the under-sand figure that Dirk greeted as `Excellence`. -- The same context links vulturemen, Dunnen honour-guard imagery, Gardwal's failure, and a brother looking for the Excellence. +- The same context links vulturemen, Dunnen honour-guard imagery, Garadul's failure, and a brother looking for the Excellence. ## Related Entries diff --git a/data/6-wiki/people/attabre.md b/data/6-wiki/people/attabre.md index 544cc74..a83e930 100644 --- a/data/6-wiki/people/attabre.md +++ b/data/6-wiki/people/attabre.md @@ -23,7 +23,7 @@ sources: ## Summary -Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, Trixus, Anadreste, and Bynx. +Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadul, Trixus, Anadreste, and Bynx. ## Known Details @@ -31,15 +31,15 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, - Day 27 names Attabre, originally recorded as Altarrb, as the god associated with Father Haithes's copper marygal chain and with the `Father` side of a Mother/Father religious pairing in Dunensend. - A shrine offering on `day-42` produced the words: `The father wishes freedom for all his children.` - The Sphinx are the children of Attabre. -- Day 43's Benu book listed family names as a missing unnamed one, Anadreste, Benu, hidden Gardwel, and Trixus. +- Day 43's Benu book listed family names as a missing unnamed one, Anadreste, Benu, hidden Garadul, and Trixus. - Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. - Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. - Day 44 mentions Hannah as a priestess of Attabre and Bynx as the baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. - The [Original Goliath Sphinx](original-goliath-sphinx.md) was the Sphinx meant for the Goliaths. It was stolen and altered when the Dome was created, then used to alter memories across the Dome. - The Sphinx aspect of that altered creature reincarnated as [Bynx](bynx.md). - Day 47 showed a toy figure of Attabre in a Grand Towers memory box, with an elven body and lion's head; Bynx said Attabre was his father. -- Trixus, Benu, and Garadwal are Bynx's brothers. Anadreste is Bynx's sister, guardian of the white dragons, and sacrificed herself to become part of them. -- Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. +- Trixus, Benu, and Garadul are Bynx's brothers. Anadreste is Bynx's sister, guardian of the white dragons, and sacrificed herself to become part of them. +- Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leedus' father descended to earth to save his child from imprisonment. - Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. - Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Lady Elissa Hartwall accepted the spells. - Eliana is also Attabre's daughter because Icefang is her white dragon father and Anadreste, one of Attabre's Sphinx children, sacrificed herself into the white dragons. White dragons and their descendants should therefore carry Anadreste's trace. @@ -50,7 +50,7 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, - [Trixus](trixus.md) - [Benu](benu.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Bynx](bynx.md) - [Original Goliath Sphinx](original-goliath-sphinx.md) - [Anadreste](anadreste.md) diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md index 3968bd9..518316f 100644 --- a/data/6-wiki/people/benu.md +++ b/data/6-wiki/people/benu.md @@ -18,7 +18,7 @@ sources: ## Summary -Benu is a Dunensend ally or authority figure later revealed as one of Attabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), [Bynx](bynx.md), the elves, and the great tower. +Benu is a Dunensend ally or authority figure later revealed as one of Attabre's sphinx children, connected to [Garadul](garadul.md), [Trixus](trixus.md), [Bynx](bynx.md), the elves, and the great tower. ## Known Details @@ -26,30 +26,30 @@ Benu is a Dunensend ally or authority figure later revealed as one of Attabre's - Benu stayed in Dunensend and planned to build a temple in the city. - Benu could message Cardenald and ask her to meet at the Dunensend shrine. - Benu could create a hero's feast before the army moved. -- Day 42 found an out-of-place picture of Benu / Guradwal / a goat-headed sphinx dedicated to the Warriors of the Lion from the Dunemin; hidden behind it were two large orange-and-blue-feathered relics. -- A book in Ashkellon described Benu, Garadwal, and Trixus as the last three of Attabre's children who walk on earth. -- Trixus, Benu, and Garadwal are Bynx's brothers. +- Day 42 found an out-of-place picture of Benu / Garadul / a goat-headed sphinx dedicated to the Warriors of the Lion from the Dunemin; hidden behind it were two large orange-and-blue-feathered relics. +- A book in Ashkellon described Benu, Garadul, and Trixus as the last three of Attabre's children who walk on earth. +- Trixus, Benu, and Garadul are Bynx's brothers. - Benu was protector of the elves and helped construct the great tower, but did little protection and instead trained them in art and poetry until they became obsessed with it. - The book says Benu saw errors in its ways, left for an unknown reason, and hid. -- On Day 43, Benu appeared at Ashkellon when summoned by vulture-men contact, stood between the party and Trixus / Garadwal, fought Garadwal, and later disappeared when Attabre answered the shrine. +- On Day 43, Benu appeared at Ashkellon when summoned by vulture-men contact, stood between the party and Trixus / Garadul, fought Garadul, and later disappeared when Attabre answered the shrine. - Emi said the elves' protector who taught them how to remove emotions was Benu. -- On Day 56, Benu was found behind a Barrier with Trixus, Garadwal, and Bynx in a Grand Towers control-room side area. Benu said plans had been thwarted after speaking to dad, while Garadwal was clearer and would repay misdeeds by helping the party. +- On Day 56, Benu was found behind a Barrier with Trixus, Garadul, and Bynx in a Grand Towers control-room side area. Benu said plans had been thwarted after speaking to dad, while Garadul was clearer and would repay misdeeds by helping the party. - Day 56 discussion connected Benu's history to wizards seeking godhood and immortality, a generator that made them more powerful, and an outside method of removing emotions. ## Timeline - `day-29`: Benu helps secure Dunensend support and remains to build a temple. - `day-30`: Benu can contact Cardenald and provide hero's feast support. -- `day-42`: Ashkellon sources connect Benu to Garadwal, Trixus, Attabre, the elves, the great tower, and hidden feather relics. -- `day-43`: Benu appears in Ashkellon, fights Garadwal, and is implicated in elven emotion-removal techniques. -- `day-56`: Benu is reunited with Trixus, Garadwal, and Bynx behind a Grand Towers Barrier and discusses wizard godhood, the generator, and emotion removal. +- `day-42`: Ashkellon sources connect Benu to Garadul, Trixus, Attabre, the elves, the great tower, and hidden feather relics. +- `day-43`: Benu appears in Ashkellon, fights Garadul, and is implicated in elven emotion-removal techniques. +- `day-56`: Benu is reunited with Trixus, Garadul, and Bynx behind a Grand Towers Barrier and discusses wizard godhood, the generator, and emotion removal. ## Related Entries - [Dunensend](../places/dunensend.md) - [Lortesh](lortesh.md) - [Trixus](trixus.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Bynx](bynx.md) - [Attabre](attabre.md) - [Ashkellon](../places/ashkellon.md) diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 2cf4d1a..20f2334 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -35,18 +35,18 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or ## Known Details - His skull became a consulted source of lore and was transferred to the party. -- He identified [Garadwal](garadwal.md) as the only void they could find and one of eight whose escape would weaken the Barrier. +- He identified [Garadul](garadul.md) as the only void they could find and one of eight whose escape would weaken the Barrier. - His laboratory contained pylon plans, memory orbs, void containment, museum artifacts, alarm systems keyed by blood or hand, and lore about the first crack. - He was described as powerful, possibly a demi-lich figure, and interested in immortality, runes, sacrifice, and containment. - He was killed by or strongly associated with conflict against the black dragon [Infestus](infestus.md). - He visited Cardonal's desert laboratory 47 times, last around 908 years before day 23, and had requested a copy of a book after seeing it at Aquaria. - [Valenth Cardonald](valenth-cardonald.md) was Ruby Eye's best friend and is the same person described as wanting to craft herself into an object and continue in that form. - He created his own prison-status readout using a humanized effigy of the spirit, runes, and links to the prison and prison runes. -- Rubyeye described Grand Towers technology beneath the towers, the overseer controls, Valenthide prison, and an automaton guard. +- Rubyeye described Grand Towers technology beneath the towers, the overseer controls, Valentinhide prison, and an automaton guard. - On day 30 Cardenald resurrected him from the skull; Rubyeye returned with glowing red eyes, made a beard, and helped gather Counterspell scrolls and orbs. -- On Day 32, Geldrin attuned to the skull and saw visions of Valententide, dragon fights, 629 AD, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, the Mother crater, Condennis Place, an underground dwarven city, the molten prison, Goldenswell prisoners, and a ruined Goliath City. +- On Day 32, Geldrin attuned to the skull and saw visions of Valentinhide, dragon fights, 629 AD, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, the Mother crater, Condennis Place, an underground dwarven city, the molten prison, Goldenswell prisoners, and a ruined Goliath City. - The skull was linked to ascension to godhood, the daytime Tri-moon event, influence over the Barrier, and the ability to show visions, crush foes, let him pass, and smite foes only when nearby. -- On Day 36, Ruby Eye appeared still convalescing, travelled in the party's bag, and wanted the crystal shell / shell of [uncertain: Tremoon] because it helped with passage through the Barrier. +- On Day 36, Ruby Eye appeared still convalescing, travelled in the party's bag, and wanted the [Skull of Tremon](../items/tremons-body-and-statue-artifacts.md) because it helped with passage through the Barrier. - Day 36 revealed Ruby Eye's pact with [Wrath](wrath.md), made after he saw how much power Browning had through Pride; Ruby Eye later shouted Wrath back into his eye. - Ruby Eye explained that the Grand Towers trinkets were part of a bargain, that gods required favours, priest communication, and boons, and that Ennik and Browning made many deals. - On Day 42, a false Ruby Eye illusion was found in an Ashkellon dome while the real Ruby Eye dispelled trap magic, taught the party ring activation as proof of identity, and said the rings activate in the Barrier so Joy cannot leave. @@ -66,7 +66,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or ## Timeline -- `day-01`: Brutor is cited as a source on Garadwal and the Prison of the Sands. +- `day-01`: Brutor is cited as a source on Garadul and the Prison of the Sands. - `day-15`: His skull and containment lore become active campaign tools. - `day-16`: The party explores his hidden laboratory and memory records. - `day-17`: Security council discussions rely on Brutor-related knowledge. diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index 51c95a9..80ae53b 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -30,17 +30,17 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - On `day-47`, the sphynx grew quickly, asked many questions, played in Hartwall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. - On `day-47`, Bynx told Eliana, "I wasn't born green," connected the green change to jade, and remembered brothers now. - Bynx identified the lion-headed elven toy figure of Attabre in a Grand Towers memory box as his father and broke the box. -- Trixus, Benu, and Garadwal are Bynx's brothers. +- Trixus, Benu, and Garadul are Bynx's brothers. - The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. - [Anadreste](anadreste.md), Bynx's sister and the guardian of the white dragons, appeared as a carved female sphynx face on a Sunsoreen palace door. - In Sunsoreen, Bynx explained that where pure elemental planes meet, they combine. - Bynx cast Truesight and found Anadreste was no longer present, with no trace of her in the white dragon. This is significant because she sacrificed herself to become part of the white dragons, turning them good, so all white dragons and their descendants should retain a trace of her. - On Day 56, Bynx warned Dirk that his brothers were coming and to close the door. -- Day 56 also suggested dome activation may have captured Bynx's sphynx brothers, and Bynx was later found behind a Barrier with Trixus, Benu, and Garadwal. +- Day 56 also suggested dome activation may have captured Bynx's sphynx brothers, and Bynx was later found behind a Barrier with Trixus, Benu, and Garadul. ## Related Entries -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Anadreste](anadreste.md) - [Attabre](attabre.md) - [Original Goliath Sphinx](original-goliath-sphinx.md) @@ -52,5 +52,5 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - What removed Anadreste's trace from the white dragon, and what does that mean for Icefang's descendants Eliana and Lady Elissa Hartwall? - How much of the original Goliath Sphinx remains in Bynx after reincarnation? -- Were Trixus, Benu, and Garadwal captured by the dome activation, and can they be released without collapsing other prisons? -- Why was Bynx behind the Grand Towers Barrier with Trixus, Benu, and Garadwal? +- Were Trixus, Benu, and Garadul captured by the dome activation, and can they be released without collapsing other prisons? +- Why was Bynx behind the Grand Towers Barrier with Trixus, Benu, and Garadul? diff --git a/data/6-wiki/people/dirk.md b/data/6-wiki/people/dirk.md index 5a83e0b..dbf65cb 100644 --- a/data/6-wiki/people/dirk.md +++ b/data/6-wiki/people/dirk.md @@ -31,7 +31,7 @@ Dirk is a player character played by Laura M. He is one of the original party me - On Day 1, Dirk was present at the Cider Inn Cider when the party began investigating Everchard's missing pigs, missing people, and memory tampering. - Day 1 also records Dirk seeing a rat around the time an unidentified fifth human warrior vanished from memory. -- Dirk often consults ancestors for guidance, including asking what would happen if the party released the Valententhide-like figure and whether the party could defeat Browning as they were. +- Dirk often consults ancestors for guidance, including asking what would happen if the party released the Valentinhide-like figure and whether the party could defeat Browning as they were. - Dirk's family and people are recurring concerns: Dirk Sr told Dirk to see his sister Ingris, and Bridget later said Dirk was on the path to free his people. - Dirk's path to freeing his people is now understood as the wider Goliath liberation and restoration arc: freeing Goliaths from dragon control, supporting Dirk Sr and [Anastasia](anastasia.md)'s resistance, reclaiming Ashkellon / the Goliath tower, restoring memories, and restoring the Sphinx protector stolen from the Goliaths. - The party freed Goliaths from tents and camps, learned of generations serving dragons, and supported Dirk Sr's plan to gather armies from Salvation. diff --git a/data/6-wiki/people/dotharl.md b/data/6-wiki/people/dotharl.md index b642e27..6b92acd 100644 --- a/data/6-wiki/people/dotharl.md +++ b/data/6-wiki/people/dotharl.md @@ -43,7 +43,7 @@ Dotharl, also recorded as Dothral and Dothril, is a player character played by J - [Bridget's Doors](../concepts/bridgets-doors.md) - [Sunsoreen / Snowsorrow](../places/sunsoreen.md) - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) -- [Valententhide / Valentenhule](valententhide.md) +- [Valentinhide / Valentenhule](valentinhide.md) - [Brutor Ruby Eye](brutor-ruby-eye.md) ## Open Questions diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index 5c9018b..293d72e 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -46,7 +46,7 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - Ennuyé wore five rings; one small ring was found with text about a sacrifice made to live eternal, father and daughter. - A boxed note possibly records `Winter Roses?` as Ennuyé's password. - Day 23 identifies Enwi as one of the figures at the base of the Hephaestos statue and says Enwi was being protected by Goliaths. -- Enwi's apprentice may have caused the end of Garadwal's sanity. +- Enwi's apprentice may have caused the end of Garadul's sanity. - Enwi's spellbook was locked by one of Cardonal's creations and later attuned to Geldrin. - Enwi had been tapping life force from his prison, and that replicated shade to the system weakened all prisons. - The Mother repurposed Envi's clone in Envi's lab, and her spellbook used the same cipher and spells as Envi's. @@ -70,7 +70,7 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - `day-06`: Joy's rooms, rings, clone evidence, and observatory memories deepen his connection to Joy. - `day-15`: Brutor's lore implicates Ennuyé in containment tampering and the first crack. - `day-16`: The hidden lab shows Ennuyé memories, rings, and Barrier history. -- `day-23`: Cardonal's lab adds Enwi, Goliath protection, spellbook, apprentice, and Garadwal context. +- `day-23`: Cardonal's lab adds Enwi, Goliath protection, spellbook, apprentice, and Garadul context. - `day-25`: Enwi's life-force siphoning is identified as a prison-system-wide weakness. - `day-26`: The Mother uses Envi's clone and cipher during the life-prison and Baytail Accord crisis. - `day-30`: Enwi's gloves are located in the Goliath Tower in the Oasis, and Enwi's ring pact is noted. diff --git a/data/6-wiki/people/errol.md b/data/6-wiki/people/errol.md index 0915ddb..2c757a4 100644 --- a/data/6-wiki/people/errol.md +++ b/data/6-wiki/people/errol.md @@ -40,7 +40,7 @@ Errol is an Obsidian Raven / obsidian bird used by the party for communication, - Platinum warned that Errol was possessed by one of Squeal's things. - Errol hid ruby messages connected to Rubyeye, Ennuyé, Browning, and Squeal, including the correction that Squeal asked for "the loss of everything." - On Day 48, Errol carried a message to Dirk's father and reported back about conditions after a battle. -- On Day 57, Geldrin placed part of Haze into Errol to help find the tail. +- On Day 57, Geldrin placed part of [Haze](haze.md), one of [Sierra](sierra.md)'s dogs, into Errol to help find the tail. - Errol the Obsidian Raven becomes a party companion. ## Related Entries @@ -55,4 +55,4 @@ Errol is an Obsidian Raven / obsidian bird used by the party for communication, - What happened to Errol during his 117 subjective years and forty years of darkness? - What lasting effects remain from Squeal's possession or influence? -- How does the Haze fragment placed into Errol affect him? +- How does the [Haze](haze.md) fragment placed into Errol affect him? diff --git a/data/6-wiki/people/everard-browning.md b/data/6-wiki/people/everard-browning.md index 894ab2d..e279e5b 100644 --- a/data/6-wiki/people/everard-browning.md +++ b/data/6-wiki/people/everard-browning.md @@ -37,7 +37,7 @@ Everard Browning, usually called Browning, is an ancient mage or engineer tied t - Day 31 includes Browning's scroll at auction, which produces a new random spell each morning at 2:37. - Day 32 gives more detail on Browning's scroll: Geldrin tried to inspect arcane writing and cast Dispel Magic, making the words disappear; the scroll generated a new random spell every morning at 2:37, was valued at 600 gp, and sold for 6,200 gp. - Browning / Skutey Galvin was wanted for impersonating a Justicar, but the notes do not establish whether Skutey Galvin is Browning, an alias, or a separate impersonator. -- Day 36 Grand Towers visions show Browning with Pride's power, wanting the biggest tower and to be the greatest wizard of all time, trapping Garadwal downstairs, making Ruby Eye obey him, activating a device that made Hartwall disappear, and contacting a giant green dragon to help get rid of his husband. +- Day 36 Grand Towers visions show Browning with Pride's power, wanting the biggest tower and to be the greatest wizard of all time, trapping Garadul downstairs, making Ruby Eye obey him, activating a device that made Hartwall disappear, and contacting a giant green dragon to help get rid of his husband. - Day 36 memory tampering showed Icefang shouting at Browning before a dark elf dropped a grub in Icefang's ear. - Day 41 reports four towers springing out of the ground around Grand Towers and making a new Barrier; Browning's responsibility is not confirmed but remains highly relevant. - Day 43 reports that Mr Browning did not like Emi's dark-skinned elf apprentice, that Hephestos may have been asked to attack the dome by Browning, and that Browning's reputation as a nice man conflicts with what the party has seen. @@ -60,7 +60,7 @@ Everard Browning, usually called Browning, is an ancient mage or engineer tied t - What exactly did Browning and Ennui find or build under Grand Towers? - What was the peace treaty tied to clearing fishes from the Barrier? - Who is Skutey Galvin, and what was the Justicar impersonation? -- What bargain did Browning make with Pride, and did he engineer Pride's consumption by Garadwal? +- What bargain did Browning make with Pride, and did he engineer Pride's consumption by Garadul? - Did Browning cause or exploit the new four-tower Barrier around Grand Towers? - Did Browning's student-era tunnel expedition cause the later Grand Towers, automations, memory, or emotion-removal disasters? - What did `and the flight of the gold ends` accomplish despite the counterspell? diff --git a/data/6-wiki/people/garadul.md b/data/6-wiki/people/garadul.md new file mode 100644 index 0000000..8b02cfe --- /dev/null +++ b/data/6-wiki/people/garadul.md @@ -0,0 +1,119 @@ +--- +title: Garadul +type: person or imprisoned being +aliases: + - Guardwel + - Garadwal + - Garadwel + - Garaduel + - Gardwel + - Gardwal + - Gardolwal + - Guradwal + - Gardwell + - Terror of the Sands + - nightmare of the darkness + - Groot + - Bynx's brother +first_seen: day-01 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-56.md +--- + +# Garadul + +## Summary + +Garadul, previously recorded as Garadwal or Guardwel and known as the Terror of the Sands, is one of Attabre's Sphinx children and Bynx's brothers. He was a Sphinx protector of the Dunnen People, corrupted when he consumed a void elemental, and imprisoned in one of the eight dome prisons. + +## Known Details + +- Tales describe him as the Terror of the Sands, nightmare of the darkness, and a being that would consume souls. +- Garadul was a Sphinx protector of the Dunnen People before his corruption. +- He was corrupted when he consumed a void elemental. +- He was imprisoned in one of the eight dome prisons. +- Early Everchard horror connected him to a sphinx that learned dark magic and experimented on itself. +- [Brutor Ruby Eye](brutor-ruby-eye.md) called him the only void they could find, one of eight whose escape would weaken the Barrier, and someone the wizards agreed needed containment. +- Elementals later described Garadul as their master and said he was associated with sand, earth, and fire. +- He was said to have been buried north of Aegis-on-Sands and imprisoned in the Prison of the Sands. +- Wrath/Kolin was asked to search for Garadul at Black Scale. +- Cardonal's laboratory lore says Garadul was leader or protector of the Dunnen people, consumed a void lieutenant or void elemental, slaughtered the rest of the Dunnen people after his corruption, and was locked up after the event. +- The dragon crash into Grand Towers was said to have weakened the prisons enough for Garadul to escape. +- Infestus appeared in a dream sending Garadul through a portal with a coin; another dream showed abnormal dragons near Garadul's prison and a void voice asking `where is he I know you know`. +- Garadul moved through Blackscale, returned to the dome, and attacked Baytail Accord before teleporting away. +- Dunensend lore says Excellence protected the vultures after Garadul failed, while Goliaths once asked Excellence for help trapping his brother. +- Day 36 says Garadul ate Pride, leaving The Guilt unconscious and triggering Pride's attempted disabling of systems before consumption. +- Grand Towers orb lore says Garadul was locked downstairs, heard a chair-guy through his greater gravel children, and walked into Browning's trap. +- Geldrin offered Garadul to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. +- At Coalmont Falls, an automaton introduced himself as Garadul before activating recall protocol. +- Day 42 Ashkellon lore preserved Benu / Garadul / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadul, and [Trixus](trixus.md) as the last three of [Attabre](attabre.md)'s children walking on earth. +- Trixus, Benu, and Garadul are Bynx's brothers. +- The same book says Garadul looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. +- On Day 43, Garadul spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. +- Garadul appeared in Ashkellon for the sphinx-family reunion, refused to lay down weapons, killed Eliana, fought Benu, and was banished at 5:00. +- On Day 46, Morgana's attempt to reincarnate Metatous's incomplete spirit instead formed an elven male body with greenish hair and divine energy, who identified himself as Garadul. +- This reincarnated Garadul initially did not recognise the party and last remembered the desert and his people before the Dome existed; the party temporarily called him Groot. +- Morgana suspected much of Garadul had been in the vulture body, and Emeraldus was wondered to be one of his children. +- Garadul sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. +- After Invar restored Garadul from Feeble Mind, Garadul remembered everything, said he needed to find his brothers, and teleported away. +- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadul portrait, Grand Towers memory scenes with a toy figure of [Attabre](attabre.md) that [Bynx](bynx.md) identified as his father, and diary entries saying Argentum wanted to help Garadul fight elementals. +- Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadul, while preserving uncertainty about whether the original intentions remained good. +- On Day 56, Garadul was found behind a Barrier with Trixus, Benu, and Bynx in a Grand Towers control-room side area. He was clearer, said he would repay his misdeeds by helping the party, and asked that the dome be brought down now for different reasons. +- Garadul's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Hartwall to the downfall and said Argentum died. + +## Timeline + +- `day-01`: Garadul is named after Malcolm Donovan is found magically altered. +- `day-06`: Musher refers to a master and pact context connected to Garadul. +- `day-14`: Elementals describe Garadul as their master and connect him to elemental imprisonment. +- `day-15`: Brutor's lore frames Garadul as a void prisoner whose escape weakens the Barrier. +- `day-21`: Cold dreams, void language, and white dragonscale clues may connect back to Garadul. +- `day-23`: The desert laboratory identifies many Garadul variants, his Dunnen people history, void elemental connection, prison network, and possible escape mechanism. +- `day-25`: Rimewatch warnings describe dragons plotting to breathe the Terror of the Sands out of her prison. +- `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadul moving actively. +- `day-29`: Excellence says he protected the vultures after Garadul failed, and his brother was apparently looking for him. +- `day-36`: Garadul is tied to Pride's consumption, Browning's Grand Towers trap, Geldrin's skull-throne bargain, and the Garadul automaton variant. +- `day-42`: Ashkellon records connect Garadul to Benu, Trixus, Attabre's children, the Dumnens, and the hidden feather relic. +- `day-43`: Garadul's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. +- `day-46`: Garadul is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. +- `day-47`: Hartwall lab records and memory rooms add Garadul-family clues, including Argentum's aid, elemental fights, and Bynx identifying Attabre as his father. +- `day-56`: Garadul is found with Trixus, Benu, and Bynx behind a Grand Towers Barrier and urges the party toward bringing the dome down. + +## Related Entries + +- [Barrier](../concepts/barrier.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Black Scales](../factions/black-scales.md) +- [Cardonald's Desert Laboratory](../places/desert-laboratory.md) +- [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) +- [Trixus](trixus.md) +- [Benu](benu.md) +- [Ashkellon](../places/ashkellon.md) +- [Bynx](bynx.md) + +## Open Questions + +- Has he escaped, partially escaped, or only influenced agents from prison? +- Is Excellence's brother the same figure as Garadul, and why did Goliaths ask Excellence to trap him? +- What did Garadul mean by the betrayer or daughter sitting among the party, and by only one more remaining? +- Was Day 46 Garadul a restored whole person, a partial soul from Metatous's body, or another divided form? +- Was the undead sphinx reported near the Hartwall artifact lead connected to Trixus, Benu, Garadul, Bynx, or another sibling? +- Why does Garadul now want the dome brought down, and how does that differ from his earlier motives? +- Which father trusted the party after the children reunited, and what does his trust permit? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md deleted file mode 100644 index 6b98e88..0000000 --- a/data/6-wiki/people/garadwal.md +++ /dev/null @@ -1,119 +0,0 @@ ---- -title: Garadwal -type: person or imprisoned being -aliases: - - Guardwel - - Gardwel - - Gardwal - - Gardolwal - - Terror of the Sands - - nightmare of the darkness - - Garadwel - - Garaduel - - Guradwal - - Gardwell - - Groot - - Bynx's brother -first_seen: day-01 -last_updated: user-clarification -sources: - - data/4-days-cleaned/day-01.md - - data/4-days-cleaned/day-06.md - - data/4-days-cleaned/day-14.md - - data/4-days-cleaned/day-15.md - - data/4-days-cleaned/day-17.md - - data/4-days-cleaned/day-21.md - - data/4-days-cleaned/day-23.md - - data/4-days-cleaned/day-25.md - - data/4-days-cleaned/day-26.md - - data/4-days-cleaned/day-29.md - - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-42.md - - data/4-days-cleaned/day-43.md - - data/4-days-cleaned/day-46.md - - data/4-days-cleaned/day-47.md - - data/4-days-cleaned/day-56.md ---- - -# Garadwal - -## Summary - -Garadwal, also recorded as Guardwel and known as the Terror of the Sands, is one of Attabre's Sphinx children and Bynx's brothers. He was a Sphinx protector of the Dunnen People, corrupted when he consumed a void elemental, and imprisoned in one of the eight dome prisons. - -## Known Details - -- Tales describe him as the Terror of the Sands, nightmare of the darkness, and a being that would consume souls. -- Garadwal was a Sphinx protector of the Dunnen People before his corruption. -- He was corrupted when he consumed a void elemental. -- He was imprisoned in one of the eight dome prisons. -- Early Everchard horror connected him to a sphinx that learned dark magic and experimented on itself. -- [Brutor Ruby Eye](brutor-ruby-eye.md) called him the only void they could find, one of eight whose escape would weaken the Barrier, and someone the wizards agreed needed containment. -- Elementals later described Garadwal as their master and said he was associated with sand, earth, and fire. -- He was said to have been buried north of Aegis-on-Sands and imprisoned in the Prison of the Sands. -- Wrath/Kolin was asked to search for Garadwal at Black Scale. -- Cardonal's laboratory lore says Garadwal was leader or protector of the Dunnen people, consumed a void lieutenant or void elemental, slaughtered the rest of the Dunnen people after his corruption, and was locked up after the event. -- The dragon crash into Grand Towers was said to have weakened the prisons enough for Garadwal to escape. -- Infestus appeared in a dream sending Garadwal through a portal with a coin; another dream showed abnormal dragons near Garadwal's prison and a void voice asking `where is he I know you know`. -- Garadwal moved through Blackscale, returned to the dome, and attacked Baytail Accord before teleporting away. -- Dunensend lore says Excellence protected the vultures after Gardwal failed, while Goliaths once asked Excellence for help trapping his brother. -- Day 36 says Garadwal ate Pride, leaving The Guilt unconscious and triggering Pride's attempted disabling of systems before consumption. -- Grand Towers orb lore says Garadwal was locked downstairs, heard a chair-guy through his greater gravel children, and walked into Browning's trap. -- Geldrin offered Garadwal to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. -- At Coalmont Falls, an automaton introduced himself as Garaduel before activating recall protocol; this spelling is preserved as a possible variant or separate automaton identity. -- Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Attabre](attabre.md)'s children walking on earth. -- Trixus, Benu, and Garadwal are Bynx's brothers. -- The same book says Gardwell looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. -- On Day 43, Garadwal spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. -- Garadwal appeared in Ashkellon for the sphinx-family reunion, refused to lay down weapons, killed Eliana, fought Benu, and was banished at 5:00. -- On Day 46, Morgana's attempt to reincarnate Metatous's incomplete spirit instead formed an elven male body with greenish hair and divine energy, who identified himself as Garadwal. -- This reincarnated Garadwal initially did not recognise the party and last remembered the desert and his people before the Dome existed; the party temporarily called him Groot. -- Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. -- Garadwal sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. -- After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. -- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a toy figure of [Attabre](attabre.md) that [Bynx](bynx.md) identified as his father, and diary entries saying Argentum wanted to help Garadwal fight elementals. -- Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadwal, while preserving uncertainty about whether the original intentions remained good. -- On Day 56, Garadwal was found behind a Barrier with Trixus, Benu, and Bynx in a Grand Towers control-room side area. He was clearer, said he would repay his misdeeds by helping the party, and asked that the dome be brought down now for different reasons. -- Garadwal's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Hartwall to the downfall and said Argentum died. - -## Timeline - -- `day-01`: Garadwal is named after Malcolm Donovan is found magically altered. -- `day-06`: Musher refers to a master and pact context connected to Garadwal. -- `day-14`: Elementals describe Garadwal as their master and connect him to elemental imprisonment. -- `day-15`: Brutor's lore frames Garadwal as a void prisoner whose escape weakens the Barrier. -- `day-21`: Cold dreams, void language, and white dragonscale clues may connect back to Garadwal. -- `day-23`: The desert laboratory identifies many Garadwal variants, his Dunnen people history, void elemental connection, prison network, and possible escape mechanism. -- `day-25`: Rimewatch warnings describe dragons plotting to breathe the Terror of the Sands out of her prison. -- `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadwal moving actively. -- `day-29`: Excellence says he protected the vultures after Gardwal failed, and his brother was apparently looking for him. -- `day-36`: Garadwal is tied to Pride's consumption, Browning's Grand Towers trap, Geldrin's skull-throne bargain, and the Garaduel automaton variant. -- `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Attabre's children, the Dumnens, and the hidden feather relic. -- `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. -- `day-46`: Garadwal is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. -- `day-47`: Hartwall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx identifying Attabre as his father. -- `day-56`: Garadwal is found with Trixus, Benu, and Bynx behind a Grand Towers Barrier and urges the party toward bringing the dome down. - -## Related Entries - -- [Barrier](../concepts/barrier.md) -- [Elemental Prisons](../concepts/elemental-prisons.md) -- [Brutor Ruby Eye](brutor-ruby-eye.md) -- [Black Scales](../factions/black-scales.md) -- [Cardonald's Desert Laboratory](../places/desert-laboratory.md) -- [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) -- [Trixus](trixus.md) -- [Benu](benu.md) -- [Ashkellon](../places/ashkellon.md) -- [Bynx](bynx.md) - -## Open Questions - -- What are the other seven beings or poles connected to him? -- Has he escaped, partially escaped, or only influenced agents from prison? -- Is Excellence's brother the same figure as Garadwal, and why did Goliaths ask Excellence to trap him? -- What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? -- Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? -- Was the undead sphinx reported near the Hartwall artifact lead connected to Trixus, Benu, Garadwal, Bynx, or another sibling? -- Why does Garadwal now want the dome brought down, and how does that differ from his earlier motives? -- Which father trusted the party after the children reunited, and what does his trust permit? diff --git a/data/6-wiki/people/haze.md b/data/6-wiki/people/haze.md new file mode 100644 index 0000000..6d9fac5 --- /dev/null +++ b/data/6-wiki/people/haze.md @@ -0,0 +1,35 @@ +--- +title: Haze +type: divine dog +aliases: + - There + - Sierra's dog +first_seen: day-57 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-57.md +--- + +# Haze + +## Summary + +Haze is one of [Sierra](sierra.md)'s dogs. He appeared as a big dog after Geldrin said `There` to the cat, guided the party through Brass City, and helped them recover missing artifacts. + +## Known Details + +- Haze came to aid the party in their travels and said he was still due to their service to his mistress. +- Haze is one of Sierra's dogs. +- He warned the party not to damage Brass City. +- He brought Bob and Bosh, still cursed, and said he could fix them when the party was done. +- He guided the party to the Trixus-carved door and the planar control room. +- Haze could smell whether areas or objects were connected to the party's goals, including noting when something smelled wrong or changed. +- He disliked the fire-realm throne room because he could not smell Sierra there. +- Geldrin later placed part of Haze into Errol to help find the tail. + +## Related Entries + +- [Sierra](sierra.md) +- [Errol the Obsidian Raven](errol.md) +- [Brass City](../places/brass-city.md) +- [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md) diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md index 8198723..f76cd02 100644 --- a/data/6-wiki/people/infestus.md +++ b/data/6-wiki/people/infestus.md @@ -35,8 +35,8 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - A storm and insects accompanied black dragon activity, and the Barrier showed something like eight massive claws. - Brutor may have been killed by the black dragon. - Rimewatch records call Infestus `bane of multitude`, `slayer of Ruby eye`, black, and father of the veridican. -- Dirk dreamed of an obsidian city where black Dragonborn stood by an archway with mosquitoes on the shield, and Infestus sent Garadwal through a portal using a coin. -- Two plots were named near the Ice prison: removing certain cities and breaking out Garadwal. +- Dirk dreamed of an obsidian city where black Dragonborn stood by an archway with mosquitoes on the shield, and Infestus sent Garadul through a portal using a coin. +- Two plots were named near the Ice prison: removing certain cities and breaking out Garadul. - On Day 55, Wrath appeared as a black dragonborn fighting green dragons or Perodita's children and said basilisk coal at Coalmont Rally could teleport the party to Infestus. - On Day 56, the party reached Infestus through a Bluescale archway with strict rules, saw a museum curiosity from Keep Rememberence, and learned Infestus wanted to pay the party for deeds. The Great Infestus pub and Ember, a red dragonborn seeking news of red dragons and dragonborn, were part of this visit. - Umberous is Infestus' son. On Day 48, Umberous spoke on Infestus' behalf at Salanar's prison, wanted Rubyeye delivered to Infestus, and bargained not to tell Infestus about Rubyeye in exchange for a favour. @@ -48,8 +48,8 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - `day-14`: Infestus is named as the black dragon behind the Black Scales. - `day-16`: Black dragonborn agents, Errol, Alsafaur's skull, storm, and insect signs connect him to the hidden lab. - `day-17`: The broader council and shipment threads keep Infestus relevant. -- `day-25`: Infestus's titles and ties to Rubyeye, veridican, Peridita, and Garadwal plots are recorded at Rimewatch. -- `day-26`: Dirk's dream shows Infestus using a coin to send Garadwal through a portal. +- `day-25`: Infestus's titles and ties to Rubyeye, veridican, Peridita, and Garadul plots are recorded at Rimewatch. +- `day-26`: Dirk's dream shows Infestus using a coin to send Garadul through a portal. - `day-55`: Wrath points the party toward Infestus by basilisk coal. - `day-56`: The party visits Infestus through Bluescale and receives possible work or payment leads. - `day-57`: Infestus's wife helps send the party to Brass City. diff --git a/data/6-wiki/people/lady-evalina-hartwall.md b/data/6-wiki/people/lady-evalina-hartwall.md index a4190d2..5424e3b 100644 --- a/data/6-wiki/people/lady-evalina-hartwall.md +++ b/data/6-wiki/people/lady-evalina-hartwall.md @@ -40,7 +40,7 @@ Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall fami - [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [Icefang](icefang.md) - [Ennuyé](ennuyé.md) -- [Valententhide](valententhide.md) +- [Valentinhide](valentinhide.md) ## Open Questions diff --git a/data/6-wiki/people/leedus.md b/data/6-wiki/people/leedus.md new file mode 100644 index 0000000..2f92352 --- /dev/null +++ b/data/6-wiki/people/leedus.md @@ -0,0 +1,29 @@ +--- +title: Leedus +type: imprisoned being +aliases: + - Leedus + - Leedus +first_seen: day-57 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-57.md + - user clarification +--- + +# Leedus + +## Summary + +Leedus is one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md). + +## Known Details + +- The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. +- Day 57 lore says Leedus' father descended to earth to save his child from imprisonment. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Barrier](../concepts/barrier.md) +- [Attabre](attabre.md) diff --git a/data/6-wiki/people/limusvita.md b/data/6-wiki/people/limusvita.md new file mode 100644 index 0000000..470ae68 --- /dev/null +++ b/data/6-wiki/people/limusvita.md @@ -0,0 +1,30 @@ +--- +title: Limusvita +type: imprisoned being +aliases: + - Limusvita + - Limusvita + - Limusvita +first_seen: day-26 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-26.md + - user clarification +--- + +# Limusvita + +## Summary + +Limusvita, earlier recorded as Limusvita or Limusvita, is one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md). + +## Known Details + +- The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. +- Earlier records describe Limusvita as the ooze or life prisoner who survived by holding the Barrier up while The Mother siphoned energy. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Barrier](../concepts/barrier.md) +- [The Mother](the-mother.md) diff --git a/data/6-wiki/people/lortesh.md b/data/6-wiki/people/lortesh.md index 5909c61..3d59815 100644 --- a/data/6-wiki/people/lortesh.md +++ b/data/6-wiki/people/lortesh.md @@ -34,7 +34,7 @@ Lortesh, also recorded as Hortekh, was a monstrous green-dragon-linked threat ti ## Related Entries - [Dunensend](../places/dunensend.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Peridita](peridita.md) - [Infestus](infestus.md) diff --git a/data/6-wiki/people/malcolm-donovan.md b/data/6-wiki/people/malcolm-donovan.md index 31fb661..4b73305 100644 --- a/data/6-wiki/people/malcolm-donovan.md +++ b/data/6-wiki/people/malcolm-donovan.md @@ -34,7 +34,7 @@ Malcolm Donovan was a man from Albec whose wife came looking for him and whose a ## Related Entries - [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Everchard](../places/everchard.md) ## Open Questions diff --git a/data/6-wiki/people/mericok.md b/data/6-wiki/people/mericok.md new file mode 100644 index 0000000..066fc4d --- /dev/null +++ b/data/6-wiki/people/mericok.md @@ -0,0 +1,31 @@ +--- +title: Mericok +type: imprisoned being +aliases: + - Mericok + - Merocole +first_seen: day-55 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-55.md + - user clarification +--- + +# Mericok + +## Summary + +Mericok, earlier recorded as Merocole, is one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md). + +## Known Details + +- The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. +- Earlier notes describe Mericok as replacing the High Priest and appearing under Greater Restoration as a large smoke sphere with spidery legs and a human-like face. +- Mericok wanted Papa Marmaru, while Papa Marmaru warned not to trust Mericok. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Barrier](../concepts/barrier.md) +- [Papa Marmaru](papa-marmaru.md) +- [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md) diff --git a/data/6-wiki/people/minor-figures-day-46.md b/data/6-wiki/people/minor-figures-day-46.md index 695d8ba..fb2c835 100644 --- a/data/6-wiki/people/minor-figures-day-46.md +++ b/data/6-wiki/people/minor-figures-day-46.md @@ -18,11 +18,11 @@ This rollup keeps one-off, uncertain, and supporting named figures from Day 46 s | Limos Vita | Name invoked by the communicating mushroom as a friend or contact. | Rollup/open thread. | | Berry eyes | Figure or presence in Morgana's infinite-library vision who asked what she was doing there. | Rollup/open thread. | | Lord [unclear: Dunthing] | A student of this lord took the mushroom organism to study. | Rollup/open thread. | -| Benn | Previously banished Garadwal; Garadwal did not arrive where expected. | Rollup; [Garadwal](garadwal.md). | -| Emeraldus | Wondered to be one of Garadwal's children during the Garadwal reincarnation sequence. | Rollup/open thread. | +| Benn | Previously banished Garadul; Garadul did not arrive where expected. | Rollup; [Garadul](garadul.md). | +| Emeraldus | Wondered to be one of Garadul's children during the Garadul reincarnation sequence. | Rollup/open thread. | | Amoursorate | Linked to the scratched unlit orb and asked the party to look after her son. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | | Squeal | Source behind Errol's possession and Rubyeye-message confusion; asked for `the loss of everything` rather than weather through the Barrier. | Rollup/open thread. | -| Sierra, Lodest, Anastasia | Seen through a Dunnen door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | [Anastasia](anastasia.md) / rollup/open thread. | +| [Sierra](sierra.md), Lodest, Anastasia | Seen through a Dunnen door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | [Anastasia](anastasia.md) / rollup/open thread. | | Platinum | Cardonald's cat; warned that Errol was possessed by one of Squeal's things and headed toward Dotharl. | Rollup/open thread. | | [Dotharl](dotharl.md) | Player character played by Joshua; construct- or soul-linked figure aware for twenty years; woke near Rhime watches after being propelled through a door. | Standalone player character page. | | Chorus magpie | Landed on Morgana, said The Chorus sent it, and said the Chorus can now help. | [The Chorus](the-chorus.md) / rollup. | diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index 7ddf853..0ff2806 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -25,10 +25,10 @@ sources: | Blackstorm | Author of `Shaman Blackstorm's Tome on the Significance of the Number 5`. | Rollup. | | Taotli? | Uncertain name associated with a picture in the flying room and a hidden handle. | Rollup; uncertainty preserved. | | Rimefrost | Shouted for "little dragons" when cold entered the room before the party killed the ice elemental. | Rollup; elemental thread. | -| Argentum | Wanted to help Garadwal and died after falling to the armies. | Rollup. | +| Argentum | Wanted to help Garadul and died after falling to the armies. | Rollup. | | Metatous | Diary said Metatous seemed more powerful than expected while fighting elementals. | Existing/open thread; rollup. | | `[Hafelius?]` | Uncertain name in whose name elementals were fought. | Rollup; uncertainty preserved. | -| Taler, Bronze | Preserved in diary discussion about words for captives and alternatives for Garadwal. | Rollup. | +| Taler, Bronze | Preserved in diary discussion about words for captives and alternatives for Garadul. | Rollup. | | Shotcher | Invar had difficulty connecting to Shotcher in the frost prison. | Rollup. | | Dorion, Tim, Geoffrey | Goat, bull, and lion heads on the snake door; Geoffrey wanted a new body. | Rollup and [Elemental Prisons](../concepts/elemental-prisons.md). | | Perodita | Geldrin's spellbook showed Perodita as a massive dragon with scorpion tail and insect-like wings. | Existing [Peridita](peridita.md) spelling cluster; rollup preserves Day 47 spelling. | diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 7b9384c..4a5362b 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -10,8 +10,8 @@ sources: | Figure | Day | Details | Coverage | |---|---|---|---| | Infestus's wife | 57 | Gave the party a powerful shield crystal and scrolls, smashed an orb, and transformed a tiny human into a blue dragon for Brass City travel. | Rollup / [Infestus](infestus.md). | -| Salinas | 57 | Infestus could ensure Salinas caused no issues during the treaty/council context. | Rollup. | -| Excellence of Air / Air | 57 | Left Brass City and never returned; Haze says Air went to the dome to make a trap for Sierra so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | +| Salinus | 57 | Infestus could ensure Salinus caused no issues during the treaty/council context. | Rollup. | +| Excellence of Air / Air | 57 | Left Brass City and never returned; Haze says Air went to the dome to make a trap for [Sierra](sierra.md) so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | | [Envy](envy.md) | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envy is a removed-emotion manifestation, though the Envi/Ennuyé relationship remains uncertain. | Standalone page / [Ennuyé](ennuyé.md). | | Hydran | 57 | Named by the fountain water elemental before being given to blue dragons; same water patron later involved in merbaby rescue. | [Hydran](hydran.md). | | Lord of the Brass City | 57 | Associated with weighted idols, jewellery, gravity, and weight in the statue corridor. | [Brass City](../places/brass-city.md). | @@ -19,7 +19,7 @@ sources: | Goklhar | 57 | Possible high-priest reference near `Gleams in the first light`; spelling and identity uncertain. | Rollup. | | `Lies in the morning dew` | 57 | Prophet of the light, fine-dressed statue with book, rose, and brazier. | [Brass City Council](../factions/brass-city-council.md). | | Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | -| Haze | 57 | Cat became Haze as a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | +| [Haze](haze.md) | 57 | Cat became Haze as a big dog after Geldrin said `There`; Haze is one of Sierra's dogs; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | [Sierra](sierra.md). | | Bob and Bosh | 57 | Still cursed; Haze said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | | [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana](eliana.md) / [Lady Elissa Hartwall](lady-elissa-hartwall.md). | | Cacophony | 57 | Appeared to Morgana as a huge worm, died, and showed Rubyeye removing his eye. | Rollup / [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/people/minor-figures-days-23-31.md b/data/6-wiki/people/minor-figures-days-23-31.md index cf85931..92b1918 100644 --- a/data/6-wiki/people/minor-figures-days-23-31.md +++ b/data/6-wiki/people/minor-figures-days-23-31.md @@ -29,7 +29,7 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch - Heurhall: human figure in a 314 BD dining-room painting; Iceland later said he had tried to help Dirk's people with Heurhall. - Gavin: named in a mirror clue about needing something from a gift to Gavin. - Inqueshwash: abnormal dragon or creature who thought Dirk looked tasty and said his mother sent him to be eaten. -- Perodot princess: figure said to be very well known by the void elemental near Garadwal's prison. +- Perodot princess: figure said to be very well known by the void elemental near Garadul's prison. ## Days 25-26 diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index 43c9e08..d7515f4 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -14,8 +14,8 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and ## Hartwall and Auction Figures -- Lan: earth god associated with love, home, and family; the statue of Lan outside Hartwall resembled the Statue of Serva. -- Serva: figure represented by the Statue of Serva, stylistically similar to Lan's statue. +- Lan: earth god associated with love, home, and family; the statue of Lan outside Hartwall resembled the Statue of Sierra. +- [Sierra](sierra.md): Goddess of the Hunt, represented by the Statue of Sierra, stylistically similar to Lan's statue. - Lady Freya: present in Hartwall while Lady Elissa Hartwall remained injured. - Human with a very noticeable underbelly: seen at the Baked Mattress. - Barkeep described as `Patches of night & husband`: associated with the Baked Mattress. @@ -23,7 +23,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Aon Ankt: Eliana's blood letting tutor, seen in the third row. - Janet Boulderdew: bought Smehlebeard whiskey. - Shiny man dressed up by someone: bought five Black Dragons. -- Raven no. 1 / Raven 1 and Raven 2: auction bidders; Raven 1 bought a Grand Towers penny, `Valententide's Betrayal`, and the holy symbol of Noxia, while Raven 2 bought silver pieces associated with gnome great Fummouth. +- Raven no. 1 / Raven 1 and Raven 2: auction bidders; Raven 1 bought a Grand Towers penny, `Valentinhide's Betrayal`, and the holy symbol of Noxia, while Raven 2 bought silver pieces associated with gnome great Fummouth. - Tabaxi with a shaved head and pink mohawk: bought a Brass City coin. - Lord Bleakstorm: depicted in a painting refusing demands; also noted as a possible tree name at Goldenswell's Museum Gardens. - Caroline Harthwall(?) with an infant and blue cow: uncertain figure in an auction painting. diff --git a/data/6-wiki/people/minor-figures-days-36-40-41.md b/data/6-wiki/people/minor-figures-days-36-40-41.md index ad8f904..8d61ce6 100644 --- a/data/6-wiki/people/minor-figures-days-36-40-41.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -21,7 +21,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Lead human and pigeon by the main building | Pigeon reported the lead human gone after explosions. | Rollup. | | Captain paid 25 platinum | Ran toward Brookville Springs after payment. | Party Treasury and rollup. | | Seneshell | Ran Hazy Days; explained Pride, The Guilt, and Grand Towers. Possibly distinct from day-35 Mr Seneshell. | Rollup; unresolved merge preserved. | -| The Guilt and [Pride](pride.md) | The Guilt was Avatar of Pride; Pride was eaten by Garadwal. Pride is a removed elven emotion manifestation. | [Excellences](../concepts/excellences.md), [Removed Elven Emotions](../concepts/removed-elven-emotions.md). | +| The Guilt and [Pride](pride.md) | The Guilt was Avatar of Pride; Pride was eaten by Garadul. Pride is a removed elven emotion manifestation. | [Excellences](../concepts/excellences.md), [Removed Elven Emotions](../concepts/removed-elven-emotions.md). | | [uncertain: Morrowred] | Said to have sold out the leaders. | Rollup; uncertain. | | Mercy / Sopparra | Brookville Springs contact; Sopparra identified with Mercy. | [Brookville Springs](../places/brookville-springs.md) and rollup. | | Briker / Magi | Tattooed female sparrow aarakocra in Seneshell's hall. | Rollup; uncertain variants. | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index 7f897fb..be1984e 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -25,7 +25,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Pengalis | Named on Goliath coin as Domain of Pengalis. | Places/items rollups; identity unresolved. | | Sefu, Holdhum, Tor, Attabo, El [uncertain: corna] / Bridge, Seara, Scorcher, [uncertain: Shielded armel] | Goliathified god statues and offering responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md); gods rollup via [Gods' Bargains](../concepts/gods-bargains-behind-the-barrier.md). | | Igraine, [uncertain: Adilth], elderly human man, dwarf man, pregnant elven woman | White-roses cider vision figures. | Rollup/open thread. | -| Warriors of the Lion and Dunemin | Dedication on hidden Benu / Guradwal picture. | Rollup/open thread. | +| Warriors of the Lion and Dunemin | Dedication on hidden Benu / Garadul picture. | Rollup/open thread. | | Lute | Seen in Stitcher smoke image with Ruby Eye about cloaks and hot hands. | Existing [Luth](luth.md) uncertain; not merged. | | Orange-and-blue-robed dragonborn and book-carrying Goliath | Seen by Morgana in tower map room. | Rollup/open thread. | | Hephestus / Hephestos | Air-barrier prisoner or soul; warned not to free air entity and later wanted a pact. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | @@ -33,7 +33,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Emri / Emi and Joy | Ghost figures in dome; Emri requested Treamon's skull and lacked soul-parts. | Existing [Ennuyé](ennuyé.md) / [Joy](joy.md), status/open threads. | | Treamon / Tremaion, Kashe / Kesha, Tellfether, medusa, statue figure, child of the Mother, Thuvia, Brother fracture | Noxia chamber battle figures and tools. | Rollup; [Noxia](noxia.md); Brother Fracture existing status. | | Thromgore, Steven / Steve, Stuart / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | -| [uncertain: Shulcher], Sierra, Earth Waker | Book and Noxia-corruption history figures. | Rollup/open thread; [Noxia](noxia.md). | +| [uncertain: Shulcher], [Sierra](sierra.md), Earth Waker | Book and Noxia-corruption history figures; Sierra is the Goddess of the Hunt. | [Noxia](noxia.md). | | Partially ice dwarf, strapping Goliath, half-elf from Everdard, [uncertain: leechus] | Bleakstorm castle figures and lost-friend clue. | [Bleakstorm](../places/bleakstorm.md) / rollup. | | Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, Jin Woo | Hartwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | @@ -50,7 +50,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | | Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcroft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | | Earl of Goldenswell, Hartwall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | -| Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadwal feather conversation and Benu-summoning details. | Rollup/open thread. | +| Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadul feather conversation and Benu-summoning details. | Rollup/open thread. | | Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | [Errol the Obsidian Raven](errol.md) and status rollup. | ## Day 44 @@ -63,9 +63,9 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Acroneth, Crindler, Belocoose, sphinx on another plane | Names from Geldrin's enrollment effect. | Rollup/open thread. | | Valenth Cardonald, gremlin janitor, Torlish Hartwall / Hartwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Serpans, four-armed vulture men, mindflayer-like wizard, Isobanne | Sphinx book and study-hall/classroom figures. | Rollup/open thread. | -| Ennuyé / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Ennuyé](ennuyé.md), [Valententhide](valententhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Ennuyé / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Ennuyé](ennuyé.md), [Valentinhide](valentinhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Everard, Valenth, Brotor / Brutor, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Miana / Avalina | Student identities and old school group. | Standalone entry plus existing pages where present. | -| Bright, Argathum / Argenthum, Mr Cardonald, lady of destruction, very dark-skinned elf with green liquid | Lessons, god-touch, and possible Noxia blood clues. | [Valententhide](valententhide.md), [Noxia](noxia.md), rollup. | +| Bright, Argathum / Argenthum, Mr Cardonald, lady of destruction, very dark-skinned elf with green liquid | Lessons, god-touch, and possible Noxia blood clues. | [Valentinhide](valentinhide.md), [Noxia](noxia.md), rollup. | | Altith / Icefang, Emeraldus, Tallith, Blackhold | Future warning, janitor/broom, and route figures. | [Icefang](icefang.md), rollup. | | Professor Arnisimus Goldenfields and Arnisimus's love | Quarters with Goldenswell waterwheel plans, Larn symbol, seven cat collars. | Rollup/open thread. | | Vita, Mr Bleakthorn, the sisters, Aurises | Conjuration, Igraine elementals, and void-dust instruction figures. | Rollup; [Void Spheres](../items/void-spheres.md). | diff --git a/data/6-wiki/people/minor-figures-days-48-52.md b/data/6-wiki/people/minor-figures-days-48-52.md index 105417a..860409e 100644 --- a/data/6-wiki/people/minor-figures-days-48-52.md +++ b/data/6-wiki/people/minor-figures-days-48-52.md @@ -30,9 +30,9 @@ This rollup preserves named and name-like figures from Days 48 and 52 that do no | Lhura Trutbrow | 48 | Dwarf statue plaque: slain by Struct but bound in chain upon him. | Rollup. | | Samuel | 48 | Demon named on dwarf statue plaques. | Rollup. | | Struct | 48 | Demon named on dwarf statue plaques; killed Samuel and Lhura. | Rollup. | -| Aglue? / Anemie? | 48 | Uncertain possible names for the featureless dome figure / lost part of Valententhide. | [Valententhide](valententhide.md). | -| Thomas | 48 | Said to have put the lost part of Valententhide in the dome and taken what was there. | Rollup / old-school Thomas-Ennuyé thread. | -| Simon | 48 | Pieced-together figure with Stoven and Stuart; wanted Valententhide and communicated with Throngore. | Rollup. | +| Aglue? / Anemie? | 48 | Uncertain possible names for the featureless dome figure / lost part of Valentinhide. | [Valentinhide](valentinhide.md). | +| Thomas | 48 | Said to have put the lost part of Valentinhide in the dome and taken what was there. | Rollup / old-school Thomas-Ennuyé thread. | +| Simon | 48 | Pieced-together figure with Stoven and Stuart; wanted Valentinhide and communicated with Throngore. | Rollup. | | Stoven and Stuart | 48 | Former prisoners released about twenty years after imprisonment; arrived with Simon. | Rollup. | | Squeall / Squeal | 52 | God of the lost / possible grandfather in Dothral's family thread. | Rollup / open thread. | | Cedric | 52 | Cricket-headed follower of Bridget who handled waiting, gruel, doors, and later ate gruel like ambrosia. | [Bridget's Doors](../concepts/bridgets-doors.md). | diff --git a/data/6-wiki/people/minor-figures-days-53-56.md b/data/6-wiki/people/minor-figures-days-53-56.md index 5b92fd3..1410218 100644 --- a/data/6-wiki/people/minor-figures-days-53-56.md +++ b/data/6-wiki/people/minor-figures-days-53-56.md @@ -21,8 +21,8 @@ sources: - Green-eyed woman in Dotharl's dream: woke and helped Dotharl inside the glass dome; had an injured friend, a hostile brother, and possibly a new friend, Envy. - No-Hurt: entity Morgana tried to speak with; it had spread everywhere and killed things. - Blackthorn: remembered by Invar as someone not allowed to free his friend because it was a trick; Bridget allowed the trap because she found it funny. -- Merocole: god or possessing entity replacing the High Priest at Papa Marmaru; appeared under Greater Restoration as a smoke sphere with spidery legs and a human-like face. -- Papa Marmaru: raspy-voiced figure who warned not to trust Merocole, said Marmaru had chosen to be there, and looked after the dwarves. +- [Mericok](mericok.md): god or possessing entity replacing the High Priest at Papa Marmaru; one of the eight beings imprisoned to power the Barrier; appeared under Greater Restoration as a smoke sphere with spidery legs and a human-like face. +- [Papa Marmaru](papa-marmaru.md): raspy-voiced figure and one of the eight beings imprisoned to power the Barrier; warned not to trust Mericok, said Marmaru had chosen to be there, and looked after the dwarves. - Humility fragments: twenty-seven beings in the Grand Towers control area, parts of Thomas removed so he could become Envy. - `[unclear: Keakis?]`: uncertain prison or rune name that Geldrin did not close normally when fixing prison runes. - Scumbleduck / Scumbledunk: Juticar who appeared at the control room and later betrayed the party by teleporting away after hearing the Browning discussion. diff --git a/data/6-wiki/people/noxia.md b/data/6-wiki/people/noxia.md index 1128106..106b750 100644 --- a/data/6-wiki/people/noxia.md +++ b/data/6-wiki/people/noxia.md @@ -29,7 +29,7 @@ Noxia is a destructive divine or corrupting force tied to scorpion symbolism, ba - Earlier auction and bargain clues connected Noxia to a holy symbol, bargain trinkets, and barrier sickness. - On `day-42`, the party found a Noxia chamber with purple crackling energy, a green dripping blob, a medusa, a statue figure, a child of the Mother with a worm, an eyeless dog, bronze, and a telescope like Emri's. -- The party killed the Noxia Beast avatar, while a later observatory book said Noxia wanted to walk on the earth and that Noxia's blood corrupted land after a fight with Sierra. +- The party killed the Noxia Beast avatar, while a later observatory book said Noxia wanted to walk on the earth and that Noxia's blood corrupted land after a fight with [Sierra](sierra.md), Goddess of the Hunt. - On `day-44`, Ennuyé recognized Geldrin as touched by the `lady of destruction`, and a bottle of green liquid from the desert may have been Noxia blood. - The green liquid wanted to return to the rest of itself in the desert; after time-door events, some of it had returned home. - On `day-53`, Perodita claimed the goliaths' suffering was tribute to Noxia. @@ -40,6 +40,7 @@ Noxia is a destructive divine or corrupting force tied to scorpion symbolism, ba - [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) - [Ashkellon](../places/ashkellon.md) +- [Sierra](sierra.md) ## Open Questions diff --git a/data/6-wiki/people/original-goliath-sphinx.md b/data/6-wiki/people/original-goliath-sphinx.md index a1fb6a6..d0430a0 100644 --- a/data/6-wiki/people/original-goliath-sphinx.md +++ b/data/6-wiki/people/original-goliath-sphinx.md @@ -33,7 +33,7 @@ The original Goliath Sphinx was the Sphinx meant for the Goliaths, stolen and al - [Bynx](bynx.md) - [Attabre](attabre.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) - [Barrier](../concepts/barrier.md) - [Void Spheres](../items/void-spheres.md) diff --git a/data/6-wiki/people/papa-marmaru.md b/data/6-wiki/people/papa-marmaru.md new file mode 100644 index 0000000..275e096 --- /dev/null +++ b/data/6-wiki/people/papa-marmaru.md @@ -0,0 +1,33 @@ +--- +title: Papa Marmaru +type: imprisoned being +aliases: + - Papa Marmaru + - Papa Illmarne + - Papa I Meurina +first_seen: day-53 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-55.md + - user clarification +--- + +# Papa Marmaru + +## Summary + +Papa Marmaru is one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md), connected to Papa Illmarne's dome near Magstein. + +## Known Details + +- The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. +- Earlier notes refer to Papa Illmarne's dome, Papa's Dome, and Papa I Meurina in related prison lore. +- Papa Marmaru had chosen to be there, looked after the dwarves, and warned Invar not to trust Mericok / Mericok. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Barrier](../concepts/barrier.md) +- [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md) +- [Mericok](mericok.md) diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index a4b68b9..b973bbf 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -51,7 +51,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T ## Related Entries - [Lortesh](lortesh.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Infestus](infestus.md) ## Open Questions diff --git a/data/6-wiki/people/pride.md b/data/6-wiki/people/pride.md index 11ff94e..7a67689 100644 --- a/data/6-wiki/people/pride.md +++ b/data/6-wiki/people/pride.md @@ -22,7 +22,7 @@ Pride is a manifestation of one of the emotions removed from the elves. It was p - Pride was expected to fix a prison but may have opened it instead. - The Guilt was identified as an Avatar of Pride. -- Day 36 says Pride had been eaten by Garadwal, was a dark entity who wanted people to be proud, and tried to disable as much as possible before being consumed. +- Day 36 says Pride had been eaten by Garadul, was a dark entity who wanted people to be proud, and tried to disable as much as possible before being consumed. - On Day 48, Pride teleported away after Wrath brought him to the dwarven city, and the party later killed Pride; this released a void elemental that absorbed its brother and may also have absorbed Pride. ## Related Entries @@ -30,7 +30,7 @@ Pride is a manifestation of one of the emotions removed from the elves. It was p - [Removed Elven Emotions](../concepts/removed-elven-emotions.md) - [Wrath](wrath.md) - [Envy](envy.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Excellences](../concepts/excellences.md) - [Elemental Prisons](../concepts/elemental-prisons.md) diff --git a/data/6-wiki/people/salinus.md b/data/6-wiki/people/salinus.md new file mode 100644 index 0000000..737547a --- /dev/null +++ b/data/6-wiki/people/salinus.md @@ -0,0 +1,32 @@ +--- +title: Salinus +type: imprisoned being +aliases: + - Salinus + - Salinas + - Salias + - salt dragon +first_seen: day-14 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-14.md + - user clarification +--- + +# Salinus + +## Summary + +Salinus is the salt dragon and one of the eight beings imprisoned to power the [Barrier](../concepts/barrier.md). + +## Known Details + +- The eight Barrier prisoners were Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. +- Salinus was held in the [Salt Dragon Prison](../places/salt-dragon-prison.md), a smaller barrier under the Seaward quarry. +- Earlier records use Salinas or Salias for salt-related prison references. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Barrier](../concepts/barrier.md) +- [Salt Dragon Prison](../places/salt-dragon-prison.md) diff --git a/data/6-wiki/people/sierra.md b/data/6-wiki/people/sierra.md new file mode 100644 index 0000000..90d0941 --- /dev/null +++ b/data/6-wiki/people/sierra.md @@ -0,0 +1,46 @@ +--- +title: Sierra +type: goddess +aliases: + - Goddess of the Hunt + - Cierra +first_seen: day-20 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-57.md +--- + +# Sierra + +## Summary + +Sierra is the Goddess of the Hunt. Haze is one of her dogs, and the so-called spears of Sierra were her arrows. + +## Known Details + +- Huntmaster Thrune served at Sierra's temple and said Ruby Eye had often spoken to the church. +- A spear gifted by a Huntsman of Sierra was actually one of Sierra's arrows; five were taken from Sierra's last battlefield. +- The statue of Lan outside Hartwall was very similar in style to the Statue of Sierra. +- Noxia's blood corrupted the earth after a fight between Noxia and Sierra. +- A Dunnen-door vision showed the statue of Sierra restored. +- Hartwall lab rooms showed a battle between Noxia and Sierra, later connected to Sierra's arrows. +- Haze is one of Sierra's dogs. +- On Day 57, Haze said the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place. + +## Related Entries + +- [Haze](haze.md) +- [Sierra's Arrows](../items/sierras-arrows.md) +- [Noxia](noxia.md) +- [Excellences](../concepts/excellences.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) + +## Open Questions + +- How does Browning intend to take Sierra's place? +- What happened at Sierra's last battlefield? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 6d08a11..43c4697 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -96,7 +96,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Treamen | killed or defeated | `data/4-days-cleaned/day-31.md` | Earth Excellence whose jagged purple crystal skull artifact was recovered. | | Mr Seneshell / snake-bodied boss | killed | `data/4-days-cleaned/day-35.md` | Investigated the false drawer in white gloves, later transformed lower body into a snake and was killed by Geldrin's fireball. | | Llamia cart guards and external cart guards | killed | `data/4-days-cleaned/day-35.md` | Guards transformed into llamia during prisoner-cart battle; all bad guys were dead after the fight. | -| [Pride](pride.md) | removed-emotion manifestation; eaten by Garadwal, later killed/possibly absorbed | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-48.md` | Manifestation of an emotion removed from the elves; dark entity, boss of The Guilt; tried to disable as much as possible before consumption. | +| [Pride](pride.md) | removed-emotion manifestation; eaten by Garadul, later killed/possibly absorbed | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-48.md` | Manifestation of an emotion removed from the elves; dark entity, boss of The Guilt; tried to disable as much as possible before consumption. | | The betrayer | killed | `data/4-days-cleaned/day-36.md` | Killed in fight with mutated animals near Valenthielles prison; exact identity not stated. | | Soot | bones scattered | `data/4-days-cleaned/day-36.md` | Skeletal dragon's flames vanished after Geldrin's skull-throne bargain; bones scattered. | | Half-elf wizard, dragonborn rogue, pigeon aarakocra rogue | killed | `data/4-days-cleaned/day-40.md` | Bell-tower attackers in Azureside. | @@ -106,7 +106,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Araks | killed by party | `data/4-days-cleaned/day-42.md` | Dragonborn in Ashkellon throne room; body returned to throne with dagger in back. | | Emmeredge | dead | `data/4-days-cleaned/day-42.md` | Died during the Ashkellon Noxia-chamber battle. | | Noxia Beast avatar | killed | `data/4-days-cleaned/day-42.md` | Avatar killed, but Noxia's larger status remains open. | -| Garadwal | banished, later clearer and seeking to repay misdeeds | `data/4-days-cleaned/day-43.md`, `data/4-days-cleaned/day-56.md` | Benu and Garadwal fought outside Ashkellon; Garadwal was banished at 5:00. Later clarification: he was originally a Sphinx protector of the Dunnen People, corrupted by consuming a void elemental and imprisoned in one of the eight dome prisons. | +| Garadul | banished, later clearer and seeking to repay misdeeds | `data/4-days-cleaned/day-43.md`, `data/4-days-cleaned/day-56.md` | Benu and Garadul fought outside Ashkellon; Garadul was banished at 5:00. Later clarification: he was originally a Sphinx protector of the Dunnen People, corrupted by consuming a void elemental and imprisoned in one of the eight dome prisons. | ## Missing, Disappeared, or Unresolved @@ -129,7 +129,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Elementarium | rescued but altered/unresolved | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Imprisoned while an impostor appeared in town crier information; later rescued from prisoner cart and woke with green eyes. | | Brookville Springs leader / lead human | vanished | `data/4-days-cleaned/day-36.md` | Missing on the bang night after purple explosions. | | Newgate's sister and doppel/imposter | unresolved | `data/4-days-cleaned/day-36.md` | Claymeadow message reported Newgate's doppel/imposter in quarters and broken Bird. | -| The Guilt | unconscious in dangerous chest | `data/4-days-cleaned/day-36.md` | Avatar of Pride; condition tied to Pride being eaten by Garadwal. | +| The Guilt | unconscious in dangerous chest | `data/4-days-cleaned/day-36.md` | Avatar of Pride; condition tied to Pride being eaten by Garadul. | | Icefang | dead or dying, to be buried | `data/4-days-cleaned/day-36.md` | Returned as frost dragon, badly injured, retrieved by water elemental; Cardunel planned burial near Snowsorrow. | | Lord Bleakstorm | dead but active outside dome | `data/4-days-cleaned/day-36.md` | Delivered Icefang's message and gave snowflake coin; cannot remain inside dome long. | | Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | @@ -139,7 +139,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | | Steven / Steve | missing from barrier after confrontation | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Thromgore's boy had helped contain Valentenhide and wanted to `Bob stuff`; later no longer in his barrier. | | [Errol the Obsidian Raven](errol.md) | party companion; formerly missing / possibly off-plane | `data/4-days-cleaned/day-43.md`, `data/4-days-cleaned/day-46.md`, `data/4-days-cleaned/day-48.md`, `data/4-days-cleaned/day-57.md` | Cardonald could not find Ruby Eye or Errol, perhaps because they were not on the same plane. Errol later returned altered, was fixed, continued carrying messages, and becomes a party companion. | -| Hannah | wiped from time and space | `data/4-days-cleaned/day-44.md` | Valententhide said Hannah should not be visible; after return the party remembered only Hannah turning to dust in a cave, not her name. | +| Hannah | wiped from time and space | `data/4-days-cleaned/day-44.md` | Valentinhide said Hannah should not be visible; after return the party remembered only Hannah turning to dust in a cave, not her name. | ## Captive, Imprisoned, or Detained @@ -149,7 +149,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Halfling girl | subdued after Barrier attack | `data/4-days-cleaned/day-05.md` | Captive/hostile status after the attack is not fully detailed. | | Boulder elementals | left in laboratory room | `data/4-days-cleaned/day-16.md` | Party questioned whether they were slave-diggers and left them there. | | Void fragment/creature | freed or contactable, reliability uncertain | `data/4-days-cleaned/day-16.md` | Released a contact circle of obsidian after the party tried to let it out. | -| Elemental prisoners / eight beings | trapped or exploited | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-15.md` | Barrier system may use quasi-elemental prisoners as batteries. | +| Elemental prisoners / eight beings | trapped or exploited | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-15.md` | The eight beings imprisoned to power the Barrier are Valentinhide, Anorazorak, Garadul, Limusvita, Salinus, Leedus, Mericok, and Papa Marmaru. | | Water elementals chained to chariot | chained, with party, pending auction | `data/4-days-cleaned/day-22.md` | They wanted something [unclear] and agreed to come on the big boat. | | Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaw on the Earl's orders under treason accusations. | | [Silver](silver.md) | soul destroyed, construct taken over | `data/4-days-cleaned/day-23.md` | Dirk threw Silver into the Barrier, destroying the soul; Cardonal then took over the construct. | @@ -177,7 +177,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Xinquiss/Zinquiss](xinquiss-zinquiss.md) | potion, shard, and auction contact | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-30.md`, `data/4-days-cleaned/day-31.md` | Helped with potions, joined sea operation, planned to auction the chariot, was tasked to retrieve the moon shard, and appeared at the auction with a cart. | | Jin-Loo | tortle teleport mage/contact | `data/4-days-cleaned/day-32.md` | Teleported the party to Goldenswell and left a ring so he could find them again. | | Guardfree and Guardfore | merfolk guards/allies | `data/4-days-cleaned/day-20.md` | Guardfree kept watch and planned to get his mistress to bring guest shells. | -| Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadwal's location. | +| Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadul's location. | | [Morgana](morgana.md) | player character | `data/4-days-cleaned/day-27.md`, `data/4-days-cleaned/day-28.md`, `data/4-days-cleaned/day-30.md` | Sent by The Chorus because visions went better with five party members; carries birds, heals, and can Polymorph. | | [Benu](benu.md) | Dunensend ally | `data/4-days-cleaned/day-29.md`, `data/4-days-cleaned/day-30.md` | Helped secure support in wars to come, stayed to build a temple, could message Cardenald, and could create a hero's feast. | | Granny and Scurry | trusted Underbelly contacts in Highden | `data/4-days-cleaned/day-36.md` | Granny was an old gnoll liaison; Scurry was a Highden lizardfolk courier. | @@ -195,7 +195,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Person or group | Current risk | Source | Notes | |---|---|---|---| -| [Garadwal](garadwal.md) | dangerous but clearer; former protector | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-21.md`, `data/4-days-cleaned/day-56.md` | Known as Terror of the Sands; originally a Sphinx protector of the Dunnen People, corrupted after consuming a void elemental, imprisoned in one of the eight dome prisons, and later said he would repay his misdeeds by helping the party. | +| [Garadul](garadul.md) | dangerous but clearer; former protector | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-21.md`, `data/4-days-cleaned/day-56.md` | Known as Terror of the Sands; originally a Sphinx protector of the Dunnen People, corrupted after consuming a void elemental, imprisoned in one of the eight dome prisons, and later said he would repay his misdeeds by helping the party. | | Pelt | unresolved memory/Joy threat | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-06.md` | Connected to memory-taking and Joy's rough condition. | | Musher | killed | `data/4-days-cleaned/day-06.md` | Used townsfolk to attack the Barrier; killed with associated worm/dog-like creatures. | | [Infestus](infestus.md) / Black Dragon | dangerous but temporarily even | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md` | Employer of Black Scales; considered the party even after receiving Alsafaur's skull; ex-husband of [Peridita](peridita.md), with [Lortesh](lortesh.md) as their son. | diff --git a/data/6-wiki/people/the-mother.md b/data/6-wiki/people/the-mother.md index 0c41c5b..d2b602a 100644 --- a/data/6-wiki/people/the-mother.md +++ b/data/6-wiki/people/the-mother.md @@ -15,12 +15,12 @@ sources: ## Summary -The Mother was a Carnamancy-linked antagonist who transformed the life prison into flesh, siphoned Limnuvela, repurposed Envi's clone, and died during the Baytail Accord crisis. +The Mother was a Carnamancy-linked antagonist who transformed the life prison into flesh, siphoned Limusvita, repurposed Envi's clone, and died during the Baytail Accord crisis. ## Known Details - The life prison had become flesh, eyes, veins, and other organic features, possibly through high-level Carnamancy by The Mother. -- The Mother tried to absorb Limnuvela but could not contain him; he was holding on to keep the Barrier up while she siphoned energy through a copper pipe. +- The Mother tried to absorb Limusvita but could not contain him; he was holding on to keep the Barrier up while she siphoned energy through a copper pipe. - At Baytail Accord, a horrible boob-covered form appeared and was apparently The Mother. - After The Mother died, Geldrin found a spellbook on her with the same cipher and spells as Envi's. - The Mother had somehow repurposed Envi's clone, which seemed impossible under the party's understanding of clone magic. @@ -31,6 +31,7 @@ The Mother was a Carnamancy-linked antagonist who transformed the life prison in - [Ennuyé](ennuyé.md) - [Elemental Prisons](../concepts/elemental-prisons.md) +- [Limusvita](limusvita.md) - [The Pact](../factions/the-pact.md) ## Open Questions diff --git a/data/6-wiki/people/trixus.md b/data/6-wiki/people/trixus.md index 36db6ae..c774797 100644 --- a/data/6-wiki/people/trixus.md +++ b/data/6-wiki/people/trixus.md @@ -25,18 +25,18 @@ Trixus, also Trixius or Tixun, is Benu and Bynx's brother, one of Attabre's chil - On `day-42`, the goat-headed sphinx prisoner was identified as Trixus, an elemental of light and Benu's little brother. - He had four brass rings on each paw inscribed: `A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` -- A book on Benu, Garadwal, and Trixus described them as the last three of Attabre's children who walk on the earth. -- Trixus, Benu, and Garadwal are Bynx's brothers. +- A book on Benu, Garadul, and Trixus described them as the last three of Attabre's children who walk on the earth. +- Trixus, Benu, and Garadul are Bynx's brothers. - Trixus helped create Brass City and helped the tabaxi become industrious and proactive. - He remained under a Slumber version of Imprisonment even after the party opened barriers. -- On `day-43`, the family reunion with [Benu](benu.md), [Garadwal](garadwal.md), and Trixus occurred in Ashkellon; Geldrin released Trixus with a tremor skill. +- On `day-43`, the family reunion with [Benu](benu.md), [Garadul](garadul.md), and Trixus occurred in Ashkellon; Geldrin released Trixus with a tremor skill. - Trixus said father had put him to sleep, questioned Benu's absence when his people were in trouble, and may be able to help restore memories or emotions. -- On `day-56`, Trixus was found behind a Barrier with Benu, Garadwal, and Bynx in a Grand Towers control-room side area. +- On `day-56`, Trixus was found behind a Barrier with Benu, Garadul, and Bynx in a Grand Towers control-room side area. ## Related Entries - [Benu](benu.md) -- [Garadwal](garadwal.md) +- [Garadul](garadul.md) - [Bynx](bynx.md) - [Attabre](attabre.md) - [Elemental Prisons](../concepts/elemental-prisons.md) diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md deleted file mode 100644 index a6edf07..0000000 --- a/data/6-wiki/people/valententhide.md +++ /dev/null @@ -1,72 +0,0 @@ ---- -title: Valententhide / Valentenhule -type: god, elemental-plane queen, or betrayed figure -aliases: - - Valententhide - - Valentenshide - - Valentinheide - - Valentenhide - - Valentenhule - - Valententide - - Bridge's sister - - the featureless woman -first_seen: day-30 -last_updated: day-56 -sources: - - data/4-days-cleaned/day-30.md - - data/4-days-cleaned/day-32.md - - data/4-days-cleaned/day-42.md - - data/4-days-cleaned/day-43.md - - data/4-days-cleaned/day-44.md - - data/4-days-cleaned/day-47.md - - data/4-days-cleaned/day-48.md - - data/4-days-cleaned/day-52.md - - data/4-days-cleaned/day-56.md ---- - -# Valententhide / Valentenhule - -## Summary - -Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or dark-sky figure tied to betrayal, lethal gaze warnings, Hannah's erasure, Bright, Bridge, and the old mage-school expedition. This page keeps her separate from [Valenth Cardonald](valenth-cardonald.md) because the identity merge is unresolved. - -## Known Details - -- Day 32 preserved `Valententide's Betrayal` and skull visions of a featherless female associated with Throngore and darkness. -- On `day-42`, a ring voice addressed Invar as wearing `the ring of the betrayer`, and Bleakstorm described Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. -- On `day-43`, the Benu book and scroll warnings preserved `One more glance a death dance`, `one brief look last breath Took`, `In her stare Bones laid bare`, and `In her gaze the end of days`. -- On `day-44`, Geldrin saw Valentinheide killing Emi's wife, and Tale of Two Sisters described Bright as the low sky and Valentenhule as the high sky whose position caused the void to open. -- Valententhide held Hannah, said Bright had shown the party too much, and said Hannah had been wiped from time and space. -- After the party returned, they no longer remembered Hannah's name, only an image of her turning to dust in a cave. -- On `day-47`, `Palace of Valententhide` described her palace as forged in the deep sky, in a domain outside mortal realms, on the crimson, with walls of faces she does not have and unbreathable air unless visitors bring their own. -- The same book says Valententhide exploited a loophole to remain at her palace when the gods were banished to another plane. -- Later on `day-47`, an accidental portal opened into a black corridor in Valententhide's house; the party saw Valententhide, passed out, and Morgana heard Eliana while feeling cold hands on her shoulder. -- On `day-48`, a featureless figure in a prison dome said it was no one, lost, once part of Valententhide, and that Thomas put it there and took what was there. It linked the elemental planes, pacts, world creation, the Vessel of Divinity, gods, and lostness. -- The same Day 48 figure answered Eliana's question about why everyone thought they were a Hartwall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. -- On `day-52`, a night-sky-serenity part of Valententhide was described as a small shard of a powerful creature. Reuniting it would soften Valententhide into a goddess of destruction rather than a mindless road-murdering force. -- Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. -- On `day-56`, Valententhide appeared reflected in Invar's armour, and a tapestry showed five wizards plus an invisible Hannah Joy-like woman whom Dotharl could not see because he knew she existed. -- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Attabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Lady Evalina Hartwall / Mama Hartwall. - -## Related Entries - -- [Valenth Cardonald](valenth-cardonald.md) -- [Bridget's Doors](../concepts/bridgets-doors.md) -- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) -- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) -- [Minor Places from Day 47](../places/minor-places-day-47.md) -- [Minor Items from Days 48 and 52](../items/minor-items-days-48-52.md) - -## Open Questions - -- Is Valententhide Bridge's sister, Bright's sister, the high-sky queen, a prison entity, or several confused accounts? -- How did she kill Emi's wife, and what did Ruby Eye know about it? -- Why was Hannah visible if she was wiped from time and space? -- What are the faces in her deep-sky palace walls, and what does it mean that she does not have them? -- How did she avoid the gods' banishment, and is her house connected to Hartwall's portal network? -- What did Thomas remove when he put the lost part of Valententhide into the dome? -- Why did Joy say this figure took her mum, and why did the ancestors still approve releasing it? -- What does the `gold Valententhide` orb contain, and what would Bridget do with it? -- Why did Valententhide appear through Invar's armour, and what does the Hannah-like invisible woman in the wizard tapestry imply? -- What does the Attabre symbol on Valententhide's deactivated prison indicate? -- Who are the `daughters` and Lady Evalina Hartwall / Mama Hartwall in the replacements' comments? diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index dada71e..2a3af60 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -7,8 +7,8 @@ aliases: - Cardonald - Cardenald - Valenth Caerdunel - - Valenthide - - Valententhide + - Valentinhide + - Valentinhide - Valent first_seen: day-20 last_updated: user-clarification @@ -40,10 +40,10 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - Cardonal wrote `Instructions for creating sentient jewellery` in Celestial; sentient items needed a soul. - She could provide teleport-circle codes for prisons, labs, and Grand Towers levels, and could be contacted with fixed Enwi. - Later she repaired prison systems, helped calculate the Tri-moon shard trajectory, fixed Salt/Seaward issues, resisted mental intrusion, resurrected Rubyeye, and repaired Errol. -- Valenthide/Valententhide is also recorded as a prisoner or prison, with Galetea/Galatrayer as an automation guard; whether this is the same name or a related being remains uncertain. -- Day 32 auction art included `Valententide's Betrayal`, showing a crab claw and talon shielding Throngore over a featherless female; skull visions also showed Vallententide grabbed by a crab claw and disappearing, and later notes say Valententide had been attacked by Throngore with darkness. +- Valentinhide/Valentinhide is also recorded as a prisoner or prison, with Galetea/Galatrayer as an automation guard; whether this is the same name or a related being remains uncertain. +- Day 32 auction art included `Valentinhide's Betrayal`, showing a crab claw and talon shielding Throngore over a featherless female; skull visions also showed Vallententide grabbed by a crab claw and disappearing, and later notes say Valentinhide had been attacked by Throngore with darkness. - Cardonald did not answer Eroll on Day 32, which was strange because Eroll contacts her directly; whether Cardonald is Cardenald is uncertain. -- Day 42-44 evidence increasingly points to [Valententhide / Valentenhule](valententhide.md) as a separate high-sky or betrayed figure, but the spelling collision remains unresolved and is not silently merged. +- Day 42-44 evidence increasingly points to [Valentinhide / Valentenhule](valentinhide.md) as a separate high-sky or betrayed figure, but the spelling collision remains unresolved and is not silently merged. - Day 43 Cardonald / Cardenald coordinated Ashkellon, searched unsuccessfully for Ruby Eye and Errol, and gave Geldrin teleportation circles for prisons, Grand Towers, labs, Menagerie, Ashkhellon, and pylon sites. - Day 44 old-school scenes identify Valenth Cardonald as Matron / Nurse Cardonald's daughter and a student in Geldrin's year, while Valenth also appears in Ruby Eye's old student group. @@ -52,8 +52,8 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - `day-20`: The party discusses Valenth/Velenth with the Freeport Baroness and receives laboratory code or permission. - `day-23`: The party meets Cardonal's voice and learns about sentient jewellery, Silver, prisons, labs, and Grand Towers. - `day-26`: Cardenald repairs prison damage while Valenth reports a barrier surge and Joy leaving Envi's lab. -- `day-27`: Cardenald helps calculate the shard trajectory and is sent to destroy the Salinas statue. -- `day-30`: Cardenald resurrects Rubyeye and investigates Valententhide/Galatrayer. +- `day-27`: Cardenald helps calculate the shard trajectory and is sent to destroy the Salinus statue. +- `day-30`: Cardenald resurrects Rubyeye and investigates Valentinhide/Galatrayer. - `day-31`: Rubyeye takes Valenta back to her lab for repairs after the battle. - `day-42`: Cardonald helps interpret Emri's missing soul-parts after Ashkellon and reports Tradesmells empty. - `day-43`: Cardonald cannot locate Ruby Eye or Errol and provides the party with major teleport-circle intelligence. @@ -70,7 +70,7 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr ## Open Questions - Did the object-transfer plan succeed, and if so what object contains her? -- Are Valenth/Cardonal/Cardenald and Valenthide/Valententhide separate beings, a spelling collision, or a person-prison relationship? +- Are Valenth/Cardonal/Cardenald and Valentinhide/Valentinhide separate beings, a spelling collision, or a person-prison relationship? - How does the old-school Valenth Cardonald, Matron Cardonald's daughter in Geldrin's year, connect to the later Valenth/Cardonald identity cluster? - What exactly happened to her body, Silver's body, Valenta, and the sentient jewellery experiments? -- What was `Valententide's Betrayal`, and is Valententide/Vallententide part of the same identity cluster as Valenth/Valenthide? +- What was `Valentinhide's Betrayal`, and is Valentinhide/Vallententide part of the same identity cluster as Valenth/Valentinhide? diff --git a/data/6-wiki/people/valentinhide.md b/data/6-wiki/people/valentinhide.md new file mode 100644 index 0000000..ef5876f --- /dev/null +++ b/data/6-wiki/people/valentinhide.md @@ -0,0 +1,74 @@ +--- +title: Valentinhide / Valentenhule +type: god, elemental-plane queen, or betrayed figure +aliases: + - Valentinhide + - Valententhide + - Valentenshide + - Valentinheide + - Valentenhide + - Valentenhule + - Valententide + - Bridge's sister + - the featureless woman +first_seen: day-30 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-56.md +--- + +# Valentinhide / Valentenhule + +## Summary + +Valentinhide, also recorded as Valententhide, Valentenhule, Valentinheide, or Valentenshide, is one of the eight beings imprisoned to power the Barrier. She is a high-sky or dark-sky figure tied to betrayal, lethal gaze warnings, Hannah's erasure, Bright, Bridge, and the old mage-school expedition. This page keeps her separate from [Valenth Cardonald](valenth-cardonald.md) because the identity merge is unresolved. + +## Known Details + +- Day 32 preserved `Valentinhide's Betrayal` and skull visions of a featherless female associated with Throngore and darkness. +- Valentinhide is one of the eight beings imprisoned to power the Barrier. +- On `day-42`, a ring voice addressed Invar as wearing `the ring of the betrayer`, and Bleakstorm described Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. +- On `day-43`, the Benu book and scroll warnings preserved `One more glance a death dance`, `one brief look last breath Took`, `In her stare Bones laid bare`, and `In her gaze the end of days`. +- On `day-44`, Geldrin saw Valentinhide killing Emi's wife, and Tale of Two Sisters described Bright as the low sky and Valentenhule as the high sky whose position caused the void to open. +- Valentinhide held Hannah, said Bright had shown the party too much, and said Hannah had been wiped from time and space. +- After the party returned, they no longer remembered Hannah's name, only an image of her turning to dust in a cave. +- On `day-47`, `Palace of Valentinhide` described her palace as forged in the deep sky, in a domain outside mortal realms, on the crimson, with walls of faces she does not have and unbreathable air unless visitors bring their own. +- The same book says Valentinhide exploited a loophole to remain at her palace when the gods were banished to another plane. +- Later on `day-47`, an accidental portal opened into a black corridor in Valentinhide's house; the party saw Valentinhide, passed out, and Morgana heard Eliana while feeling cold hands on her shoulder. +- On `day-48`, a featureless figure in a prison dome said it was no one, lost, once part of Valentinhide, and that Thomas put it there and took what was there. It linked the elemental planes, pacts, world creation, the Vessel of Divinity, gods, and lostness. +- The same Day 48 figure answered Eliana's question about why everyone thought they were a Hartwall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. +- On `day-52`, a night-sky-serenity part of Valentinhide was described as a small shard of a powerful creature. Reuniting it would soften Valentinhide into a goddess of destruction rather than a mindless road-murdering force. +- Bridget would take the gold Valentinhide, smash the orb, and release her to Bridget. +- On `day-56`, Valentinhide appeared reflected in Invar's armour, and a tapestry showed five wizards plus an invisible Hannah Joy-like woman whom Dotharl could not see because he knew she existed. +- The Grand Towers control room had Valentinhide's statue attack Dotharl, Valentinhide's prison unlit, and later a Valentinhide-related display showing an Attabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Lady Evalina Hartwall / Mama Hartwall. + +## Related Entries + +- [Valenth Cardonald](valenth-cardonald.md) +- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) +- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) +- [Minor Places from Day 47](../places/minor-places-day-47.md) +- [Minor Items from Days 48 and 52](../items/minor-items-days-48-52.md) + +## Open Questions + +- Is Valentinhide Bridge's sister, Bright's sister, the high-sky queen, a prison entity, or several confused accounts? +- How did she kill Emi's wife, and what did Ruby Eye know about it? +- Why was Hannah visible if she was wiped from time and space? +- What are the faces in her deep-sky palace walls, and what does it mean that she does not have them? +- How did she avoid the gods' banishment, and is her house connected to Hartwall's portal network? +- What did Thomas remove when he put the lost part of Valentinhide into the dome? +- Why did Joy say this figure took her mum, and why did the ancestors still approve releasing it? +- What does the `gold Valentinhide` orb contain, and what would Bridget do with it? +- Why did Valentinhide appear through Invar's armour, and what does the Hannah-like invisible woman in the wizard tapestry imply? +- What does the Attabre symbol on Valentinhide's deactivated prison indicate? +- Who are the `daughters` and Lady Evalina Hartwall / Mama Hartwall in the replacements' comments? diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md index b2fa632..f3a6120 100644 --- a/data/6-wiki/people/wrath.md +++ b/data/6-wiki/people/wrath.md @@ -24,7 +24,7 @@ Wrath is a manifestation of one of the emotions removed from the elves. He was a - He had made a pact with Ruby Eye to help kill the black dragon and said it was his fault Lady Evalina Hartwall / Mama Hartwall was outside. - Wrath was scared of Browning, who had teamed up with Pride. - He cursed the silver and black dragons so they could not take human form. -- He wanted the shell of [uncertain: Tremoon] because he saw the wizards make it and it helped people get through the Barrier. +- He wanted the [Skull of Tremon](../items/tremons-body-and-statue-artifacts.md) because he saw the wizards make it and it helped people get through the Barrier. - Ruby Eye later shouted Wrath back into his eye. - On Day 55, Wrath appeared as a black dragonborn fighting green dragons or Perodita's children, described basilisk coal at Coalmont Rally as a way to teleport to Infestus, and offered or gave memory assistance. - Wrath, Pride, and Envy are all manifestations of emotions removed from the elves. diff --git a/data/6-wiki/places/ashkellon.md b/data/6-wiki/places/ashkellon.md index 9e4a73c..4c7253e 100644 --- a/data/6-wiki/places/ashkellon.md +++ b/data/6-wiki/places/ashkellon.md @@ -19,7 +19,7 @@ sources: ## Summary -Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city and tower, located between Dunensend and Heartmoor, where the party infiltrated dragonborn-held Goliath society, rescued captives, fought Emmeredge, and reunited Benu, Garadwal, and Trixus. +Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city and tower, located between Dunensend and Heartmoor, where the party infiltrated dragonborn-held Goliath society, rescued captives, fought Emmeredge, and reunited Benu, Garadul, and Trixus. ## Known Details @@ -29,7 +29,7 @@ Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city - The party teleported into a throne room, killed Araks, and moved workers and Badger out from the wash-room area. - The tower contained skull arches, Goliathified god statues, offering bowls, prison rooms, a library, map rooms, a Noxia chamber, treasure hall, and elemental or dragon prisoners. - Emmeredge died during the day-42 Noxia-chamber battle, and Ashkellon Goliaths gained weapons, shields, and healing when blessings activated. -- On `day-43`, Benu appeared there, Trixus was released, Garadwal was banished, and the party recovered barrier tools. +- On `day-43`, Benu appeared there, Trixus was released, Garadul was banished, and the party recovered barrier tools. - Ashkellon is a major step in Dirk's path to freeing his people: the party aided the Goliath resistance, weakened dragon control, activated Goliath blessings, and later coordinated with [Anastasia](../people/anastasia.md) and Dirk Sr for a pincer movement against Vathkell. ## Related Entries @@ -37,7 +37,7 @@ Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city - [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md) - [Trixus](../people/trixus.md) - [Benu](../people/benu.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) - [Noxia](../people/noxia.md) - [Dirk](../people/dirk.md) - [Anastasia](../people/anastasia.md) diff --git a/data/6-wiki/places/bleakstorm.md b/data/6-wiki/places/bleakstorm.md index 18d8075..7a9ad88 100644 --- a/data/6-wiki/places/bleakstorm.md +++ b/data/6-wiki/places/bleakstorm.md @@ -25,13 +25,13 @@ Bleakstorm is both a cursed/blessed castle location and the title or identity of - On `day-42`, the party teleported to Bleakstorm castle, where blizzards, ice elementals, portraits, a time-detecting device, and a half-elf from Everdard were present. - The device detected time and noted Dirk was missing a day. - Bleakstorm said he could send people back in time at a cost, could not see Ruby Eye, and warned about difficult trips outside the Barrier. -- He reported Perodita heading to Hartwall, Garadwal growing stronger at Gravel Basers, and Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. +- He reported Perodita heading to Hartwall, Garadul growing stronger at Gravel Basers, and Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. - On `day-44`, Lord Bleakstorm appeared as a history teacher in the old mage school and taught about Bright, Valentenhule, Great Farmouth, and gnomes. - `Lord of Bleakstorm and the Gnomes` says Bleakstorm connected gnomes, merfolk, Great Farmouth, and possible gnomish Grand Towers technology. ## Related Entries -- [Valententhide / Valentenhule](../people/valententhide.md) +- [Valentinhide / Valentenhule](../people/valentinhide.md) - [Barrier](../concepts/barrier.md) - [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md) diff --git a/data/6-wiki/places/brookville-springs.md b/data/6-wiki/places/brookville-springs.md index 1547588..4909a72 100644 --- a/data/6-wiki/places/brookville-springs.md +++ b/data/6-wiki/places/brookville-springs.md @@ -14,7 +14,7 @@ sources: ## Summary -Brookville Springs is a town tied to Bridget's statue, Hazy Days, The Guilt, Seneshell, Mercy, Grand Towers access, and a wave of purple explosions after Pride was consumed by Garadwal. +Brookville Springs is a town tied to Bridget's statue, Hazy Days, The Guilt, Seneshell, Mercy, Grand Towers access, and a wave of purple explosions after Pride was consumed by Garadul. ## Known Details @@ -22,14 +22,14 @@ Brookville Springs is a town tied to Bridget's statue, Hazy Days, The Guilt, Sen - On `day-36`, Brookville Springs was on high alert after purple explosions across human buildings, brothels, the guard house, possible golems, and at least one human. - The town leader vanished on the bang night, and Geldrin found no golems in town. - Hazy Days staff said The Guilt had disappeared on the night of the Trimoons; Seneshell was running the place. -- Seneshell revealed that Pride had been eaten by Garadwal, leaving The Guilt unconscious in a dangerous chest like one in Envy's lab. +- Seneshell revealed that Pride had been eaten by Garadul, leaving The Guilt unconscious in a dangerous chest like one in Envy's lab. - Mercy's place contained access to a Grand Towers passage and a favour tied to retrieving the Jelly Fish Broach. ## Related Entries - [Grand Towers](grand-towers.md) - [Excellences](../concepts/excellences.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) - [Dollarmen](../factions/dollarmen.md) - [Bridget's Doors](../concepts/bridgets-doors.md) diff --git a/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md index 0ab234d..202e9bc 100644 --- a/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md +++ b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md @@ -19,7 +19,7 @@ sources: ## Summary -Coalmont Falls is a mining town where black water from a waterfall led the party toward an underwater prison or facility associated with !Asmoorade!, Anthrosite, Nelkish, Envi, purple-cored automatons, and Garaduel recall protocol. +Coalmont Falls is a mining town where black water from a waterfall led the party toward an underwater prison or facility associated with !Asmoorade!, Anthrosite, Nelkish, Envi, purple-cored automatons, and Garadul recall protocol. ## Known Details @@ -29,12 +29,12 @@ Coalmont Falls is a mining town where black water from a waterfall led the party - The underwater chamber had a twenty-foot statue with five runes in a pentagram and the name !Asmoorade!. - A barrier trapped Morgana until she found a freshly cut stone corridor, ticking-rune door, giant black four-armed geyser figure, and revival chamber. - Nelkish announced the Domain of Anthrosite, said he worked for Infestus, recognized Eliana as pure blood, and said Geldrin's wizard robes were part of an agreement. -- Envi in a tube of viscous fluid was released; an automaton introduced himself as Garaduel, activated recall protocol, and removed the automatons. +- Envi in a tube of viscous fluid was released; an automaton introduced himself as Garadul, activated recall protocol, and removed the automatons. ## Related Entries - [Infestus](../people/infestus.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) - [Ennuyé](../people/ennuyé.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) @@ -43,5 +43,5 @@ Coalmont Falls is a mining town where black water from a waterfall led the party - What is !Asmoorade!, and is it the six-armed prisoner, the statue, the prison, or a name invoked by the runes? - Why has the black water frequency increased? -- What happened after Envi, the rings-seeking figure, purple-cored automatons, and Garaduel disappeared? +- What happened after Envi, the rings-seeking figure, purple-cored automatons, and Garadul disappeared? - What is the wizard agreement with Anthrosite and Infestus? diff --git a/data/6-wiki/places/desert-laboratory.md b/data/6-wiki/places/desert-laboratory.md index 84fff80..0db742f 100644 --- a/data/6-wiki/places/desert-laboratory.md +++ b/data/6-wiki/places/desert-laboratory.md @@ -26,7 +26,7 @@ Cardonald's desert laboratory is an ancient automation and sentient-item site ti - Rubyeye had visited 47 times, last around 908 years earlier, and requested a book copy after viewing it at Aquaria. - Rubyeye's connection to the laboratory includes Valenth Cardonald as his best friend, the mage who wanted to craft herself into an object and continue in that form. - The site contained white roses, art and statues of Hephaestos's defeat, portraits of Enwi, Joy, Browning, Rubyeye, Heurhall, and a sphinx, and the note `Victorious but too late it was still the Dunewand`. -- Behind Garadwal's picture was a golden band with a smashed ruby resembling Eno's ring, possibly sentient or hurt. +- Behind Garadul's picture was a golden band with a smashed ruby resembling Eno's ring, possibly sentient or hurt. - The library contained Everard Browning automation manuals and Cardonal's Celestial `Instructions for creating sentient jewellery`; sentient items required a soul. - The laboratory held practice enchanted items and a copper astrolabe with a red gem through which Cardonal spoke after 907 years. - Cardonal provided or could provide teleport-circle codes for prisons, labs, and Grand Towers levels, including factory, control room, and meeting level. @@ -37,7 +37,7 @@ Cardonald's desert laboratory is an ancient automation and sentient-item site ti - [Valenth Cardonald](../people/valenth-cardonald.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) - [Ennuyé](../people/ennuyé.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) - [Elemental Prisons](../concepts/elemental-prisons.md) ## Open Questions diff --git a/data/6-wiki/places/dunensend.md b/data/6-wiki/places/dunensend.md index 9682e19..4e1ae56 100644 --- a/data/6-wiki/places/dunensend.md +++ b/data/6-wiki/places/dunensend.md @@ -20,7 +20,7 @@ sources: ## Summary -Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Arahuoa/Vulturemen conflict, automaton infiltration, Goliath history, Garadwal's history as Sphinx protector of the Dunnen People, and later military support for the party. +Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Arahuoa/Vulturemen conflict, automaton infiltration, Goliath history, Garadul's history as Sphinx protector of the Dunnen People, and later military support for the party. ## Known Details @@ -30,7 +30,7 @@ Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Ar - Automaton infiltrators included Agugu, a guard with a wife and five-year identity, and other guards; The Guilt said the whole place was riddled with automatons. - Sister Proulsothight [uncertain] held a box like Gelissa's, apparently the target of recent shop break-ins. - Dunensend records and scholars connect the Goliaths to city-building, Ashktioth, Tradesmall, and old contact about 900 years ago. -- Garadwal, known as Terror of the Sands, was once a Sphinx protector of the Dunnen People before being corrupted by consuming a void elemental. +- Garadul, known as Terror of the Sands, was once a Sphinx protector of the Dunnen People before being corrupted by consuming a void elemental. - The city and rulers supported the party in wars to come after Lortesh died. - Dunensend later supplied 100 troops, 5 healers, transport, and 10 cavalry; its army killed a green dragon during the Brass City battle. @@ -39,7 +39,7 @@ Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Ar - [Excellences](../concepts/excellences.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Lortesh](../people/lortesh.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) ## Open Questions diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md index d620d98..88f759d 100644 --- a/data/6-wiki/places/grand-towers.md +++ b/data/6-wiki/places/grand-towers.md @@ -31,15 +31,15 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - On `day-36`, Mercy led the party through a passage into Grand Towers, emerging through a broom cupboard and robe room. - Floors 70 to 90 were schools of magic, floors 60 to 70 were storerooms and administration offices, floors 0 to 60 were apartments, and floor 74 held enchantment classes plus the private mage area where Mercy's contractor wanted the Jelly Fish Broach retrieved. - Floor 65 contained a central pillar and shelves of memory orbs like Ruby Eye's lab. -- Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadwal trapped downstairs, Hartwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. +- Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadul trapped downstairs, Hartwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. - Geldrin reached floor 98 and found Browning before alarms and golems forced the party to flee. - On `day-41`, The Basilisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. - On `day-43`, all wizards seemed to have been recalled to Grand Towers, the Grand Towers dome later went down, and Cardonald's teleport-circle list included the factory, control room, and meeting lounge. - On `day-44`, Principal Grey's old-school letter from Browning, dated 47 AD, ordered the school closed and students transferred to Grand Towers. - Old-school books and visions suggested Grand Towers used god-language texts, gnomish technology, automations, emotional elimination, memories, tower tunnels, and possibly the same hidden routes later used by Browning's group. -- On `day-56`, the party teleported into an elaborate Grand Towers room and reached a control room with eight statues, prison runes, Salana intact, Garadwal and Valententhide unlit, other systems flickering, and a Merocole face carved into a mouth. +- On `day-56`, the party teleported into an elaborate Grand Towers room and reached a control room with eight statues, prison runes, Salana intact, Garadul and Valentinhide unlit, other systems flickering, and a Mericok face carved into a mouth. - The same exploration found 27 Humility fragments, parts of Thomas removed so he could become Envy, a black shard claimed to be an elemental of Void, a Frost pole ball, Juticars arriving through tears, wizards reconfiguring a map, and a Browning table trap. -- Side rooms included a thorny brush or briar, a box that put Geldrin and Morgana to sleep, Humorous the old Rivermeet headmaster waking in 3740 AC, and a Barrier trapping Trixus, Benu, Garadwal, and Bynx. +- Side rooms included a thorny brush or briar, a box that put Geldrin and Morgana to sleep, Humorous the old Rivermeet headmaster waking in 3740 AC, and a Barrier trapping Trixus, Benu, Garadul, and Bynx. ## Related Entries @@ -56,5 +56,5 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - Which Grand Towers systems are controlled by Browning, the wizards, Excellences, gods, automatons, or prisoners? - What happened when the Grand Towers dome went down on Day 43? - How much of Grand Towers originated in Riversmeet school, gnomish technology, and Browning's student-era discoveries? -- What do the day-56 control-room statue states mean for Salana, Garadwal, Valententhide, and `[unclear: Keakis?]`? -- Why were Trixus, Benu, Garadwal, and Bynx behind a Barrier inside the control-room side area? +- What do the day-56 control-room statue states mean for Salana, Garadul, Valentinhide, and `[unclear: Keakis?]`? +- Why were Trixus, Benu, Garadul, and Bynx behind a Barrier inside the control-room side area? diff --git a/data/6-wiki/places/highden.md b/data/6-wiki/places/highden.md index 5cefe5a..1f35de0 100644 --- a/data/6-wiki/places/highden.md +++ b/data/6-wiki/places/highden.md @@ -36,4 +36,4 @@ Highden was a major battlefront on day 36, suffering crystal sickness, military - What caused Highden's crystal sickness, and can time away from the city cure it? - Who controlled the false obsidian-raven replies? -- Who is the skull-throne woman who took Soot and accepted Garadwal? +- Who is the skull-throne woman who took Soot and accepted Garadul? diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md index aee08fb..f70b5c6 100644 --- a/data/6-wiki/places/minor-places-day-46.md +++ b/data/6-wiki/places/minor-places-day-46.md @@ -10,13 +10,13 @@ sources: | Place | Context | Outcome | |---|---|---| | Old mage-school kitchen, drama classroom, hall, first-year dorm, Evocation, Elemental Lore, Alteration, Weather, Herbs | Day 46 rooms explored while completing the old school / orb sequence. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md). | -| Cathedral / Hartwall / Valententhide's home route | Broom misfire opened to a cathedral-like place, felt like Hartwall and Valententhide's home. | Rollup/open thread. | +| Cathedral / Hartwall / Valentinhide's home route | Broom misfire opened to a cathedral-like place, felt like Hartwall and Valentinhide's home. | Rollup/open thread. | | Basement map room and orb room | Site of eight-divot map, orb placement, the altered original Goliath Sphinx battle, invisible memory entity defeat, and Joy illusion. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](../items/void-spheres.md), [Original Goliath Sphinx](../people/original-goliath-sphinx.md). | -| Dunensend ray | Corridor rug image showed Garadwal and the word `Terror`. | Rollup; [Garadwal](../people/garadwal.md). | +| Dunensend ray | Corridor rug image showed Garadul and the word `Terror`. | Rollup; [Garadul](../people/garadul.md). | | Tradesmells underground hideout | Tarnished hideout said to be fifteen miles below Tradesmells. | Rollup/open thread. | | Snowsorrow | Snowglobe source and later area near the prison where the Hartwall artifact may be hidden. | Rollup/open thread. | | Infinite library / Grand temple city / [unclear: Hyane] | Morgana's vision during reincarnation magic. | Rollup/open thread. | -| Pre-Dome desert | Garadwal's last memory before reincarnation. | [Garadwal](../people/garadwal.md). | +| Pre-Dome desert | Garadul's last memory before reincarnation. | [Garadul](../people/garadul.md). | | Rhime watches | Dothral woke near here around twenty years ago before being propelled through a door. | Rollup/open thread. | | Lake Azure | Longfang thought the dragon there might be dead. | Rollup/open thread. | | Riversmeet council bridge, And Pool, `I'm the Drink`, Wayshrill Bridge, The Olde Clay Jug | Town investigation locations around the false Exchequer, missing [Lady Igraine of Riversmeet](../people/lady-igraine-riversmeet.md), infiltrators, rewards, and the `Earth hath no` door. | Rollup/open thread. | diff --git a/data/6-wiki/places/minor-places-day-47.md b/data/6-wiki/places/minor-places-day-47.md index ed43f6c..a132da9 100644 --- a/data/6-wiki/places/minor-places-day-47.md +++ b/data/6-wiki/places/minor-places-day-47.md @@ -13,7 +13,7 @@ sources: | Pine Springs | Woodcutters had been taken by an elf killed by adventurers. | Existing place reference; rollup. | | Rose-field picture / illusion room | White-rose picture and window illusion preserve missing-girl and Joy/Hannah clues. | Rollup. | | `[unclear: aprosur]` | One of the sentient door's brother locations. | Rollup; uncertain. | -| Desert badlands room | Showed battle between Noxia and Sierra. | Rollup. | +| Desert badlands room | Showed battle between Noxia and [Sierra](../people/sierra.md). | Rollup. | | Baylen / Baylain Accord | Possible shoreline temple shown in coral bathroom. | Rollup; uncertain. | | Laylistra's room | Named room after the Barrier passage vision. | Rollup. | | Freeport? lighthouse dining room | Lighthouse with a castle in the middle and eclectic twelve-seat dining room. | [Freeport](freeport.md) not merged because uncertain. | @@ -22,5 +22,5 @@ sources: | Flying room | Held Taotli?'s picture and a hidden handle. | Rollup. | | Frost prison | Prison reached by portal; contained ice, lightning, doorways, prisoners, and portal access to Sunsoreen. | [Elemental Prisons](../concepts/elemental-prisons.md). | | Ancient dwarven hold | Door opened to a non-settlement ancient hold with a massive shaggy blue aurora. | Rollup. | -| Valententhide's palace / house | Book described her deep-sky palace; portal later opened to a black corridor in her house. | [Valententhide](../people/valententhide.md). | +| Valentinhide's palace / house | Book described her deep-sky palace; portal later opened to a black corridor in her house. | [Valentinhide](../people/valentinhide.md). | | Square black obsidian portal room | Accidental portal location with no doors until Geldrin found one. | Rollup. | diff --git a/data/6-wiki/places/rimewatch-ice-prison.md b/data/6-wiki/places/rimewatch-ice-prison.md index 06f7b8c..0d8e6b1 100644 --- a/data/6-wiki/places/rimewatch-ice-prison.md +++ b/data/6-wiki/places/rimewatch-ice-prison.md @@ -26,7 +26,7 @@ Rimewatch is an outpost around a pylon near the Ice prison, where storms, dragon - The party approached Rimewatch on Ice Fang and found the town worse than before, with stormy weather near Snowsorrow. - A warning from 20 years earlier described dragons plotting again, dragons breathing the Terror of the Sands out of her prison, and the black one being cast out. -- Infestus, Peridita, Calemnis Bereth/Girth, Garadwal, Rubyeye, the veridican, and Peridita as `Mother of many` were connected to two plots: removing cities and breaking out Garadwal. +- Infestus, Peridita, Calemnis Bereth/Girth, Garadul, Rubyeye, the veridican, and Peridita as `Mother of many` were connected to two plots: removing cities and breaking out Garadul. - The Howling Tombs were identified as where storms begin. - The prison entrance later appeared burst open, with a snow haunt, claw-torn tents, pale blue rocks, hollow rocks or possible eggs, and an ice-white eagle that killed Grubins. - Anrasurall, a robed Humein from Baytail Accord, tried to free someone with runes he was given; he said he got into the circle and fired out of the front before the bird killed him. @@ -36,7 +36,7 @@ Rimewatch is an outpost around a pylon near the Ice prison, where storms, dragon ## Related Entries - [Elemental Prisons](../concepts/elemental-prisons.md) -- [Garadwal](../people/garadwal.md) +- [Garadul](../people/garadul.md) - [Infestus](../people/infestus.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index 45a3c42..08fde11 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -33,7 +33,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - Inside, the party entered old-school time or planes: apothecary, infirmary, head teacher's office, Divination, transmutation, study hall, common rooms, lessons, Air common room, tower tunnels, classrooms, and astronomy. - The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Ennuyé, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Torlish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. Thomas was Ennuyé's earlier name before he changed it. - Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, Bynx as a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. -- On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadwal's reincarnation. +- On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadul's reincarnation. - The school contained the [Original Goliath Sphinx](../people/original-goliath-sphinx.md), stolen and altered long ago when the Dome was created and used to alter memories across the Dome. - Mr Moreley was the spectral dragon holding the altered Sphinx down during the orb-room battle. - During the battle, an invisible entity escaped and made the party forget it, but the entity was defeated; the party's memories were restored after they protected a glowing thing in linked rooms. @@ -43,7 +43,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) - [Everard Browning](../people/everard-browning.md) -- [Valententhide / Valentenhule](../people/valententhide.md) +- [Valentinhide / Valentenhule](../people/valentinhide.md) - [Noxia](../people/noxia.md) - [Void Spheres](../items/void-spheres.md) - [Original Goliath Sphinx](../people/original-goliath-sphinx.md) diff --git a/data/6-wiki/places/salt-dragon-prison.md b/data/6-wiki/places/salt-dragon-prison.md index 804bcae..0fe0a2e 100644 --- a/data/6-wiki/places/salt-dragon-prison.md +++ b/data/6-wiki/places/salt-dragon-prison.md @@ -5,7 +5,7 @@ aliases: - underground prison - underground structure first_seen: day-14 -last_updated: day-14 +last_updated: user-clarification sources: - data/4-days-cleaned/day-14.md --- @@ -14,13 +14,13 @@ sources: ## Summary -The Salt Dragon Prison is an ancient underground structure below the Seaward quarry where a massive salt dragon is contained inside a smaller barrier. +The Salt Dragon Prison is an ancient underground structure below the Seaward quarry where [Salinus](../people/salinus.md), the salt dragon and one of the eight beings imprisoned to power the Barrier, is contained inside a smaller barrier. ## Known Details - The structure may be about 1,000 years old. - It was entered behind missing wooden panels and included corridors leading to a huge metal dragon-head ring door. -- A massive salt dragon inside a smaller barrier had sweated salt into the earth for twenty years. +- Salinus, a massive salt dragon inside a smaller barrier, had sweated salt into the earth for twenty years. - Copper pylons had been removed, and runes were barely visible under salt. - The [Underbelly](../factions/underbelly.md) was trying to free the salt dragon and wanted the Justicar kept out. @@ -37,5 +37,4 @@ The Salt Dragon Prison is an ancient underground structure below the Seaward qua ## Open Questions -- Is the salt dragon one of the eight beings powering the Barrier? - Who removed the copper pylons, and what changed twenty years earlier? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 6d73a01..5c72771 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -52,7 +52,7 @@ sources: # Sources -- `data/4-days-cleaned/day-01.md`: [Everchard](places/everchard.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), [Garadwal](people/garadwal.md), [Malcolm Donovan](people/malcolm-donovan.md), [The Thornhollows Family](people/thornhollows-family.md), [Militia](factions/militia.md). +- `data/4-days-cleaned/day-01.md`: [Everchard](places/everchard.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), [Garadul](people/garadul.md), [Malcolm Donovan](people/malcolm-donovan.md), [The Thornhollows Family](people/thornhollows-family.md), [Militia](factions/militia.md). - `data/4-days-cleaned/day-02.md`: [The Thornhollows Family](people/thornhollows-family.md), [The Chorus](people/the-chorus.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). - `data/4-days-cleaned/day-03.md`: [Hostel](places/hostel.md), [Militia](factions/militia.md), [Bug Hunter](people/bug-hunter.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). - `data/4-days-cleaned/day-04.md`: [Everchard](places/everchard.md), [Hostel](places/hostel.md), [Militia](factions/militia.md). @@ -66,39 +66,39 @@ sources: - `data/4-days-cleaned/day-12.md`: [Seaward](places/seaward.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md). - `data/4-days-cleaned/day-13.md`: [Seaward](places/seaward.md), [Shield Crystals](items/shield-crystals.md), [Barrier](concepts/barrier.md). - `data/4-days-cleaned/day-14.md`: [Salt Dragon Prison](places/salt-dragon-prison.md), [Underbelly](factions/underbelly.md), [Elemental Prisons](concepts/elemental-prisons.md), [Black Scales](factions/black-scales.md). -- `data/4-days-cleaned/day-15.md`: [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Garadwal](people/garadwal.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-15.md`: [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Garadul](people/garadul.md), [Elemental Prisons](concepts/elemental-prisons.md). - `data/4-days-cleaned/day-16.md`: [Hidden Laboratory](places/hidden-laboratory.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Infestus](people/infestus.md), [Pythus Aleyvarus](people/pythus-aleyvarus.md), [The Pact](factions/the-pact.md), [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md). - `data/4-days-cleaned/day-17.md`: [The Pact](factions/the-pact.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Shard](items/tri-moon-shard.md). - `data/4-days-cleaned/day-18.md`: [Timeline](timeline.md), [Open Threads](open-threads.md). - `data/4-days-cleaned/day-19.md`: [Torisle Point](places/torisle-point.md), [Sahuagin/Fish Men](factions/sahuagin-fish-men.md), [Excellences](concepts/excellences.md). -- `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). -- `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). +- `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Sierra](people/sierra.md), [Sierra's Arrows](items/sierras-arrows.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). +- `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadul](people/garadul.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). -- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Silver](people/silver.md), [Ennuyé](people/ennuyé.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-27.md`: [Dunensend](places/dunensend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadul](people/garadul.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Silver](people/silver.md), [Ennuyé](people/ennuyé.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadul](people/garadul.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadul](people/garadul.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-27.md`: [Dunensend](places/dunensend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadul](people/garadul.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-28.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). -- `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadul](people/garadul.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Everard Browning](people/everard-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Lam](people/lam.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Lam](people/lam.md), [Sierra](people/sierra.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Envy](people/envy.md), [Pride](people/pride.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Pride](people/pride.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Pride](people/pride.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadul](people/garadul.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). -- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre](people/attabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). -- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). -- `data/4-days-cleaned/day-48.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). -- `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). +- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadul](people/garadul.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Noxia](people/noxia.md), [Sierra](people/sierra.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Garadul](people/garadul.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Papa'e Munera](people/papae-munera.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre](people/attabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Void Spheres](items/void-spheres.md), [Garadul](people/garadul.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Sierra](people/sierra.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). +- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Garadul](people/garadul.md), [Joy](people/joy.md), [Sierra](people/sierra.md), [Sierra's Arrows](items/sierras-arrows.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). +- `data/4-days-cleaned/day-48.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). +- `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valentinhide / Valentenhule](people/valentinhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Everard Browning](people/everard-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Facets that Gleam in the Sun](people/facets-that-gleam-in-the-sun.md), [Hydran](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Lam](people/lam.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). +- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Everard Browning](people/everard-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadul](people/garadul.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Facets that Gleam in the Sun](people/facets-that-gleam-in-the-sun.md), [Hydran](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Lam](people/lam.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Sierra](people/sierra.md), [Haze](people/haze.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 925cbb4..9b384a2 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -49,12 +49,12 @@ sources: # Timeline -- `day-01`: The party begins in [Everchard](places/everchard.md), investigates missing animals and people, discovers [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), and links altered Malcolm Donovan to [Garadwal](people/garadwal.md). +- `day-01`: The party begins in [Everchard](places/everchard.md), investigates missing animals and people, discovers [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), and links altered Malcolm Donovan to [Garadul](people/garadul.md). - `day-02`: The Thornhollows farm investigation expands into giant frogs, changed records, missing pigs, and links between Sarah Thornhollows and [The Chorus](people/the-chorus.md). - `day-03`: Wagon victims, animal-human beasts, militia involvement, and the [Hostel](places/hostel.md) reveal organized abductions and transformation work. - `day-04`: The party recovers townsfolk, confronts militia ledger fraud and the Earl's missing documents, and stabilizes Everchard enough for outside contact. - `day-05`: Tracks lead toward the [Barrier Observatory](places/barrier-observatory.md), a Barrier attack begins, and the party starts uncovering Joy, Ennuyé, and Tri-moon clues. -- `day-06`: Inside the observatory, the party finds Joy's rooms, clone evidence, rings, the moon research, and Musher's connection to Garadwal. +- `day-06`: Inside the observatory, the party finds Joy's rooms, clone evidence, rings, the moon research, and Musher's connection to Garadul. - `day-07`: The party returns rescued townsfolk to Everchard, coordinates with Thairwell militia, and confirms broader [Barrier](concepts/barrier.md) risk. - `day-08`: No cleaned day file exists in this build. - `day-09`: Everchard recovers from restored memories, Core returns damaged, and the party heads toward Seaward. @@ -62,7 +62,7 @@ sources: - `day-11`: Seaward's politics, water scarcity, pylon flickers, and reports of a wider Barrier crisis come into focus. - `day-12`: The party investigates Seaward council conflict, drowned deputies, Isabella's murdered friends, and a skull-buying scheme. - `day-13`: Barrier flickers near Seaward are tracked toward the quarry and cliff-side disturbance. -- `day-14`: The party enters the [Salt Dragon Prison](places/salt-dragon-prison.md), meets the [Underbelly](factions/underbelly.md), and learns of [Elemental Prisons](concepts/elemental-prisons.md), Garadwal, Salias, and the death dome. +- `day-14`: The party enters the [Salt Dragon Prison](places/salt-dragon-prison.md), meets the [Underbelly](factions/underbelly.md), and learns of [Elemental Prisons](concepts/elemental-prisons.md), Garadul, Salinus, and the death dome. - `day-15`: Elementharium/Clementarium explains quasi-elementals, and [Brutor Ruby Eye](people/brutor-ruby-eye.md) becomes a major source of containment lore. - `day-16`: The party opens [Hidden Laboratory](places/hidden-laboratory.md), sees memories of Brutor, Ennuyé, the Pact, the Barrier, and the void creature, then faces Infestus's agents. - `day-17`: A security council discusses the Barrier, the party receives Brutor's skull, and warrants and suspicious shipments complicate the response. @@ -71,33 +71,33 @@ sources: - `day-20`: [The Pact](factions/the-pact.md), Freeport, the Baroness, Valenth/Velenth, Kiendra's stolen conch, and the shield crystal mission converge. - `day-21`: Regional crises escalate around Highden, Heartmoor, Provincia, the Grand Towers, and the sea shield crystal operation. - `day-22`: The underwater party fights at the [Shield Crystals](items/shield-crystals.md) site, rescues [Kiendra](people/kiendra.md), defeats an [Excellence](concepts/excellences.md), and recovers the [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md). -- `day-23`: The party rescues merfolk, visits Freeport's Drunken Duck, explores [Cardonald's Desert Laboratory](places/desert-laboratory.md), learns more about [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), Enwi, Cardonal, and the prison network, then reaches Iceland near the Ice prison crisis. +- `day-23`: The party rescues merfolk, visits Freeport's Drunken Duck, explores [Cardonald's Desert Laboratory](places/desert-laboratory.md), learns more about [Garadul](people/garadul.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), Enwi, Cardonal, and the prison network, then reaches Iceland near the Ice prison crisis. - `day-24`: No confirmed cleaned day boundary exists; material continues inside `day-23` until `day-25`. -- `day-25`: At [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), the party learns of dragon plots, Infestus's titles, Peridita, Garadwal's people, Rubyeye's prison-status readout, and Enwi's siphoning weakening all prisons. -- `day-26`: Dreams show dwarven, Infestus, Garadwal, and hidden-room visions; the party investigates the Ice and life prisons, defeats The Mother at Baytail Accord, becomes Saviours of the Pact, and receives reports about Dunensend, Goldenswell, Goliaths, Green Dragons, and Valenth. +- `day-25`: At [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), the party learns of dragon plots, Infestus's titles, Peridita, Garadul's people, Rubyeye's prison-status readout, and Enwi's siphoning weakening all prisons. +- `day-26`: Dreams show dwarven, Infestus, Garadul, and hidden-room visions; the party investigates the Ice and life prisons, defeats The Mother at Baytail Accord, becomes Saviours of the Pact, and receives reports about Dunensend, Goldenswell, Goliaths, Green Dragons, and Valenth. - `day-27`: In [Dunensend](places/dunensend.md), the party deals with Arahuoa/Vulturemen, Haemia, automaton infiltrators, The Guilt, Goliath ancestral-ground questions, Sister Proulsothight's box, Uncle Hortekh, and Morgana joining as the fifth party member. - `day-28`: The party learns [Pride](people/pride.md) may have opened a prison, Rubyeye explains systems under Grand Towers, and the party evades young adult dragons searching the Endless Dunes. - `day-29`: Missing source pages interrupt the record; the party meets Excellence beneath the sands, kills [Lortesh](people/lortesh.md), earns Dunensend support, and hears The Guilt admit accidentally opening a prison while controlling a wizard. -- `day-30`: Dunensend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valententhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. +- `day-30`: Dunensend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valentinhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. - `day-31`: The party attends the [Freeport Auction Lots](items/freeport-auction-lots.md), then joins battle near the Brass City forces; Goliaths are freed, the Dunensend army kills a green dragon, Treamen the Earth Excellence dies, and Dirk's father plans for Salvation and the Goliath tower in a field. - `day-32`: The party reaches Hartwall, attends the [Hartwall Auction Lots](items/hartwall-auction-lots.md), hides a [Shield Crystals](items/shield-crystals.md) piece with [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), exposes a false [Lady Thorpe](people/lady-thorpe.md), rescues the real Lady Thorpe from Goldenswell, and uncovers an off-the-books [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) operation while the Tri-moon appears during the day. - `day-33` and `day-34`: No cleaned day files were included in this wiki pass. - `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. -- `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns [Pride](people/pride.md) was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Hartwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. +- `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns [Pride](people/pride.md) was eaten by [Garadul](people/garadul.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Hartwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. - `day-37` through `day-69`: Not included in this wiki pass. - `day-40`: At [Azureside](places/azureside.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). - `day-41`: Perodita / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears The Basilisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). -- `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadwal](people/garadwal.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Hartwall. -- `day-43`: Goldenswell and Hartwall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. -- `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). +- `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadul](people/garadul.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Hartwall. +- `day-43`: Goldenswell and Hartwall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadul's feather claims, the Ashkellon sphinx-family reunion, Garadul's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. +- `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valentinhide](people/valentinhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. -- `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats the altered [Original Goliath Sphinx](people/original-goliath-sphinx.md) and its invisible memory entity, restores memories, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre.md) as his father, [Anadreste](people/anadreste.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. -- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing [Pride](people/pride.md), explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. +- `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadul](people/garadul.md), defeats the altered [Original Goliath Sphinx](people/original-goliath-sphinx.md) and its invisible memory entity, restores memories, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valentinhide](people/valentinhide.md)'s costly pathways. +- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre.md) as his father, [Anadreste](people/anadreste.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valentinhide](people/valentinhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. +- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing [Pride](people/pride.md), explores a dwarven prison tied to Throngore and a lost part of [Valentinhide](people/valentinhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. -- `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. +- `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valentinhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. - `day-53`: Bridget sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. - `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. -- `day-55`: The party fights through Magstein / Grimcrag, learns Merocole has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. +- `day-55`: The party fights through Magstein / Grimcrag, learns Mericok has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. - `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become [Envy](people/envy.md), confronts Justicars and [Everard Browning](people/everard-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. - `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tremon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Lady Elissa Hartwall identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. -
6bf751bValenth/Ruby question resolutionby Laura Mostert
data/6-wiki/open-threads.md | 1 - data/6-wiki/people/brutor-ruby-eye.md | 3 ++- data/6-wiki/people/valenth-cardonald.md | 7 +++---- data/6-wiki/places/desert-laboratory.md | 3 ++- 4 files changed, 7 insertions(+), 7 deletions(-)Show diff
diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 99ecba5..e29ea8c 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -61,7 +61,6 @@ sources: - What happened to the Earl of Everchard after memories returned? - What is the relationship between [Infestus](people/infestus.md), the [Black Scales](factions/black-scales.md), black dragonborn agents, and the suspicious shipments? - What are [Pythus Aleyvarus](people/pythus-aleyvarus.md) and the [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md) now being used for? -- Is [Valenth Cardonald](people/valenth-cardonald.md) the same person described as Ruby Eye's best friend who wanted to craft herself into an object? - What is the Freeport Baroness's true identity and succession mechanism? - What did the water elementals chained to the [mother-of-pearl chariot](items/mother-of-pearl-elemental-chariot.md) want [unclear], and should selling it be treated as exploitation? - Why does the chronology preserve conflicting dates around `6th Jan 1002` and `6th Jan 1012`? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index cb23a3c..2cf4d1a 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,7 +5,7 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-56 +last_updated: user-clarification sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md @@ -40,6 +40,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - He was described as powerful, possibly a demi-lich figure, and interested in immortality, runes, sacrifice, and containment. - He was killed by or strongly associated with conflict against the black dragon [Infestus](infestus.md). - He visited Cardonal's desert laboratory 47 times, last around 908 years before day 23, and had requested a copy of a book after seeing it at Aquaria. +- [Valenth Cardonald](valenth-cardonald.md) was Ruby Eye's best friend and is the same person described as wanting to craft herself into an object and continue in that form. - He created his own prison-status readout using a humanized effigy of the spirit, runes, and links to the prison and prison runes. - Rubyeye described Grand Towers technology beneath the towers, the overseer controls, Valenthide prison, and an automaton guard. - On day 30 Cardenald resurrected him from the skull; Rubyeye returned with glowing red eyes, made a beard, and helped gather Counterspell scrolls and orbs. diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index 369257b..dada71e 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -11,7 +11,7 @@ aliases: - Valententhide - Valent first_seen: day-20 -last_updated: day-44 +last_updated: user-clarification sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-23.md @@ -29,13 +29,13 @@ sources: ## Summary -Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Freeport Baroness](freeport-baroness.md), a mage connected to sentient-item work, automations, prison repair, and the desert laboratory. +Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Freeport Baroness](freeport-baroness.md) and [Brutor Ruby Eye](brutor-ruby-eye.md)'s best friend, a mage connected to sentient-item work, automations, prison repair, and the desert laboratory. ## Known Details - The Baroness knew Velenth/Valenth Cardonald and was shaken by revelations about her. - Valenth wanted to transfer herself into an object. -- This resembles another account that Ruby Eye's best friend wanted to craft herself into something and continue in that form. +- Valenth Cardonald is the same person described as Ruby Eye's best friend who wanted to craft herself into something and continue in that form. - At the desert laboratory, Cardonal communicated through a copper astrolabe with a red gem after 907 years and later took over Silver's construct body when Silver was thrown into the Barrier. - Cardonal wrote `Instructions for creating sentient jewellery` in Celestial; sentient items needed a soul. - She could provide teleport-circle codes for prisons, labs, and Grand Towers levels, and could be contacted with fixed Enwi. @@ -69,7 +69,6 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr ## Open Questions -- Is Valenth the same person as Ruby Eye's best friend? - Did the object-transfer plan succeed, and if so what object contains her? - Are Valenth/Cardonal/Cardenald and Valenthide/Valententhide separate beings, a spelling collision, or a person-prison relationship? - How does the old-school Valenth Cardonald, Matron Cardonald's daughter in Geldrin's year, connect to the later Valenth/Cardonald identity cluster? diff --git a/data/6-wiki/places/desert-laboratory.md b/data/6-wiki/places/desert-laboratory.md index ef66a13..84fff80 100644 --- a/data/6-wiki/places/desert-laboratory.md +++ b/data/6-wiki/places/desert-laboratory.md @@ -7,7 +7,7 @@ aliases: - Cardenald's lab - Valenth's lab first_seen: day-23 -last_updated: day-30 +last_updated: user-clarification sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-30.md @@ -24,6 +24,7 @@ Cardonald's desert laboratory is an ancient automation and sentient-item site ti - Silver, a female automaton, said she had been there 601 years and 907 years without the mistress. - The mistress died in a spell accident; Silver cleaned her up, and the laboratory remained oddly clean after later damage. - Rubyeye had visited 47 times, last around 908 years earlier, and requested a book copy after viewing it at Aquaria. +- Rubyeye's connection to the laboratory includes Valenth Cardonald as his best friend, the mage who wanted to craft herself into an object and continue in that form. - The site contained white roses, art and statues of Hephaestos's defeat, portraits of Enwi, Joy, Browning, Rubyeye, Heurhall, and a sphinx, and the note `Victorious but too late it was still the Dunewand`. - Behind Garadwal's picture was a golden band with a smashed ruby resembling Eno's ring, possibly sentient or hurt. - The library contained Everard Browning automation manuals and Cardonal's Celestial `Instructions for creating sentient jewellery`; sentient items required a soul. -
37125bcGaradwalby Laura Mostert
data/2-pages/89.txt | 2 +- data/3-days/day-26.md | 2 +- data/4-days-cleaned/day-26.md | 6 +++--- data/6-wiki/aliases.md | 2 +- data/6-wiki/concepts/elemental-prisons.md | 4 ++-- data/6-wiki/open-threads.md | 4 ++-- data/6-wiki/people/garadwal.md | 13 +++++++------ data/6-wiki/people/lortesh.md | 5 ++--- data/6-wiki/people/peridita.md | 2 +- data/6-wiki/people/status.md | 4 ++-- data/6-wiki/places/dunensend.md | 5 +++-- 11 files changed, 25 insertions(+), 24 deletions(-)Show diff
diff --git a/data/2-pages/89.txt b/data/2-pages/89.txt index 697af13..a101515 100644 --- a/data/2-pages/89.txt +++ b/data/2-pages/89.txt @@ -11,7 +11,7 @@ Green Dragons. Travelers don't appear to have returned from the deserts. Prison & plagues in Azureside & Hearthmore. Lots of green dragon type creatures. -Perodita's new mate Kortesh Gravesings (Also her son!) +Perodita's new mate Lortesh (Also her son!) He Attails the boons - wears a metal helmet lined with finger bones, metal hooks with trophies from his kills attached to them diff --git a/data/3-days/day-26.md b/data/3-days/day-26.md index 30c594a..fc33b9e 100644 --- a/data/3-days/day-26.md +++ b/data/3-days/day-26.md @@ -242,7 +242,7 @@ Green Dragons. Travelers don't appear to have returned from the Lots of green dragon type creatures. -Perodita's new mate Kortesh Gravesings (Also her son!) +Perodita's new mate Lortesh (Also her son!) He Attails the boons - wears a metal helmet lined with finger bones, metal hooks with trophies from his kills attached to them diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md index cc9d933..00b7ff4 100644 --- a/data/4-days-cleaned/day-26.md +++ b/data/4-days-cleaned/day-26.md @@ -58,7 +58,7 @@ All pointed toward the glowing parchment, saying "on our hooper preserve the pac The Pact had a route outside the barrier. Those not serving as Pact leaders tended to leave. Outside the barrier, one birth in 100 years was typical; inside, there had been a few each year until recently. They believed there was a curse and that the barrier protected them from it. The party told them Cardenald was back. -Azureside records said the Goliaths were wiped out by the Green Dragons. Travelers did not appear to have returned from an area with lots of green-dragon-type creatures. Perodita's new mate was Kortesh Gravesings, also her son. He attails the boons, wears a metal helmet lined with finger bones, and wears metal hooks with trophies from his kills attached. Azureside generally calls him "The Twisted". At least five features or creatures were noted: two heads, weeping pores, an alien head, and no lips. +Azureside records said the Goliaths were wiped out by the Green Dragons. Travelers did not appear to have returned from an area with lots of green-dragon-type creatures. Perodita's new mate was Lortesh, also her son. He attails the boons, wears a metal helmet lined with finger bones, and wears metal hooks with trophies from his kills attached. Azureside generally calls him "The Twisted". At least five features or creatures were noted: two heads, weeping pores, an alien head, and no lips. Azureside had called for help from Grand Towers but received none. A Justicar had recently headed to Hearthmoor to check the plague. The last contact with the Goliaths was approximately 900 years ago. Lady Aquena would stay for a while and leave her offspring. @@ -76,7 +76,7 @@ Dreams were discussed: over many years they could be saved, and many recent drea # People, Factions, and Places Mentioned -Coalment, Invar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hartwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hartwall State, Goldenswell State, and Snowsorrow State were all mentioned. +Coalment, Invar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Lortesh, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hartwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hartwall State, Goldenswell State, and Snowsorrow State were all mentioned. # Items, Rewards, and Resources @@ -98,7 +98,7 @@ The Mother died at Baytail Accord, but her ability to repurpose Envi's clone see Baytail Accord believes a curse affects births outside or around the barrier: outside the barrier, one birth in 100 years was typical, while inside there had been several a year until recently. The first baby girl in 20 years, the glowing parchment, the Pact, and the route outside the barrier all remain significant. -Azureside records say the Goliaths were wiped out by Green Dragons, with no contact for about 900 years. Perodita's new mate Kortesh Gravesings, also her son and called The Twisted, appears linked to monstrous green-dragon activity. Grand Towers did not respond to Azureside's call for help, and a Justicar had recently gone to Hearthmoor to check the plague. +Azureside records say the Goliaths were wiped out by Green Dragons, with no contact for about 900 years. Perodita's new mate Lortesh, also her son and called The Twisted, appears linked to monstrous green-dragon activity. Grand Towers did not respond to Azureside's call for help, and a Justicar had recently gone to Hearthmoor to check the plague. Reports from the Pact leaders point to wider instability: colder weather and storms near Fishbait's Edge, lost loggers at Dine Springs, Baron attacks and nefarious Seaward shipments near Fairshore, a menagerie break-in and black-market animal fines, Dunensend not sending troops against giants, and unusual Seaward barrier repairs by gushiers including an unknown "Gendrin". The noble council meeting on the next Trimoon remains pending. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 22648cf..14ae6e8 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -112,7 +112,7 @@ sources: - [The Thornhollows Family](people/thornhollows-family.md): Annabel/Annabella, Isabelle/Isabella, Clarabella/Clara bella/Cleara. - [Dunensend](places/dunensend.md): Dunensend, Dunensend State, Dunnen, Dunengend [uncertain related place], Dunend [uncertain spelling]. - [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md): Rimewatch, Ice prison, Iceblus's prison, Iceland's prison, Howling Tombs, Rimewock prison. -- [Lortesh](people/lortesh.md): Lortesh, Kortesh Gravesings, Hortekh, Uncle Hortekh, The Twisted, Peridita and Infestus' son, Peridita's husband. +- [Lortesh](people/lortesh.md): Lortesh, Hortekh, Uncle Hortekh, The Twisted, Peridita and Infestus' son, Peridita's husband. - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md): Xinquiss, Xinqus, Xinquss, Zinquiss. - [Morgana](people/morgana.md): Morgana. - [Benu](people/benu.md): Benu. diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 58523a8..a249727 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -7,7 +7,7 @@ aliases: - barrier batteries - elemental batteries first_seen: day-14 -last_updated: day-56 +last_updated: user-clarification sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -41,7 +41,7 @@ The elemental prisons are ancient containment systems that may hold or exploit p - There were said to be eight altogether. - Possible categories or associated forms include ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt, but this list is uncertain and may exceed eight. - The [Salt Dragon Prison](../places/salt-dragon-prison.md) contained a salt dragon inside a smaller barrier. -- [Garadwal](../people/garadwal.md), Salias, the salt dragon, and void fragments may be connected to this prison network. +- [Garadwal](../people/garadwal.md), Salias, the salt dragon, and void fragments are connected to this prison network; Garadwal was imprisoned in one of the eight dome prisons after consuming a void elemental. - Quasi-elemental lore distinguishes salt and water, with salt poisoning or polluting water elementals. - Cardonal described seven prisons, five labs, three Grand Towers levels, and teleport-circle codes, with other sites near pylons, a Goldenswell impact site, Riversmeet menagerie, a Goliath city, and missing dwarf and Goliath cities. - Named or described prisoners and princes include Salinas of salt, Limus Vita/Limnuvela of ooze or life, Iceblus/Iceland of ice, Arasarath, Merocole, Gardwel, Papa I Meurina, and Valententhidle/Valententhide. diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 5decee6..99ecba5 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -52,7 +52,7 @@ sources: # Open Threads -- What exactly is [Garadwal](people/garadwal.md): void, sand, sphinx, elemental prisoner, or several overlapping descriptions? +- How do [Garadwal](people/garadwal.md)'s current forms and motives relate to his original identity as a Sphinx protector of the Dunnen People corrupted by consuming a void elemental? - Who made the pact described by the [rings](items/rings-of-joy-ennuyé-and-dirk.md), and what did it do to Joy's soul or clones? - Can the [Tri-moon Shard](items/tri-moon-shard.md) be repelled without dropping or fatally weakening the [Barrier](concepts/barrier.md)? - Are the [Elemental Prisons](concepts/elemental-prisons.md) justified containment, exploitation, or both? @@ -74,7 +74,7 @@ sources: - What did the cold dream voice mean by `where is he I know you hide him`, and why did a white dragonscale fall from the party room icicle? - Did the Ruby Eye riddle/layout mechanism have further consequences after the hidden laboratory was opened? - Who or what sent the white powder visions of basilisk, salamanders, Arabic writing, white dragon, black void, cold blue eyes, and contradictory Freeport dreams? -- What is the exact relationship between [Garadwal](people/garadwal.md), the Dunnen people, the void lieutenant he consumed, Enwi's apprentice, and the dragon crash that weakened the prisons? +- What is the exact relationship between [Garadwal](people/garadwal.md), Enwi's apprentice, and the dragon crash that weakened the prisons? - Which of the seven named prisons, five labs, Grand Towers levels, Goliath city, missing dwarf city, Goldenswell impact site, Riversmeet menagerie, and pylon-adjacent sites are still intact or compromised? - Did [Ennuyé](people/ennuyé.md)'s life-force siphoning replicate across all prisons by design, sabotage, or later misuse, and can it be reversed without killing prisoners like Limnuvela? - Who gave Anrasurall the Ice prison runes, what was he trying to free at [Rimewatch](places/rimewatch-ice-prison.md), and what are the hollow rocks or possible eggs near the burst entrance? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 363aa83..6b98e88 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -15,7 +15,7 @@ aliases: - Groot - Bynx's brother first_seen: day-01 -last_updated: day-56 +last_updated: user-clarification sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-06.md @@ -39,17 +39,20 @@ sources: ## Summary -Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Bynx's brothers, a major imprisoned threat tied to the [Barrier](../concepts/barrier.md), the Prison of the Sands, void lore, sand, earth, fire, and later cold/void dreams. +Garadwal, also recorded as Guardwel and known as the Terror of the Sands, is one of Attabre's Sphinx children and Bynx's brothers. He was a Sphinx protector of the Dunnen People, corrupted when he consumed a void elemental, and imprisoned in one of the eight dome prisons. ## Known Details - Tales describe him as the Terror of the Sands, nightmare of the darkness, and a being that would consume souls. +- Garadwal was a Sphinx protector of the Dunnen People before his corruption. +- He was corrupted when he consumed a void elemental. +- He was imprisoned in one of the eight dome prisons. - Early Everchard horror connected him to a sphinx that learned dark magic and experimented on itself. - [Brutor Ruby Eye](brutor-ruby-eye.md) called him the only void they could find, one of eight whose escape would weaken the Barrier, and someone the wizards agreed needed containment. - Elementals later described Garadwal as their master and said he was associated with sand, earth, and fire. - He was said to have been buried north of Aegis-on-Sands and imprisoned in the Prison of the Sands. - Wrath/Kolin was asked to search for Garadwal at Black Scale. -- Cardonal's laboratory lore says Garadwal was leader of the Dunnen people, consumed a void lieutenant, slaughtered the rest of the Dunnen people, and was locked up after the event. +- Cardonal's laboratory lore says Garadwal was leader or protector of the Dunnen people, consumed a void lieutenant or void elemental, slaughtered the rest of the Dunnen people after his corruption, and was locked up after the event. - The dragon crash into Grand Towers was said to have weakened the prisons enough for Garadwal to escape. - Infestus appeared in a dream sending Garadwal through a portal with a coin; another dream showed abnormal dragons near Garadwal's prison and a void voice asking `where is he I know you know`. - Garadwal moved through Blackscale, returned to the dome, and attacked Baytail Accord before teleporting away. @@ -80,7 +83,7 @@ Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Byn - `day-14`: Elementals describe Garadwal as their master and connect him to elemental imprisonment. - `day-15`: Brutor's lore frames Garadwal as a void prisoner whose escape weakens the Barrier. - `day-21`: Cold dreams, void language, and white dragonscale clues may connect back to Garadwal. -- `day-23`: The desert laboratory identifies many Garadwal variants, his Dunnen people history, void lieutenant connection, prison network, and possible escape mechanism. +- `day-23`: The desert laboratory identifies many Garadwal variants, his Dunnen people history, void elemental connection, prison network, and possible escape mechanism. - `day-25`: Rimewatch warnings describe dragons plotting to breathe the Terror of the Sands out of her prison. - `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadwal moving actively. - `day-29`: Excellence says he protected the vultures after Gardwal failed, and his brother was apparently looking for him. @@ -106,10 +109,8 @@ Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Byn ## Open Questions -- How does Garadwal's identity as one of Attabre's sphynx children overlap with his void, elemental-master, and prisoner identities? - What are the other seven beings or poles connected to him? - Has he escaped, partially escaped, or only influenced agents from prison? -- Was Garadwal once a protector or leader before consuming the void lieutenant? - Is Excellence's brother the same figure as Garadwal, and why did Goliaths ask Excellence to trap him? - What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? - Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? diff --git a/data/6-wiki/people/lortesh.md b/data/6-wiki/people/lortesh.md index 2eed79b..5909c61 100644 --- a/data/6-wiki/people/lortesh.md +++ b/data/6-wiki/people/lortesh.md @@ -2,7 +2,6 @@ title: Lortesh type: person or dragon aliases: - - Kortesh Gravesings - Hortekh - Uncle Hortekh - The Twisted @@ -19,13 +18,13 @@ sources: ## Summary -Lortesh, also recorded as Kortesh Gravesings or Hortekh, was a monstrous green-dragon-linked threat tied to Peridita, Infestus, sickly Goliaths, Dunensend, and the missing-page gap before his death. He is the son of [Peridita](peridita.md) and [Infestus](infestus.md), and also Peridita's husband. +Lortesh, also recorded as Hortekh, was a monstrous green-dragon-linked threat tied to Peridita, Infestus, sickly Goliaths, Dunensend, and the missing-page gap before his death. He is the son of [Peridita](peridita.md) and [Infestus](infestus.md), and also Peridita's husband. ## Known Details - Lortesh is Peridita and Infestus' son. - Lortesh is also Peridita's husband. -- Azureside records named Perodita's new mate as Kortesh Gravesings, also her son, called `The Twisted`. +- Azureside records named Perodita's new mate as Lortesh, also her son, called `The Twisted`. - He wore a metal helmet lined with finger bones and metal hooks carrying trophies from his kills. - Recorded features include two heads, weeping pores, an alien head, no lips, and other monstrous green-dragon traits. - In Dunensend, Uncle Hortekh appeared with a massive verdian/veridian Dragonborn and two sickly Goliaths, threatened Dirk and the Goliaths, and said he would get him one day. diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index c2aeee2..a4b68b9 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -35,7 +35,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Peridita is Infestus' ex-wife. - Lortesh is Peridita and Infestus' son, and also Peridita's husband. - Dragon titles record Peridita as green, `The Choking Death`, `The whispers in the dark`, and `Mother of many`. -- Day 26 says Perodita's new mate was Kortesh Gravesings, also her son, called `The Twisted`. +- Day 26 says Perodita's new mate was Lortesh, also her son, called `The Twisted`. - Azureside records tied Green Dragons to the destruction of the Goliaths and lack of contact for about 900 years. - On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. - Day 40 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 706a77f..6d08a11 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -106,7 +106,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Araks | killed by party | `data/4-days-cleaned/day-42.md` | Dragonborn in Ashkellon throne room; body returned to throne with dagger in back. | | Emmeredge | dead | `data/4-days-cleaned/day-42.md` | Died during the Ashkellon Noxia-chamber battle. | | Noxia Beast avatar | killed | `data/4-days-cleaned/day-42.md` | Avatar killed, but Noxia's larger status remains open. | -| Garadwal | banished | `data/4-days-cleaned/day-43.md` | Benu and Garadwal fought outside Ashkellon; Garadwal was banished at 5:00. | +| Garadwal | banished, later clearer and seeking to repay misdeeds | `data/4-days-cleaned/day-43.md`, `data/4-days-cleaned/day-56.md` | Benu and Garadwal fought outside Ashkellon; Garadwal was banished at 5:00. Later clarification: he was originally a Sphinx protector of the Dunnen People, corrupted by consuming a void elemental and imprisoned in one of the eight dome prisons. | ## Missing, Disappeared, or Unresolved @@ -195,7 +195,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Person or group | Current risk | Source | Notes | |---|---|---|---| -| [Garadwal](garadwal.md) | major unresolved threat | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-21.md` | Status contradictory: imprisoned, escaped, or soon free depending on source. | +| [Garadwal](garadwal.md) | dangerous but clearer; former protector | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-21.md`, `data/4-days-cleaned/day-56.md` | Known as Terror of the Sands; originally a Sphinx protector of the Dunnen People, corrupted after consuming a void elemental, imprisoned in one of the eight dome prisons, and later said he would repay his misdeeds by helping the party. | | Pelt | unresolved memory/Joy threat | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-06.md` | Connected to memory-taking and Joy's rough condition. | | Musher | killed | `data/4-days-cleaned/day-06.md` | Used townsfolk to attack the Barrier; killed with associated worm/dog-like creatures. | | [Infestus](infestus.md) / Black Dragon | dangerous but temporarily even | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md` | Employer of Black Scales; considered the party even after receiving Alsafaur's skull; ex-husband of [Peridita](peridita.md), with [Lortesh](lortesh.md) as their son. | diff --git a/data/6-wiki/places/dunensend.md b/data/6-wiki/places/dunensend.md index dc36ecd..9682e19 100644 --- a/data/6-wiki/places/dunensend.md +++ b/data/6-wiki/places/dunensend.md @@ -6,7 +6,7 @@ aliases: - Dunensend State - Dunnen first_seen: day-26 -last_updated: day-31 +last_updated: user-clarification sources: - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-27.md @@ -20,7 +20,7 @@ sources: ## Summary -Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Arahuoa/Vulturemen conflict, automaton infiltration, Goliath history, and later military support for the party. +Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Arahuoa/Vulturemen conflict, automaton infiltration, Goliath history, Garadwal's history as Sphinx protector of the Dunnen People, and later military support for the party. ## Known Details @@ -30,6 +30,7 @@ Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Ar - Automaton infiltrators included Agugu, a guard with a wife and five-year identity, and other guards; The Guilt said the whole place was riddled with automatons. - Sister Proulsothight [uncertain] held a box like Gelissa's, apparently the target of recent shop break-ins. - Dunensend records and scholars connect the Goliaths to city-building, Ashktioth, Tradesmall, and old contact about 900 years ago. +- Garadwal, known as Terror of the Sands, was once a Sphinx protector of the Dunnen People before being corrupted by consuming a void elemental. - The city and rulers supported the party in wars to come after Lortesh died. - Dunensend later supplied 100 troops, 5 healers, transport, and 10 cavalry; its army killed a green dragon during the Brass City battle. -
3f20065dragon incestby Laura Mostert
data/6-wiki/aliases.md | 4 ++-- data/6-wiki/people/infestus.md | 10 +++++++--- data/6-wiki/people/lortesh.md | 8 +++++--- data/6-wiki/people/peridita.md | 8 +++++--- data/6-wiki/people/status.md | 4 ++-- 5 files changed, 21 insertions(+), 13 deletions(-)Show diff
diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 8b6d3c2..22648cf 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -97,7 +97,7 @@ sources: - [Sunsoreen / Snowsorrow](places/sunsoreen.md): Sunsoreen, Snowsorrow, Snowscreen [misspelling], Snow Screen [misspelling], Snow Sorrow [spacing variant]. - [Sunsoreen Council](factions/sunsoreen-council.md): Council of Gold, Sunsoreen Council, Hayhearn Frowbrind, Hayhearn Frostwind, Aurum Prudence, Sophus Holed, Orius [Nosheer?], The Silent One. - [The Mother](people/the-mother.md): The Mother, Mother. -- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, The Choking Death, The whispers in the dark, Mother of many. +- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, The Choking Death, The whispers in the dark, Mother of many, Infestus' ex-wife. - [The Basilisk](people/the-basilisk.md): The Basilisk, The Basilisk's guild. - [Invar](people/invar.md): Invar. - [Dirk](people/dirk.md): Dirk. @@ -112,7 +112,7 @@ sources: - [The Thornhollows Family](people/thornhollows-family.md): Annabel/Annabella, Isabelle/Isabella, Clarabella/Clara bella/Cleara. - [Dunensend](places/dunensend.md): Dunensend, Dunensend State, Dunnen, Dunengend [uncertain related place], Dunend [uncertain spelling]. - [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md): Rimewatch, Ice prison, Iceblus's prison, Iceland's prison, Howling Tombs, Rimewock prison. -- [Lortesh](people/lortesh.md): Lortesh, Kortesh Gravesings, Hortekh, Uncle Hortekh, The Twisted. +- [Lortesh](people/lortesh.md): Lortesh, Kortesh Gravesings, Hortekh, Uncle Hortekh, The Twisted, Peridita and Infestus' son, Peridita's husband. - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md): Xinquiss, Xinqus, Xinquss, Zinquiss. - [Morgana](people/morgana.md): Morgana. - [Benu](people/benu.md): Benu. diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md index 1112256..8198723 100644 --- a/data/6-wiki/people/infestus.md +++ b/data/6-wiki/people/infestus.md @@ -7,7 +7,7 @@ aliases: - bane of multitude - slayer of Ruby eye first_seen: day-14 -last_updated: day-57 +last_updated: user-clarification sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -25,7 +25,7 @@ sources: ## Summary -Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.md), black dragonborn agents, acid, storms, insects, and conflict with [Brutor Ruby Eye](brutor-ruby-eye.md). +Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.md), black dragonborn agents, acid, storms, insects, conflict with [Brutor Ruby Eye](brutor-ruby-eye.md), and a past marriage to [Peridita](peridita.md). [Lortesh](lortesh.md) is his son with Peridita. ## Known Details @@ -40,6 +40,8 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - On Day 55, Wrath appeared as a black dragonborn fighting green dragons or Perodita's children and said basilisk coal at Coalmont Rally could teleport the party to Infestus. - On Day 56, the party reached Infestus through a Bluescale archway with strict rules, saw a museum curiosity from Keep Rememberence, and learned Infestus wanted to pay the party for deeds. The Great Infestus pub and Ember, a red dragonborn seeking news of red dragons and dragonborn, were part of this visit. - Umberous is Infestus' son. On Day 48, Umberous spoke on Infestus' behalf at Salanar's prison, wanted Rubyeye delivered to Infestus, and bargained not to tell Infestus about Rubyeye in exchange for a favour. +- Peridita is Infestus' ex-wife. +- Lortesh is Infestus and Peridita's son, and is also Peridita's husband. ## Timeline @@ -57,11 +59,13 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - [Black Scales](../factions/black-scales.md) - [Hidden Laboratory](../places/hidden-laboratory.md) - [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Peridita](peridita.md) +- [Lortesh](lortesh.md) ## Open Questions - What does Infestus want from the Barrier and void creatures? - Can crystals on dragon scales intentionally breach or part the Barrier? -- What cities were targeted for removal, and was Infestus behind both dragon plots? +- What cities were targeted for removal, and how much did Infestus' split from Peridita and Lortesh shape the dragon plots? - What are the Bluescale rules protecting, and what does Infestus want to pay the party for? - How do Ember's request for red dragon and red dragonborn news and Eliana's elf smell connect to Infestus's politics? diff --git a/data/6-wiki/people/lortesh.md b/data/6-wiki/people/lortesh.md index e9f366d..2eed79b 100644 --- a/data/6-wiki/people/lortesh.md +++ b/data/6-wiki/people/lortesh.md @@ -7,7 +7,7 @@ aliases: - Uncle Hortekh - The Twisted first_seen: day-26 -last_updated: day-31 +last_updated: user-clarification sources: - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-27.md @@ -19,10 +19,12 @@ sources: ## Summary -Lortesh, possibly Kortesh Gravesings or Hortekh, was a monstrous green-dragon-linked threat tied to Peridita, sickly Goliaths, Dunensend, and the missing-page gap before his death. +Lortesh, also recorded as Kortesh Gravesings or Hortekh, was a monstrous green-dragon-linked threat tied to Peridita, Infestus, sickly Goliaths, Dunensend, and the missing-page gap before his death. He is the son of [Peridita](peridita.md) and [Infestus](infestus.md), and also Peridita's husband. ## Known Details +- Lortesh is Peridita and Infestus' son. +- Lortesh is also Peridita's husband. - Azureside records named Perodita's new mate as Kortesh Gravesings, also her son, called `The Twisted`. - He wore a metal helmet lined with finger bones and metal hooks carrying trophies from his kills. - Recorded features include two heads, weeping pores, an alien head, no lips, and other monstrous green-dragon traits. @@ -34,10 +36,10 @@ Lortesh, possibly Kortesh Gravesings or Hortekh, was a monstrous green-dragon-li - [Dunensend](../places/dunensend.md) - [Garadwal](garadwal.md) +- [Peridita](peridita.md) - [Infestus](infestus.md) ## Open Questions -- Are Lortesh, Kortesh Gravesings, and Uncle Hortekh the same being? - What happened during the missing pages before Lortesh was killed? - What does `untruly end` mean? diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index a9bca7c..c2aeee2 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -8,7 +8,7 @@ aliases: - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-55 +last_updated: user-clarification sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md @@ -27,11 +27,13 @@ sources: ## Summary -Peridita, also written Perodita or Perodetta, is a green dragon figure called `The Choking Death`, `The whispers in the dark`, and `Mother of many`. +Peridita, also written Perodita or Perodetta, is a green dragon figure called `The Choking Death`, `The whispers in the dark`, and `Mother of many`. She is the ex-wife of [Infestus](infestus.md), and [Lortesh](lortesh.md) is both her son with Infestus and her husband. ## Known Details - Day 25 names Peridita in connection with warnings about dragons plotting, the Terror of the Sands, and `the mother of many`. +- Peridita is Infestus' ex-wife. +- Lortesh is Peridita and Infestus' son, and also Peridita's husband. - Dragon titles record Peridita as green, `The Choking Death`, `The whispers in the dark`, and `Mother of many`. - Day 26 says Perodita's new mate was Kortesh Gravesings, also her son, called `The Twisted`. - Azureside records tied Green Dragons to the destruction of the Goliaths and lack of contact for about 900 years. @@ -55,7 +57,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T ## Open Questions - Is Peridita the `mother` from the old warning, or could that refer to Dunnen's mage? -- What is her exact relationship to Lortesh / Kortesh Gravesings and the Green Dragons? +- How did Peridita's split from Infestus and her relationship with Lortesh shape the Green Dragons and later dragon plots? - Is the laughing female dragon / Peridot Queen vision connected to Peridita, or is it a separate dragon figure? - Are Perodita, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? - What does freeing Perodita require from Bridge, and what does releasing Valentenhide under the god rule cost? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 12b8239..706a77f 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -198,13 +198,13 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Garadwal](garadwal.md) | major unresolved threat | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-21.md` | Status contradictory: imprisoned, escaped, or soon free depending on source. | | Pelt | unresolved memory/Joy threat | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-06.md` | Connected to memory-taking and Joy's rough condition. | | Musher | killed | `data/4-days-cleaned/day-06.md` | Used townsfolk to attack the Barrier; killed with associated worm/dog-like creatures. | -| [Infestus](infestus.md) / Black Dragon | dangerous but temporarily even | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md` | Employer of Black Scales; considered the party even after receiving Alsafaur's skull. | +| [Infestus](infestus.md) / Black Dragon | dangerous but temporarily even | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md` | Employer of Black Scales; considered the party even after receiving Alsafaur's skull; ex-husband of [Peridita](peridita.md), with [Lortesh](lortesh.md) as their son. | | Justicar | political obstacle | `data/4-days-cleaned/day-12.md`, `data/4-days-cleaned/day-15.md` | Elementarium wanted her gone from Seaward. | | Sahuagin / Kingly / six-armed fish creature | hostile faction/threat | `data/4-days-cleaned/day-19.md`, `data/4-days-cleaned/day-20.md` | Had Kiendra's conch and prepared copper weapons. | | Excellence | hostile type, one defeated | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Can be slain; one fought Huntmaster and was defeated or dealt with. | | Perodetta | regional threat | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Spawn amassing near Azure-side; Heartmoor illness may connect. | | Fairshaw/Freeport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | -| [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | +| [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots; ex-wife of [Infestus](infestus.md), mother of [Lortesh](lortesh.md), and married to Lortesh. | | [Envy](envy.md) / Lady Envy | removed-emotion manifestation; llamia boss context unresolved | `data/4-days-cleaned/day-35.md`, `data/4-days-cleaned/day-56.md` | Manifestation of an emotion removed from the elves; Lady Envy was named by TJ Biggins as boss of the llamia, and Day 56 says Thomas removed Humility fragments to become Envy. | | [Wrath](wrath.md) | removed-emotion manifestation; dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Manifestation of an emotion removed from the elves; impersonated Ruby Eye, cursed dragons, imprisoned Lady Evalina Hartwall / Mama Hartwall, and was shouted back into Ruby Eye's eye. | | [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-40.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | -
baa57b5Clarify Dotharl and emotion-entity loreby Laura Mostert
data/4-days-cleaned/day-46.md | 8 ++-- data/4-days-cleaned/day-47.md | 4 +- data/6-wiki/aliases.md | 5 ++- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/day-57-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 6 +-- data/6-wiki/clues/days-48-52-coverage-audit.md | 2 +- data/6-wiki/clues/days-53-56-coverage-audit.md | 2 +- .../clues/known-passwords-and-inscriptions.md | 2 +- data/6-wiki/concepts/barrier.md | 2 +- data/6-wiki/concepts/excellences.md | 10 +++-- .../goldenswell-prison-network-and-memory-grubs.md | 2 +- data/6-wiki/concepts/removed-elven-emotions.md | 41 ++++++++++++++++++++ data/6-wiki/index.md | 3 ++ data/6-wiki/open-threads.md | 16 ++++---- "data/6-wiki/people/ennuy\303\251.md" | 5 ++- data/6-wiki/people/envy.md | 44 ++++++++++++++++++++++ data/6-wiki/people/minor-figures-day-46.md | 4 +- data/6-wiki/people/minor-figures-day-57.md | 2 +- data/6-wiki/people/minor-figures-days-32-35.md | 4 +- data/6-wiki/people/minor-figures-days-36-40-41.md | 2 +- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- data/6-wiki/people/pride.md | 40 ++++++++++++++++++++ data/6-wiki/people/status.md | 6 +-- data/6-wiki/people/tj-biggins.md | 4 +- data/6-wiki/people/wrath.md | 10 +++-- data/6-wiki/sources.md | 6 +-- data/6-wiki/timeline.md | 8 ++-- 28 files changed, 192 insertions(+), 52 deletions(-)Show diff
diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index a1fd476..99226de 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -78,9 +78,9 @@ Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but w Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunnen door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. -Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" The invisible entity was defeated, and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." +Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" The invisible entity was defeated, and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward Dotharl, and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." -Dothral, also called Joshua, had only been aware for twenty years. A soul crashing into the tower had awakened a few constructs. A magpie landed on Morgana and said it could help her. The Chorus had sent it. Difficult times were coming, but Morgana would know the right path when it came. The magpie could say no more because Morgana had told it not to say anything else, though she could not remember doing so. It said it was time; the Chorus could not help before but could now. Willowispa was flying away furious. Dothral had awakened around Rhime watches about twenty years earlier, near a door, and something had forcefully propelled him through it. +Dotharl, played by Joshua, had only been aware for twenty years. A soul crashing into the tower had awakened a few constructs. A magpie landed on Morgana and said it could help her. The Chorus had sent it. Difficult times were coming, but Morgana would know the right path when it came. The magpie could say no more because Morgana had told it not to say anything else, though she could not remember doing so. It said it was time; the Chorus could not help before but could now. Willowispa was flying away furious. Dotharl had awakened around Rhime watches about twenty years earlier, near a door, and something had forcefully propelled him through it. The notes mark Day 46 again as the party moved mattresses into the map room to rest at 2:00. Geldrin checked whether the power-armour suit was still there with Dothral and brought it back to the map room. The party slept. Platinum last knew Cardonald's location about two days earlier in Tradesmells; she had been hard to recall, and in the last few days she had become obsessed with the idea of Dothral. @@ -114,7 +114,7 @@ Bollar men were looking for the party. He agreed to help the militia and find th # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Ennuyé, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine of Riversmeet, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. +People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Ennuyé, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Dotharl, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine of Riversmeet, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. @@ -158,7 +158,7 @@ The visions behind the doors, including the restored statue of Sierra, Lodest wi The memory flood restored or revealed relationships, including Invar and Eliana remembering Morgana as more familiar than expected. The source and implications of those restored memories remain unresolved. -Dothral / Joshua, Amoursorate's request to look after her son, Dothral's twenty-year awareness, and the constructs awakened by a soul crash remain open threads. +Dotharl, Amoursorate's request to look after her son, Dotharl's twenty-year awareness, and the constructs awakened by a soul crash remain open threads. The Chorus magpie told Morgana it can now help and that she will know the right path, despite Morgana apparently having previously told it to be silent and not remembering doing so. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index 5811a23..bb6dc6d 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -44,7 +44,7 @@ An ornate door led to a long throne room. One throne was Hartwall-carved but cru A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Ennuyé's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Browning came in a day later and left with a key. The door said Hartwall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." -Eliana and Joshua / Dothral felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. +Eliana and Dotharl felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. The party went outside to find and clear the area where the room had caved in. On the far side they found a trapped door, disarmed it, and identified a magical banishing trap aimed at someone coming out. The rest of the lab may have been through the door. Dothral recognised the architecture. A forcefield appeared partway down the corridor. Runes in an unknown language read "Fuck you Everard." @@ -142,7 +142,7 @@ The party then used the right blade to go to Hartwall's lab. They gave the ice e # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Ennuyé, Mr Browning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellburn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Ennuyé, Mr Browning, Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellburn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellburn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunnen people / Dunnen people, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 43126b0..8b6d3c2 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -84,7 +84,9 @@ sources: - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. - [Everard Browning](people/everard-browning.md): Everard Browning, Browning, Edward Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. -- [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, Thomas, The Mage, Visage Ennuyé. +- [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Ennui, Thomas, The Mage, Visage Ennuyé. +- [Envy](people/envy.md): Envy, Lady Envy, removed elven emotion manifestation. +- [Pride](people/pride.md): Pride, removed elven emotion manifestation. - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Matron Cardonald's daughter. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. @@ -152,6 +154,7 @@ sources: - [Lam](people/lam.md): Lam, god of Lam. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. +- [Removed Elven Emotions](concepts/removed-elven-emotions.md): removed elven emotions, emotions removed from the elves, emotional elimination, nine little demons of Darkness. - [Icefang](people/icefang.md): Icefang, Ice Fang, Altith, Atlih [uncertain], Ice Fury [uncertain related], elderly gentleman in the mental palace. - [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md): gods' bargains, barrier bargains, Noxia's terms, Otasha's unborn nerfili baby bargain, Leptrop workaround. - [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md): Jelly Fish Broach, Jelly Fish Brooch, Scorpion, Snowlee, Jelly Fish, Ant. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index fbfa20e..a435f57 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -25,7 +25,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Garadwal / Groot, Benn, Emeraldus | Updated [Garadwal](../people/garadwal.md); Benn and Emeraldus added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Joy | Updated [Joy](../people/joy.md). | | Kasha / Kashe | Existing deity/pact coverage; Day 46 baby-spirit and Garadwal claims preserved in cleaned narrative and [Open Threads](../open-threads.md). | -| Amoursorate, Dothral / Joshua | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); orb context added to [Void Spheres](../items/void-spheres.md). | +| Amoursorate, Dotharl | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md) and linked to [Dotharl](../people/dotharl.md); orb context added to [Void Spheres](../items/void-spheres.md). | | Ennuyé, Browning, Squeal | Existing Rubyeye/Browning context; Squeal added to [Minor Figures from Day 46](../people/minor-figures-day-46.md) and [Open Threads](../open-threads.md). | | Water Excellence | Existing [Excellences](../concepts/excellences.md); Day 46 context preserved in cleaned narrative. | | Sierra, Lodest, Anastasia | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index cd00b64..37303cb 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -27,7 +27,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre](../people/attabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | -| Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tremon's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md). | +| Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tremon's arm | Updated [Ennuyé](../people/ennuyé.md); added [Envy](../people/envy.md), [Azar Nuri](../people/azar-nuri.md), and [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | | Haze, Errol/Eroll, Bob, Bosh, Dotharl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Errol the Obsidian Raven](../people/errol.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 9bb5941..08a07f4 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -18,7 +18,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | | Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre](../people/attabre.md). | -| Ruby Eye, Envi / Envy, Joy, Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | +| Ruby Eye, Envi / Envy, Joy, Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed; [Envy](../people/envy.md) now tracks the removed-emotion manifestation separately from [Ennuyé](../people/ennuyé.md). | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | | Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | @@ -38,7 +38,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | | Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md), [Ashkellon](../places/ashkellon.md), and open threads. | | Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadwal's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | -| Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), [Errol the Obsidian Raven](../people/errol.md), and related standalone pages. | +| Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), [Envy](../people/envy.md), [Errol the Obsidian Raven](../people/errol.md), and related standalone pages. | ## Day 44 Outcomes @@ -61,7 +61,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Valententhide / Valentenshide / Valentinheide / Valentenhule vs [Valenth Cardonald](../people/valenth-cardonald.md) | Kept separate and cross-linked. Day 44 strongly supports a high-sky / Bright's sister figure distinct from Cardonald, but older notes collide. | | Lute vs [Luth](../people/luth.md) | Not merged; Lute appears in a Ruby Eye cloak vision, while Luth is an existing Dunensend figure. | | Icefang / Altith / Atlih / Ice Fury | Preserved as variants or uncertain related names on [Icefang](../people/icefang.md); not normalized. | -| Emri / Emi vs [Ennuyé](../people/ennuyé.md) | Existing Ennuyé page updated for Envi/Envy; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | +| Emri / Emi vs [Ennuyé](../people/ennuyé.md) / [Envy](../people/envy.md) | Existing Ennuyé page updated for Envi; Envy now has a separate removed-emotion page; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | | Brotor vs Brutor Ruby Eye | Preserved as a context-dependent alias on Ruby Eye and [Void Spheres](../items/void-spheres.md), not treated as certain. | | Papa'e Munera / Papa I Meurina | Merged on [Papa'e Munera](../people/papae-munera.md) as likely but uncertain due earlier prison-name variant. | | Galimma / Peridot Queen vs Peridita / Poison Dragon | Kept separate, with cross-links and open questions. | diff --git a/data/6-wiki/clues/days-48-52-coverage-audit.md b/data/6-wiki/clues/days-48-52-coverage-audit.md index 862c664..36ff1ba 100644 --- a/data/6-wiki/clues/days-48-52-coverage-audit.md +++ b/data/6-wiki/clues/days-48-52-coverage-audit.md @@ -16,7 +16,7 @@ This audit accounts for the people, places, factions, items, clues, and open thr | Rubyeye, Wrath, Spindl, ancient charges, underground dwarven city, missing body / Coalmont Falls? | Existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md) updated; Spindl and places in rollups. | | Peridita ordering Verdigrim to kill party | Existing [Peridita](../people/peridita.md) updated. | | Umberous, Salanar's prison, Sending Stone, favour owed, Infestus secrecy | Rollups [Minor Figures](../people/minor-figures-days-48-52.md), [Minor Places](../places/minor-places-days-48-52.md), [Minor Items](../items/minor-items-days-48-52.md), and [Open Threads](../open-threads.md). | -| Void elemental released by killing Pride | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; open thread added. | +| Void elemental released by killing Pride | Added [Pride](../people/pride.md); existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; open thread added. | | Throngore prison clues, Thunderfut / Trutbrow plaques, Samuel, Struct, thirty dwarves, missing crystal | Rollups and [Elemental Prisons](../concepts/elemental-prisons.md); open thread added. | | Featureless figure / Aglue? / Anemie? / lost part of Valententhide, Thomas, Vessel of Divinity | Existing [Valententhide](../people/valententhide.md), [Elemental Prisons](../concepts/elemental-prisons.md), and [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) updated; rollups preserve variants. | | Joy warning, Hannah-style erasure, Eliana Hartwall identity confirmation | Existing [Valententhide](../people/valententhide.md) and [Open Threads](../open-threads.md); Day 48 cleaned narrative preserves details. | diff --git a/data/6-wiki/clues/days-53-56-coverage-audit.md b/data/6-wiki/clues/days-53-56-coverage-audit.md index 52a7a4e..92a2006 100644 --- a/data/6-wiki/clues/days-53-56-coverage-audit.md +++ b/data/6-wiki/clues/days-53-56-coverage-audit.md @@ -19,7 +19,7 @@ sources: | Bridget's return point, council chamber, Blakedurn's house, convoy battlefield, Perodita passages, Grand Towers side rooms, Bluescale, Great Infestus | Rollup: [Minor Places from Days 53-56](../places/minor-places-days-53-56.md). | | Garadwal armour, Rubyeye-summoning device, pylons, shield crystal/copper, poison/explosives, basilisk coal, rift blade, Noxia ooze barrel, control-room mechanisms, Rubyeye eye, Bluescale rules, Ember reward | Rollup: [Minor Items from Days 53-56](../items/minor-items-days-53-56.md). | | Peridita / Perodita and Noxia essence | Existing pages updated: [Peridita](../people/peridita.md), [Noxia](../people/noxia.md). | -| Grand Towers control room, Browning godhood ritual, Humility / Thomas / Envy, Juticar mission | Existing pages updated: [Grand Towers](../places/grand-towers.md), [Everard Browning](../people/everard-browning.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md). | +| Grand Towers control room, Browning godhood ritual, Humility / Thomas / Envy, Juticar mission | Existing pages updated: [Grand Towers](../places/grand-towers.md), [Everard Browning](../people/everard-browning.md), [Envy](../people/envy.md), [Removed Elven Emotions](../concepts/removed-elven-emotions.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md). | | Benu, Garadwal, Trixus, Bynx, sphinx brothers, dome-down choice | Existing pages updated or already covered: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), [Trixus](../people/trixus.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Cardinal, Rubyeye, Infestus, Wrath, Ember, Brass City route | Existing pages updated or linked: [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Infestus](../people/infestus.md), [Wrath](../people/wrath.md), minor figure/place/item rollups. | | Open questions from Days 53-56 | Added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 8a62630..d74fcb8 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -72,7 +72,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Yellow guards' half-sun tattoo obscured by a waterfall | `data/4-days-cleaned/day-32.md` | Symbol worn by guards in the Goldenswell militia-house operation. | | College of Surgeons symbol | `data/4-days-cleaned/day-35.md` | Geldrin added it to the wagon at Bluemeadows. | | Serenity stone absence | `data/4-days-cleaned/day-35.md` | Bluemeadows militia-like man did not have a serenity stone. | -| Pride, Lust, greed, wrath, envy, gluttony, sloth | `data/4-days-cleaned/day-35.md` | Side note near Lady Envy and dome information; relevance unresolved. | +| Pride, Lust, greed, wrath, envy, gluttony, sloth | `data/4-days-cleaned/day-35.md` | Side note near Lady Envy and dome information; Envy, Wrath, and Pride are manifestations of emotions removed from the elves. | | `3 paws - Beauchamp` | `data/4-days-cleaned/day-35.md` | Note recorded after Lady Katherine Cole woke; meaning unclear. | | Bridget statue green / red / yellow eye-glows | `data/4-days-cleaned/day-36.md` | Grand Towers pennies caused different colors and door travel; exact mapping unknown. | | Black snowflake tabards and black snowflakes | `data/4-days-cleaned/day-36.md` | Seen in Grand Towers vision and Coalmont Falls weather/scoop. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index d9b6a0e..3ff5f92 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -59,7 +59,7 @@ The Barrier is the central protective shield, dome, or containment system around - The Guilt claimed it could reset the control room; Rubyeye described overseer controls separate from the mainframe and double-locked by Valenthide prison and an automaton guard. - Day 32 records the Tri-moon visible during the day, 16 hours ahead of expected schedule, while the Barrier looked normal and the small chunk was visible. - Day 32 skull lore says Ruby Eye's skull had influence over the Barrier and could bend it. -- Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said Lady Envy's sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. +- Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said [Lady Envy](../people/envy.md)'s sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. - Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Hartwall did not know about. - Ruby Eye and Wrath both wanted the shell of [uncertain: Tremoon] because it helped people get in and out of the Barrier. - Day 41 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 83e6c50..74cbd61 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -9,7 +9,7 @@ aliases: - The Guilt - Treamen first_seen: day-17 -last_updated: day-44 +last_updated: user-clarification sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-19.md @@ -55,6 +55,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - Day 36 introduces [Wrath](../people/wrath.md), who described Wrath, Pride, Envy, and six others as nine little demons of Darkness; whether these are Excellences remains unresolved. - Day 42 identifies [Trixus](../people/trixus.md) as an elemental of light and says Emri was missing soul-parts including guilt and misery, possibly overlapping the sin/emotion taxonomy. - Day 44 old-school history found an alteration orb that overwhelmed Geldrin with empathy and regret, and a note implying another emotion-orb location. +- Envy, [Wrath](../people/wrath.md), and [Pride](../people/pride.md) are manifestations of emotions removed from the elves; their relationship to Excellences remains a separate taxonomy question. ## Timeline @@ -79,14 +80,15 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - [Torisle Point](../places/torisle-point.md) - [Dunensend](../places/dunensend.md) - [Elemental Prisons](elemental-prisons.md) +- [Removed Elven Emotions](removed-elven-emotions.md) ## Open Questions - Are Excellences divine armies, independent monsters, or corrupted elemental beings? - What does `he will be worse` refer to in the Excellence hierarchy? -- Are Pride, Wrath, The Guilt, Treamen, Darkness, Light, and the Brass City leader members of one Excellence set? +- Are Pride, Wrath, The Guilt, Treamen, Darkness, Light, and the Brass City leader members of one Excellence set, or are some of them removed-emotion manifestations instead? - Why did The Guilt require five party members or expect there should be five? - Who wants The Guilt removed from council memory? - Is Lady Envy part of an Excellence/sin-title pattern, or a separate llamia leader? -- Are the nine little demons of Darkness the same taxonomy as Excellences, a rival taxonomy, or overlapping titles? -- Are the removed soul-parts / emotions, empathy orb, The Guilt, and nine little demons part of one system? +- Are the nine little demons of Darkness the same taxonomy as removed elven emotions, a rival taxonomy, or overlapping titles? +- How do the removed soul-parts / emotions, empathy orb, The Guilt, and nine little demons fit together? diff --git a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md index 4b5f689..95f615e 100644 --- a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md +++ b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md @@ -49,7 +49,7 @@ The Goldenswell prison operation was an off-the-books detention and prisoner-tra - Who in the Duke's office authorized the off-the-books prisoners, and who knew the full truth? - What is the woman with a bag on her head doing in the operation? -- Are the snake-bodied boss, Lady Envy, llamia, Noxia-linked serpent talisman, and memory grubs part of one faction? +- Are the snake-bodied boss, [Lady Envy](../people/envy.md), llamia, Noxia-linked serpent talisman, and memory grubs part of one faction? - Who used the grubs to erase The Guilt from council memory and turn council members against him? - Did the menagerie supply the grubs, lose them, or investigate them after the fact? - What happened to the remaining prisoners from Claymeadow, Stronghedge, Redford Point, Seaward, Gnoll, and the still-unidentified cells? diff --git a/data/6-wiki/concepts/removed-elven-emotions.md b/data/6-wiki/concepts/removed-elven-emotions.md new file mode 100644 index 0000000..c185659 --- /dev/null +++ b/data/6-wiki/concepts/removed-elven-emotions.md @@ -0,0 +1,41 @@ +--- +title: Removed Elven Emotions +type: concept +aliases: + - emotions removed from the elves + - removed emotions + - emotional elimination + - nine little demons of Darkness +first_seen: day-35 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-56.md +--- + +# Removed Elven Emotions + +## Summary + +Envy, Wrath, and Pride are manifestations of emotions removed from the elves. Earlier notes also connect this to old-school research into emotional elimination, the side-note list of Pride, Lust, greed, wrath, envy, gluttony, and sloth, and later Grand Towers evidence of Humility fragments removed from Thomas so he could become Envy. + +## Known Manifestations + +- [Pride](../people/pride.md) manifested as a dark entity tied to The Guilt and Grand Towers prison systems. +- [Wrath](../people/wrath.md) manifested as a dangerous pact-bound entity able to impersonate Ruby Eye, imprison Lady Evalina Hartwall, and curse dragons. +- [Envy](../people/envy.md) manifested as a removed elven emotion, distinct from simple spelling variants of Ennuyé / Envi even where the notes blur the terms. + +## Related Evidence + +- Day 35 records a side note listing Pride, Lust, greed, wrath, envy, gluttony, and sloth near Lady Envy and dome information. +- Day 36 records Wrath describing Wrath, Pride, Envy, and six others as nine little demons of Darkness. +- Day 44 records the old mage-school group's interest in emotional elimination, memories, and automations. +- Day 56 records twenty-seven Humility fragments removed from Thomas so he could become Envy. + +## Open Questions + +- What happened to the other removed emotions beyond Envy, Wrath, Pride, Humility, and The Guilt? +- Were all removed emotions manifested as independent entities, or only some? +- Can removed elven emotions be restored, contained, destroyed, or recombined? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index eb46485..0dfee4a 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -126,6 +126,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Figures from Day 47](people/minor-figures-day-47.md) - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md) - [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md) +- [Envy](people/envy.md) +- [Pride](people/pride.md) - [Queen Mooncoral](people/queen-mooncoral.md) - [Lord Briarthorn](people/lord-briarthorn.md) - [Facets that Gleam in the Sun](people/facets-that-gleam-in-the-sun.md) @@ -237,6 +239,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Elemental Prisons](concepts/elemental-prisons.md) - [Everchard Memory Tampering](concepts/everchard-memory-tampering.md) - [Excellences](concepts/excellences.md) +- [Removed Elven Emotions](concepts/removed-elven-emotions.md) - [Tri-moon Countdown](events/tri-moon-countdown.md) - [Shield Crystal Mission](events/shield-crystal-mission.md) - [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 81c1167..5decee6 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -80,7 +80,7 @@ sources: - Who gave Anrasurall the Ice prison runes, what was he trying to free at [Rimewatch](places/rimewatch-ice-prison.md), and what are the hollow rocks or possible eggs near the burst entrance? - How did The Mother repurpose Envi's clone despite known clone limits, and what remains of her Carnamancy, cipher, spellbook, Baytail Accord plan, and link to Peridita or `Mother` warnings? - What does the Blackscale boss mean by needing the [Barrier](concepts/barrier.md) to keep his head in one place, and why was Blackscale using the party's kings as servants? -- Are [The Guilt](concepts/excellences.md), Pride, Wrath, Darkness, Light, Treamen, and the Brass City leader Excellences, prisoners, or overlapping titles for different ancient beings? +- Are [The Guilt](concepts/excellences.md), [Pride](people/pride.md), [Wrath](people/wrath.md), Darkness, Light, Treamen, and the Brass City leader Excellences, prisoners, removed-emotion manifestations, or overlapping titles for different ancient beings? - Why does The Guilt insist there should be five party members, and why did The Chorus send Morgana because visions went better with five? - Who planted or operates the automaton infiltrators in [Dunensend](places/dunensend.md), and are Ennui, Browning, Cardenald, the overseer, explorer, Galatrayer, or Grand Towers control systems responsible? - What was in Sister Proulsothight's box like Gelissa's, why was The Basilisk seeking it while warning the party away, and why were wizards on the payroll? @@ -95,14 +95,14 @@ sources: - What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s shield-crystal role after hiding a crystal piece with Wroth, and why were Justicars looking for him at the Hartwall auction? - Are the [Hartwall Auction Lots](items/hartwall-auction-lots.md) chariot, `Valententide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? - Why was the Tri-moon visible during the day 16 hours early, and why did Jin-Loo's records list 104 AD, 339 AD, 629 AD, and 1012 AD despite saying the event happened three times in 1,000 years? -- Who runs the [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): the Duke's office, the woman with a bag on her head, the snake-bodied emissary, Lady Envy, Noxia-linked agents, or another faction? +- Who runs the [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): the Duke's office, the woman with a bag on her head, the snake-bodied emissary, [Lady Envy](people/envy.md), Noxia-linked agents, or another faction? - Why did memory grubs erase council members' memories of [The Guilt](concepts/excellences.md), make them distrust him, and create a feeling of being watched? - What became of the remaining Goldenswell prisoners from Claymeadow, Stronghedge, Redford Point, Seaward, Gnoll, Baytail, the Elementarium, the half-elf sister of the twin Justicars, and the pale halfling with tiger-eye eyes? -- What is [TJ Biggins](people/tj-biggins.md)'s outside-dome context: Plantation of Newt [unclear] Vain, Lady Envy's sand dome, Loose Teeth, greenscale family, Blackscales tribute, Bumblebeers, Bleakshrouvers, mining, fire and earth raids, and paid entry into the dome? +- What is [TJ Biggins](people/tj-biggins.md)'s outside-dome context: Plantation of Newt [unclear] Vain, [Lady Envy](people/envy.md)'s sand dome, Loose Teeth, greenscale family, Blackscales tribute, Bumblebeers, Bleakshrouvers, mining, fire and earth raids, and paid entry into the dome? - What happened at Lady Yadreya Egrine's menagerie, and who stole the experimental creatures later recognized as memory grubs? - What does Morgana's forced-feeling kiss vision of a laughing female dragon, possibly the Peridot Queen, mean for Elementarium's green eyes and the silver dragon man who cast a spell on him? - What caused the [Brookville Springs](places/brookville-springs.md) purple explosions, vanished leader, and Claymeadow's broken Bird / Newgate doppel crisis? -- Are [Pride](concepts/excellences.md), [The Guilt](concepts/excellences.md), [Wrath](people/wrath.md), Envy, and the other six little demons of Darkness Excellences, demons, gods' tools, or overlapping titles? +- How do [Pride](people/pride.md), [Wrath](people/wrath.md), [Envy](people/envy.md), and the other removed elven emotions relate to [The Guilt](concepts/excellences.md), Excellences, demons, and gods' tools? - What is the shell of [uncertain: Tremoon], why do Ruby Eye and Wrath want it, and is it safe at Hartwall? - Who is the female outside the Barrier who wants the [Jelly Fish Broach](items/grand-towers-bargain-trinkets.md), and what are Scorpion, Snowlee, Jelly Fish, and Ant? - How do [Bridget's Doors](concepts/bridgets-doors.md) decide destination, eye color, time displacement, and cost from Grand Towers pennies? @@ -134,7 +134,7 @@ sources: - Where is [Brutor Ruby Eye](people/brutor-ruby-eye.md) after Day 42, who has him, and why can neither Cardonald nor Bleakstorm find him? - What is the larger status of [Noxia](people/noxia.md) after the Noxia Beast avatar died, and is Noxia blood causing corrupted lands? - What emptied Tradesmells of dragons and Goliaths? -- What are Emri / Emi's missing soul-parts or emotions, where are they, and can [Trixus](people/trixus.md) restore them? +- What are Emri / Emi's missing soul-parts or emotions, where are they, and can [Trixus](people/trixus.md) restore them? Are they related to the [Removed Elven Emotions](concepts/removed-elven-emotions.md)? - Why did [Attabre](people/attabre.md) put Trixus to sleep, and why is Attabre angry with Benu? - What day is Dirk missing according to [Bleakstorm](places/bleakstorm.md)'s time device? - What cost comes with Bleakstorm's time travel, and who is his lost friend [uncertain: leechus]? @@ -172,7 +172,7 @@ sources: - What is Metatous's incomplete soul, and why did Morgana's reincarnation produce Garadwal instead? - What are Limos Vita, the mushroom organism, and the cat-horned flesh bag spreading mushroom pieces? - Who stole and altered the [Original Goliath Sphinx](people/original-goliath-sphinx.md) when the Dome was created, and how exactly was it used to rewrite memories across the Dome? -- Why is Amoursorate's orb scratched and unlit, and what does `look after my son` mean for Dothral / Joshua? +- Why is Amoursorate's orb scratched and unlit, and what does `look after my son` mean for Dotharl? - What did Squeal really mean by asking for `the loss of everything`, and why did a message saying `Bread & Circus` impersonate Rubyeye? - What did the lost ring remove from Dirk and Geldrin, and can compassion or curiosity be restored? - After the invisible entity was defeated and memories were restored on Day 46, why did Invar and Eliana remember Morgana as more familiar than expected? @@ -212,11 +212,11 @@ sources: - What smoke or malevolent presence caused the Quartermaster and General's hopelessness, and is it the same as Blakedurn's black smoke incident or Merocole's smoke sphere? - Who or what is the elementals' mother who accepted coins at the Grimcrag bridge? - What did the carved elven shield crystal and copper do to make convoy attackers invisible? -- Who are the blue-eyed dome figure, green-eyed woman, hurt friend, hostile brother, and possible Envy in Dotharl's Day 55 dream? +- Who are the blue-eyed dome figure, green-eyed woman, hurt friend, hostile brother, and possible [Envy](people/envy.md) in Dotharl's Day 55 dream? - What is No-Hurt, and why has it spread everywhere and killed things? - What exactly is Merocole, why did it replace the High Priest, and why did Papa Marmaru warn not to trust it? - What should be done with the barrel of Noxia ooze recovered after [Peridita](people/peridita.md)'s death? -- What are the twenty-seven Humility fragments, where is the large weak part needed to recombine Thomas, and what did Thomas remove to become Envy? +- What are the twenty-seven Humility fragments, where is the large weak part needed to recombine Thomas, and what did Thomas remove to become [Envy](people/envy.md)? - What is the black shard / elemental of Void, and should it be placed into the Grand Towers prison system? - What did [Everard Browning](people/everard-browning.md)'s phrase `and the flight of the gold ends` accomplish after his table spell was countered? - Did dome activation capture [Bynx](people/bynx.md)'s sphynx brothers, [Trixus](people/trixus.md), [Benu](people/benu.md), and [Garadwal](people/garadwal.md), and can they be released without collapsing other prisons? diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index 4a27c0f..5c9018b 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -62,6 +62,7 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - Day 48 says Rubyeye believed Ennuyé had a body stored somewhere, perhaps Coalmont Falls, and records infernal-like doorknob writing reminiscent of Ennuyé's lab. - Day 57 Hydran-realm carvings said Envi was free: his spirit reached his base, occupied an awakened body in his laboratory, gained power and control over crystals, and had captured the party's allies. His goal was unknown and he had not been near his other parts. - Day 57 Azar Nuri said Envi works for him and has Tremon's arm. +- Envy is a manifestation of an emotion removed from the elves; the notes sometimes blur Envy with Envi / Ennuyé, but Envy should not be treated as only a spelling variant of Ennuyé. ## Timeline @@ -87,6 +88,8 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - [Barrier Observatory](../places/barrier-observatory.md) - [Brutor Ruby Eye](brutor-ruby-eye.md) - [Tri-moon Shard](../items/tri-moon-shard.md) +- [Envy](envy.md) +- [Removed Elven Emotions](../concepts/removed-elven-emotions.md) ## Open Questions @@ -94,7 +97,7 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - Did his attempt to save Joy damage the Barrier? - Are Ennuyé, Enwi, Envi, Ennui, and Thomas all the same person, or are some separate figures? - Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? -- Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Lady Evalina Hartwall / Mama Hartwall? +- How exactly do Envi / Ennuyé and the removed-emotion manifestation [Envy](envy.md) relate? - What happened to Hannah Joy, and how does her erasure relate to Joy's survival? - Where is Ennuyé's stored body, and is Coalmont Falls the right lead? - Why does Envi have Tremon's arm, and what does Azar Nuri expect him to do with it? diff --git a/data/6-wiki/people/envy.md b/data/6-wiki/people/envy.md new file mode 100644 index 0000000..521633e --- /dev/null +++ b/data/6-wiki/people/envy.md @@ -0,0 +1,44 @@ +--- +title: Envy +type: manifestation +aliases: + - Envy + - Lady Envy +first_seen: day-35 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md +--- + +# Envy + +## Summary + +Envy is a manifestation of one of the emotions removed from the elves. The notes sometimes blur Envy with Envi / Ennuyé, but this page tracks Envy as a removed-emotion manifestation rather than treating it as only a spelling variant of Ennuyé. + +## Known Details + +- Day 35 names Lady Envy as the boss of the llamia and places her near the side-note list of Pride, Lust, greed, wrath, envy, gluttony, and sloth. +- Day 36 records Wrath naming Envy alongside Wrath, Pride, and six others as nine little demons of Darkness. +- Day 43 says Wroth trapped Envy in Lady Evalina Hartwall's head the same way Envy was in Ruby Eye's. +- Day 56 records twenty-seven Humility fragments removed from Thomas so he could become Envy. +- Day 57 says Brass City expected attack after its ruler left, but no attackers appeared, not even Envy. + +## Related Entries + +- [Removed Elven Emotions](../concepts/removed-elven-emotions.md) +- [Wrath](wrath.md) +- [Pride](pride.md) +- [Ennuyé](ennuyé.md) +- [Lady Evalina Hartwall](lady-evalina-hartwall.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) + +## Open Questions + +- How exactly did Thomas / Ennuyé become Envy, and what remains of Thomas afterward? +- Is Lady Envy the same manifestation as the Envy trapped in Ruby Eye and Lady Evalina Hartwall, or a title used by an agent? +- What is Envy's current status after the Day 57 Brass City references? diff --git a/data/6-wiki/people/minor-figures-day-46.md b/data/6-wiki/people/minor-figures-day-46.md index 7f3c8b7..695d8ba 100644 --- a/data/6-wiki/people/minor-figures-day-46.md +++ b/data/6-wiki/people/minor-figures-day-46.md @@ -23,8 +23,8 @@ This rollup keeps one-off, uncertain, and supporting named figures from Day 46 s | Amoursorate | Linked to the scratched unlit orb and asked the party to look after her son. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | | Squeal | Source behind Errol's possession and Rubyeye-message confusion; asked for `the loss of everything` rather than weather through the Barrier. | Rollup/open thread. | | Sierra, Lodest, Anastasia | Seen through a Dunnen door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | [Anastasia](anastasia.md) / rollup/open thread. | -| Platinum | Cardonald's cat; warned that Errol was possessed by one of Squeal's things and headed toward Joshua. | Rollup/open thread. | -| Dothral / Joshua | Construct- or soul-linked figure aware for twenty years; woke near Rhime watches after being propelled through a door. | Rollup/open thread. | +| Platinum | Cardonald's cat; warned that Errol was possessed by one of Squeal's things and headed toward Dotharl. | Rollup/open thread. | +| [Dotharl](dotharl.md) | Player character played by Joshua; construct- or soul-linked figure aware for twenty years; woke near Rhime watches after being propelled through a door. | Standalone player character page. | | Chorus magpie | Landed on Morgana, said The Chorus sent it, and said the Chorus can now help. | [The Chorus](the-chorus.md) / rollup. | | Longfang | Gnoll reconnaissance figure who thought the dragon in Lake Azure might be dead. | Rollup/open thread. | | Mercy | Sparrow aarakocra who stopped Longfang from opening a trapped door and pulled a blade through a bubble around the elf. | Rollup/open thread. | diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index a7de21f..7b9384c 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -12,7 +12,7 @@ sources: | Infestus's wife | 57 | Gave the party a powerful shield crystal and scrolls, smashed an orb, and transformed a tiny human into a blue dragon for Brass City travel. | Rollup / [Infestus](infestus.md). | | Salinas | 57 | Infestus could ensure Salinas caused no issues during the treaty/council context. | Rollup. | | Excellence of Air / Air | 57 | Left Brass City and never returned; Haze says Air went to the dome to make a trap for Sierra so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | -| Envy | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envi/Envy remains uncertain. | [Ennuyé](ennuyé.md). | +| [Envy](envy.md) | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envy is a removed-emotion manifestation, though the Envi/Ennuyé relationship remains uncertain. | Standalone page / [Ennuyé](ennuyé.md). | | Hydran | 57 | Named by the fountain water elemental before being given to blue dragons; same water patron later involved in merbaby rescue. | [Hydran](hydran.md). | | Lord of the Brass City | 57 | Associated with weighted idols, jewellery, gravity, and weight in the statue corridor. | [Brass City](../places/brass-city.md). | | [Facets that Gleam in the Sun](facets-that-gleam-in-the-sun.md) | 57 | Tabaxi jeweller in Brass City; taken to the old-regime citadel to cut a gem and revealed the shield-crystal body / focusing crystal. | Standalone page. | diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index f4dcae9..43c9e08 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -68,7 +68,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Lady Katherine Neugate: rescued council member, captured for four days, reticent to speak, and affected by ear grubs. - Lord [uncertain: Harmock] Hayes: rescued prisoner and apparent council member. - Lady Esmerelda: mentioned at Bluemeadows without context. -- Lady Envy: named by TJ as boss of the llamia. +- [Lady Envy](envy.md): named by TJ as boss of the llamia; later clarified as a removed elven emotion manifestation. - Lady [uncertain: Huthnall]: investigating corrupt slate and related matters. - Lady [uncertain: Suisant] De'Beauchamp: associated with Iron craft firewise. - Inquisitor from Salvation: noted near Thrice pass on the ground; exact role unclear. @@ -85,5 +85,5 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Hillfolk, guards, auction attendees, reporters, doctors, Goldenswell forces, Duke's men, Duke's guards, Duke's emissaries, and Duke's personal guard: group labels preserved in the relevant day narratives and larger concept pages. - Ravens, jewellery men, emissary, and Hartwall partner: auction-bidder labels whose agendas remain unresolved. - Yellow guards wearing a half-sun tattoo obscured by a waterfall: Goldenswell militia-house guards linked to the off-the-books prison operation. -- Llamia: cart guards transformed into llamia during the Day 35 ambush; Lady Envy was said to be their boss. +- Llamia: cart guards transformed into llamia during the Day 35 ambush; [Lady Envy](envy.md) was said to be their boss. - Greenscale family, Loose Teeth, Bumblebeers, red Goliaths but bigger, Bleakshrouvers, Rein lore elves, rescuees, and local militia: external groups or descriptive labels from TJ's and Bluemeadows material. diff --git a/data/6-wiki/people/minor-figures-days-36-40-41.md b/data/6-wiki/people/minor-figures-days-36-40-41.md index f657231..ad8f904 100644 --- a/data/6-wiki/people/minor-figures-days-36-40-41.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -21,7 +21,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Lead human and pigeon by the main building | Pigeon reported the lead human gone after explosions. | Rollup. | | Captain paid 25 platinum | Ran toward Brookville Springs after payment. | Party Treasury and rollup. | | Seneshell | Ran Hazy Days; explained Pride, The Guilt, and Grand Towers. Possibly distinct from day-35 Mr Seneshell. | Rollup; unresolved merge preserved. | -| The Guilt and Pride | The Guilt was Avatar of Pride; Pride was eaten by Garadwal. | [Excellences](../concepts/excellences.md). | +| The Guilt and [Pride](pride.md) | The Guilt was Avatar of Pride; Pride was eaten by Garadwal. Pride is a removed elven emotion manifestation. | [Excellences](../concepts/excellences.md), [Removed Elven Emotions](../concepts/removed-elven-emotions.md). | | [uncertain: Morrowred] | Said to have sold out the leaders. | Rollup; uncertain. | | Mercy / Sopparra | Brookville Springs contact; Sopparra identified with Mercy. | [Brookville Springs](../places/brookville-springs.md) and rollup. | | Briker / Magi | Tattooed female sparrow aarakocra in Seneshell's hall. | Rollup; uncertain variants. | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index e435260..7f897fb 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -42,7 +42,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Figure | Context | Outcome | |---|---|---| | Grimby the 3rd, kobold lieutenant, Klesha, lovely Envoy, Grimby's mother, Shriek | Kobold displacement story involving Pine Springs, townsfolk killing, Hartwall-like words, and missing goat man. | Rollup/open thread. | -| Wroth, Envy / Envi, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Wroth trapped Envy in Lady Evalina Hartwall's head like Envy in Ruby Eye's. | [Ennuyé](ennuyé.md). | +| Wroth, [Envy](envy.md) / Envi, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Wroth trapped Envy in Lady Evalina Hartwall's head like Envy in Ruby Eye's. Envy is a removed elven emotion manifestation, while the Envi / Ennuyé relationship remains uncertain. | [Envy](envy.md), [Ennuyé](ennuyé.md). | | [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Hartwall street, receipt, chess, pub, and church details. | Rollup/open thread. | | Dwarf blacksmith, golden dragonborn, vulture man, bushy-eared elf, pale dwarf with black dreadlocks and crown | Box and Benu-book scene figures. | Rollup; pale dwarf unresolved Ruby Eye lead. | | Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre](attabre.md), [Papa'e Munera](papae-munera.md). | diff --git a/data/6-wiki/people/pride.md b/data/6-wiki/people/pride.md new file mode 100644 index 0000000..11ff94e --- /dev/null +++ b/data/6-wiki/people/pride.md @@ -0,0 +1,40 @@ +--- +title: Pride +type: manifestation +aliases: + - Pride +first_seen: day-28 +last_updated: user-clarification +sources: + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-48.md +--- + +# Pride + +## Summary + +Pride is a manifestation of one of the emotions removed from the elves. It was previously tracked as a dark entity connected to The Guilt, Grand Towers, and prison systems. + +## Known Details + +- Pride was expected to fix a prison but may have opened it instead. +- The Guilt was identified as an Avatar of Pride. +- Day 36 says Pride had been eaten by Garadwal, was a dark entity who wanted people to be proud, and tried to disable as much as possible before being consumed. +- On Day 48, Pride teleported away after Wrath brought him to the dwarven city, and the party later killed Pride; this released a void elemental that absorbed its brother and may also have absorbed Pride. + +## Related Entries + +- [Removed Elven Emotions](../concepts/removed-elven-emotions.md) +- [Wrath](wrath.md) +- [Envy](envy.md) +- [Garadwal](garadwal.md) +- [Excellences](../concepts/excellences.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) + +## Open Questions + +- What is Pride's status after the Day 48 void elemental release? +- How much of The Guilt remains tied to Pride after Pride was eaten, killed, or absorbed? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 615edad..12b8239 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -96,7 +96,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Treamen | killed or defeated | `data/4-days-cleaned/day-31.md` | Earth Excellence whose jagged purple crystal skull artifact was recovered. | | Mr Seneshell / snake-bodied boss | killed | `data/4-days-cleaned/day-35.md` | Investigated the false drawer in white gloves, later transformed lower body into a snake and was killed by Geldrin's fireball. | | Llamia cart guards and external cart guards | killed | `data/4-days-cleaned/day-35.md` | Guards transformed into llamia during prisoner-cart battle; all bad guys were dead after the fight. | -| Pride | eaten by Garadwal | `data/4-days-cleaned/day-36.md` | Dark entity, boss of The Guilt; tried to disable as much as possible before consumption. | +| [Pride](pride.md) | removed-emotion manifestation; eaten by Garadwal, later killed/possibly absorbed | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-48.md` | Manifestation of an emotion removed from the elves; dark entity, boss of The Guilt; tried to disable as much as possible before consumption. | | The betrayer | killed | `data/4-days-cleaned/day-36.md` | Killed in fight with mutated animals near Valenthielles prison; exact identity not stated. | | Soot | bones scattered | `data/4-days-cleaned/day-36.md` | Skeletal dragon's flames vanished after Geldrin's skull-throne bargain; bones scattered. | | Half-elf wizard, dragonborn rogue, pigeon aarakocra rogue | killed | `data/4-days-cleaned/day-40.md` | Bell-tower attackers in Azureside. | @@ -205,8 +205,8 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Perodetta | regional threat | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Spawn amassing near Azure-side; Heartmoor illness may connect. | | Fairshaw/Freeport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | | [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | -| Lady Envy | llamia boss | `data/4-days-cleaned/day-35.md` | Named by TJ Biggins as boss of the llamia; relation to Excellence/sin-title pattern unresolved. | -| [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Lady Evalina Hartwall / Mama Hartwall, and was shouted back into Ruby Eye's eye. | +| [Envy](envy.md) / Lady Envy | removed-emotion manifestation; llamia boss context unresolved | `data/4-days-cleaned/day-35.md`, `data/4-days-cleaned/day-56.md` | Manifestation of an emotion removed from the elves; Lady Envy was named by TJ Biggins as boss of the llamia, and Day 56 says Thomas removed Humility fragments to become Envy. | +| [Wrath](wrath.md) | removed-emotion manifestation; dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Manifestation of an emotion removed from the elves; impersonated Ruby Eye, cursed dragons, imprisoned Lady Evalina Hartwall / Mama Hartwall, and was shouted back into Ruby Eye's eye. | | [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-40.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | | [Peridita](peridita.md) / Perodita | active regional dragon threat | `data/4-days-cleaned/day-41.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | | Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-41.md` | Ran off during the Azureside battle. | diff --git a/data/6-wiki/people/tj-biggins.md b/data/6-wiki/people/tj-biggins.md index 8bec679..123d54e 100644 --- a/data/6-wiki/people/tj-biggins.md +++ b/data/6-wiki/people/tj-biggins.md @@ -20,7 +20,7 @@ Mr TJ Biggins is a kobold prisoner rescued from the Goldenswell prisoner transpo - TJ woke after the rescue and identified himself as Mr TJ Biggins of the Plantation of Newt [unclear] Vain, outside the dome. - He described tribute demands by the greenscale family, the Loose Teeth, and the Blackscales, and said Blackscales came to his mining town for tributes and left. - He believed the party were Bumblebeers, people from down the road described as red Goliaths but bigger. -- He said Lady Envy was boss of the llamia, and that the sand dome kept elementals out. +- He said [Lady Envy](envy.md) was boss of the llamia, and that the sand dome kept elementals out. - He had seen a gnome the last time the Bleakshrouvers came to town. - He called the dome the `Bun` after Dirk explained it with a bun. - Seven moons had passed between his going to sleep at home and waking with the party. @@ -34,5 +34,5 @@ Mr TJ Biggins is a kobold prisoner rescued from the Goldenswell prisoner transpo ## Open Questions - Where exactly is the Plantation of Newt [unclear] Vain? -- What are Bumblebeers, Bleakshrouvers, Loose Teeth, and Lady Envy's relationship to the dome and Blackscales? +- What are Bumblebeers, Bleakshrouvers, Loose Teeth, and [Lady Envy](envy.md)'s relationship to the dome and Blackscales? - Why was TJ taken into the Goldenswell prison network? diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md index 2ee5d1d..b2fa632 100644 --- a/data/6-wiki/people/wrath.md +++ b/data/6-wiki/people/wrath.md @@ -5,7 +5,7 @@ aliases: - fake Ruby Eye - red-skinned tiefling first_seen: day-36 -last_updated: day-55 +last_updated: user-clarification sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-55.md @@ -15,7 +15,7 @@ sources: ## Summary -Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pact with Ruby Eye, cursed silver and black dragons, and imprisoned Lady Evalina Hartwall / Mama Hartwall. +Wrath is a manifestation of one of the emotions removed from the elves. He was also described as one of nine little demons of Darkness, impersonated Ruby Eye, made a pact with Ruby Eye, cursed silver and black dragons, and imprisoned Lady Evalina Hartwall / Mama Hartwall. ## Known Details @@ -27,6 +27,7 @@ Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pa - He wanted the shell of [uncertain: Tremoon] because he saw the wizards make it and it helped people get through the Barrier. - Ruby Eye later shouted Wrath back into his eye. - On Day 55, Wrath appeared as a black dragonborn fighting green dragons or Perodita's children, described basilisk coal at Coalmont Rally as a way to teleport to Infestus, and offered or gave memory assistance. +- Wrath, Pride, and Envy are all manifestations of emotions removed from the elves. ## Related Entries @@ -35,11 +36,14 @@ Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pa - [Everard Browning](everard-browning.md) - [Excellences](../concepts/excellences.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) +- [Removed Elven Emotions](../concepts/removed-elven-emotions.md) +- [Pride](pride.md) +- [Envy](envy.md) ## Open Questions - What exactly is Wrath's pact with Ruby Eye, and how much control did Wrath have? -- Are Wrath, Pride, Envy, and the other six little demons Excellences or a separate Darkness hierarchy? +- How do Wrath, Pride, Envy, and the other removed-emotion manifestations relate to Excellences and Darkness? - Is Wrath still contained in Ruby Eye's eye? - Why was Wrath fighting Perodita's children, and what is his current relationship to Infestus? - What memories can Wrath give, and what cost or agenda accompanies them? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index c21e918..6d73a01 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -83,8 +83,8 @@ sources: - `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Everard Browning](people/everard-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Lam](people/lam.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Envy](people/envy.md), [Pride](people/pride.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Pride](people/pride.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). @@ -97,7 +97,7 @@ sources: - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Everard Browning](people/everard-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Everard Browning](people/everard-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Envy](people/envy.md), [Removed Elven Emotions](concepts/removed-elven-emotions.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Facets that Gleam in the Sun](people/facets-that-gleam-in-the-sun.md), [Hydran](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Lam](people/lam.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index c121bc3..925cbb4 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -76,14 +76,14 @@ sources: - `day-25`: At [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), the party learns of dragon plots, Infestus's titles, Peridita, Garadwal's people, Rubyeye's prison-status readout, and Enwi's siphoning weakening all prisons. - `day-26`: Dreams show dwarven, Infestus, Garadwal, and hidden-room visions; the party investigates the Ice and life prisons, defeats The Mother at Baytail Accord, becomes Saviours of the Pact, and receives reports about Dunensend, Goldenswell, Goliaths, Green Dragons, and Valenth. - `day-27`: In [Dunensend](places/dunensend.md), the party deals with Arahuoa/Vulturemen, Haemia, automaton infiltrators, The Guilt, Goliath ancestral-ground questions, Sister Proulsothight's box, Uncle Hortekh, and Morgana joining as the fifth party member. -- `day-28`: The party learns Pride may have opened a prison, Rubyeye explains systems under Grand Towers, and the party evades young adult dragons searching the Endless Dunes. +- `day-28`: The party learns [Pride](people/pride.md) may have opened a prison, Rubyeye explains systems under Grand Towers, and the party evades young adult dragons searching the Endless Dunes. - `day-29`: Missing source pages interrupt the record; the party meets Excellence beneath the sands, kills [Lortesh](people/lortesh.md), earns Dunensend support, and hears The Guilt admit accidentally opening a prison while controlling a wizard. - `day-30`: Dunensend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valententhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. - `day-31`: The party attends the [Freeport Auction Lots](items/freeport-auction-lots.md), then joins battle near the Brass City forces; Goliaths are freed, the Dunensend army kills a green dragon, Treamen the Earth Excellence dies, and Dirk's father plans for Salvation and the Goliath tower in a field. - `day-32`: The party reaches Hartwall, attends the [Hartwall Auction Lots](items/hartwall-auction-lots.md), hides a [Shield Crystals](items/shield-crystals.md) piece with [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), exposes a false [Lady Thorpe](people/lady-thorpe.md), rescues the real Lady Thorpe from Goldenswell, and uncovers an off-the-books [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) operation while the Tri-moon appears during the day. - `day-33` and `day-34`: No cleaned day files were included in this wiki pass. - `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. -- `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns Pride was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Hartwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. +- `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns [Pride](people/pride.md) was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Hartwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. - `day-37` through `day-69`: Not included in this wiki pass. - `day-40`: At [Azureside](places/azureside.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). - `day-41`: Perodita / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears The Basilisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). @@ -93,11 +93,11 @@ sources: - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats the altered [Original Goliath Sphinx](people/original-goliath-sphinx.md) and its invisible memory entity, restores memories, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. - `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre.md) as his father, [Anadreste](people/anadreste.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. -- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. +- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing [Pride](people/pride.md), explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. - `day-53`: Bridget sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. - `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. - `day-55`: The party fights through Magstein / Grimcrag, learns Merocole has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. -- `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become Envy, confronts Justicars and [Everard Browning](people/everard-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. +- `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become [Envy](people/envy.md), confronts Justicars and [Everard Browning](people/everard-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. - `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tremon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Lady Elissa Hartwall identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. -
847f750Namesby Laura Mostert
data/2-pages/102.txt | 2 +- data/2-pages/194.txt | 2 +- data/2-pages/215.txt | 2 +- data/2-pages/233.txt | 2 +- data/2-pages/235.txt | 2 +- data/2-pages/241.txt | 4 +-- data/2-pages/246.txt | 2 +- data/2-pages/247.txt | 2 +- data/2-pages/248.txt | 2 +- data/2-pages/251.txt | 6 ++-- data/2-pages/265.txt | 2 +- data/2-pages/283.txt | 4 +-- data/2-pages/284.txt | 2 +- data/2-pages/285.txt | 2 +- data/2-pages/286.txt | 2 +- data/2-pages/289.txt | 2 +- data/2-pages/290.txt | 4 +-- data/2-pages/292.txt | 2 +- data/2-pages/293.txt | 4 +-- data/2-pages/294.txt | 2 +- data/2-pages/297.txt | 4 +-- data/2-pages/304.txt | 2 +- data/2-pages/325.txt | 2 +- data/3-days/day-29.md | 2 +- data/3-days/day-44.md | 2 +- data/3-days/day-46.md | 2 +- data/3-days/day-47.md | 8 ++--- data/3-days/day-48.md | 14 ++++----- data/3-days/day-53.md | 2 +- data/3-days/day-57.md | 30 +++++++++---------- data/4-days-cleaned/day-29.md | 4 +-- data/4-days-cleaned/day-44.md | 6 ++-- data/4-days-cleaned/day-46.md | 4 +-- data/4-days-cleaned/day-47.md | 16 +++++----- data/4-days-cleaned/day-48.md | 22 +++++++------- data/4-days-cleaned/day-53.md | 2 +- data/4-days-cleaned/day-57.md | 34 +++++++++++----------- data/6-wiki/aliases.md | 7 +++-- data/6-wiki/clues/day-57-coverage-audit.md | 8 ++--- data/6-wiki/clues/days-48-52-coverage-audit.md | 4 +-- data/6-wiki/factions/brass-city-council.md | 2 +- data/6-wiki/index.md | 5 ++-- data/6-wiki/inventories/party-inventory.md | 2 +- data/6-wiki/items/minor-items-day-57.md | 10 +++---- data/6-wiki/items/minor-items-days-42-44.md | 2 +- data/6-wiki/items/minor-items-days-48-52.md | 2 +- data/6-wiki/items/shield-crystals.md | 6 ++-- ...cts.md => tremons-body-and-statue-artifacts.md} | 15 +++++----- data/6-wiki/open-threads.md | 2 +- data/6-wiki/people/anastasia.md | 2 +- data/6-wiki/people/anya-blakedurn.md | 4 +-- data/6-wiki/people/azar-nuri.md | 4 +-- data/6-wiki/people/dotharl.md | 3 +- "data/6-wiki/people/ennuy\303\251.md" | 12 ++++---- data/6-wiki/people/facets-that-gleam-in-the-sun.md | 30 +++++++++++++++++++ data/6-wiki/people/globule.md | 4 +-- data/6-wiki/people/hydran.md | 12 +++----- data/6-wiki/people/igraine.md | 2 +- data/6-wiki/people/infestus.md | 6 +++- data/6-wiki/people/kasha.md | 2 +- data/6-wiki/people/minor-figures-day-46.md | 2 +- data/6-wiki/people/minor-figures-day-47.md | 2 +- data/6-wiki/people/minor-figures-day-57.md | 7 +++-- data/6-wiki/people/minor-figures-days-48-52.md | 5 ++-- .../people/myriad-lord-of-the-high-waters.md | 2 +- data/6-wiki/people/queen-mooncoral.md | 2 +- data/6-wiki/people/status.md | 2 +- data/6-wiki/people/throngore.md | 2 +- data/6-wiki/people/verdigrim.md | 4 +-- data/6-wiki/places/brass-city.md | 8 +++-- data/6-wiki/places/minor-places-day-57.md | 6 ++-- data/6-wiki/places/minor-places-days-48-52.md | 2 +- data/6-wiki/places/minor-places-days-53-56.md | 2 +- data/6-wiki/sources.md | 2 +- data/6-wiki/timeline.md | 2 +- 75 files changed, 219 insertions(+), 185 deletions(-)Show diff
diff --git a/data/2-pages/102.txt b/data/2-pages/102.txt index 9d86b04..08bb26d 100644 --- a/data/2-pages/102.txt +++ b/data/2-pages/102.txt @@ -35,5 +35,5 @@ lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen sty Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. Goliaths came to him asking for help to trap his brother. -we will protect him if we escort him to see the Dunners. +we will protect him if we escort him to see the Dunnen people. Doesn't want to go to Dunensend after we told him about the automaton - may have something to show faith diff --git a/data/2-pages/194.txt b/data/2-pages/194.txt index 832b9d4..1c5dcca 100644 --- a/data/2-pages/194.txt +++ b/data/2-pages/194.txt @@ -26,7 +26,7 @@ Attack the "wizards" - Die. Notes - Documenting the pots it was making prior to this (3 weeks ago) it was doing pottery. Other notes elsewhere. -Pets - rudimentary - Dunner style pots. +Pets - rudimentary - Dunnen style pots. Bandage his wounds - & he hands me a pot & some food. Poetry seems to be about Dirk's home. diff --git a/data/2-pages/215.txt b/data/2-pages/215.txt index af30ab4..45ed089 100644 --- a/data/2-pages/215.txt +++ b/data/2-pages/215.txt @@ -10,7 +10,7 @@ sees leech type creatures - tells us to kill them. Geldrin throws a fireball to the ceiling & we see lots of trails to the creature & some to the rooms. -Dunner Door - Statue of Sierra is in one piece. +Dunnen Door - Statue of Sierra is in one piece. Lodest surrounded by vulture men & Anastasia is chained up. Lodest hunts him in. diff --git a/data/2-pages/233.txt b/data/2-pages/233.txt index a22f0f0..33ed580 100644 --- a/data/2-pages/233.txt +++ b/data/2-pages/233.txt @@ -10,7 +10,7 @@ Back to plinth room. Put the Noxia slime on the plinth: nothing. Diary: Anvil pages. Not happy having to live up to her family's promises. Doesn't like her forced mate. Cryptic talks of someone she likes, marriage only to keep council of gold happy. -Put book on the plinth for the musings. Light on the heart of Tresmon. Shard on it. Light on blood of Noxia. Everything else lights up. Dress plinth: door handle. Pick it up, feels [light/like] and connects to the door. Unscrews. Hollow cap. Fill with water? +Put book on the plinth for the musings. Light on the heart of Tremon. Shard on it. Light on blood of Noxia. Everything else lights up. Dress plinth: door handle. Pick it up, feels [light/like] and connects to the door. Unscrews. Hollow cap. Fill with water? Blood of Noxia looks like it is trying to escape. diff --git a/data/2-pages/235.txt b/data/2-pages/235.txt index 75295ac..4781478 100644 --- a/data/2-pages/235.txt +++ b/data/2-pages/235.txt @@ -9,7 +9,7 @@ Day 47 Skygate-type portal has runes on it. Three seem like places: glittering-type word and a cryptic-type word. Can't do the third. Original something. Frost elemental prison runes have totally disappeared, as though they were not there in the first place. Very strange. -Diary: middle, fighting by dunner people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. +Diary: middle, fighting by Dunnen people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. 18:00. Geldrin investigates the portal and works it out. diff --git a/data/2-pages/241.txt b/data/2-pages/241.txt index 14e47f6..1d22a6c 100644 --- a/data/2-pages/241.txt +++ b/data/2-pages/241.txt @@ -6,7 +6,7 @@ They left as they didn't want to be involved in the dome. This side of the world They want the scroll. What do we want in return? -Cindy takes us to our rooms, wearing dunner colouring clothes. Many laws, new ones each day. They have to remember them. Colouration of clothing is because her mum lived with the Dunners. Everybody has to have a job and has to train if they don't have one. +Cindy takes us to our rooms, wearing Dunnen colouring clothes. Many laws, new ones each day. They have to remember them. Colouration of clothing is because her mum lived with the Dunnen people. Everybody has to have a job and has to train if they don't have one. Hayhearn Frowbrind: white, leader. Aurum Prudence: gold, expansion and protection. @@ -18,4 +18,4 @@ Sat for the last few hundred years. Seven settlements in 100 miles under the Sun TV orb glows. Copper dragon. Clew marks, "The Shadow" wants information. Is it nice? Can we get it out? Seven or so copper dragons and 100 or 50 slaves. Dotharl sees an orb and realises we are being watched. -Tri-moon is out. Skull of Tresmon vibrating. Copper and white haired "half elf," huge red dragonborn drops in and grabs the male and arrests them. Courtroom made for dragon, gold dragon. Outbreeding now outlawed, both guilty. +Tri-moon is out. Skull of Tremon vibrating. Copper and white haired "half elf," huge red dragonborn drops in and grabs the male and arrests them. Courtroom made for dragon, gold dragon. Outbreeding now outlawed, both guilty. diff --git a/data/2-pages/246.txt b/data/2-pages/246.txt index a3260c8..3559396 100644 --- a/data/2-pages/246.txt +++ b/data/2-pages/246.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9916.jpg Transcription: Courtwood's "Musing" four days ago started something to attend to and could be back promptly. Four days ago was when we killed Worn/fixed Errol/got Bynx. -Some dragons attacking further Waterwise. Dunners claim we are favoured of Atlabre and they have a child come to them whilst sleeping to prophesise our return. +Some dragons attacking further Waterwise. Dunnen people claim we are favoured of Atlabre and they have a child come to them whilst sleeping to prophesise our return. Dirk Snr wants us to go kill the dragon. diff --git a/data/2-pages/247.txt b/data/2-pages/247.txt index 28f117b..52723ea 100644 --- a/data/2-pages/247.txt +++ b/data/2-pages/247.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9919.jpg Transcription: Retrieved a poison weapon. Something familiar about the poison; can't quite remember. Alchemical base. Their breath weapon. Some poisonous herbs and scorpion venom. Can be healed with normal healing spell, but wound will not heal. -Go to see the Dunners. Seem to get lots of respect. Elders come out to see us. Older one and knower of flesh are here on the word of Benu. +Go to see the Dunnen people. Seem to get lots of respect. Elders come out to see us. Older one and knower of flesh are here on the word of Benu. There is a plan for us. They have seen the prophecy in the texts now uncovered. They know due to the convalescence of Benu he will be back but needs to pay for his misdeeds. diff --git a/data/2-pages/248.txt b/data/2-pages/248.txt index 075d07c..31d1c11 100644 --- a/data/2-pages/248.txt +++ b/data/2-pages/248.txt @@ -18,6 +18,6 @@ Their lands have been theirs for 1,000 years and are no longer theirs. Ashkielio Tell us Verdigrim will see us and we request safe passage. -Go into the tunnels. They take us to a throne room in Dunner style but incredibly dark stone and copper accents. On the throne is a man with incredibly dark skin and copper accents. +Go into the tunnels. They take us to a throne room in Dunnen style but incredibly dark stone and copper accents. On the throne is a man with incredibly dark skin and copper accents. He did invite us earlier, but that was because he was told to kill us by Perodita and she would leave them alone. diff --git a/data/2-pages/251.txt b/data/2-pages/251.txt index 230c7f4..8191df6 100644 --- a/data/2-pages/251.txt +++ b/data/2-pages/251.txt @@ -10,9 +10,9 @@ Charges: - Construction of tower. - Downfall of ancient race. -Not seen Cardinal. +Not seen Cardonald. -Working things out. Ennuyé has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? +Working things out. Ennuyé has a body stored somewhere. Doesn't know where it is, maybe Coalmont Falls? Rubyeye remembers Hannah and that there were six elemental forces, six arms on the exhausted, etc. There were six of them all along. @@ -20,7 +20,7 @@ Ask Spindl to call an audience with the judges. Decide to go and kill Pride. Geldrin scries on him. A veined stone building, rows of flat red and blue stained glass. -Break Rubyeye out and teleport to Salanar's prison. Greeted by a black dragonborn who locks us in; extremely dark-skinned humanoid Umberous. Here to talk on his father's behalf. Nothing done so far has caused his ire as we have done what we have been asked. Kept the dome up. Gives Geldrin a pouch of white powder to meet and recover some spell slots. +Break Rubyeye out and teleport to Salanar's prison. Greeted by a black dragonborn who locks us in; extremely dark-skinned humanoid Umberous, Infestus' son. Here to talk on his father's behalf. Nothing done so far has caused Infestus' ire as we have done what we have been asked. Kept the dome up. Gives Geldrin a pouch of white powder to meet and recover some spell slots. Vision of Grand Towers. Proud, calloused cheek, elf, sunken eyes. Looks like it has given up. diff --git a/data/2-pages/265.txt b/data/2-pages/265.txt index 1c7d961..f160956 100644 --- a/data/2-pages/265.txt +++ b/data/2-pages/265.txt @@ -16,7 +16,7 @@ Check Blakedurn's ear. No worm, but canal looks odd. Morgana checks and it is wr Dirk/Thamia checks her: not a Thamia. -Head over to her house. Door is odd, broken and not repaired very well. Weird for her standing. Tell her about the ear bugs. Takes it with an air of, "should we trust her?" House has lots of Sierra aspects, very Dunner styling. +Head over to her house. Door is odd, broken and not repaired very well. Weird for her standing. Tell her about the ear bugs. Takes it with an air of, "should we trust her?" House has lots of Sierra aspects, very Dunnen styling. Query her. Place is messed up and she is not. diff --git a/data/2-pages/283.txt b/data/2-pages/283.txt index 4ab43d2..a560a52 100644 --- a/data/2-pages/283.txt +++ b/data/2-pages/283.txt @@ -8,7 +8,7 @@ There was a rebellion, as slaves wanted bread and they were not allowed to get a A gem shop owner might know what was being worked on. -Owner was taken to work there cutting a gem. Disappointed he didn't finish. Facets that gleam in the sun. This is a place of great elemental power. Fountains etc are all from the plains. +Owner was taken to work there cutting a gem. Disappointed he didn't finish. Facets that Gleam in the Sun, the tabaxi jeweller. This is a place of great elemental power. Fountains etc are all from the plains. He was crafting a body out of shield crystal to create a focusing crystal. It is stored in one of the four great minarets. @@ -16,6 +16,6 @@ Didn't seem to be a weapon. Creatures in the towers became unruly after the Excellence left. -Dirk starts to talk to the fountain. The water wants to go somewhere but doing a very important job; that's what his dad told him. Hydraxia before he gave him to the blue dragons. Dragons went bad. His dad likes the merfolk but is annoyed by the purple thing. Wants us to fix the babies not going to him. If we sort it out, he will be on our side when it comes to the end. +Dirk starts to talk to the fountain. The water wants to go somewhere but doing a very important job; that's what his dad told him. Hydran before he gave him to the blue dragons. Dragons went bad. His dad likes the merfolk but is annoyed by the purple thing. Wants us to fix the babies not going to him. If we sort it out, he will be on our side when it comes to the end. Open the door on the right. diff --git a/data/2-pages/284.txt b/data/2-pages/284.txt index 312fae5..9aa06b2 100644 --- a/data/2-pages/284.txt +++ b/data/2-pages/284.txt @@ -8,7 +8,7 @@ Blue dragons and Trixus. Tapestry carpet with a sun that has a thick-set dwarf and a slender woman with a bow. -See a depiction of Garadwal talking to the Dunner people with him. +See a depiction of Garadwal talking to the Dunnen people with him. No evidence of a fire elemental living here. diff --git a/data/2-pages/285.txt b/data/2-pages/285.txt index 383da0f..60e1ff8 100644 --- a/data/2-pages/285.txt +++ b/data/2-pages/285.txt @@ -16,6 +16,6 @@ Six doors at the top of the stairs. Haze stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. Haze says this is a control room, which controls planes at once. -Sword is in the Earth plane, along with Tresmun's body. We mustn't leave the citadel when we go there, and it's hard to get back. +Sword is in the Earth plane, along with Tremon's body. We mustn't leave the citadel when we go there, and it's hard to get back. When we go, all the pictures disappear and the room totally changes. diff --git a/data/2-pages/286.txt b/data/2-pages/286.txt index c94d77b..ac89f82 100644 --- a/data/2-pages/286.txt +++ b/data/2-pages/286.txt @@ -12,7 +12,7 @@ On his table: coal, gold dragon, jagged granite, shield crystal. Are they the ne Gold dragon is actually silver and exactly like Mama Hartwall. -Shield crystal: piece of Tresmon. +Shield crystal: piece of Tremon. Coal: wet at the bottom. Geldrin pulls the water out of it. diff --git a/data/2-pages/289.txt b/data/2-pages/289.txt index dc267ea..4b1ef93 100644 --- a/data/2-pages/289.txt +++ b/data/2-pages/289.txt @@ -16,6 +16,6 @@ Reopen: Brass City, massive stone table, purple rock men with arm and head missi Dragon door: still Pinesprings but different place. Green/yellow flash from the trees and some chatter, then crying: baby dragonborn. -Geldrin goes through the moon door. Tresmon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. +Geldrin goes through the moon door. Tremon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. Dragon room / robed figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. diff --git a/data/2-pages/290.txt b/data/2-pages/290.txt index 3406048..9064e8d 100644 --- a/data/2-pages/290.txt +++ b/data/2-pages/290.txt @@ -2,7 +2,7 @@ Page: 290 Source: data/1-source/IMG_9963.jpg Transcription: -Geldrin: salamander, expecting a tabaxi, facets that gleam in the sun. Assumes Geldrin is meant to be here, trying to get the facets so that the light goes in but not out. +Geldrin: salamander, expecting a tabaxi, Facets that Gleam in the Sun. Assumes Geldrin is meant to be here, trying to get the facets so that the light goes in but not out. Geldrin finds a spot on the body the shard has come from and puts it back. @@ -10,7 +10,7 @@ All four doors open; no snow or water comes through the door. Andy, the moment after the fight with the Mother, sees a woman running, dark-skinned, but the tree behind it too. Then a stone door appears and he charges through the door. -Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquarius. Keepers of the Pact always welcome here. Lord Hydram said we could come. +Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquarius. Keepers of the Pact always welcome here. Lord Hydran said we could come. Doors are memories of what we have promised or have done. Seems like they are distractions. diff --git a/data/2-pages/292.txt b/data/2-pages/292.txt index 9e44f42..d6294a0 100644 --- a/data/2-pages/292.txt +++ b/data/2-pages/292.txt @@ -6,7 +6,7 @@ Bynx calls upon Trixus to ask about the statues, as not sure why we are trying t Necklace next. Haze takes us back to the throne room. Air picture. -Dothurl looks different, feels stronger. Haze takes us back into the building down to the room where the statues are in the normal plane. +Dotharl looks different, feels stronger. Haze takes us back into the building down to the room where the statues are in the normal plane. Through door: jewelry box. Smells like the right one, but it does also smell like it's further in the room through the other door. diff --git a/data/2-pages/293.txt b/data/2-pages/293.txt index e5df11c..d1e60b7 100644 --- a/data/2-pages/293.txt +++ b/data/2-pages/293.txt @@ -12,6 +12,6 @@ Go for the offering bowl next. Back to the throne room. Only two paintings left. Geldrin disappears after touching the painting. Ends up in my waterskin, shrunken. Use the school biggening juice to get back to normal size. -Dothurl activates the painting and we go in. Replica of the throne room, but there are paintings on the wall: vortex/whirlpool; calm with tropical fish under tropical sea; icy swamp lake; calm still lake. +Dotharl activates the painting and we go in. Replica of the throne room, but there are paintings on the wall: vortex/whirlpool; calm with tropical fish under tropical sea; icy swamp lake; calm still lake. -Two doors. Whirlpool starts swirling and Dirk speaks to Globule in Aquan. He was trapped by Noxia as he works for "Him". When asked who him is, he said, "Him, Hydram, then Noxia." "Him" is forgotten more than lost. He has no legs and no arms. +Two doors. Whirlpool starts swirling and Dirk speaks to Globule in Aquan. He was trapped by Noxia as he works for "Him". When asked who him is, he said, "Him, Hydran, then Noxia." "Him" is forgotten more than lost. He has no legs and no arms. diff --git a/data/2-pages/294.txt b/data/2-pages/294.txt index 55bbc6c..8586c87 100644 --- a/data/2-pages/294.txt +++ b/data/2-pages/294.txt @@ -14,4 +14,4 @@ Put head in tropical fish painting. Large closed clam shell to the left. Shipwre Clam says whirlpool bad prisoner. Friend says he can't help as he lives in the icy painting. Fish man has the key to the prison. Put clam back in the painting. -Invar and Dothurl go into the painting. Think Morgana's hut is in the distance. Head over and see dead Everchard trees, but everything is boarded up. Lots of birds around. Invar comes back to get Morgana. +Invar and Dotharl go into the painting. Think Morgana's hut is in the distance. Head over and see dead Everchard trees, but everything is boarded up. Lots of birds around. Invar comes back to get Morgana. diff --git a/data/2-pages/297.txt b/data/2-pages/297.txt index 373dcf2..294816e 100644 --- a/data/2-pages/297.txt +++ b/data/2-pages/297.txt @@ -2,9 +2,9 @@ Page: 297 Source: data/1-source/IMG_9970.jpg Transcription: -Dothurl goes through the orb door. Room is odd but familiar: domed room, slight breeze, small mechanical bird. Eroll? says it is him. Was trapped here, was looking for Ruby Eye from the goliath tower. +Dotharl goes through the orb door. Room is odd but familiar: domed room, slight breeze, small mechanical bird. Eroll? says it is him. Was trapped here, was looking for Ruby Eye from the goliath tower. -Take Eroll out of Geldrin's bag and they are identical. Dothurl touches room Eroll and cracks come out. Breeze stops. +Take Eroll out of Geldrin's bag and they are identical. Dotharl touches room Eroll and cracks come out. Breeze stops. Psychic damage hurts me. Repair the door and it stops. diff --git a/data/2-pages/304.txt b/data/2-pages/304.txt index 232fb14..22e2dac 100644 --- a/data/2-pages/304.txt +++ b/data/2-pages/304.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9977.jpg Transcription: Creatures open the doors as we get there. Go to a throne room. Eight creatures flank the throne. A 50-foot-tall creature on the throne, dressed similarly with a turban on his head. He has the horns. Doesn't like Invar's symbol to [uncertain: Stolchar]. -Envi works for him. Envi has Tresmun's arm. Geldrin tells him to bring it to him. If he does, then Envi will bring it to him. +Envi works for him. Envi has Tremon's arm. Geldrin tells him to bring it to him. If he does, then Envi will bring it to him. Lacking in servants on our plane, struggling to get his minions onto our plane. Only cares about one thing: to take back his power. Wants us to open up the passageways and continue to fix the body being carved for him. diff --git a/data/2-pages/325.txt b/data/2-pages/325.txt index 6a77e50..39f9441 100644 --- a/data/2-pages/325.txt +++ b/data/2-pages/325.txt @@ -2,7 +2,7 @@ Page: 325 Source: data/1-source/IMG_9998.jpg Transcription: -Decide to go to Enni's lab. Teleporting outside the dome and going through using Tresmun's skull. Then agree to Tradesmalls. Dotharl stays behind; get a sending stone pair and give him one. +Decide to go to Enni's lab. Teleporting outside the dome and going through using Tremon's skull. Then agree to Tradesmalls. Dotharl stays behind; get a sending stone pair and give him one. Arrive on target, go through Barrier. Bring Valenth, Briarthorn, and Bynx with us. Briarthorn walks off towards Everchard. diff --git a/data/3-days/day-29.md b/data/3-days/day-29.md index 53cd406..dd7940d 100644 --- a/data/3-days/day-29.md +++ b/data/3-days/day-29.md @@ -46,7 +46,7 @@ lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen sty Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. Goliaths came to him asking for help to trap his brother. -we will protect him if we escort him to see the Dunners. +we will protect him if we escort him to see the Dunnen people. Doesn't want to go to Dunensend after we told him about the automaton - may have something to show faith ## Page 105 diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md index b0b46b3..20b56fc 100644 --- a/data/3-days/day-44.md +++ b/data/3-days/day-44.md @@ -182,7 +182,7 @@ Attack the "wizards" - Die. Notes - Documenting the pots it was making prior to this (3 weeks ago) it was doing pottery. Other notes elsewhere. -Pets - rudimentary - Dunner style pots. +Pets - rudimentary - Dunnen style pots. Bandage his wounds - & he hands me a pot & some food. Poetry seems to be about Dirk's home. diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md index 60cb378..964eacf 100644 --- a/data/3-days/day-46.md +++ b/data/3-days/day-46.md @@ -444,7 +444,7 @@ sees leech type creatures - tells us to kill them. Geldrin throws a fireball to the ceiling & we see lots of trails to the creature & some to the rooms. -Dunner Door - Statue of Sierra is in one piece. +Dunnen Door - Statue of Sierra is in one piece. Lodest surrounded by vulture men & Anastasia is chained up. Lodest hunts him in. diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index bab42cb..e443df1 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -311,7 +311,7 @@ Back to plinth room. Put the Noxia slime on the plinth: nothing. Diary: Anvil pages. Not happy having to live up to her family's promises. Doesn't like her forced mate. Cryptic talks of someone she likes, marriage only to keep council of gold happy. -Put book on the plinth for the musings. Light on the heart of Tresmon. Shard on it. Light on blood of Noxia. Everything else lights up. Dress plinth: door handle. Pick it up, feels [light/like] and connects to the door. Unscrews. Hollow cap. Fill with water? +Put book on the plinth for the musings. Light on the heart of Tremon. Shard on it. Light on blood of Noxia. Everything else lights up. Dress plinth: door handle. Pick it up, feels [light/like] and connects to the door. Unscrews. Hollow cap. Fill with water? Blood of Noxia looks like it is trying to escape. @@ -344,7 +344,7 @@ Day 47 Skygate-type portal has runes on it. Three seem like places: glittering-type word and a cryptic-type word. Can't do the third. Original something. Frost elemental prison runes have totally disappeared, as though they were not there in the first place. Very strange. -Diary: middle, fighting by dunner people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. +Diary: middle, fighting by Dunnen people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. 18:00. Geldrin investigates the portal and works it out. @@ -454,7 +454,7 @@ They left as they didn't want to be involved in the dome. This side of the world They want the scroll. What do we want in return? -Cindy takes us to our rooms, wearing dunner colouring clothes. Many laws, new ones each day. They have to remember them. Colouration of clothing is because her mum lived with the Dunners. Everybody has to have a job and has to train if they don't have one. +Cindy takes us to our rooms, wearing Dunnen colouring clothes. Many laws, new ones each day. They have to remember them. Colouration of clothing is because her mum lived with the Dunnen people. Everybody has to have a job and has to train if they don't have one. Hayhearn Frowbrind: white, leader. Aurum Prudence: gold, expansion and protection. @@ -466,7 +466,7 @@ Sat for the last few hundred years. Seven settlements in 100 miles under the Sun TV orb glows. Copper dragon. Clew marks, "The Shadow" wants information. Is it nice? Can we get it out? Seven or so copper dragons and 100 or 50 slaves. Dotharl sees an orb and realises we are being watched. -Tri-moon is out. Skull of Tresmon vibrating. Copper and white haired "half elf," huge red dragonborn drops in and grabs the male and arrests them. Courtroom made for dragon, gold dragon. Outbreeding now outlawed, both guilty. +Tri-moon is out. Skull of Tremon vibrating. Copper and white haired "half elf," huge red dragonborn drops in and grabs the male and arrests them. Courtroom made for dragon, gold dragon. Outbreeding now outlawed, both guilty. ## Page 242 diff --git a/data/3-days/day-48.md b/data/3-days/day-48.md index 33ba6b3..a05046d 100644 --- a/data/3-days/day-48.md +++ b/data/3-days/day-48.md @@ -51,7 +51,7 @@ Dragon starts to approach. Definitely metallic, looks brass. ## Page 246 -Day 48 continues: Courtwood's "Musing" four days ago. Four days ago when killed Worn, fixed Errol, and got Bynx. Dragons attacking further Waterwise. Dunners claim party favoured of Atlabre and child prophesises return. +Day 48 continues: Courtwood's "Musing" four days ago. Four days ago when killed Worn, fixed Errol, and got Bynx. Dragons attacking further Waterwise. Dunnen people claim party favoured of Atlabre and child prophesises return. Dirk Sr wants party to kill dragon. Scouts found entrances to cave network. Some poisoned. Enemies invisible. Don't know manticore. @@ -65,7 +65,7 @@ Scout reports four entrances: main cliff 9 miles away with humans, dragonborn, a Retrieved a poison weapon. Something familiar about the poison; can't quite remember. Alchemical base. Their breath weapon. Some poisonous herbs and scorpion venom. Can be healed with normal healing spell, but wound will not heal. -Go to see the Dunners. Seem to get lots of respect. Elders come out to see us. Older one and knower of flesh are here on the word of Benu. +Go to see the Dunnen people. Seem to get lots of respect. Elders come out to see us. Older one and knower of flesh are here on the word of Benu. There is a plan for us. They have seen the prophecy in the texts now uncovered. They know due to the convalescence of Benu he will be back but needs to pay for his misdeeds. @@ -99,7 +99,7 @@ Their lands have been theirs for 1,000 years and are no longer theirs. Ashkielio Tell us Verdigrim will see us and we request safe passage. -Go into the tunnels. They take us to a throne room in Dunner style but incredibly dark stone and copper accents. On the throne is a man with incredibly dark skin and copper accents. +Go into the tunnels. They take us to a throne room in Dunnen style but incredibly dark stone and copper accents. On the throne is a man with incredibly dark skin and copper accents. He did invite us earlier, but that was because he was told to kill us by Perodita and she would leave them alone. @@ -165,9 +165,9 @@ Charges: - Construction of tower. - Downfall of ancient race. -Not seen Cardinal. +Not seen Cardonald. -Working things out. Ennuyé has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? +Working things out. Ennuyé has a body stored somewhere. Doesn't know where it is, maybe Coalmont Falls? Rubyeye remembers Hannah and that there were six elemental forces, six arms on the exhausted, etc. There were six of them all along. @@ -175,7 +175,7 @@ Ask Spindl to call an audience with the judges. Decide to go and kill Pride. Geldrin scries on him. A veined stone building, rows of flat red and blue stained glass. -Break Rubyeye out and teleport to Salanar's prison. Greeted by a black dragonborn who locks us in; extremely dark-skinned humanoid Umberous. Here to talk on his father's behalf. Nothing done so far has caused his ire as we have done what we have been asked. Kept the dome up. Gives Geldrin a pouch of white powder to meet and recover some spell slots. +Break Rubyeye out and teleport to Salanar's prison. Greeted by a black dragonborn who locks us in; extremely dark-skinned humanoid Umberous, Infestus' son. Here to talk on his father's behalf. Nothing done so far has caused Infestus' ire as we have done what we have been asked. Kept the dome up. Gives Geldrin a pouch of white powder to meet and recover some spell slots. Vision of Grand Towers. Proud, calloused cheek, elf, sunken eyes. Looks like it has given up. @@ -187,7 +187,7 @@ Umberous has been tasked with looking after the seaside of the world. Kill Pride. Void elemental is released and he absorbs his brother and teleports away. He may have absorbed Pride. -Umberous wants us to meet up with his dad. Wrath wants us to kill his sister and take Rubyeye with him. Geldrin tells Umberous we have Rubyeye with us, so Umberous wants us to deliver Rubyeye to Infestus. +Umberous wants us to meet up with his dad, Infestus. Wrath wants us to kill his sister and take Rubyeye with him. Geldrin tells Umberous we have Rubyeye with us, so Umberous wants us to deliver Rubyeye to Infestus. He agrees not to tell Infestus about Rubyeye if we agree to do him a favour. Gives us a Sending Stone to contact him. diff --git a/data/3-days/day-53.md b/data/3-days/day-53.md index bfbd46b..2a8b312 100644 --- a/data/3-days/day-53.md +++ b/data/3-days/day-53.md @@ -81,7 +81,7 @@ Check Blakedurn's ear. No worm, but canal looks odd. Morgana checks and it is wr Dirk/Thamia checks her: not a Thamia. -Head over to her house. Door is odd, broken and not repaired very well. Weird for her standing. Tell her about the ear bugs. Takes it with an air of, "should we trust her?" House has lots of Sierra aspects, very Dunner styling. +Head over to her house. Door is odd, broken and not repaired very well. Weird for her standing. Tell her about the ear bugs. Takes it with an air of, "should we trust her?" House has lots of Sierra aspects, very Dunnen styling. Query her. Place is messed up and she is not. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index 068bf07..474a0fe 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -137,7 +137,7 @@ There was a rebellion, as slaves wanted bread and they were not allowed to get a A gem shop owner might know what was being worked on. -Owner was taken to work there cutting a gem. Disappointed he didn't finish. Facets that gleam in the sun. This is a place of great elemental power. Fountains etc are all from the plains. +Owner was taken to work there cutting a gem. Disappointed he didn't finish. Facets that Gleam in the Sun, the tabaxi jeweller. This is a place of great elemental power. Fountains etc are all from the plains. He was crafting a body out of shield crystal to create a focusing crystal. It is stored in one of the four great minarets. @@ -145,7 +145,7 @@ Didn't seem to be a weapon. Creatures in the towers became unruly after the Excellence left. -Dirk starts to talk to the fountain. The water wants to go somewhere but doing a very important job; that's what his dad told him. Hydraxia before he gave him to the blue dragons. Dragons went bad. His dad likes the merfolk but is annoyed by the purple thing. Wants us to fix the babies not going to him. If we sort it out, he will be on our side when it comes to the end. +Dirk starts to talk to the fountain. The water wants to go somewhere but doing a very important job; that's what his dad told him. Hydran before he gave him to the blue dragons. Dragons went bad. His dad likes the merfolk but is annoyed by the purple thing. Wants us to fix the babies not going to him. If we sort it out, he will be on our side when it comes to the end. Open the door on the right. @@ -157,7 +157,7 @@ Blue dragons and Trixus. Tapestry carpet with a sun that has a thick-set dwarf and a slender woman with a bow. -See a depiction of Garadwal talking to the Dunner people with him. +See a depiction of Garadwal talking to the Dunnen people with him. No evidence of a fire elemental living here. @@ -193,7 +193,7 @@ Six doors at the top of the stairs. Haze stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. Haze says this is a control room, which controls planes at once. -Sword is in the Earth plane, along with Tresmun's body. We mustn't leave the citadel when we go there, and it's hard to get back. +Sword is in the Earth plane, along with Tremon's body. We mustn't leave the citadel when we go there, and it's hard to get back. When we go, all the pictures disappear and the room totally changes. @@ -209,7 +209,7 @@ On his table: coal, gold dragon, jagged granite, shield crystal. Are they the ne Gold dragon is actually silver and exactly like Mama Hartwall. -Shield crystal: piece of Tresmon. +Shield crystal: piece of Tremon. Coal: wet at the bottom. Geldrin pulls the water out of it. @@ -281,13 +281,13 @@ Reopen: Brass City, massive stone table, purple rock men with arm and head missi Dragon door: still Pinesprings but different place. Green/yellow flash from the trees and some chatter, then crying: baby dragonborn. -Geldrin goes through the moon door. Tresmon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. +Geldrin goes through the moon door. Tremon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. Dragon room / robed figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. ## Page 290 -Geldrin: salamander, expecting a tabaxi, facets that gleam in the sun. Assumes Geldrin is meant to be here, trying to get the facets so that the light goes in but not out. +Geldrin: salamander, expecting a tabaxi, Facets that Gleam in the Sun. Assumes Geldrin is meant to be here, trying to get the facets so that the light goes in but not out. Geldrin finds a spot on the body the shard has come from and puts it back. @@ -295,7 +295,7 @@ All four doors open; no snow or water comes through the door. Andy, the moment after the fight with the Mother, sees a woman running, dark-skinned, but the tree behind it too. Then a stone door appears and he charges through the door. -Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquarius. Keepers of the Pact always welcome here. Lord Hydram said we could come. +Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquarius. Keepers of the Pact always welcome here. Lord Hydran said we could come. Doors are memories of what we have promised or have done. Seems like they are distractions. @@ -325,7 +325,7 @@ Bynx calls upon Trixus to ask about the statues, as not sure why we are trying t Necklace next. Haze takes us back to the throne room. Air picture. -Dothurl looks different, feels stronger. Haze takes us back into the building down to the room where the statues are in the normal plane. +Dotharl looks different, feels stronger. Haze takes us back into the building down to the room where the statues are in the normal plane. Through door: jewelry box. Smells like the right one, but it does also smell like it's further in the room through the other door. @@ -349,9 +349,9 @@ Go for the offering bowl next. Back to the throne room. Only two paintings left. Geldrin disappears after touching the painting. Ends up in my waterskin, shrunken. Use the school biggening juice to get back to normal size. -Dothurl activates the painting and we go in. Replica of the throne room, but there are paintings on the wall: vortex/whirlpool; calm with tropical fish under tropical sea; icy swamp lake; calm still lake. +Dotharl activates the painting and we go in. Replica of the throne room, but there are paintings on the wall: vortex/whirlpool; calm with tropical fish under tropical sea; icy swamp lake; calm still lake. -Two doors. Whirlpool starts swirling and Dirk speaks to Globule in Aquan. He was trapped by Noxia as he works for "Him". When asked who him is, he said, "Him, Hydram, then Noxia." "Him" is forgotten more than lost. He has no legs and no arms. +Two doors. Whirlpool starts swirling and Dirk speaks to Globule in Aquan. He was trapped by Noxia as he works for "Him". When asked who him is, he said, "Him, Hydran, then Noxia." "Him" is forgotten more than lost. He has no legs and no arms. ## Page 294 @@ -367,7 +367,7 @@ Put head in tropical fish painting. Large closed clam shell to the left. Shipwre Clam says whirlpool bad prisoner. Friend says he can't help as he lives in the icy painting. Fish man has the key to the prison. Put clam back in the painting. -Invar and Dothurl go into the painting. Think Morgana's hut is in the distance. Head over and see dead Everchard trees, but everything is boarded up. Lots of birds around. Invar comes back to get Morgana. +Invar and Dotharl go into the painting. Think Morgana's hut is in the distance. Head over and see dead Everchard trees, but everything is boarded up. Lots of birds around. Invar comes back to get Morgana. ## Page 295 @@ -403,9 +403,9 @@ Whirlwind door. Door at the back: orb. Lots of paintings like they are in storag ## Page 297 -Dothurl goes through the orb door. Room is odd but familiar: domed room, slight breeze, small mechanical bird. Eroll? says it is him. Was trapped here, was looking for Ruby Eye from the goliath tower. +Dotharl goes through the orb door. Room is odd but familiar: domed room, slight breeze, small mechanical bird. Eroll? says it is him. Was trapped here, was looking for Ruby Eye from the goliath tower. -Take Eroll out of Geldrin's bag and they are identical. Dothurl touches room Eroll and cracks come out. Breeze stops. +Take Eroll out of Geldrin's bag and they are identical. Dotharl touches room Eroll and cracks come out. Breeze stops. Psychic damage hurts me. Repair the door and it stops. @@ -517,7 +517,7 @@ They work for the sultan Azar Nuri. Get an audience with the Sultan. Have to go Creatures open the doors as we get there. Go to a throne room. Eight creatures flank the throne. A 50-foot-tall creature on the throne, dressed similarly with a turban on his head. He has the horns. Doesn't like Invar's symbol to [uncertain: Stolchar]. -Envi works for him. Envi has Tresmun's arm. Geldrin tells him to bring it to him. If he does, then Envi will bring it to him. +Envi works for him. Envi has Tremon's arm. Geldrin tells him to bring it to him. If he does, then Envi will bring it to him. Lacking in servants on our plane, struggling to get his minions onto our plane. Only cares about one thing: to take back his power. Wants us to open up the passageways and continue to fix the body being carved for him. diff --git a/data/4-days-cleaned/day-29.md b/data/4-days-cleaned/day-29.md index 31f199f..31d0248 100644 --- a/data/4-days-cleaned/day-29.md +++ b/data/4-days-cleaned/day-29.md @@ -18,7 +18,7 @@ The party was en route to Dunensend to see whether the issues there had been res The party continued in the same direction and came across rocks like seaweed, but with a different vein colour. Pressing a rock caused a staircase to appear, opening into a large under-sand structure. Inside was a mosaic on the floor showing a lionin creature, a four-legged sphinx, a goat-headed sphinx, and a six-legged cat-like creature with a braided beard and Egyptian headdress. The central figure had a lion body, six limbs with hand-like feet, and was flanked on each side by six vulturemen wearing Dunnen-style clothes in an honour guard style. -Astraywoo bowed to the figure. Dirk greeted him as "Excellence", describing him as having the vultures under his wings to protect them after Gardwal failed. The party thought his brother was looking for him. The Goliaths had come to him asking for help to trap his brother. The party said they would protect him if they escorted him to see the Dunners. After being told about the automaton, he did not want to go to Dunensend, but he may have had something to show faith. +Astraywoo bowed to the figure. Dirk greeted him as "Excellence", describing him as having the vultures under his wings to protect them after Gardwal failed. The party thought his brother was looking for him. The Goliaths had come to him asking for help to trap his brother. The party said they would protect him if they escorted him to see the Dunnen people. After being told about the automaton, he did not want to go to Dunensend, but he may have had something to show faith. The notes then jump because pages 103 and 104 were missing or unavailable. The next available material records a fight with Lortesh, ending with the party killing him. Dirk took skulls. Geldin found two skulls in them, which were given to Invar. Dirk buried their dragon skulls. The party scoured the beard and took it back to town. Morgana noticed the plants starting to grow. @@ -32,7 +32,7 @@ Errol hopped onto a message table. A message or voice said, "make your decision # People, Factions, and Places Mentioned -Dunensend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, The Basilisk, Anite!, the Dunners, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. +Dunensend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, The Basilisk, Anite!, the Dunnen people, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index eb88318..f5493b8 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -42,7 +42,7 @@ Outside, a picture's eyes kept opening and closing; it showed an elderly man. Th A book on the sphinx on the other plane had been written by serpans, all [uncertain: superous]. It described a place like the party's world but different in many ways. The first chapter concerned sphinxes who teleported their city underground to protect it: a male, a female, and a goat-headed one who always spoke in rhymes. -The party went back down to the school and entered an auditorium-style transmutation classroom. One buggy was upright of where they came in, and time seemed to have passed as expected. In the study hall or book area, they saw four-armed vulture men who looked like they were melting a pot on a pottery wheel while two wizards observed. One looked mindflayer-like. The party attacked the "wizards," and they died. The notes documented the pots the vulture man had been making: three weeks earlier he had been doing pottery, with other notes elsewhere. The pets were rudimentary Dunner-style pots. The party bandaged his wounds, and he handed over a pot and some food. The poetry seemed to be about Dirk's home. Time spent upstairs had not passed much time in the actual realm. +The party went back down to the school and entered an auditorium-style transmutation classroom. One buggy was upright of where they came in, and time seemed to have passed as expected. In the study hall or book area, they saw four-armed vulture men who looked like they were melting a pot on a pottery wheel while two wizards observed. One looked mindflayer-like. The party attacked the "wizards," and they died. The notes documented the pots the vulture man had been making: three weeks earlier he had been doing pottery, with other notes elsewhere. The pets were rudimentary Dunnen-style pots. The party bandaged his wounds, and he handed over a pot and some food. The poetry seemed to be about Dirk's home. Time spent upstairs had not passed much time in the actual realm. The party learned that Lord Hacethorn had been the last potion and herb teacher and had written the book on Ruby Eye. The founders of the college were dated 547 years before the dome, 2453 AC after cataclysm: the white-haired elven man Torlish Hartwall and the elderly man Humerous Torn. The party returned to the principal's office and back out, emerging into the Divination classroom full of students, where Isobanne was teaching. It was Sereneday. @@ -104,7 +104,7 @@ Creatures and creature-like beings mentioned include oxen-horse crossbreeds, gri # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with far-seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade frog containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowsorrow mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. +Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with far-seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade frog containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunnen-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowsorrow mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Ennuyé recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. @@ -138,7 +138,7 @@ The alteration orb overwhelmed Geldrin with empathy and regret. The note "mine f The sphinx book by serpans describes a parallel place and sphinxes who moved their city underground. This may connect to Trixus, Benu, Garadwal, the sixth sphinx, or Grincray, but the exact connection is not established. -The four-armed vulture men making pots, the mindflayer-like observer, Dunner-style pots, and poetry about Dirk's home remain unexplained. +The four-armed vulture men making pots, the mindflayer-like observer, Dunnen-style pots, and poetry about Dirk's home remain unexplained. The party entered the date 3rd Sereneday of Hummeron, 2968 AC / 32 BD. The relationship between this historical visit, current 1012 AD references, and the school planes remains unresolved. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index a440a73..a1fd476 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -76,7 +76,7 @@ The water room held the water Excellence the party had battled, dragging the mer Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but when Geldrin called out the lie, Errol opened his desk and a ruby dropped out. The ruby played a scene of Ennuyé and Browning in a huddle. Browning asked what Squeal had asked for. He said the weather to come through the Barrier, but the notes clarify that was not what Squeal said; Squeal actually asked for "the loss of everything." Ennuyé said it was cryptic but might help them. A second message showed red glowing eyes with white minds for eyes, a water Excellence, and a whirlwind being. Errol refused to play the message. Morgana turned into a bat and found something by echolocation, then forgot she had found it and turned back. The lost ring was given to Geldrin. When he put it on, it disappeared. Dirk lost compassion, and Geldrin no longer wanted to learn things. A message said "Bread & Circus" and pretended to be Rubyeye. -Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunner door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. +Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunnen door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" The invisible entity was defeated, and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." @@ -118,7 +118,7 @@ People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Gel Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. -Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowsorrow, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. +Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowsorrow, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunnen door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the defeated invisible entity, the altered original Goliath Sphinx / 40-foot memory-destroying creature, Mr Moreley as spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child Bynx, undead sphinx, and possible tainted dragons. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index dc15f42..5811a23 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -86,7 +86,7 @@ Geldrin had one of the listed items or books. Eliana put it on its plinth, causi The last diary pages described getting sick, a cell in every promise being a flavour, a spiral of intentions continuing from good to bad, people giving things away and becoming shadows of themselves, worry for daughters, too much given away, and loved ones dead. The writer asked the daughters to close the place off and did not want the others to get things. The daughters were teenagers at the time. Back in the plinth room, placing Noxia slime on its plinth did nothing. -Another diary section, on the Anvil pages, said the writer was unhappy about having to live up to her family's promises, disliked her forced mate, cryptically referred to someone she liked, and described marriage as only to keep the Council of Gold happy. Placing the book on the musings plinth lit the Heart of Tresmon. A shard placed there lit the Blood of Noxia. Eventually everything else lit. The dress plinth yielded a door handle that felt `[light/like]` and connected to the door. It unscrewed and had a hollow cap, perhaps to fill with water. The Blood of Noxia looked as if it was trying to escape. +Another diary section, on the Anvil pages, said the writer was unhappy about having to live up to her family's promises, disliked her forced mate, cryptically referred to someone she liked, and described marriage as only to keep the Council of Gold happy. Placing the book on the musings plinth lit the Heart of Tremon. A shard placed there lit the Blood of Noxia. Eventually everything else lit. The dress plinth yielded a door handle that felt `[light/like]` and connected to the door. It unscrewed and had a hollow cap, perhaps to fill with water. The Blood of Noxia looked as if it was trying to escape. Back in the empty room, the party worked out what was behind the odd brick. A handle started vibrating; the stone no longer held, and the handle glowed cold. In the bathroom, they worked the shower. Filling the handle with water made it glow. The invisible handle was removed and was itself invisible, creating something on the design. Arc suggested fetching tongs from the kitchen. Nothing happened when it was put in the fire, leading to the question of whether it was the air one. Taking it to the flying room made it glow. @@ -94,7 +94,7 @@ On a second round, Morgana felt writing on a piece of paper, fear, and resentmen A conch-like control item had three once-per-day effects when blown: Control Water, a song of thrumming, and Conjure Water Elemental. It also granted or involved Create Water, underwater breathing, speaking to sea creatures, and underwater movement. A chest showed a well wall without a bottom, causing overwhelming vertigo. Cold entered the room. Rimefrost shrieked for "little dragons." The party killed the ice elemental. A fire elemental in a rip under the fireplace seemed evil. The party attempted to put the elemental puzzle into an elemental ball. -The notes then repeat the Day 47 marker. A Skygate-type portal had runes on it; three seemed to be places, including a glittering-type word, a cryptic-type word, and an unclear third word, perhaps "Original something." The frost elemental prison runes had completely disappeared as if never there. Diary entries described fighting by Dunner people. The writer and Argentum wanted to help Garadwal. They fought elementals in the name of `[Hafelius?]`. Garadwal had trouble fighting them, while Metatous seemed more powerful than he should have been. After a two-week break, Argentum died, having fallen to the armies. +The notes then repeat the Day 47 marker. A Skygate-type portal had runes on it; three seemed to be places, including a glittering-type word, a cryptic-type word, and an unclear third word, perhaps "Original something." The frost elemental prison runes had completely disappeared as if never there. Diary entries described fighting by Dunnen people. The writer and Argentum wanted to help Garadwal. They fought elementals in the name of `[Hafelius?]`. Garadwal had trouble fighting them, while Metatous seemed more powerful than he should have been. After a two-week break, Argentum died, having fallen to the armies. At 18:00, Geldrin investigated the portal and worked it out. At 22:00, another diary entry said a symbol was similar to "glittering." They had hidden the whole place with them, described as petty. The writer was unsure how Argentum was taking it. Allegations against her were valid, but taking the city was extreme. A discussion preserved as "Taler" involved the actual word for captive, prisoners assembled, disagreement over official alternatives, Bronze refusing her suggestion, and wanting an alternative for Garadwal. The writer wanted to believe intentions were good but could no longer see the path. @@ -120,11 +120,11 @@ Aurum suggested the party come back with him so he could show them around, after Stained glass appeared to show dragon theory: a white dragon surrounded by gold dragons. Five thrones stood in the middle. The council figures included a female elf or human to the left of the white dragon, a golden dragonborn, an unclear figure with odd hair, and to the right a dwarf with a massive golden beard covered in statue symbols. Sophus Holed was linked to spiritual things. Aurum Prudence sat in one of the free chairs. An elf or human asked why the party wanted an audience with the Council. -The Council said they had left because they did not want to be involved in the dome, and this side of the world was less populated. They thought the party should take someone out. Quelling emotions began with them. They disliked Dotharl, calling him an abomination and very selfish. They wanted the scroll and asked what the party wanted in return. Cindy escorted the party to rooms while wearing Dunner-coloured clothing. She said there were many laws, new ones every day, and people had to remember them. Her clothing colour came from her mother having lived with the Dunners. Everyone had to have a job, or train for one. +The Council said they had left because they did not want to be involved in the dome, and this side of the world was less populated. They thought the party should take someone out. Quelling emotions began with them. They disliked Dotharl, calling him an abomination and very selfish. They wanted the scroll and asked what the party wanted in return. Cindy escorted the party to rooms while wearing Dunnen-coloured clothing. She said there were many laws, new ones every day, and people had to remember them. Her clothing colour came from her mother having lived with the Dunnen people. Everyone had to have a job, or train for one. The Sunsoreen council was recorded as Hayhearn Frowbrind, a white leader; Aurum Prudence, gold, expansion and protection; Sophus Holed, gold dragonborn, justice and laws; Orius [Nosheer?], dwarf gold, creation and agriculture; and the Silent One, an air genasi silver dragon associated with knowledge and information. The council had sat for the last few hundred years. Seven settlements within one hundred miles were under the Sunsoreen umbrella and had been absorbed. -A TV orb glowed, showing a copper dragon and claw or clew marks. "The Shadow" wanted information. The party wondered whether it was nice and whether they could get it out. Seven or so copper dragons and perhaps one hundred or fifty slaves were mentioned. Dotharl saw an orb and realised the party was being watched. The Tri-moon was out. The skull of Tresmon vibrated. A copper-and-white-haired "half-elf" and a huge red dragonborn appeared; the dragonborn grabbed the male and arrested them. In a dragon-scale courtroom with a gold dragon, outbreeding was now outlawed, and both were found guilty. +A TV orb glowed, showing a copper dragon and claw or clew marks. "The Shadow" wanted information. The party wondered whether it was nice and whether they could get it out. Seven or so copper dragons and perhaps one hundred or fifty slaves were mentioned. Dotharl saw an orb and realised the party was being watched. The Tri-moon was out. The skull of Tremon vibrated. A copper-and-white-haired "half-elf" and a huge red dragonborn appeared; the dragonborn grabbed the male and arrested them. In a dragon-scale courtroom with a gold dragon, outbreeding was now outlawed, and both were found guilty. The party saw them in an elven town square with a gold dragon on a pile of gold. Cindy was called back, gave bath directions and passes, and said there had been no "murders" in the last two or so years, though people were still killed. Inbreeding with lower races was allowed. Blue and red dragons were attacking Sunsoreen more than the others. The red dragonborn's presence was requested, and the party needed to testify against the troublemakers. @@ -142,9 +142,9 @@ The party then used the right blade to go to Hartwall's lab. They gave the ice e # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Ennuyé, Mr Browning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellburn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Ennuyé, Mr Browning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellburn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. -Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellburn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. +Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellburn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunnen people / Dunnen people, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Ennuyé's lab, `[unclear: aprosur]`, the corridor with `Fuck you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. @@ -152,7 +152,7 @@ Creatures and creature-like beings mentioned include the magical black green-eye # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Ennuyé's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. +Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Ennuyé's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tremon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Lam / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. @@ -204,4 +204,4 @@ Bynx's Truesight found his sister absent from the white dragon with no trace. Be The council offered to help Eliana find what she had lost if she stayed, refused to release citizens, and attempted an arrest under guest rights. Aurum's objection prevented immediate capture, but emergency law-making followed. -Day 48 begins immediately after this with Bynx growing again, Errol sent toward Dirk's father, Azureside travel, and the Dunners' dragon problem; because no Day 49 boundary is visible yet, Day 48 remains unprocessed. +Day 48 begins immediately after this with Bynx growing again, Errol sent toward Dirk's father, Azureside travel, and the Dunnen people's dragon problem; because no Day 49 boundary is visible yet, Day 48 remains unprocessed. diff --git a/data/4-days-cleaned/day-48.md b/data/4-days-cleaned/day-48.md index 556879f..d1d911e 100644 --- a/data/4-days-cleaned/day-48.md +++ b/data/4-days-cleaned/day-48.md @@ -24,15 +24,15 @@ Day 48 began after the party closed the fire elemental rift in Hartwall's lab. B Errol returned and reported that things were bad after a battle. Gardoil was not present because she had gone to do something, and reinforcements were needed from the capital. The party tried to travel by broom to Azureside and found themselves in a place of completely blue sky, passages, vanishing doors, lush grass, mushrooms, and sky below. A squirrel spoke with them, did not know where it was, and said a floppy bronze-coloured lizard looked after him. The squirrel sent a magpie to fetch it. A metallic brass-looking dragon approached. -The notes then connect to Courtwood's "Musing" from four days earlier, when Worn was killed, Errol was fixed, and Bynx joined the party. Dragons were attacking farther waterwise. The Dunners claimed the party were favoured of Atlabre and that the child prophesied a return. Dirk Sr wanted the party to kill a dragon. Scouts had found entrances to a cave network, some of which were poisoned; enemies were invisible, and the scouts did not know about a manticore. Dirk Sr told Dirk to see his sister Ingris. Bynx was fractured and unhappy as the goliaths' sphynx. Dotharl saw invisible watchers around the perimeter. +The notes then connect to Courtwood's "Musing" from four days earlier, when Worn was killed, Errol was fixed, and Bynx joined the party. Dragons were attacking farther waterwise. The Dunnen people claimed the party were favoured of Atlabre and that the child prophesied a return. Dirk Sr wanted the party to kill a dragon. Scouts had found entrances to a cave network, some of which were poisoned; enemies were invisible, and the scouts did not know about a manticore. Dirk Sr told Dirk to see his sister Ingris. Bynx was fractured and unhappy as the goliaths' sphynx. Dotharl saw invisible watchers around the perimeter. Scout reports listed four entrances. The main cliff entrance was nine miles away and guarded by about one hundred humans, dragonborn, and Duhg guards. Other patrol entrances lay under a shrub, behind a rock, behind a poison door, and in the ground, about one mile apart. Many traps had been placed, and the enemy had a movable poison weapon. The party recovered a poison weapon that felt familiar. Its poison seemed to have an alchemical base, breath-weapon qualities, poisonous herbs, and scorpion venom. Normal healing could heal the wound, but the wound would not close. -The party visited the Dunners and received substantial respect. Elders came out, including an older one and a knower of flesh, acting on the word of Benu. They said there was a plan for the party. Texts now uncovered showed prophecy, and because of Benu's convalescence they knew he would return but needed to pay for his misdeeds. They had heard of their old protector made flesh anew, Garadwal. He had been good and had wanted to protect people, but they were unsure whether they should accept him back as their protector. The goliaths proved strong-minded. The merfolk had retreated to the sea. Suppressed memories horrified them, although they had spoken highly of the party. The party considered options: diplomacy, attack, sneaking, or leaving. +The party visited the Dunnen people and received substantial respect. Elders came out, including an older one and a knower of flesh, acting on the word of Benu. They said there was a plan for the party. Texts now uncovered showed prophecy, and because of Benu's convalescence they knew he would return but needed to pay for his misdeeds. They had heard of their old protector made flesh anew, Garadwal. He had been good and had wanted to protect people, but they were unsure whether they should accept him back as their protector. The goliaths proved strong-minded. The merfolk had retreated to the sea. Suppressed memories horrified them, although they had spoken highly of the party. The party considered options: diplomacy, attack, sneaking, or leaving. Dirk asked his ancestors whether diplomacy could work. They indicated help could be gained, but the price would be high. The party told the council they would try diplomacy and advised them to give Verdigrim trade terms. The council disliked the plan but listened. At the dragonborn base, one dragonborn saw the party, followed briefly, then disappeared toward a hidden entrance. Many more surrounded the party. Three dragonborn approached: a burly mean-looking woman, a small old man, and a burly one. They said Eliana bore the shine of stepmother and that Verdigrim had ordered them to speak. The burly envoy was Grimescale, envoy of mighty Verdigrim; the old man was Gravltooth. -Grimescale and Gravltooth said their lands had been theirs for one thousand years and were no longer theirs. Ashkielion now belonged to the goliaths, while a closed place held other lands to be retrieved. The party requested safe passage to Verdigrim. They were taken through tunnels to a Dunner-style throne room made of very dark stone with copper accents. Verdigrim appeared as a man with very dark skin and copper accents. He admitted he had invited the party earlier because Perodita had told him to kill them in exchange for leaving his people alone. +Grimescale and Gravltooth said their lands had been theirs for one thousand years and were no longer theirs. Ashkielion now belonged to the goliaths, while a closed place held other lands to be retrieved. The party requested safe passage to Verdigrim. They were taken through tunnels to a Dunnen-style throne room made of very dark stone with copper accents. Verdigrim appeared as a man with very dark skin and copper accents. He admitted he had invited the party earlier because Perodita had told him to kill them in exchange for leaving his people alone. Verdigrim wanted to keep his own "Verdigrimtown" and wanted what was already his. Five white raiding forces outside the town could be revisited later. The notes mention a gold amount roughly equivalent to one sibling's hoard. Verdigrim warned that he would not lend forces in a way that put himself at risk. The party told him his mother was still alive, and he wanted to meet her. The party returned to camp at 14:00, requested the council, and was admitted to the tent at 16:00. They explained the trade agreement. The goliaths leaned toward accepting, moving to Ashkielion, and taking the rest of the town. @@ -42,11 +42,11 @@ Wrath took the party to a huge underground dwarven city. A lava ball held a humo Invar made an offering to the lava orb. He opened a box containing a tiny creature, which leapt to the lava orb and told him to aid his friends. The party saw cells and a dark-skinned man crawling across sand and begging for help. They saw Grand Towers elves leaving defeated and in pride, and the fall of two empires. Pride teleported away. Wrath became angry because the party had not killed Pride. The dwarf High Priest wanted to arrest Wrath for existing. Rubyeye was present and was arrested for ancient crimes after the council deemed him a wanted criminal and summoned him. Wrath had been advocating for Rubyeye and had brought Pride while claiming the party caused events. -Spindl led the party to Rubyeye, who was imprisoned in a dome. His charges included 174,312 herfolk babies murdered, entrapment of elemental spirits, construction of tower, and downfall of ancient race. Cardinal was not seen. Rubyeye said Ennuyé had a body stored somewhere, perhaps Goalmost Falls. He remembered Hannah and that there were six elemental forces, six arms on the exhausted, and that there had been six of them all along. The party asked Spindl to call an audience with the judges, then decided to kill Pride. Geldrin scried Pride in a veined stone building with rows of flat red and blue stained glass. +Spindl led the party to Rubyeye, who was imprisoned in a dome. His charges included 174,312 herfolk babies murdered, entrapment of elemental spirits, construction of tower, and downfall of ancient race. Cardonald was not seen. Rubyeye said Ennuyé had a body stored somewhere, perhaps Coalmont Falls. He remembered Hannah and that there were six elemental forces, six arms on the exhausted, and that there had been six of them all along. The party asked Spindl to call an audience with the judges, then decided to kill Pride. Geldrin scried Pride in a veined stone building with rows of flat red and blue stained glass. -The party broke Rubyeye out and teleported to Salanar's prison. A black dragonborn or extremely dark-skinned humanoid named Umberous greeted them and locked them in. He spoke on his father's behalf and said nothing the party had done had caused his father's ire, because they had done what they were asked and kept the dome up. He gave Geldrin a pouch of white powder to recover spell slots. A vision of Grand Towers showed a proud, calloused-cheeked elf with sunken eyes who looked as if he had given up. Umberous said his father wanted to meet and had a gift that would help. +The party broke Rubyeye out and teleported to Salanar's prison. A black dragonborn or extremely dark-skinned humanoid named Umberous, Infestus' son, greeted them and locked them in. He spoke on his father's behalf and said nothing the party had done had caused Infestus' ire, because they had done what they were asked and kept the dome up. He gave Geldrin a pouch of white powder to recover spell slots. A vision of Grand Towers showed a proud, calloused-cheeked elf with sunken eyes who looked as if he had given up. Umberous said Infestus wanted to meet and had a gift that would help. -Umberous had been tasked with looking after the seaside of the world. The party killed Pride, but a void elemental was released, absorbed his brother, and teleported away; it may also have absorbed Pride. Umberous wanted the party to meet his father. Wrath wanted them to kill his sister and take Rubyeye with him. Geldrin admitted Rubyeye was with the party, so Umberous wanted Rubyeye delivered to Infestus. He agreed not to tell Infestus about Rubyeye if the party agreed to do him a favour and gave them a Sending Stone to contact him. +Umberous had been tasked with looking after the seaside of the world. The party killed Pride, but a void elemental was released, absorbed his brother, and teleported away; it may also have absorbed Pride. Umberous wanted the party to meet Infestus. Wrath wanted them to kill his sister and take Rubyeye with him. Geldrin admitted Rubyeye was with the party, so Umberous wanted Rubyeye delivered to Infestus. He agreed not to tell Infestus about Rubyeye if the party agreed to do him a favour and gave them a Sending Stone to contact him. The party threw slurry, bones, and metal through the Barrier. The slurry and similar material were destroyed, but copper glided through; the party used the Skull of Iresmun to retrieve it. Rubyeye tried to teleport them back to the dwarven city. First they appeared on a snowy mountain beside a great stone fort in the sky with no way down. He tried again and put them in a scared-feeling dwarven stone room. Rubyeye recognised it as a prison, perhaps Throngore's, under Lewshis and Aneurascarle. At 21:00 his eyes glowed red and he disappeared. @@ -64,11 +64,11 @@ The room darkened when Invar said "original." Darkness closed in, stars appeared # People, Factions, and Places Mentioned -People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Ennuyé, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Eliana Hartwall, Ingus, Spindl, Pride, the dwarf High Priest, Ennuyé, Goalmost Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. +People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Ennuyé, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Cardonald, Eliana Hartwall, Ingus, Spindl, Pride, the dwarf High Priest, Ennuyé, Coalmont Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. -Groups and factions mentioned include the party, Dunners, goliaths, merfolk, dragonborn, Duhg guards, Verdigrim's people, Verdigrimtown, Ashkielion's goliath claimants, the council in camp, dwarves, the dwarf council, herfolk babies, elemental spirits, ancient race, Grand Towers elves, black dragonborn or Umberous's faction, Infestus's side, two dwarf clans, thirty dwarves who captured Throngore, handless and footless preserved dwarves, gods, elemental-plane powers, tormentors, and another party that helped release prisoners. +Groups and factions mentioned include the party, Dunnen people, goliaths, merfolk, dragonborn, Duhg guards, Verdigrim's people, Verdigrimtown, Ashkielion's goliath claimants, the council in camp, dwarves, the dwarf council, herfolk babies, elemental spirits, ancient race, Grand Towers elves, black dragonborn or Umberous's faction, Infestus's side, two dwarf clans, thirty dwarves who captured Throngore, handless and footless preserved dwarves, gods, elemental-plane powers, tormentors, and another party that helped release prisoners. -Places mentioned include Azureside, blue-sky passageways, the capital, cave-network entrances, the main cliff entrance, hidden patrol entrances under shrub / behind rock / poison door / ground, the Dunners' camp, Ashkielion, Verdigrimtown, the dragonborn tunnels and Dunner-style throne room, the goliath council tent, the huge underground dwarven city, the lava-orb chamber, Grand Towers, Salanar's prison, the seaside of the world, the Barrier, snowy mountain and great stone sky fort, the scared dwarven prison room, Throngore's possible prison under Lewshis and Aneurascarle, the circular dwarf statue chamber, the thirty-dwarf sarcophagus chamber, Ennuyé's lab, medical school, Provista, the magic school headmaster's office, elemental planes as highway, Morgana's `[coded]` teleport circle, and Morgana's hut. +Places mentioned include Azureside, blue-sky passageways, the capital, cave-network entrances, the main cliff entrance, hidden patrol entrances under shrub / behind rock / poison door / ground, the Dunnen people's camp, Ashkielion, Verdigrimtown, the dragonborn tunnels and Dunnen-style throne room, the goliath council tent, the huge underground dwarven city, the lava-orb chamber, Grand Towers, Salanar's prison, the seaside of the world, the Barrier, snowy mountain and great stone sky fort, the scared dwarven prison room, Throngore's possible prison under Lewshis and Aneurascarle, the circular dwarf statue chamber, the thirty-dwarf sarcophagus chamber, Ennuyé's lab, medical school, Provista, the magic school headmaster's office, elemental planes as highway, Morgana's `[coded]` teleport circle, and Morgana's hut. Creatures and creature-like beings mentioned include a squirrel, magpie, floppy bronze lizard, metallic brass dragon, manticore, invisible enemies, white raiding forces, earth elementals, tiny creature from Invar's box, lava elemental orb or prisoner, void elemental, black dragonborn / Umberous, featureless dome figure / lost part of Valententhide, gods, shadowy figure, and preserved mutilated dwarves. @@ -84,7 +84,7 @@ Bynx's statements that Eliana was not always green and sometimes reminds him of The possible god-deal to wipe Eliana from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Ennuyé, Joy, Hannah, and Eliana's Hartwall identity. -The Dunners' uncovered texts, Benu's convalescence, the prophecy of the child's return, and the question of accepting Garadwal as old protector made flesh anew remain active political and religious threads. +The Dunnen people's uncovered texts, Benu's convalescence, the prophecy of the child's return, and the question of accepting Garadwal as old protector made flesh anew remain active political and religious threads. Verdigrim's bargain, his claim to Verdigrimtown, the status of Ashkielion, the five white raiding forces, and his desire to meet his mother remain unresolved diplomatic leverage. @@ -92,7 +92,7 @@ Rubyeye's ancient charges, including 174,312 herfolk babies murdered, elemental Rubyeye's memory that there were six elemental forces all along, and six arms on the exhausted, reframes previous elemental-prison and dome clues. -Umberous's father, the requested meeting, the promised gift, and the favour owed in exchange for hiding Rubyeye from Infestus remain open obligations. +Infestus' requested meeting, the promised gift, and the favour owed to Umberous in exchange for hiding Rubyeye from Infestus remain open obligations. The void elemental released by killing Pride absorbed its brother, may have absorbed Pride, and escaped; its current state and danger are unknown. diff --git a/data/4-days-cleaned/day-53.md b/data/4-days-cleaned/day-53.md index 8aa2e41..8274ffe 100644 --- a/data/4-days-cleaned/day-53.md +++ b/data/4-days-cleaned/day-53.md @@ -23,7 +23,7 @@ Other council figures arrived or were identified: Ambassador Grunged Thundersing The council would not discuss why Rubyeye had been imprisoned, but named his crimes as treason, responsibility for the death of the princess, and demon pacts condemning souls to death. Perodita was treated as the pressing emergency, though the party remained under investigation. The Advocate wished to contact his kin. The party agreed to fight Perodita, and the General went to gather the army. -The party checked Blakedurn's ear. It had no worm, but the canal looked wrong: too small, with no hair. Dirk or Thamia checked her and determined she was not a Thamia. The party went to Blakedurn's house, whose odd, broken, poorly repaired door seemed strange for someone of her standing. The house had Sierra aspects and Dunner styling. Blakedurn confessed that she was not a dwarf but a black dragon. She wanted the dwarves to succeed, but her deal was also for herself, jewels, and similar interests. Rubyeye had been her prisoner and she wanted him back. She would help defeat Perodita if the party helped restore the Dwarven kingdoms. +The party checked Blakedurn's ear. It had no worm, but the canal looked wrong: too small, with no hair. Dirk or Thamia checked her and determined she was not a Thamia. The party went to Blakedurn's house, whose odd, broken, poorly repaired door seemed strange for someone of her standing. The house had Sierra aspects and Dunnen styling. Blakedurn confessed that she was not a dwarf but a black dragon. She wanted the dwarves to succeed, but her deal was also for herself, jewels, and similar interests. Rubyeye had been her prisoner and she wanted him back. She would help defeat Perodita if the party helped restore the Dwarven kingdoms. Blakedurn did not know exactly what had happened to the dwarves. She had been responsible for the black smoke incident, which was a smaller version of the hockey pack. Her father had made the device to summon Rubyeye, and mastering it had taken her years. Perodita claimed the goliaths' suffering was her tribute to Noxia. The people in power were inept, and their instructions were inept, with the general population made inept by those instructions. The situation had begun about twenty years earlier with a hole in Papa's Dome. Blakedurn knew of black dragons, green dragons, a silver dragon whose identity she did not know, dead blue dragons, and the white dragon Icefang. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index 0c69b08..663ea32 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -46,33 +46,33 @@ Day 57 began in the Black Dragon City in the Underblame. At 08:00, the notes exp Infestus's wife was waiting for them. She gave the party a powerful shield crystal and scrolls, smashed an orb, and produced a tiny human. After chanting, she turned the tiny human into a blue dragon. The dragon carried the party to just outside the Brass City, and they walked in. Two diplomats greeted them, one with smoke-skin type scales and a cobra head under his hood. They said "The People" now ruled the city. The Excellence of Air had left and never returned. Inside the walls the city was lush, relaxed, and did not seem enslaved. The Glowscale were excited and intrigued to see the party. The diplomats said elf wizards caused many issues, the old masters had enslaved the labour, and their friend Valenth was best sought at the citadel, still under the old regime, or at the Gaol. -The party learned that many former slaves had repaired and maintained the city while others worked in the citadel on what was said to be a great weapon. A rebellion began when slaves wanted bread and were not allowed any; they protested and burst into flames. They had been told that once their ruler left they would be attacked, but no attackers had appeared, not even Envy. A gem-shop owner who had been taken to work in the citadel said he had cut a gem with facets that gleamed in the sun. Brass City was a place of great elemental power, with fountains and similar features coming from the planes. He said the supposed weapon was actually a body of shield crystal being crafted into a focusing crystal, stored in one of the four great minarets. Creatures in the towers had become unruly after the Excellence left. +The party learned that many former slaves had repaired and maintained the city while others worked in the citadel on what was said to be a great weapon. A rebellion began when slaves wanted bread and were not allowed any; they protested and burst into flames. They had been told that once their ruler left they would be attacked, but no attackers had appeared, not even Envy. A tabaxi jeweller named Facets that Gleam in the Sun, who had been taken to work in the citadel, said he had cut a gem there and was disappointed he did not finish it. Brass City was a place of great elemental power, with fountains and similar features coming from the planes. He said the supposed weapon was actually a body of shield crystal being crafted into a focusing crystal, stored in one of the four great minarets. Creatures in the towers had become unruly after the Excellence left. -Dirk spoke to a fountain. The water wanted to go somewhere but was doing an important job because its father had told it to. It referred to Hydraxia before being given to the blue dragons, said the dragons went bad, said its father liked the merfolk but was annoyed by the purple thing, and wanted the party to fix the babies not going to him. If they sorted that out, the water promised to be on their side when the end came. +Dirk spoke to a fountain. The water wanted to go somewhere but was doing an important job because its father had told it to. It referred to Hydran before being given to the blue dragons, said the dragons went bad, said its father liked the merfolk but was annoyed by the purple thing, and wanted the party to fix the babies not going to him. If they sorted that out, the water promised to be on their side when the end came. -At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a sun, a thick-set dwarf, and a slender woman with a bow, and a depiction of Garadwal speaking with the Dunner people. There was no evidence of a fire elemental living there. Statues lined the corridor facing the wall. One turned statue bore text like "runs in the streams" and possibly "high mountainness?" Another "slays foes bravely." A tabaxi with scales, missing one back leg and ears, was described as "fur of night scales of the sky," first princess of the union, and was slightly cracked. The sword had been made but perhaps the person had not, suggesting a Medusa-type spell. Other statues and objects involved weighted idols, jewellery, gravity and weight, the Lord of the Brass City, a necklace partly carved from a statue, something that hummed and "lungs," "Gleams in the first light," possible high priests of Goklhar, a fine-dressed figure with a book and rose, a brazier, and "Lies in the morning dew," prophet of the light. When a coin was placed in an orbiting spot, Ignan said, "We are close once more. I will help you say his name when you pick him up." +At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a sun, a thick-set dwarf, and a slender woman with a bow, and a depiction of Garadwal speaking with the Dunnen people. There was no evidence of a fire elemental living there. Statues lined the corridor facing the wall. One turned statue bore text like "runs in the streams" and possibly "high mountainness?" Another "slays foes bravely." A tabaxi with scales, missing one back leg and ears, was described as "fur of night scales of the sky," first princess of the union, and was slightly cracked. The sword had been made but perhaps the person had not, suggesting a Medusa-type spell. Other statues and objects involved weighted idols, jewellery, gravity and weight, the Lord of the Brass City, a necklace partly carved from a statue, something that hummed and "lungs," "Gleams in the first light," possible high priests of Goklhar, a fine-dressed figure with a book and rose, a brazier, and "Lies in the morning dew," prophet of the light. When a coin was placed in an orbiting spot, Ignan said, "We are close once more. I will help you say his name when you pick him up." -The party picked up the cat. Geldrin said "There," and the cat became Haze as a big dog, who had come to aid them in their travels and was still due to their service to his mistress. Haze warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. Haze remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. Haze stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that Haze called a control room controlling multiple planes at once. The sword was in the Earth plane with Tresmun's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. +The party picked up the cat. Geldrin said "There," and the cat became Haze as a big dog, who had come to aid them in their travels and was still due to their service to his mistress. Haze warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. Haze remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. Haze stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that Haze called a control room controlling multiple planes at once. The sword was in the Earth plane with Tremon's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. -In the Earth-plane space, it was completely dark and Invar's magic did not work until Haze made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Hartwall, jagged granite, and shield crystal. The shield crystal was a piece of Tresmon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. +In the Earth-plane space, it was completely dark and Invar's magic did not work until Haze made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Hartwall, jagged granite, and shield crystal. The shield crystal was a piece of Tremon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. A rat came to Morgana and disintegrated. Cacophony, previously met on page 231, appeared as a huge worm, died, and said it would show her something interesting. Her cider showed Rubyeye in a runed bathroom removing his eye. The cats hissed, the fire burned brighter, and then things returned to normal. A cat said the outcome was not predetermined and that the party had got rid of something bad following them. Dirk put the coal in the fire and saw a man saving a young girl; a clever way appeared with the rings. The party reached a small round temple near the remains of the Riversmeet bridge and the dwarven bridge, with Seward marble, about thirty benches carved with odd stones, five unlit altar candles, and ten gold statues under the altar representing different races but missing a dragon. The candles would not light until Invar used the torches around the room and Geldrin placed the wizard-race statues by the candles. They saw a vision of a large round table with seven people: five wizards, Hannah, and Icefang. Mama Hartwall, angry and holding the blue ball, said, "This is enough. You can't continue this any more." A silver scale in dirt appeared and then a door. The next space was a thriving, decadent Goliath throne room. Lion-headdress rockmen flanked the throne. Someone who looked like Dirk with his sword was made of stone. Pictures showed a white dragon by a river, the party as they now were, and a young beautiful sphynx. The stone Dirk had the needed sword but had just got it back from a ghost. He wanted proof that the party were themselves and proof of how they killed Perodita. They gave the granite and saw a vision of Justiciars moving rocks off a dragon's body. The stone Dirk told them to return to the fiery-beard chap, Huntmaster Throne, and said stone Dirk had brought the dome down. Four doorways appeared: Moon, Dragon Head, Arching Wave, and Butterfly. The party were told not to choose the moon door but opened it because the last trinket was the moon crystal. It seemed to lead to Craters Edge, and Dirk heard garbled conversations. The dragon door showed snow, pine trees, dread, and a memory of flying or crashing through pine needles, scratching scales. The wave door let water through and left a tiny arm bone when closed. The butterfly door smelled of swampy Everchard and Morgana's house; it showed Morgana's newer-looking house about twenty years earlier. Betty saw someone there before Magpie stopped her: a younger Chorus who had "made" a baby that was given away and already had a name. Haze said these places all seemed a little different from the real locations. -When the moon door reopened, it showed a black sky and crystal surface changed to the moon, then Brass City with a massive stone table and purple rock men missing an arm and head. The dragon door shifted to Pinesprings with a green/yellow flash, chatter, crying, and a baby dragonborn. Geldrin entered through the moon door and found Tresmon's body incomplete. A salamander expected a tabaxi and spoke of facets that gleam in the sun, trying to get light to go in but not out. Geldrin found where a shard had come from and put it back, causing all four doors to open safely. Andy saw the moment after the fight with the Mother: a dark-skinned woman running, with a tree behind her. He charged through a stone door. The wave door led to mother-of-pearl walls, a palace, two mermen, a pool, and the City of Aquarius, where Keepers of the Pact were welcome because Lord Hydram said they could come. The party concluded the doors were memories of promises or deeds, possibly distractions. +When the moon door reopened, it showed a black sky and crystal surface changed to the moon, then Brass City with a massive stone table and purple rock men missing an arm and head. The dragon door shifted to Pinesprings with a green/yellow flash, chatter, crying, and a baby dragonborn. Geldrin entered through the moon door and found Tremon's body incomplete. A salamander expected the tabaxi jeweller Facets that Gleam in the Sun, trying to get light to go in but not out. Geldrin found where a shard had come from and put it back, causing all four doors to open safely. Andy saw the moment after the fight with the Mother: a dark-skinned woman running, with a tree behind her. He charged through a stone door. The wave door led to mother-of-pearl walls, a palace, two mermen, a pool, and the City of Aquarius, where Keepers of the Pact were welcome because Lord Hydran said they could come. The party concluded the doors were memories of promises or deeds, possibly distractions. The dragon door smelled of the sword and led to Provista, a plateau town about twenty years earlier. The party came out four doors down from Eliana's house, and Haze led them toward the house, following the same baby crying. Eliana's mother saw a box from Everchard, and the family happily brought it in. Morgana said the Chorus made Eliana. At 1 AM, the notes exclaim "Eliana Hartwall!" The sword was in Eliana's house, inside the box with cloths. Morgana found another piece of black thread; the Chorus's eyes and mouth had been sewn shut with black thread. In the town square, a Founder's Day poster showed Bleakstorm and a Geldrin look-alike who was not Geldrin. It had been sent by sending stone and dated 17th March 991, which was not Founding Day. Bleakstorm was in the town hall with a freshly carved ice sculpture of an auroch. He could take them back to Brass City but wanted a personal favour: save him, just him. As the first man, he wanted to know whether Icefang's spirit was still present. It was, because Icefang died in the dome. Bleakstorm wanted the party to free Icefang's spirit. He clapped and sent them back to Brass City's plush throne room, now with only three wall pictures. The party put the sword back into its statue, fixing the cracks. -Bynx called on Trixus to ask why they were fixing the statues. Trixus said the statues were "the Council." The party next sought the necklace. Haze carried them back to the throne room and an air picture. Dothurl looked different and felt stronger. Haze led them to the normal-plane statue room and through a door to a jewellery box. A tabaxi playing piano wore a necklace called "Drinker beads of wine." The party pickpocketed it, and she turned over a five-minute hourglass. In a theatre room they found more false necklaces. Ruby eyes glittered with "useless presents." They eventually found the real necklace on a coat peg, dispelled invisibility, and made it real instead of stone. Their checklist now had the bowl, necklace, and sword checked, with tongs, coat, and a dragonborn-tail crouched fake remaining. After returning the necklace, it melded to the statue while still remaining a necklace. +Bynx called on Trixus to ask why they were fixing the statues. Trixus said the statues were "the Council." The party next sought the necklace. Haze carried them back to the throne room and an air picture. Dotharl looked different and felt stronger. Haze led them to the normal-plane statue room and through a door to a jewellery box. A tabaxi playing piano wore a necklace called "Drinker beads of wine." The party pickpocketed it, and she turned over a five-minute hourglass. In a theatre room they found more false necklaces. Ruby eyes glittered with "useless presents." They eventually found the real necklace on a coat peg, dispelled invisibility, and made it real instead of stone. Their checklist now had the bowl, necklace, and sword checked, with tongs, coat, and a dragonborn-tail crouched fake remaining. After returning the necklace, it melded to the statue while still remaining a necklace. -For the offering bowl, the room changed again, leaving two paintings and moving the candelabra to the ceiling. Geldrin touched a painting, disappeared, and ended up shrunken in Eliana's waterskin until school biggening juice restored him. Dothurl activated the painting and the party entered a replica throne room with paintings of a vortex or whirlpool, tropical fish under tropical sea, an icy swamp lake, and a calm still lake. Dirk spoke Aquan to Globule in the whirlpool. Globule said Noxia trapped him because he worked for "Him"; when asked who, he said, "Him, Hydram, then Noxia." "Him" was forgotten more than lost, and Globule had no arms or legs. +For the offering bowl, the room changed again, leaving two paintings and moving the candelabra to the ceiling. Geldrin touched a painting, disappeared, and ended up shrunken in Eliana's waterskin until school biggening juice restored him. Dotharl activated the painting and the party entered a replica throne room with paintings of a vortex or whirlpool, tropical fish under tropical sea, an icy swamp lake, and a calm still lake. Dirk spoke Aquan to Globule in the whirlpool. Globule said Noxia trapped him because he worked for "Him"; when asked who, he said, "Him, Hydran, then Noxia." "Him" was forgotten more than lost, and Globule had no arms or legs. -Behind the throne, two jellyfish-headed people guarded the bowl and said the party could not enter or leave because Noxia had issued a death warrant against them. The party fought and killed them. The room held a mother-of-pearl and coral sphynx throne. A painting with tropical fish showed a large closed clam, a shipwreck, and a fish man with the key to the prison. The clam called the whirlpool a bad prisoner. Invar and Dothurl entered another painting and found what seemed to be Morgana's hut near dead Everchard trees, all boarded up and surrounded by birds. Morgana entered, smelled salt, and was called "Mother" by a bird. The notes wonder whether "he" who was gone amid devastation was a dragon, see-through, or Salanus. +Behind the throne, two jellyfish-headed people guarded the bowl and said the party could not enter or leave because Noxia had issued a death warrant against them. The party fought and killed them. The room held a mother-of-pearl and coral sphynx throne. A painting with tropical fish showed a large closed clam, a shipwreck, and a fish man with the key to the prison. The clam called the whirlpool a bad prisoner. Invar and Dotharl entered another painting and found what seemed to be Morgana's hut near dead Everchard trees, all boarded up and surrounded by birds. Morgana entered, smelled salt, and was called "Mother" by a bird. The notes wonder whether "he" who was gone amid devastation was a dragon, see-through, or Salanus. Inside the hut were a white rose, a sea conch with a mouthpiece, and a wooden offering bowl like the one sought. Morgana blew the conch and released a watery genie-like entity: Myriad one, Lord of the High Waters, seeker of truth for Hydrus. He offered two wishes, one of which had to free him, and said he needed to present the bowl to the clam. The party did not think he was telling the truth. They took the items and birds. `[uncertain: Iachdais]` told them in Common that the other birds were with him; his name was Mourning. Mourning had been imprisoned for creating funerals and killing people who cut down trees or killed rabbits. Morgana had "created" him and had taken a while to come get him. The clam said he did not want the bowl and that Myriad was his friend, true but hiding things. The clam wanted freedom, and only a friend whose name he knew but would not give could free him. -The party left the paintings and explored other doors: a mother-of-pearl dragon door that caused awe, dread, and reverence; a whirlwind elemental door; an oxen-yoke door for an auroch; a room of shells with a porcelain or crystalline salt dragon not recognized as any known dragon species; a smaller quartz dragon like Salanus? that shattered and was reassembled with many tiny cuts; and storage paintings of people the party knew depicting their deaths. Dothurl entered an orb door and found a familiar domed room with a slight breeze and a small mechanical bird. `[uncertain: Eroll?]` said it was him and that he had been trapped there while looking for Ruby Eye from the Goliath tower. The Eroll in Geldrin's bag and the room Eroll were identical. Dothurl touched the room Eroll, cracks spread, the breeze stopped, and psychic damage hurt Eliana until the door was repaired. +The party left the paintings and explored other doors: a mother-of-pearl dragon door that caused awe, dread, and reverence; a whirlwind elemental door; an oxen-yoke door for an auroch; a room of shells with a porcelain or crystalline salt dragon not recognized as any known dragon species; a smaller quartz dragon like Salanus? that shattered and was reassembled with many tiny cuts; and storage paintings of people the party knew depicting their deaths. Dotharl entered an orb door and found a familiar domed room with a slight breeze and a small mechanical bird. `[uncertain: Eroll?]` said it was him and that he had been trapped there while looking for Ruby Eye from the Goliath tower. The Eroll in Geldrin's bag and the room Eroll were identical. Dotharl touched the room Eroll, cracks spread, the breeze stopped, and psychic damage hurt Eliana until the door was repaired. The yoke door held an offering bowl in a wobbly glass case on a plinth. Morgana removed the case but smashed it, and the plinth broke when the party tried to replace the bowl. Invar created a new case and fixed the plinth. Another rawhide-inlaid door marked the bowl as a tabaxi prayer to Igraine. Beyond it were identical roots on plinths. Invar's attempts to identify them produced anxiety and visions: a voice said, "A sacrifice & I will let you have it," and a later underground scorpion vision said, "The entrance shows the way, a pain you will take with you." The party tried filling the bowl with booze and praying, but received no answer. @@ -86,7 +86,7 @@ Beyond the Submarine door was a wall of water, a barnacle door with a rusted han The merlady showed them carvings. One showed a man with a staff and a hand, like Envi, described as the one who captured their allies. He was free: his body had awakened in his laboratory, his spirit had reached his base and occupied a body there, and he had gained power and control over the crystals. His goal was uncertain, and he had not been near his other parts. Another warning showed a creature made of living flames, with a small six-armed creature the party had killed looking up at him. This was the creature who wished to "pull a Noxia." He was a prince, in the party's next location, and they were about to walk into his house; they wished to make him a god. Noxia had replaced someone, but Kesha had not. A later picture showed Morgana, Igraine with a knife and birds, standing on the bones of a small dragon. It had not happened yet and was not a picture of murder or the weapon. The notes connect this to reincarnation and Eliana's bones, asking why Eliana does not remember properly if Morgana reincarnated them, whether because of the worm or something else. A final room held the bowl on a plinth and a carving of Noxia wounded by an arrow, with two figures at her sides; where earlier images showed Sierra's dogs, this one showed the six party members. Invar took the bowl. When asked where the vessel that took down the god was, the merlady sent them back and briefly seemed to turn into a hammerhead shark. Back in the throne room, only the fire painting remained, the chandelier was fully ablaze, and a dark inky shadow covered the floor. Globule stayed with the party but Nare thought he was dangerous. Globule wanted to take the baby pokeballs to a river, then stayed with the fountain elementals while the party replaced the bowl. -The party next pursued the tongs through the fire painting. Invar felt his presence to `[uncertain: Stolchar]` lessen. They appeared in a fire-realm throne room with broken doors and a missing throne. Haze disliked it because he could not smell Sierra, suggesting it might be someone else's realm. Six identical statues stood below. Red-skinned, small-horned beings guarded doors and served Sultan Azar Nuri. The Sultan, a fifty-foot-tall horned being in a turban, disliked Invar's symbol to `[uncertain: Stolchar]`. Envi worked for him and had Tresmun's arm. Geldrin told Azar Nuri to tell Envi to bring it to him; Azar said if Geldrin did, Envi would bring it. Azar Nuri lacked servants on the party's plane and struggled to move minions there. He cared only about retaking his power. He wanted the party to open passageways and continue fixing the crystal body being carved for him. Geldrin tried to promise to make him god of death. The bargain recorded was: tongs now; gold when the crystal is complete; force the god of death to make a mistake and appear on the party's plane; and open a passageway for Azar Nuri's envoys to come to the party's plane. Azar threw them the tongs, and they left. +The party next pursued the tongs through the fire painting. Invar felt his presence to `[uncertain: Stolchar]` lessen. They appeared in a fire-realm throne room with broken doors and a missing throne. Haze disliked it because he could not smell Sierra, suggesting it might be someone else's realm. Six identical statues stood below. Red-skinned, small-horned beings guarded doors and served Sultan Azar Nuri. The Sultan, a fifty-foot-tall horned being in a turban, disliked Invar's symbol to `[uncertain: Stolchar]`. Envi worked for him and had Tremon's arm. Geldrin told Azar Nuri to tell Envi to bring it to him; Azar said if Geldrin did, Envi would bring it. Azar Nuri lacked servants on the party's plane and struggled to move minions there. He cared only about retaking his power. He wanted the party to open passageways and continue fixing the crystal body being carved for him. Geldrin tried to promise to make him god of death. The bargain recorded was: tongs now; gold when the crystal is complete; force the god of death to make a mistake and appear on the party's plane; and open a passageway for Azar Nuri's envoys to come to the party's plane. Azar threw them the tongs, and they left. The fire realm held other rooms: a meeting room where an imp sold a turban and deck of cards, smoke that could become a passageway to "her" via a candle-and-incense wall hanging and took travellers back in time before guards were there, a well-stocked unused forge where Invar made a goblet for `[uncertain: Stolchar]` and received a refined goblet back, a blank-wall room with thread, a lectern, bowl, stick, and candlestick, and a room with a quiver, leather armour, bow, and antelope or gazelle skin on the floor. The party traded 15A, rope, and a tin of white paint for the imp's cards and turban. They changed the tapestry, lit the candle and incense, and the tapestry came alive. @@ -114,7 +114,7 @@ The party found an empty house and relaxed. Dirk felt someone scrying on him. Ou # People, Factions, and Places Mentioned -People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. +People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydran / Lord Hydran, Trixus, Garadwal, Dunnen people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Facets that Gleam in the Sun, Geldrin, There, Sierra, Browning, Bob, Bosh, Tremon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydran, Eliana Hartwall, Bleakstorm, Bynx, Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. @@ -124,21 +124,21 @@ Creatures and creature-like beings mentioned include the orb-made blue dragon, s # Items, Rewards, and Resources -Items and resources mentioned include scrolls, a powerful charged shield crystal, the newspaper, Infestus's wife's smashed orb, shield-crystal body / focusing crystal, the four great minarets, planar fountains, the citadel statues, a cracked sword, weighted idols, jewellery, a carved necklace, the rose and book statue, brazier, orbiting coin, Trixus-carved door, plane-control throne room, coal, silver dragon object like Mama Hartwall, jagged granite, shield crystal piece of Tresmon, wet coal water, Scroll of Fireball, needle and bloodied thread, Rubyeye eye-removal vision, rings, Seward marble, five altar candles, ten gold wizard-race statues, blue ball held by Mama Hartwall, silver scale, moon crystal, tiny arm bone, black thread, the baby box from Everchard, sword in the box, Founder's Day poster dated 17th March 991, sending stone, ice auroch sculpture, the Council statue sword, "Drinker beads of wine" necklace, five-minute hourglass, fake necklaces, checklist box, school biggening juice, whirlpool/tropical/icy/calm lake paintings, wooden offering bowl, white rose / Rose of Reincarnation, sea conch, raven and other birds, mother-of-pearl and coral sphynx throne, shell room, porcelain salt dragon, quartz Salanus-like dragon, storage death paintings, Eroll mechanical bird, offering bowl in a glass case, rawhide-inlaid door, tabaxi prayer to Igraine, roots on plinths, bloodied knife, nine condensation-covered water-baby globes / pokeballs, shells and pearls worth about 500 gp, scorpion-symbol chains, barnacle door, watchful starfish, parchment contract to save babies' spirits, carvings of Envi, living-flame prince, Morgana and Igraine, Noxia wounded by an arrow, fire-realm tongs, Azar Nuri's turban, imp's deck of cards and turban, 15A, rope, tin of white paint, `[uncertain: Stolchar]` refined goblet, thread, lectern, bowl, stick, candlestick, quiver, leather armour, bow, animal skin, incense/candle wall hanging, past-Brass tapestry, glass beads from Brass City, skirt scrap, missing Bynx book page, chandelier, platinum throne, Attabre's book from Geldrin, Haze fragment put into Errol, fifteen wailing black coins, prison keys, bell, live-tabaxi tail restoration, Queen Mooncoral's sending stone, and ring of fire resistance. +Items and resources mentioned include scrolls, a powerful charged shield crystal, the newspaper, Infestus's wife's smashed orb, shield-crystal body / focusing crystal, the four great minarets, planar fountains, the citadel statues, a cracked sword, weighted idols, jewellery, a carved necklace, the rose and book statue, brazier, orbiting coin, Trixus-carved door, plane-control throne room, coal, silver dragon object like Mama Hartwall, jagged granite, shield crystal piece of Tremon, wet coal water, Scroll of Fireball, needle and bloodied thread, Rubyeye eye-removal vision, rings, Seward marble, five altar candles, ten gold wizard-race statues, blue ball held by Mama Hartwall, silver scale, moon crystal, tiny arm bone, black thread, the baby box from Everchard, sword in the box, Founder's Day poster dated 17th March 991, sending stone, ice auroch sculpture, the Council statue sword, "Drinker beads of wine" necklace, five-minute hourglass, fake necklaces, checklist box, school biggening juice, whirlpool/tropical/icy/calm lake paintings, wooden offering bowl, white rose / Rose of Reincarnation, sea conch, raven and other birds, mother-of-pearl and coral sphynx throne, shell room, porcelain salt dragon, quartz Salanus-like dragon, storage death paintings, Eroll mechanical bird, offering bowl in a glass case, rawhide-inlaid door, tabaxi prayer to Igraine, roots on plinths, bloodied knife, nine condensation-covered water-baby globes / pokeballs, shells and pearls worth about 500 gp, scorpion-symbol chains, barnacle door, watchful starfish, parchment contract to save babies' spirits, carvings of Envi, living-flame prince, Morgana and Igraine, Noxia wounded by an arrow, fire-realm tongs, Azar Nuri's turban, imp's deck of cards and turban, 15A, rope, tin of white paint, `[uncertain: Stolchar]` refined goblet, thread, lectern, bowl, stick, candlestick, quiver, leather armour, bow, animal skin, incense/candle wall hanging, past-Brass tapestry, glass beads from Brass City, skirt scrap, missing Bynx book page, chandelier, platinum throne, Attabre's book from Geldrin, Haze fragment put into Errol, fifteen wailing black coins, prison keys, bell, live-tabaxi tail restoration, Queen Mooncoral's sending stone, and ring of fire resistance. -Strategic resources and plans include the expected treaty council, Infestus's support and restraint of Salinas, Brass City access, restoring the Council statues by returning their objects or body parts, There's guidance, Bob and Bosh's possible uncursing later, using planar/memory rooms to recover the sword, necklace, bowl, tongs, cat, light/cat, and tail, fixing Tresmon's shield-crystal body, freeing water elemental babies / merbabies from the realm of darkness, Hydran's Pact offer, possible godly gifts before the next realm, Attabre's warning about death in that realm, the choice to bring down the dome, weakening Throngore by bringing down the dome, Kasha's pact pressure over Guardwell's soul, Throngore's demand to free a prisoner and not let Air retake his throne, the priestess guiding the party to Cardonald, and Queen Mooncoral's merfolk support. +Strategic resources and plans include the expected treaty council, Infestus's support and restraint of Salinas, Brass City access, restoring the Council statues by returning their objects or body parts, There's guidance, Bob and Bosh's possible uncursing later, using planar/memory rooms to recover the sword, necklace, bowl, tongs, cat, light/cat, and tail, fixing Tremon's shield-crystal body, freeing water elemental babies / merbabies from the realm of darkness, Hydran's Pact offer, possible godly gifts before the next realm, Attabre's warning about death in that realm, the choice to bring down the dome, weakening Throngore by bringing down the dome, Kasha's pact pressure over Guardwell's soul, Throngore's demand to free a prisoner and not let Air retake his throne, the priestess guiding the party to Cardonald, and Queen Mooncoral's merfolk support. # Clues, Mysteries, and Open Threads Brass City appears post-rebellion and no longer openly enslaved, but its old-regime citadel still holds plane-control systems, air elementals, minarets, Council statues, and the shield-crystal body/focusing crystal. The Excellence of Air left and never returned, and after that the tower creatures became unruly. -The fountain water elemental / Hydraxia thread links blue dragons, merfolk, a purple thing, and babies not reaching Hydran. Fixing the babies earned Hydran's support and later Queen Mooncoral's service, but the purple thing and exact mechanism remain unclear. +The fountain water elemental / Hydran thread links blue dragons, merfolk, a purple thing, and babies not reaching Hydran. Fixing the babies earned Hydran's support and later Queen Mooncoral's service, but the purple thing and exact mechanism remain unclear. The Council statues were cursed around 2034 AP / approximately 3480, the same time the coins were smelted and when the tabaxi were ousted from the Brass. Returning their objects or body pieces restored at least one live tabaxi king; the full Council roster and consequences remain unresolved. Haze says the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place. This links the dome, Air, Sierra, and Browning's replacement plan but does not fully explain who Sierra is or how the trap works. -Tresmun / Tresmon's body is incomplete and spread across planes or memories. Geldrin restored a shard to the moon/Brass City body, Envi has Tresmun's arm, and the party restored the tail at the end of the day. +Tremon's body is incomplete and spread across planes or memories. Geldrin restored a shard to the moon/Brass City body, Envi has Tremon's arm, and the party restored the tail at the end of the day. The Earth-plane tavern sequence removed something bad that had been following the party, but the identity of that thing remains unknown. Cacophony died as a huge worm after showing Morgana Rubyeye removing his eye. @@ -152,7 +152,7 @@ Globule, the Myriad / Lord of the High Waters, Lord of Tar, Hydran, Kesha, Noxia Kesha is Noxia's sister. Noxia replaced someone but Kesha did not. Noxia had issued a death warrant against the party, held jellyfish children as guards, and appears wounded in a carving with the party in place of Sierra's dogs. -Envi is free, has awakened or occupied a body in his laboratory/base, controls crystals, captured the party's allies, works for Azar Nuri, and holds Tresmun's arm. His goal is unknown, and he has not been near his other parts. +Envi is free, has awakened or occupied a body in his laboratory/base, controls crystals, captured the party's allies, works for Azar Nuri, and holds Tremon's arm. His goal is unknown, and he has not been near his other parts. The living-flame prince who wants to "pull a Noxia" is in the party's next location and is being made into a god. This may connect to Azar Nuri, fire powers, and the god-of-death bargain. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index b7632dc..43126b0 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -135,7 +135,8 @@ sources: - [Brass City](places/brass-city.md): Brass City, the Brass, old-regime citadel, Brass City citadel. - [Brass City Council](factions/brass-city-council.md): the Council, Council statues, cursed statues, live tabaxi restored from stone. - [Queen Mooncoral](people/queen-mooncoral.md): Queen Mooncoral, merlady with a driftwood crown, Crown of Mooncoral [artifact/title context uncertain]. -- [Hydran / Hydram](people/hydran.md): Hydran, Hydram, Lord Hydran, Hydraxia [context uncertain], Hydrus [possibly related title/name]. +- [Facets that Gleam in the Sun](people/facets-that-gleam-in-the-sun.md): Facets that Gleam in the Sun, Facets that gleam in the sun. +- [Hydran](people/hydran.md): Hydran, Lord Hydran. - [Globule](people/globule.md): Globule, whirlpool prisoner, water-baby guide. - [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md): Myriad, Myriad one, Lord of the High Waters, seeker of truth for Hydrus, con artist [Globule's description]. - [Azar Nuri](people/azar-nuri.md): Azar Nuri, Sultan Azar Nuri, fire sultan, living-flame prince [relationship uncertain]. @@ -144,10 +145,10 @@ sources: - [Throngore](people/throngore.md): Throngore, Thromgore [earlier variant], giant goat-headed lord, god/demon of the death realm. - [Kasha](people/kasha.md): Kasha, Kasher [earlier uncertain variant]. - [Eliana](people/eliana.md): Eliana, Eliana Hartwall, Elliana Hartwall, Elluin Hartwall, Elluin Hartwall!. -- [Dotharl](people/dotharl.md): Dotharl, Dothral, Dothril, Dothurl. +- [Dotharl](people/dotharl.md): Dotharl, Dothral, Dothril. - [Lady Elissa Hartwall](people/lady-elissa-hartwall.md): Lady Elissa Hartwall, Lady Hartwall, Hartwall, Elissa, Kaylissa, Kaylara, Lady Eliisa Hartwall. - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md): Lady Evalina Hartwall, Evalina Hartwall, Mama Hartwall, Miana, Avalina. -- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, Haze, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. +- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydran, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, Haze, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Lam](people/lam.md): Lam, god of Lam. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index 536c3c9..cd00b64 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -14,9 +14,9 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Infestus, Infestus's wife, Salinas, treaty/council setup, Black Dragon City in the Underblame | Existing [Infestus](../people/infestus.md); added [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | | Brass City, The People, Glowscale, old masters, slave rebellion, citadel, Gaol, four great minarets, fountains, past Brass City | Added standalone [Brass City](../places/brass-city.md); Gaol/minarets/past spaces also in [Minor Places from Day 57](../places/minor-places-day-57.md). | | Brass City Council, Council statues, tabaxi king, first princess, Gleams in the first light / Firelight, Lies in the morning dew, statue inscriptions | Added [Brass City Council](../factions/brass-city-council.md); inscriptions added to [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | -| Shield-crystal body, focusing crystal, Tresmun/Tresmon pieces, sword, necklace, bowl, tongs, cat/light-cat, tail | Added [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md); updated [Shield Crystals](../items/shield-crystals.md). | +| Shield-crystal body, focusing crystal, Tremon/Tremon pieces, sword, necklace, bowl, tongs, cat/light-cat, tail | Added [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md); updated [Shield Crystals](../items/shield-crystals.md). | | Queen Mooncoral, mother-of-pearl-armoured merfolk, first birth, sending stone, ring of fire resistance, In'weo [uncertain] | Added [Queen Mooncoral](../people/queen-mooncoral.md); gifts added to [Party Inventory](../inventories/party-inventory.md). | -| Hydran / Hydram / Hydraxia / Hydrus, City of Aquarius, Pact offer, travel patron, purple thing, merbaby rescue | Added [Hydran / Hydram](../people/hydran.md); updated [Open Threads](../open-threads.md). | +| Hydran, City of Aquarius, Pact offer, travel patron, purple thing, merbaby rescue | Added [Hydran](../people/hydran.md); updated [Open Threads](../open-threads.md). | | Globule, whirlpool prisoner, water-baby globes, Lord of Tar / clam warning, babies to sea | Added [Globule](../people/globule.md); status and inventory updated. | | Myriad / Lord of the High Waters, sea conch, wishes, Hydran imprisonment, con artist warning | Added [Myriad / Lord of the High Waters](../people/myriad-lord-of-the-high-waters.md); sea conch in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Noxia, Kesha, jellyfish guards and children, death warrant, scorpion symbols, Noxia wounded carving | Existing [Noxia](../people/noxia.md); Kesha and jellyfish figures covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [NPC Status](../people/status.md); scorpion symbols in [Minor Items from Day 57](../items/minor-items-day-57.md). | @@ -27,9 +27,9 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre](../people/attabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | -| Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | +| Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tremon's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | -| Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Errol the Obsidian Raven](../people/errol.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | +| Haze, Errol/Eroll, Bob, Bosh, Dotharl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Errol the Obsidian Raven](../people/errol.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | | Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | | Craters Edge, Pine Springs, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | diff --git a/data/6-wiki/clues/days-48-52-coverage-audit.md b/data/6-wiki/clues/days-48-52-coverage-audit.md index 527a0e5..862c664 100644 --- a/data/6-wiki/clues/days-48-52-coverage-audit.md +++ b/data/6-wiki/clues/days-48-52-coverage-audit.md @@ -13,7 +13,7 @@ This audit accounts for the people, places, factions, items, clues, and open thr | Subject | Outcome | | --- | --- | | Verdigrim / Verdugrim, Grimescale, Gravltooth, Verdigrimtown, Ashkielion diplomacy | Standalone [Verdigrim](../people/verdigrim.md); linked rollups for minor envoys and places. | -| Rubyeye, Wrath, Spindl, ancient charges, underground dwarven city, missing body / Goalmost Falls? | Existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md) updated; Spindl and places in rollups. | +| Rubyeye, Wrath, Spindl, ancient charges, underground dwarven city, missing body / Coalmont Falls? | Existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md) updated; Spindl and places in rollups. | | Peridita ordering Verdigrim to kill party | Existing [Peridita](../people/peridita.md) updated. | | Umberous, Salanar's prison, Sending Stone, favour owed, Infestus secrecy | Rollups [Minor Figures](../people/minor-figures-days-48-52.md), [Minor Places](../places/minor-places-days-48-52.md), [Minor Items](../items/minor-items-days-48-52.md), and [Open Threads](../open-threads.md). | | Void elemental released by killing Pride | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; open thread added. | @@ -21,7 +21,7 @@ This audit accounts for the people, places, factions, items, clues, and open thr | Featureless figure / Aglue? / Anemie? / lost part of Valententhide, Thomas, Vessel of Divinity | Existing [Valententhide](../people/valententhide.md), [Elemental Prisons](../concepts/elemental-prisons.md), and [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) updated; rollups preserve variants. | | Joy warning, Hannah-style erasure, Eliana Hartwall identity confirmation | Existing [Valententhide](../people/valententhide.md) and [Open Threads](../open-threads.md); Day 48 cleaned narrative preserves details. | | Simon, Stoven, Stuart, Morgana's `[coded]` circle | Rollups and open thread. | -| Benu prophecy, Dunners, Garadwal old protector made flesh anew | Cleaned narrative, rollups, [Open Threads](../open-threads.md); existing [Garadwal](../people/garadwal.md) already tracks related protector identity. | +| Benu prophecy, Dunnen people, Garadwal old protector made flesh anew | Cleaned narrative, rollups, [Open Threads](../open-threads.md); existing [Garadwal](../people/garadwal.md) already tracks related protector identity. | | Dothral / Aneurascarle / Squeall family and god-of-lost pact | [Minor Figures](../people/minor-figures-days-48-52.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and open thread. | | Bridget, Bridget's domain, Cedric, Medinner, raven-headed lady, Bridget's husband, honouring puzzles | Existing [Bridget's Doors](../concepts/bridgets-doors.md) updated; figures, places, and items rollups added. | | Dome destruction cancels pacts and releases all prisons | [Elemental Prisons](../concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/factions/brass-city-council.md b/data/6-wiki/factions/brass-city-council.md index a5474e9..f6b2f99 100644 --- a/data/6-wiki/factions/brass-city-council.md +++ b/data/6-wiki/factions/brass-city-council.md @@ -30,7 +30,7 @@ The Brass City Council were cursed into statues in the citadel. Trixus identifie ## Related Entries - [Brass City](../places/brass-city.md) -- [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) +- [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md) - [Trixus](../people/trixus.md) ## Open Questions diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index dd3703e..eb46485 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -128,7 +128,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md) - [Queen Mooncoral](people/queen-mooncoral.md) - [Lord Briarthorn](people/lord-briarthorn.md) -- [Hydran / Hydram](people/hydran.md) +- [Facets that Gleam in the Sun](people/facets-that-gleam-in-the-sun.md) +- [Hydran](people/hydran.md) - [Globule](people/globule.md) - [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md) - [Azar Nuri](people/azar-nuri.md) @@ -227,7 +228,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Items from Day 47](items/minor-items-day-47.md) - [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md) - [Minor Items from Days 53-56](items/minor-items-days-53-56.md) -- [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md) +- [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md) - [Minor Items from Day 57](items/minor-items-day-57.md) ## Concepts and Events diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index c24e379..e3031b3 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -77,7 +77,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | | One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hartwall auction. | | Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Elissa Hartwall wanted to see the party. | -| Sword, necklace, bowl, tongs, cat/light-cat, and tail statue artifacts | returned to Brass City statues/body | `day-57` | `data/4-days-cleaned/day-57.md` | Returned or used to restore Council/Tresmon body pieces; see [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | +| Sword, necklace, bowl, tongs, cat/light-cat, and tail statue artifacts | returned to Brass City statues/body | `day-57` | `data/4-days-cleaned/day-57.md` | Returned or used to restore Council/Tremon body pieces; see [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md). | ## Promised, Expected, or Pending diff --git a/data/6-wiki/items/minor-items-day-57.md b/data/6-wiki/items/minor-items-day-57.md index b4f3124..ac7e722 100644 --- a/data/6-wiki/items/minor-items-day-57.md +++ b/data/6-wiki/items/minor-items-day-57.md @@ -14,15 +14,15 @@ sources: | Infestus's wife's orb | Smashed to produce a tiny human transformed into a blue dragon. | Rollup. | | Weighted idols and jewellery | Statue-corridor items tied to gravity, weight, and Lord of the Brass City. | [Brass City Council](../factions/brass-city-council.md). | | Orbiting coin | Triggered Ignan phrase about helping say his name when picked up. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | -| Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tresmon, coal was wet, granite scorched, silver dragon matched Lady Evalina Hartwall / Mama Hartwall. | [Tresmon's Body and Statue Artifacts](tresmons-body-and-statue-artifacts.md). | +| Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tremon, coal was wet, granite scorched, silver dragon matched Lady Evalina Hartwall / Mama Hartwall. | [Tremon's Body and Statue Artifacts](tremons-body-and-statue-artifacts.md). | | Scroll of Fireball | Parchment found by Geldrin at the cat tavern table. | [Party Inventory](../inventories/party-inventory.md). | | Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Eliana](../people/eliana.md). | | Five altar candles and ten gold statues | Used in the round temple vision of five wizards, Hannah, and Icefang. | Rollup. | -| Moon crystal and tiny arm bone | Moon crystal motivated opening the moon door; tiny arm bone came through the wave door. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | +| Moon crystal and tiny arm bone | Moon crystal motivated opening the moon door; tiny arm bone came through the wave door. | [Tremon's Body](tremons-body-and-statue-artifacts.md). | | Founder's Day poster dated 17th March 991 | Showed Bleakstorm and a Geldrin look-alike; date was not Founding Day. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Ice auroch sculpture | Freshly carved on Bleakstorm's desk. | Rollup. | | Five-minute hourglass | Turned over by tabaxi pianist after necklace theft. | Rollup. | -| False necklaces | Theatre room decoys around the true necklace. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | +| False necklaces | Theatre room decoys around the true necklace. | [Tremon's Body](tremons-body-and-statue-artifacts.md). | | School biggening juice | Restored shrunken Geldrin from Eliana's waterskin. | Rollup. | | Rose of Reincarnation | White rose extending reincarnation time from ten days to one thousand years. | [Igraine](../people/igraine.md), [Party Inventory](../inventories/party-inventory.md). | | Sea conch | Released Myriad / Lord of the High Waters. | [Myriad / Lord of the High Waters](../people/myriad-lord-of-the-high-waters.md). | @@ -31,8 +31,8 @@ sources: | Bloodied knife | Display-case item in Noxia-linked rooms. | Rollup. | | Nine water-baby globes / pokeballs | Condensation-covered globes containing water elemental babies; Globule collected them and gave them to Dirk. | [Globule](../people/globule.md). | | Shells, pearls, and scorpion-symbol chains | Loot/symbols from killed jellyfish people, worth about 500 gp. | [Party Treasury](../inventories/party-treasury.md). | -| Contract to save babies' spirits | Parchment in Hydran's realm promising to save babies' spirits from the realm of darkness. | [Hydran / Hydram](../people/hydran.md). | -| Tongs | Given by Azar Nuri through bargain and returned to statue puzzle. | [Azar Nuri](../people/azar-nuri.md), [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | +| Contract to save babies' spirits | Parchment in Hydran's realm promising to save babies' spirits from the realm of darkness. | [Hydran](../people/hydran.md). | +| Tongs | Given by Azar Nuri through bargain and returned to statue puzzle. | [Azar Nuri](../people/azar-nuri.md), [Tremon's Body](tremons-body-and-statue-artifacts.md). | | Imp's cards and turban | Bought for 15A, rope, and tin of white paint. | [Party Inventory](../inventories/party-inventory.md). | | Refined goblet for `[uncertain: Stolchar]` | Invar made a goblet and received it refined. | Rollup. | | Past Brass City tapestries | Marketplace and hallway tapestries enabled time travel and return. | [Brass City](../places/brass-city.md). | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 55948aa..59a664b 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -28,7 +28,7 @@ sources: | Garadwal's feather, sending stones, magical scrolls, barrier opener / dome opener, barrier tools, Cardonald teleportation circles | Day-43 strategic resources. | Party Inventory / [Garadwal](../people/garadwal.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Hartwall old lab key, Geldrin's arcane Draconic teleport/seeing scroll, fruit and vegetables, wrestler throne cart | Day-44 opening resources. | Inventory/open threads. | | Head teacher necklace, picture chest, sceptre key, alteration/empathy orb, note `mine felt right here yours is under real` | Old school office clues. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md), inventory/open thread. | -| Dunner-style pot and food, ancient dragon scroll, Ruby Eye self-reincarnation spell, student robes, Hammerguard embroidery | Old school social/classroom items. | Rollup; inventory where custody unclear. | +| Dunnen-style pot and food, ancient dragon scroll, Ruby Eye self-reincarnation spell, student robes, Hammerguard embroidery | Old school social/classroom items. | Rollup; inventory where custody unclear. | | Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, janitor's broom, cursed/uncursed healing potions, green liquid / possible Noxia blood | Day-44 books and route/curse items. | [Bleakstorm](../places/bleakstorm.md), [Noxia](../people/noxia.md), inventory/open thread. | | Reborn stone, black crystal door, power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, waterwheel blueprints, Larn chain and cat collars | Room above Air common room and Goldenfields quarters. | Rollup/open threads. | | Coloured conjuration objects, pixie object, Treamon's-skull core, Mr Moreley's smoke sphere, draconic book for Ruby Eye, baby sphinx picture | Conjuration and Mr Moreley clues. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](void-spheres.md). | diff --git a/data/6-wiki/items/minor-items-days-48-52.md b/data/6-wiki/items/minor-items-days-48-52.md index f804519..c101b15 100644 --- a/data/6-wiki/items/minor-items-days-48-52.md +++ b/data/6-wiki/items/minor-items-days-48-52.md @@ -11,7 +11,7 @@ sources: | Item or Resource | Day | Notes | Coverage | | --- | --- | --- | --- | | Movable poison weapon | 48 | Familiar poison weapon with alchemical base, breath-weapon qualities, herbs, and scorpion venom; wound healed but would not close. | Rollup. | -| Uncovered prophecy texts | 48 | Dunners connected Benu's convalescence, the child's return, and Garadwal's misdeeds. | Rollup / [Garadwal](../people/garadwal.md). | +| Uncovered prophecy texts | 48 | Dunnen people connected Benu's convalescence, the child's return, and Garadwal's misdeeds. | Rollup / [Garadwal](../people/garadwal.md). | | Verdigrim trade terms | 48 | Possible agreement involving Ashkielion, Verdigrimtown, land, payment, and five white raiding forces. | [Verdigrim](../people/verdigrim.md). | | Lava elemental orb | 48 | Humongous lava orb, possibly prisoner, kept safe by dwarf prayers and Invar's offering. | [Elemental Prisons](../concepts/elemental-prisons.md). | | Rubyeye charges | 48 | 174,312 herfolk babies murdered, elemental spirit entrapment, tower construction, ancient-race downfall. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | diff --git a/data/6-wiki/items/shield-crystals.md b/data/6-wiki/items/shield-crystals.md index 20aa793..4c2fde8 100644 --- a/data/6-wiki/items/shield-crystals.md +++ b/data/6-wiki/items/shield-crystals.md @@ -37,7 +37,7 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - Day 32 shows Xinquiss in Hartwall with a shield crystal; the party agreed to drop off a piece, and Wroth later helped hide the crystal through a trapdoor. - Day 57 Infestus's wife gave the party a powerful charged shield crystal and scrolls before sending them to Brass City. - Day 57 Brass City lore says a body was being crafted out of shield crystal as a focusing crystal and stored in one of the four great minarets. -- Day 57 an Earth-plane table held a shield crystal identified as a piece of Tresmon. +- Day 57 an Earth-plane table held a shield crystal identified as a piece of Tremon. - Day 57 Envi's control over crystals and Azar Nuri's interest in the crystal body make shield crystals part of the current body/godhood threat. ## Timeline @@ -47,7 +47,7 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - `day-17`: Sea shield crystal becomes a priority. - `day-22`: The party fights at the underwater crystal site and recovers loot. - `day-32`: Xinquiss and Wroth hide a shield crystal piece in Hartwall while Justicars search for Xinquiss. -- `day-57`: Brass City reveals a shield-crystal body/focusing crystal, a Tresmon piece, and Envi's crystal control. +- `day-57`: Brass City reveals a shield-crystal body/focusing crystal, a Tremon piece, and Envi's crystal control. ## Related Entries @@ -61,4 +61,4 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - Are shield crystals batteries, regulators, keys, toxins, or all of these? - What is the underwater crystal's current status after the mission? - What shield-crystal piece did the party give or hide with Xinquiss, and why did the Justicars want him? -- Is the Brass City shield-crystal body a prison device, focusing crystal, godhood vessel, or body for Tresmon / Azar Nuri? +- Is the Brass City shield-crystal body a prison device, focusing crystal, godhood vessel, or body for Tremon / Azar Nuri? diff --git a/data/6-wiki/items/tresmons-body-and-statue-artifacts.md b/data/6-wiki/items/tremons-body-and-statue-artifacts.md similarity index 78% rename from data/6-wiki/items/tresmons-body-and-statue-artifacts.md rename to data/6-wiki/items/tremons-body-and-statue-artifacts.md index b51823e..56442af 100644 --- a/data/6-wiki/items/tresmons-body-and-statue-artifacts.md +++ b/data/6-wiki/items/tremons-body-and-statue-artifacts.md @@ -1,9 +1,8 @@ --- -title: Tresmon's Body and Statue Artifacts +title: Tremon's Body and Statue Artifacts type: item cluster aliases: - - Tresmun's body - - Tresmon's body + - Tremon's body - shield-crystal body - focusing crystal - Council statue artifacts @@ -13,16 +12,16 @@ sources: - data/4-days-cleaned/day-57.md --- -# Tresmon's Body and Statue Artifacts +# Tremon's Body and Statue Artifacts ## Summary -Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identified in places as Tresmun / Tresmon's body. Pieces and Council artifacts were scattered through plane rooms, memory doors, and realm puzzles. +Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identified in places as Tremon's body. Pieces and Council artifacts were scattered through plane rooms, memory doors, and realm puzzles. ## Known Pieces and Artifacts - Shield-crystal body: crafted in the citadel and stored in one of the four great minarets; described by a gem-cutter as not obviously a weapon. -- Shield crystal piece: found on an earth elemental's table and identified as a piece of Tresmon. +- Shield crystal piece: found on an earth elemental's table and identified as a piece of Tremon. - Moon / Brass City body shard: Geldrin found where a shard had come from and put it back, stabilizing the four memory doors. - Sword: found in Eliana's old Provista house in a box from Everchard and returned to a cracked statue. - Necklace: the real `Drinker beads of wine` necklace was found after false versions and invisibility tricks, then returned to its statue. @@ -30,7 +29,7 @@ Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identif - Tongs: obtained from Sultan Azar Nuri through a dangerous bargain. - Cat / light-cat: sought through Igraine and Attabre realms; Morgana brought back a dead or uncertain cat through animal/bird channeling. - Tail: found after entering the death realm and freed with help from Globule; returning it restored at least one live tabaxi Council member. -- Envi has Tresmun's arm according to Azar Nuri. +- Envi has Tremon's arm according to Azar Nuri. ## Related Entries @@ -43,6 +42,6 @@ Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identif ## Open Questions -- Is the shield-crystal body Tresmon, a body for Azar Nuri, a focusing device, or overlapping projects? +- Is the shield-crystal body Tremon, a body for Azar Nuri, a focusing device, or overlapping projects? - Why does Envi have the arm? - What happens when the crystal body is complete? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index c53d180..81c1167 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -226,7 +226,7 @@ sources: - What are Bluescale's truth-currency rules and location secrecy protecting? - Where are the red dragons or dragonborn Ember seeks, and why does Eliana smell of elf? - What full consequences follow from restoring the [Brass City Council](factions/brass-city-council.md), and which Council members or statue objects remain unresolved? -- What exactly is [Tresmon's body](items/tresmons-body-and-statue-artifacts.md), why is Envi holding the arm, and who is the crystal body ultimately being completed for? +- What exactly is [Tremon's body](items/tremons-body-and-statue-artifacts.md), why is Envi holding the arm, and who is the crystal body ultimately being completed for? - Can [Globule](people/globule.md), [Hydran](people/hydran.md), and [Queen Mooncoral](people/queen-mooncoral.md)'s people keep the freed merbabies safe from Kasha and Noxia? - What did [Azar Nuri](people/azar-nuri.md) gain from Geldrin's bargain, and what happens if his envoys reach the Mortal plane? - How do [Eliana](people/eliana.md) and [Lady Elissa Hartwall](people/lady-elissa-hartwall.md) relate across Hartwall family history, memory, and magical identity? diff --git a/data/6-wiki/people/anastasia.md b/data/6-wiki/people/anastasia.md index 4d044c6..790aa8b 100644 --- a/data/6-wiki/people/anastasia.md +++ b/data/6-wiki/people/anastasia.md @@ -29,7 +29,7 @@ Anastasia is a Goliath queen and resistance leader whose relationship with [Dirk - The party arranged a pincer movement on Vathkell with Anastasia and Dirk's father's army. - Anastasia sent her bird to Cardonald so Cardonald could come to the party for the teleportation circle to Riversmeet. - Dirk and Anastasia spent the night together and had a good night. -- On Day 46, a Dunner-door vision showed Anastasia chained while Lodest was surrounded by vulture men. +- On Day 46, a Dunnen-door vision showed Anastasia chained while Lodest was surrounded by vulture men. ## Relationship With Dirk diff --git a/data/6-wiki/people/anya-blakedurn.md b/data/6-wiki/people/anya-blakedurn.md index 7a6ab4c..8910532 100644 --- a/data/6-wiki/people/anya-blakedurn.md +++ b/data/6-wiki/people/anya-blakedurn.md @@ -20,7 +20,7 @@ Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa I - On `day-53`, Blakedurn represented the party before the dwarven council and questioned them about dragons, dragonborn, automatons, and gnomes. - Her ear had no worm, but the canal was wrong: too small and hairless. Dirk or Thamia determined she was not a Thamia. -- Her house had Sierra aspects and Dunner styling. +- Her house had Sierra aspects and Dunnen styling. - She confessed she was not a dwarf but a black dragon. - Anya Blakedurn is Infestus' daughter. - She wants the dwarves to succeed, but also wants personal rewards such as jewels. @@ -42,4 +42,4 @@ Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa I - How did Infestus build or obtain the Rubyeye-summoning device used by Blakedurn? - What exactly was the black smoke incident? - Does Blakedurn's plan to restore the Dwarven kingdoms align with the party's goals, or only with her own hoard and control interests? -- Why does her house include Sierra and Dunner styling? +- Why does her house include Sierra and Dunnen styling? diff --git a/data/6-wiki/people/azar-nuri.md b/data/6-wiki/people/azar-nuri.md index e855c79..d174e65 100644 --- a/data/6-wiki/people/azar-nuri.md +++ b/data/6-wiki/people/azar-nuri.md @@ -20,7 +20,7 @@ Azar Nuri is a massive horned fire-realm ruler who gave the party the tongs in e - His servants were red-skinned beings with small horns. - He sat fifty feet tall on a throne, wore a turban, and disliked Invar's symbol to `[uncertain: Stolchar]`. -- Envi works for him and has Tresmun's arm. +- Envi works for him and has Tremon's arm. - Azar Nuri lacks servants on the Mortal plane and struggles to get minions there. - He wants to take back his power, open passageways, and continue fixing the crystal body being carved for him or connected to him. - Geldrin's recorded bargain: tongs now; gold when the crystal is complete; force the god of death to make a mistake and appear on the party's plane; open a passageway for Azar Nuri's envoys. @@ -28,7 +28,7 @@ Azar Nuri is a massive horned fire-realm ruler who gave the party the tongs in e ## Related Entries - [Ennuyé](ennuyé.md) -- [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) +- [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md) - [Throngore](throngore.md) ## Open Questions diff --git a/data/6-wiki/people/dotharl.md b/data/6-wiki/people/dotharl.md index 12797e7..b642e27 100644 --- a/data/6-wiki/people/dotharl.md +++ b/data/6-wiki/people/dotharl.md @@ -5,7 +5,6 @@ aliases: - Dotharl - Dothral - Dothril - - Dothurl tags: - player-character player: Joshua @@ -25,7 +24,7 @@ sources: ## Summary -Dotharl, also recorded as Dothral, Dothril, and Dothurl, is a player character played by Joshua. His history is tied to awakened constructs, Bridget, Squeall, and elemental-prison lore. +Dotharl, also recorded as Dothral and Dothril, is a player character played by Joshua. His history is tied to awakened constructs, Bridget, Squeall, and elemental-prison lore. ## Known Details diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index 1452b6d..4a27c0f 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -59,9 +59,9 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - Thomas was Ennuyé's earlier name before he changed it. - Ruby Eye recruited Geldrin into a group including Everard, Thomas / Ennuyé, and Valenth around the eye-removal final project. - Day 47 identifies Hannah Joy as Ennuyé's erased wife and says a sentient door had brothers at Ennuyé's lab and `[unclear: aprosur]`. -- Day 48 says Rubyeye believed Ennuyé had a body stored somewhere, perhaps Goalmost Falls, and records infernal-like doorknob writing reminiscent of Ennuyé's lab. +- Day 48 says Rubyeye believed Ennuyé had a body stored somewhere, perhaps Coalmont Falls, and records infernal-like doorknob writing reminiscent of Ennuyé's lab. - Day 57 Hydran-realm carvings said Envi was free: his spirit reached his base, occupied an awakened body in his laboratory, gained power and control over crystals, and had captured the party's allies. His goal was unknown and he had not been near his other parts. -- Day 57 Azar Nuri said Envi works for him and has Tresmun's arm. +- Day 57 Azar Nuri said Envi works for him and has Tremon's arm. ## Timeline @@ -77,8 +77,8 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - `day-43`: Wroth's Envy-in-Mama-Hartwall account reframes Envy/Envi containment in minds. - `day-44`: Old-school scenes show Ennuyé / Thomas with Hannah, Ruby Eye, Everard, Valenth, and the tower expedition. - `day-47`: Hartwall lab memory rooms clarify Hannah Joy as Ennuyé's erased wife and point toward Ennuyé's lab. -- `day-48`: Rubyeye says Ennuyé has a body stored somewhere, possibly Goalmost Falls. -- `day-57`: Hydran's realm and Azar Nuri identify Envi as free, crystal-controlling, allied with or subordinate to Azar Nuri, and holding Tresmun's arm. +- `day-48`: Rubyeye says Ennuyé has a body stored somewhere, possibly Coalmont Falls. +- `day-57`: Hydran's realm and Azar Nuri identify Envi as free, crystal-controlling, allied with or subordinate to Azar Nuri, and holding Tremon's arm. ## Related Entries @@ -96,5 +96,5 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? - Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Lady Evalina Hartwall / Mama Hartwall? - What happened to Hannah Joy, and how does her erasure relate to Joy's survival? -- Where is Ennuyé's stored body, and is Goalmost Falls the right lead? -- Why does Envi have Tresmun's arm, and what does Azar Nuri expect him to do with it? +- Where is Ennuyé's stored body, and is Coalmont Falls the right lead? +- Why does Envi have Tremon's arm, and what does Azar Nuri expect him to do with it? diff --git a/data/6-wiki/people/facets-that-gleam-in-the-sun.md b/data/6-wiki/people/facets-that-gleam-in-the-sun.md new file mode 100644 index 0000000..c6a22b0 --- /dev/null +++ b/data/6-wiki/people/facets-that-gleam-in-the-sun.md @@ -0,0 +1,30 @@ +--- +title: Facets that Gleam in the Sun +type: person +aliases: + - Facets that Gleam in the Sun + - Facets that gleam in the sun +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Facets that Gleam in the Sun + +## Summary + +Facets that Gleam in the Sun is the tabaxi jeweller in Brass City who had been taken to work in the old-regime citadel. + +## Known Details + +- On Day 57, Facets said he had been taken to the citadel to cut a gem and was disappointed that he did not finish it. +- He explained that Brass City was a place of great elemental power, with fountains and similar features coming from the planes. +- He said the supposed great weapon was actually a shield-crystal body being crafted into a focusing crystal, stored in one of the four great minarets. +- Later, in the moon-door space, a salamander expected Facets and was trying to get light to go in but not out. + +## Related Entries + +- [Brass City](../places/brass-city.md) +- [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md) +- [Shield Crystals](../items/shield-crystals.md) diff --git a/data/6-wiki/people/globule.md b/data/6-wiki/people/globule.md index c9f90ed..0960eeb 100644 --- a/data/6-wiki/people/globule.md +++ b/data/6-wiki/people/globule.md @@ -17,7 +17,7 @@ Globule is a water entity found trapped in a whirlpool painting by Noxia. He bec ## Known Details -- Globule said Noxia trapped him because he worked for `Him`; when asked who, he said `Him, Hydram, then Noxia` and described `Him` as forgotten more than lost. +- Globule said Noxia trapped him because he worked for `Him`; when asked who, he said `Him, Hydran, then Noxia` and described `Him` as forgotten more than lost. - He had no arms or legs while trapped. - He warned the party not to free the Myriad / Lord of the High Waters, calling him a con artist imprisoned by Hydran. - He recognized that the party's false bowls were wrong and said the true bowl was stone, not metal. @@ -27,7 +27,7 @@ Globule is a water entity found trapped in a whirlpool painting by Noxia. He bec ## Related Entries -- [Hydran / Hydram](hydran.md) +- [Hydran](hydran.md) - [Myriad / Lord of the High Waters](myriad-lord-of-the-high-waters.md) - [Queen Mooncoral](queen-mooncoral.md) - [Noxia](noxia.md) diff --git a/data/6-wiki/people/hydran.md b/data/6-wiki/people/hydran.md index b25956f..4c6dde2 100644 --- a/data/6-wiki/people/hydran.md +++ b/data/6-wiki/people/hydran.md @@ -1,12 +1,9 @@ --- -title: Hydran / Hydram +title: Hydran type: god or powerful water patron aliases: - Hydran - - Hydram - Lord Hydran - - Hydraxia - - Hydrus first_seen: day-22 last_updated: day-57 sources: @@ -14,16 +11,16 @@ sources: - data/4-days-cleaned/day-57.md --- -# Hydran / Hydram +# Hydran ## Summary -Hydran or Hydram is a water patron associated with travel, merfolk, babies' spirits, the Pact, and water elementals. Day 57 made him central to freeing the merbabies and gaining merfolk support. +Hydran is a water patron associated with travel, merfolk, babies' spirits, the Pact, and water elementals. Day 57 made him central to freeing the merbabies and gaining merfolk support. ## Day 57 Details - A Brass City fountain water elemental said its father liked the merfolk but was annoyed by the purple thing and wanted babies fixed so they would go to him. -- The City of Aquarius welcomed Keepers of the Pact because Lord Hydram said they could come. +- The City of Aquarius welcomed Keepers of the Pact because Lord Hydran said they could come. - A merlady said Hydran said the party needed help and advised steering off the beaten path in the dark plane. - Hydran offered more information, the bowl, and Pact membership if the party signed the Pact. - Hydran had imprisoned the Myriad / Lord of the High Waters according to Globule. @@ -38,6 +35,5 @@ Hydran or Hydram is a water patron associated with travel, merfolk, babies' spir ## Open Questions -- Are Hydran, Hydram, Hydraxia, and Hydrus variants, relatives, or titles? - What was the `purple thing` annoying him? - Why did Hydran advise leaving the path while Throngore advised staying on it? diff --git a/data/6-wiki/people/igraine.md b/data/6-wiki/people/igraine.md index 047455d..93b08c3 100644 --- a/data/6-wiki/people/igraine.md +++ b/data/6-wiki/people/igraine.md @@ -34,7 +34,7 @@ Do not confuse the goddess Igraine with [Lady Igraine of Riversmeet](lady-igrain ## Related Entries - [Morgana](morgana.md) -- [Hydran / Hydram](hydran.md) +- [Hydran](hydran.md) - [Brass City](../places/brass-city.md) - [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md index c860d00..1112256 100644 --- a/data/6-wiki/people/infestus.md +++ b/data/6-wiki/people/infestus.md @@ -7,7 +7,7 @@ aliases: - bane of multitude - slayer of Ruby eye first_seen: day-14 -last_updated: day-56 +last_updated: day-57 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -17,6 +17,8 @@ sources: - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-55.md - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-57.md --- # Infestus @@ -37,6 +39,7 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - Two plots were named near the Ice prison: removing certain cities and breaking out Garadwal. - On Day 55, Wrath appeared as a black dragonborn fighting green dragons or Perodita's children and said basilisk coal at Coalmont Rally could teleport the party to Infestus. - On Day 56, the party reached Infestus through a Bluescale archway with strict rules, saw a museum curiosity from Keep Rememberence, and learned Infestus wanted to pay the party for deeds. The Great Infestus pub and Ember, a red dragonborn seeking news of red dragons and dragonborn, were part of this visit. +- Umberous is Infestus' son. On Day 48, Umberous spoke on Infestus' behalf at Salanar's prison, wanted Rubyeye delivered to Infestus, and bargained not to tell Infestus about Rubyeye in exchange for a favour. ## Timeline @@ -47,6 +50,7 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - `day-26`: Dirk's dream shows Infestus using a coin to send Garadwal through a portal. - `day-55`: Wrath points the party toward Infestus by basilisk coal. - `day-56`: The party visits Infestus through Bluescale and receives possible work or payment leads. +- `day-57`: Infestus's wife helps send the party to Brass City. ## Related Entries diff --git a/data/6-wiki/people/kasha.md b/data/6-wiki/people/kasha.md index 35b2337..7f8d10b 100644 --- a/data/6-wiki/people/kasha.md +++ b/data/6-wiki/people/kasha.md @@ -29,7 +29,7 @@ Kasha is a soul-associated power whose bargains and realm pressure matter to Gel ## Related Entries - [Throngore](throngore.md) -- [Hydran / Hydram](hydran.md) +- [Hydran](hydran.md) - [Eliana](eliana.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-day-46.md b/data/6-wiki/people/minor-figures-day-46.md index b36abaa..7f3c8b7 100644 --- a/data/6-wiki/people/minor-figures-day-46.md +++ b/data/6-wiki/people/minor-figures-day-46.md @@ -22,7 +22,7 @@ This rollup keeps one-off, uncertain, and supporting named figures from Day 46 s | Emeraldus | Wondered to be one of Garadwal's children during the Garadwal reincarnation sequence. | Rollup/open thread. | | Amoursorate | Linked to the scratched unlit orb and asked the party to look after her son. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | | Squeal | Source behind Errol's possession and Rubyeye-message confusion; asked for `the loss of everything` rather than weather through the Barrier. | Rollup/open thread. | -| Sierra, Lodest, Anastasia | Seen through a Dunner door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | [Anastasia](anastasia.md) / rollup/open thread. | +| Sierra, Lodest, Anastasia | Seen through a Dunnen door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | [Anastasia](anastasia.md) / rollup/open thread. | | Platinum | Cardonald's cat; warned that Errol was possessed by one of Squeal's things and headed toward Joshua. | Rollup/open thread. | | Dothral / Joshua | Construct- or soul-linked figure aware for twenty years; woke near Rhime watches after being propelled through a door. | Rollup/open thread. | | Chorus magpie | Landed on Morgana, said The Chorus sent it, and said the Chorus can now help. | [The Chorus](the-chorus.md) / rollup. | diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index 72ffe8c..7ddf853 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -32,7 +32,7 @@ sources: | Shotcher | Invar had difficulty connecting to Shotcher in the frost prison. | Rollup. | | Dorion, Tim, Geoffrey | Goat, bull, and lion heads on the snake door; Geoffrey wanted a new body. | Rollup and [Elemental Prisons](../concepts/elemental-prisons.md). | | Perodita | Geldrin's spellbook showed Perodita as a massive dragon with scorpion tail and insect-like wings. | Existing [Peridita](peridita.md) spelling cluster; rollup preserves Day 47 spelling. | -| Cindy | Sunsoreen resident in Dunner-coloured clothes; later tried for sedition, carrots, and spreading chaos. | [Sunsoreen Council](../factions/sunsoreen-council.md). | +| Cindy | Sunsoreen resident in Dunnen-coloured clothes; later tried for sedition, carrots, and spreading chaos. | [Sunsoreen Council](../factions/sunsoreen-council.md). | | Right Honourable Charming | Copper dragon judge in magistrate wig. | Sunsoreen rollup. | | Great Lorekeeper / Lorekeeper | Unavailable information source providing irrelevant but revealing trial questions. | [Sunsoreen Council](../factions/sunsoreen-council.md), [Open Threads](../open-threads.md). | | The Shadow | Wanted information via a TV orb / copper-dragon scene. | Rollup; unresolved. | diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 3248813..a7de21f 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -13,8 +13,9 @@ sources: | Salinas | 57 | Infestus could ensure Salinas caused no issues during the treaty/council context. | Rollup. | | Excellence of Air / Air | 57 | Left Brass City and never returned; Haze says Air went to the dome to make a trap for Sierra so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | | Envy | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envi/Envy remains uncertain. | [Ennuyé](ennuyé.md). | -| Hydraxia | 57 | Named by the fountain water elemental before being given to blue dragons; relation to Hydran uncertain. | [Hydran / Hydram](hydran.md). | +| Hydran | 57 | Named by the fountain water elemental before being given to blue dragons; same water patron later involved in merbaby rescue. | [Hydran](hydran.md). | | Lord of the Brass City | 57 | Associated with weighted idols, jewellery, gravity, and weight in the statue corridor. | [Brass City](../places/brass-city.md). | +| [Facets that Gleam in the Sun](facets-that-gleam-in-the-sun.md) | 57 | Tabaxi jeweller in Brass City; taken to the old-regime citadel to cut a gem and revealed the shield-crystal body / focusing crystal. | Standalone page. | | Goklhar | 57 | Possible high-priest reference near `Gleams in the first light`; spelling and identity uncertain. | Rollup. | | `Lies in the morning dew` | 57 | Prophet of the light, fine-dressed statue with book, rose, and brazier. | [Brass City Council](../factions/brass-city-council.md). | | Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | @@ -25,7 +26,7 @@ sources: | Rubyeye | 57 | Seen in vision removing his eye in a runed bathroom. | [Brutor Ruby Eye](brutor-ruby-eye.md). | | Hannah | 57 | Present at the vision round table with five wizards and Icefang. | Rollup / [Open Threads](../open-threads.md). | | Bleakstorm | 57 | In Provista/Town Hall with ice auroch sculpture; wanted the party to save him and free Icefang's spirit. | [Icefang](icefang.md). | -| [Dotharl](dotharl.md) / Dothurl | 57 | Entered paintings, cast See Invisibility, and was one of the ancestors' named jumpers. | Standalone player character page. | +| [Dotharl](dotharl.md) | 57 | Entered paintings, cast See Invisibility, and was one of the ancestors' named jumpers. | Standalone player character page. | | Nare | 57 | Thought Globule was dangerous. | Rollup. | | Kesha | 57 | Identified as Noxia's sister; Noxia replaced someone but Kesha did not. | [Noxia](noxia.md), [Kasha](kasha.md) because sister identities remain uncertain. | | Mourning | 57 | Bird/enforcer created by Morgana; imprisoned for creating funerals and killing people who cut down trees or killed rabbits. | [Igraine](igraine.md). | @@ -35,5 +36,5 @@ sources: | [uncertain: Shevolt] | 57 | Recognized Eliana in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Eliana](eliana.md). | | Fred | 57 | Fellow goat whom [uncertain: Shevolt] claimed he was there to free. | Rollup. | | Sjorra, Lam, [unclear: Ice?], Squwal, Bridske | 57 | Listed among gods/god-like names with counts beside some names. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | -| Water Bull / God Bull | 57 | Regained memories, defied Kasha, and wanted to take his realm back; could not enter sea water to get merbabies. | [Hydran / Hydram](hydran.md), [Throngore](throngore.md). | +| Water Bull / God Bull | 57 | Regained memories, defied Kasha, and wanted to take his realm back; could not enter sea water to get merbabies. | [Hydran](hydran.md), [Throngore](throngore.md). | | In'weo [uncertain] | 57 | Queen Mooncoral was asked to investigate where this uncertain figure goes. | [Queen Mooncoral](queen-mooncoral.md). | diff --git a/data/6-wiki/people/minor-figures-days-48-52.md b/data/6-wiki/people/minor-figures-days-48-52.md index a5d1d66..105417a 100644 --- a/data/6-wiki/people/minor-figures-days-48-52.md +++ b/data/6-wiki/people/minor-figures-days-48-52.md @@ -17,13 +17,14 @@ This rollup preserves named and name-like figures from Days 48 and 52 that do no | Courtwood | 48 | His "Musing" four days earlier anchors the timing around Worn, Errol, and Bynx. | Rollup. | | Worn | 48 | Killed four days earlier when Errol was fixed and Bynx was gained. | Rollup. | | Ingris | 48 | Dirk's sister, whom Dirk Sr told Dirk to see. | Standalone [Ingris](ingris.md). | -| Older Dunner elder / knower of flesh | 48 | Met the party on the word of Benu and cited uncovered prophecy texts. | Rollup. | +| Older Dunnen elder / knower of flesh | 48 | Met the party on the word of Benu and cited uncovered prophecy texts. | Rollup. | | Grimescale | 48 | Burly envoy for mighty Verdigrim. | [Verdigrim](verdigrim.md). | | Gravltooth | 48 | Old wizened envoy accompanying Grimescale. | [Verdigrim](verdigrim.md). | | Ingus | 48 | Asked to tell the council where the party was going with Wrath. | Rollup. | | Spindl | 48 | Rubyeye's auntie in the underground dwarven city; saw the party before and led them to Rubyeye. | Rollup / [Brutor Ruby Eye](brutor-ruby-eye.md). | +| Cardonald | 48 | Specifically not seen at Rubyeye's dome on page 251. | Rollup / [Valenth Cardonald](valenth-cardonald.md) uncertain relation. | | Dwarf High Priest | 48 | Wanted to arrest Wrath for existing and presided around Rubyeye's arrest context. | Rollup. | -| Umberous | 48 | Black dragonborn / dark-skinned humanoid at Salanar's prison, speaking for his father; bargained not to tell Infestus about Rubyeye in exchange for a favour. | Rollup / [Infestus](infestus.md). | +| Umberous | 48 | Black dragonborn / dark-skinned humanoid at Salanar's prison; Infestus' son, speaking for his father; bargained not to tell Infestus about Rubyeye in exchange for a favour. | Rollup / [Infestus](infestus.md). | | Ugarth Thunderfut | 48 | Dwarf statue plaque: slain by the demon Samuel. | Rollup. | | Borbor Thunderfut | 48 | Dwarf statue plaque: saw Samuel slain by Struct. | Rollup. | | Lhura Trutbrow | 48 | Dwarf statue plaque: slain by Struct but bound in chain upon him. | Rollup. | diff --git a/data/6-wiki/people/myriad-lord-of-the-high-waters.md b/data/6-wiki/people/myriad-lord-of-the-high-waters.md index d0f1971..7d6784f 100644 --- a/data/6-wiki/people/myriad-lord-of-the-high-waters.md +++ b/data/6-wiki/people/myriad-lord-of-the-high-waters.md @@ -31,7 +31,7 @@ Myriad, the Lord of the High Waters, appeared from a conch in Morgana's hut-like ## Related Entries - [Globule](globule.md) -- [Hydran / Hydram](hydran.md) +- [Hydran](hydran.md) - [Igraine](igraine.md) ## Open Questions diff --git a/data/6-wiki/people/queen-mooncoral.md b/data/6-wiki/people/queen-mooncoral.md index 1d9c0aa..b68b536 100644 --- a/data/6-wiki/people/queen-mooncoral.md +++ b/data/6-wiki/people/queen-mooncoral.md @@ -26,7 +26,7 @@ Queen Mooncoral is a merfolk queen who arrived in Brass City after the party fre ## Related Entries -- [Hydran / Hydram](hydran.md) +- [Hydran](hydran.md) - [Globule](globule.md) - [Brass City](../places/brass-city.md) - [The Pact](../factions/the-pact.md) diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 1af6d3c..615edad 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -135,7 +135,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | | Snowsorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | The Basilisk reported all contact lost with Snowsorrow and Perens going missing. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | missing / possibly off-plane | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Joy warned `they've got him`; after Ashkellon Ruby Eye was missing, out of Bleakstorm's sight, and Cardonald could not find him. | -| [Ennuyé](ennuyé.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tresmun's arm. | +| [Ennuyé](ennuyé.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tremon's arm. | | Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | | Steven / Steve | missing from barrier after confrontation | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Thromgore's boy had helped contain Valentenhide and wanted to `Bob stuff`; later no longer in his barrier. | | [Errol the Obsidian Raven](errol.md) | party companion; formerly missing / possibly off-plane | `data/4-days-cleaned/day-43.md`, `data/4-days-cleaned/day-46.md`, `data/4-days-cleaned/day-48.md`, `data/4-days-cleaned/day-57.md` | Cardonald could not find Ruby Eye or Errol, perhaps because they were not on the same plane. Errol later returned altered, was fixed, continued carrying messages, and becomes a party companion. | diff --git a/data/6-wiki/people/throngore.md b/data/6-wiki/people/throngore.md index d58bba5..bf87d59 100644 --- a/data/6-wiki/people/throngore.md +++ b/data/6-wiki/people/throngore.md @@ -32,7 +32,7 @@ Throngore is a death-realm or darkness-associated power linked to goat men, pris ## Related Entries -- [Hydran / Hydram](hydran.md) +- [Hydran](hydran.md) - [Kasha](kasha.md) - [Lord Briarthorn](lord-briarthorn.md) - [Elemental Prisons](../concepts/elemental-prisons.md) diff --git a/data/6-wiki/people/verdigrim.md b/data/6-wiki/people/verdigrim.md index 4a2a7d9..b9a79d1 100644 --- a/data/6-wiki/people/verdigrim.md +++ b/data/6-wiki/people/verdigrim.md @@ -15,12 +15,12 @@ sources: ## Summary -Verdigrim / Verdugrim is a dragon-family figure or ruler tied to the Goliath/Dunner conflict around Ashkielion and Verdigrimtown. +Verdigrim / Verdugrim is a dragon-family figure or ruler tied to the Goliath/Dunnen conflict around Ashkielion and Verdigrimtown. ## Known Details - Earlier dragon-family intelligence named Verdigrim / Verdugrim among Peridita / Lortesh-related dragon figures. -- On `day-48`, the party sought diplomacy with Verdigrim after Dunners, goliaths, and merfolk debated whether to attack, sneak, negotiate, or leave. +- On `day-48`, the party sought diplomacy with Verdigrim after Dunnen people, goliaths, and merfolk debated whether to attack, sneak, negotiate, or leave. - Verdigrim's envoys included Grimescale and Gravltooth. - His people said their lands had been theirs for one thousand years but were no longer theirs, and that Ashkielion now belonged to the goliaths. - Verdigrim occupied or claimed "Verdigrimtown" and wanted what was already his. diff --git a/data/6-wiki/places/brass-city.md b/data/6-wiki/places/brass-city.md index 749517a..95c6256 100644 --- a/data/6-wiki/places/brass-city.md +++ b/data/6-wiki/places/brass-city.md @@ -29,7 +29,8 @@ Brass City is a formerly enslaved elemental city whose current rulers are descri - A rebellion began when slaves wanted bread and were denied it; protestors burst into flames. - The Excellence of Air left and never returned; tower creatures became unruly after that. - The citadel contains air elementals, a control room that can touch multiple planes, realm doors, and Council statues that can be restored by returning missing objects or body pieces. -- Four great minarets hold or relate to a shield-crystal focusing body, possibly Tresmon's body. +- Facets that Gleam in the Sun, a tabaxi jeweller, had been taken to the citadel to cut a gem and revealed that the supposed great weapon was a shield-crystal body or focusing crystal. +- Four great minarets hold or relate to a shield-crystal focusing body, possibly Tremon's body. - A past version of Brass City showed blue dragonborn and dragons, a market, palace access by invitation, and a dragon/serpent tapestry-maker working from visions after Igraine visited. - After the party restored the tail, stone casing broke away from at least one statue and revealed live tabaxi. The restored king asked how long they had been stone. - A priestess was expected to guide the party to Cardonald the next day at 12:30. @@ -37,10 +38,11 @@ Brass City is a formerly enslaved elemental city whose current rulers are descri ## Related Entries - [Brass City Council](../factions/brass-city-council.md) -- [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) +- [Facets that Gleam in the Sun](../people/facets-that-gleam-in-the-sun.md) +- [Tremon's Body and Statue Artifacts](../items/tremons-body-and-statue-artifacts.md) - [Attabre](../people/attabre.md) - [Trixus](../people/trixus.md) -- [Hydran / Hydram](../people/hydran.md) +- [Hydran](../people/hydran.md) ## Open Questions diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index 25dc2d7..a9c64d4 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -11,15 +11,15 @@ sources: |---|---|---| | Black Dragon City in the Underblame | Day 57 starts there before Infestus's wife sends the party onward. | Rollup / [Infestus](../people/infestus.md). | | Gaol | Brass City contact said Valenth could be sought at the citadel or Gaol. | Rollup. | -| Four great minarets | Store or relate to the shield-crystal focusing body and unruly tower creatures. | [Brass City](brass-city.md), [Tresmon's Body](../items/tresmons-body-and-statue-artifacts.md). | +| Four great minarets | Store or relate to the shield-crystal focusing body and unruly tower creatures. | [Brass City](brass-city.md), [Tremon's Body](../items/tremons-body-and-statue-artifacts.md). | | Harn? tavern | Tavern-like cat space reached through an Earth-plane door; a ghost carrying sword and shield was not welcome. | Rollup. | | Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to the Lady Evalina Hartwall / Mama Hartwall and Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Craters Edge | Seen through the moon door; Dirk heard garbled conversations. | Rollup. | | Pine Springs | Dragon door memory of snow, pine trees, baby dragonborn, and a robed figure with a broom. | Rollup. | | Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana](../people/eliana.md). | -| City of Aquarius | Mother-of-pearl palace where Keepers of the Pact were welcome by Lord Hydram's permission. | [Hydran / Hydram](../people/hydran.md). | +| City of Aquarius | Mother-of-pearl palace where Keepers of the Pact were welcome by Lord Hydran's permission. | [Hydran](../people/hydran.md). | | Morgana's dead-tree hut | Painting realm with dead Everchard trees, birds, white rose, conch, and offering bowl. | [Igraine](../people/igraine.md). | -| Hydran's realm | Reached through the `Submarine` door; held the contract to save babies' spirits and carvings about Envi, Noxia, and Morgana. | [Hydran / Hydram](../people/hydran.md). | +| Hydran's realm | Reached through the `Submarine` door; held the contract to save babies' spirits and carvings about Envi, Noxia, and Morgana. | [Hydran](../people/hydran.md). | | Fire realm / Azar Nuri's palace | Broken throne room and fire garden ruled by Sultan Azar Nuri. | [Azar Nuri](../people/azar-nuri.md). | | Past Brass City | Lively Mortal-plane version of Brass City with blue dragonborn, dragons, market, palace, and tapestry-maker. | [Brass City](brass-city.md). | | Igraine's field | Flowered possible afterlife where Morgana could speak with plants and retrieved the cat through animals/birds. | [Igraine](../people/igraine.md). | diff --git a/data/6-wiki/places/minor-places-days-48-52.md b/data/6-wiki/places/minor-places-days-48-52.md index e16c9f1..2654a7a 100644 --- a/data/6-wiki/places/minor-places-days-48-52.md +++ b/data/6-wiki/places/minor-places-days-48-52.md @@ -14,7 +14,7 @@ sources: | Cave-network entrances | 48 | Main cliff entrance nine miles away plus hidden entrances under shrub, behind rock, poison door, and in ground. | Rollup / strategic notes. | | Ashkielion | 48 | Claimed by goliaths; part of Verdigrim diplomacy and relocation plan. | [Verdigrim](../people/verdigrim.md). | | Verdigrimtown | 48 | Verdigrim's claimed town / land. | [Verdigrim](../people/verdigrim.md). | -| Verdigrim's tunnels and throne room | 48 | Dunner-style throne room in very dark stone and copper accents. | [Verdigrim](../people/verdigrim.md). | +| Verdigrim's tunnels and throne room | 48 | Dunnen-style throne room in very dark stone and copper accents. | [Verdigrim](../people/verdigrim.md). | | Huge underground dwarven city | 48 | Site with lava orb, dwarf king, Spindl, Rubyeye's arrest, and ancient charges. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md) / rollup. | | Lava-orb chamber | 48 | Held a humongous elemental lava orb / prisoner. | [Elemental Prisons](../concepts/elemental-prisons.md). | | Salanar's prison | 48 | Teleport destination where Umberous locked the party in and bargained over Rubyeye. | Rollup. | diff --git a/data/6-wiki/places/minor-places-days-53-56.md b/data/6-wiki/places/minor-places-days-53-56.md index 2cffa5c..b54df30 100644 --- a/data/6-wiki/places/minor-places-days-53-56.md +++ b/data/6-wiki/places/minor-places-days-53-56.md @@ -12,7 +12,7 @@ sources: - Bridget's domain return point: route that sent the party back near Papa Illmarne's dome at the start of Day 53. - Dwarven council chamber: room where Calthid Metalshaper, Tussil Pebblegrinder, Trinchel Rhinebeard, Grunged Thundersinger, and Anya Blakedurn heard the party. -- Blakedurn's house: oddly repaired house with Sierra and Dunner styling, where Blakedurn confessed she was a black dragon. +- Blakedurn's house: oddly repaired house with Sierra and Dunnen styling, where Blakedurn confessed she was a black dragon. - Damaged city door: city approach with blood outside and building damage where Morgana found a lone dwarf / llamia. - Convoy route and bridge-side battlefield: Day 54 site where invisible attackers, elementals, Grimcrag prisoners, poison barrels, and explosives converged. - Perodita's narrow passages: confined Magstein approach where the party trapped and killed Perodita with explosives, Wall of Force, and Walls of Fire. diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 93d3ad3..c21e918 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -98,7 +98,7 @@ sources: - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Everard Browning](people/everard-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Lam](people/lam.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Facets that Gleam in the Sun](people/facets-that-gleam-in-the-sun.md), [Hydran](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Lam](people/lam.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tremon's Body and Statue Artifacts](items/tremons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index cf9d8c2..c121bc3 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -100,4 +100,4 @@ sources: - `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. - `day-55`: The party fights through Magstein / Grimcrag, learns Merocole has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. - `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become Envy, confronts Justicars and [Everard Browning](people/everard-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. -- `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tresmon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Lady Elissa Hartwall identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. +- `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tremon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Lady Elissa Hartwall identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. -
56a0f40Upload files to "data/7-reference-images"by lady.serina
.../The party head to the Brass City.PNG | Bin 0 -> 2414205 bytes 1 file changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/7-reference-images/The party head to the Brass City.PNG b/data/7-reference-images/The party head to the Brass City.PNG new file mode 100644 index 0000000..a051ea2 Binary files /dev/null and b/data/7-reference-images/The party head to the Brass City.PNG differ -
c998e36Upload files to "data/7-reference-images"by lady.serina
data/7-reference-images/Torisle Point.PNG | Bin 0 -> 661215 bytes 1 file changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/7-reference-images/Torisle Point.PNG b/data/7-reference-images/Torisle Point.PNG new file mode 100644 index 0000000..93a7c15 Binary files /dev/null and b/data/7-reference-images/Torisle Point.PNG differ -
99b9723Upload files to "data/7-reference-images"by lady.serina
data/7-reference-images/Salvation.PNG | Bin 0 -> 574239 bytes .../The party bath in Dunnensend.PNG | Bin 0 -> 655414 bytes data/7-reference-images/The party in Freeport.PNG | Bin 0 -> 533581 bytes data/7-reference-images/The party.PNG | Bin 0 -> 519453 bytes 4 files changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/7-reference-images/Salvation.PNG b/data/7-reference-images/Salvation.PNG new file mode 100644 index 0000000..2c033b9 Binary files /dev/null and b/data/7-reference-images/Salvation.PNG differ diff --git a/data/7-reference-images/The party bath in Dunnensend.PNG b/data/7-reference-images/The party bath in Dunnensend.PNG new file mode 100644 index 0000000..bba157e Binary files /dev/null and b/data/7-reference-images/The party bath in Dunnensend.PNG differ diff --git a/data/7-reference-images/The party in Freeport.PNG b/data/7-reference-images/The party in Freeport.PNG new file mode 100644 index 0000000..c4fc887 Binary files /dev/null and b/data/7-reference-images/The party in Freeport.PNG differ diff --git a/data/7-reference-images/The party.PNG b/data/7-reference-images/The party.PNG new file mode 100644 index 0000000..9e042e3 Binary files /dev/null and b/data/7-reference-images/The party.PNG differ -
83aef6aUpload files to "data/7-reference-images"by lady.serina
data/7-reference-images/Everchard.PNG | Bin 0 -> 705954 bytes data/7-reference-images/Fairport.PNG | Bin 0 -> 625483 bytes data/7-reference-images/Freeport.PNG | Bin 0 -> 699608 bytes data/7-reference-images/Hartwall.PNG | Bin 0 -> 717884 bytes 4 files changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/7-reference-images/Everchard.PNG b/data/7-reference-images/Everchard.PNG new file mode 100644 index 0000000..dd01404 Binary files /dev/null and b/data/7-reference-images/Everchard.PNG differ diff --git a/data/7-reference-images/Fairport.PNG b/data/7-reference-images/Fairport.PNG new file mode 100644 index 0000000..485a6fa Binary files /dev/null and b/data/7-reference-images/Fairport.PNG differ diff --git a/data/7-reference-images/Freeport.PNG b/data/7-reference-images/Freeport.PNG new file mode 100644 index 0000000..8bd2d43 Binary files /dev/null and b/data/7-reference-images/Freeport.PNG differ diff --git a/data/7-reference-images/Hartwall.PNG b/data/7-reference-images/Hartwall.PNG new file mode 100644 index 0000000..f05a5ed Binary files /dev/null and b/data/7-reference-images/Hartwall.PNG differ -
113b27bUpload files to "data/7-reference-images"by lady.serina
data/7-reference-images/Baytail Accord.PNG | Bin 0 -> 605761 bytes data/7-reference-images/Coalmont Falls.PNG | Bin 0 -> 621975 bytes .../Dirk and Geldrin in Everchard.PNG | Bin 0 -> 700641 bytes data/7-reference-images/Dunnensend.PNG | Bin 0 -> 829403 bytes .../Eliana and Invar in Everchard.PNG | Bin 0 -> 398594 bytes 5 files changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/7-reference-images/Baytail Accord.PNG b/data/7-reference-images/Baytail Accord.PNG new file mode 100644 index 0000000..27ab796 Binary files /dev/null and b/data/7-reference-images/Baytail Accord.PNG differ diff --git a/data/7-reference-images/Coalmont Falls.PNG b/data/7-reference-images/Coalmont Falls.PNG new file mode 100644 index 0000000..e2eb98a Binary files /dev/null and b/data/7-reference-images/Coalmont Falls.PNG differ diff --git a/data/7-reference-images/Dirk and Geldrin in Everchard.PNG b/data/7-reference-images/Dirk and Geldrin in Everchard.PNG new file mode 100644 index 0000000..ece75f8 Binary files /dev/null and b/data/7-reference-images/Dirk and Geldrin in Everchard.PNG differ diff --git a/data/7-reference-images/Dunnensend.PNG b/data/7-reference-images/Dunnensend.PNG new file mode 100644 index 0000000..47c04b5 Binary files /dev/null and b/data/7-reference-images/Dunnensend.PNG differ diff --git a/data/7-reference-images/Eliana and Invar in Everchard.PNG b/data/7-reference-images/Eliana and Invar in Everchard.PNG new file mode 100644 index 0000000..328906c Binary files /dev/null and b/data/7-reference-images/Eliana and Invar in Everchard.PNG differ -
006426dErrol etcby Laura Mostert
data/2-pages/325.txt | 2 +- data/2-pages/326.txt | 2 +- data/2-pages/81.txt | 2 +- data/2-pages/92.txt | 2 +- data/2-pages/96.txt | 2 +- data/2-pages/98.txt | 2 +- data/3-days/day-25.md | 2 +- data/3-days/day-27.md | 6 +-- data/4-days-cleaned/day-25.md | 4 +- data/4-days-cleaned/day-27.md | 10 ++--- data/5-retrospective/errol-party-companion.md | 5 +++ data/6-wiki/aliases.md | 4 +- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/day-57-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- data/6-wiki/index.md | 2 + data/6-wiki/open-threads.md | 2 +- data/6-wiki/people/attabre.md | 3 ++ data/6-wiki/people/brutor-ruby-eye.md | 4 +- data/6-wiki/people/dirk.md | 1 + data/6-wiki/people/errol.md | 58 ++++++++++++++++++++++++++ data/6-wiki/people/ingris.md | 35 ++++++++++++++++ data/6-wiki/people/minor-figures-days-23-31.md | 8 ++-- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- data/6-wiki/people/minor-figures-days-48-52.md | 2 +- data/6-wiki/people/status.md | 2 +- data/6-wiki/places/salvation.md | 2 +- 27 files changed, 138 insertions(+), 32 deletions(-)Show diff
diff --git a/data/2-pages/325.txt b/data/2-pages/325.txt index 1c0ecf0..6a77e50 100644 --- a/data/2-pages/325.txt +++ b/data/2-pages/325.txt @@ -8,7 +8,7 @@ Arrive on target, go through Barrier. Bring Valenth, Briarthorn, and Bynx with u Transport via plants to get to Tradesmalls. See some large greenish copper dragonborns around with the Goliaths and Dunnens. -Go to Dikk's family tent. His sister is there and welcomes Dikk and immediately looks for Bynx. +Go to Dirk's family tent. Ingris, his sister, is there and welcomes Dirk and immediately looks for Bynx. Lots of new structures around looking to belong to the banished. Head to main tent; one of each guarding the tent: dragonborn, Dunnen, Goliath. diff --git a/data/2-pages/326.txt b/data/2-pages/326.txt index fc9c8b0..1afb12d 100644 --- a/data/2-pages/326.txt +++ b/data/2-pages/326.txt @@ -8,7 +8,7 @@ Using Errol's to communicate, found another one to add to the collection. Dunnens: Bone has returned, paid his penance, accompanied by Garadwal. Vulture people integrating well into the city. If going well after three years, they will be accepted as part of the Dunnens. -Get a sending stone for Dikk's dad. +Get a sending stone for Dirk's dad. Teleport to Hathwall's lab. Door out of teleport room is blocked. Hear running down the corridor, running away. Door towards the caved-in area is open and planks where they went. diff --git a/data/2-pages/81.txt b/data/2-pages/81.txt index 9e89e4c..74a234c 100644 --- a/data/2-pages/81.txt +++ b/data/2-pages/81.txt @@ -23,7 +23,7 @@ Day 25 (Friday) 5 days to Autumn Coalment -Head down to Ice prison on Ice fangs back +Head down to Ice prison on Icefang's back As we pass Snow sorrow it starts to get very stormy. - Approach Rimewatch - outpost around the pylon diff --git a/data/2-pages/92.txt b/data/2-pages/92.txt index 0eb3a40..df09b00 100644 --- a/data/2-pages/92.txt +++ b/data/2-pages/92.txt @@ -46,5 +46,5 @@ Go to the bathhouse 16:00 Back to the court. -Father Haithes [uncertain] laden lots of copper earrings. copper marygal chain (God of Altarrb) +Father Haithes [uncertain] laden lots of copper earrings. copper marygal chain (God of Attabre) Mother - Human Dunar Lady - Egraine Brook (goddess of life fertility Harvest) diff --git a/data/2-pages/96.txt b/data/2-pages/96.txt index 8dd5047..619c33b 100644 --- a/data/2-pages/96.txt +++ b/data/2-pages/96.txt @@ -47,4 +47,4 @@ attacked (sisters = potential new mothers) [side note box] Mother - Igraine life (pleasure & harvest) -Father - Altarrb +Father - Attabre diff --git a/data/2-pages/98.txt b/data/2-pages/98.txt index 01a87ac..8e91e37 100644 --- a/data/2-pages/98.txt +++ b/data/2-pages/98.txt @@ -23,7 +23,7 @@ as the one from Gelissa but not the same. leave - Message The Basilisk - asking if she should have it or if we should retrieve it? -Eroll returns - Dirk's sister - Dad not available please +Eroll returns - Ingris, Dirk's sister - Dad not available please come to Salvation we need help. The Basilisk return message - how do you find these diff --git a/data/3-days/day-25.md b/data/3-days/day-25.md index 9e29641..19dcd03 100644 --- a/data/3-days/day-25.md +++ b/data/3-days/day-25.md @@ -22,7 +22,7 @@ Day 25 (Friday) 5 days to Autumn Coalment -Head down to Ice prison on Ice fangs back +Head down to Ice prison on Icefang's back As we pass Snow sorrow it starts to get very stormy. - Approach Rimewatch - outpost around the pylon diff --git a/data/3-days/day-27.md b/data/3-days/day-27.md index a1b3bf0..832bbd3 100644 --- a/data/3-days/day-27.md +++ b/data/3-days/day-27.md @@ -97,7 +97,7 @@ Go to the bathhouse 16:00 Back to the court. -Father Haithes [uncertain] laden lots of copper earrings. copper marygal chain (God of Altarrb) +Father Haithes [uncertain] laden lots of copper earrings. copper marygal chain (God of Attabre) Mother - Human Dunar Lady - Egraine Brook (goddess of life fertility Harvest) ## Page 93 @@ -261,7 +261,7 @@ attacked (sisters = potential new mothers) [side note box] Mother - Igraine life (pleasure & harvest) -Father - Altarrb +Father - Attabre ## Page 97 @@ -319,7 +319,7 @@ as the one from Gelissa but not the same. leave - Message The Basilisk - asking if she should have it or if we should retrieve it? -Eroll returns - Dirk's sister - Dad not available please +Eroll returns - Ingris, Dirk's sister - Dad not available please come to Salvation we need help. The Basilisk return message - how do you find these diff --git a/data/4-days-cleaned/day-25.md b/data/4-days-cleaned/day-25.md index a35e9ad..03a59c8 100644 --- a/data/4-days-cleaned/day-25.md +++ b/data/4-days-cleaned/day-25.md @@ -10,7 +10,7 @@ complete: true # Narrative -Day 25 was Friday, 10th Tan 101, with 9 days to Arrynoon and 5 days to Autumn. The party was at Coalment and headed down to the Ice prison on Ice Fang's back. As they passed Snowsorrow, the weather became very stormy. +Day 25 was Friday, 10th Tan 101, with 9 days to Arrynoon and 5 days to Autumn. The party was at Coalment and headed down to the Ice prison on Icefang's back. As they passed Snowsorrow, the weather became very stormy. They approached Rimewatch, an outpost around the pylon, and then headed to the town. The town was in a much worse state than when they had left. A white dragonborn took them to the inn. @@ -28,7 +28,7 @@ When shown Salina's runes, the party learned that they needed to go back to Enwi Coalment, Snowsorrow, Rimewatch, the pylon, the town, the inn, the Ice prison, the Howling Tombs, Grand Tower, Rubyeye's lab, Enwi's lab, Enwi's basement, the control room, and Arasarath's prison were all mentioned. -Ice Fang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Dunnen's mage, Garadwal, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadwal's people, Salina, Enwi, and three automations were all mentioned. +Icefang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Dunnen's mage, Garadwal, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadwal's people, Salina, Enwi, and three automations were all mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-27.md b/data/4-days-cleaned/day-27.md index f3b410a..42ab453 100644 --- a/data/4-days-cleaned/day-27.md +++ b/data/4-days-cleaned/day-27.md @@ -27,7 +27,7 @@ Many deaths had occurred in the city. Vulturemen, Arahuoa, were mentioned, along The Father held open courts, usually as the heat cooled off. The court included Father, Mother, Hearth Master, and Huntsmistress. A little girl with an afro approached and said her mum told her to be careful of dragons, a message that seemed intended to scare her off. At 14:00, the court was expected around 4pm, and the party could get an appointment if they were agents of the excellence, meaning Infestus. -Guards dragged a vulture bird-man into the courtyard. He was apparently one of the assassins lurking in the deserts and may have killed the Chancellor. The party went to the bathhouse, then returned to court at 16:00. Father Haithes [uncertain] wore many copper earrings and a copper marygal chain associated with the God of Altarrb. Mother was a human Dunar lady named Egraine Brook, associated with the goddess of life, fertility, and harvest. +Guards dragged a vulture bird-man into the courtyard. He was apparently one of the assassins lurking in the deserts and may have killed the Chancellor. The party went to the bathhouse, then returned to court at 16:00. Father Haithes [uncertain] wore many copper earrings and a copper marygal chain associated with the God of Attabre. Mother was a human Dunar lady named Egraine Brook, associated with the goddess of life, fertility, and harvest. The Father said they had captured one of the assassins and believed him to be the murderer. The party went through to an atrium or court area and joined the queue. The Hearth Master had flames for hair. The Huntsmistress had red braided into her hair and dogs dyed red. The party became known as "The Slayers". @@ -49,7 +49,7 @@ There were many spiders around. The party thought the imprisoned being under Gra The guards were allowed to go home. Two guards stayed at the palace entrance, others guarded Mother and Father, and everyone was on high alert. At 17:50, the party went walking and told the Huntsmistress about the bugs and the likelihood that more than one thing was going on. Geldrin could use his compass to detect the automatons. The Huntsmistress was not one. Two guards on the gate were not. The party checked priests in the temple; they were wearing armour despite the boiling heat. Three priests and Duners gave no reading. -Huntsman Indanyu, second in command, went to another room to talk. A broken bowstring was in the room. The party told Indanyu about things; he had not heard anything, but the people were talking about the murders. His attacked sisters were potential new mothers. A side note identifies Mother as Igraine, life, pleasure, and harvest, and Father as Altarrb. +Huntsman Indanyu, second in command, went to another room to talk. A broken bowstring was in the room. The party told Indanyu about things; he had not heard anything, but the people were talking about the murders. His attacked sisters were potential new mothers. A side note identifies Mother as Igraine, life, pleasure, and harvest, and Father as Attabre. A week earlier, about three shops had been turned over, with nothing taken, out of about ten shops in total. Fire creatures seemed to have made an encampment close to the barrier, around where Geldrin's calculations pointed. They looked like Salamander-type men. A Lamasu, a sixteen-legged cat beast, was allegedly a creature of good. Dirk sent a message to his dad via Eroll. They did not know if they could get an army to help, but could send a message to scouts near the camp and get word back by morning. @@ -59,7 +59,7 @@ Other break-ins seemed as though the culprits were searching for something. They At Sister Proulsothight's shop there were no protesters or guards. She asked if the party wanted refreshments and took them into a back room with mini bunks and many different drinks. She asked whether they were there for the box. When they said yes, she gave them a box like the one from Gelissa, but not the same. This was what the break-ins had been about. She did not believe them and told them to leave. The party messaged The Basilisk to ask whether she should have it or whether they should retrieve it. -Eroll returned with a message from Dirk's sister: Dad was not available, and they should come to Salvation because help was needed. The Basilisk returned a message asking how they found these things and telling them to leave it alone because they were in over their heads. +Eroll returned with a message from Ingris, Dirk's sister: Dad was not available, and they should come to Salvation because help was needed. The Basilisk returned a message asking how they found these things and telling them to leave it alone because they were in over their heads. A massive verdian or veridian Dragonborn approached the shop with two sickly Goliaths, entered, and banged on something. The party told The Basilisk this was when they could reset the stone. A figure stood on one of the dome roofs. The party tried to stealth. It waited until the streets were clear and approached into the shop. The party heard words from inside the building. Invar channelled and walked toward the shop. A side note says wizards were on the payroll. @@ -73,7 +73,7 @@ The Hard Cheese was a cafe down the road for people out of towers and sold booze # People, Factions, and Places Mentioned -Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunensend, Serra, Dunensend, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Altarrb, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, The Basilisk, Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. +Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunensend, Serra, Dunensend, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Attabre, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, The Basilisk, Ingris / Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. # Items, Rewards, and Resources @@ -95,6 +95,6 @@ Someone in the court had been asking about the ancestral grounds of the Goliaths The shop break-ins seemed to target a box like Gelissa's, held by Sister Proulsothight [uncertain]. The Basilisk warned the party they were in over their heads and told them to leave it alone, yet The Basilisk had been looking for the box. Wizards were noted as being on the payroll. Uncle Hortekh and the massive verdian/veridian Dragonborn with two sickly Goliaths remain active threats. -Dirk's family situation escalated when his sister reported that Dad was not available and asked the party to come to Salvation because help was needed. Stricker Senior had also gone to Salvation to plan how to recover people who attacked them. +Dirk's family situation escalated when his sister Ingris reported that Dad was not available and asked the party to come to Salvation because help was needed. Stricker Senior had also gone to Salvation to plan how to recover people who attacked them. Morgana was sent by The Chorus because there should be five party members. The Chorus had visions from the ancient in which things went badly when there was not much water, waterwise, and went better when Morgana was present. Morgana's sighting of a bright green Dragonborn with sickly Goliaths near poisoned Everchard forest links the Green Dragons, sickly Goliaths, and Everchard's worsening forest troubles. diff --git a/data/5-retrospective/errol-party-companion.md b/data/5-retrospective/errol-party-companion.md new file mode 100644 index 0000000..a1516ab --- /dev/null +++ b/data/5-retrospective/errol-party-companion.md @@ -0,0 +1,5 @@ +Retrospective Context: errol + +User clarification establishes that Errol the Obsidian Raven becomes a party companion. This should update Errol's wiki status and related rollups without removing earlier uncertainty around his missing/off-plane period, possession by one of Squeal's things, or later repair. + +Source: user clarification in Codex session, 2026-05-18 diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 3efe6fe..b7632dc 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -89,6 +89,8 @@ sources: - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. - [Anastasia](people/anastasia.md): Anastasia, Anestasia, Goliath queen lady. +- [Ingris](people/ingris.md): Ingris, Dirk's sister. +- [Errol the Obsidian Raven](people/errol.md): Errol, Erroll, Obsidian Raven, obsidian bird, party raven. - [Original Goliath Sphinx](people/original-goliath-sphinx.md): original Sphinx meant for the Goliaths, memory-destroying creature, altered original Goliath Sphinx, 40-foot memory-destroying creature. - [Sunsoreen / Snowsorrow](places/sunsoreen.md): Sunsoreen, Snowsorrow, Snowscreen [misspelling], Snow Screen [misspelling], Snow Sorrow [spacing variant]. - [Sunsoreen Council](factions/sunsoreen-council.md): Council of Gold, Sunsoreen Council, Hayhearn Frowbrind, Hayhearn Frostwind, Aurum Prudence, Sophus Holed, Orius [Nosheer?], The Silent One. @@ -158,7 +160,7 @@ sources: - [Searu's Arrow](items/searus-arrow.md): Searu's Arrow, Searu's arrows, Searu's staff. - [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. - [Trixus](people/trixus.md): Trixus, Trixius, Tixun, Benu's little brother, elemental of light. -- [Attabre](people/attabre.md): Attabre, Protector of the Brass city, father of the sphinxes. +- [Attabre](people/attabre.md): Attabre, Altarrb, Protector of the Brass city, father of the sphinxes. - [Anadreste](people/anadreste.md): Anadreste, Annadressdey, Annadrazadey, Bynx's sister, guardian of the white dragons, white dragon guardian. - [Galimma, the Peridot Queen](people/galimma-peridot-queen.md): Galimma, Peridot Queen. - [Papa'e Munera](people/papae-munera.md): Papa'e Munera, papa'e munera, papael'munsera, papa e' mamara, papa I Meurina, black orb. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index 69d983a..fbfa20e 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -16,7 +16,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Valententhide / Lord Squall / cold mirror voice | Existing [Valententhide](../people/valententhide.md); Day 46 pathway offer added to [Open Threads](../open-threads.md). | | Mr Moreley / Abraxus / Professor Moreley | Existing [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); clarified as the spectral dragon holding the altered Sphinx down. | | Rubyeye / Ruby Eye / Brutor | Updated [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | -| Errol | Covered through [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Open Threads](../open-threads.md), and Day 46 cleaned narrative. | +| Errol | Covered through [Errol the Obsidian Raven](../people/errol.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Open Threads](../open-threads.md), and Day 46 cleaned narrative. | | Evalina | Existing identity thread; preserved in Day 46 cleaned narrative. | | The Tarnished, Verdigren | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); open threads added. | | The Basilisk | Existing [The Basilisk](../people/the-basilisk.md); Day 46 message preserved in cleaned narrative. | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index e623909..536c3c9 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -29,7 +29,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | -| Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | +| Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Errol the Obsidian Raven](../people/errol.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | | Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | | Craters Edge, Pine Springs, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 74c50ac..9bb5941 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -38,7 +38,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | | Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md), [Ashkellon](../places/ashkellon.md), and open threads. | | Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadwal's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | -| Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), and related standalone pages. | +| Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), [Errol the Obsidian Raven](../people/errol.md), and related standalone pages. | ## Day 44 Outcomes diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 7eb9cad..dd3703e 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -110,7 +110,9 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) - [Anastasia](people/anastasia.md) +- [Ingris](people/ingris.md) - [Bynx](people/bynx.md) +- [Errol the Obsidian Raven](people/errol.md) - [Original Goliath Sphinx](people/original-goliath-sphinx.md) - [Anadreste](people/anadreste.md) - [Verdigrim](people/verdigrim.md) diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 5036179..c53d180 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -145,7 +145,7 @@ sources: - What is [Papa'e Munera](people/papae-munera.md), where is the rest of him, and who or what is [uncertain: unrasorak]? - What blocks lost knowledge retrieval, and is it tied to flesh-crafting wands, Barrier magic, or the Riversmeet memory-interference spell? - What are the Heathmoor plagues if they are not barrier sickness, and why are the people not healing with the land? -- Why are Ruby Eye and Errol possibly not on the same plane? +- What happened to [Errol the Obsidian Raven](people/errol.md) and Ruby Eye while they were possibly not on the same plane? - What do Cardonald's teleportation-circle destinations reveal about undefended prisons, labs, Grand Towers, Menagerie, Ashkhellon, and broken Aegis-On-Sands? - Who built Morgana's statue, and how fast did her Goliath-child healing become legend? - What is in Hartwall's old lab, and how does its key help access the Howling Tombs? diff --git a/data/6-wiki/people/attabre.md b/data/6-wiki/people/attabre.md index 7da7c06..544cc74 100644 --- a/data/6-wiki/people/attabre.md +++ b/data/6-wiki/people/attabre.md @@ -3,11 +3,13 @@ title: Attabre type: god or father figure aliases: - Attabre + - Altarrb - Protector of the Brass city - father of the sphinxes first_seen: day-42 last_updated: day-57 sources: + - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md @@ -26,6 +28,7 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, ## Known Details - Trixus's brass rings name Attabre as Protector of the Brass city, `Salvation to his Children`, first of his name and fifth of his kind. +- Day 27 names Attabre, originally recorded as Altarrb, as the god associated with Father Haithes's copper marygal chain and with the `Father` side of a Mother/Father religious pairing in Dunensend. - A shrine offering on `day-42` produced the words: `The father wishes freedom for all his children.` - The Sphinx are the children of Attabre. - Day 43's Benu book listed family names as a missing unnamed one, Anadreste, Benu, hidden Gardwel, and Trixus. diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index f4a9166..cb23a3c 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -53,8 +53,8 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - Day 43 records that Ruby Eye was no longer welcome at the pale-skinned, black-dreadlocked king's city; later Cardonald could not find Ruby Eye and thought he might not be on the same plane. - Day 44 places young Ruby Eye in the old Riversmeet mage school, working on a final project to remove his eye, recruiting Geldrin into a group with Everard, Thomas / Ennuyé, and Valenth, and using a self-reincarnation spell. - Mr Moreley recognized Geldrin's ancient dragon scroll as something still being worked on and suspected Hartwall was keeping things from the Gold Dragon Council; a later draconic book was left where only Ruby Eye would find it and said `Battery is the clue`. -- On Day 46, Errol hid ruby messages connected to Rubyeye, Ennuyé, Browning, and Squeal. One clarified that Squeal did not ask for weather through the Barrier but for `the loss of everything`; another message with red glowing eyes, a water Excellence, and a whirlwind being was refused by Errol. -- A false message said `Bread & Circus` and pretended to be Rubyeye, while Platinum said Errol was possessed by one of Squeal's things. +- On Day 46, [Errol the Obsidian Raven](errol.md) hid ruby messages connected to Rubyeye, Ennuyé, Browning, and Squeal. One clarified that Squeal did not ask for weather through the Barrier but for `the loss of everything`; another message with red glowing eyes, a water Excellence, and a whirlwind being was refused by Errol. +- A false message said `Bread & Circus` and pretended to be Rubyeye, while Platinum said [Errol](errol.md) was possessed by one of Squeal's things. - A Rubyeye / Squeal warning said to be careful at Riversmeet and that Ennuyé had trapped Rubyeye in a room before Rubyeye went to his wife's place and was imprisoned. - On Day 48, Wrath brought Rubyeye to the party saying he needed rescuing and Cardinal had been useless. - In a huge underground dwarven city, Rubyeye was arrested for ancient crimes: 174,312 herfolk babies murdered, elemental spirit entrapment, tower construction, and downfall of ancient race. diff --git a/data/6-wiki/people/dirk.md b/data/6-wiki/people/dirk.md index 6206dc1..5a83e0b 100644 --- a/data/6-wiki/people/dirk.md +++ b/data/6-wiki/people/dirk.md @@ -45,6 +45,7 @@ Dirk is a player character played by Laura M. He is one of the original party me - [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md) - [Joy](joy.md) +- [Ingris](ingris.md) - [Anastasia](anastasia.md) - [Ashkellon](../places/ashkellon.md) - [Original Goliath Sphinx](original-goliath-sphinx.md) diff --git a/data/6-wiki/people/errol.md b/data/6-wiki/people/errol.md new file mode 100644 index 0000000..0915ddb --- /dev/null +++ b/data/6-wiki/people/errol.md @@ -0,0 +1,58 @@ +--- +title: Errol the Obsidian Raven +type: party companion +aliases: + - Errol + - Erroll + - Obsidian Raven + - obsidian bird + - party raven +first_seen: day-16 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-57.md + - data/5-retrospective/errol-party-companion.md +--- + +# Errol the Obsidian Raven + +## Summary + +Errol is an Obsidian Raven / obsidian bird used by the party for communication, scouting, and message delivery. He later becomes a party companion. + +## Known Details + +- On Day 16, an Obsidian Raven was pulled from a drawer and called Errol, though the source note says "but not really." +- The party bought or obtained an obsidian bird named Errol along with tower pennies. +- Errol established communication links with Terry and later carried messages for the party. +- Cardonald could fix Errol, and Day 48 later anchors "fixed Errol" as one of the events four days earlier, alongside Worn's death and Bynx joining the party. +- Errol was repeatedly used for messenger work: finding Ruby Eye, contacting Cardonald and Rubyeye, reaching Dirk's dad, and carrying messages during military coordination. +- On Day 36, Errol was loaned to a commander for two hours while other obsidian ravens were returning false refusals. +- On Day 43, Cardonald could not find Ruby Eye or Errol and wondered if they were not on the same plane. +- On Day 46, Errol returned altered by a long subjective absence: 117 years for him but only three days for the party, with forty years of darkness, gem-eating, memory gaps, and a strange belief that the party had always owned him. +- Platinum warned that Errol was possessed by one of Squeal's things. +- Errol hid ruby messages connected to Rubyeye, Ennuyé, Browning, and Squeal, including the correction that Squeal asked for "the loss of everything." +- On Day 48, Errol carried a message to Dirk's father and reported back about conditions after a battle. +- On Day 57, Geldrin placed part of Haze into Errol to help find the tail. +- Errol the Obsidian Raven becomes a party companion. + +## Related Entries + +- [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Valenth Cardonald](valenth-cardonald.md) +- [Minor Figures from Day 57](minor-figures-day-57.md) +- [Party Inventory](../inventories/party-inventory.md) +- [Minor Figures from Days 23-31](minor-figures-days-23-31.md) + +## Open Questions + +- What happened to Errol during his 117 subjective years and forty years of darkness? +- What lasting effects remain from Squeal's possession or influence? +- How does the Haze fragment placed into Errol affect him? diff --git a/data/6-wiki/people/ingris.md b/data/6-wiki/people/ingris.md new file mode 100644 index 0000000..4681220 --- /dev/null +++ b/data/6-wiki/people/ingris.md @@ -0,0 +1,35 @@ +--- +title: Ingris +type: person +aliases: + - Ingris + - Dirk's sister +first_seen: day-27 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-48.md + - data/2-pages/325.txt +--- + +# Ingris + +## Summary + +Ingris is [Dirk](dirk.md)'s sister, connected to Salvation, Dirk's family, and the Goliath liberation arc. + +## Known Details + +- On Day 27, Ingris sent word that Dad was not available and that the party should come to Salvation because help was needed. +- On Day 48, Dirk Sr told Dirk to see Ingris. +- When the party later went to Dirk's family tent, Ingris was there, welcomed Dirk, and immediately looked for Bynx. + +## Related Entries + +- [Dirk](dirk.md) +- [Bynx](bynx.md) +- [Salvation](../places/salvation.md) + +## Open Questions + +- What role will Ingris play in Dirk's family and Goliath restoration thread? diff --git a/data/6-wiki/people/minor-figures-days-23-31.md b/data/6-wiki/people/minor-figures-days-23-31.md index 44edf50..cf85931 100644 --- a/data/6-wiki/people/minor-figures-days-23-31.md +++ b/data/6-wiki/people/minor-figures-days-23-31.md @@ -33,7 +33,7 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch ## Days 25-26 -- Ice Fang: dragon mount who took the party toward the Ice prison. +- Icefang: dragon mount who took the party toward the Ice prison. - Grubins: guide to the Howling Tombs who was killed by the ice-white eagle. - Anrasurall: robed Humein from Baytail Accord who tried to free someone at the Ice prison using given runes and was killed by the bird. - Atom: fell during the ice-white eagle attack, with no reviving him. @@ -43,7 +43,7 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch - Hanna of Fishbait's Edge: Pact leader who reported colder weather and storms. - Lana/Alana of Azureside: Pact leader tied to Azureside records and the menagerie break-in. - Terry: merfolk messenger bird who carried council and regional messages. -- Erroll/Errol: communication-linked bird or contact who established two-way communication with Terry and later carried messages. +- Erroll/Errol: communication-linked Obsidian Raven who established two-way communication with Terry and later carried messages. Now covered as [Errol the Obsidian Raven](errol.md). - Lady Aquena: Pact or merfolk noble who would stay for a while and leave her offspring. - Duchess Lauleriere of Freeport State: noble council member. - Duke Humbersinthesand of Dunensend State: noble council member. @@ -53,7 +53,7 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch ## Day 27 -- Father Haithes [uncertain]: Dunensend Father associated with Altarrb. +- Father Haithes [uncertain]: Dunensend Father associated with Attabre. - Egraine Brook / Igraine: Dunar Mother associated with life, pleasure, fertility, and harvest. - Hearth Master: Dunensend court official with flames for hair who produced trade logs. - Huntsmistress: Dunensend official who investigated threats, automatons, and requests for aid. @@ -63,7 +63,7 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch - Alistair in Everchard: figure The Guilt connected to the wizards and barrier creation. - Huntsman Indanyu: second-in-command huntsman whose sisters had been attacked as potential new mothers. - Sister Proulsothight [uncertain]: shopkeeper holding a box like Gelissa's. -- Dirk's sister: sent word that Dad was unavailable and the party should come to Salvation. +- Ingris / Dirk's sister: sent word that Dad was unavailable and the party should come to Salvation. Now covered as [Ingris](ingris.md). - Stricker: refugee-camp ally who wanted to join if the party went to war. - Stricker Senior: went to Salvation to work out plans to recover people who attacked them. diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index cc0a69a..e435260 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -51,7 +51,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcroft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | | Earl of Goldenswell, Hartwall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | | Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadwal feather conversation and Benu-summoning details. | Rollup/open thread. | -| Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | Status rollup. | +| Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | [Errol the Obsidian Raven](errol.md) and status rollup. | ## Day 44 diff --git a/data/6-wiki/people/minor-figures-days-48-52.md b/data/6-wiki/people/minor-figures-days-48-52.md index b1c1af6..a5d1d66 100644 --- a/data/6-wiki/people/minor-figures-days-48-52.md +++ b/data/6-wiki/people/minor-figures-days-48-52.md @@ -16,7 +16,7 @@ This rollup preserves named and name-like figures from Days 48 and 52 that do no | Dirk Sr / Dirk's father | 48 | Wanted the party to kill the dragon and told Dirk to see Ingris. | Rollup / existing family thread. | | Courtwood | 48 | His "Musing" four days earlier anchors the timing around Worn, Errol, and Bynx. | Rollup. | | Worn | 48 | Killed four days earlier when Errol was fixed and Bynx was gained. | Rollup. | -| Ingris | 48 | Dirk's sister, whom Dirk Sr told Dirk to see. | Rollup. | +| Ingris | 48 | Dirk's sister, whom Dirk Sr told Dirk to see. | Standalone [Ingris](ingris.md). | | Older Dunner elder / knower of flesh | 48 | Met the party on the word of Benu and cited uncovered prophecy texts. | Rollup. | | Grimescale | 48 | Burly envoy for mighty Verdigrim. | [Verdigrim](verdigrim.md). | | Gravltooth | 48 | Old wizened envoy accompanying Grimescale. | [Verdigrim](verdigrim.md). | diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index d6049c7..1af6d3c 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -138,7 +138,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Ennuyé](ennuyé.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tresmun's arm. | | Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | | Steven / Steve | missing from barrier after confrontation | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Thromgore's boy had helped contain Valentenhide and wanted to `Bob stuff`; later no longer in his barrier. | -| Errol | missing / possibly off-plane | `data/4-days-cleaned/day-43.md` | Cardonald could not find Ruby Eye or Errol, perhaps because they were not on the same plane. | +| [Errol the Obsidian Raven](errol.md) | party companion; formerly missing / possibly off-plane | `data/4-days-cleaned/day-43.md`, `data/4-days-cleaned/day-46.md`, `data/4-days-cleaned/day-48.md`, `data/4-days-cleaned/day-57.md` | Cardonald could not find Ruby Eye or Errol, perhaps because they were not on the same plane. Errol later returned altered, was fixed, continued carrying messages, and becomes a party companion. | | Hannah | wiped from time and space | `data/4-days-cleaned/day-44.md` | Valententhide said Hannah should not be visible; after return the party remembered only Hannah turning to dust in a cave, not her name. | ## Captive, Imprisoned, or Detained diff --git a/data/6-wiki/places/salvation.md b/data/6-wiki/places/salvation.md index 3c596bb..daca40e 100644 --- a/data/6-wiki/places/salvation.md +++ b/data/6-wiki/places/salvation.md @@ -20,7 +20,7 @@ Salvation is a mapped town at the edge of the desert, east of Sunset Vista and s ## Known Details - Pythus Aleyvarus was scried in a sandstone cavern near Salvation while reading the human-flesh grimoire. -- Dirk's sister sent word that Dad was unavailable and the party should come to Salvation. +- [Ingris](../people/ingris.md), Dirk's sister, sent word that Dad was unavailable and the party should come to Salvation. ## Related Entries -
219daa0Clarify Anastasia, Stuart, and Dirk’s Goliath arcby Laura Mostert
data/2-pages/169.txt | 2 +- data/2-pages/175.txt | 2 +- data/2-pages/176.txt | 2 +- data/3-days/day-42.md | 6 +++--- data/4-days-cleaned/day-42.md | 12 ++++++------ data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- data/6-wiki/concepts/barrier.md | 2 +- data/6-wiki/people/anastasia.md | 2 +- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-)Show diff
diff --git a/data/2-pages/169.txt b/data/2-pages/169.txt index 96a0456..52cb2f4 100644 --- a/data/2-pages/169.txt +++ b/data/2-pages/169.txt @@ -8,7 +8,7 @@ Dirk goes out the back & sees a neighbour spying on the house. sneak around the house have axes & armour - surprised. -- female dragon turns into the Goliaths' Queen lady +- female Goliath disguised as a dragonborn is the Goliaths' Queen lady & the neighbours are with her - Anastasia. - Explain the plan to her The barrier is weak & they are speaking to her diff --git a/data/2-pages/175.txt b/data/2-pages/175.txt index 193beee..ec9006c 100644 --- a/data/2-pages/175.txt +++ b/data/2-pages/175.txt @@ -8,7 +8,7 @@ Goat headed sphynx - Elemental of light - Trixus. Elf lady - Dragon - copper? - Metallic good? (childhood chants) -Goat Man - Thromgores boy? - Steven - (Shuert locked up elsewhere) +Goat Man - Thromgores boy? - Steven - (Stuart locked up elsewhere) Emri put him in here - he helped to contain Valentenhide. diff --git a/data/2-pages/176.txt b/data/2-pages/176.txt index a1bb5dc..7b3d142 100644 --- a/data/2-pages/176.txt +++ b/data/2-pages/176.txt @@ -9,7 +9,7 @@ A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind. -Shuert comes through the portal & falls through +Stuart comes through the portal & falls through to the library, & comes to find Steven promises he has Ruby eye... diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index 74e008c..2bcdb77 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -153,7 +153,7 @@ Dirk goes out the back & sees a neighbour spying on the house. sneak around the house have axes & armour - surprised. -- female dragon turns into the Goliaths' Queen lady +- female Goliath disguised as a dragonborn is the Goliaths' Queen lady & the neighbours are with her - Anastasia. - Explain the plan to her The barrier is weak & they are speaking to her @@ -438,7 +438,7 @@ Goat headed sphynx - Elemental of light - Trixus. Elf lady - Dragon - copper? - Metallic good? (childhood chants) -Goat Man - Thromgores boy? - Steven - (Shuert locked up elsewhere) +Goat Man - Thromgores boy? - Steven - (Stuart locked up elsewhere) Emri put him in here - he helped to contain Valentenhide. @@ -484,7 +484,7 @@ A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind. -Shuert comes through the portal & falls through +Stuart comes through the portal & falls through to the library, & comes to find Steven promises he has Ruby eye... diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index 941b037..7a5de1d 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -37,7 +37,7 @@ The party exited the room. A scraggy female Goliath walked out carrying a pile o The party called for the shift to end early. A guard went to get the rest of the workers, and the party walked out with them all. Every corner seemed to have a dragonborn guard. The group headed to the outskirts of the city, where there were fewer guards, and entered a building. They got in touch with the resistance through Dune Shwelter. The bird was coming that night, and they were to meet at the [uncertain: Gugghut] in four hours. Their next shift was in about eighteen hours. -A large female dragonborn walked down the street and looked at the house. It was hard for people to remain in pairs. Dirk went out the back and saw a neighbour spying on the house. Sneaking around the house revealed people with axes and armour, surprised by the party. The female dragonborn turned into the Goliaths' queen lady, Anastasia, and the neighbours were with her. The party explained the plan. Anastasia said the barrier was weak and that they were speaking to her more. She gave Dirk a ring, Ennuyé's fifth ring. By 15:00, the party could now attune to three of them. It was agreed that if they succeeded, the baby should be called "Badger born in freedom." +A large female dragonborn walked down the street and looked at the house. It was hard for people to remain in pairs. Dirk went out the back and saw a neighbour spying on the house. Sneaking around the house revealed people with axes and armour, surprised by the party. The dragonborn appearance was an illusion or disguise; she was Anastasia, the Goliaths' queen lady, and the neighbours were with her. The party explained the plan. Anastasia said the barrier was weak and that they were speaking to her more. She gave Dirk a ring, Ennuyé's fifth ring. By 15:00, the party could now attune to three of them. It was agreed that if they succeeded, the baby should be called "Badger born in freedom." The party teleported to a hole higher up in the tower to try to rescue Envi, zooming up the soft tower. An old bird's nest seemed to have been pushed aside for a landing spot. Dirk saw elders whose minds seemed to be on repeat. The party headed upstairs. One room was decorated with Goliath skulls in arches, with old coins dotted around. The sight gave them chills and suggested it might once have been a dragon lair, perhaps connected to Lortesh. Morgana inspected the coins and found one larger than normal currency, a Goliath coin marked "Domain of Pengalis" at the top. Dirk heard a low moan from the wall; all the skulls had been skinned alive. @@ -71,11 +71,11 @@ A dragon vision on the ceiling showed dragons terrorising the town. The party us The party spoke to Cardenald. Tradesmells was totally empty: no dragons and no Goliaths. Ruby Eye was missing. They checked on Emri, who was still imprisoned. Cardenald spoke to him and said he was not complete; bits of his soul were missing, including guilt and misery, and possibly sorrow, compassion, Joy, and mercy. The formation of the barriers was not the only thing the elves learned. They also tried to remove other parts of their souls in an effort to perfect themselves. The large man under the mountain was described as a battery. Benu's other kin was named Trixius. The party headed down to the prison rooms. Notes also recorded Treamon's skull with week / charge / cooldown [unclear]. -Hephestus's door had a ninth-level Banishment on it. The goat-headed sphinx was Trixus, an elemental of light. The elf lady was a copper dragon, possibly metallic and good according to childhood chants. The goat man was Thromgore's boy, Steven, with Shuert locked up elsewhere. Emri had put Steven here; Steven had helped to contain Valentenhide. Steven just wanted to "Bob stuff" and seemed sincere. He had been imprisoned for one thousand years. The elf / dragon had not been there long. +Hephestus's door had a ninth-level Banishment on it. The goat-headed sphinx was Trixus, an elemental of light. The elf lady was a copper dragon, possibly metallic and good according to childhood chants. The goat man was Thromgore's boy, Steven, with Stuart locked up elsewhere. Emri had put Steven here; Steven had helped to contain Valentenhide. Steven just wanted to "Bob stuff" and seemed sincere. He had been imprisoned for one thousand years. The elf / dragon had not been there long. The dragon lady was hungry. The party opened the barrier to give her food, and she did not try to escape because the barrier made her safe. She said "he's gone now" and seemed sad. The guards said he was dead, or that he had gone recently; the name Lorleh was noted. She asked whether the party had seen her boy. She did not know why she was there and had eaten about one week earlier. The party let her out and gave her food. They found a maggot in her ear and removed it. She uncontrollably cried and remembered everything. She was a copper dragon from Snowsorrow, which is now Snowsorrow. She used to play with the king and queen's son in Snowsorrow. The names [uncertain: Ice fang] and Atlih were noted. Gold dragons were also mentioned. Verdugrim was said to be his or Lorleh's son, "the tarnished," and had bred [uncertain: all?] Verdugrim's dragonborn and Goliaths. Eveline Heathsall, called Mama, was betrothed to Argentum and became a Heathsall. Igraine had come to the copper dragon while she was sleeping and said she was lucky she was not captive anywhere else, because Igraine could not speak to her somewhere else. Ice Fury was approximately thirty to forty years older than her. -The party went to see Trixus, Benu's little brother. He was asleep, and loud noises did not wake him. They opened the barrier. Trixus had four brass rings on each paw. The runes on the rings read: "A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind." Shuert came through the portal, fell through to the library, came to find Steven, and promised he had Ruby Eye. +The party went to see Trixus, Benu's little brother. He was asleep, and loud noises did not wake him. They opened the barrier. Trixus had four brass rings on each paw. The runes on the rings read: "A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind." Stuart came through the portal, fell through to the library, came to find Steven, and promised he had Ruby Eye. The party checked the treasure hall. It contained lots of Goliath currency, Brass City currency, Dumnen currency, and massive triangular coins of Snowsorrow. One coin showed a female sphinx resting its hand on a dragon. The party took the copper dragon down and put Trixus's hand on her head. He briefly stirred with recognition but stayed asleep. @@ -99,7 +99,7 @@ The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Elissa Hart # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Stuart / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodita's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. @@ -111,9 +111,9 @@ Creatures and creature-like entities mentioned include the fat-bellied dragon in Items, currencies, and physical resources mentioned include Ennuyé's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. -Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Attabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. +Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia appearing under a dragonborn illusion or disguise, Anastasia sensing the weakened barrier, attunement to three of Ennuyé's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Attabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. -Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Elissa Hartwall's movement airwise to help with the battle heading to Emmerave. +Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Stuart's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Elissa Hartwall's movement airwise to help with the battle heading to Emmerave. # Clues, Mysteries, and Open Threads diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 2ef2dc2..3efe6fe 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -167,7 +167,7 @@ sources: - [Bleakstorm](places/bleakstorm.md): Bleakstorm, Lord Bleakstorm, Bleakstorm castle. - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md): Riversmeet, Menagerie, Mages College at Riversmeet, old mage school, mage school. - [Void Spheres](items/void-spheres.md): void spheres, orb of void, void orb, eight spheres, Brotor's gift. -- [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Ennuyé / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. +- [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Stuart / Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Ennuyé / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. - [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. - [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. - [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index fa512d5..74c50ac 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -23,7 +23,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | | Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | | Offering responses, statue inscriptions, Trixus ring inscription, Badger phrase | [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | -| Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | +| Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Stuart / Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | | Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Hartwall, Emmerane and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | | Black-feather communication brick, Domain of Pengalis coin, feather relics, coins/currencies, Treamon's skull, flesh-crafting wand, Trixus's brass rings, time device and other specific resources | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Attabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Hartwall | [Open Threads](../open-threads.md), plus related standalone pages. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index d344117..d9b6a0e 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -63,7 +63,7 @@ The Barrier is the central protective shield, dome, or containment system around - Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Hartwall did not know about. - Ruby Eye and Wrath both wanted the shell of [uncertain: Tremoon] because it helped people get in and out of the Barrier. - Day 41 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. -- Day 42 says the Barrier was weak, that the party could attune to three of Envi's rings, and that a tiny hole became noticeable after Ashkellon blessings gave Goliaths weapons, shields, and healing. +- Day 42 says the Barrier was weak, that the party could attune to three of Ennuyé's rings, and that a tiny hole became noticeable after Ashkellon blessings gave Goliaths weapons, shields, and healing. - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) said the rings activate in `the Barrier` so Joy cannot leave and that sacrifices kept Joy safe. - [Bleakstorm](../places/bleakstorm.md) warned that trips outside the Barrier could be difficult and could send people back in time at a cost. - Day 43 says the Barrier may have been made for noble and proud reasons but was possibly bad; [Trixus](../people/trixus.md) did not like it, and a spell within the Barrier interfered with memory restoration. diff --git a/data/6-wiki/people/anastasia.md b/data/6-wiki/people/anastasia.md index 625a22b..4d044c6 100644 --- a/data/6-wiki/people/anastasia.md +++ b/data/6-wiki/people/anastasia.md @@ -21,7 +21,7 @@ Anastasia is a Goliath queen and resistance leader whose relationship with [Dirk ## Known Details -- On Day 42, Anastasia first appeared as a large female dragonborn, then revealed herself as the Goliaths' queen lady. +- On Day 42, Anastasia first appeared under a dragonborn illusion or disguise, but she is a Goliath lady and was identified as the Goliaths' queen lady. - She and her neighbours were working with the resistance around Ashkellon. - Anastasia gave Dirk Ennuyé's fifth ring, after which the party could attune to three of the rings. - On Day 43, Dirk, Eliana, and Morgana took Hartwall to meet Anastasia. diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index 48482aa..cc0a69a 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -32,7 +32,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Slen the librarian, The Exiled, Calameir, Blisk | Library and tower hierarchy figures while Willow-wispa was coming. | Rollup/open thread. | | Emri / Emi and Joy | Ghost figures in dome; Emri requested Treamon's skull and lacked soul-parts. | Existing [Ennuyé](ennuyé.md) / [Joy](joy.md), status/open threads. | | Treamon / Tremaion, Kashe / Kesha, Tellfether, medusa, statue figure, child of the Mother, Thuvia, Brother fracture | Noxia chamber battle figures and tools. | Rollup; [Noxia](noxia.md); Brother Fracture existing status. | -| Thromgore, Steven / Steve, Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | +| Thromgore, Steven / Steve, Stuart / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | | [uncertain: Shulcher], Sierra, Earth Waker | Book and Noxia-corruption history figures. | Rollup/open thread; [Noxia](noxia.md). | | Partially ice dwarf, strapping Goliath, half-elf from Everdard, [uncertain: leechus] | Bleakstorm castle figures and lost-friend clue. | [Bleakstorm](../places/bleakstorm.md) / rollup. | | Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, Jin Woo | Hartwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | -
0f4eabeClarify Ennuyé's fifth ringby Laura Mostert
data/2-pages/169.txt | 2 +- data/3-days/day-42.md | 2 +- data/4-days-cleaned/day-42.md | 6 +-- data/4-days-cleaned/day-46.md | 12 +++--- .../day-46-original-goliath-sphinx.md | 5 +++ data/6-wiki/aliases.md | 4 +- data/6-wiki/clues/day-46-coverage-audit.md | 6 +-- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- data/6-wiki/concepts/barrier.md | 8 +++- data/6-wiki/index.md | 2 + data/6-wiki/inventories/party-inventory.md | 2 +- data/6-wiki/items/minor-items-day-46.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 2 +- .../items/rings-of-joy-ennuy\303\251-and-dirk.md" | 6 ++- data/6-wiki/items/void-spheres.md | 5 ++- data/6-wiki/open-threads.md | 4 +- data/6-wiki/people/anastasia.md | 49 ++++++++++++++++++++++ data/6-wiki/people/attabre.md | 5 +++ data/6-wiki/people/bynx.md | 8 +++- data/6-wiki/people/dirk.md | 15 ++++++- "data/6-wiki/people/ennuy\303\251.md" | 2 +- data/6-wiki/people/joy.md | 2 +- data/6-wiki/people/minor-figures-day-46.md | 2 +- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- data/6-wiki/people/original-goliath-sphinx.md | 44 +++++++++++++++++++ data/6-wiki/people/status.md | 2 +- data/6-wiki/places/ashkellon.md | 3 ++ data/6-wiki/places/minor-places-day-46.md | 2 +- .../riversmeet-menagerie-and-old-mage-school.md | 8 +++- data/6-wiki/timeline.md | 2 +- 30 files changed, 179 insertions(+), 37 deletions(-)Show diff
diff --git a/data/2-pages/169.txt b/data/2-pages/169.txt index 7d3338f..96a0456 100644 --- a/data/2-pages/169.txt +++ b/data/2-pages/169.txt @@ -14,7 +14,7 @@ have axes & armour - surprised. The barrier is weak & they are speaking to her more. -Anastasia gives Dirk a ring - Envi's 5th ring +Anastasia gives Dirk a ring - Ennuyé's 5th ring 15:00 Now Attune to 3 of them. If successful the baby should be called "Badger born in freedom." diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index 81feba7..74e008c 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -159,7 +159,7 @@ have axes & armour - surprised. The barrier is weak & they are speaking to her more. -Anastasia gives Dirk a ring - Envi's 5th ring +Anastasia gives Dirk a ring - Ennuyé's 5th ring 15:00 Now Attune to 3 of them. If successful the baby should be called "Badger born in freedom." diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index 79f01a3..941b037 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -37,7 +37,7 @@ The party exited the room. A scraggy female Goliath walked out carrying a pile o The party called for the shift to end early. A guard went to get the rest of the workers, and the party walked out with them all. Every corner seemed to have a dragonborn guard. The group headed to the outskirts of the city, where there were fewer guards, and entered a building. They got in touch with the resistance through Dune Shwelter. The bird was coming that night, and they were to meet at the [uncertain: Gugghut] in four hours. Their next shift was in about eighteen hours. -A large female dragonborn walked down the street and looked at the house. It was hard for people to remain in pairs. Dirk went out the back and saw a neighbour spying on the house. Sneaking around the house revealed people with axes and armour, surprised by the party. The female dragonborn turned into the Goliaths' queen lady, Anastasia, and the neighbours were with her. The party explained the plan. Anastasia said the barrier was weak and that they were speaking to her more. She gave Dirk a ring, Envi's fifth ring. By 15:00, the party could now attune to three of them. It was agreed that if they succeeded, the baby should be called "Badger born in freedom." +A large female dragonborn walked down the street and looked at the house. It was hard for people to remain in pairs. Dirk went out the back and saw a neighbour spying on the house. Sneaking around the house revealed people with axes and armour, surprised by the party. The female dragonborn turned into the Goliaths' queen lady, Anastasia, and the neighbours were with her. The party explained the plan. Anastasia said the barrier was weak and that they were speaking to her more. She gave Dirk a ring, Ennuyé's fifth ring. By 15:00, the party could now attune to three of them. It was agreed that if they succeeded, the baby should be called "Badger born in freedom." The party teleported to a hole higher up in the tower to try to rescue Envi, zooming up the soft tower. An old bird's nest seemed to have been pushed aside for a landing spot. Dirk saw elders whose minds seemed to be on repeat. The party headed upstairs. One room was decorated with Goliath skulls in arches, with old coins dotted around. The sight gave them chills and suggested it might once have been a dragon lair, perhaps connected to Lortesh. Morgana inspected the coins and found one larger than normal currency, a Goliath coin marked "Domain of Pengalis" at the top. Dirk heard a low moan from the wall; all the skulls had been skinned alive. @@ -109,7 +109,7 @@ Creatures and creature-like entities mentioned include the fat-bellied dragon in # Items, Rewards, and Resources -Items, currencies, and physical resources mentioned include Envi's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. +Items, currencies, and physical resources mentioned include Ennuyé's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Attabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. @@ -119,7 +119,7 @@ Strategic resources and communications mentioned include the plan to infiltrate Dirk's Goliath-and-fat-bellied-dragon dream suggested a link to the dragons or Goliaths, but its source and meaning remain unknown. -Memories were returning since Eva slew The Mother. Envi might be trapped, but whose side he is on remains uncertain. Envi was also part of deals with dark demons, and his fifth ring is now with Dirk. +Memories were returning since Eva slew The Mother. Ennuyé might be trapped, but whose side he is on remains uncertain. Ennuyé was also part of deals with dark demons, and his fifth ring is now with Dirk. The Goliath Empire killed Perodita's parents and built a city on their bones. Wyrmdoom remained there for centuries after the barrier went up. How this history connects to current Goliath sickness, the dragons, and Perodita's own path remains central. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index 74fb8c0..a440a73 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -64,7 +64,7 @@ Invar got Dirk to open a door while a warning said the party might not come in a Morgana's reincarnation formed a male elven body with greenish hair on the floor. He felt full of divine energy and said his name was Garadwal. He did not recognise the party. The last thing he remembered was the desert and his people, before any Dome existed. The party told him what had happened, and he seemed good for the moment. When Benn banished Garadwal, he had not gone where expected. Morgana thought much of Garadwal had been in the vulture body. Emeraldus was wondered to be one of his children. The party decided to call him Groot for the time being. -The party returned to the basement. Garadwal sensed spirits protecting the area. They placed the orbs into their relevant slots, producing a slight glow and some light on the locked door, but nothing else happened. The door changed and showed ancient Draconic runes: "You've got this far. I'll do my best to aid you in the battle you are about to have. The creature you are about to face will destroy your memories & you will not remember the spell you are about to cast." The party tried to tell Garadwal what he might encounter. A forty-foot alien, squelchy creature appeared, with an anguished humanoid face half scared and half in pain. Skeletal wings and a spectral dragon were holding it down. Mr Moreley was trying to restrain its full abilities, but he was pulled back into the school and the creature rose. +The party returned to the basement. Garadwal sensed spirits protecting the area. They placed the orbs into their relevant slots, producing a slight glow and some light on the locked door, but nothing else happened. The door changed and showed ancient Draconic runes: "You've got this far. I'll do my best to aid you in the battle you are about to have. The creature you are about to face will destroy your memories & you will not remember the spell you are about to cast." The party tried to tell Garadwal what he might encounter. A forty-foot alien, squelchy creature appeared, with an anguished humanoid face half scared and half in pain. Skeletal wings and a spectral dragon were holding it down. Mr Moreley was the spectral dragon restraining it. The creature was the original Sphinx meant for the Goliaths, stolen and altered long ago when the Dome was created, and used to alter the memories of everyone inside the Dome. Mr Moreley was pulled back into the school, and the creature rose. Ichor sprayed, and the party experienced visions. Eliana saw a cave with small creatures clad in metal, firing repeating crossbows, running past while a dragon roared. Dirk saw a thriving goliath city with many races trading. Geldrin saw a metal tower with zeppelins flying around, and the dragon skull was gone. The party felt the mind-altering effect coming from the back. Morgana saw a grassy field of daisies, a hand on her shoulder, and a warm, calming feeling from a barefoot faceless woman in silks. @@ -78,7 +78,7 @@ Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but w Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunner door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. -Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." +Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" The invisible entity was defeated, and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." Dothral, also called Joshua, had only been aware for twenty years. A soul crashing into the tower had awakened a few constructs. A magpie landed on Morgana and said it could help her. The Chorus had sent it. Difficult times were coming, but Morgana would know the right path when it came. The magpie could say no more because Morgana had told it not to say anything else, though she could not remember doing so. It said it was time; the Chorus could not help before but could now. Willowispa was flying away furious. Dothral had awakened around Rhime watches about twenty years earlier, near a door, and something had forcefully propelled him through it. @@ -86,7 +86,7 @@ The notes mark Day 46 again as the party moved mattresses into the map room to r Six people dropped down the hole. They included a gnoll, probably Longfang, who thought the dragon in Lake Azure might be dead; a sparrow aarakocra called Mercy; and a pesky elf connected to the bellow men. Mercy stopped Longfang from opening the trapped door, saying they were on reconnaissance and the boss had said one was here, with quick mystic listening. The party tried to rip out the blade and opened the door. A bubble surrounded the elf, and Mercy pulled through the blade. -Invar brought Garadwal out of Feeble Mind. Garadwal looked shocked as he now remembered everything. He needed to find his brothers and teleported away. Morgana tried to reincarnate the baby sphinx. She could feel where some light spirit had been and also felt someone else pulling at the spirit. She blacked out and was drawn before Kasha, who said the spirit was hers and Morgana could not have it. Kasha was taking it as alternative payment. Morgana argued that the original payment would be made as promised. She asked Igraine, Abraxas, and [unclear: Typh] for help; they came to Morgana's feet, allowing her wholly. She drifted toward Heather. A strange warmth came, and Invar blacked out and appeared next to Morgana. Kasha said this had not happened for many years, saw why the party had been chosen, but warned she could not be fooled like the others and would not be taken like them. She allowed them to have the goliath child. The spell completed too quickly, as if someone else had cast it. The baby felt hot and unwell, apparently reflecting the state of goliath civilisation. +Invar brought Garadwal out of Feeble Mind. Garadwal looked shocked as he now remembered everything. He needed to find his brothers and teleported away. Morgana tried to reincarnate the baby sphinx. She could feel where some light spirit had been and also felt someone else pulling at the spirit. She blacked out and was drawn before Kasha, who said the spirit was hers and Morgana could not have it. Kasha was taking it as alternative payment. Morgana argued that the original payment would be made as promised. She asked Igraine, Abraxas, and [unclear: Typh] for help; they came to Morgana's feet, allowing her wholly. She drifted toward Heather. A strange warmth came, and Invar blacked out and appeared next to Morgana. Kasha said this had not happened for many years, saw why the party had been chosen, but warned she could not be fooled like the others and would not be taken like them. She allowed them to have the goliath child. The spell completed too quickly, as if someone else had cast it. The baby felt hot and unwell, apparently reflecting the state of goliath civilisation. The Sphinx aspect of the altered memory creature was what reincarnated as Bynx. The party went back up the hole. Invar's robes now showed his surname; it had supposedly been there the whole time, and he now recognised it. They exited by the main entrance. The tents were abandoned and empty of people and belongings, though furniture remained. It was 11:00. They went into the town, which was bustling. @@ -120,13 +120,13 @@ Groups and factions mentioned include the party, squid-headed men, human wizards Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowsorrow, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. -Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the invisible entity, the 40-foot memory-destroying alien creature, spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child, undead sphinx, and possible tainted dragons. +Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the defeated invisible entity, the altered original Goliath Sphinx / 40-foot memory-destroying creature, Mr Moreley as spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child Bynx, undead sphinx, and possible tainted dragons. # Items, Rewards, and Resources Items, documents, and physical resources mentioned include the broom, salt pot safe with sequence `6/11/10/13/7`, salt, beast-sales ledger, Noxia-symbol snake-and-scorpion necklace, basement relief map with eight divots, magical traps, musical lock, dark-rune summoning circle, jellyfish brooch, 5th-level Magic Missile scroll, coin necklace, curved sword with purple-crystal hilt, note reading "propell," Alarm spell, elemental ornate handle, globe with rock, lava-transformed rock, socks and trinkets, Snowsorrow snowglobe, racing automatons, cakes and potions, Storm Orb, seasoned stone, mushroom pieces, ancient Draconic warning runes, orbs in slots, Amoursorate's scratched orb, rug saying "lost," skull-and-ruby-eyes orb, ruby messages, lost ring, coral door, power-armour suit, Invar's robe surname, deputy badges, sending stones, 500 gp jade purchase, jade earrings, jade-disguised staff, mirror, 80 hexagon coins, dark grey rose, Bartholomew's silver chain with green pendant, 50,000 gp worth of jade, militia rewards, tray with leaves, and the mirror through which Valententhide offered pathways. -Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadwal, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadwal's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valententhide's proposed pathway magic. +Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadwal, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadwal's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity until it was defeated, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valententhide's proposed pathway magic. Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Ennuyé, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowsorrow, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. @@ -146,7 +146,7 @@ Metatous's incomplete soul, the mushroom organism, Limos Vita, the cat-horned fl Garadwal was reincarnated in an elven, green-haired, divine-energy body, remembered the pre-Dome desert after being restored, and left to find his brothers. Whether he is now ally, threat, divided being, or restored protector remains open. -The memory-destroying creature, spectral dragon, Mr Moreley's restraint, the invisible escaping entity, and the party's forced forgetting suggest a major source of memory alteration survived or escaped. +The memory-destroying creature was the original Sphinx meant for the Goliaths, stolen and altered when the Dome was created, then used to alter memories across the Dome. Mr Moreley was the spectral dragon holding it down. The invisible entity that escaped during the battle was defeated, restoring the party's memories and allowing the Sphinx aspect to reincarnate as Bynx. Kasha claimed a debt for Garadwal and later tried to claim the baby sphinx / goliath child as alternative payment. Her statement that she cannot be fooled or taken like the others raises questions about which gods or powers were fooled and by whom. diff --git a/data/5-retrospective/day-46-original-goliath-sphinx.md b/data/5-retrospective/day-46-original-goliath-sphinx.md new file mode 100644 index 0000000..5d02cc9 --- /dev/null +++ b/data/5-retrospective/day-46-original-goliath-sphinx.md @@ -0,0 +1,5 @@ +Retrospective Context: day-46 + +User clarification establishes that the Day 46 memory-destroying creature in the Riversmeet Menagerie / old mage school was the original Sphinx meant for the Goliaths. It was stolen and altered long ago when the Dome was created, then used to alter the memories of everyone inside the Dome. Mr Moreley was the spectral dragon holding the creature down. The invisible entity that escaped during the battle was defeated, and memories were restored. The Sphinx aspect of the altered creature was what reincarnated as Bynx. + +Source: user clarification in Codex session, 2026-05-18 diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 33fae6a..2ef2dc2 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -88,6 +88,8 @@ sources: - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Matron Cardonald's daughter. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. +- [Anastasia](people/anastasia.md): Anastasia, Anestasia, Goliath queen lady. +- [Original Goliath Sphinx](people/original-goliath-sphinx.md): original Sphinx meant for the Goliaths, memory-destroying creature, altered original Goliath Sphinx, 40-foot memory-destroying creature. - [Sunsoreen / Snowsorrow](places/sunsoreen.md): Sunsoreen, Snowsorrow, Snowscreen [misspelling], Snow Screen [misspelling], Snow Sorrow [spacing variant]. - [Sunsoreen Council](factions/sunsoreen-council.md): Council of Gold, Sunsoreen Council, Hayhearn Frowbrind, Hayhearn Frostwind, Aurum Prudence, Sophus Holed, Orius [Nosheer?], The Silent One. - [The Mother](people/the-mother.md): The Mother, Mother. @@ -167,7 +169,7 @@ sources: - [Void Spheres](items/void-spheres.md): void spheres, orb of void, void orb, eight spheres, Brotor's gift. - [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Ennuyé / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. - [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. -- [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. +- [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. - [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. - [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. - [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md): shell of [uncertain: Tremoon], crystal shell, lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index 93db4f3..69d983a 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -14,7 +14,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Morgana, Dirk, Geldrin, Invar, Eliana, Bosh | Party members; covered through Day 46 cleaned narrative and relevant existing pages where present. | | Willowispa / Willowwispa | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); open threads added. | | Valententhide / Lord Squall / cold mirror voice | Existing [Valententhide](../people/valententhide.md); Day 46 pathway offer added to [Open Threads](../open-threads.md). | -| Mr Moreley / Abraxus / Professor Moreley | Existing [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); Day 46 context in cleaned narrative and open threads. | +| Mr Moreley / Abraxus / Professor Moreley | Existing [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); clarified as the spectral dragon holding the altered Sphinx down. | | Rubyeye / Ruby Eye / Brutor | Updated [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | | Errol | Covered through [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Open Threads](../open-threads.md), and Day 46 cleaned narrative. | | Evalina | Existing identity thread; preserved in Day 46 cleaned narrative. | @@ -35,11 +35,11 @@ This audit records where each Day 46 mention-section subject was placed in the w | Lady Igraine, Igraine, Abraxas | Lady Igraine covered by [Lady Igraine of Riversmeet](../people/lady-igraine-riversmeet.md); the goddess Igraine and Abraxas preserved in deity/political context and cleaned narrative. | | The Exchequer / Bartholomew, Betty, seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, greasy halfling, Bollar men | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Hartwall, Highgate, Lord Bleakstorm | Existing or rollup coverage; Highgate and Hartwall lab leads added to [Minor Places from Day 46](../places/minor-places-day-46.md) and [Open Threads](../open-threads.md). | -| Squid-headed men, human wizards, stock-beast handlers, twins, copper-goliath offspring, fish men, leech creatures, lamias, rats, undead sphinx, tainted dragons | Covered in cleaned narrative; specific named/plot-bearing groups in [Minor Figures from Day 46](../people/minor-figures-day-46.md) or [Open Threads](../open-threads.md). | +| Squid-headed men, human wizards, stock-beast handlers, twins, copper-goliath offspring, fish men, leech creatures, lamias, rats, undead sphinx, tainted dragons, altered original Goliath Sphinx, invisible memory entity | Covered in cleaned narrative; specific named/plot-bearing groups in [Minor Figures from Day 46](../people/minor-figures-day-46.md), [Original Goliath Sphinx](../people/original-goliath-sphinx.md), or [Open Threads](../open-threads.md). | | Riversmeet Menagerie / old mage school and internal rooms | Updated [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); room details in [Minor Places from Day 46](../places/minor-places-day-46.md). | | Hartwall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | | Coalmount Hills portal | Preserved in cleaned narrative; existing prison/barrier context. | | Dunensend, Tradesmells, Snowsorrow, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pine Springs, Hartwall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | | Salt pot safe, sequence `6/11/10/13/7`, beast ledger, Noxia necklace, relief map, musical lock, Evocation circle, jellyfish brooch, Magic Missile scroll, purple-crystal sword, note `propell`, snowglobe, cakes, potions, Storm Orb, mushroom pieces, Draconic warning, scratched Amoursorate orb, `lost` rug, ruby messages, lost ring, power armour, deputy badges, sending stones, jade resources, hexagon coins, dark grey rose, silver chain with green pendant, mirror | Added to [Minor Items from Day 46](../items/minor-items-day-46.md); Storm Orb and Amoursorate orb also updated in [Void Spheres](../items/void-spheres.md); Ruby messages updated in [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | -| Spells, visions, and magical effects | Preserved in cleaned narrative; plot-bearing effects added to [Open Threads](../open-threads.md). | +| Spells, visions, and magical effects | Preserved in cleaned narrative; memory-alteration clarification added to [Original Goliath Sphinx](../people/original-goliath-sphinx.md) and [Open Threads](../open-threads.md). | | Strategic resources and plans | Preserved in cleaned narrative; Hartwall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 8b9ab42..fa512d5 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -21,7 +21,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Ruby Eye, Envi / Envy, Joy, Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | -| Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | +| Ennuyé's fifth ring / Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | | Offering responses, statue inscriptions, Trixus ring inscription, Badger phrase | [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | | Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Hartwall, Emmerane and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index ff93c46..d344117 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -36,6 +36,8 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md + - data/5-retrospective/day-46-original-goliath-sphinx.md --- # Barrier @@ -66,6 +68,8 @@ The Barrier is the central protective shield, dome, or containment system around - [Bleakstorm](../places/bleakstorm.md) warned that trips outside the Barrier could be difficult and could send people back in time at a cost. - Day 43 says the Barrier may have been made for noble and proud reasons but was possibly bad; [Trixus](../people/trixus.md) did not like it, and a spell within the Barrier interfered with memory restoration. - Day 44 old-school history says [Bright](../people/valententhide.md) does not work linearly in time, old mages used routes through doors and tower tunnels, and the party reached a room above the Air common room on the other side of the Barrier. +- Day 46 clarifies that the altered [Original Goliath Sphinx](../people/original-goliath-sphinx.md) was used to alter the memories of everyone inside the Dome. +- After the invisible memory entity tied to the altered Sphinx was defeated, memories were restored. ## Timeline @@ -87,6 +91,7 @@ The Barrier is the central protective shield, dome, or containment system around - `day-42`: Ashkellon blessings expose a tiny hole in the Barrier, while Ruby Eye clarifies ring activation and Joy's inability to leave. - `day-43`: Trixus identifies a memory-interfering spell inside the Barrier at Riversmeet. - `day-44`: Old mage-school routes and Bright-related time effects show more historical Barrier-adjacent mechanisms. +- `day-46`: The altered [Original Goliath Sphinx](../people/original-goliath-sphinx.md) and its invisible memory entity are defeated, restoring memories affected by the Dome-wide memory alteration. ## Related Entries @@ -97,6 +102,7 @@ The Barrier is the central protective shield, dome, or containment system around - [Barrier Observatory](../places/barrier-observatory.md) - [Gods' Bargains Behind the Barrier](gods-bargains-behind-the-barrier.md) - [Grand Towers](../places/grand-towers.md) +- [Original Goliath Sphinx](../people/original-goliath-sphinx.md) ## Open Questions @@ -108,4 +114,4 @@ The Barrier is the central protective shield, dome, or containment system around - Can the divine bargains be renegotiated without worsening infertility, barrier sickness, or prisoner exploitation? - What is the strategic consequence of the new Grand Towers Barrier? - Can the tiny hole revealed at Ashkellon be safely expanded, repaired, or used? -- What spell at Riversmeet interferes with memory restoration inside the Barrier? +- Who altered the original Goliath Sphinx into the Dome-wide memory mechanism? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index dbca730..7eb9cad 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -109,7 +109,9 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Bug Hunter](people/bug-hunter.md) - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) +- [Anastasia](people/anastasia.md) - [Bynx](people/bynx.md) +- [Original Goliath Sphinx](people/original-goliath-sphinx.md) - [Anadreste](people/anadreste.md) - [Verdigrim](people/verdigrim.md) - [Anya Blakedurn](people/anya-blakedurn.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 8bd4dd0..c24e379 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -51,7 +51,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Silver serpent pendant talisman | party | `day-35` | `data/4-days-cleaned/day-35.md` | Found on the snake-bodied boss; magical talisman described as +1 cleric cash rolls [unclear] with Noxia catch spells. | | Bob's shell | party | `day-35` | `data/4-days-cleaned/day-35.md` | Given by Skum when he appeared to rescue Elementarium. | | Snowflake coin | Eliana / party | `day-36` | `data/4-days-cleaned/day-36.md` | Lord Bleakstorm gave a one-use portal coin to Bleakstorm. | -| Envi's fifth ring | Dirk | `day-42` | `data/4-days-cleaned/day-42.md` | Given by Anastasia; by 15:00 the party could attune to three of the rings. | +| Ennuyé's fifth ring | Dirk | `day-42` | `data/4-days-cleaned/day-42.md` | Given by Anastasia; by 15:00 the party could attune to three of the rings. | | Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Guradwal picture; later Garadwal's feather functioned as one-person communication. | | Papa'e Munera black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | | Garadwal's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadwal. | diff --git a/data/6-wiki/items/minor-items-day-46.md b/data/6-wiki/items/minor-items-day-46.md index 8533c63..3b1fbad 100644 --- a/data/6-wiki/items/minor-items-day-46.md +++ b/data/6-wiki/items/minor-items-day-46.md @@ -20,7 +20,7 @@ sources: | Snowsorrow snowglobe, cakes, and potions | Used or sought for Alteration-room access and size changes. | Rollup. | | Storm Orb | Retrieved from the Weather room by changing weather, using Shape Water, and charging the orb with lightning. | [Void Spheres](void-spheres.md). | | Mushroom pieces | Mushroom entity wanted five pieces planted a mile apart, earthwise from a river, after five years. | Rollup/open thread. | -| Ancient Draconic warning runes | Warned of a memory-destroying creature and forgotten spell before the battle. | Rollup/open thread. | +| Ancient Draconic warning runes | Warned of the altered original Goliath Sphinx / memory-destroying creature and forgotten spell before the battle. | [Original Goliath Sphinx](../people/original-goliath-sphinx.md), [Void Spheres](void-spheres.md). | | Scratched Amoursorate orb | The only unlit orb after the creature fight; had a tiny scratch. | [Void Spheres](void-spheres.md), open thread. | | Rug saying `lost` | Found in multiple languages near the skull-and-ruby-eyes orb. | Rollup/open thread. | | Ruby messages | Errol hid Rubyeye/Squeal-related messages, including `loss of everything` and `Bread & Circus`. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md), open thread. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 99a1fd6..55948aa 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -11,7 +11,7 @@ sources: | Item or resource | Context | Outcome | |---|---|---| -| Envi's fifth ring, ring-reflection voice, three-ring attunement | Anastasia gave Dirk the fifth ring; Invar heard `ring of the betrayer`. | [Rings of Joy, Ennuyé, and Dirk](rings-of-joy-ennuyé-and-dirk.md), inventory/open thread. | +| Ennuyé's fifth ring, ring-reflection voice, three-ring attunement | Anastasia gave Dirk the fifth ring; Invar heard `ring of the betrayer`. | [Rings of Joy, Ennuyé, and Dirk](rings-of-joy-ennuyé-and-dirk.md), inventory/open thread. | | Black-feather communication brick and bird | Three Finger Dune Shwelter's resistance communication device. | Party Inventory unclear custody / [Ashkellon](../places/ashkellon.md). | | Linen basket, dirty soap, new linen, towel pile, dagger in Araks's back | Ashkellon worker-rescue details. | Rollup/status. | | Domain of Pengalis Goliath coin, old tower coins, dragon bone-chip currency, Goliath / Brass City / Dumnen / Snowsorrow currencies | Tower and treasure-hall currencies. | Party Treasury / rollup. | diff --git "a/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" "b/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" index 434efcc..7f5193a 100644 --- "a/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" +++ "b/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" @@ -5,6 +5,7 @@ aliases: - Joy's Teddy Ring - Dirk's Ring - Ennuyé's ring + - Ennuyé's fifth ring - Envi's fifth ring - ring of the betrayer first_seen: day-05 @@ -29,7 +30,7 @@ Several rune rings connect [Joy](../people/joy.md), [Ennuyé](../people/ennuyé. - Dirk's ring glowed when placed on a statue with another ring. - Ennuyé wore five rings. - Ennuyé's small ring was described as `a sacrifice made to live eternal, father & daughter`. -- On `day-42`, Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. +- On `day-42`, [Anastasia](../people/anastasia.md) gave Dirk Ennuyé's fifth ring; by 15:00 the party could attune to three of the rings. - In Ashkellon, a voice addressed Invar as wearing `the ring of the betrayer`, and a featureless woman took damage in the ring's reflection. - Ruby Eye said the rings activate in `the Barrier` so Joy cannot leave and taught the party ring lore as proof of identity. @@ -38,12 +39,13 @@ Several rune rings connect [Joy](../people/joy.md), [Ennuyé](../people/ennuyé. - `day-05`: The party finds Joy's teddy ring and Dirk's similar ring becomes significant. - `day-06`: Ring, pact, clone, and Joy grave clues converge. - `day-16`: Ennuyé's ring and five-ring history deepen the sacrifice theme. -- `day-42`: Envi's fifth ring, three-ring attunement, the `ring of the betrayer` voice, and Ruby Eye's Barrier activation explanation become active clues. +- `day-42`: Ennuyé's fifth ring, three-ring attunement, the `ring of the betrayer` voice, and Ruby Eye's Barrier activation explanation become active clues. ## Related Entries - [Joy](../people/joy.md) - [Ennuyé](../people/ennuyé.md) +- [Anastasia](../people/anastasia.md) - [Barrier Observatory](../places/barrier-observatory.md) - [Barrier](../concepts/barrier.md) - [Valententhide / Valentenhule](../people/valententhide.md) diff --git a/data/6-wiki/items/void-spheres.md b/data/6-wiki/items/void-spheres.md index ec0f79e..673e862 100644 --- a/data/6-wiki/items/void-spheres.md +++ b/data/6-wiki/items/void-spheres.md @@ -12,6 +12,7 @@ last_updated: day-46 sources: - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md + - data/5-retrospective/day-46-original-goliath-sphinx.md --- # Void Spheres @@ -33,13 +34,15 @@ The void spheres are a set of eight containment or power objects discovered thro - The party opened the kitchen salt pot with `6/11/10/13/7`, recovered salt, and then followed clues toward Weather and Herbs. - In the Weather room, the party changed the room between temperate and storm weather, used Shape Water, and charged an orb with lightning to gain the Storm Orb. - Placing the orbs in their relevant slots created a slight glow and changed the locked door to show ancient Draconic runes warning of a memory-destroying creature and a forgotten spell. -- After the battle, four doors appeared in the map room and Amoursorate's orb was the one not lit; it had a tiny scratch. +- The warned creature was the [Original Goliath Sphinx](../people/original-goliath-sphinx.md), stolen and altered when the Dome was created and used to alter memories across the Dome. +- After the battle and the defeat of the invisible entity, four doors appeared in the map room and Amoursorate's orb was the one not lit; it had a tiny scratch. ## Related Entries - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) - [Garadwal](../people/garadwal.md) +- [Original Goliath Sphinx](../people/original-goliath-sphinx.md) ## Open Questions diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index a55098c..5036179 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -171,11 +171,11 @@ sources: - Who are the Tarnished, what is Verdigren, and what is hidden fifteen miles below Tradesmells? - What is Metatous's incomplete soul, and why did Morgana's reincarnation produce Garadwal instead? - What are Limos Vita, the mushroom organism, and the cat-horned flesh bag spreading mushroom pieces? -- What escaped after the memory-destroying creature died in the map room, and why did the party forget it while it fled? +- Who stole and altered the [Original Goliath Sphinx](people/original-goliath-sphinx.md) when the Dome was created, and how exactly was it used to rewrite memories across the Dome? - Why is Amoursorate's orb scratched and unlit, and what does `look after my son` mean for Dothral / Joshua? - What did Squeal really mean by asking for `the loss of everything`, and why did a message saying `Bread & Circus` impersonate Rubyeye? - What did the lost ring remove from Dirk and Geldrin, and can compassion or curiosity be restored? -- Who or what caused the Day 46 memory flood, and why did Invar and Eliana remember Morgana as more familiar than expected? +- After the invisible entity was defeated and memories were restored on Day 46, why did Invar and Eliana remember Morgana as more familiar than expected? - Who is controlling Riversmeet through false officials, lamias, rats, jade, altered memories, and the town-hall passages? - Which prison near Snowsorrow holds the Hartwall artifact, and how does it affect Hartwall's memory work? - What is the purpose of the 50,000 gp jade cache from the boat, and how does it connect to Terrance's wife's jade earrings and the 500 gp jade order? diff --git a/data/6-wiki/people/anastasia.md b/data/6-wiki/people/anastasia.md new file mode 100644 index 0000000..625a22b --- /dev/null +++ b/data/6-wiki/people/anastasia.md @@ -0,0 +1,49 @@ +--- +title: Anastasia +type: person +aliases: + - Anastasia + - Anestasia + - Goliath queen lady +first_seen: day-42 +last_updated: day-46 +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-46.md +--- + +# Anastasia + +## Summary + +Anastasia is a Goliath queen and resistance leader whose relationship with [Dirk](dirk.md) is important to the Goliath liberation arc. + +## Known Details + +- On Day 42, Anastasia first appeared as a large female dragonborn, then revealed herself as the Goliaths' queen lady. +- She and her neighbours were working with the resistance around Ashkellon. +- Anastasia gave Dirk Ennuyé's fifth ring, after which the party could attune to three of the rings. +- On Day 43, Dirk, Eliana, and Morgana took Hartwall to meet Anastasia. +- Anastasia was leading restored Goliaths, worried about Verdigren's whereabouts, and trying to create armies to attack. +- The party arranged a pincer movement on Vathkell with Anastasia and Dirk's father's army. +- Anastasia sent her bird to Cardonald so Cardonald could come to the party for the teleportation circle to Riversmeet. +- Dirk and Anastasia spent the night together and had a good night. +- On Day 46, a Dunner-door vision showed Anastasia chained while Lodest was surrounded by vulture men. + +## Relationship With Dirk + +Anastasia is tied directly to Dirk's path to free his people. She gives Dirk Ennuyé's fifth ring, works with the restored Goliaths, coordinates military action with Dirk's father's army, and has a personal relationship with Dirk. + +## Related Entries + +- [Dirk](dirk.md) +- [Ashkellon](../places/ashkellon.md) +- [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md) +- [Original Goliath Sphinx](original-goliath-sphinx.md) +- [Bynx](bynx.md) + +## Open Questions + +- What is Anastasia's current state after the Day 46 vision of her chained? +- How will Anastasia and Dirk's relationship affect the Goliath liberation arc? diff --git a/data/6-wiki/people/attabre.md b/data/6-wiki/people/attabre.md index 2a2b723..7da7c06 100644 --- a/data/6-wiki/people/attabre.md +++ b/data/6-wiki/people/attabre.md @@ -11,8 +11,10 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-57.md + - data/5-retrospective/day-46-original-goliath-sphinx.md --- # Attabre @@ -30,6 +32,8 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, - Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. - Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. - Day 44 mentions Hannah as a priestess of Attabre and Bynx as the baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. +- The [Original Goliath Sphinx](original-goliath-sphinx.md) was the Sphinx meant for the Goliaths. It was stolen and altered when the Dome was created, then used to alter memories across the Dome. +- The Sphinx aspect of that altered creature reincarnated as [Bynx](bynx.md). - Day 47 showed a toy figure of Attabre in a Grand Towers memory box, with an elven body and lion's head; Bynx said Attabre was his father. - Trixus, Benu, and Garadwal are Bynx's brothers. Anadreste is Bynx's sister, guardian of the white dragons, and sacrificed herself to become part of them. - Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. @@ -45,6 +49,7 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, - [Benu](benu.md) - [Garadwal](garadwal.md) - [Bynx](bynx.md) +- [Original Goliath Sphinx](original-goliath-sphinx.md) - [Anadreste](anadreste.md) - [Eliana](eliana.md) - [Icefang](icefang.md) diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index b49c68f..51c95a9 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -12,18 +12,21 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-56.md + - data/5-retrospective/day-46-original-goliath-sphinx.md --- # Bynx ## Summary -Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. Like all sphynxes, Bynx is a child of [Attabre](attabre.md). +Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. Like all sphynxes, Bynx is a child of [Attabre](attabre.md). Bynx is the reincarnated Sphinx aspect of the [Original Goliath Sphinx](original-goliath-sphinx.md), the memory-destroying creature stolen and altered when the Dome was created. ## Known Details - On `day-46`, Morgana recovered the baby sphynx / goliath child after Kasha tried to claim it as alternative payment; the spell completed too quickly, as if another power also cast it. - Earlier Day 44 school history described Bynx as the baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. +- The Sphinx aspect of the altered original Goliath Sphinx was what reincarnated as Bynx after the Day 46 Menagerie battle. +- The original Goliath Sphinx had been stolen and altered when the Dome was created, then used to alter memories across the Dome. - On `day-47`, the sphynx grew quickly, asked many questions, played in Hartwall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. - On `day-47`, Bynx told Eliana, "I wasn't born green," connected the green change to jade, and remembered brothers now. - Bynx identified the lion-headed elven toy figure of Attabre in a Grand Towers memory box as his father and broke the box. @@ -40,6 +43,7 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - [Garadwal](garadwal.md) - [Anadreste](anadreste.md) - [Attabre](attabre.md) +- [Original Goliath Sphinx](original-goliath-sphinx.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Sunsoreen](../places/sunsoreen.md) - [Minor Figures from Day 47](minor-figures-day-47.md) @@ -47,6 +51,6 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r ## Open Questions - What removed Anadreste's trace from the white dragon, and what does that mean for Icefang's descendants Eliana and Lady Elissa Hartwall? -- Why did Bynx's reincarnation complete too quickly, and which power helped? +- How much of the original Goliath Sphinx remains in Bynx after reincarnation? - Were Trixus, Benu, and Garadwal captured by the dome activation, and can they be released without collapsing other prisons? - Why was Bynx behind the Grand Towers Barrier with Trixus, Benu, and Garadwal? diff --git a/data/6-wiki/people/dirk.md b/data/6-wiki/people/dirk.md index b562c26..6206dc1 100644 --- a/data/6-wiki/people/dirk.md +++ b/data/6-wiki/people/dirk.md @@ -10,10 +10,15 @@ first_seen: day-01 last_updated: day-57 sources: - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-41.md - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-52.md - data/4-days-cleaned/day-57.md + - data/5-retrospective/day-46-original-goliath-sphinx.md --- # Dirk @@ -28,6 +33,11 @@ Dirk is a player character played by Laura M. He is one of the original party me - Day 1 also records Dirk seeing a rat around the time an unidentified fifth human warrior vanished from memory. - Dirk often consults ancestors for guidance, including asking what would happen if the party released the Valententhide-like figure and whether the party could defeat Browning as they were. - Dirk's family and people are recurring concerns: Dirk Sr told Dirk to see his sister Ingris, and Bridget later said Dirk was on the path to free his people. +- Dirk's path to freeing his people is now understood as the wider Goliath liberation and restoration arc: freeing Goliaths from dragon control, supporting Dirk Sr and [Anastasia](anastasia.md)'s resistance, reclaiming Ashkellon / the Goliath tower, restoring memories, and restoring the Sphinx protector stolen from the Goliaths. +- The party freed Goliaths from tents and camps, learned of generations serving dragons, and supported Dirk Sr's plan to gather armies from Salvation. +- In Ashkellon, the party helped the resistance, killed Emmeredge, triggered blessings that armed, shielded, and healed the Goliaths, and later coordinated with [Anastasia](anastasia.md) for a pincer movement against Vathkell. +- Anastasia is important to Dirk personally and politically: she gave him Ennuyé's fifth ring, helped coordinate Goliath resistance, and spent the night with him on Day 43. +- The Day 46 Menagerie battle revealed that the [Original Goliath Sphinx](original-goliath-sphinx.md) had been stolen and altered when the Dome was created, used to alter Dome-wide memories, then defeated so memories could be restored and its Sphinx aspect could reincarnate as [Bynx](bynx.md). - On Day 57, Dirk spoke Aquan to Globule in the whirlpool and later asked the ancestors whether the party would land safely in the death realm. - Queen Mooncoral gave the party a sending stone and ring of fire resistance after the merfolk rescue. @@ -35,11 +45,14 @@ Dirk is a player character played by Laura M. He is one of the original party me - [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md) - [Joy](joy.md) +- [Anastasia](anastasia.md) +- [Ashkellon](../places/ashkellon.md) +- [Original Goliath Sphinx](original-goliath-sphinx.md) +- [Bynx](bynx.md) - [Globule](globule.md) - [Queen Mooncoral](queen-mooncoral.md) - [Bridget's Doors](../concepts/bridgets-doors.md) ## Open Questions -- What exactly is Dirk's path to freeing his people? - What is the future fishing expedition Bridget warned him not to forget? diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index eea4b07..1452b6d 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -52,7 +52,7 @@ Ennuyé, previously called Thomas in the old Riversmeet mage school, and later r - The Mother repurposed Envi's clone in Envi's lab, and her spellbook used the same cipher and spells as Envi's. - Enwi's gloves were later located in the Goliath Tower in the Oasis, implying Enwi died and went there without being released. - Day 42 council lore said Envi might be trapped, but whose side he was on remained uncertain, and that Envi had been part of deals with dark demons. -- Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. +- Anastasia gave Dirk Ennuyé's fifth ring; by 15:00 the party could attune to three of the rings. - Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices were made to keep Joy safe and eternal. - Day 43 says Wroth trapped Envy in Lady Evalina Hartwall's head the same way Envy is in Ruby Eye's, suggesting Envy can be contained in people or minds. - Day 44 places Ennuyé, then called Thomas, in the old Riversmeet mage school: he was an eighteen-year-old human in detention with Hannah, was considered a bad influence by Mama Cardonald, recognized Geldrin as touched by the lady of destruction, and was researching dark magic. diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index a9b0e43..fa1a13e 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -39,7 +39,7 @@ Joy was a tiefling child and daughter of [Ennuyé](ennuyé.md), connected to the - In the Ashkellon library sequence, Joy warned that `they've got him` and told the party to go, probably referring to Ruby Eye. - Day 43 records Joy's dislike of Emi's dark-skinned elf apprentice. - Day 44 notes Joy in the old school context around Ennuyé / Thomas, Hannah, and Cardonald's daughter. -- On Day 46, an illusion of Joy appeared beyond the map table after the memory-destroying creature died, saying she was there because the party had met her and that she was lost and always had been. +- On Day 46, an illusion of Joy appeared beyond the map table after the altered [Original Goliath Sphinx](original-goliath-sphinx.md) died, saying she was there because the party had met her and that she was lost and always had been. - Day 47 clarifies that Ennuyé sacrificed his wife Hannah Joy so Joy could live, but the attempt failed because Joy could not exist if her mother did not exist. - Hartwall lab memory rooms preserved Joy-labelled tea-set papers and confirmed Hannah Joy, Ennuyé's wife, had been erased from existence. diff --git a/data/6-wiki/people/minor-figures-day-46.md b/data/6-wiki/people/minor-figures-day-46.md index a4aacb8..b36abaa 100644 --- a/data/6-wiki/people/minor-figures-day-46.md +++ b/data/6-wiki/people/minor-figures-day-46.md @@ -22,7 +22,7 @@ This rollup keeps one-off, uncertain, and supporting named figures from Day 46 s | Emeraldus | Wondered to be one of Garadwal's children during the Garadwal reincarnation sequence. | Rollup/open thread. | | Amoursorate | Linked to the scratched unlit orb and asked the party to look after her son. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | | Squeal | Source behind Errol's possession and Rubyeye-message confusion; asked for `the loss of everything` rather than weather through the Barrier. | Rollup/open thread. | -| Sierra, Lodest, Anastasia | Seen through a Dunner door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | Rollup/open thread. | +| Sierra, Lodest, Anastasia | Seen through a Dunner door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | [Anastasia](anastasia.md) / rollup/open thread. | | Platinum | Cardonald's cat; warned that Errol was possessed by one of Squeal's things and headed toward Joshua. | Rollup/open thread. | | Dothral / Joshua | Construct- or soul-linked figure aware for twenty years; woke near Rhime watches after being propelled through a door. | Rollup/open thread. | | Chorus magpie | Landed on Morgana, said The Chorus sent it, and said the Chorus can now help. | [The Chorus](the-chorus.md) / rollup. | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index ee906f4..48482aa 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -21,7 +21,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Three Finger Dune Shwelter | Ashkellon resistance contact and former slave with black-feather communication brick. | Rollup/status; [Ashkellon](../places/ashkellon.md). | | Araks, Zekish, [uncertain: Arswales], Minthwe | Throne-room and worker-shift figures in Ashkellon. | Rollup/status; Araks killed. | | Badger | Baby hidden in linen basket; proposed name `Badger born in freedom`. | NPC Status and rollup. | -| Anastasia | Goliath queen lady; gave Dirk Envi's fifth ring and coordinated resistance. | Rollup/status. | +| Anastasia | Goliath queen lady; gave Dirk Ennuyé's fifth ring, coordinated resistance, and has an important relationship with Dirk. | Standalone [Anastasia](anastasia.md) and status. | | Pengalis | Named on Goliath coin as Domain of Pengalis. | Places/items rollups; identity unresolved. | | Sefu, Holdhum, Tor, Attabo, El [uncertain: corna] / Bridge, Seara, Scorcher, [uncertain: Shielded armel] | Goliathified god statues and offering responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md); gods rollup via [Gods' Bargains](../concepts/gods-bargains-behind-the-barrier.md). | | Igraine, [uncertain: Adilth], elderly human man, dwarf man, pregnant elven woman | White-roses cider vision figures. | Rollup/open thread. | diff --git a/data/6-wiki/people/original-goliath-sphinx.md b/data/6-wiki/people/original-goliath-sphinx.md new file mode 100644 index 0000000..a1fb6a6 --- /dev/null +++ b/data/6-wiki/people/original-goliath-sphinx.md @@ -0,0 +1,44 @@ +--- +title: Original Goliath Sphinx +type: sphinx +aliases: + - original Sphinx meant for the Goliaths + - memory-destroying creature + - altered original Goliath Sphinx + - 40-foot memory-destroying creature +first_seen: day-46 +last_updated: day-46 +sources: + - data/4-days-cleaned/day-46.md + - data/5-retrospective/day-46-original-goliath-sphinx.md +--- + +# Original Goliath Sphinx + +## Summary + +The original Goliath Sphinx was the Sphinx meant for the Goliaths, stolen and altered long ago when the Dome was created. It became the memory-destroying creature held down in the Riversmeet Menagerie / old mage school, and its Sphinx aspect was later reincarnated as [Bynx](bynx.md). + +## Known Details + +- The creature behind the Day 46 orb-room warning was the original Sphinx meant for the Goliaths. +- It had been stolen and altered long ago when the Dome was created. +- It was used to alter the memories of everyone inside the Dome. +- In the Menagerie / old mage school, it appeared as a forty-foot alien, squelchy creature with an anguished humanoid face. +- [Mr Moreley](../places/riversmeet-menagerie-and-old-mage-school.md) was the spectral dragon holding the creature down. +- During the battle, an invisible entity escaped and caused forced forgetting, but the entity was defeated and memories were restored. +- The Sphinx aspect of the altered creature was what reincarnated as [Bynx](bynx.md). + +## Related Entries + +- [Bynx](bynx.md) +- [Attabre](attabre.md) +- [Garadwal](garadwal.md) +- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) +- [Barrier](../concepts/barrier.md) +- [Void Spheres](../items/void-spheres.md) + +## Open Questions + +- Who stole and altered the original Goliath Sphinx when the Dome was created? +- How much of the original Sphinx remains in Bynx after reincarnation? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 90e3901..d6049c7 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -187,7 +187,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Ulfarun | remaining Dollarmen leader | `data/4-days-cleaned/day-40.md` | Became next in command after boss died; Gnoll Longfang tried to stab him. | | Grinan, Hayes, and Searu's settlement | temporary allies/hosts | `data/4-days-cleaned/day-41.md` | Granted hospitality and advised seeking those wronged by the dragon. | | Three Finger Dune Shwelter | resistance guide/contact | `data/4-days-cleaned/day-42.md` | Ashkellon resistance member and Emeredge's dune dweller; agreed to help find resistance. | -| Anastasia | Goliath queen/resistance ally | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Gave Dirk Envi's fifth ring; later coordinated restored Goliaths and a pincer movement on Vathkell. | +| [Anastasia](anastasia.md) | Goliath queen/resistance ally; important relationship with Dirk | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md`, `data/4-days-cleaned/day-46.md` | Gave Dirk Ennuyé's fifth ring; later coordinated restored Goliaths and a pincer movement on Vathkell. Day 46 vision showed her chained. | | [Galimma, the Peridot Queen](galimma-peridot-queen.md) | information broker, dangerous ally | `data/4-days-cleaned/day-42.md` | Offered intelligence in return for being left alone to live on her own terms. | | [Queen Mooncoral](queen-mooncoral.md) | new merfolk ally | `data/4-days-cleaned/day-57.md` | Came with armoured merfolk to serve the party after the merbaby rescue and gave a sending stone and ring of fire resistance. | diff --git a/data/6-wiki/places/ashkellon.md b/data/6-wiki/places/ashkellon.md index ac5db45..9e4a73c 100644 --- a/data/6-wiki/places/ashkellon.md +++ b/data/6-wiki/places/ashkellon.md @@ -30,6 +30,7 @@ Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city - The tower contained skull arches, Goliathified god statues, offering bowls, prison rooms, a library, map rooms, a Noxia chamber, treasure hall, and elemental or dragon prisoners. - Emmeredge died during the day-42 Noxia-chamber battle, and Ashkellon Goliaths gained weapons, shields, and healing when blessings activated. - On `day-43`, Benu appeared there, Trixus was released, Garadwal was banished, and the party recovered barrier tools. +- Ashkellon is a major step in Dirk's path to freeing his people: the party aided the Goliath resistance, weakened dragon control, activated Goliath blessings, and later coordinated with [Anastasia](../people/anastasia.md) and Dirk Sr for a pincer movement against Vathkell. ## Related Entries @@ -38,6 +39,8 @@ Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city - [Benu](../people/benu.md) - [Garadwal](../people/garadwal.md) - [Noxia](../people/noxia.md) +- [Dirk](../people/dirk.md) +- [Anastasia](../people/anastasia.md) ## Open Questions diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md index cbe0c53..aee08fb 100644 --- a/data/6-wiki/places/minor-places-day-46.md +++ b/data/6-wiki/places/minor-places-day-46.md @@ -11,7 +11,7 @@ sources: |---|---|---| | Old mage-school kitchen, drama classroom, hall, first-year dorm, Evocation, Elemental Lore, Alteration, Weather, Herbs | Day 46 rooms explored while completing the old school / orb sequence. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md). | | Cathedral / Hartwall / Valententhide's home route | Broom misfire opened to a cathedral-like place, felt like Hartwall and Valententhide's home. | Rollup/open thread. | -| Basement map room and orb room | Site of eight-divot map, orb placement, memory-destroying creature battle, and Joy illusion. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](../items/void-spheres.md). | +| Basement map room and orb room | Site of eight-divot map, orb placement, the altered original Goliath Sphinx battle, invisible memory entity defeat, and Joy illusion. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](../items/void-spheres.md), [Original Goliath Sphinx](../people/original-goliath-sphinx.md). | | Dunensend ray | Corridor rug image showed Garadwal and the word `Terror`. | Rollup; [Garadwal](../people/garadwal.md). | | Tradesmells underground hideout | Tarnished hideout said to be fifteen miles below Tradesmells. | Rollup/open thread. | | Snowsorrow | Snowglobe source and later area near the prison where the Hartwall artifact may be hidden. | Rollup/open thread. | diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index 2a9deff..45a3c42 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -14,6 +14,7 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md + - data/5-retrospective/day-46-original-goliath-sphinx.md --- # Riversmeet Menagerie and Old Mage School @@ -33,7 +34,9 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Ennuyé, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Torlish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. Thomas was Ennuyé's earlier name before he changed it. - Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, Bynx as a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. - On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadwal's reincarnation. -- The school contained or released a memory-destroying creature and an invisible escaping entity; the party's memories were blanked and later flooded back after they protected a glowing thing in linked rooms. +- The school contained the [Original Goliath Sphinx](../people/original-goliath-sphinx.md), stolen and altered long ago when the Dome was created and used to alter memories across the Dome. +- Mr Moreley was the spectral dragon holding the altered Sphinx down during the orb-room battle. +- During the battle, an invisible entity escaped and made the party forget it, but the entity was defeated; the party's memories were restored after they protected a glowing thing in linked rooms. - Day 46 also connected the school to Riversmeet's current town-hall infiltration, because mind magic used by the infiltrators began malfunctioning after something happened at the school. ## Related Entries @@ -43,6 +46,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - [Valententhide / Valentenhule](../people/valententhide.md) - [Noxia](../people/noxia.md) - [Void Spheres](../items/void-spheres.md) +- [Original Goliath Sphinx](../people/original-goliath-sphinx.md) ## Open Questions @@ -50,5 +54,5 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - What are the eight spheres, and who created or hid them? - What happened to Hannah after being wiped from time and space? - What is the current state of the twenty wizards who locked down the Menagerie? -- What memory-destroying entity escaped after the orb-room battle, and did it cause or worsen the Riversmeet mind-magic failure? +- Who stole and altered the original Goliath Sphinx when the Dome was created? - What is the relationship between Willowispa, Mother, the Tarnished, and the hidden objects in the school? diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 680cc50..cf9d8c2 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -91,7 +91,7 @@ sources: - `day-43`: Goldenswell and Hartwall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. -- `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. +- `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats the altered [Original Goliath Sphinx](people/original-goliath-sphinx.md) and its invisible memory entity, restores memories, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. - `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre.md) as his father, [Anadreste](people/anadreste.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. - `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. -
774ced6Ennuyé/Thomasby Laura Mostert
data/4-days-cleaned/day-57.md | 4 ++-- data/6-wiki/people/eliana.md | 2 +- "data/6-wiki/people/ennuy\303\251.md" | 3 ++- data/6-wiki/people/kasha.md | 2 +- data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md | 2 +- data/6-wiki/places/stonerampart-earthwise.md | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-)Show diff
diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index bb6f206..0c69b08 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -104,7 +104,7 @@ They landed outside a hole in another throne room. A goat man on the throne, big Throngore sent them to a path ending at a Dracula-style castle, with armies fighting near a tower like a memory of a fight: goats on one side, wasp humanoids on the other. The party tried to walk off the path while still following it. A signpost pointed one way toward the prison; Whel looked like a broken-off arrow. There was a hidden pathway [unclear] [uncertain: sea shell], and another way had a single sea shell, which they chose. A cockroach climbed onto Morgana and said it was the wrong way while nodding, so they continued. Shylow stopped and spoke to them, said he had something on his horns, rubbed dirt on them, believed they were goat people, and accepted names beginning with S. The prison disappeared, fog pressed around them, and a building appeared and grew huge. A giant purple crystal topped its spire, surrounded by thousands of blue wisps, with two wasp people at the door. -Trying to circle the building revealed dead and invisible wasp bodies after Dotharl cast See Invisibility. The party found fifteen black coins that wailed like the Harley pack of doom and put them all on one wasp body. Farther around was a smashed-in door and an irritated goat man who had been waiting for them. Inside were many prison cells. `[uncertain: Shevolt]` recognized Eliana, malfunctioned, and returned. A familiar dread made Eliana feel they had been there before. When asked his purpose, he said he was there to free a fellow goat named Fred, and the party decided to kill him. The leader said Eliana was a prisoner who had been stolen. When hit by necrotic damage, Eliana briefly became a silver dragonborn with ribbons on the horns and a teddy on the belt. A rock guy was in the cell next to "mine." Eliana's mother had killed him and dedicated him to Kasha; he had not liked Stone Rampart or Eliana at first but grew to like them. The keys to the prisons were visible on the leader's belt. +Trying to circle the building revealed dead and invisible wasp bodies after Dotharl cast See Invisibility. The party found fifteen black coins that wailed like the Harley pack of doom and put them all on one wasp body. Farther around was a smashed-in door and an irritated goat man who had been waiting for them. Inside were many prison cells. `[uncertain: Shevolt]` recognized Eliana, malfunctioned, and returned. A familiar dread made Eliana feel they had been there before. When asked his purpose, he said he was there to free a fellow goat named Fred, and the party decided to kill him. The leader said Eliana was a prisoner who had been stolen. When hit by necrotic damage, Eliana briefly became a silver dragonborn with ribbons on the horns and a teddy on the belt. Stone Rampart, the nearby rock guy, was in the cell next to "mine." Eliana's mother had killed him and dedicated him to Kasha; he had not liked Eliana at first but grew to like her. The keys to the prisons were visible on the leader's belt. The notes list gods or god-like names and counts: Kasha; Throngore 4/13; Shylow; Sjorra; Lam 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. In one cell a thorn-beard elf, mortal, called Eliana darling and remembered going to the moon with Eliana's mother. He was Lord Briarthorn. The Water Bull had his memories back but could not reach the merbabies because he could not enter the sea water. Eliana entered the water and shouted for Globule, who came and helped free them. Kasha tried to break through the ceiling, and God Bull defied her, saying he would take his realm back. Globule told Geldrin he was ready; Geldrin rang the bell, and the party reappeared in the throne room. Haze said something smelled changed. @@ -170,7 +170,7 @@ Hydran told the party to leave the beaten path in the dark plane; Throngore told Throngore wants a prisoner freed and does not want Air to retake his throne. The party found Lord Briarthorn and the Water Bull / God Bull in the prison, but the identity of the prisoner Throngore meant and what freeing Briarthorn means remain unresolved. -The death-realm prison shows Eliana may once have been imprisoned there, stolen from a cell near a rock guy killed by Eliana's mother and dedicated to Kasha. `[uncertain: Shevolt]`, Fred, the prison keys, and Stone Rampart remain unclear. +The death-realm prison shows Eliana may once have been imprisoned there, stolen from a cell near Stone Rampart, the rock guy killed by Eliana's mother and dedicated to Kasha. `[uncertain: Shevolt]`, Fred, the prison keys, and Stone Rampart remain unclear. Queen Mooncoral and her merfolk now owe the party for righting the greatest wrong to their people, unknown to them until recently. The first merfolk birth occurred an hour before her arrival, and she gave a sending stone and ring of fire resistance. diff --git a/data/6-wiki/people/eliana.md b/data/6-wiki/people/eliana.md index 6bba49c..2030b95 100644 --- a/data/6-wiki/people/eliana.md +++ b/data/6-wiki/people/eliana.md @@ -39,7 +39,7 @@ Eliana is a main player character played by Kirsty, who is also the note taker. - Attabre said Eliana was killed for getting in the way and being strong-willed; Lady Elissa Hartwall accepted the spells, while Eliana did not. - Icefang got Lady Elissa Hartwall out and then fell into slumber. - Necrotic damage in Throngore's prison briefly changed Eliana into a silver dragonborn with ribbons on the horns and a teddy on the belt. -- A nearby rock guy said Eliana's mother killed him and dedicated him to Kasha; he grew to like Stone Rampart or Eliana. +- The nearby rock guy was [Stone Rampart](../places/stonerampart-earthwise.md). Eliana's mother killed him and dedicated him to Kasha; he grew to like Eliana. ## Related Entries diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index 195a662..eea4b07 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -35,7 +35,7 @@ sources: ## Summary -Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one of the figures who made the [Barrier](../concepts/barrier.md), Joy's father, and a source of containment tampering tied to the first crack. +Ennuyé, previously called Thomas in the old Riversmeet mage school, and later recorded as Envoi and uncertainly as Enoi or Enoin, was one of the figures who made the [Barrier](../concepts/barrier.md), Joy's father, and a source of containment tampering tied to the first crack. ## Known Details @@ -56,6 +56,7 @@ Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one - Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices were made to keep Joy safe and eternal. - Day 43 says Wroth trapped Envy in Lady Evalina Hartwall's head the same way Envy is in Ruby Eye's, suggesting Envy can be contained in people or minds. - Day 44 places Ennuyé, then called Thomas, in the old Riversmeet mage school: he was an eighteen-year-old human in detention with Hannah, was considered a bad influence by Mama Cardonald, recognized Geldrin as touched by the lady of destruction, and was researching dark magic. +- Thomas was Ennuyé's earlier name before he changed it. - Ruby Eye recruited Geldrin into a group including Everard, Thomas / Ennuyé, and Valenth around the eye-removal final project. - Day 47 identifies Hannah Joy as Ennuyé's erased wife and says a sentient door had brothers at Ennuyé's lab and `[unclear: aprosur]`. - Day 48 says Rubyeye believed Ennuyé had a body stored somewhere, perhaps Goalmost Falls, and records infernal-like doorknob writing reminiscent of Ennuyé's lab. diff --git a/data/6-wiki/people/kasha.md b/data/6-wiki/people/kasha.md index 92903ca..35b2337 100644 --- a/data/6-wiki/people/kasha.md +++ b/data/6-wiki/people/kasha.md @@ -23,7 +23,7 @@ Kasha is a soul-associated power whose bargains and realm pressure matter to Gel - Geldrin asked how to escape his pact with Kasha to get Guardwell's soul; Attabre said Kasha is not bound like the gods, but will do everything she can. - In Kasha's realm, she would be much more capable than on the Mortal realm. - Throngore said Kasha could not see the party unless told they were in his realm. -- Eliana's mother had killed a rock guy and dedicated him to Kasha. +- Eliana's mother had killed Stone Rampart, the nearby rock guy in the death-realm prison, and dedicated him to Kasha. - Kasha tried to break through the ceiling during the Water Bull / God Bull and merbaby rescue. ## Related Entries diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index 7615441..2a9deff 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -30,7 +30,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - On `day-44`, the party reached Riversmeet, found Ruby Eye's melted house ruins and gravestone, and joined [Lady Igraine of Riversmeet](../people/lady-igraine-riversmeet.md)'s siege outside the Menagerie. - The Menagerie grounds had broken cages for griffon, dragon, wolf, and human subjects and a wall of force or similar effect. - Inside, the party entered old-school time or planes: apothecary, infirmary, head teacher's office, Divination, transmutation, study hall, common rooms, lessons, Air common room, tower tunnels, classrooms, and astronomy. -- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Ennuyé, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Torlish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. +- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Ennuyé, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Torlish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. Thomas was Ennuyé's earlier name before he changed it. - Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, Bynx as a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. - On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadwal's reincarnation. - The school contained or released a memory-destroying creature and an invisible escaping entity; the party's memories were blanked and later flooded back after they protected a glowing thing in linked rooms. diff --git a/data/6-wiki/places/stonerampart-earthwise.md b/data/6-wiki/places/stonerampart-earthwise.md index 080ec32..5279926 100644 --- a/data/6-wiki/places/stonerampart-earthwise.md +++ b/data/6-wiki/places/stonerampart-earthwise.md @@ -19,7 +19,7 @@ Stonerampart Earthwise is a mapped shire town in the northeastern mountains, nor ## Known Details -- Earlier notes use Stone Rampart in war and Eliana-related memory contexts. +- Earlier notes use Stone Rampart in war and Eliana-related memory contexts. In Eliana's death-realm prison memory, Stone Rampart was the nearby rock guy killed by Eliana's mother and dedicated to Kasha; he grew to like Eliana. - The map gives the place-name spelling as Stonerampart Earthwise. ## Related Entries -
7ae2886Corretionsby Laura Mostert
data/2-pages/117.txt | 13 +++-- data/2-pages/182.txt | 32 ++++++----- data/2-pages/183.txt | 2 +- data/2-pages/190.txt | 26 ++++----- data/2-pages/191.txt | 14 ++--- data/2-pages/193.txt | 14 ++--- data/3-days/day-32.md | 13 +++-- data/3-days/day-43.md | 62 +++++++++++----------- data/3-days/day-44.md | 28 +++++----- data/4-days-cleaned/day-32.md | 12 ++--- data/4-days-cleaned/day-43.md | 16 +++--- data/4-days-cleaned/day-44.md | 24 ++++----- data/6-wiki/aliases.md | 8 +-- data/6-wiki/clues/day-47-coverage-audit.md | 4 +- data/6-wiki/clues/day-57-coverage-audit.md | 4 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 8 +-- .../clues/known-passwords-and-inscriptions.md | 3 +- data/6-wiki/concepts/elemental-prisons.md | 2 +- .../concepts/gods-bargains-behind-the-barrier.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/inventories/party-inventory.md | 2 +- data/6-wiki/items/minor-items-day-47.md | 2 +- data/6-wiki/open-threads.md | 8 +-- .../people/{bynxs-sister.md => anadreste.md} | 10 ++-- .../people/{attabre-altabre.md => attabre.md} | 6 ++- data/6-wiki/people/benu.md | 2 +- data/6-wiki/people/bynx.md | 10 ++-- data/6-wiki/people/eliana.md | 5 +- data/6-wiki/people/garadwal.md | 4 +- data/6-wiki/people/icefang.md | 9 ++-- data/6-wiki/people/lady-elissa-hartwall.md | 4 +- data/6-wiki/people/minor-figures-days-42-44.md | 4 +- data/6-wiki/people/papae-munera.md | 10 ++-- data/6-wiki/people/trixus.md | 2 +- data/6-wiki/people/valententhide.md | 2 +- data/6-wiki/people/valenth-cardonald.md | 7 ++- data/6-wiki/places/brass-city.md | 2 +- data/6-wiki/places/minor-places-day-57.md | 2 +- data/6-wiki/places/minor-places-days-42-44.md | 2 +- data/6-wiki/places/riversmeet.md | 2 +- data/6-wiki/places/sunsoreen.md | 4 +- data/6-wiki/sources.md | 10 ++-- data/6-wiki/timeline.md | 2 +- 43 files changed, 202 insertions(+), 198 deletions(-)Show diff
diff --git a/data/2-pages/117.txt b/data/2-pages/117.txt index 1015610..a9a3812 100644 --- a/data/2-pages/117.txt +++ b/data/2-pages/117.txt @@ -3,13 +3,13 @@ Source: data/1-source/IMG_9780.jpg Transcription: -Lady Fatrabbit (blossom) (Halfling) - also the sheriff. +Lady Blossom Fatrabbit (Halfling) - also the sheriff of the Castle. Takes us through the Castle. - Engravings on armour is a dedication to the god of Lam. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently -as Lady Elissa Hartwall could have known it wasn't +as Lady Elissa Hartwall would have known it wasn't her wife. Lady Fatrabbit leads us to a bedroom where @@ -19,14 +19,14 @@ Suggest poison & trouble hiding her true form. Llamia - may have done it. seems like a magical poison - religious curse (Noxia?) (Great pain) -Furres stretched thin - Goldenswell removed forces +Forces stretched thin - Goldenswell request forces, wants us to help. Only noticed she has not visited her as much as she expected. She was with her when they came back from -the front lines at Hilden with a few guards. +the front lines at Highden with a few guards. Creatures they were fighting did not seem cunning enough to do this. @@ -36,9 +36,8 @@ Dull image, no light, injured, malnourished, no fleshcrafting 1 door (cell door), grey mountain stone (not seaward/Runeyend) same type of stone as the Hartwall Castle, Door looks made of wood, iron bound reinforced with an iron -grate at the top. Dungeon in Ca looks similar to this -castle. +grate at the top. Dungeon in vision looks similar to this castle. There is a dungeon in the castle & militia house. Want to check all of the Dungeons between -there and Hilden. +there and Highden. diff --git a/data/2-pages/182.txt b/data/2-pages/182.txt index 5a6f316..9e222f0 100644 --- a/data/2-pages/182.txt +++ b/data/2-pages/182.txt @@ -2,30 +2,28 @@ Page: 182 Source: data/1-source/IMG_9849.jpg Transcription: -Morgana asks where rubyeye is & nothing happens now -asks who can help find Rubyeye - a picture is -drawn of a pale dwarf with black dreadlocks - with a crown -over words say picture smudged -One more glance a death dance +Morgana asks where rubyeye is & nothing happens. +She asks who can help find Rubyeye - a picture is +drawn of a pale dwarf with black dreadlocks with a crown. +The picture smudges and words say "One more glance a death dance" -Geldrin - how do you exile Trixus? -picture of Benu & Trixus & Garadwel with 2 sphynx behind +Geldrin - how do you wake Trixus? +A picture appears of Benu & Trixus & Garadwel with 2 sphinx behind them - "a family reunited" is written underneath -One just an outline. +One Sphinx is just an outline. Geldrin then hears a whisper in his ear -"one brief look - last breath look -turns round - sees a featherless women reflected in -Invar's armor & collapse to the floor. -(Valentenshide) +"one brief look - last breath Took" +Geldrin turns round - sees a featureless woman (Valentenshide) +reflected in Invar's armor & he collapse to the floor. Book written by Benu. & 5 books in total - Goldenswell, Snowsorrow, Dumnensend, Freeport & Hartwall -Ask book for location of papael'munsera - blank page. +Ask book for location of papa e' mamara - just shows a blank page. -Tote dwarf civilization - 2nd came the dwarves first of logs & five of +Lost dwarf civilisation + 2nd came the dwarves first of tops & fire of the deep - 3 great citys of each - many lost over the years but each still exist. @@ -36,6 +34,6 @@ Benu's family names: Gardwel - name hidden on the page Trixus -I feel a hand on my hand - nothing there [vulture man] -says "in her stare honey laid bare" vulture man doesn't +I feel a hand on my hand - nothing there +[vulture man] says "in her stare Bones laid bare" vulture man doesn't remember speaking diff --git a/data/2-pages/183.txt b/data/2-pages/183.txt index bb4c794..5168c2e 100644 --- a/data/2-pages/183.txt +++ b/data/2-pages/183.txt @@ -10,7 +10,7 @@ we currently know. shows the last page - shows "The End" then shows "one more glance a death dance" -one brief look last breath look +one brief look last breath Took In her stare Bones laid bare in her gaze the end of days" diff --git a/data/2-pages/190.txt b/data/2-pages/190.txt index 11c3936..2389a69 100644 --- a/data/2-pages/190.txt +++ b/data/2-pages/190.txt @@ -5,37 +5,37 @@ Transcription: Elder comes in & Morgana tries to check him over. Stalwart - Purification ritual removed his ailment. Morgana casts lesser restoration & heals his maladies, & -goes out to heal some children. Sets up a -garden & sings a song with curing them & turns -into a crow & flys off. - Create Legend! +goes out to heal some children. She sets up a +garden & sings a song whilst curing them & then turns +into a crow & flys off. - Creates a Legend! Anastasia worried where Verdigren went to... Geldrin tries to think of a way to get Hephestus to tell -the truth. No luck & Invar carries him away. -Comes down to the ground to meet us. +the truth. He has no luck & Invar carries him away. +Morgana comes down to the ground to meet us. Ask Trixus to help the Elders communicate with Attabre. Send Anastasia's bird to Cardonald to get her to come to us for the teleport circle to Riversmeet. Cardonald appears. - Still not found Rubyeye & can't find Errol either - not on the same plane? -Cardonald says Hartwall means alot to her - which one? -Icefang - Things wouldn't be as good as they are +Cardonald says Hartwall means a lot to her - which one? +She says about Icefang - Things wouldn't be as good as they are without him. -Give Geldrin all of the teleport circles: +Cardonald gives Geldrin all of the teleport circles: - 7 prisons - no defences -- lab - ? defences +- labs - ? defences - 3 Grand Towers - factory, control room, meeting lounge - gate @ mountains earthwise of Coalmount hills (Dunnendale) - Copper mines @ Arrofarc - Impact site earthwise of Goldenswell -- Menagerie - Riversmeet -- Ashhellier -- 5 pylons - Aegis on sands - Broken. +- Menagerie at Riversmeet +- Ashkhellon +- 5 pylons - Aegis on sands is Broken. -Dirk & Anastasia have a good night! +Everyone heads to bed, Dirk & Anastasia spend the night together, they have a good night! Statue of Morgana is being built as we wake up, none of us know who it is. diff --git a/data/2-pages/191.txt b/data/2-pages/191.txt index 3fdd93f..e59ba39 100644 --- a/data/2-pages/191.txt +++ b/data/2-pages/191.txt @@ -12,8 +12,8 @@ with them so will report if anything else. One of Geldrin's scrolls is an arcane type of Draconic, mega powerful of teleport nature. -Addendum in Draconic says perhaps this will aid us in -understanding where they went for seeing aspect to it. +It says Addendum in Draconic, perhaps this will aid us in +understanding where they went, there is a far seeing aspect to it. Teleport to Riversmeet - outskirts - meadow area. Ruins of a house - looks like it was melted... no @@ -22,7 +22,7 @@ of the house - Rubyeye's house - where his wife was killed. Head over to Riversmeet. Morgana buys a load of fruit & veg on the way in. -Very hot - because he has a plot which seems to protect +The fruit is very tasty, the seller says it is because he has a plot which seems to protect from the elements - go to check it - seems like Igraine's blessing? Head closer into town & see two oxen/horse cross @@ -30,9 +30,9 @@ pulling a sideless cart with a "throne" on it & a man in just his pants and two women hanging on his sides. Kids run up to him & throw coins & say "yay it's the dragon slayer" - muscly but not useful. -Parents tell them to wait for the show - apparently he's a -wrestler - regular matchless in Riversmeet. +Their parents tell them to wait for the show - apparently he's a +wrestler - regular matches in Riversmeet. -Ask where Lady Igraine is - manor house in the centre bridge. 10:00 -Temples of Hydrum, Igraine, Larn, & Kasha - first temple to Kasha we've seen. +Ask where Lady Igraine is - her manor house in the centre bridge. 10:00 +Temples of Hydrun, Igraine, Lam, & Kasha - first temple to Kasha we've seen. Freeport guards are in the town. diff --git a/data/2-pages/193.txt b/data/2-pages/193.txt index f9431b9..2b38da4 100644 --- a/data/2-pages/193.txt +++ b/data/2-pages/193.txt @@ -5,8 +5,7 @@ Transcription: End up on the 8th floor of a tower. Not sure which one or how it happened. This is the apothecary. - Nurse is Matron Cardonald. Her -daughter is in Geldrin's year - Valent's Daughter -Arreanae - Mum. +daughter, Valenth Cardonald, is in Geldrin's year. Gremlin type creature (Janitor) takes us to the head teacher. Pictures: @@ -19,12 +18,13 @@ Office windows have views of the compass point. Chair has dragons on gold, silver, copper & a big white one at the back of them all. 4th years are the ones causing issues - They are -from Broken Bounds. They are principal Grey - letter closing the school - transfer to Grand -Towers from Browning 47AD. +from Broken Bounds. +Principal Grey - received letter closing the school, transfer to Grand +Towers - from Browning 47AD. -Jade/grey on the desk motion at points Dirk +Jade frog on the desk motion at points Dirk speaks to it in Aquan - Dribble is in there & -acts like something is swelling this energy. +acts like something is stealing his energy. Drawers open with head teacher's necklace. Water elemental - fresh - we release it & it will join us for a while around the school. @@ -34,7 +34,7 @@ Door back to the school takes us to a different room. Picture outside - eyes keep opening & closing - elderly man. Manage to move him to one side to reveal a chest which is able to be pulled out of the picture... -Invar tricks this on the other picture & manages to +Invar tries this on the other picture & manages to get the sceptre from the painting which is a key to the box. Open the box & a glowing orb (alteration) & a piece diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md index 3f848ef..780c2a7 100644 --- a/data/3-days/day-32.md +++ b/data/3-days/day-32.md @@ -230,13 +230,13 @@ strides over to us (really ornate armour) ## Page 117 -Lady Fatrabbit (blossom) (Halfling) - also the sheriff. +Lady Blossom Fatrabbit (Halfling) - also the sheriff of the Castle. Takes us through the Castle. - Engravings on armour is a dedication to the god of Lam. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently -as Lady Elissa Hartwall could have known it wasn't +as Lady Elissa Hartwall would have known it wasn't her wife. Lady Fatrabbit leads us to a bedroom where @@ -246,14 +246,14 @@ Suggest poison & trouble hiding her true form. Llamia - may have done it. seems like a magical poison - religious curse (Noxia?) (Great pain) -Furres stretched thin - Goldenswell removed forces +Forces stretched thin - Goldenswell request forces, wants us to help. Only noticed she has not visited her as much as she expected. She was with her when they came back from -the front lines at Hilden with a few guards. +the front lines at Highden with a few guards. Creatures they were fighting did not seem cunning enough to do this. @@ -263,12 +263,11 @@ Dull image, no light, injured, malnourished, no fleshcrafting 1 door (cell door), grey mountain stone (not seaward/Runeyend) same type of stone as the Hartwall Castle, Door looks made of wood, iron bound reinforced with an iron -grate at the top. Dungeon in Ca looks similar to this -castle. +grate at the top. Dungeon in vision looks similar to this castle. There is a dungeon in the castle & militia house. Want to check all of the Dungeons between -there and Hilden. +there and Highden. ## Page 118 diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index 720debf..6c24774 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -121,30 +121,28 @@ the ends of his ears & asks the book ## Page 182 -Morgana asks where rubyeye is & nothing happens now -asks who can help find Rubyeye - a picture is -drawn of a pale dwarf with black dreadlocks - with a crown -over words say picture smudged -One more glance a death dance - -Geldrin - how do you exile Trixus? -picture of Benu & Trixus & Garadwel with 2 sphynx behind +Morgana asks where rubyeye is & nothing happens. +She asks who can help find Rubyeye - a picture is +drawn of a pale dwarf with black dreadlocks with a crown. +The picture smudges and words say "One more glance a death dance" + +Geldrin - how do you wake Trixus? +A picture appears of Benu & Trixus & Garadwel with 2 sphinx behind them - "a family reunited" is written underneath -One just an outline. +One Sphinx is just an outline. Geldrin then hears a whisper in his ear -"one brief look - last breath look -turns round - sees a featherless women reflected in -Invar's armor & collapse to the floor. -(Valentenshide) +"one brief look - last breath Took" +Geldrin turns round - sees a featureless woman (Valentenshide) +reflected in Invar's armor & he collapse to the floor. Book written by Benu. & 5 books in total - Goldenswell, Snowsorrow, Dumnensend, Freeport & Hartwall -Ask book for location of papael'munsera - blank page. +Ask book for location of papa e' mamara - just shows a blank page. -Tote dwarf civilization - 2nd came the dwarves first of logs & five of +Lost dwarf civilisation + 2nd came the dwarves first of tops & fire of the deep - 3 great citys of each - many lost over the years but each still exist. @@ -155,8 +153,8 @@ Benu's family names: Gardwel - name hidden on the page Trixus -I feel a hand on my hand - nothing there [vulture man] -says "in her stare honey laid bare" vulture man doesn't +I feel a hand on my hand - nothing there +[vulture man] says "in her stare Bones laid bare" vulture man doesn't remember speaking ## Page 183 @@ -169,7 +167,7 @@ we currently know. shows the last page - shows "The End" then shows "one more glance a death dance" -one brief look last breath look +one brief look last breath Took In her stare Bones laid bare in her gaze the end of days" @@ -426,34 +424,34 @@ Arrange pincer movement on Vathkell with Dirk's dad's army. Elder comes in & Morgana tries to check him over. Stalwart - Purification ritual removed his ailment. Morgana casts lesser restoration & heals his maladies, & -goes out to heal some children. Sets up a -garden & sings a song with curing them & turns -into a crow & flys off. - Create Legend! +goes out to heal some children. She sets up a +garden & sings a song whilst curing them & then turns +into a crow & flys off. - Creates a Legend! Anastasia worried where Verdigren went to... Geldrin tries to think of a way to get Hephestus to tell -the truth. No luck & Invar carries him away. -Comes down to the ground to meet us. +the truth. He has no luck & Invar carries him away. +Morgana comes down to the ground to meet us. Ask Trixus to help the Elders communicate with Attabre. Send Anastasia's bird to Cardonald to get her to come to us for the teleport circle to Riversmeet. Cardonald appears. - Still not found Rubyeye & can't find Errol either - not on the same plane? -Cardonald says Hartwall means alot to her - which one? -Icefang - Things wouldn't be as good as they are +Cardonald says Hartwall means a lot to her - which one? +She says about Icefang - Things wouldn't be as good as they are without him. -Give Geldrin all of the teleport circles: +Cardonald gives Geldrin all of the teleport circles: - 7 prisons - no defences -- lab - ? defences +- labs - ? defences - 3 Grand Towers - factory, control room, meeting lounge - gate @ mountains earthwise of Coalmount hills (Dunnendale) - Copper mines @ Arrofarc - Impact site earthwise of Goldenswell -- Menagerie - Riversmeet -- Ashhellier -- 5 pylons - Aegis on sands - Broken. +- Menagerie at Riversmeet +- Ashkhellon +- 5 pylons - Aegis on sands is Broken. -Dirk & Anastasia have a good night! +Everyone heads to bed, Dirk & Anastasia spend the night together, they have a good night! diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md index 0536f81..b0b46b3 100644 --- a/data/3-days/day-44.md +++ b/data/3-days/day-44.md @@ -57,8 +57,8 @@ with them so will report if anything else. One of Geldrin's scrolls is an arcane type of Draconic, mega powerful of teleport nature. -Addendum in Draconic says perhaps this will aid us in -understanding where they went for seeing aspect to it. +It says Addendum in Draconic, perhaps this will aid us in +understanding where they went, there is a far seeing aspect to it. Teleport to Riversmeet - outskirts - meadow area. Ruins of a house - looks like it was melted... no @@ -67,7 +67,7 @@ of the house - Rubyeye's house - where his wife was killed. Head over to Riversmeet. Morgana buys a load of fruit & veg on the way in. -Very hot - because he has a plot which seems to protect +The fruit is very tasty, the seller says it is because he has a plot which seems to protect from the elements - go to check it - seems like Igraine's blessing? Head closer into town & see two oxen/horse cross @@ -75,11 +75,11 @@ pulling a sideless cart with a "throne" on it & a man in just his pants and two women hanging on his sides. Kids run up to him & throw coins & say "yay it's the dragon slayer" - muscly but not useful. -Parents tell them to wait for the show - apparently he's a -wrestler - regular matchless in Riversmeet. +Their parents tell them to wait for the show - apparently he's a +wrestler - regular matches in Riversmeet. -Ask where Lady Igraine is - manor house in the centre bridge. 10:00 -Temples of Hydrum, Igraine, Larn, & Kasha - first temple to Kasha we've seen. +Ask where Lady Igraine is - her manor house in the centre bridge. 10:00 +Temples of Hydrun, Igraine, Lam, & Kasha - first temple to Kasha we've seen. Freeport guards are in the town. ## Page 192 @@ -121,8 +121,7 @@ Knock 3 times on the Divination wall to get stairs. End up on the 8th floor of a tower. Not sure which one or how it happened. This is the apothecary. - Nurse is Matron Cardonald. Her -daughter is in Geldrin's year - Valent's Daughter -Arreanae - Mum. +daughter, Valenth Cardonald, is in Geldrin's year. Gremlin type creature (Janitor) takes us to the head teacher. Pictures: @@ -135,12 +134,13 @@ Office windows have views of the compass point. Chair has dragons on gold, silver, copper & a big white one at the back of them all. 4th years are the ones causing issues - They are -from Broken Bounds. They are principal Grey - letter closing the school - transfer to Grand -Towers from Browning 47AD. +from Broken Bounds. +Principal Grey - received letter closing the school, transfer to Grand +Towers - from Browning 47AD. -Jade/grey on the desk motion at points Dirk +Jade frog on the desk motion at points Dirk speaks to it in Aquan - Dribble is in there & -acts like something is swelling this energy. +acts like something is stealing his energy. Drawers open with head teacher's necklace. Water elemental - fresh - we release it & it will join us for a while around the school. @@ -150,7 +150,7 @@ Door back to the school takes us to a different room. Picture outside - eyes keep opening & closing - elderly man. Manage to move him to one side to reveal a chest which is able to be pulled out of the picture... -Invar tricks this on the other picture & manages to +Invar tries this on the other picture & manages to get the sceptre from the painting which is a key to the box. Open the box & a glowing orb (alteration) & a piece diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index ee3de88..dc8ff1b 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -50,11 +50,11 @@ Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentrat Dirk, Geldrin, and Morgana escaped with the shield crystal down the trapdoor into a house. Xinquiss called Wroth to come and help hide the crystal, and Wroth did so. Dirk, Geldrin, and Morgana tried to disguise themselves and return to the auction house. Eliana and Invar asked about them and were told about the trapdoor at 4:30. The party headed to the Castle. -At the Castle, a higher-ranking halfling general with a huge sword and ornate armour strode over. This was Lady Fatrabbit, also called Blossom, a halfling who was also the sheriff. She took the party through the Castle. The engravings on her armour were a dedication to the god of Lam. The Castle seemed busy and short-staffed. +At the Castle, a higher-ranking halfling general with a huge sword and ornate armour strode over. This was Lady Blossom Fatrabbit, a halfling who was also the sheriff of the Castle. She took the party through the Castle. The engravings on her armour were a dedication to the god of Lam. The Castle seemed busy and short-staffed. -Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Elissa Hartwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Elissa Hartwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Elissa Hartwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Elissa Hartwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. +Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Elissa Hartwall would have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Elissa Hartwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Forces were stretched thin because Goldenswell had requested forces, and Lady Elissa Hartwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Elissa Hartwall when they came back from the front lines at Highden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. -Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Hartwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. +Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Hartwall Castle. The dungeon in the vision looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Highden. Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. Eliana and Dirk searched the cells, but Lady Thorpe was not there. Fatrabbit returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. @@ -92,11 +92,11 @@ The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Re # People, Factions, and Places Mentioned -People and name-like figures mentioned include Lan, Serva, Lady Elissa Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scumbleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Invar, Laura, Skutey Galvin, Constantine Harthwall, Dirk, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Fatrabbit, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardonald, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. +People and name-like figures mentioned include Lan, Serva, Lady Elissa Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scumbleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Invar, Laura, Skutey Galvin, Constantine Harthwall, Dirk, Morgana, Eliana, Wroth, Lady Blossom Fatrabbit / Lady Fatrabbit, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardonald, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. -Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Furres, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. +Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. -Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Elissa Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Lam, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. +Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Elissa Hartwall's bedroom, the castle dungeons, the militia house, Highden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Lam, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index c7b9dd6..8b84ecf 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -27,11 +27,11 @@ The party also discussed Wroth. Wroth trapped Envy when he trapped Mama Hartwall A dwarf blacksmith pulled Invar aside and said it was good to see others lost around. He was there for other reasons, not just to sell wares, and gave Invar a box. A golden dragonborn had tomes about places the tomes had only just discovered: Ashkhellion, Goliath City, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, and Last Post Airwise. Invar opened the box slightly. It glowed bright and warm, and he closed it to open fully later. -A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown, but the words beneath were smudged. The book warned: "One more glance a death dance." Geldrin asked how to exile Trixus. The book showed Benu, Trixus, and Garadwel, with two sphinxes behind them and the words "a family reunited" underneath. One figure was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath look." He turned and saw a featherless woman reflected in Invar's armour, then collapsed to the floor. Valentenshide was noted. +A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown; the picture smudged, and the words said, "One more glance a death dance." Geldrin asked how to wake Trixus. The book showed Benu, Trixus, and Garadwel, with two sphinxes behind them and the words "a family reunited" underneath. One sphinx was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath Took." He turned and saw a featureless woman, Valentenshide, reflected in Invar's armour, then collapsed to the floor. -The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall. When the party asked the book for the location of papael'munsera, the page was blank. The party also learned about tote dwarf civilization: second came the dwarves, first of logs and five of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Gardwel with the name hidden on the page, and Trixus. The vulture man, or a force through him, said "in her stare honey laid bare," though he did not remember speaking. +The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall. When the party asked the book for the location of papa e' mamara, it showed only a blank page. The party also learned about lost dwarf civilisation: second came the dwarves, first of tops and fire of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Gardwel with the name hidden on the page, and Trixus. Someone felt a hand on their hand, though nothing was there. The vulture man, or a force through him, said "in her stare Bones laid bare," though he did not remember speaking. -The party asked what was on page two. The elements seemed to clash; a bright light rose from the page and left a black hole, while many different elements appeared and converged into the world the party knows. The last page showed "The End," then the repeated death-rhyme: "one more glance a death dance," "one brief look last breath look," "In her stare Bones laid bare," and "in her gaze the end of days." The book slammed shut, which it had never done before. This reminded the party of Dumnensend and a children's poetry book. Morgana had the book whose last poem was that one; the second-to-last was a council meeting with plans to take out Valentenshide. +The party asked what was on page two. The elements seemed to clash; a bright light rose from the page and left a black hole, while many different elements appeared and converged into the world the party knows. The last page showed "The End," then the repeated death-rhyme: "one more glance a death dance," "one brief look last breath Took," "In her stare Bones laid bare," and "in her gaze the end of days." The book slammed shut, which it had never done before. This reminded the party of Dumnensend and a children's poetry book. Morgana had the book whose last poem was that one; the second-to-last was a council meeting with plans to take out Valentenshide. The golden dragonborn searched for dwarven lost cities and found two books written by a scholar, Lord Hawthorn, who was extracted from civilization after the death of Princess Maesthon and [uncertain: Grin gray] / [uncertain: Atltrino]. The location was in one volcano. Each book referenced the other city, and neither referenced a third. The books referenced the author's friend Ruby Eye, who was married to a princess of Grincray, but written so the reader would not believe she was really a princess of Grincray, described as a princess of the lost ones. Morgana asked a [uncertain: Shutiny] to speak to the Chorus of the Kings about the location of Grim & Cray. The answer was that the door was the entrance to both cities. @@ -71,11 +71,11 @@ An elder came in, and Morgana checked him over. Stalwart's purification ritual h Geldrin tried to think of a way to get Hephestus to tell the truth. He had no luck, and Invar carried Hephestus away. The group came down to the ground and met the others. They asked Trixus to help the elders communicate with Attabre. Anastasia's bird was sent to Cardonald to get her to come to the party for the teleportation circle to Riversmeet. Cardonald appeared. She still had not found Ruby Eye and could not find Errol either; perhaps they were not on the same plane. Cardonald said Hartwall meant a lot to her. The notes ask which one, and then mention Icefang: things would not be as good as they are without him. -Cardonald gave Geldrin all of the teleportation circles: seven prisons with no defences; a lab with uncertain defences; three Grand Towers locations, namely factory, control room, and meeting lounge; a gate at the mountains earthwise of Coalmount Hills in Dunnendale; copper mines at Arrofarc; an impact site earthwise of Goldenswell; the Menagerie at Riversmeet; Ashhellier; and five pylons, with Aegis on Sands marked broken. The day ended with the note that Dirk and Anastasia had a good night. +Cardonald gave Geldrin all of the teleportation circles: seven prisons with no defences; labs with uncertain defences; three Grand Towers locations, namely factory, control room, and meeting lounge; a gate at the mountains earthwise of Coalmount Hills in Dunnendale; copper mines at Arrofarc; an impact site earthwise of Goldenswell; the Menagerie at Riversmeet; Ashkhellon; and five pylons, with Aegis on Sands marked broken. Everyone headed to bed, and Dirk and Anastasia spent the night together and had a good night. # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papa e' mamara / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snowsorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. @@ -89,7 +89,7 @@ Items, documents, and physical resources mentioned include lost documents, the d Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. -Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine of Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. +Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for waking or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine of Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, labs, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashkhellon, and pylons. # Clues, Mysteries, and Open Threads @@ -99,7 +99,7 @@ Grimby the 3rd's story connects Klesha, a silvery-green Envoy, murdered townsfol Wroth trapped Envy in Mama Hartwall's head the way Envy is in Ruby Eye's. This suggests Envy can be contained inside people or minds, but the mechanism and current risk to Mama Hartwall and Ruby Eye are unresolved. -The scroll phrase "In her gaze, End of Days" joined the Benu book's warnings: "One more glance a death dance," "one brief look last breath look," and "In her stare Bones laid bare." These warnings must be preserved with Valentenshide / Valentenhide. +The scroll phrase "In her gaze, End of Days" joined the Benu book's warnings: "One more glance a death dance," "one brief look last breath Took," and "In her stare Bones laid bare." These warnings must be preserved with Valentenshide / Valentenhide. The auction house receipt for a massive moth picture frame, the wizard-piece chess board, and the rook resembling [uncertain: brakemen] are unexplained but may be clues. @@ -107,7 +107,7 @@ The dwarf blacksmith gave Invar the glowing box for reasons beyond selling wares The vulture man's book identified a pale dwarf with black dreadlocks and a crown as someone who could help find Ruby Eye, but the caption was smudged. The same book showed Benu, Trixus, Garadwel, and two sphinxes as "a family reunited," with one outline figure. This was later partly fulfilled, but the outline figure and exile question remain significant. -Benu's five books, the blank page for papael'munsera, and the listed family names of Anadreste, Benu, hidden Gardwel, Trixus, and one missing unnamed sibling establish a family structure that remains incomplete. +Benu's five books, the blank page for papa e' mamara, and the listed family names of Anadreste, Benu, hidden Gardwel, Trixus, and one missing unnamed sibling establish a family structure that remains incomplete. The page-two elemental clash and black hole appeared to depict world creation or current-world formation. The exact cosmology remains unclear. diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index 4880602..eb88318 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -26,19 +26,19 @@ Day 44 began with a statue of Morgana being built as the party woke up, though n Cardonald had a familiar give her a report that might help with the Howling Tombs. A group of adventurers had been tinkering around and found Hartwall's old lab and a key that might help gain access to the tombs. Cardonald's familiar was going with them and would report if anything else was discovered. -One of Geldrin's scrolls was an arcane form of Draconic and extremely powerful, with a teleportation nature. A Draconic addendum said it might help the party understand where "they" went because it had a seeing aspect. The party teleported to Riversmeet, arriving on the outskirts in a meadow area. They found the ruins of a house that looked melted rather than naturally weathered. A gravestone stood to the left of the house. This was Ruby Eye's house, where his wife had been killed. +One of Geldrin's scrolls was an arcane form of Draconic and extremely powerful, with a teleportation nature. It said "Addendum" in Draconic and might help the party understand where "they" went because it had a far-seeing aspect. The party teleported to Riversmeet, arriving on the outskirts in a meadow area. They found the ruins of a house that looked melted rather than naturally weathered. A gravestone stood to the left of the house. This was Ruby Eye's house, where his wife had been killed. -The party headed into Riversmeet. On the way, Morgana bought a load of fruit and vegetables. The weather was very hot, but one person had a plot that seemed protected from the elements. When the party checked it, it seemed like Igraine's blessing. Closer to town, they saw two oxen-horse crossbreeds pulling a sideless cart with a throne on it. A man wearing only his pants sat there with two women hanging on his sides. Children ran up, threw coins, and shouted, "yay it's the dragon slayer." He was muscly but not useful. Parents told the children to wait for the show; he was apparently a wrestler, with regular matches in Riversmeet. +The party headed into Riversmeet. On the way, Morgana bought a load of fruit and vegetables. The fruit was very tasty, and the seller said it was because he had a plot that seemed protected from the elements. When the party checked it, it seemed like Igraine's blessing. Closer to town, they saw two oxen-horse crossbreeds pulling a sideless cart with a throne on it. A man wearing only his pants sat there with two women hanging on his sides. Children ran up, threw coins, and shouted, "yay it's the dragon slayer." He was muscly but not useful. Parents told the children to wait for the show; he was apparently a wrestler, with regular matches in Riversmeet. -The party asked where Lady Igraine of Riversmeet was. They learned that her manor house was on the central bridge, and the time was 10:00. Temples to Hydrum, the goddess Igraine, Larn, and Kasha stood in town; this was the first temple to Kasha the party had seen. Freeport guards were in Riversmeet. Lady Igraine was not at the manor but at the outpost set up at the Menagerie. A strong hedge surrounded the Menagerie. Lady Igraine sat with a black dragonborn and came out of the tent to see the party. They could not get in because of a wall of force or similar effect. A magician had come to repay a favour. About twenty wizards were inside. They had recently refused inspections and prevented the militia from entering. +The party asked where Lady Igraine of Riversmeet was. They learned that her manor house was on the central bridge, and the time was 10:00. Temples to Hydrun, the goddess Igraine, Lam, and Kasha stood in town; this was the first temple to Kasha the party had seen. Freeport guards were in Riversmeet. Lady Igraine was not at the manor but at the outpost set up at the Menagerie. A strong hedge surrounded the Menagerie. Lady Igraine sat with a black dragonborn and came out of the tent to see the party. They could not get in because of a wall of force or similar effect. A magician had come to repay a favour. About twenty wizards were inside. They had recently refused inspections and prevented the militia from entering. The party tried to dispel the magic and get through. Geldrin used Mold Earth to get under the hedge and sent his familiar to look around the outside of the building. The building looked good, but many cages had signs that things had broken out, including griffon, dragon, wolf, and human cages, each with door handles. When the familiar tried to open one cage, it was frazzled. The party went through the hole Geldrin dug and entered the grounds. Invar looked into a window and disappeared. Geldrin disintegrated the door and had a vision of Valentinheide killing Emi's wife. Dirk disappeared, apparently banished. Geldrin appeared to be enrolling in mage school. The names Acroneth, Crindler, Belocoose, and a sphinx on another plane were noted. After killing an acid beast, the party entered the building. They were hit by a fireball from an invisible foe. They knocked three times on the Divination wall and got stairs. -They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter was in Geldrin's year and was Valent's daughter Arreanae. The word "Mum" was noted. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Torlish Hartwall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. +They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter, Valenth Cardonald, was in Geldrin's year. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Torlish Hartwall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. -The fourth-year students were causing issues. They were from Broken Bounds. Principal Grey had a letter closing the school and transferring students to Grand Towers from Browning, dated 47 AD. A jade or grey object on the desk moved at points. Dirk spoke to it in Aquan. Dribble was in there and acted as if something was swelling this energy. Drawers opened with the head teacher's necklace. A fresh water elemental was released and agreed to join the party for a while around the school. The infirmary and head teacher's office seemed to be on a different plane. The door back to the school led to a different room. +The fourth-year students were causing issues. They were from Broken Bounds. Principal Grey had received a letter closing the school and transferring students to Grand Towers from Browning, dated 47 AD. A jade frog on the desk moved at points. Dirk spoke to it in Aquan. Dribble was in there and acted as if something was stealing his energy. Drawers opened with the head teacher's necklace. A fresh water elemental was released and agreed to join the party for a while around the school. The infirmary and head teacher's office seemed to be on a different plane. The door back to the school led to a different room. -Outside, a picture's eyes kept opening and closing; it showed an elderly man. The party moved him aside and found a chest that could be pulled out of the picture. Invar tricked another picture and managed to get the sceptre from it, which was a key to the box. The party opened the box and found a glowing orb of alteration and a piece of paper. Geldrin removed the orb and became overwhelmed with emotion and regret for everyone killed and hurt, apparently empathy. The note read: "mine felt right here yours is under real." +Outside, a picture's eyes kept opening and closing; it showed an elderly man. The party moved him aside and found a chest that could be pulled out of the picture. Invar tried the same on another picture and managed to get the sceptre from it, which was a key to the box. The party opened the box and found a glowing orb of alteration and a piece of paper. Geldrin removed the orb and became overwhelmed with emotion and regret for everyone killed and hurt, apparently empathy. The note read: "mine felt right here yours is under real." A book on the sphinx on the other plane had been written by serpans, all [uncertain: superous]. It described a place like the party's world but different in many ways. The first chapter concerned sphinxes who teleported their city underground to protect it: a male, a female, and a goat-headed one who always spoke in rhymes. @@ -94,17 +94,17 @@ Back in Mr Moreley's room, after breaking the void out, the dragon on the wall s # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine of Riversmeet, Hydrum, the goddess Igraine, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Lady Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Torlish Hartwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Ennuyé / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. +People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine of Riversmeet, Hydrun, the goddess Igraine, Lam, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Lady Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Valenth Cardonald, the gremlin janitor, Torlish Hartwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Ennuyé / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. Groups and factions mentioned include the party, adventurers who found Hartwall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. -Places mentioned include the location of Morgana's statue, Howling Tombs, Hartwall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrum, Igraine, Larn, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snowsorrow, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. +Places mentioned include the location of Morgana's statue, Howling Tombs, Hartwall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrun, Igraine, Lam, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snowsorrow, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. Creatures and creature-like beings mentioned include oxen-horse crossbreeds, griffon, dragon, wolf, human cage subjects, the acid beast, water elemental Dribble, the fresh water elemental released by the party, four-armed vulture men, mindflayer-like wizard, gold dragon skull Mr Moreley, automations containing Thinglaens / light entities, a half-orc, orcs, gnolls, Bright and Valentenhule as elemental-plane queens, ice elementals, two green dragons including Emeraldus, the featureless woman holding Hannah, a silver dragon, the silver-green claw, Noxia-blood slime / green liquid, pixie in the green classroom object, Igraine elemental, Bynx as a baby Attabre spirit, gold / silver / copper / white dragons in the mural, baby sphinx / sixth sphinx, Mother hive for the worm, and the void entity / void orb. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowsorrow mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. +Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with far-seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade frog containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowsorrow mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Ennuyé recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. @@ -122,7 +122,7 @@ Geldrin's powerful arcane Draconic teleport / seeing scroll may reveal where "th Ruby Eye's melted house and his wife's grave are tied directly to Valentinheide killing Emi's wife. The exact sequence of Ruby Eye, Emi, wife, house, and Valentinheide remains important. -Riversmeet contains temples to Hydrum, Igraine, Larn, and Kasha; the Kasha temple is the first the party has seen, making it notable. +Riversmeet contains temples to Hydrun, Igraine, Lam, and Kasha; the Kasha temple is the first the party has seen, making it notable. The Menagerie was locked down by about twenty wizards who refused inspection. The wall of force, magician repaying a favour, broken cages for griffon / dragon / wolf / human, and invisible fireball attacker suggest active containment failures or deliberate concealment. @@ -130,9 +130,9 @@ Invar and Dirk disappeared separately during the entry, Geldrin experienced old- The names Acroneth, Crindler, Belocoose, and the sphinx on another plane appear during Geldrin's enrollment effect and should be preserved, but their identities are unclear. -Matron Cardonald, Arreanae, Valent, Torlish Hartwall, Humerous Torn, Principal Grey, and Browning all appear in the old school structure. Their relationships and exact historical dates matter for the Grand Towers / mage school history. +Matron Cardonald, Valenth Cardonald, Torlish Hartwall, Humerous Torn, Principal Grey, and Browning all appear in the old school structure. Their relationships and exact historical dates matter for the Grand Towers / mage school history. -The fresh water elemental Dribble was trapped in a jade / grey desk object and felt energy swelling. The source of the swelling energy and Dribble's longer-term role are unknown. +The fresh water elemental Dribble was trapped in a jade frog and felt as if something was stealing his energy. The source of the energy theft and Dribble's longer-term role are unknown. The alteration orb overwhelmed Geldrin with empathy and regret. The note "mine felt right here yours is under real" implies another emotion-orb location, but the meaning of "under real" is uncertain. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 45fec29..33fae6a 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -85,7 +85,7 @@ sources: - [Everard Browning](people/everard-browning.md): Everard Browning, Browning, Edward Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. - [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, Thomas, The Mage, Visage Ennuyé. -- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Matron Cardonald's daughter. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. - [Sunsoreen / Snowsorrow](places/sunsoreen.md): Sunsoreen, Snowsorrow, Snowscreen [misspelling], Snow Screen [misspelling], Snow Sorrow [spacing variant]. @@ -156,10 +156,10 @@ sources: - [Searu's Arrow](items/searus-arrow.md): Searu's Arrow, Searu's arrows, Searu's staff. - [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. - [Trixus](people/trixus.md): Trixus, Trixius, Tixun, Benu's little brother, elemental of light. -- [Attabre](people/attabre-altabre.md): Attabre, Protector of the Brass city, father of the sphinxes. -- [Anadreste](people/bynxs-sister.md): Anadreste, Annadressdey, Annadrazadey, Bynx's sister, guardian of the white dragons, white dragon guardian. +- [Attabre](people/attabre.md): Attabre, Protector of the Brass city, father of the sphinxes. +- [Anadreste](people/anadreste.md): Anadreste, Annadressdey, Annadrazadey, Bynx's sister, guardian of the white dragons, white dragon guardian. - [Galimma, the Peridot Queen](people/galimma-peridot-queen.md): Galimma, Peridot Queen. -- [Papa'e Munera](people/papae-munera.md): Papa'e Munera, papa'e munera, papael'munsera, papa I Meurina, black orb. +- [Papa'e Munera](people/papae-munera.md): Papa'e Munera, papa'e munera, papael'munsera, papa e' mamara, papa I Meurina, black orb. - [Noxia](people/noxia.md): Noxia, Noxia Beast avatar, Noxia blood, lady of destruction. - [Ashkellon](places/ashkellon.md): Ashkellon, Askellon, Ashkhellion, Ashhellier, Goliath City, Emeredge's city. - [Bleakstorm](places/bleakstorm.md): Bleakstorm, Lord Bleakstorm, Bleakstorm castle. diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index 5e2986b..8b092f2 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -9,13 +9,13 @@ sources: | Extracted subject | Coverage outcome | | --- | --- | -| Bynx / sphynx baby / goliath baby / Anadreste | Standalone [Bynx](../people/bynx.md) and [Anadreste](../people/bynxs-sister.md). | +| Bynx / sphynx baby / goliath baby / Anadreste | Standalone [Bynx](../people/bynx.md) and [Anadreste](../people/anadreste.md). | | Sunsoreen / Snowsorrow | Standalone [Sunsoreen](../places/sunsoreen.md). | | Sunsoreen Council, Council of Gold, Aurum, Hayhearn, Sophus, Orius, Silent One | Standalone [Sunsoreen Council](../factions/sunsoreen-council.md). | | Valententhide palace, house, deep-sky domain, wall of faces | Existing [Valententhide](../people/valententhide.md) updated. | | Elemental prisons, frost prison, Dorion, Tim, Geoffrey, aurora prisoner, fire rift | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; minor names also in [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Joy / Hannah / Ennuyé sacrifice | Existing [Joy](../people/joy.md) and [Ennuyé](../people/ennuyé.md) updated; Hannah in minor figures and open threads. | -| Garadwal, Argentum, Metatous, Bynx identifying Attabre as his father | Existing [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), and [Attabre](../people/attabre-altabre.md) updated. | +| Garadwal, Argentum, Metatous, Bynx identifying Attabre as his father | Existing [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), and [Attabre](../people/attabre.md) updated. | | Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Browning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Hartwall lab rooms, Pine Springs, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index be23004..e623909 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -23,9 +23,9 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Kasha, Guardwell soul pact, merbaby souls through Barrier, Kasha realm, Kasha breaking through ceiling | Added [Kasha](../people/kasha.md); updated [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Throngore, Sauver, Shylow, death realm, goat men, wasps, Air throne warning, path contradiction | Added [Throngore](../people/throngore.md); Sauver/Shylow in [Minor Figures from Day 57](../people/minor-figures-day-57.md); places in [Minor Places from Day 57](../places/minor-places-day-57.md). | | Lord Briarthorn, thorn-beard elf, moon trip with Eliana's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | -| Eliana and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana](../people/eliana.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre](../people/attabre-altabre.md). | +| Eliana and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana](../people/eliana.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre](../people/attabre.md). | | Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | -| Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | +| Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre](../people/attabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 654f0cd..8b9ab42 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -17,7 +17,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is |---|---| | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | -| Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre](../people/attabre-altabre.md). | +| Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre](../people/attabre.md). | | Ruby Eye, Envi / Envy, Joy, Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | @@ -33,7 +33,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Subject or cluster | Outcome | |---|---| | Riversmeet Menagerie / Mages College at Riversmeet as upcoming memory-spell site | Standalone page created and updated from day 43-44: [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md). | -| Papa'e Munera / papael'munsera / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | +| Papa'e Munera / papa e' mamara / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | | Garadwal feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadwal banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | | Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | | Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md), [Ashkellon](../places/ashkellon.md), and open threads. | @@ -49,8 +49,8 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Noxia green liquid / blood, lady of destruction, Noxia-return-to-desert clue | [Noxia](../people/noxia.md), [Minor Items](../items/minor-items-days-42-44.md), inventory, and open threads. | | Void orb, eight spheres, Squall's Belt, Brotor's gift, Aurises, kitchen seasoning lead | Standalone item page: [Void Spheres](../items/void-spheres.md); inventory and clues updated. | | Ruby Eye, Browning / Everard, Icefang / Altith, Joy, Attabre, Grand Towers, Barrier, Bleakstorm | Existing pages updated. | -| Cardonald variants, Arreanae, Torlish Hartwall / Hartwall, Humerous Torn, Principal Grey, Dribble, Ennuyé / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Lady Evalina Hartwall / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | -| Howling Tombs, Hartwall's old lab, temples of Hydrum / Igraine / Larn / Kasha, Far Grove, Waterrose, Great Farmouth, Blackhold, Brass City, Pri-moon, second moon, Tri-moon, Squall's Belt | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), standalone pages where appropriate. | +| Cardonald variants, Valenth Cardonald, Torlish Hartwall / Hartwall, Humerous Torn, Principal Grey, Dribble, Ennuyé / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Lady Evalina Hartwall / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | +| Howling Tombs, Hartwall's old lab, temples of Hydrun / Igraine / Lam / Kasha, Far Grove, Waterrose, Great Farmouth, Blackhold, Brass City, Pri-moon, second moon, Tri-moon, Squall's Belt | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), standalone pages where appropriate. | | Hartwall lab key, Draconic teleport/seeing scroll, alteration orb, janitor broom, power armour, automaton core, Larn chain/cat collars, Treamon's-skull core, Mr Moreley's book, telescope, empty glass orb, dust instructions | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), [Void Spheres](../items/void-spheres.md). | | Morgana statue, incomplete report, Ruby Eye wife/house sequence, Menagerie lockdown, displacement rules, old school historical date, future knowledge, Ruby Eye final project, automations, Evalina/Avalina identity, Hannah erasure, silver-green claw, Bynx as the baby Attabre spirit, sixth sphinx, lunar truth, next sphere leads | [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 37442f3..8a62630 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -124,9 +124,8 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `A gift crafted for a friend is the key to it all` | `data/4-days-cleaned/day-42.md` | Stitcher bowl smoke image response showing Ruby Eye and Lute. | | `A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` | `data/4-days-cleaned/day-42.md` | Runes on Trixus's four brass rings. | | `The father wishes freedom for all his children` | `data/4-days-cleaned/day-42.md` | Attabre offering-bowl response after Snowsorrow coin. | -| `In her gaze, End of Days`; `One more glance a death dance`; `one brief look last breath look`; `In her stare Bones laid bare`; `in her gaze the end of days` | `data/4-days-cleaned/day-43.md` | Valentenshide / Valentenhide death-rhyme cluster from scroll and Benu book. | +| `In her gaze, End of Days`; `One more glance a death dance`; `one brief look last breath Took`; `In her stare Bones laid bare`; `in her gaze the end of days` | `data/4-days-cleaned/day-43.md` | Valentenshide / Valentenhide death-rhyme cluster from scroll and Benu book. | | `a family reunited` | `data/4-days-cleaned/day-43.md` | Benu book image of Benu, Trixus, Garadwel, and two sphinxes, one only an outline. | -| `in her stare honey laid bare` | `data/4-days-cleaned/day-43.md` | Vulture man / force phrase; he did not remember speaking. | | `Battery is the clue` | `data/4-days-cleaned/day-44.md` | Draconic book for Ruby Eye in Mr Moreley's room. | | `mine felt right here yours is under real` | `data/4-days-cleaned/day-44.md` | Note with alteration / empathy orb. | | `Taken my form give it back` | `data/4-days-cleaned/day-44.md` | Silver dragon / silver-green claw voice connected to Avalina. | diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 32a2ced..58523a8 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -53,7 +53,7 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Day 42 Ashkellon prison rooms contained air, light, goat, sphinx, copper-dragon, mirror, and other entities behind barriers, including [Trixus](../people/trixus.md), Steven, Hephestus, and a copper dragon from Snowsorrow. - Emri was still imprisoned and missing soul-parts including guilt, misery, and possibly sorrow, compassion, Joy, and mercy; the elves had learned to remove soul-parts in an attempt to perfect themselves. - Day 43 says Hephestos was only his soul, wanted a pact, and may have been asked to attack the dome; Trixus could help with memories but a spell inside the Barrier interfered. -- Cardonald's Day 43 teleportation-circle list included seven prisons with no defences, a lab with uncertain defences, Grand Towers factory/control/meeting lounge, Menagerie, Ashhellier, and five pylons. +- Cardonald's Day 43 teleportation-circle list included seven prisons with no defences, labs with uncertain defences, Grand Towers factory/control/meeting lounge, Menagerie, Ashkhellon, and five pylons. - Day 44 recovered historical material on emotional elimination, automations, and a possible core or sphere network from the old mage school. - Day 47 Hartwall lab records show frost-prison runes disappearing, an elemental puzzle placed into an elemental ball, and an ice elemental ball later given to a fire elemental before the fireplace rift was dispelled and closed. - The frost prison contained lightning and snowflake doors, handleless doors, black sap or rubber seals, a semicircular oracle room, an iced snake door, and prisoners or door heads named Dorion, Tim, and Geoffrey. diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index 95bca4e..d65d3e2 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -54,7 +54,7 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - [Grand Towers](../places/grand-towers.md) - [Bridget's Doors](bridgets-doors.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) -- [Attabre](../people/attabre-altabre.md) +- [Attabre](../people/attabre.md) - [Valententhide / Valentenhule](../people/valententhide.md) ## Open Questions diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 7c0ee65..dbca730 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -110,7 +110,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) - [Bynx](people/bynx.md) -- [Anadreste](people/bynxs-sister.md) +- [Anadreste](people/anadreste.md) - [Verdigrim](people/verdigrim.md) - [Anya Blakedurn](people/anya-blakedurn.md) - [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index b178e7c..8bd4dd0 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -55,7 +55,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Guradwal picture; later Garadwal's feather functioned as one-person communication. | | Papa'e Munera black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | | Garadwal's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadwal. | -| Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, lab, Grand Towers sites, Dunnendale gate, Arafar mines, Goldenswell impact site, Menagerie, Ashhellier, and pylons. | +| Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, labs, Grand Towers sites, Dunnendale gate, Arafar mines, Goldenswell impact site, Menagerie, Ashkhellon, and pylons. | | Void orb / sphere | party | `day-44` | `data/4-days-cleaned/day-44.md` | Left after the void entity recognized Brotor's eye and vanished; party needs eight spheres total. | | Powerful charged shield crystal and scrolls | party | `day-57` | `data/4-days-cleaned/day-57.md` | Given by Infestus's wife before Brass City travel; exact scrolls not listed. | | Scroll of Fireball | Geldrin | `day-57` | `data/4-days-cleaned/day-57.md` | Found at the cat tavern table. | diff --git a/data/6-wiki/items/minor-items-day-47.md b/data/6-wiki/items/minor-items-day-47.md index 741ec06..dfdb67e 100644 --- a/data/6-wiki/items/minor-items-day-47.md +++ b/data/6-wiki/items/minor-items-day-47.md @@ -15,7 +15,7 @@ sources: | Key from Mr Browning | Sentient door said Mr Browning left with a key. | [Everard Browning](../people/everard-browning.md). | | Stuffed "bears" | Actually humans, gnomes, and halflings; bore the phrase "Here always Never Nowhere all Harth." | Rollup / inscription. | | Dragon-bed key | Key on the dragon bed's bottom with six possible Celestial words. | Rollup. | -| Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a toy figure of Attabre with an elven body and lion's head; Bynx said Attabre was his father. | Rollup, [Bynx](../people/bynx.md), and [Attabre](../people/attabre-altabre.md). | +| Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a toy figure of Attabre with an elven body and lion's head; Bynx said Attabre was his father. | Rollup, [Bynx](../people/bynx.md), and [Attabre](../people/attabre.md). | | `Tunnels of Love` | Dwarf porn found on a dragon-sized bed. | Rollup. | | White rose powder | Smelled of visions. | Rollup. | | Green jade heart pendant | Silver necklace with jade heart pendant found in a false-bottom cutlery box. | Rollup / jade thread. | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index a2abb67..a55098c 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -135,7 +135,7 @@ sources: - What is the larger status of [Noxia](people/noxia.md) after the Noxia Beast avatar died, and is Noxia blood causing corrupted lands? - What emptied Tradesmells of dragons and Goliaths? - What are Emri / Emi's missing soul-parts or emotions, where are they, and can [Trixus](people/trixus.md) restore them? -- Why did [Attabre](people/attabre-altabre.md) put Trixus to sleep, and why is Attabre angry with Benu? +- Why did [Attabre](people/attabre.md) put Trixus to sleep, and why is Attabre angry with Benu? - What day is Dirk missing according to [Bleakstorm](places/bleakstorm.md)'s time device? - What cost comes with Bleakstorm's time travel, and who is his lost friend [uncertain: leechus]? - What does Bridge require to free Perodita, and what does releasing [Valententhide](people/valententhide.md) under the god rule mean? @@ -146,12 +146,12 @@ sources: - What blocks lost knowledge retrieval, and is it tied to flesh-crafting wands, Barrier magic, or the Riversmeet memory-interference spell? - What are the Heathmoor plagues if they are not barrier sickness, and why are the people not healing with the land? - Why are Ruby Eye and Errol possibly not on the same plane? -- What do Cardonald's teleportation-circle destinations reveal about undefended prisons, the lab, Grand Towers, Menagerie, Ashhellier, and broken Aegis-On-Sands? +- What do Cardonald's teleportation-circle destinations reveal about undefended prisons, labs, Grand Towers, Menagerie, Ashkhellon, and broken Aegis-On-Sands? - Who built Morgana's statue, and how fast did her Goliath-child healing become legend? - What is in Hartwall's old lab, and how does its key help access the Howling Tombs? - How should Geldrin's arcane Draconic teleport/seeing scroll be used to understand where `they` went? - What exactly happened at Ruby Eye's melted house, his wife's grave, and Valentinheide killing Emi's wife? -- Why was the Riversmeet Kasha temple notable, and what local role do Hydrum, Igraine, Larn, and Kasha temples play? +- Why was the Riversmeet Kasha temple notable, and what local role do Hydrun, Igraine, Lam, and Kasha temples play? - What are the rules of the Riversmeet Menagerie / old mage-school displacement, time, and planar rooms? - Who are Acroneth, Crindler, Belocoose, and the sphinx on another plane? - What does the empathy alteration orb mean by `mine felt right here yours is under real`? @@ -186,7 +186,7 @@ sources: - Who was removed from the Hartwall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Hartwall's daughters? - What do Argathum's urn, Lady Elissa Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Elissa Hartwall's sacrifices? - Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Browning do with the key after Avalina left? -- What removed [Anadreste](people/bynxs-sister.md)'s trace from the white dragon, given that her sacrifice should leave a trace in all white dragons and descendants? +- What removed [Anadreste](people/anadreste.md)'s trace from the white dragon, given that her sacrifice should leave a trace in all white dragons and descendants, including Icefang's children Eliana and Lady Elissa Hartwall? - What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? - Which trophy-plinth artifacts are still missing, including the Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, and Crown of Thorns? - Can the dome or prison network be powered safely without exploiting elementals, and what prisoners remain behind the frost-prison doors? diff --git a/data/6-wiki/people/bynxs-sister.md b/data/6-wiki/people/anadreste.md similarity index 77% rename from data/6-wiki/people/bynxs-sister.md rename to data/6-wiki/people/anadreste.md index e9b4c41..f595f80 100644 --- a/data/6-wiki/people/bynxs-sister.md +++ b/data/6-wiki/people/anadreste.md @@ -20,7 +20,7 @@ sources: ## Summary -Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s sister, one of the sphynx children of [Attabre](attabre-altabre.md), and the guardian of the white dragons. +Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s sister, one of the sphynx children of [Attabre](attabre.md), and the guardian of the white dragons. ## Known Details @@ -30,20 +30,24 @@ Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s s - Anadreste blessed [Papa'e Munera](papae-munera.md), the fragmented black orb from Invar's box. - Anadreste sacrificed herself to become part of the white dragons, turning them into good dragons. - Because of that sacrifice, all white dragons and their descendants should have a trace of her present. +- This explains why Eliana can also be Attabre's daughter: Icefang is Eliana and Lady Elissa Hartwall's white dragon father, and Anadreste is one of Attabre's Sphinx children. - On `day-47`, a Sunsoreen palace door was carved with a female sphynx face identified as Anadreste / Bynx's sister. - Bynx later cast Truesight and found Anadreste was no longer present, with no trace of her in the white dragon. This is significant because a trace should have remained in white dragons and their descendants. ## Related Entries - [Bynx](bynx.md) -- [Attabre](attabre-altabre.md) +- [Attabre](attabre.md) - [Trixus](trixus.md) - [Benu](benu.md) - [Garadwal](garadwal.md) +- [Icefang](icefang.md) +- [Eliana](eliana.md) +- [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [Papa'e Munera](papae-munera.md) - [Sunsoreen / Snowsorrow](../places/sunsoreen.md) ## Open Questions -- What removed Anadreste's trace from the white dragon? +- What removed Anadreste's trace from the white dragon, and what does that mean for Icefang's descendants Eliana and Lady Elissa Hartwall? - Does her absence mean the white dragons' goodness, guardianship, or inheritance has been damaged? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre.md similarity index 89% rename from data/6-wiki/people/attabre-altabre.md rename to data/6-wiki/people/attabre.md index 906fb0f..2a2b723 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre.md @@ -35,6 +35,7 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, - Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. - Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. - Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Lady Elissa Hartwall accepted the spells. +- Eliana is also Attabre's daughter because Icefang is her white dragon father and Anadreste, one of Attabre's Sphinx children, sacrificed herself into the white dragons. White dragons and their descendants should therefore carry Anadreste's trace. - Attabre warned that divine gifts before the next realm would be hard to choose and that if the party died there they would not get back up. - Attabre said bringing down the dome was the party's choice, would weaken Throngore, and would not bother gods except those who benefit. @@ -44,7 +45,9 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, - [Benu](benu.md) - [Garadwal](garadwal.md) - [Bynx](bynx.md) -- [Anadreste](bynxs-sister.md) +- [Anadreste](anadreste.md) +- [Eliana](eliana.md) +- [Icefang](icefang.md) - [Papa'e Munera](papae-munera.md) - [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) @@ -52,4 +55,3 @@ Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, - What task did Attabre give Trixus, and why was Trixus not going to achieve it? - What does `rule one, but from afar` mean, and is it the origin of the current god bargains? -- Why is Eliana also Attabre's daughter? diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md index a74c693..3968bd9 100644 --- a/data/6-wiki/people/benu.md +++ b/data/6-wiki/people/benu.md @@ -51,7 +51,7 @@ Benu is a Dunensend ally or authority figure later revealed as one of Attabre's - [Trixus](trixus.md) - [Garadwal](garadwal.md) - [Bynx](bynx.md) -- [Attabre](attabre-altabre.md) +- [Attabre](attabre.md) - [Ashkellon](../places/ashkellon.md) ## Open Questions diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index bb591b6..b49c68f 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -18,7 +18,7 @@ sources: ## Summary -Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. Like all sphynxes, Bynx is a child of [Attabre](attabre-altabre.md). +Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. Like all sphynxes, Bynx is a child of [Attabre](attabre.md). ## Known Details @@ -29,7 +29,7 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - Bynx identified the lion-headed elven toy figure of Attabre in a Grand Towers memory box as his father and broke the box. - Trixus, Benu, and Garadwal are Bynx's brothers. - The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. -- [Anadreste](bynxs-sister.md), Bynx's sister and the guardian of the white dragons, appeared as a carved female sphynx face on a Sunsoreen palace door. +- [Anadreste](anadreste.md), Bynx's sister and the guardian of the white dragons, appeared as a carved female sphynx face on a Sunsoreen palace door. - In Sunsoreen, Bynx explained that where pure elemental planes meet, they combine. - Bynx cast Truesight and found Anadreste was no longer present, with no trace of her in the white dragon. This is significant because she sacrificed herself to become part of the white dragons, turning them good, so all white dragons and their descendants should retain a trace of her. - On Day 56, Bynx warned Dirk that his brothers were coming and to close the door. @@ -38,15 +38,15 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r ## Related Entries - [Garadwal](garadwal.md) -- [Anadreste](bynxs-sister.md) -- [Attabre](attabre-altabre.md) +- [Anadreste](anadreste.md) +- [Attabre](attabre.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Sunsoreen](../places/sunsoreen.md) - [Minor Figures from Day 47](minor-figures-day-47.md) ## Open Questions -- What removed Anadreste's trace from the white dragon? +- What removed Anadreste's trace from the white dragon, and what does that mean for Icefang's descendants Eliana and Lady Elissa Hartwall? - Why did Bynx's reincarnation complete too quickly, and which power helped? - Were Trixus, Benu, and Garadwal captured by the dome activation, and can they be released without collapsing other prisons? - Why was Bynx behind the Grand Towers Barrier with Trixus, Benu, and Garadwal? diff --git a/data/6-wiki/people/eliana.md b/data/6-wiki/people/eliana.md index 7b78118..6bba49c 100644 --- a/data/6-wiki/people/eliana.md +++ b/data/6-wiki/people/eliana.md @@ -34,6 +34,8 @@ Eliana is a main player character played by Kirsty, who is also the note taker. - The Chorus had black thread sewn through eyes and mouth; Morgana found black thread in the baby/sword context. - Bleakstorm wanted the party to save him and free Icefang's spirit, which remained in the dome because Icefang died there. - Attabre said Eliana was Icefang's daughter and also Attabre's, not just Icefang's. +- Eliana is also Attabre's daughter because of the white dragon story: Icefang is a white dragon, Anadreste sacrificed herself into the white dragons, and the Sphinx are the children of Attabre. +- Icefang, the white dragon, is Eliana and Lady Elissa Hartwall's father. - Attabre said Eliana was killed for getting in the way and being strong-willed; Lady Elissa Hartwall accepted the spells, while Eliana did not. - Icefang got Lady Elissa Hartwall out and then fell into slumber. - Necrotic damage in Throngore's prison briefly changed Eliana into a silver dragonborn with ribbons on the horns and a teddy on the belt. @@ -42,7 +44,8 @@ Eliana is a main player character played by Kirsty, who is also the note taker. ## Related Entries - [Icefang](icefang.md) -- [Attabre](attabre-altabre.md) +- [Attabre](attabre.md) +- [Anadreste](anadreste.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [The Chorus](the-chorus.md) - [Lord Briarthorn](lord-briarthorn.md) diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index fe0d3c1..363aa83 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -58,7 +58,7 @@ Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Byn - Grand Towers orb lore says Garadwal was locked downstairs, heard a chair-guy through his greater gravel children, and walked into Browning's trap. - Geldrin offered Garadwal to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. - At Coalmont Falls, an automaton introduced himself as Garaduel before activating recall protocol; this spelling is preserved as a possible variant or separate automaton identity. -- Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Attabre](attabre-altabre.md)'s children walking on earth. +- Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Attabre](attabre.md)'s children walking on earth. - Trixus, Benu, and Garadwal are Bynx's brothers. - The same book says Gardwell looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. - On Day 43, Garadwal spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. @@ -68,7 +68,7 @@ Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Byn - Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. - Garadwal sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. - After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. -- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a toy figure of [Attabre](attabre-altabre.md) that [Bynx](bynx.md) identified as his father, and diary entries saying Argentum wanted to help Garadwal fight elementals. +- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a toy figure of [Attabre](attabre.md) that [Bynx](bynx.md) identified as his father, and diary entries saying Argentum wanted to help Garadwal fight elementals. - Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadwal, while preserving uncertainty about whether the original intentions remained good. - On Day 56, Garadwal was found behind a Barrier with Trixus, Benu, and Bynx in a Grand Towers control-room side area. He was clearer, said he would repay his misdeeds by helping the party, and asked that the dome be brought down now for different reasons. - Garadwal's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Hartwall to the downfall and said Argentum died. diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 3dd546e..e1536d4 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -19,7 +19,7 @@ sources: ## Summary -Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tampering, Ruby Eye's orbs, Hartwall, and the battle near Highden. +Icefang is a white dragon connected to Rimewatch, memory tampering, Ruby Eye's orbs, Hartwall, and the battle near Highden. He is the father of Eliana and Lady Elissa Hartwall. ## Known Details @@ -36,6 +36,8 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Lady Evalina Hartwall / Mama Hartwall holding the blue ball and saying the work had to stop. - Day 57 Bleakstorm said Icefang's spirit was still in the dome because Icefang died there and asked the party to free it. - Day 57 Attabre said Eliana was Icefang's daughter as well as Attabre's, that Icefang gave them all vision, got Lady Elissa Hartwall out, and then fell to slumber. +- Icefang is the white dragon father of both Eliana and Lady Elissa Hartwall. +- Eliana's connection to Attabre follows from the white dragon story: Anadreste, one of Attabre's Sphinx children, sacrificed herself into the white dragons, so white dragons and their descendants carry her trace. ## Related Entries @@ -43,13 +45,14 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Everard Browning](everard-browning.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) +- [Eliana](eliana.md) +- [Attabre](attabre.md) +- [Anadreste](anadreste.md) ## Open Questions - Who ordered or carried out Icefang's memory tampering? - What was the `paysoil`, and why would it not work without Icefang? -- What is Icefang's exact family relationship to Hartwall? - Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snowsorrow figures? - What did Icefang mean by Dad being mad and the gods taking over Snowsorrow? - What does freeing Icefang's spirit from the dome require? -- How do Icefang, Attabre, Lady Elissa Hartwall, and Eliana's Hartwall identity fit together? diff --git a/data/6-wiki/people/lady-elissa-hartwall.md b/data/6-wiki/people/lady-elissa-hartwall.md index ce9bdfd..b21f341 100644 --- a/data/6-wiki/people/lady-elissa-hartwall.md +++ b/data/6-wiki/people/lady-elissa-hartwall.md @@ -37,11 +37,12 @@ Lady Elissa Hartwall is a regional noble or military authority connected to Hart - Eroll was used to send a message to Lady Elissa Hartwall after the Goldenswell rescue. - Lady Elissa Hartwall transformed in the courtyard and was slightly bigger than the Peridot Queen. - Lady Elissa Hartwall's Raven had exploded, and several explosions occurred across her city. -- Lady Elissa Hartwall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. +- Lady Elissa Hartwall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; at that point she did not know who her father was. - Day 42 records Lady Elissa Hartwall away airwise to help with the battle heading to Emmerane. - Day 43 records Lady Elissa Hartwall remembering Icefang, gold dragons, and her and Icefang's assault on Perodita; she also reported forces from Dumnensend, the Menagerie lockdown, Heathmoor plagues, and Goldenswell politics. - Lady Elissa Hartwall transformed into a dragon at Ashkellon to catch the party after teleportation. - Kaylara is Lady Elissa Hartwall. +- Icefang, the white dragon, is Lady Elissa Hartwall's father and Eliana's father. - Day 57 says Lady Elissa Hartwall accepted the spells while Eliana did not; Icefang got Lady Elissa Hartwall out and then fell into slumber. ## Related Entries @@ -57,5 +58,4 @@ Lady Elissa Hartwall is a regional noble or military authority connected to Hart - Which front was she fighting on, and what authority does she hold over the anti-giant response? - Was her poison or curse part of the same operation that abducted Lady Thorpe? -- What is Lady Elissa Hartwall's true parentage, and is Icefang her father? - How do Lady Elissa Hartwall's recovered memories of Icefang, gold dragons, and Perodita alter her current political or military choices? diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index b75b3f7..ee906f4 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -45,7 +45,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Wroth, Envy / Envi, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Wroth trapped Envy in Lady Evalina Hartwall's head like Envy in Ruby Eye's. | [Ennuyé](ennuyé.md). | | [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Hartwall street, receipt, chess, pub, and church details. | Rollup/open thread. | | Dwarf blacksmith, golden dragonborn, vulture man, bushy-eared elf, pale dwarf with black dreadlocks and crown | Box and Benu-book scene figures. | Rollup; pale dwarf unresolved Ruby Eye lead. | -| Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | +| Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre](attabre.md), [Papa'e Munera](papae-munera.md). | | Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | | Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcroft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | @@ -61,7 +61,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Dragon slayer wrestler and two women | Riversmeet street performer on throne cart. | Rollup. | | Black dragonborn with Igraine, Freeport guards, militia, twenty wizards | Menagerie siege. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Acroneth, Crindler, Belocoose, sphinx on another plane | Names from Geldrin's enrollment effect. | Rollup/open thread. | -| Arreanae, Valent's daughter, gremlin janitor, Torlish Hartwall / Hartwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Valenth Cardonald, gremlin janitor, Torlish Hartwall / Hartwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Serpans, four-armed vulture men, mindflayer-like wizard, Isobanne | Sphinx book and study-hall/classroom figures. | Rollup/open thread. | | Ennuyé / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Ennuyé](ennuyé.md), [Valententhide](valententhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Everard, Valenth, Brotor / Brutor, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Miana / Avalina | Student identities and old school group. | Standalone entry plus existing pages where present. | diff --git a/data/6-wiki/people/papae-munera.md b/data/6-wiki/people/papae-munera.md index 0efa674..6033022 100644 --- a/data/6-wiki/people/papae-munera.md +++ b/data/6-wiki/people/papae-munera.md @@ -4,7 +4,7 @@ type: fragmented being aliases: - papa'e munera - papael'munsera - - papael'munsera + - papa e' mamara - papa I Meurina - black orb first_seen: day-23 @@ -18,7 +18,7 @@ sources: ## Summary -Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a black orb in Invar's box, [Anadreste](bynxs-sister.md)'s blessing, and possible elemental-prison naming. +Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a black orb in Invar's box, [Anadreste](anadreste.md)'s blessing, and possible elemental-prison naming. ## Known Details @@ -26,12 +26,12 @@ Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a bl - On `day-43`, a dwarf blacksmith gave Invar a glowing warm box containing a small black orb with lava-stone racks and snake-head eyes. - The orb spoke many languages, said it had been boxed for one min moon / 300 days, and identified itself as only part of papa'e munera. - It knew where the rest of itself was and wanted the party to free him and [uncertain: unrasorak]. -- It was blessed by [Anadreste](bynxs-sister.md) and had been extracted from a lake by friends; dwarves had seen the errors of their ways and now wanted to release him. -- The Benu book's page was blank when asked for the location of papael'munsera. +- It was blessed by [Anadreste](anadreste.md) and had been extracted from a lake by friends; dwarves had seen the errors of their ways and now wanted to release him. +- The Benu book's page was blank when asked for the location of papa e' mamara. ## Related Entries -- [Attabre](attabre-altabre.md) +- [Attabre](attabre.md) - [Trixus](trixus.md) - [Elemental Prisons](../concepts/elemental-prisons.md) diff --git a/data/6-wiki/people/trixus.md b/data/6-wiki/people/trixus.md index dea3087..36db6ae 100644 --- a/data/6-wiki/people/trixus.md +++ b/data/6-wiki/people/trixus.md @@ -38,7 +38,7 @@ Trixus, also Trixius or Tixun, is Benu and Bynx's brother, one of Attabre's chil - [Benu](benu.md) - [Garadwal](garadwal.md) - [Bynx](bynx.md) -- [Attabre](attabre-altabre.md) +- [Attabre](attabre.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Ashkellon](../places/ashkellon.md) diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md index 653f4b8..a6edf07 100644 --- a/data/6-wiki/people/valententhide.md +++ b/data/6-wiki/people/valententhide.md @@ -34,7 +34,7 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - Day 32 preserved `Valententide's Betrayal` and skull visions of a featherless female associated with Throngore and darkness. - On `day-42`, a ring voice addressed Invar as wearing `the ring of the betrayer`, and Bleakstorm described Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. -- On `day-43`, the Benu book and scroll warnings preserved `One more glance a death dance`, `one brief look last breath look`, `In her stare Bones laid bare`, and `In her gaze the end of days`. +- On `day-43`, the Benu book and scroll warnings preserved `One more glance a death dance`, `one brief look last breath Took`, `In her stare Bones laid bare`, and `In her gaze the end of days`. - On `day-44`, Geldrin saw Valentinheide killing Emi's wife, and Tale of Two Sisters described Bright as the low sky and Valentenhule as the high sky whose position caused the void to open. - Valententhide held Hannah, said Bright had shown the party too much, and said Hannah had been wiped from time and space. - After the party returned, they no longer remembered Hannah's name, only an image of her turning to dust in a cave. diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index cf5450d..369257b 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -10,7 +10,6 @@ aliases: - Valenthide - Valententhide - Valent - - Arreanae's mother [uncertain] first_seen: day-20 last_updated: day-44 sources: @@ -45,8 +44,8 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - Day 32 auction art included `Valententide's Betrayal`, showing a crab claw and talon shielding Throngore over a featherless female; skull visions also showed Vallententide grabbed by a crab claw and disappearing, and later notes say Valententide had been attacked by Throngore with darkness. - Cardonald did not answer Eroll on Day 32, which was strange because Eroll contacts her directly; whether Cardonald is Cardenald is uncertain. - Day 42-44 evidence increasingly points to [Valententhide / Valentenhule](valententhide.md) as a separate high-sky or betrayed figure, but the spelling collision remains unresolved and is not silently merged. -- Day 43 Cardonald / Cardenald coordinated Ashkellon, searched unsuccessfully for Ruby Eye and Errol, and gave Geldrin teleportation circles for prisons, Grand Towers, lab, Menagerie, Ashhellier, and pylon sites. -- Day 44 old-school scenes include Matron / Nurse Cardonald, her daughter Arreanae, and Mr Cardonald, while Valenth appears in Ruby Eye's old student group. +- Day 43 Cardonald / Cardenald coordinated Ashkellon, searched unsuccessfully for Ruby Eye and Errol, and gave Geldrin teleportation circles for prisons, Grand Towers, labs, Menagerie, Ashkhellon, and pylon sites. +- Day 44 old-school scenes identify Valenth Cardonald as Matron / Nurse Cardonald's daughter and a student in Geldrin's year, while Valenth also appears in Ruby Eye's old student group. ## Timeline @@ -73,6 +72,6 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - Is Valenth the same person as Ruby Eye's best friend? - Did the object-transfer plan succeed, and if so what object contains her? - Are Valenth/Cardonal/Cardenald and Valenthide/Valententhide separate beings, a spelling collision, or a person-prison relationship? -- Is the old-school Valenth the same as Cardonald, Arreanae's parent, or another member of the same family/name cluster? +- How does the old-school Valenth Cardonald, Matron Cardonald's daughter in Geldrin's year, connect to the later Valenth/Cardonald identity cluster? - What exactly happened to her body, Silver's body, Valenta, and the sentient jewellery experiments? - What was `Valententide's Betrayal`, and is Valententide/Vallententide part of the same identity cluster as Valenth/Valenthide? diff --git a/data/6-wiki/places/brass-city.md b/data/6-wiki/places/brass-city.md index e775647..749517a 100644 --- a/data/6-wiki/places/brass-city.md +++ b/data/6-wiki/places/brass-city.md @@ -38,7 +38,7 @@ Brass City is a formerly enslaved elemental city whose current rulers are descri - [Brass City Council](../factions/brass-city-council.md) - [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) -- [Attabre](../people/attabre-altabre.md) +- [Attabre](../people/attabre.md) - [Trixus](../people/trixus.md) - [Hydran / Hydram](../people/hydran.md) diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index 617a421..25dc2d7 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -23,6 +23,6 @@ sources: | Fire realm / Azar Nuri's palace | Broken throne room and fire garden ruled by Sultan Azar Nuri. | [Azar Nuri](../people/azar-nuri.md). | | Past Brass City | Lively Mortal-plane version of Brass City with blue dragonborn, dragons, market, palace, and tapestry-maker. | [Brass City](brass-city.md). | | Igraine's field | Flowered possible afterlife where Morgana could speak with plants and retrieved the cat through animals/birds. | [Igraine](../people/igraine.md). | -| Attabre's realm | Cloakroom, sitting room, dining room, sphynx picture, birthday meal, and lore about princes and a pact at Ground Towers. | [Attabre](../people/attabre-altabre.md). | +| Attabre's realm | Cloakroom, sitting room, dining room, sphynx picture, birthday meal, and lore about princes and a pact at Ground Towers. | [Attabre](../people/attabre.md). | | Throngore's realm / death realm | Throne room, path, memory battlefield, castle, prison tower, purple crystal, and sea-water prison. | [Throngore](../people/throngore.md). | | Empty Brass City house | Party rested there after the merbaby rescue; Dirk felt someone scrying on him. | [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md index 64b7b62..85dedea 100644 --- a/data/6-wiki/places/minor-places-days-42-44.md +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -18,7 +18,7 @@ sources: | Goldenswell, Pine Springs, Hartwall, 11th Duke of Hartwall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Hartwall locations. | Rollup/open threads. | | Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise | Tomes about places the tomes had only just discovered. | Rollup/open threads; [Ashkellon](ashkellon.md) is also in this list as Goliath City. | | Grincray / Grim & Cray, Mashir, lake of Papa'e Munera, rear Ironcroft air site, Claymeadow, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | -| Riversmeet, Ruby Eye's melted house ruins and gravestone, central bridge manor house, temples of Hydrum / Igraine / Larn / Kasha | Day-44 Riversmeet investigation. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | +| Riversmeet, Ruby Eye's melted house ruins and gravestone, central bridge manor house, temples of Hydrun / Igraine / Lam / Kasha | Day-44 Riversmeet investigation. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Hartwall's old lab, Howling Tombs, Menagerie outpost, Menagerie grounds, apothecary, infirmary, head teacher's office, old classrooms, Air common room, astronomy room | Day-44 Menagerie and school spaces. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Far Grove, Waterrose, Great Farmouth, tower tunnels, Blackhold, white classroom, Brass City, room above Air common room, kitchen, Ruby Eye's old stomping ground | Historical/planar route locations in the old school. | Rollup; [Bleakstorm](bleakstorm.md), [Void Spheres](../items/void-spheres.md). | | Pri-moon, second moon, Tri-moon, Squall's Belt | Astronomy-room celestial locations or objects. | Rollup/open threads; [Void Spheres](../items/void-spheres.md). | diff --git a/data/6-wiki/places/riversmeet.md b/data/6-wiki/places/riversmeet.md index 65a22f4..76ede13 100644 --- a/data/6-wiki/places/riversmeet.md +++ b/data/6-wiki/places/riversmeet.md @@ -24,7 +24,7 @@ Riversmeet is a mapped city west of Grand Towers, tied to old mage-school histor ## Known Details - Riversmeet contains the old mage school / Menagerie site. -- Day 44 investigates Ruby Eye's melted house ruins, a central bridge manor house, and temples of Hydrum, Igraine, Larn, and Kasha. +- Day 44 investigates Ruby Eye's melted house ruins, a central bridge manor house, and temples of Hydrun, Igraine, Lam, and Kasha. - Day 57 includes a small round temple near the remains of the Riversmeet bridge and dwarven bridge. ## Related Entries diff --git a/data/6-wiki/places/sunsoreen.md b/data/6-wiki/places/sunsoreen.md index 5041166..1efc5ba 100644 --- a/data/6-wiki/places/sunsoreen.md +++ b/data/6-wiki/places/sunsoreen.md @@ -27,7 +27,7 @@ Sunsoreen is the current name of Snowsorrow, a city or palace that was originall - The archway had different runes, the building was enormous, grass and woodlands lay below, and the area was warm despite blackout time. - The Tri-moon was visible when it should not have been. - A copper dragon landed nearby and entered the building. -- A palace door was carved with a female sphynx face, identified as [Anadreste](../people/bynxs-sister.md), [Bynx](../people/bynx.md)'s sister and the guardian of the white dragons. +- A palace door was carved with a female sphynx face, identified as [Anadreste](../people/anadreste.md), [Bynx](../people/bynx.md)'s sister and the guardian of the white dragons. - The council doorway was carved with a white dragon and sphynx. - Seven settlements within one hundred miles had been absorbed under the Sunsoreen umbrella. - Sunsoreen enforces frequent new laws, job or training requirements, information control, outbreeding laws, and courtroom systems spread across more than two hundred courtrooms citywide. @@ -39,7 +39,7 @@ Sunsoreen is the current name of Snowsorrow, a city or palace that was originall - [Fishtailedge](fishtailedge.md) - [Rimewatch and the Ice Prison](rimewatch-ice-prison.md) - [Elemental Prisons](../concepts/elemental-prisons.md) -- [Anadreste](../people/bynxs-sister.md) +- [Anadreste](../people/anadreste.md) - [Tri-moon Countdown](../events/tri-moon-countdown.md) - [Minor Places from Day 47](minor-places-day-47.md) diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 7a43221..93d3ad3 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -87,12 +87,12 @@ sources: - `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). -- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre](people/attabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). -- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/bynxs-sister.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). -- `data/4-days-cleaned/day-48.md`: [Bynx](people/bynx.md), [Anadreste](people/bynxs-sister.md), [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). +- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). +- `data/4-days-cleaned/day-48.md`: [Bynx](people/bynx.md), [Anadreste](people/anadreste.md), [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index aacf9a7..680cc50 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -92,7 +92,7 @@ sources: - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre-altabre.md) as his father, [Anadreste](people/bynxs-sister.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. +- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre.md) as his father, [Anadreste](people/anadreste.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. - `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. -
0e1c6d1Name correctionsby Laura Mostert
data/2-pages/115.txt | 2 +- data/2-pages/116.txt | 10 +++--- data/2-pages/117.txt | 2 +- data/2-pages/118.txt | 6 ++-- data/2-pages/120.txt | 4 +-- data/2-pages/121.txt | 2 +- data/2-pages/122.txt | 2 +- data/2-pages/176.txt | 6 ++-- data/2-pages/177.txt | 2 +- data/2-pages/181.txt | 16 +++++----- data/2-pages/193.txt | 2 +- data/2-pages/194.txt | 2 +- data/2-pages/2.txt | 2 +- data/2-pages/202.txt | 4 +-- data/2-pages/314.txt | 2 +- data/2-pages/54.txt | 2 +- data/2-pages/56.txt | 2 +- data/2-pages/83.txt | 2 +- data/3-days/day-01.md | 2 +- data/3-days/day-17.md | 4 +-- data/3-days/day-26.md | 2 +- data/3-days/day-32.md | 28 ++++++++-------- data/3-days/day-42.md | 8 ++--- data/3-days/day-43.md | 16 +++++----- data/3-days/day-44.md | 8 ++--- data/3-days/day-57.md | 2 +- data/4-days-cleaned/day-17.md | 4 +-- data/4-days-cleaned/day-26.md | 4 +-- data/4-days-cleaned/day-32.md | 28 ++++++++-------- data/4-days-cleaned/day-42.md | 14 ++++---- data/4-days-cleaned/day-43.md | 8 ++--- data/4-days-cleaned/day-44.md | 18 +++++------ data/4-days-cleaned/day-46.md | 6 ++-- data/4-days-cleaned/day-47.md | 2 +- data/4-days-cleaned/day-53.md | 2 +- data/4-days-cleaned/day-57.md | 4 +-- data/6-wiki/aliases.md | 14 ++++---- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/day-47-coverage-audit.md | 2 +- data/6-wiki/clues/day-57-coverage-audit.md | 6 ++-- data/6-wiki/clues/days-42-44-coverage-audit.md | 10 +++--- .../clues/known-passwords-and-inscriptions.md | 6 ++-- .../concepts/gods-bargains-behind-the-barrier.md | 6 ++-- data/6-wiki/index.md | 2 ++ data/6-wiki/items/minor-items-day-47.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 2 +- data/6-wiki/items/minor-items-days-53-56.md | 2 +- data/6-wiki/open-threads.md | 6 ++-- data/6-wiki/people/anya-blakedurn.md | 6 ++-- data/6-wiki/people/attabre-altabre.md | 14 ++++---- data/6-wiki/people/benu.md | 8 ++--- data/6-wiki/people/bynx.md | 5 +-- data/6-wiki/people/bynxs-sister.md | 6 ++-- data/6-wiki/people/eliana.md | 2 +- data/6-wiki/people/garadwal.md | 6 ++-- data/6-wiki/people/igraine.md | 3 +- data/6-wiki/people/lady-igraine-riversmeet.md | 37 ++++++++++++++++++++++ data/6-wiki/people/lam.md | 33 +++++++++++++++++++ data/6-wiki/people/minor-figures-day-57.md | 2 +- data/6-wiki/people/minor-figures-days-32-35.md | 8 ++--- data/6-wiki/people/minor-figures-days-42-44.md | 4 +-- data/6-wiki/people/morgana.md | 2 +- data/6-wiki/people/papae-munera.md | 2 +- data/6-wiki/people/status.md | 2 +- data/6-wiki/people/trixus.md | 10 +++--- data/6-wiki/people/valententhide.md | 4 +-- data/6-wiki/people/valenth-cardonald.md | 2 +- data/6-wiki/places/ashkellon.md | 5 +-- data/6-wiki/places/brass-city.md | 2 +- data/6-wiki/places/minor-places-day-46.md | 2 +- data/6-wiki/places/minor-places-day-57.md | 2 +- data/6-wiki/places/minor-places-days-42-44.md | 2 +- .../riversmeet-menagerie-and-old-mage-school.md | 6 ++-- data/6-wiki/sources.md | 12 +++---- data/6-wiki/timeline.md | 2 +- 75 files changed, 278 insertions(+), 201 deletions(-)Show diff
diff --git a/data/2-pages/115.txt b/data/2-pages/115.txt index 8ed7548..38d943f 100644 --- a/data/2-pages/115.txt +++ b/data/2-pages/115.txt @@ -44,7 +44,7 @@ or she says she is. 35. Mimic mouse trap Arthur group Conrad Harthwall -Numbhotall / Scrambleduck / Nambodall +Numbhotall / Scumbleduck / Nambodall Older human man & robed figure carrying along beside Silver dragon born, backpack of scrolls & floating book. gnome wooden shield with goldenduck on it diff --git a/data/2-pages/116.txt b/data/2-pages/116.txt index 9c0ba96..91c3f6c 100644 --- a/data/2-pages/116.txt +++ b/data/2-pages/116.txt @@ -3,11 +3,11 @@ Source: data/1-source/IMG_9779.jpg Transcription: -Don't recognise Inwar +Don't recognise Invar Laura wins Bracelet of locating 101g Mith teleports away - Justicar tries to Counterspell(s) -Scrambleduck smashes stick on floor casting a spell. +Scumbleduck smashes stick on floor casting a spell. (locating duck) She turns round & I bang into something invisible - go to attack her @@ -28,14 +28,14 @@ waitress opens a trapdoor where Xinquiss is hiding. Palace - Lady Elissa Hartwall wants to see us in the hours. - Justicars take llamia to grand towers. -Dith & Geldrin & Morgana escape with the shield crystal +Dirk & Geldrin & Morgana escape with the shield crystal down the trapdoor into a house & Xinquiss calls Wroth to come & help hide the crystal - he does. -Dith, Geldrin, & Morgana try to disguise themselves +Dirk, Geldrin, & Morgana try to disguise themselves & head back to the auction house. -Eliana & Inwar enquire about them all & +Eliana & Invar enquire about them all & get told about the trap door. 4:30 Head to the Castle. diff --git a/data/2-pages/117.txt b/data/2-pages/117.txt index d3cba2f..1015610 100644 --- a/data/2-pages/117.txt +++ b/data/2-pages/117.txt @@ -6,7 +6,7 @@ Transcription: Lady Fatrabbit (blossom) (Halfling) - also the sheriff. Castle. Takes us through the Castle. - Engravings on armour is a dedication to the -god of Law. Castle seems busy - shortstaffed. +god of Lam. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently as Lady Elissa Hartwall could have known it wasn't diff --git a/data/2-pages/118.txt b/data/2-pages/118.txt index fe95964..013e0fb 100644 --- a/data/2-pages/118.txt +++ b/data/2-pages/118.txt @@ -13,8 +13,8 @@ Fatrabbit asks guard for current roster of the prisoners. Clay Meadow / Everchard / Redford point / Stonehedge / Goldenswell stone structure different. -Me & Dith go looking into all the cells, she's not -here. Barrett comes back with the roster everything seems +Me & Dirk go looking into all the cells, she's not +here. Fatrabbit comes back with the roster everything seems in line. - prison on the road to Stonehedge for longterm @@ -24,7 +24,7 @@ metal doors. 19:00 Claymeadow - Lady Neegate - quiet lately due to a loss in family. Decide to go & make a plan before speaking to -the wizard, go to the Irate Unicorn. - shrine to Law here. +the wizard, go to the Irate Unicorn. - shrine to Lam here. Ask The Basilisk for help from the guild to check the prisons. diff --git a/data/2-pages/120.txt b/data/2-pages/120.txt index f8636f2..9acae41 100644 --- a/data/2-pages/120.txt +++ b/data/2-pages/120.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9783.jpg Transcription: Captain is reading "101 who's who of the -Penta city states" picture of Scrambleduck. +Penta city states" picture of Scumbleduck. try to arrest them. @@ -13,7 +13,7 @@ Find Lady Thorpe (set of traps went off) & we carry her out. Meanwhile Geldrin is mauled & tries to get -thieves tools out to open them. Dith gets keys & unlocks. +thieves tools out to open them. Dirk gets keys & unlocks. Captain tries to send a message to say they've been discovered send help. diff --git a/data/2-pages/121.txt b/data/2-pages/121.txt index e44439d..4401b59 100644 --- a/data/2-pages/121.txt +++ b/data/2-pages/121.txt @@ -12,7 +12,7 @@ The Basilisk message - Don't come to Strong hedge Compromised Elementarium was in the town Crier information 4 days ago but imprisoned over 1 week ago. (There's an imposter in place) -Try to contact Cardencalde via Eroll - she didn't answer +Try to contact Cardonald via Eroll - she didn't answer ? why as it contacts her directly. Sent message to Lady Elissa Hartwall via Eroll. 16:00 diff --git a/data/2-pages/122.txt b/data/2-pages/122.txt index 59a6bd2..0b2ee41 100644 --- a/data/2-pages/122.txt +++ b/data/2-pages/122.txt @@ -31,7 +31,7 @@ small girl sat at a table (halfling) seeing dogs together Condennis Place - empty - takes us to an underground Dwarven city. laid out on a table with a skull floating next to her and an old wizened dwarf -noting - wizard from Inwar's vision, looking after the molten +noting - wizard from Invar's vision, looking after the molten prison. & touched it & stopped it leaking. (ruby eyes wife? village) Militia house (same desk sergent sitting there now) diff --git a/data/2-pages/176.txt b/data/2-pages/176.txt index 1606bb0..a1bb5dc 100644 --- a/data/2-pages/176.txt +++ b/data/2-pages/176.txt @@ -5,7 +5,7 @@ Transcription: under the Slumber version of the imprisonment spell. runes on rings: -A Blessing from Altabre, Protector of the Brass +A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind. @@ -21,7 +21,7 @@ dragon. - take copper dragon down & put Tixun's hand on her head - he has a brief stir & recognition but stays asleep. -- Library - book on Benu, Garadwal & Trixus - last 3 of Altabre's +- Library - book on Benu, Garadwal & Trixus - last 3 of Attabre's children who walk on the earth. - came from Fire Gardwell looked after the Dumnen's - enjoyed the gifts. - Igrine gave them the gifts to heal their @@ -39,4 +39,4 @@ waiting as if the historian wants to be noticed to get a protector. Book mentions knowledge of 5 Sphinx's dated 700 BD & dated (returned -to Altabre?) +to Attabre?) diff --git a/data/2-pages/177.txt b/data/2-pages/177.txt index a5e5690..78272c8 100644 --- a/data/2-pages/177.txt +++ b/data/2-pages/177.txt @@ -2,7 +2,7 @@ Page: 177 Source: data/1-source/IMG_9844.jpg Transcription: -Geldrin places Snowsorrow coin onto Altabre's offering bowl +Geldrin places Snowsorrow coin onto Attabre's offering bowl white creature comes in & destroys the city female Sphynx comes out & lays a hand on its head & they both disappear. she disappears in sparkles, white dragon diff --git a/data/2-pages/181.txt b/data/2-pages/181.txt index 1404eff..38d694f 100644 --- a/data/2-pages/181.txt +++ b/data/2-pages/181.txt @@ -17,20 +17,20 @@ Near the Cathedral of Attabre is a ominous church - sign - Lord Argenthum's Rest. Dwarf blacksmith pulls Invar to the side & says -it's good to see others look around & [says] -they are here for other reasons - not just to sell -wares & gives him a box +it's good to see others lost around & He is +here for other reasons - not just to sell +wares & gives Invar a box Golden Dragonborn -Tomes of places they have only just discovered. +Tomes of places they have only just discovered (the tomes). Ashkhellion - Goliah City. - Tradesmells. + Tradesmalls. Thadkhell Wormdoo - Oldym + Oldum Broken bounds. - Blacksmirk - Last past Airwise + Blackshield + Last Post Airwise Invar opens box slightly and it glows bright & is warm closes it to open it fully later diff --git a/data/2-pages/193.txt b/data/2-pages/193.txt index ea9d067..f9431b9 100644 --- a/data/2-pages/193.txt +++ b/data/2-pages/193.txt @@ -11,7 +11,7 @@ Arreanae - Mum. Gremlin type creature (Janitor) takes us to the head teacher. Pictures: - pale skinned man with white hair holding a sceptre, - elven/human (Tortish Hartwall) (blue crystal) + elven/human (Torlish Hartwall) (blue crystal) - elderly man - Geldrin saw in a bed in grand towers founders of the college (Humerous Torn) diff --git a/data/2-pages/194.txt b/data/2-pages/194.txt index d1f1893..832b9d4 100644 --- a/data/2-pages/194.txt +++ b/data/2-pages/194.txt @@ -35,7 +35,7 @@ All the time spent upstairs hasn't passed much time in the actual realm. Lord Hacethorn - last potion & herb teacher (wrote the book on Rubyeye). Founders of the college - 547 years before the dome. 2453 AC (after cataclysm) -white haired elven man - Tortish Harthwall. +white haired elven man - Torlish Hartwall. elderly man - Humerous Torn. Go back to the principal's office & back out. diff --git a/data/2-pages/2.txt b/data/2-pages/2.txt index 8f4175c..6e3d6c3 100644 --- a/data/2-pages/2.txt +++ b/data/2-pages/2.txt @@ -34,7 +34,7 @@ Jail - location changed. Used to be where hostel used to be. - 2 empty cells -- Law - big scar over her eye. +- Lam - big scar over her eye. - her, sheriff & other 2 deputies (Bob) - 11 years always something so old here isn't anything - no reports of people missing. diff --git a/data/2-pages/202.txt b/data/2-pages/202.txt index 7be4eac..b3ef032 100644 --- a/data/2-pages/202.txt +++ b/data/2-pages/202.txt @@ -34,7 +34,7 @@ Thinks Vita was one too but became his own thing when working with Mr Bleakthorn. Mr Moreley can't leave the school too. -Baby Attabre spirit they brought in - The sisters were excited -to see it, was going to the goliaths as they were becoming +Bynx, the baby Attabre spirit they brought in - The sisters were excited +to see him, was going to the goliaths as they were becoming Emeraldus line - Goliath's killed remaining 2 green dragons & created Wyrmdown. diff --git a/data/2-pages/314.txt b/data/2-pages/314.txt index eafe5a8..4ea1da4 100644 --- a/data/2-pages/314.txt +++ b/data/2-pages/314.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9987.jpg Transcription: Gods: -Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. +Kasha; Throngore 4/13; Shylow; Sjorra; Lam 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. Thorn-beard elf in one of the cells is mortal and calls me darling. Reminds him of the time he went to the moon with my mum. Lord Briarthorn. diff --git a/data/2-pages/54.txt b/data/2-pages/54.txt index 2feb174..121b00b 100644 --- a/data/2-pages/54.txt +++ b/data/2-pages/54.txt @@ -17,7 +17,7 @@ Manifest should have gone out in 2 days with -Invar [crossed out: Dith] knocks the driver out as he +Invar [crossed out: Dirk] knocks the driver out as he see what looks like Elementharium riding Gnome seems to be trying to clear the decks. diff --git a/data/2-pages/56.txt b/data/2-pages/56.txt index c50218a..06e0ac7 100644 --- a/data/2-pages/56.txt +++ b/data/2-pages/56.txt @@ -22,7 +22,7 @@ issues near Runewatch. - green dragon responsible for destruction of Dirk's homeland. -Rubyeye [crossed out: Dith] blamed [Dith's] kind for helping +Rubyeye [crossed out: Dirk] blamed [Dirk's] kind for helping the dragons. It's said Veridian dragon is teaming up with the red dragon. diff --git a/data/2-pages/83.txt b/data/2-pages/83.txt index ce116cb..d639e05 100644 --- a/data/2-pages/83.txt +++ b/data/2-pages/83.txt @@ -11,7 +11,7 @@ Day 26 (Saturday) 5 days to Autumn Coalment -Inwar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. +Invar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadwal. Infestus looks cross but stabs a coin into the portal & garadwal goes through. diff --git a/data/3-days/day-01.md b/data/3-days/day-01.md index d0c8d6b..921c68b 100644 --- a/data/3-days/day-01.md +++ b/data/3-days/day-01.md @@ -115,7 +115,7 @@ Jail - location changed. Used to be where hostel used to be. - 2 empty cells -- Law - big scar over her eye. +- Lam - big scar over her eye. - her, sheriff & other 2 deputies (Bob) - 11 years always something so old here isn't anything - no reports of people missing. diff --git a/data/3-days/day-17.md b/data/3-days/day-17.md index de08c80..56b8e8c 100644 --- a/data/3-days/day-17.md +++ b/data/3-days/day-17.md @@ -75,7 +75,7 @@ Manifest should have gone out in 2 days with -Invar [crossed out: Dith] knocks the driver out as he +Invar [crossed out: Dirk] knocks the driver out as he see what looks like Elementharium riding Gnome seems to be trying to clear the decks. @@ -171,7 +171,7 @@ issues near Runewatch. - green dragon responsible for destruction of Dirk's homeland. -Rubyeye [crossed out: Dith] blamed [Dith's] kind for helping +Rubyeye [crossed out: Dirk] blamed [Dirk's] kind for helping the dragons. It's said Veridian dragon is teaming up with the red dragon. diff --git a/data/3-days/day-26.md b/data/3-days/day-26.md index d039963..30c594a 100644 --- a/data/3-days/day-26.md +++ b/data/3-days/day-26.md @@ -34,7 +34,7 @@ Day 26 (Saturday) 5 days to Autumn Coalment -Inwar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. +Invar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadwal. Infestus looks cross but stabs a coin into the portal & garadwal goes through. diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md index 4b2e45f..3f848ef 100644 --- a/data/3-days/day-32.md +++ b/data/3-days/day-32.md @@ -180,7 +180,7 @@ or she says she is. 35. Mimic mouse trap Arthur group Conrad Harthwall -Numbhotall / Scrambleduck / Nambodall +Numbhotall / Scumbleduck / Nambodall Older human man & robed figure carrying along beside Silver dragon born, backpack of scrolls & floating book. gnome wooden shield with goldenduck on it @@ -188,11 +188,11 @@ Justicars - looking for Xinquiss ## Page 116 -Don't recognise Inwar +Don't recognise Invar Laura wins Bracelet of locating 101g Mith teleports away - Justicar tries to Counterspell(s) -Scrambleduck smashes stick on floor casting a spell. +Scumbleduck smashes stick on floor casting a spell. (locating duck) She turns round & I bang into something invisible - go to attack her @@ -213,14 +213,14 @@ waitress opens a trapdoor where Xinquiss is hiding. Palace - Lady Elissa Hartwall wants to see us in the hours. - Justicars take llamia to grand towers. -Dith & Geldrin & Morgana escape with the shield crystal +Dirk & Geldrin & Morgana escape with the shield crystal down the trapdoor into a house & Xinquiss calls Wroth to come & help hide the crystal - he does. -Dith, Geldrin, & Morgana try to disguise themselves +Dirk, Geldrin, & Morgana try to disguise themselves & head back to the auction house. -Eliana & Inwar enquire about them all & +Eliana & Invar enquire about them all & get told about the trap door. 4:30 Head to the Castle. @@ -233,7 +233,7 @@ strides over to us (really ornate armour) Lady Fatrabbit (blossom) (Halfling) - also the sheriff. Castle. Takes us through the Castle. - Engravings on armour is a dedication to the -god of Law. Castle seems busy - shortstaffed. +god of Lam. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently as Lady Elissa Hartwall could have known it wasn't @@ -282,8 +282,8 @@ Fatrabbit asks guard for current roster of the prisoners. Clay Meadow / Everchard / Redford point / Stonehedge / Goldenswell stone structure different. -Me & Dith go looking into all the cells, she's not -here. Barrett comes back with the roster everything seems +Me & Dirk go looking into all the cells, she's not +here. Fatrabbit comes back with the roster everything seems in line. - prison on the road to Stonehedge for longterm @@ -293,7 +293,7 @@ metal doors. 19:00 Claymeadow - Lady Neegate - quiet lately due to a loss in family. Decide to go & make a plan before speaking to -the wizard, go to the Irate Unicorn. - shrine to Law here. +the wizard, go to the Irate Unicorn. - shrine to Lam here. Ask The Basilisk for help from the guild to check the prisons. @@ -361,7 +361,7 @@ the window & servant does not look busy! ## Page 120 Captain is reading "101 who's who of the -Penta city states" picture of Scrambleduck. +Penta city states" picture of Scumbleduck. try to arrest them. @@ -370,7 +370,7 @@ Find Lady Thorpe (set of traps went off) & we carry her out. Meanwhile Geldrin is mauled & tries to get -thieves tools out to open them. Dith gets keys & unlocks. +thieves tools out to open them. Dirk gets keys & unlocks. Captain tries to send a message to say they've been discovered send help. @@ -413,7 +413,7 @@ The Basilisk message - Don't come to Strong hedge Compromised Elementarium was in the town Crier information 4 days ago but imprisoned over 1 week ago. (There's an imposter in place) -Try to contact Cardencalde via Eroll - she didn't answer +Try to contact Cardonald via Eroll - she didn't answer ? why as it contacts her directly. Sent message to Lady Elissa Hartwall via Eroll. 16:00 @@ -473,7 +473,7 @@ small girl sat at a table (halfling) seeing dogs together Condennis Place - empty - takes us to an underground Dwarven city. laid out on a table with a skull floating next to her and an old wizened dwarf -noting - wizard from Inwar's vision, looking after the molten +noting - wizard from Invar's vision, looking after the molten prison. & touched it & stopped it leaking. (ruby eyes wife? village) Militia house (same desk sergent sitting there now) diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index ce3e283..81feba7 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -480,7 +480,7 @@ has 4 x brass rings on each paw under the Slumber version of the imprisonment spell. runes on rings: -A Blessing from Altabre, Protector of the Brass +A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind. @@ -496,7 +496,7 @@ dragon. - take copper dragon down & put Tixun's hand on her head - he has a brief stir & recognition but stays asleep. -- Library - book on Benu, Garadwal & Trixus - last 3 of Altabre's +- Library - book on Benu, Garadwal & Trixus - last 3 of Attabre's children who walk on the earth. - came from Fire Gardwell looked after the Dumnen's - enjoyed the gifts. - Igrine gave them the gifts to heal their @@ -514,11 +514,11 @@ waiting as if the historian wants to be noticed to get a protector. Book mentions knowledge of 5 Sphinx's dated 700 BD & dated (returned -to Altabre?) +to Attabre?) ## Page 177 -Geldrin places Snowsorrow coin onto Altabre's offering bowl +Geldrin places Snowsorrow coin onto Attabre's offering bowl white creature comes in & destroys the city female Sphynx comes out & lays a hand on its head & they both disappear. she disappears in sparkles, white dragon diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index 8d3a9a2..720debf 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -95,20 +95,20 @@ Near the Cathedral of Attabre is a ominous church - sign - Lord Argenthum's Rest. Dwarf blacksmith pulls Invar to the side & says -it's good to see others look around & [says] -they are here for other reasons - not just to sell -wares & gives him a box +it's good to see others lost around & He is +here for other reasons - not just to sell +wares & gives Invar a box Golden Dragonborn -Tomes of places they have only just discovered. +Tomes of places they have only just discovered (the tomes). Ashkhellion - Goliah City. - Tradesmells. + Tradesmalls. Thadkhell Wormdoo - Oldym + Oldum Broken bounds. - Blacksmirk - Last past Airwise + Blackshield + Last Post Airwise Invar opens box slightly and it glows bright & is warm closes it to open it fully later diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md index ca1a8fc..0536f81 100644 --- a/data/3-days/day-44.md +++ b/data/3-days/day-44.md @@ -127,7 +127,7 @@ Arreanae - Mum. Gremlin type creature (Janitor) takes us to the head teacher. Pictures: - pale skinned man with white hair holding a sceptre, - elven/human (Tortish Hartwall) (blue crystal) + elven/human (Torlish Hartwall) (blue crystal) - elderly man - Geldrin saw in a bed in grand towers founders of the college (Humerous Torn) @@ -191,7 +191,7 @@ All the time spent upstairs hasn't passed much time in the actual realm. Lord Hacethorn - last potion & herb teacher (wrote the book on Rubyeye). Founders of the college - 547 years before the dome. 2453 AC (after cataclysm) -white haired elven man - Tortish Harthwall. +white haired elven man - Torlish Hartwall. elderly man - Humerous Torn. Go back to the principal's office & back out. @@ -493,8 +493,8 @@ Thinks Vita was one too but became his own thing when working with Mr Bleakthorn. Mr Moreley can't leave the school too. -Baby Attabre spirit they brought in - The sisters were excited -to see it, was going to the goliaths as they were becoming +Bynx, the baby Attabre spirit they brought in - The sisters were excited +to see him, was going to the goliaths as they were becoming Emeraldus line - Goliath's killed remaining 2 green dragons & created Wyrmdown. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index 613cb68..068bf07 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -675,7 +675,7 @@ Can see keys for the prisons on the leader's belts. Gods: -Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. +Kasha; Throngore 4/13; Shylow; Sjorra; Lam 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. Thorn-beard elf in one of the cells is mortal and calls me darling. Reminds him of the time he went to the moon with my mum. Lord Briarthorn. diff --git a/data/4-days-cleaned/day-17.md b/data/4-days-cleaned/day-17.md index 2970244..0a2ba44 100644 --- a/data/4-days-cleaned/day-17.md +++ b/data/4-days-cleaned/day-17.md @@ -30,7 +30,7 @@ A giant gargoyle approached, rolled out a carpet with a teleport rune on it, and Lady Catherine Cole vouched for the note-writer, and the Valkyrie vouched for Invar. Thurtall spoke to Ruby Eye. He had been a friend of her mother's, and she had not aged much in about a thousand years. A Tabaxi male, looking a little older, strode in with a hookah pipe floating beside him. He sprawled on the ground and was identified as the Earl of Salvation. The gathering described itself as a small group of like-minded people trying to protect the barrier and maintain its stability. News had reached them about the fragment. -The council had concerns about whether the party's friend had awakened the ancient one, and they reported several issues near Runewatch. They said the green dragon was responsible for the destruction of Dirk's homeland. Ruby Eye blamed [Dith's] kind for helping the dragons [uncertain due to crossed-out text]. It was said the veridian dragon was teaming up with the red dragon. Keely Caardenalb's research might be useful; she lives in the desert. +The council had concerns about whether the party's friend had awakened the ancient one, and they reported several issues near Runewatch. They said the green dragon was responsible for the destruction of Dirk's homeland. Ruby Eye blamed [Dirk's] kind for helping the dragons [uncertain due to crossed-out text]. It was said the veridian dragon was teaming up with the red dragon. Keely Caardenalb's research might be useful; she lives in the desert. The council suggested three possible priorities: head to the merfolk, get the crystal from the water, or speak to the ancient one. The party passed off the twin mum. They also discussed elven creation theology or history. Elves were first on the earth. Everywhere there was light, and with light there was dark. From this came life, and a couple sprang forth; one created a mate, and so did he, and they then became the gods. Light and dark fought, and because of this the physical world was made. There was much fighting, then a truce in which each side agreed not to enter the other's territory and created the twelve gods. They decided to meet on the combination plane, but it was difficult, so they created six Excellences. The Excellences fought, the gods needed armies, and fighting continued, but those armies gained free will and thrived in certain places. The multiple-armed beings are the Excellences. Five is a holy number because it is seen as removing the darkness. @@ -60,7 +60,7 @@ At 17:30 the party returned to their cart and headed down the main road toward F - Valkyrie woman: Earl of Ironcroft firewise; vouched for Invar and was flanked by two dwarves. - Earl of Salvation: older Tabaxi male with a floating hookah pipe. - Dirk: his homeland was destroyed by the green dragon. -- [Dith] / [Dith's] kind: blamed by Ruby Eye for helping dragons [uncertain due to crossed-out text]. +- [Dirk] / [Dirk's] kind: blamed by Ruby Eye for helping dragons [uncertain due to crossed-out text]. - Keely Caardenalb: desert researcher whose work may be useful. - Browning: suspected of erasing the Goliath settlement from history. - Merfolk: helped set up barriers and are different from the fish men invited into the barrier. diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md index 50c19cf..cc9d933 100644 --- a/data/4-days-cleaned/day-26.md +++ b/data/4-days-cleaned/day-26.md @@ -18,7 +18,7 @@ complete: true Day 26 was Saturday, 10th Tan 101, with 8 days to Arrynoon and 5 days to Autumn. The notes begin at Coalment with a series of dreams. -Inwar dreamed of a meeting hall filled with red-bearded dwarves. He arrived at a large platinum chair, where a concerned dwarf sat while a smaller [unclear] person told him something. They strode out to an Ironforge-type building where magma was held back by a dome. A dire crab with multiple heads seemed to be trying to get through, and magma was coming through the dome until the king chanted and the dome closed up. +Invar dreamed of a meeting hall filled with red-bearded dwarves. He arrived at a large platinum chair, where a concerned dwarf sat while a smaller [unclear] person told him something. They strode out to an Ironforge-type building where magma was held back by a dome. A dire crab with multiple heads seemed to be trying to get through, and magma was coming through the dome until the king chanted and the dome closed up. Dirk dreamed of an obsidian city where black Dragonborn strode around as if they owned the place. The scene was animated and included a town-hall-style building. Two black Dragonborn stood beside an archway with mosquitoes on the shield. Beyond the archway, Infestus spoke to Garadwal. Infestus looked cross, then stabbed a coin into the portal and Garadwal went through. @@ -76,7 +76,7 @@ Dreams were discussed: over many years they could be saved, and many recent drea # People, Factions, and Places Mentioned -Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hartwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hartwall State, Goldenswell State, and Snowsorrow State were all mentioned. +Coalment, Invar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hartwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hartwall State, Goldenswell State, and Snowsorrow State were all mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index fae9d29..ee3de88 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -44,21 +44,21 @@ Lot 30 was the holy symbol of Noxia and sold to Raven 1 for 175g. Lot 31 was a s The party skulked out to check on Lady Thorpe. She had six guards around her in transparent dragon / silver dragon livery. While she felt better and insisted on going back to the front lines, which were not going great, she looked flustered, confused, and uneasy in her responses. Something was odd about her mannerisms. Eliana did not think she knew who they were, or at least that she was who she said she was. -Lot 35 was a mimic mouse trap. Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, an older human man, a robed figure carrying along beside a silver dragonborn, a backpack of scrolls, a floating book, and a gnome with a wooden shield bearing a golden duck were noted. Justicars were looking for Xinquiss. The party did not recognize Inwar. Laura won the bracelet of locating for 101g. Mith teleported away, and a Justicar tried to Counterspell. Scrambleduck smashed a stick on the floor and cast a spell, associated with a locating duck. When she turned around, Eliana bumped into something invisible and moved to attack her. +Lot 35 was a mimic mouse trap. Arthur's group, Conrad Harthwall, Numbhotall / Scumbleduck / Nambodall, an older human man, a robed figure carrying along beside a silver dragonborn, a backpack of scrolls, a floating book, and a gnome with a wooden shield bearing a golden duck were noted. Justicars were looking for Xinquiss. The party did not recognize Invar. Laura won the bracelet of locating for 101g. Mith teleported away, and a Justicar tried to Counterspell. Scumbleduck smashed a stick on the floor and cast a spell, associated with a locating duck. When she turned around, Eliana bumped into something invisible and moved to attack her. Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind Eliana helped, while her guard tried to get Eliana. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. Eliana called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Elissa Hartwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. -Dith, Geldrin, and Morgana escaped with the shield crystal down the trapdoor into a house. Xinquiss called Wroth to come and help hide the crystal, and Wroth did so. Dith, Geldrin, and Morgana tried to disguise themselves and return to the auction house. Eliana and Inwar asked about them and were told about the trapdoor at 4:30. The party headed to the Castle. +Dirk, Geldrin, and Morgana escaped with the shield crystal down the trapdoor into a house. Xinquiss called Wroth to come and help hide the crystal, and Wroth did so. Dirk, Geldrin, and Morgana tried to disguise themselves and return to the auction house. Eliana and Invar asked about them and were told about the trapdoor at 4:30. The party headed to the Castle. -At the Castle, a higher-ranking halfling general with a huge sword and ornate armour strode over. This was Lady Fatrabbit, also called Blossom, a halfling who was also the sheriff. She took the party through the Castle. The engravings on her armour were a dedication to the god of Law. The Castle seemed busy and short-staffed. +At the Castle, a higher-ranking halfling general with a huge sword and ornate armour strode over. This was Lady Fatrabbit, also called Blossom, a halfling who was also the sheriff. She took the party through the Castle. The engravings on her armour were a dedication to the god of Lam. The Castle seemed busy and short-staffed. Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Elissa Hartwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Elissa Hartwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Elissa Hartwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Elissa Hartwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Hartwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. -Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. Eliana and Dith searched the cells, but Lady Thorpe was not there. Barrett returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. +Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. Eliana and Dirk searched the cells, but Lady Thorpe was not there. Fatrabbit returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. -Claymeadow and Lady Neegate were noted; she had been quiet lately due to a loss in the family. The party decided to make a plan before speaking to the wizard and went to the Irate Unicorn, where there was a shrine to Law. They asked The Basilisk for help from the guild to check the prisons. They then went to see a tortle wizard who could teleport them somewhere and would come back tomorrow. +Claymeadow and Lady Neegate were noted; she had been quiet lately due to a loss in the family. The party decided to make a plan before speaking to the wizard and went to the Irate Unicorn, where there was a shrine to Lam. They asked The Basilisk for help from the guild to check the prisons. They then went to see a tortle wizard who could teleport them somewhere and would come back tomorrow. The internal note marked "Day 27" was recorded here but was not treated as a day boundary. The bag began humming and glowing, and there was a note from The Basilisk. Redford and Everchard had no Lady Thorpe. Goldenswell refused and prevented access; The Basilisk met a few things, reporters, and so on. Little Bugy was noted as someone tried to assassinate Sefris on the ground, connected to the Cult of Salvation, last night. The skull was glowing, humming, and vibrating, and it was given to Geldrin. @@ -66,15 +66,15 @@ The connection destabilised all charms out of the windows. The Tri-moon was visi The party returned to the tortle mage, Jin-Loo, and told him about the Tri-moon. He found it had happened three times in the last 1,000 years, when records began, though four dates were listed: 104 AD, 339 AD, 629 AD, and 1012 AD. The party asked him to find out whether anything significant happened on those dates; nothing was found. -Jin-Loo teleported the party to the Museum Gardens in Goldenswell. Bleakstorm was noted as a possible name for the tree they teleported next to. It was from outside the Barrier, airwise, and very cold. They went to the Militia House. Morgana located Lady Thorpe in the building, two floors down, in the middle of the building, at 10:30. The plan was for Geldrin to pretend to be a Justicar and enter the building. Yellow guards were wearing a half-sun tattoo obscured by a waterfall. Geldrin stormed into the guarded room; the guard who went to get the captain was leaning against the window, and the servant did not look busy. The captain was reading "101 who's who of the Penta city states," which had a picture of Scrambleduck. +Jin-Loo teleported the party to the Museum Gardens in Goldenswell. Bleakstorm was noted as a possible name for the tree they teleported next to. It was from outside the Barrier, airwise, and very cold. They went to the Militia House. Morgana located Lady Thorpe in the building, two floors down, in the middle of the building, at 10:30. The plan was for Geldrin to pretend to be a Justicar and enter the building. Yellow guards were wearing a half-sun tattoo obscured by a waterfall. Geldrin stormed into the guarded room; the guard who went to get the captain was leaning against the window, and the servant did not look busy. The captain was reading "101 who's who of the Penta city states," which had a picture of Scumbleduck. -The party tried to arrest them. Morgana and Eliana went through the other door. They found Lady Thorpe after a set of traps went off and carried her out. Meanwhile Geldrin was mauled and tried to get thieves' tools out to open something. Dith got keys and unlocked them. The captain tried to send a message saying they had been discovered and to send help. The party took the captain, Lady Thorpe, and a cart, left the city, managed to get out, came off the road, and found somewhere to hide. +The party tried to arrest them. Morgana and Eliana went through the other door. They found Lady Thorpe after a set of traps went off and carried her out. Meanwhile Geldrin was mauled and tried to get thieves' tools out to open something. Dirk got keys and unlocked them. The captain tried to send a message saying they had been discovered and to send help. The party took the captain, Lady Thorpe, and a cart, left the city, managed to get out, came off the road, and found somewhere to hide. They messaged The Basilisk to say they had Lady Thorpe and revived her. Lady Thorpe reported a man with the lower half of a snake's body travelling back with the Goldenswell army when they decided to leave. Bug Geldrin stole from the captain's office: 50 platinum pieces in Frawshers currency and a Grand Towers penny. The party needed to question the captain. When the captain was awakened, he said he got in trouble with the Duke for attracting the militia. He was told it was a sensitive situation and not to let anybody in. The Duke sent one of his emissaries to feed Lady Thorpe. The captain knew the Duke was doing something dodgy but did not know the full truth. Some woman with a bag on her head was involved. Orders came from the Duke's office, and a few other guards knew about it. Off-the-books prisoners had been held a few times; the last one was about a week ago and was still down there. -The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Elissa Hartwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. +The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardonald via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Elissa Hartwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. The skull's connection to ascension to godhood was discussed, and it was linked to when the moon did this, like the Tri-moon / Treamen. Geldrin tried to attune to the skull. An obsidian raven circled overhead as if looking for something and then flew off toward Grand Towers. @@ -82,7 +82,7 @@ When Geldrin attuned to the skull, he saw visions. A woman with no belly button The skull could crush foes, let him pass, and show visions, though the visions were the only thing Geldrin had seen it do. "The lord above place in the sky" was noted. Noxia could poison things to stop them being their true form. The skull had influence over the Barrier and could bend it. It had been assaulted by mortals when he came to the god meeting. Valententide had been attacked by Throngore, with darkness. The dragons fighting were 525 years before the veridian dragonborns. Gary, the corrupted sphinx, was heading toward Grand Towers. -The skull showed a projection of Grand Towers using moon reflections. The party saw a man walking through the streets toward the prison device. It showed "The Mother" crater, a small town, which was the place he fell, and a small halfling girl sitting at a table seeing dogs together. At Condennis Place, which was empty, the vision went to an underground dwarven city. A figure was laid out on a table with a skull floating next to her and an old wizened dwarf noting; this was the wizard from Inwar's vision, looking after the molten prison. He touched it and stopped it leaking. The notes question whether this related to Ruby Eye's wife or village. +The skull showed a projection of Grand Towers using moon reflections. The party saw a man walking through the streets toward the prison device. It showed "The Mother" crater, a small town, which was the place he fell, and a small halfling girl sitting at a table seeing dogs together. At Condennis Place, which was empty, the vision went to an underground dwarven city. A figure was laid out on a table with a skull floating next to her and an old wizened dwarf noting; this was the wizard from Invar's vision, looking after the molten prison. He touched it and stopped it leaking. The notes question whether this related to Ruby Eye's wife or village. The skull showed the Goldenswell militia house with the same desk sergeant sitting there now. Prisoners seen included an elven man, the Elementarium; a human male in his mid-40s with a scar on his right cheek; a halfling woman, Baytail, accused as head of the Underbelly; an empty cell; a half-elven woman who resembled someone's sister, with the note that the party had seen their brothers before; a kobold in a tattered robe whose robe was recognized; and a pale-skinned halfling female with brown speckled eyes like tiger eye, likely someone the party had met, possibly Isabella Neegale's aunt or the Earl of Clay Meadows. @@ -92,11 +92,11 @@ The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Re # People, Factions, and Places Mentioned -People and name-like figures mentioned include Lan, Serva, Lady Elissa Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. +People and name-like figures mentioned include Lan, Serva, Lady Elissa Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scumbleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Invar, Laura, Skutey Galvin, Constantine Harthwall, Dirk, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Fatrabbit, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardonald, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Furres, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. -Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Elissa Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. +Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Elissa Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Lam, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. # Items, Rewards, and Resources @@ -106,7 +106,7 @@ Auction lots and sale details mentioned include grand towers penne / Goliath coi Specific auction lots mentioned include Lot 1, famous 28-year elven booze sold for 20g; Lot 2, 100-year-old Candelissa; Lot 3, older one sold for 350g to Candelissa; Lot 4, Smehlebeard whiskey sold for 270g to Janet Boulderdew; Lot 5, Crankfruit 75-year bottle / 280 years sold for 400g; Lot 6, Blind gale XXX with physick before imbibing; Lot 7, cherry wine / Sereza sold for 10g; Lot 10, five Black Dragons sold for 10g to the shiny man; Lot 11, Grand Towers penny sold for 3g to Raven no. 1; Lot 12, golden crown and two silver clappers sold for 15g; Lot 13, dwarven copper coins sold for 1g; Lot 14, electrum with no sale; Lot 15, silver pieces / gnome great Fummouth sold for 8g to Raven 2; Lot 16, Brass City coin sold for 160g to the tabaxi with a shaved head and pink mohawk; Lot 18, painting involving Lord Bleakstorm, Caroline Harthwall(?), an infant, a blue cow, Iceborg, Jayseel horns, and someone lowering a rope down a hole, sold for 35g; Lot 19, "Valententide's Betrayal," an obsidian and bone statue sold for 140g to Raven 1; Lot 20, Davina Browning's "circling vultures" sold for 10g to the jewellery guy; Lot 21, love poetry / blessings of Laurel sold for 7g; Lot 22, red and blue glass sculpture of Serra sold for 10g; Lot 23, moon pocket watch sold for 175g; Lot 24, green-rim spectacles translating elven into common sold for 112g; Lot 25, mahogany / Smulty box sold for 30g; Lot 26, Ray of sorting and stirring sold for 85g; Lot 27, elven forest comb of delousing sold for 35g; Lot 28, elven turtle flute carved with mice sold for 65g; Lot 29, smoke hourglass sold for 85g; Lot 30, holy symbol of Noxia sold for 175g to Raven 1; Lot 31, shield ring with runes of Lauren sold for 600g; Lot 32, Firefang sold for 2050g; Lot 33, chariot; Lot 34, Browning spell scroll; and Lot 35, mimic mouse trap. -Spells and magical effects mentioned include teleporting to the statue of Lan, Dispel Magic cast by Geldrin on Browning's scroll, Xinquiss / Mith teleporting away, a Justicar attempting Counterspell, Scrambleduck casting a spell by smashing a stick on the floor, the locating duck, an invisible obstruction, the concentration spell failing so false Lady Thorpe became a llama, a magical poison or religious curse possibly linked to Noxia, Geldrin's Scrying on Lady Thorpe, Morgana locating Lady Thorpe in the Goldenswell militia house, Eroll messages, Jin-Loo teleportation, the humming and glowing bag, the glowing/humming/vibrating skull, the skull's attunement visions, the skull's ability to show visions, crush foes, let him pass, influence / bend the Barrier, and need to be near foes to smite them. +Spells and magical effects mentioned include teleporting to the statue of Lan, Dispel Magic cast by Geldrin on Browning's scroll, Xinquiss / Mith teleporting away, a Justicar attempting Counterspell, Scumbleduck casting a spell by smashing a stick on the floor, the locating duck, an invisible obstruction, the concentration spell failing so false Lady Thorpe became a llama, a magical poison or religious curse possibly linked to Noxia, Geldrin's Scrying on Lady Thorpe, Morgana locating Lady Thorpe in the Goldenswell militia house, Eroll messages, Jin-Loo teleportation, the humming and glowing bag, the glowing/humming/vibrating skull, the skull's attunement visions, the skull's ability to show visions, crush foes, let him pass, influence / bend the Barrier, and need to be near foes to smite them. # Clues, Mysteries, and Open Threads @@ -128,11 +128,11 @@ The Tri-moon was visible during the day, which is unusual, and appeared 16 hours The Goldenswell operation exposed an off-the-books prison run under orders from the Duke's office. The captain knew it was dodgy but not the full truth. A woman with a bag on her head, Duke's emissaries, Duke's personal guard, and a snake-bodied man travelling with the Goldenswell army are all implicated. The captain said off-the-books prisoners had happened before, with one still down there from about a week ago. -The Elementarium had been in town crier information four days earlier but had been imprisoned for over a week, implying an imposter was active. Cardencalde did not answer Eroll despite the direct contact, which remains unexplained. A few people tried to survey or enter the prison, including Scumi with a bag of skulls. +The Elementarium had been in town crier information four days earlier but had been imprisoned for over a week, implying an imposter was active. Cardonald did not answer Eroll despite the direct contact, which remains unexplained. A few people tried to survey or enter the prison, including Scumi with a bag of skulls. The skull's visions tied together Treamen / Tri-moon, ascension to godhood, Noxia's ability to poison things so they cannot be their true form, influence over the Barrier, mortals assaulting him at a god meeting, Valententide being attacked by Throngore, a black and white dragon fight, a silver dragon rescue, a veridian dragonborn, a gnome, an old man, 629 AD, soot, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, and a man walking through Grand Towers toward the prison device. These links remain unresolved. -The Mother crater, the small town where he fell, the small halfling girl seeing dogs together, Condennis Place, the underground dwarven city, the old wizened dwarf from Inwar's vision, the molten prison, and the possible connection to Ruby Eye's wife or village are all open threads. The skull's projection using moon reflections may connect the Tri-moon to distant surveillance or prison devices. +The Mother crater, the small town where he fell, the small halfling girl seeing dogs together, Condennis Place, the underground dwarven city, the old wizened dwarf from Invar's vision, the molten prison, and the possible connection to Ruby Eye's wife or village are all open threads. The skull's projection using moon reflections may connect the Tri-moon to distant surveillance or prison devices. The Goldenswell prisoners seen in visions and listed by the party create unresolved identity threads: the Elementarium; a human male in his mid-40s with a scar on his right cheek; Baytail, accused head of the Underbelly; a half-elven woman resembling the sister of the twin Justicar guards; a kobold in a recognizable tattered robe; a pale-skinned halfling woman with brown speckled tiger-eye eyes, possibly Isabella Neegale's aunt or the Earl of Clay Meadows; prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Hartwall. The half-elf woman's relationship to the twin Justicar guards met on the way to Seaward is specifically preserved. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index 4c4f392..79f01a3 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -75,13 +75,13 @@ Hephestus's door had a ninth-level Banishment on it. The goat-headed sphinx was The dragon lady was hungry. The party opened the barrier to give her food, and she did not try to escape because the barrier made her safe. She said "he's gone now" and seemed sad. The guards said he was dead, or that he had gone recently; the name Lorleh was noted. She asked whether the party had seen her boy. She did not know why she was there and had eaten about one week earlier. The party let her out and gave her food. They found a maggot in her ear and removed it. She uncontrollably cried and remembered everything. She was a copper dragon from Snowsorrow, which is now Snowsorrow. She used to play with the king and queen's son in Snowsorrow. The names [uncertain: Ice fang] and Atlih were noted. Gold dragons were also mentioned. Verdugrim was said to be his or Lorleh's son, "the tarnished," and had bred [uncertain: all?] Verdugrim's dragonborn and Goliaths. Eveline Heathsall, called Mama, was betrothed to Argentum and became a Heathsall. Igraine had come to the copper dragon while she was sleeping and said she was lucky she was not captive anywhere else, because Igraine could not speak to her somewhere else. Ice Fury was approximately thirty to forty years older than her. -The party went to see Trixus, Benu's little brother. He was asleep, and loud noises did not wake him. They opened the barrier. Trixus had four brass rings on each paw. The runes on the rings read: "A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind." Shuert came through the portal, fell through to the library, came to find Steven, and promised he had Ruby Eye. +The party went to see Trixus, Benu's little brother. He was asleep, and loud noises did not wake him. They opened the barrier. Trixus had four brass rings on each paw. The runes on the rings read: "A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind." Shuert came through the portal, fell through to the library, came to find Steven, and promised he had Ruby Eye. The party checked the treasure hall. It contained lots of Goliath currency, Brass City currency, Dumnen currency, and massive triangular coins of Snowsorrow. One coin showed a female sphinx resting its hand on a dragon. The party took the copper dragon down and put Trixus's hand on her head. He briefly stirred with recognition but stayed asleep. -In the library, the party found a book on Benu, Garadwal, and Trixus, described as the last three of Altabre's children who walk on the earth. They came from Fire. Gardwell looked after the Dumnens and enjoyed the gifts. Igraine gave them the gifts to heal their people. Trixus helped create Brass City. The tabaxi were confused and lost, and Trixus helped them; they became industrious and proactive in creating things. It was not clear where the brass came from, perhaps a blessing from [uncertain: Shulcher]. Benu was protector of the elves and helped construct the great tower, but did little protection, instead seeming to train them in art and poetry until they became obsessed with it. Benu saw errors in its ways, eventually left for an unknown reason, and hid. The historian seemed to be waiting to be noticed to get a protector. The book mentioned knowledge of five sphinxes and was dated 700 BD, with a note about returning to Altabre. +In the library, the party found a book on Benu, Garadwal, and Trixus, described as the last three of Attabre's children who walk on the earth. They came from Fire. Gardwell looked after the Dumnens and enjoyed the gifts. Igraine gave them the gifts to heal their people. Trixus helped create Brass City. The tabaxi were confused and lost, and Trixus helped them; they became industrious and proactive in creating things. It was not clear where the brass came from, perhaps a blessing from [uncertain: Shulcher]. Benu was protector of the elves and helped construct the great tower, but did little protection, instead seeming to train them in art and poetry until they became obsessed with it. Benu saw errors in its ways, eventually left for an unknown reason, and hid. The historian seemed to be waiting to be noticed to get a protector. The book mentioned knowledge of five sphinxes and was dated 700 BD, with a note about returning to Attabre. -Geldrin placed a Snowsorrow coin into Altabre's offering bowl. A white creature came in and destroyed the city; a female sphinx came out and laid a hand on its head, and both disappeared. The sphinx disappeared in sparkles, while the white dragon remained as the vision ended. The words came: "The father wishes freedom for all his children." The statue seemed to look at Geldrin. The party wondered whether the sphinx turned into the dragon and what the symbolism of the shield and Trixus meant. +Geldrin placed a Snowsorrow coin into Attabre's offering bowl. A white creature came in and destroyed the city; a female sphinx came out and laid a hand on its head, and both disappeared. The sphinx disappeared in sparkles, while the white dragon remained as the vision ended. The words came: "The father wishes freedom for all his children." The statue seemed to look at Geldrin. The party wondered whether the sphinx turned into the dragon and what the symbolism of the shield and Trixus meant. In an observatory room, the party found a flesh-crafting wand and many books. One book, written by a Goliath, concerned Noxia wanting to walk on the earth and the study of what Noxia left behind in the fight between Noxia and Sierra. Drops of Noxia's blood corrupted the earth and ensured things did not grow. Dragonborn forces were leaving the city and going to the Earth Waker side. The party decided to go to Bleakstorm at 17:30. @@ -99,19 +99,19 @@ The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Elissa Hart # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodita's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snowsorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Hartwall, and Emmerave. -Creatures and creature-like entities mentioned include the fat-bellied dragon in Dirk's dream, dark demons, the black-feather communication bird, dragonborn, Goliaths, the baby Badger, the featureless woman reflected in the ring, the lion-headed god figure, the dragon in the no-barrier vision, the four card-playing dragonborn with welded armour, something made of air in a barrier, the goat man, the goat-headed sphinx, the copper-haired elven woman / copper dragon, the medusa, the statue figure, the child of the Mother with a worm, the eyeless dog, the fat dragon in the dragon vision, the Noxia Beast avatar, Trixus the elemental of light, Steven the goat man, the copper dragon from Snowsorrow, gold dragons, the female sphinx on Snowsorrow currency, the white creature / white dragon in the Altabre vision, and ice elementals. +Creatures and creature-like entities mentioned include the fat-bellied dragon in Dirk's dream, dark demons, the black-feather communication bird, dragonborn, Goliaths, the baby Badger, the featureless woman reflected in the ring, the lion-headed god figure, the dragon in the no-barrier vision, the four card-playing dragonborn with welded armour, something made of air in a barrier, the goat man, the goat-headed sphinx, the copper-haired elven woman / copper dragon, the medusa, the statue figure, the child of the Mother with a worm, the eyeless dog, the fat dragon in the dragon vision, the Noxia Beast avatar, Trixus the elemental of light, Steven the goat man, the copper dragon from Snowsorrow, gold dragons, the female sphinx on Snowsorrow currency, the white creature / white dragon in the Attabre vision, and ice elementals. # Items, Rewards, and Resources Items, currencies, and physical resources mentioned include Envi's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. -Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. +Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Attabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Elissa Hartwall's movement airwise to help with the battle heading to Emmerave. @@ -167,7 +167,7 @@ The elves learned not only barrier formation but also the removal of soul-parts The copper dragon from Snowsorrow remembered after a maggot was removed from her ear. Her boy, Lorleh, Atlih / Ice Fang, Ice Fury, Eveline Heathsall, Argentum, Igraine's ability to reach her, and Verdugrim's breeding of dragonborn and Goliaths all need later preservation. -Trixus, Benu's little brother and Altabre's child, remained under Slumber Imprisonment despite barriers being opened. His rings identify Altabre as Protector of Brass City and first of his name, fifth of his kind. The "father wishes freedom for all his children" vision suggests Altabre wants the sphinxes freed. +Trixus, Benu's little brother and Attabre's child, remained under Slumber Imprisonment despite barriers being opened. His rings identify Attabre as Protector of Brass City and first of his name, fifth of his kind. The "father wishes freedom for all his children" vision suggests Attabre wants the sphinxes freed. The histories of Benu, Garadwal, and Trixus show flawed protectors: Garadwal with the Dumnens, Trixus with Brass City and the tabaxi, and Benu with the elves and the great tower. Benu's departure and hiding remain unexplained. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index a277474..c7b9dd6 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -25,7 +25,7 @@ Goldenswell was still out of sorts after the kidnappings. Two kobolds were now i The party also discussed Wroth. Wroth trapped Envy when he trapped Mama Hartwall, because Envy was in Mama Hartwall's head the same way he is in Ruby Eye's. Geldrin found a disintegrated scroll in Jin Woo's room. On the back was written: "In her gaze, End of Days." Morgana found an auction house receipt for a large picture frame with a massive moth. She also found or noted a chess board with the wizards as carved pieces; one rook looked like [uncertain: brakemen]. The pub was called "11th Duke of Hartwall's wife." A moustached fat man was there with a very good-looking raven-haired half-elf on his arm. Near the Cathedral of Attabre was an ominous church with the sign "Lord Argenthum's Rest." -A dwarf blacksmith pulled Invar aside and said it was good to see others looking around. He said they were there for other reasons, not just to sell wares, and gave Invar a box. A golden dragonborn had tomes about places they had only just discovered: Ashkhellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, and Last Past Airwise. Invar opened the box slightly. It glowed bright and warm, and he closed it to open fully later. +A dwarf blacksmith pulled Invar aside and said it was good to see others lost around. He was there for other reasons, not just to sell wares, and gave Invar a box. A golden dragonborn had tomes about places the tomes had only just discovered: Ashkhellion, Goliath City, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, and Last Post Airwise. Invar opened the box slightly. It glowed bright and warm, and he closed it to open fully later. A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown, but the words beneath were smudged. The book warned: "One more glance a death dance." Geldrin asked how to exile Trixus. The book showed Benu, Trixus, and Garadwel, with two sphinxes behind them and the words "a family reunited" underneath. One figure was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath look." He turned and saw a featherless woman reflected in Invar's armour, then collapsed to the floor. Valentenshide was noted. @@ -75,11 +75,11 @@ Cardonald gave Geldrin all of the teleportation circles: seven prisons with no d # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snowsorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. -Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Snowsorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. +Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Snowsorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snowsorrow, gold dragons, Benu, Trixus, Garadwal, Perodita, Hephestos as a soul, and Morgana as a crow. @@ -89,7 +89,7 @@ Items, documents, and physical resources mentioned include lost documents, the d Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. -Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. +Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine of Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. # Clues, Mysteries, and Open Threads diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index 23677cf..4880602 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -30,11 +30,11 @@ One of Geldrin's scrolls was an arcane form of Draconic and extremely powerful, The party headed into Riversmeet. On the way, Morgana bought a load of fruit and vegetables. The weather was very hot, but one person had a plot that seemed protected from the elements. When the party checked it, it seemed like Igraine's blessing. Closer to town, they saw two oxen-horse crossbreeds pulling a sideless cart with a throne on it. A man wearing only his pants sat there with two women hanging on his sides. Children ran up, threw coins, and shouted, "yay it's the dragon slayer." He was muscly but not useful. Parents told the children to wait for the show; he was apparently a wrestler, with regular matches in Riversmeet. -The party asked where Lady Igraine was. They learned that her manor house was on the central bridge, and the time was 10:00. Temples to Hydrum, Igraine, Larn, and Kasha stood in town; this was the first temple to Kasha the party had seen. Freeport guards were in Riversmeet. Lady Igraine was not at the manor but at the outpost set up at the Menagerie. A strong hedge surrounded the Menagerie. Igraine sat with a black dragonborn and came out of the tent to see the party. They could not get in because of a wall of force or similar effect. A magician had come to repay a favour. About twenty wizards were inside. They had recently refused inspections and prevented the militia from entering. +The party asked where Lady Igraine of Riversmeet was. They learned that her manor house was on the central bridge, and the time was 10:00. Temples to Hydrum, the goddess Igraine, Larn, and Kasha stood in town; this was the first temple to Kasha the party had seen. Freeport guards were in Riversmeet. Lady Igraine was not at the manor but at the outpost set up at the Menagerie. A strong hedge surrounded the Menagerie. Lady Igraine sat with a black dragonborn and came out of the tent to see the party. They could not get in because of a wall of force or similar effect. A magician had come to repay a favour. About twenty wizards were inside. They had recently refused inspections and prevented the militia from entering. The party tried to dispel the magic and get through. Geldrin used Mold Earth to get under the hedge and sent his familiar to look around the outside of the building. The building looked good, but many cages had signs that things had broken out, including griffon, dragon, wolf, and human cages, each with door handles. When the familiar tried to open one cage, it was frazzled. The party went through the hole Geldrin dug and entered the grounds. Invar looked into a window and disappeared. Geldrin disintegrated the door and had a vision of Valentinheide killing Emi's wife. Dirk disappeared, apparently banished. Geldrin appeared to be enrolling in mage school. The names Acroneth, Crindler, Belocoose, and a sphinx on another plane were noted. After killing an acid beast, the party entered the building. They were hit by a fireball from an invisible foe. They knocked three times on the Divination wall and got stairs. -They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter was in Geldrin's year and was Valent's daughter Arreanae. The word "Mum" was noted. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Tortish Hartwall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. +They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter was in Geldrin's year and was Valent's daughter Arreanae. The word "Mum" was noted. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Torlish Hartwall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. The fourth-year students were causing issues. They were from Broken Bounds. Principal Grey had a letter closing the school and transferring students to Grand Towers from Browning, dated 47 AD. A jade or grey object on the desk moved at points. Dirk spoke to it in Aquan. Dribble was in there and acted as if something was swelling this energy. Drawers opened with the head teacher's necklace. A fresh water elemental was released and agreed to join the party for a while around the school. The infirmary and head teacher's office seemed to be on a different plane. The door back to the school led to a different room. @@ -44,7 +44,7 @@ A book on the sphinx on the other plane had been written by serpans, all [uncert The party went back down to the school and entered an auditorium-style transmutation classroom. One buggy was upright of where they came in, and time seemed to have passed as expected. In the study hall or book area, they saw four-armed vulture men who looked like they were melting a pot on a pottery wheel while two wizards observed. One looked mindflayer-like. The party attacked the "wizards," and they died. The notes documented the pots the vulture man had been making: three weeks earlier he had been doing pottery, with other notes elsewhere. The pets were rudimentary Dunner-style pots. The party bandaged his wounds, and he handed over a pot and some food. The poetry seemed to be about Dirk's home. Time spent upstairs had not passed much time in the actual realm. -The party learned that Lord Hacethorn had been the last potion and herb teacher and had written the book on Ruby Eye. The founders of the college were dated 547 years before the dome, 2453 AC after cataclysm: the white-haired elven man Tortish Harthwall and the elderly man Humerous Torn. The party returned to the principal's office and back out, emerging into the Divination classroom full of students, where Isobanne was teaching. It was Sereneday. +The party learned that Lord Hacethorn had been the last potion and herb teacher and had written the book on Ruby Eye. The founders of the college were dated 547 years before the dome, 2453 AC after cataclysm: the white-haired elven man Torlish Hartwall and the elderly man Humerous Torn. The party returned to the principal's office and back out, emerging into the Divination classroom full of students, where Isobanne was teaching. It was Sereneday. Isobanne told the party they were late. Eliana tried to keep the door open, was spotted, and was sent to detention on the fifth floor. An eighteen-year-old human man named Ennuyé, who had been called Thomas, was there, along with a girlfriend or first-year called Hannah. Joy was also noted. Dirk reached the infirmary and asked Nurse Cardonald for the date: the 3rd Sereneday of Hummeron, 2968 AC, or 32 BD. Mama Cardonald thought Ennuyé was a bad influence on her daughter because he was always in detention. @@ -82,7 +82,7 @@ The party went through the door and saw shadows of Valententhide's face. They fe The party got Bosh out and went downstairs. In one set of quarters, the room had a homely farmhouse feel and no dust. It belonged to Professor Arnisimus Goldenfields. Papers on the desk were waterwheel blueprints for Goldenswell. A desk picture showed a bleach-blond halfling standing with a blonde human woman, probably family, inscribed "To my love Arnisimus." There were seven cat collars. A bleach velvet box contained a golden chain with a symbol of a fireplace and a cat, the symbol of Larn. Lesson plans and other papers were present. -At 23:00, doors led to the first-year common room and the conjuration class. The conjuration classroom had a birdhouse type of setup and coloured things above the blackboard. Morgana took the green one, waking a pixie inside. The pixie thought it was 49 AD, not 1012 AD. They thought they were leaving for Grand Towers tomorrow with the others, Green, Red, and Blue. The teachers of conjuration were "the sisters." They could not leave the classroom and were an elemental of Igraine. The party tried to get a new core using Treamon's skull and succeeded. The pixie wondered whether Morgana worked for the Chorus because she was one of Igraine's greatest executers. They thought Vita was also one, but became his own thing while working with Mr Bleakthorn. Mr Moreley could not leave the school either. A baby Attabre spirit had been brought in. The sisters were excited to see it. It was going to the Goliaths as they were becoming Emeraldus's line. The Goliaths killed the remaining two green dragons and created Wyrmdown. +At 23:00, doors led to the first-year common room and the conjuration class. The conjuration classroom had a birdhouse type of setup and coloured things above the blackboard. Morgana took the green one, waking a pixie inside. The pixie thought it was 49 AD, not 1012 AD. They thought they were leaving for Grand Towers tomorrow with the others, Green, Red, and Blue. The teachers of conjuration were "the sisters." They could not leave the classroom and were an elemental of Igraine. The party tried to get a new core using Treamon's skull and succeeded. The pixie wondered whether Morgana worked for the Chorus because she was one of Igraine's greatest executers. They thought Vita was also one, but became his own thing while working with Mr Bleakthorn. Mr Moreley could not leave the school either. Bynx, then known as a baby Attabre spirit, had been brought in. The sisters were excited to see him. He was going to the Goliaths as they were becoming Emeraldus's line. The Goliaths killed the remaining two green dragons and created Wyrmdown. The party went to Mr Moreley's classroom via the second-year common room. Something left through the other door to the common room when they arrived. Mr Moreley's room was fully painted as a mural of Snowsorrow. It had a large desk, a pedestal with a cushion, and a glass sphere with smoke inside. There was a powerful defence mechanism if someone lacked the password. The containment device was the same as Ennuyé's. The mural showed gold, silver, copper, and white dragons. Dirk threw a javelin at the box, but it did nothing. One dragon head of each colour on the mural was a button. The party worked out the pattern, opening the gates of Snowsorrow to reveal an alcove with a draconic book for Ruby Eye. It had been left somewhere only Ruby Eye would find it. The writer was going to try to stop what they were doing here and used the plans for the dome once they had a [unclear] future for [unclear]. "Battery is the clue." The book contained a picture of a baby sphinx, a sixth sphinx. It said a Mother hive for the "worm" had been created using the Attabre excellence. @@ -94,13 +94,13 @@ Back in Mr Moreley's room, after breaking the void out, the dragon on the wall s # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine, Hydrum, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Tortish Hartwall / Tortish Harthwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Ennuyé / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. +People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine of Riversmeet, Hydrum, the goddess Igraine, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Lady Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Torlish Hartwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Ennuyé / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. Groups and factions mentioned include the party, adventurers who found Hartwall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. Places mentioned include the location of Morgana's statue, Howling Tombs, Hartwall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrum, Igraine, Larn, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snowsorrow, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. -Creatures and creature-like beings mentioned include oxen-horse crossbreeds, griffon, dragon, wolf, human cage subjects, the acid beast, water elemental Dribble, the fresh water elemental released by the party, four-armed vulture men, mindflayer-like wizard, gold dragon skull Mr Moreley, automations containing Thinglaens / light entities, a half-orc, orcs, gnolls, Bright and Valentenhule as elemental-plane queens, ice elementals, two green dragons including Emeraldus, the featureless woman holding Hannah, a silver dragon, the silver-green claw, Noxia-blood slime / green liquid, pixie in the green classroom object, Igraine elemental, baby Attabre spirit, gold / silver / copper / white dragons in the mural, baby sphinx / sixth sphinx, Mother hive for the worm, and the void entity / void orb. +Creatures and creature-like beings mentioned include oxen-horse crossbreeds, griffon, dragon, wolf, human cage subjects, the acid beast, water elemental Dribble, the fresh water elemental released by the party, four-armed vulture men, mindflayer-like wizard, gold dragon skull Mr Moreley, automations containing Thinglaens / light entities, a half-orc, orcs, gnolls, Bright and Valentenhule as elemental-plane queens, ice elementals, two green dragons including Emeraldus, the featureless woman holding Hannah, a silver dragon, the silver-green claw, Noxia-blood slime / green liquid, pixie in the green classroom object, Igraine elemental, Bynx as a baby Attabre spirit, gold / silver / copper / white dragons in the mural, baby sphinx / sixth sphinx, Mother hive for the worm, and the void entity / void orb. # Items, Rewards, and Resources @@ -108,7 +108,7 @@ Items, documents, and physical resources mentioned include Morgana's statue, Car Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Ennuyé recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. -Strategic resources and plans mentioned include the Howling Tombs lead through Hartwall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. +Strategic resources and plans mentioned include the Howling Tombs lead through Hartwall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine of Riversmeet's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. # Clues, Mysteries, and Open Threads @@ -130,7 +130,7 @@ Invar and Dirk disappeared separately during the entry, Geldrin experienced old- The names Acroneth, Crindler, Belocoose, and the sphinx on another plane appear during Geldrin's enrollment effect and should be preserved, but their identities are unclear. -Matron Cardonald, Arreanae, Valent, Tortish Hartwall, Humerous Torn, Principal Grey, and Browning all appear in the old school structure. Their relationships and exact historical dates matter for the Grand Towers / mage school history. +Matron Cardonald, Arreanae, Valent, Torlish Hartwall, Humerous Torn, Principal Grey, and Browning all appear in the old school structure. Their relationships and exact historical dates matter for the Grand Towers / mage school history. The fresh water elemental Dribble was trapped in a jade / grey desk object and felt energy swelling. The source of the swelling energy and Dribble's longer-term role are unknown. @@ -172,7 +172,7 @@ Professor Arnisimus Goldenfields's quarters contain Goldenswell waterwheel bluep The pixie in the conjuration room thought it was 49 AD, named the sisters as conjuration teachers, said they could not leave, and identified them as an elemental of Igraine. The party created or replaced a core with Treamon's skull. -The baby Attabre spirit, Goliaths becoming Emeraldus's line, remaining two green dragons being killed by Goliaths, and creation of Wyrmdown are major historical clues. +Bynx as the baby Attabre spirit, Goliaths becoming Emeraldus's line, remaining two green dragons being killed by Goliaths, and creation of Wyrmdown are major historical clues. Mr Moreley's room hid a draconic book for Ruby Eye. Its message says the writer tried to stop what they were doing, used dome plans after a [unclear] future for [unclear], and that "Battery is the clue." It also mentions a sixth sphinx and a Mother hive for the worm using Attabre excellence. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index a97a99e..74fb8c0 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -90,7 +90,7 @@ Invar brought Garadwal out of Feeble Mind. Garadwal looked shocked as he now rem The party went back up the hole. Invar's robes now showed his surname; it had supposedly been there the whole time, and he now recognised it. They exited by the main entrance. The tents were abandoned and empty of people and belongings, though furniture remained. It was 11:00. They went into the town, which was bustling. -At the council offices in the middle of the bridge, two guards stood outside. They said Lady Igraine had gone away that morning on official or family business toward Grand Towers. The party was allowed to see the Exchequer and skip the queue. He said they had been at the mage school, noted that many animals had been sighted recently and that a wounded dragon had flown off. Morgana heard him think that he wished they would leave and that guards should follow them. Morgana also had a new bird on her shoulder, Bartholomew, who said Betty was pretty and that he had been there since they arrived in town. +At the council offices in the middle of the bridge, two guards stood outside. They said Lady Igraine of Riversmeet had gone away that morning on official or family business toward Grand Towers. The party was allowed to see the Exchequer and skip the queue. He said they had been at the mage school, noted that many animals had been sighted recently and that a wounded dragon had flown off. Morgana heard him think that he wished they would leave and that guards should follow them. Morgana also had a new bird on her shoulder, Bartholomew, who said Betty was pretty and that he had been there since they arrived in town. The party went to And Pool. Eliana slipped away to spy on the guards. A half-elf in clothing over leather armour came in soon after the party and began writing on paper. He left with a sending stone. The party grappled him and Geldrin intimidated him into surrendering the stone. The Exchequer wanted to know where they were. The party changed the message to point to a different pub, "I'm the Drink." The Exchequer had said the party looked shifty and had stolen the baby. The spy said the Exchequer had no name, that the seneschal was usually in charge when Lady Igraine was away, and that no aarakocra was important in town, although the spy insisted one existed and that he had worked for him for years. Guards were going to take the party to Lady Igraine. @@ -114,7 +114,7 @@ Bollar men were looking for the party. He agreed to help the militia and find th # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Ennuyé, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. +People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Ennuyé, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine of Riversmeet, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. @@ -164,7 +164,7 @@ The Chorus magpie told Morgana it can now help and that she will know the right The baby sphinx / goliath child was reincarnated too quickly by someone else and became hot and unwell, reflecting the state of goliath civilisation. Its identity, soul source, and condition remain unresolved. -Riversmeet town hall was infiltrated through false officials, altered memories, rats, lamias, Bartholomew, Terrance, Williams, and unknown chains of command. The missing Lady Igraine, missing townsfolk, and remaining infiltrators are unresolved. +Riversmeet town hall was infiltrated through false officials, altered memories, rats, lamias, Bartholomew, Terrance, Williams, and unknown chains of command. The missing Lady Igraine of Riversmeet, missing townsfolk, and remaining infiltrators are unresolved. The Hartwall artifact is said to be hidden in one of the prisons near Snowsorrow, tied to Hartwall's work on mind effects. Which prison holds it, and why it matters to the infiltrators, remains unresolved. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index 596773a..dc15f42 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -154,7 +154,7 @@ Creatures and creature-like beings mentioned include the magical black green-eye Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Ennuyé's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. -Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. +Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Lam / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Hartwall had two daughters; the note hiding items in a cell and a false teddy; Bynx identifying the Attabre toy figure as his father; the Hartwall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming Eliana as Eliana Hartwall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. diff --git a/data/4-days-cleaned/day-53.md b/data/4-days-cleaned/day-53.md index c9f55bb..8aa2e41 100644 --- a/data/4-days-cleaned/day-53.md +++ b/data/4-days-cleaned/day-53.md @@ -17,7 +17,7 @@ Day 53 began in Bridget's domain. Bridget said the party's friend intrigued her Bridget asked where the party wanted to go, and they chose the dwarf city by Papa Illmarne's dome. When they appeared there, the High Priest King said his job was to keep Papa Illmarne's dome. Two dwarves by the dome said the party were wanted criminals for liberating a prisoner. -The party entered a council chamber where the High Priest King, General, Advocate, Ambassador, and Guild Mistress sat around a table. Anya Blakedurn, the Guild Mistress, came from the renowned Blakedurn family, had purple eyes, and represented the party before the council. She questioned them about dragons, dragonborn, automatons, and gnomes. Rubyeye was known as a liar, possibly affected by Wrath. Blakedurn wanted more information in exchange for representing them. Geldrin told her that Perodita was trying to get back into the dome through the city. +The party entered a council chamber where the High Priest King, General, Advocate, Ambassador, and Guild Mistress sat around a table. Anya Blakedurn, the Guild Mistress and Infestus' daughter, came from the renowned Blakedurn family, had purple eyes, and represented the party before the council. She questioned them about dragons, dragonborn, automatons, and gnomes. Rubyeye was known as a liar, possibly affected by Wrath. Blakedurn wanted more information in exchange for representing them. Geldrin told her that Perodita was trying to get back into the dome through the city. Other council figures arrived or were identified: Ambassador Grunged Thundersinger, who also wanted to speak privately and offer things; Advocate Trinchel Rhinebeard, who spoke for minorities; General Tussil Pebblegrinder; and High Priest King Calthid Metalshaper. Calthid was unhappy that the party had brought or introduced Garadwal's armour, believing they had summoned a creature of darkness. Blakedurn said that had not been the party. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index 9480d96..bb6f206 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -106,7 +106,7 @@ Throngore sent them to a path ending at a Dracula-style castle, with armies figh Trying to circle the building revealed dead and invisible wasp bodies after Dotharl cast See Invisibility. The party found fifteen black coins that wailed like the Harley pack of doom and put them all on one wasp body. Farther around was a smashed-in door and an irritated goat man who had been waiting for them. Inside were many prison cells. `[uncertain: Shevolt]` recognized Eliana, malfunctioned, and returned. A familiar dread made Eliana feel they had been there before. When asked his purpose, he said he was there to free a fellow goat named Fred, and the party decided to kill him. The leader said Eliana was a prisoner who had been stolen. When hit by necrotic damage, Eliana briefly became a silver dragonborn with ribbons on the horns and a teddy on the belt. A rock guy was in the cell next to "mine." Eliana's mother had killed him and dedicated him to Kasha; he had not liked Stone Rampart or Eliana at first but grew to like them. The keys to the prisons were visible on the leader's belt. -The notes list gods or god-like names and counts: Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. In one cell a thorn-beard elf, mortal, called Eliana darling and remembered going to the moon with Eliana's mother. He was Lord Briarthorn. The Water Bull had his memories back but could not reach the merbabies because he could not enter the sea water. Eliana entered the water and shouted for Globule, who came and helped free them. Kasha tried to break through the ceiling, and God Bull defied her, saying he would take his realm back. Globule told Geldrin he was ready; Geldrin rang the bell, and the party reappeared in the throne room. Haze said something smelled changed. +The notes list gods or god-like names and counts: Kasha; Throngore 4/13; Shylow; Sjorra; Lam 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. In one cell a thorn-beard elf, mortal, called Eliana darling and remembered going to the moon with Eliana's mother. He was Lord Briarthorn. The Water Bull had his memories back but could not reach the merbabies because he could not enter the sea water. Eliana entered the water and shouted for Globule, who came and helped free them. Kasha tried to break through the ceiling, and God Bull defied her, saying he would take his realm back. Globule told Geldrin he was ready; Geldrin rang the bell, and the party reappeared in the throne room. Haze said something smelled changed. The party returned to the statues and put back the tail. The stone casing broke away and revealed live tabaxi. The king asked how long they had been stone. The notes equate 2034 AP with approximately 3480, the same time the coins were smelted, and say they were cursed. The restored figures planned to speak to the people after planning. A priestess would guide the party to Cardonald. At the fountains, gossip said Lord Hydran was very happy but did not know what was happening; he went to find out, and Globule was back, taking the merfolk babies to the sea. The party agreed to rest and meet the priest the next day at 12:30. @@ -114,7 +114,7 @@ The party found an empty house and relaxed. Dirk felt someone scrying on him. Ou # People, Factions, and Places Mentioned -People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. +People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 4e2cb33..45fec29 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -85,7 +85,7 @@ sources: - [Everard Browning](people/everard-browning.md): Everard Browning, Browning, Edward Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. - [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, Thomas, The Mage, Visage Ennuyé. -- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, direct-contact Cardonald [uncertain whether same person], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. - [Sunsoreen / Snowsorrow](places/sunsoreen.md): Sunsoreen, Snowsorrow, Snowscreen [misspelling], Snow Screen [misspelling], Snow Sorrow [spacing variant]. @@ -120,10 +120,10 @@ sources: - [Lady Yadreya Egrine](people/lady-yadreya-egrine.md): Lady Yadreya Egrine, Baroness of Riversmeet, half-elf female [context-dependent]. - [Hartwall Auction Lots](items/hartwall-auction-lots.md): Hartwall auction, Grand Auction House lots, Browning's scroll, Firefang, Smulty box, Ray of sorting and stirring, bracelet of locating. - [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): Goldenswell prison network, off-the-books prisoners, memory grubs, ear pupae, ear grubs, large grubs attached to ear canals. -- [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scrambleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Barrett, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. +- [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scumbleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Fatrabbit, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardonald, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. - [Bridget's Doors](concepts/bridgets-doors.md): Bridget, Bridge, Bridget / Bridge, Bridge Statue, Statue of Bridge, Bridget's door travel. - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md): Grimescale, Gravltooth, Umberous, Spindl, Cedric, Medinner, Squeall / Squeal, Aglue?, Anemie?. -- [Anya Blakedurn](people/anya-blakedurn.md): Anya Blakedurn, Blakedurn, Guild Mistress. +- [Anya Blakedurn](people/anya-blakedurn.md): Anya Blakedurn, Blakedurn, Guild Mistress, Infestus' daughter. - [Magstein and Grimcrag](places/magstein-grimcrag.md): Magstein, Grimcrag, Grimcrag bridge, Crusty Beard. - [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md): Papa Illmarne's dome, Papa's Dome, Papa Illmarne, Papa Marmaru. - [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Merocole, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Hartwall, Windows, Ember, [uncertain: Antherous?]. @@ -135,14 +135,16 @@ sources: - [Globule](people/globule.md): Globule, whirlpool prisoner, water-baby guide. - [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md): Myriad, Myriad one, Lord of the High Waters, seeker of truth for Hydrus, con artist [Globule's description]. - [Azar Nuri](people/azar-nuri.md): Azar Nuri, Sultan Azar Nuri, fire sultan, living-flame prince [relationship uncertain]. -- [Igraine](people/igraine.md): Igraine, Lady Igraine, Egraine Brook [uncertain earlier variant], spirit of Igraine. +- [Igraine](people/igraine.md): Igraine, Egraine Brook [uncertain earlier variant], spirit of Igraine. +- [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md): Lady Igraine, Lady Igraine of Riversmeet. - [Throngore](people/throngore.md): Throngore, Thromgore [earlier variant], giant goat-headed lord, god/demon of the death realm. - [Kasha](people/kasha.md): Kasha, Kasher [earlier uncertain variant]. - [Eliana](people/eliana.md): Eliana, Eliana Hartwall, Elliana Hartwall, Elluin Hartwall, Elluin Hartwall!. - [Dotharl](people/dotharl.md): Dotharl, Dothral, Dothril, Dothurl. - [Lady Elissa Hartwall](people/lady-elissa-hartwall.md): Lady Elissa Hartwall, Lady Hartwall, Hartwall, Elissa, Kaylissa, Kaylara, Lady Eliisa Hartwall. - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md): Lady Evalina Hartwall, Evalina Hartwall, Mama Hartwall, Miana, Avalina. -- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, Haze, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. +- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, Haze, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Lam, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. +- [Lam](people/lam.md): Lam, god of Lam. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. - [Icefang](people/icefang.md): Icefang, Ice Fang, Altith, Atlih [uncertain], Ice Fury [uncertain related], elderly gentleman in the mental palace. @@ -154,7 +156,7 @@ sources: - [Searu's Arrow](items/searus-arrow.md): Searu's Arrow, Searu's arrows, Searu's staff. - [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. - [Trixus](people/trixus.md): Trixus, Trixius, Tixun, Benu's little brother, elemental of light. -- [Attabre / Altabre](people/attabre-altabre.md): Attabre, Altabre, Protector of the Brass city, father of the sphinxes. +- [Attabre](people/attabre-altabre.md): Attabre, Protector of the Brass city, father of the sphinxes. - [Anadreste](people/bynxs-sister.md): Anadreste, Annadressdey, Annadrazadey, Bynx's sister, guardian of the white dragons, white dragon guardian. - [Galimma, the Peridot Queen](people/galimma-peridot-queen.md): Galimma, Peridot Queen. - [Papa'e Munera](people/papae-munera.md): Papa'e Munera, papa'e munera, papael'munsera, papa I Meurina, black orb. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index 880154c..93db4f3 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -32,7 +32,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Platinum, Cardonald | Platinum added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); Cardonald covered by existing Cardonald/Rubyeye context and cleaned narrative. | | The Chorus and chorus magpie | Existing [The Chorus](../people/the-chorus.md); magpie added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Longfang, Mercy, [unclear: Typh], Heather | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | -| Lady Igraine, Igraine, Abraxas | Existing deity/political context; preserved in cleaned narrative and Day 46 rollups where supporting. | +| Lady Igraine, Igraine, Abraxas | Lady Igraine covered by [Lady Igraine of Riversmeet](../people/lady-igraine-riversmeet.md); the goddess Igraine and Abraxas preserved in deity/political context and cleaned narrative. | | The Exchequer / Bartholomew, Betty, seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, greasy halfling, Bollar men | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Hartwall, Highgate, Lord Bleakstorm | Existing or rollup coverage; Highgate and Hartwall lab leads added to [Minor Places from Day 46](../places/minor-places-day-46.md) and [Open Threads](../open-threads.md). | | Squid-headed men, human wizards, stock-beast handlers, twins, copper-goliath offspring, fish men, leech creatures, lamias, rats, undead sphinx, tainted dragons | Covered in cleaned narrative; specific named/plot-bearing groups in [Minor Figures from Day 46](../people/minor-figures-day-46.md) or [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index fb1a283..5e2986b 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -15,7 +15,7 @@ sources: | Valententhide palace, house, deep-sky domain, wall of faces | Existing [Valententhide](../people/valententhide.md) updated. | | Elemental prisons, frost prison, Dorion, Tim, Geoffrey, aurora prisoner, fire rift | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; minor names also in [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Joy / Hannah / Ennuyé sacrifice | Existing [Joy](../people/joy.md) and [Ennuyé](../people/ennuyé.md) updated; Hannah in minor figures and open threads. | -| Garadwal, Argentum, Metatous, Bynx identifying Attabre as his father | Existing [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), and [Attabre / Altabre](../people/attabre-altabre.md) updated. | +| Garadwal, Argentum, Metatous, Bynx identifying Attabre as his father | Existing [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), and [Attabre](../people/attabre-altabre.md) updated. | | Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Browning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Hartwall lab rooms, Pine Springs, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index e8f8a4a..be23004 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -23,9 +23,9 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Kasha, Guardwell soul pact, merbaby souls through Barrier, Kasha realm, Kasha breaking through ceiling | Added [Kasha](../people/kasha.md); updated [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Throngore, Sauver, Shylow, death realm, goat men, wasps, Air throne warning, path contradiction | Added [Throngore](../people/throngore.md); Sauver/Shylow in [Minor Figures from Day 57](../people/minor-figures-day-57.md); places in [Minor Places from Day 57](../places/minor-places-day-57.md). | | Lord Briarthorn, thorn-beard elf, moon trip with Eliana's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | -| Eliana and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana](../people/eliana.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre / Altabre](../people/attabre-altabre.md). | +| Eliana and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana](../people/eliana.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre](../people/attabre-altabre.md). | | Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | -| Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre / Altabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | +| Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | @@ -35,6 +35,6 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Craters Edge, Pine Springs, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | | Items: newspaper, orb, coal, granite, silver dragon object, Scroll of Fireball, black thread, candles, gold statues, moon crystal, arm bone, Founder's Day poster, auroch sculpture, hourglass, false necklaces, biggening juice, porcelain/quartz dragons, mechanical bird, knife, black coins | Covered in [Minor Items from Day 57](../items/minor-items-day-57.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Clues: 17th March 991, 2842 AP, 3480, 2034 AP, 1050 years, first birth, 12:30 meeting, someone scrying Dirk | Added to [Timeline](../timeline.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), and relevant pages. | -| Gods list: Kasha, Throngore 4/13, Shylow, Sjorra, Law 4/13, [unclear: Ice?], Hydran, Noxia, Squwal, Bridske 4, Attabre 4 | Major names have standalone/existing pages; uncertain/minor names in [Minor Figures from Day 57](../people/minor-figures-day-57.md). | +| Gods list: Kasha, Throngore 4/13, Shylow, Sjorra, Lam 4/13, [unclear: Ice?], Hydran, Noxia, Squwal, Bridske 4, Attabre 4 | Major names have standalone/existing pages; uncertain/minor names in [Minor Figures from Day 57](../people/minor-figures-day-57.md). | No Day 58 material is included in this audit. diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index e7faa61..654f0cd 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -17,7 +17,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is |---|---| | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | -| Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre / Altabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre / Altabre](../people/attabre-altabre.md). | +| Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre](../people/attabre-altabre.md). | | Ruby Eye, Envi / Envy, Joy, Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | @@ -26,7 +26,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | | Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Hartwall, Emmerane and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | | Black-feather communication brick, Domain of Pengalis coin, feather relics, coins/currencies, Treamon's skull, flesh-crafting wand, Trixus's brass rings, time device and other specific resources | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | -| Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Altabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Hartwall | [Open Threads](../open-threads.md), plus related standalone pages. | +| Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Attabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Hartwall | [Open Threads](../open-threads.md), plus related standalone pages. | ## Day 43 Outcomes @@ -36,7 +36,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Papa'e Munera / papael'munsera / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | | Garadwal feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadwal banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | | Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | -| Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md) and open threads. | +| Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md), [Ashkellon](../places/ashkellon.md), and open threads. | | Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadwal's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | | Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), and related standalone pages. | @@ -49,10 +49,10 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Noxia green liquid / blood, lady of destruction, Noxia-return-to-desert clue | [Noxia](../people/noxia.md), [Minor Items](../items/minor-items-days-42-44.md), inventory, and open threads. | | Void orb, eight spheres, Squall's Belt, Brotor's gift, Aurises, kitchen seasoning lead | Standalone item page: [Void Spheres](../items/void-spheres.md); inventory and clues updated. | | Ruby Eye, Browning / Everard, Icefang / Altith, Joy, Attabre, Grand Towers, Barrier, Bleakstorm | Existing pages updated. | -| Cardonald variants, Arreanae, Tortish Hartwall / Hartwall, Humerous Torn, Principal Grey, Dribble, Ennuyé / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Lady Evalina Hartwall / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | +| Cardonald variants, Arreanae, Torlish Hartwall / Hartwall, Humerous Torn, Principal Grey, Dribble, Ennuyé / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Lady Evalina Hartwall / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | | Howling Tombs, Hartwall's old lab, temples of Hydrum / Igraine / Larn / Kasha, Far Grove, Waterrose, Great Farmouth, Blackhold, Brass City, Pri-moon, second moon, Tri-moon, Squall's Belt | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), standalone pages where appropriate. | | Hartwall lab key, Draconic teleport/seeing scroll, alteration orb, janitor broom, power armour, automaton core, Larn chain/cat collars, Treamon's-skull core, Mr Moreley's book, telescope, empty glass orb, dust instructions | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), [Void Spheres](../items/void-spheres.md). | -| Morgana statue, incomplete report, Ruby Eye wife/house sequence, Menagerie lockdown, displacement rules, old school historical date, future knowledge, Ruby Eye final project, automations, Evalina/Avalina identity, Hannah erasure, silver-green claw, baby Attabre spirit, sixth sphinx, lunar truth, next sphere leads | [Open Threads](../open-threads.md). | +| Morgana statue, incomplete report, Ruby Eye wife/house sequence, Menagerie lockdown, displacement rules, old school historical date, future knowledge, Ruby Eye final project, automations, Evalina/Avalina identity, Hannah erasure, silver-green claw, Bynx as the baby Attabre spirit, sixth sphinx, lunar truth, next sphere leads | [Open Threads](../open-threads.md). | ## Unresolved Merge Decisions diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index f5fe6e2..37442f3 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -66,7 +66,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `Valententide's Betrayal` | `data/4-days-cleaned/day-32.md` | Title of obsidian and bone statue showing a crab claw and talon shielding Throngore over a featherless female. | | `circling vultures` | `data/4-days-cleaned/day-32.md` | Title of Davina Browning painting where she covered her eyes with hands that had eyes on them. | | Runes of Lauren | `data/4-days-cleaned/day-32.md` | Runes on a shield ring sold for 600 gp to werewolfish [uncertain: Repiteth]. | -| Lady Fatrabbit's armour dedication to the god of Law | `data/4-days-cleaned/day-32.md` | Armour engravings recorded while Lady Fatrabbit escorted the party through the Castle. | +| Lady Fatrabbit's armour dedication to the god of Lam | `data/4-days-cleaned/day-32.md` | Armour engravings recorded while Lady Fatrabbit escorted the party through the Castle. | | `Don't come to Strong hedge Compromised.` | `data/4-days-cleaned/day-32.md` | The Basilisk warning after Goldenswell refused prison access. | | `The lord above place in the sky` | `data/4-days-cleaned/day-32.md` | Phrase linked to Ruby Eye skull lore. | | Yellow guards' half-sun tattoo obscured by a waterfall | `data/4-days-cleaned/day-32.md` | Symbol worn by guards in the Goldenswell militia-house operation. | @@ -122,8 +122,8 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `do not trust him - I did - he promised me tribute & Never received` | `data/4-days-cleaned/day-42.md` | Igraine cider response, followed by white-roses vision. | | `Tor Protects all` | `data/4-days-cleaned/day-42.md` | Tor response to `Badger born in freedom` note. | | `A gift crafted for a friend is the key to it all` | `data/4-days-cleaned/day-42.md` | Stitcher bowl smoke image response showing Ruby Eye and Lute. | -| `A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` | `data/4-days-cleaned/day-42.md` | Runes on Trixus's four brass rings. | -| `The father wishes freedom for all his children` | `data/4-days-cleaned/day-42.md` | Altabre offering-bowl response after Snowsorrow coin. | +| `A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` | `data/4-days-cleaned/day-42.md` | Runes on Trixus's four brass rings. | +| `The father wishes freedom for all his children` | `data/4-days-cleaned/day-42.md` | Attabre offering-bowl response after Snowsorrow coin. | | `In her gaze, End of Days`; `One more glance a death dance`; `one brief look last breath look`; `In her stare Bones laid bare`; `in her gaze the end of days` | `data/4-days-cleaned/day-43.md` | Valentenshide / Valentenhide death-rhyme cluster from scroll and Benu book. | | `a family reunited` | `data/4-days-cleaned/day-43.md` | Benu book image of Benu, Trixus, Garadwel, and two sphinxes, one only an outline. | | `in her stare honey laid bare` | `data/4-days-cleaned/day-43.md` | Vulture man / force phrase; he did not remember speaking. | diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index 153c979..95bca4e 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -36,9 +36,9 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Ennik and Browning made many of the deals. - Hartwall did not know about half the deals made. - Ruby Eye and Carduneld discussed renegotiating some deals, breaking the inferlite curse, and addressing Barrier damage. -- Day 42 Ashkellon offering bowls answered offerings to Bridge, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Altabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Altabre's children. +- Day 42 Ashkellon offering bowls answered offerings to Bridge, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Attabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Attabre's children. - Day 43 Attabre manifested at the Ashkellon shrine, sought atonement and justice, was angry with Benu, and was connected to Goliaths receiving a protector like Trixus. -- Day 44 old-school lore described Bright and Valentenhule as elemental-plane queens, Hannah as a priestess of Attabre, and a baby Attabre spirit intended for the Goliaths as they became Emeraldus's line. +- Day 44 old-school lore described Bright and Valentenhule as elemental-plane queens, Hannah as a priestess of Attabre, and Bynx as the baby Attabre spirit intended for the Goliaths as they became Emeraldus's line. - Day 48 introduced the Vessel of Divinity: a lost part of Valententhide said it made beings into gods, stripped something away, and left lostness behind. - Day 52 says the pacts are linked to the dome; if the dome ceases, the pacts cease, and all prisons release. - Day 55's Papa Marmaru warning and Merocole intrusion show another dome-bound or prison-adjacent being whose consent, corruption, and identity remain uncertain. @@ -54,7 +54,7 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - [Grand Towers](../places/grand-towers.md) - [Bridget's Doors](bridgets-doors.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) -- [Attabre / Altabre](../people/attabre-altabre.md) +- [Attabre](../people/attabre-altabre.md) - [Valententhide / Valentenhule](../people/valententhide.md) ## Open Questions diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index dbb7f58..7c0ee65 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -129,6 +129,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md) - [Azar Nuri](people/azar-nuri.md) - [Igraine](people/igraine.md) +- [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md) +- [Lam](people/lam.md) - [Throngore](people/throngore.md) - [Kasha](people/kasha.md) - [Eliana](people/eliana.md) diff --git a/data/6-wiki/items/minor-items-day-47.md b/data/6-wiki/items/minor-items-day-47.md index a533242..741ec06 100644 --- a/data/6-wiki/items/minor-items-day-47.md +++ b/data/6-wiki/items/minor-items-day-47.md @@ -15,7 +15,7 @@ sources: | Key from Mr Browning | Sentient door said Mr Browning left with a key. | [Everard Browning](../people/everard-browning.md). | | Stuffed "bears" | Actually humans, gnomes, and halflings; bore the phrase "Here always Never Nowhere all Harth." | Rollup / inscription. | | Dragon-bed key | Key on the dragon bed's bottom with six possible Celestial words. | Rollup. | -| Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a toy figure of Attabre with an elven body and lion's head; Bynx said Attabre was his father. | Rollup, [Bynx](../people/bynx.md), and [Attabre / Altabre](../people/attabre-altabre.md). | +| Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a toy figure of Attabre with an elven body and lion's head; Bynx said Attabre was his father. | Rollup, [Bynx](../people/bynx.md), and [Attabre](../people/attabre-altabre.md). | | `Tunnels of Love` | Dwarf porn found on a dragon-sized bed. | Rollup. | | White rose powder | Smelled of visions. | Rollup. | | Green jade heart pendant | Silver necklace with jade heart pendant found in a false-bottom cutlery box. | Rollup / jade thread. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 9da598c..99a1fd6 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -19,7 +19,7 @@ sources: | Two large feathers with orange and blue feathers and beads | Hidden behind Benu / Guradwal picture; later Garadwal communication used a feather. | Party Inventory; [Garadwal](../people/garadwal.md). | | Red and blue crystals, dwarf-and-dragon-head rug, ornate map of Pentacity slates, four ornate swords, four copper pylons, barrier-opening wheels | Ashkellon tower infrastructure and prison items. | [Ashkellon](../places/ashkellon.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Treamon's skull, health pipe, Bridge coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadwal/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | -| Trixus's brass rings | Rings on Trixus's paws with Altabre inscription. | [Trixus](../people/trixus.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Trixus's brass rings | Rings on Trixus's paws with Attabre inscription. | [Trixus](../people/trixus.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Time-detecting device at Bleakstorm | Detected Dirk missing a day. | [Bleakstorm](../places/bleakstorm.md), open thread. | | Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Hartwall / Goldenswell clues. | Rollup/open threads; [Papa'e Munera](../people/papae-munera.md). | | Benu's glowing open book and five Benu books | Drew answers and death warnings; five books in Goldenswell, Snowsorrow, Dumnensend, Freeport, Hartwall. | [Benu](../people/benu.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | diff --git a/data/6-wiki/items/minor-items-days-53-56.md b/data/6-wiki/items/minor-items-days-53-56.md index f365af1..76789dc 100644 --- a/data/6-wiki/items/minor-items-days-53-56.md +++ b/data/6-wiki/items/minor-items-days-53-56.md @@ -11,7 +11,7 @@ sources: # Minor Items from Days 53-56 - Garadwal's armour: object Calthid Metalshaper blamed the party for introducing or giving, believing it summoned darkness. -- Rubyeye-summoning device: device from Anya Blakedurn's father that took her years to master. +- Rubyeye-summoning device: device from Infestus, Anya Blakedurn's father, that took her years to master. - Papa Illmarne pylons: required to repair the hole in Papa's Dome. - Army wagons and supplies: revealed no water, much wine, one day of food, no weapons, no arrows, and no useful supplies. - Approximately 100 coins: offered by the Ambassador to elementals' mother to avert an elemental attack. diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index b898870..a2abb67 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -135,7 +135,7 @@ sources: - What is the larger status of [Noxia](people/noxia.md) after the Noxia Beast avatar died, and is Noxia blood causing corrupted lands? - What emptied Tradesmells of dragons and Goliaths? - What are Emri / Emi's missing soul-parts or emotions, where are they, and can [Trixus](people/trixus.md) restore them? -- Why did [Attabre / Altabre](people/attabre-altabre.md) put Trixus to sleep, and why is Attabre angry with Benu? +- Why did [Attabre](people/attabre-altabre.md) put Trixus to sleep, and why is Attabre angry with Benu? - What day is Dirk missing according to [Bleakstorm](places/bleakstorm.md)'s time device? - What cost comes with Bleakstorm's time travel, and who is his lost friend [uncertain: leechus]? - What does Bridge require to free Perodita, and what does releasing [Valententhide](people/valententhide.md) under the god rule mean? @@ -165,7 +165,7 @@ sources: - Who was Hannah, how was she wiped from time and space, and why did the party forget her name? - Who owned or was meant to use the black crystal door power armour, automaton core, Great Farmouth rug, and gnomish setup? - What was Professor Arnisimus Goldenfields's role in Goldenswell waterwheel plans, Larn cat symbolism, and the old school? -- What did the baby Attabre spirit, Emeraldus's line, killed green dragons, and creation of Wyrmdown reveal about Goliath history? +- What did Bynx as the baby Attabre spirit, Emeraldus's line, killed green dragons, and creation of Wyrmdown reveal about Goliath history? - What does `Battery is the clue`, the sixth sphinx, and Mother hive for the worm using Attabre excellence mean? - What are Willowispa's hidden things, her absent mother, and the possible male/female Willowispa voices in the old school? - Who are the Tarnished, what is Verdigren, and what is hidden fifteen miles below Tradesmells? @@ -207,7 +207,7 @@ sources: - Which identity should Eliana keep: the current self or the one once held? - What power are the Brownings offering Geldrin, what crystal must Invar give or use, what fishing expedition must Dirk remember, and what training cost threatens Morgana? - What returning dragon did Bridget warn about, why is Invar / silver the route, and how does that connect to Eliana being "Eliana and Eliana"? -- What is [Anya Blakedurn](people/anya-blakedurn.md)'s father's Rubyeye-summoning device, and can her bargain to restore the Dwarven kingdoms be trusted? +- What is the Rubyeye-summoning device made or provided by [Infestus](people/infestus.md) and mastered by [Anya Blakedurn](people/anya-blakedurn.md), and can her bargain to restore the Dwarven kingdoms be trusted? - What is the hole in [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), what pylons are needed to repair it, and why is Papa breaking dwarves as revenge? - What smoke or malevolent presence caused the Quartermaster and General's hopelessness, and is it the same as Blakedurn's black smoke incident or Merocole's smoke sphere? - Who or what is the elementals' mother who accepted coins at the Grimcrag bridge? diff --git a/data/6-wiki/people/anya-blakedurn.md b/data/6-wiki/people/anya-blakedurn.md index b8ae785..7a6ab4c 100644 --- a/data/6-wiki/people/anya-blakedurn.md +++ b/data/6-wiki/people/anya-blakedurn.md @@ -14,7 +14,7 @@ sources: ## Summary -Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa Illmarne's dome. She presents as a dwarf from the renowned Blakedurn guild family but confesses she is actually a black dragon. +Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa Illmarne's dome. She presents as a dwarf from the renowned Blakedurn guild family but confesses she is actually a black dragon. She is Infestus' daughter. ## Known Details @@ -22,6 +22,7 @@ Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa I - Her ear had no worm, but the canal was wrong: too small and hairless. Dirk or Thamia determined she was not a Thamia. - Her house had Sierra aspects and Dunner styling. - She confessed she was not a dwarf but a black dragon. +- Anya Blakedurn is Infestus' daughter. - She wants the dwarves to succeed, but also wants personal rewards such as jewels. - Rubyeye had been her prisoner, and she wants him back. - She offered to help defeat Perodita if the party helped restore the Dwarven kingdoms. @@ -33,11 +34,12 @@ Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa I - [Brutor Ruby Eye](brutor-ruby-eye.md) - [Peridita](peridita.md) - [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md) +- [Infestus](infestus.md) - [Minor Figures from Days 53-56](minor-figures-days-53-56.md) ## Open Questions -- What is Blakedurn's father, and how did he build or obtain the Rubyeye-summoning device? +- How did Infestus build or obtain the Rubyeye-summoning device used by Blakedurn? - What exactly was the black smoke incident? - Does Blakedurn's plan to restore the Dwarven kingdoms align with the party's goals, or only with her own hoard and control interests? - Why does her house include Sierra and Dunner styling? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md index 094eacc..906fb0f 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre-altabre.md @@ -1,9 +1,8 @@ --- -title: Attabre / Altabre +title: Attabre type: god or father figure aliases: - Attabre - - Altabre - Protector of the Brass city - father of the sphinxes first_seen: day-42 @@ -16,21 +15,21 @@ sources: - data/4-days-cleaned/day-57.md --- -# Attabre / Altabre +# Attabre ## Summary -Attabre or Altabre is the god and father of the sphynxes, tied to Brass City, Benu, Garadwal, Trixus, Anadreste, Bynx, and a baby Attabre spirit destined for the Goliaths. +Attabre is the god and father of The Sphinx, tied to Brass City, Benu, Garadwal, Trixus, Anadreste, and Bynx. ## Known Details -- Trixus's brass rings name Altabre as Protector of the Brass city, `Salvation to his Children`, first of his name and fifth of his kind. +- Trixus's brass rings name Attabre as Protector of the Brass city, `Salvation to his Children`, first of his name and fifth of his kind. - A shrine offering on `day-42` produced the words: `The father wishes freedom for all his children.` -- All sphynxes are children of Attabre. +- The Sphinx are the children of Attabre. - Day 43's Benu book listed family names as a missing unnamed one, Anadreste, Benu, hidden Gardwel, and Trixus. - Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. - Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. -- Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. +- Day 44 mentions Hannah as a priestess of Attabre and Bynx as the baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. - Day 47 showed a toy figure of Attabre in a Grand Towers memory box, with an elven body and lion's head; Bynx said Attabre was his father. - Trixus, Benu, and Garadwal are Bynx's brothers. Anadreste is Bynx's sister, guardian of the white dragons, and sacrificed herself to become part of them. - Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. @@ -51,7 +50,6 @@ Attabre or Altabre is the god and father of the sphynxes, tied to Brass City, Be ## Open Questions -- Is Attabre the same as Altabre, or are these variant spellings of a title and a deity? - What task did Attabre give Trixus, and why was Trixus not going to achieve it? - What does `rule one, but from afar` mean, and is it the origin of the current god bargains? - Why is Eliana also Attabre's daughter? diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md index c6b4fac..a74c693 100644 --- a/data/6-wiki/people/benu.md +++ b/data/6-wiki/people/benu.md @@ -18,7 +18,7 @@ sources: ## Summary -Benu is a Dunensend ally or authority figure later revealed as one of Altabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), [Bynx](bynx.md), the elves, and the great tower. +Benu is a Dunensend ally or authority figure later revealed as one of Attabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), [Bynx](bynx.md), the elves, and the great tower. ## Known Details @@ -27,7 +27,7 @@ Benu is a Dunensend ally or authority figure later revealed as one of Altabre's - Benu could message Cardenald and ask her to meet at the Dunensend shrine. - Benu could create a hero's feast before the army moved. - Day 42 found an out-of-place picture of Benu / Guradwal / a goat-headed sphinx dedicated to the Warriors of the Lion from the Dunemin; hidden behind it were two large orange-and-blue-feathered relics. -- A book in Ashkellon described Benu, Garadwal, and Trixus as the last three of Altabre's children who walk on earth. +- A book in Ashkellon described Benu, Garadwal, and Trixus as the last three of Attabre's children who walk on earth. - Trixus, Benu, and Garadwal are Bynx's brothers. - Benu was protector of the elves and helped construct the great tower, but did little protection and instead trained them in art and poetry until they became obsessed with it. - The book says Benu saw errors in its ways, left for an unknown reason, and hid. @@ -40,7 +40,7 @@ Benu is a Dunensend ally or authority figure later revealed as one of Altabre's - `day-29`: Benu helps secure Dunensend support and remains to build a temple. - `day-30`: Benu can contact Cardenald and provide hero's feast support. -- `day-42`: Ashkellon sources connect Benu to Garadwal, Trixus, Altabre, the elves, the great tower, and hidden feather relics. +- `day-42`: Ashkellon sources connect Benu to Garadwal, Trixus, Attabre, the elves, the great tower, and hidden feather relics. - `day-43`: Benu appears in Ashkellon, fights Garadwal, and is implicated in elven emotion-removal techniques. - `day-56`: Benu is reunited with Trixus, Garadwal, and Bynx behind a Grand Towers Barrier and discusses wizard godhood, the generator, and emotion removal. @@ -51,7 +51,7 @@ Benu is a Dunensend ally or authority figure later revealed as one of Altabre's - [Trixus](trixus.md) - [Garadwal](garadwal.md) - [Bynx](bynx.md) -- [Attabre / Altabre](attabre-altabre.md) +- [Attabre](attabre-altabre.md) - [Ashkellon](../places/ashkellon.md) ## Open Questions diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index 50124c1..bb591b6 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -18,11 +18,12 @@ sources: ## Summary -Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. Like all sphynxes, Bynx is a child of [Attabre / Altabre](attabre-altabre.md). +Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. Like all sphynxes, Bynx is a child of [Attabre](attabre-altabre.md). ## Known Details - On `day-46`, Morgana recovered the baby sphynx / goliath child after Kasha tried to claim it as alternative payment; the spell completed too quickly, as if another power also cast it. +- Earlier Day 44 school history described Bynx as the baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. - On `day-47`, the sphynx grew quickly, asked many questions, played in Hartwall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. - On `day-47`, Bynx told Eliana, "I wasn't born green," connected the green change to jade, and remembered brothers now. - Bynx identified the lion-headed elven toy figure of Attabre in a Grand Towers memory box as his father and broke the box. @@ -38,7 +39,7 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - [Garadwal](garadwal.md) - [Anadreste](bynxs-sister.md) -- [Attabre / Altabre](attabre-altabre.md) +- [Attabre](attabre-altabre.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Sunsoreen](../places/sunsoreen.md) - [Minor Figures from Day 47](minor-figures-day-47.md) diff --git a/data/6-wiki/people/bynxs-sister.md b/data/6-wiki/people/bynxs-sister.md index b367b8b..e9b4c41 100644 --- a/data/6-wiki/people/bynxs-sister.md +++ b/data/6-wiki/people/bynxs-sister.md @@ -20,11 +20,11 @@ sources: ## Summary -Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s sister, one of the sphynx children of [Attabre / Altabre](attabre-altabre.md), and the guardian of the white dragons. +Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s sister, one of the sphynx children of [Attabre](attabre-altabre.md), and the guardian of the white dragons. ## Known Details -- All sphynxes are children of Attabre. +- The Sphinx are the children of Attabre. - [Trixus](trixus.md), [Benu](benu.md), and [Garadwal](garadwal.md) are [Bynx](bynx.md)'s brothers. - Day 43's Benu-family list names Anadreste among the sphynx siblings. - Anadreste blessed [Papa'e Munera](papae-munera.md), the fragmented black orb from Invar's box. @@ -36,7 +36,7 @@ Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s s ## Related Entries - [Bynx](bynx.md) -- [Attabre / Altabre](attabre-altabre.md) +- [Attabre](attabre-altabre.md) - [Trixus](trixus.md) - [Benu](benu.md) - [Garadwal](garadwal.md) diff --git a/data/6-wiki/people/eliana.md b/data/6-wiki/people/eliana.md index ab139eb..7b78118 100644 --- a/data/6-wiki/people/eliana.md +++ b/data/6-wiki/people/eliana.md @@ -42,7 +42,7 @@ Eliana is a main player character played by Kirsty, who is also the note taker. ## Related Entries - [Icefang](icefang.md) -- [Attabre / Altabre](attabre-altabre.md) +- [Attabre](attabre-altabre.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [The Chorus](the-chorus.md) - [Lord Briarthorn](lord-briarthorn.md) diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index e962eb3..fe0d3c1 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -58,7 +58,7 @@ Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Byn - Grand Towers orb lore says Garadwal was locked downstairs, heard a chair-guy through his greater gravel children, and walked into Browning's trap. - Geldrin offered Garadwal to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. - At Coalmont Falls, an automaton introduced himself as Garaduel before activating recall protocol; this spelling is preserved as a possible variant or separate automaton identity. -- Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Altabre](attabre-altabre.md)'s children walking on earth. +- Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Attabre](attabre-altabre.md)'s children walking on earth. - Trixus, Benu, and Garadwal are Bynx's brothers. - The same book says Gardwell looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. - On Day 43, Garadwal spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. @@ -68,7 +68,7 @@ Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Byn - Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. - Garadwal sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. - After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. -- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a toy figure of [Attabre / Altabre](attabre-altabre.md) that [Bynx](bynx.md) identified as his father, and diary entries saying Argentum wanted to help Garadwal fight elementals. +- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a toy figure of [Attabre](attabre-altabre.md) that [Bynx](bynx.md) identified as his father, and diary entries saying Argentum wanted to help Garadwal fight elementals. - Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadwal, while preserving uncertainty about whether the original intentions remained good. - On Day 56, Garadwal was found behind a Barrier with Trixus, Benu, and Bynx in a Grand Towers control-room side area. He was clearer, said he would repay his misdeeds by helping the party, and asked that the dome be brought down now for different reasons. - Garadwal's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Hartwall to the downfall and said Argentum died. @@ -85,7 +85,7 @@ Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Byn - `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadwal moving actively. - `day-29`: Excellence says he protected the vultures after Gardwal failed, and his brother was apparently looking for him. - `day-36`: Garadwal is tied to Pride's consumption, Browning's Grand Towers trap, Geldrin's skull-throne bargain, and the Garaduel automaton variant. -- `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Altabre's children, the Dumnens, and the hidden feather relic. +- `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Attabre's children, the Dumnens, and the hidden feather relic. - `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. - `day-46`: Garadwal is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. - `day-47`: Hartwall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx identifying Attabre as his father. diff --git a/data/6-wiki/people/igraine.md b/data/6-wiki/people/igraine.md index cafa1b1..047455d 100644 --- a/data/6-wiki/people/igraine.md +++ b/data/6-wiki/people/igraine.md @@ -2,7 +2,6 @@ title: Igraine type: deity or powerful figure aliases: - - Lady Igraine - Egraine Brook - spirit of Igraine first_seen: day-23 @@ -20,6 +19,8 @@ sources: Igraine is a life, fertility, nature, bird, and reincarnation-associated power. Day 57 tied her to Brass City visions, Morgana's birds, a tabaxi prayer bowl, and a future-looking image of Morgana over small-dragon bones. +Do not confuse the goddess Igraine with [Lady Igraine of Riversmeet](lady-igraine-riversmeet.md). + ## Day 57 Details - A bowl behind the rawhide door was a tabaxi prayer to Igraine. diff --git a/data/6-wiki/people/lady-igraine-riversmeet.md b/data/6-wiki/people/lady-igraine-riversmeet.md new file mode 100644 index 0000000..5db3329 --- /dev/null +++ b/data/6-wiki/people/lady-igraine-riversmeet.md @@ -0,0 +1,37 @@ +--- +title: Lady Igraine of Riversmeet +type: person, Riversmeet authority +aliases: + - Lady Igraine +first_seen: day-43 +last_updated: day-46 +sources: + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md +--- + +# Lady Igraine of Riversmeet + +## Summary + +Lady Igraine is a Riversmeet authority connected to the Menagerie crisis and Riversmeet council spaces. She is not the goddess [Igraine](igraine.md). + +## Known Details + +- On `day-43`, the party planned to go to Riversmeet and speak to Lady Igraine. +- On `day-44`, the party asked where Lady Igraine was and learned her manor house was on the central bridge. +- Lady Igraine was not at the manor house; she was at the outpost set up at the Menagerie. +- Lady Igraine sat with a black dragonborn and came out of the tent to see the party during the Menagerie siege. +- Day 46 references Lady Igraine's room and notes that Lady Igraine had not been taken again. + +## Related Entries + +- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) +- [Riversmeet](../places/riversmeet.md) +- [Igraine](igraine.md) + +## Open Questions + +- What is Lady Igraine's exact office in Riversmeet? +- Why was she involved in the Menagerie siege, and what did she know about the wizards inside? diff --git a/data/6-wiki/people/lam.md b/data/6-wiki/people/lam.md new file mode 100644 index 0000000..ba7ea54 --- /dev/null +++ b/data/6-wiki/people/lam.md @@ -0,0 +1,33 @@ +--- +title: Lam +type: god +aliases: + - god of Lam +first_seen: day-32 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-57.md +--- + +# Lam + +## Summary + +Lam is a god named in Hartwall-region notes and later deity-count material. + +## Known Details + +- On `day-32`, Lady Fatrabbit's armour is described as dedicated to the god of Lam. +- The Irate Unicorn contains a shrine to Lam, alongside other odd objects and local clues. +- On `day-57`, Lam appears in a list of gods or god-like names with counts beside some names. + +## Related Entries + +- [Minor Figures from Days 32 and 35](minor-figures-days-32-35.md) +- [Minor Figures from Day 57](minor-figures-day-57.md) +- [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) + +## Open Questions + +- What is Lam's domain, and why was Lady Fatrabbit's armour dedicated to him? diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 525d2cc..3248813 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -34,6 +34,6 @@ sources: | Shylow | 57 | Goat figure who thought the party were goat people and accepted names beginning with S. | [Throngore](throngore.md). | | [uncertain: Shevolt] | 57 | Recognized Eliana in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Eliana](eliana.md). | | Fred | 57 | Fellow goat whom [uncertain: Shevolt] claimed he was there to free. | Rollup. | -| Sjorra, Law, [unclear: Ice?], Squwal, Bridske | 57 | Listed among gods/god-like names with counts beside some names. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | +| Sjorra, Lam, [unclear: Ice?], Squwal, Bridske | 57 | Listed among gods/god-like names with counts beside some names. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Water Bull / God Bull | 57 | Regained memories, defied Kasha, and wanted to take his realm back; could not enter sea water to get merbabies. | [Hydran / Hydram](hydran.md), [Throngore](throngore.md). | | In'weo [uncertain] | 57 | Queen Mooncoral was asked to investigate where this uncertain figure goes. | [Queen Mooncoral](queen-mooncoral.md). | diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index 774b404..f4dcae9 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -39,18 +39,18 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Jewellery guy / jewellery men: bought several lots, including Browning's spell scroll. - Arthur's group: present around Lot 35. - Conrad Harthwall: present around Lot 35. -- Numbhotall / Scrambleduck / Nambodall: uncertain name variants for the figure who smashed a stick on the floor, cast a spell, and was associated with a locating duck. +- Numbhotall / Scumbleduck / Nambodall: uncertain name variants for the figure who smashed a stick on the floor, cast a spell, and was associated with a locating duck. - Older human man, robed figure, silver dragonborn, backpack of scrolls, floating book, and gnome with a wooden shield bearing a golden duck: present around Lot 35. - Laura: won the bracelet of locating for 101 gp. - Skutey Galvin: name linked to Browning and wanted for impersonating a Justicar; not merged with Everard Browning without confirmation. - Constantine Harthwall: false name Eliana gave to the Justicar. - Wroth: called by Xinquiss to help hide the shield crystal. -- Barrett: returned with the militia-house prisoner roster. +- Fatrabbit: returned with the militia-house prisoner roster. - Lady Neegate: quiet lately because of a loss in the family. - Bugy / Little Bugy: connected to an attempted assassination of Sefris on the ground and the Cult of Salvation. - Sefris: assassination target connected to Cult of Salvation activity. -- Cardencalde: did not answer Eroll, which was strange because Eroll contacts her directly. -- Eroll: direct messaging/contact route to Cardencalde and Lady Elissa Hartwall; returned with Jin-Loo's ring. +- Cardonald: did not answer Eroll, which was strange because Eroll contacts her directly. +- Eroll: direct messaging/contact route to Cardonald and Lady Elissa Hartwall; returned with Jin-Loo's ring. - Alf: wanted out allot - Elementarium. - Scumi: goblin with a bag of skulls who tried to survey or enter the prison. - Gary: corrupted sphinx heading toward Grand Towers in skull visions. diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index 8e8a073..b75b3f7 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -45,7 +45,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Wroth, Envy / Envi, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Wroth trapped Envy in Lady Evalina Hartwall's head like Envy in Ruby Eye's. | [Ennuyé](ennuyé.md). | | [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Hartwall street, receipt, chess, pub, and church details. | Rollup/open thread. | | Dwarf blacksmith, golden dragonborn, vulture man, bushy-eared elf, pale dwarf with black dreadlocks and crown | Box and Benu-book scene figures. | Rollup; pale dwarf unresolved Ruby Eye lead. | -| Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre / Altabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | +| Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | | Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | | Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcroft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | @@ -61,7 +61,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Dragon slayer wrestler and two women | Riversmeet street performer on throne cart. | Rollup. | | Black dragonborn with Igraine, Freeport guards, militia, twenty wizards | Menagerie siege. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Acroneth, Crindler, Belocoose, sphinx on another plane | Names from Geldrin's enrollment effect. | Rollup/open thread. | -| Arreanae, Valent's daughter, gremlin janitor, Tortish Hartwall / Hartwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Arreanae, Valent's daughter, gremlin janitor, Torlish Hartwall / Hartwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Serpans, four-armed vulture men, mindflayer-like wizard, Isobanne | Sphinx book and study-hall/classroom figures. | Rollup/open thread. | | Ennuyé / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Ennuyé](ennuyé.md), [Valententhide](valententhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Everard, Valenth, Brotor / Brutor, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Miana / Avalina | Student identities and old school group. | Standalone entry plus existing pages where present. | diff --git a/data/6-wiki/people/morgana.md b/data/6-wiki/people/morgana.md index 5c66376..8db7d9c 100644 --- a/data/6-wiki/people/morgana.md +++ b/data/6-wiki/people/morgana.md @@ -31,7 +31,7 @@ Morgana is a human player character played by Laura R. She was sent by The Choru - Morgana gave goodberries to heal refugees at Stricker's camp. - The party arranged an extra mount for Morgana before scouting the statue near Dunensend. - Day 30 notes that Morgana could cast Polymorph. -- Day 32 has Morgana escaping with Geldrin and Dith through a trapdoor while carrying or helping secure the shield crystal, later locating Lady Thorpe inside the Goldenswell militia house. +- Day 32 has Morgana escaping with Geldrin and Dirk through a trapdoor while carrying or helping secure the shield crystal, later locating Lady Thorpe inside the Goldenswell militia house. - Day 35 has Morgana scouting as a spider, bribing or attempting to bribe guards, sensing movement, stopping carts with thorns, killing llamia with a cart wheel, and trying to wake Elementarium with a kiss. - The attempted kiss felt forced and gave Morgana a vision of a laughing female dragon, possibly the Peridot Queen. - Day 46 shows Morgana's bee scouting, infinite-library vision, and Chorus magpie guidance. diff --git a/data/6-wiki/people/papae-munera.md b/data/6-wiki/people/papae-munera.md index 1842c55..0efa674 100644 --- a/data/6-wiki/people/papae-munera.md +++ b/data/6-wiki/people/papae-munera.md @@ -31,7 +31,7 @@ Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a bl ## Related Entries -- [Attabre / Altabre](attabre-altabre.md) +- [Attabre](attabre-altabre.md) - [Trixus](trixus.md) - [Elemental Prisons](../concepts/elemental-prisons.md) diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index e0fe730..90e3901 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -124,7 +124,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Luth](luth.md) | hiding or alive, unconfirmed | `data/4-days-cleaned/day-29.md` | Reportedly alive and hiding with the vulturemen, perhaps in the dome. | | [Lady R. Beauchamp?!?](lady-r-beauchamp.md) | unresolved | `data/4-days-cleaned/day-30.md` | Named as the person on whose behalf a Dunensend scholar inspected soot bones, with `Blue Dragon?!?` noted beside it. | | Lady Fatrabbit / Blossom | Hartwall sheriff and halfling general | `data/4-days-cleaned/day-32.md` | Helped investigate Lady Thorpe's abduction and took the party through the Castle. | -| Cardencalde | unreachable by Eroll | `data/4-days-cleaned/day-32.md` | Did not answer direct contact, which was strange. | +| Cardonald | unreachable by Eroll | `data/4-days-cleaned/day-32.md` | Did not answer direct contact, which was strange. | | Baytail | prisoner, accused head of Underbelly | `data/4-days-cleaned/day-32.md` | Seen in skull vision as a Goldenswell prisoner. | | Elementarium | rescued but altered/unresolved | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Imprisoned while an impostor appeared in town crier information; later rescued from prisoner cart and woke with green eyes. | | Brookville Springs leader / lead human | vanished | `data/4-days-cleaned/day-36.md` | Missing on the bang night after purple explosions. | diff --git a/data/6-wiki/people/trixus.md b/data/6-wiki/people/trixus.md index 9c9a3a7..dea3087 100644 --- a/data/6-wiki/people/trixus.md +++ b/data/6-wiki/people/trixus.md @@ -19,13 +19,13 @@ sources: ## Summary -Trixus, also Trixius or Tixun, is Benu and Bynx's brother, one of Altabre's children, and an elemental of light imprisoned in Ashkellon. +Trixus, also Trixius or Tixun, is Benu and Bynx's brother, one of Attabre's children, and an elemental of light imprisoned in Ashkellon. ## Known Details - On `day-42`, the goat-headed sphinx prisoner was identified as Trixus, an elemental of light and Benu's little brother. -- He had four brass rings on each paw inscribed: `A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` -- A book on Benu, Garadwal, and Trixus described them as the last three of Altabre's children who walk on the earth. +- He had four brass rings on each paw inscribed: `A Blessing from Attabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` +- A book on Benu, Garadwal, and Trixus described them as the last three of Attabre's children who walk on the earth. - Trixus, Benu, and Garadwal are Bynx's brothers. - Trixus helped create Brass City and helped the tabaxi become industrious and proactive. - He remained under a Slumber version of Imprisonment even after the party opened barriers. @@ -38,13 +38,13 @@ Trixus, also Trixius or Tixun, is Benu and Bynx's brother, one of Altabre's chil - [Benu](benu.md) - [Garadwal](garadwal.md) - [Bynx](bynx.md) -- [Attabre / Altabre](attabre-altabre.md) +- [Attabre](attabre-altabre.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Ashkellon](../places/ashkellon.md) ## Open Questions -- Why did Altabre put Trixus to sleep? +- Why did Attabre put Trixus to sleep? - Can Trixus restore Emi's removed emotions, and where are those emotions held? - How does Trixus's role as one of Attabre's sphynx children overlap with his elemental-of-light identity and Barrier imprisonment? - Why was Trixus again behind a Barrier at Grand Towers after the Ashkellon release? diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md index e156c44..653f4b8 100644 --- a/data/6-wiki/people/valententhide.md +++ b/data/6-wiki/people/valententhide.md @@ -46,7 +46,7 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - On `day-52`, a night-sky-serenity part of Valententhide was described as a small shard of a powerful creature. Reuniting it would soften Valententhide into a goddess of destruction rather than a mindless road-murdering force. - Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. - On `day-56`, Valententhide appeared reflected in Invar's armour, and a tapestry showed five wizards plus an invisible Hannah Joy-like woman whom Dotharl could not see because he knew she existed. -- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Altabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Lady Evalina Hartwall / Mama Hartwall. +- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Attabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Lady Evalina Hartwall / Mama Hartwall. ## Related Entries @@ -68,5 +68,5 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - Why did Joy say this figure took her mum, and why did the ancestors still approve releasing it? - What does the `gold Valententhide` orb contain, and what would Bridget do with it? - Why did Valententhide appear through Invar's armour, and what does the Hannah-like invisible woman in the wizard tapestry imply? -- What does the Altabre symbol on Valententhide's deactivated prison indicate? +- What does the Attabre symbol on Valententhide's deactivated prison indicate? - Who are the `daughters` and Lady Evalina Hartwall / Mama Hartwall in the replacements' comments? diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index f72adde..cf5450d 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -43,7 +43,7 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - Later she repaired prison systems, helped calculate the Tri-moon shard trajectory, fixed Salt/Seaward issues, resisted mental intrusion, resurrected Rubyeye, and repaired Errol. - Valenthide/Valententhide is also recorded as a prisoner or prison, with Galetea/Galatrayer as an automation guard; whether this is the same name or a related being remains uncertain. - Day 32 auction art included `Valententide's Betrayal`, showing a crab claw and talon shielding Throngore over a featherless female; skull visions also showed Vallententide grabbed by a crab claw and disappearing, and later notes say Valententide had been attacked by Throngore with darkness. -- Cardencalde did not answer Eroll on Day 32, which was strange because Eroll contacts her directly; whether Cardencalde is Cardenald is uncertain. +- Cardonald did not answer Eroll on Day 32, which was strange because Eroll contacts her directly; whether Cardonald is Cardenald is uncertain. - Day 42-44 evidence increasingly points to [Valententhide / Valentenhule](valententhide.md) as a separate high-sky or betrayed figure, but the spelling collision remains unresolved and is not silently merged. - Day 43 Cardonald / Cardenald coordinated Ashkellon, searched unsuccessfully for Ruby Eye and Errol, and gave Geldrin teleportation circles for prisons, Grand Towers, lab, Menagerie, Ashhellier, and pylon sites. - Day 44 old-school scenes include Matron / Nurse Cardonald, her daughter Arreanae, and Mr Cardonald, while Valenth appears in Ruby Eye's old student group. diff --git a/data/6-wiki/places/ashkellon.md b/data/6-wiki/places/ashkellon.md index f540d34..ac5db45 100644 --- a/data/6-wiki/places/ashkellon.md +++ b/data/6-wiki/places/ashkellon.md @@ -4,7 +4,7 @@ type: place aliases: - Askellon - Ashkellon - - Ashkhellion +- Ashkhellion - Ashhellier - Goliath City - Emeredge's city @@ -19,11 +19,12 @@ sources: ## Summary -Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city and tower, where the party infiltrated dragonborn-held Goliath society, rescued captives, fought Emmeredge, and reunited Benu, Garadwal, and Trixus. +Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city and tower, located between Dunensend and Heartmoor, where the party infiltrated dragonborn-held Goliath society, rescued captives, fought Emmeredge, and reunited Benu, Garadwal, and Trixus. ## Known Details - Galimma identified Emeredge in Askellon among Lortesh and Perodita's remaining children or related dragons. +- Ashkhellion is located between [Dunensend](dunensend.md) and [Heartmoor](heartmoor.md). - Three Finger Dune Shwelter claimed to be part of the Ashkellon resistance and helped the party contact resistance members through a black-feather communication device. - The party teleported into a throne room, killed Araks, and moved workers and Badger out from the wash-room area. - The tower contained skull arches, Goliathified god statues, offering bowls, prison rooms, a library, map rooms, a Noxia chamber, treasure hall, and elemental or dragon prisoners. diff --git a/data/6-wiki/places/brass-city.md b/data/6-wiki/places/brass-city.md index a155b45..e775647 100644 --- a/data/6-wiki/places/brass-city.md +++ b/data/6-wiki/places/brass-city.md @@ -38,7 +38,7 @@ Brass City is a formerly enslaved elemental city whose current rulers are descri - [Brass City Council](../factions/brass-city-council.md) - [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) -- [Attabre / Altabre](../people/attabre-altabre.md) +- [Attabre](../people/attabre-altabre.md) - [Trixus](../people/trixus.md) - [Hydran / Hydram](../people/hydran.md) diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md index 01070d6..cbe0c53 100644 --- a/data/6-wiki/places/minor-places-day-46.md +++ b/data/6-wiki/places/minor-places-day-46.md @@ -19,7 +19,7 @@ sources: | Pre-Dome desert | Garadwal's last memory before reincarnation. | [Garadwal](../people/garadwal.md). | | Rhime watches | Dothral woke near here around twenty years ago before being propelled through a door. | Rollup/open thread. | | Lake Azure | Longfang thought the dragon there might be dead. | Rollup/open thread. | -| Riversmeet council bridge, And Pool, `I'm the Drink`, Wayshrill Bridge, The Olde Clay Jug | Town investigation locations around the false Exchequer, missing Igraine, infiltrators, rewards, and the `Earth hath no` door. | Rollup/open thread. | +| Riversmeet council bridge, And Pool, `I'm the Drink`, Wayshrill Bridge, The Olde Clay Jug | Town investigation locations around the false Exchequer, missing [Lady Igraine of Riversmeet](../people/lady-igraine-riversmeet.md), infiltrators, rewards, and the `Earth hath no` door. | Rollup/open thread. | | Hartwall artifact prison near Snowsorrow | Infiltrator lead said Hartwall put an artifact in one of the prisons near Snowsorrow. | Open thread. | | Pine Springs | Adventurers killed some people there while following a related lead. | Rollup/open thread. | | Hartwall's lab | The party chose to head there after rest and chicken. | Rollup/open thread. | diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index ba4be3a..617a421 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -23,6 +23,6 @@ sources: | Fire realm / Azar Nuri's palace | Broken throne room and fire garden ruled by Sultan Azar Nuri. | [Azar Nuri](../people/azar-nuri.md). | | Past Brass City | Lively Mortal-plane version of Brass City with blue dragonborn, dragons, market, palace, and tapestry-maker. | [Brass City](brass-city.md). | | Igraine's field | Flowered possible afterlife where Morgana could speak with plants and retrieved the cat through animals/birds. | [Igraine](../people/igraine.md). | -| Attabre's realm | Cloakroom, sitting room, dining room, sphynx picture, birthday meal, and lore about princes and a pact at Ground Towers. | [Attabre / Altabre](../people/attabre-altabre.md). | +| Attabre's realm | Cloakroom, sitting room, dining room, sphynx picture, birthday meal, and lore about princes and a pact at Ground Towers. | [Attabre](../people/attabre-altabre.md). | | Throngore's realm / death realm | Throne room, path, memory battlefield, castle, prison tower, purple crystal, and sea-water prison. | [Throngore](../people/throngore.md). | | Empty Brass City house | Party rested there after the merbaby rescue; Dirk felt someone scrying on him. | [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md index a264867..64b7b62 100644 --- a/data/6-wiki/places/minor-places-days-42-44.md +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -16,7 +16,7 @@ sources: | Domain of Pengalis, Dunemin, Pentacity slates, sea gap, Shousorrow, Snowsorrow, Fire, great tower, Gravel Basers | Historical and map locations from Ashkellon. | Rollup/open threads. | | Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Hartwall, Emmerane | Day-42 time/Bridge/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | | Goldenswell, Pine Springs, Hartwall, 11th Duke of Hartwall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Hartwall locations. | Rollup/open threads. | -| Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise | Tomes about newly discovered places. | Rollup/open threads. | +| Tradesmalls, Thadkhell, Wormdoo, Oldum, Broken Bounds, Blackshield, Last Post Airwise | Tomes about places the tomes had only just discovered. | Rollup/open threads; [Ashkellon](ashkellon.md) is also in this list as Goliath City. | | Grincray / Grim & Cray, Mashir, lake of Papa'e Munera, rear Ironcroft air site, Claymeadow, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | | Riversmeet, Ruby Eye's melted house ruins and gravestone, central bridge manor house, temples of Hydrum / Igraine / Larn / Kasha | Day-44 Riversmeet investigation. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Hartwall's old lab, Howling Tombs, Menagerie outpost, Menagerie grounds, apothecary, infirmary, head teacher's office, old classrooms, Air common room, astronomy room | Day-44 Menagerie and school spaces. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index 218e6b5..7615441 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -27,11 +27,11 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - Day 35 identified Lady Yadreya Egrine as Baroness of Riversmeet and connected her menagerie to stolen experimental creatures later recognized as memory grubs. - Day 43 reported that mages at the Menagerie did not return to Grand Towers and locked it down; it used to be the mage school. - Day 43 also identified the interfering memory spell as waterwise at the Mages College at Riversmeet, involving Attabre magic plus another force. -- On `day-44`, the party reached Riversmeet, found Ruby Eye's melted house ruins and gravestone, and joined Lady Igraine's siege outside the Menagerie. +- On `day-44`, the party reached Riversmeet, found Ruby Eye's melted house ruins and gravestone, and joined [Lady Igraine of Riversmeet](../people/lady-igraine-riversmeet.md)'s siege outside the Menagerie. - The Menagerie grounds had broken cages for griffon, dragon, wolf, and human subjects and a wall of force or similar effect. - Inside, the party entered old-school time or planes: apothecary, infirmary, head teacher's office, Divination, transmutation, study hall, common rooms, lessons, Air common room, tower tunnels, classrooms, and astronomy. -- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Ennuyé, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Tortish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. -- Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. +- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Ennuyé, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Torlish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. +- Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, Bynx as a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. - On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadwal's reincarnation. - The school contained or released a memory-destroying creature and an invisible escaping entity; the party's memories were blanked and later flooded back after they protected a glowing thing in linked rooms. - Day 46 also connected the school to Riversmeet's current town-hall infiltration, because mind magic used by the infiltrators began malfunctioning after something happened at the school. diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index a2b168d..7a43221 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -82,15 +82,15 @@ sources: - `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Everard Browning](people/everard-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Lam](people/lam.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). -- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). +- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Lady Igraine of Riversmeet](people/lady-igraine-riversmeet.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/bynxs-sister.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). - `data/4-days-cleaned/day-48.md`: [Bynx](people/bynx.md), [Anadreste](people/bynxs-sister.md), [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). @@ -98,7 +98,7 @@ sources: - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Everard Browning](people/everard-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Lam](people/lam.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index b7b7207..aacf9a7 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -92,7 +92,7 @@ sources: - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre / Altabre](people/attabre-altabre.md) as his father, [Anadreste](people/bynxs-sister.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. +- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre](people/attabre-altabre.md) as his father, [Anadreste](people/bynxs-sister.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. - `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. -
a9fbe24Sphynx updateby Laura Mostert
data/2-pages/318.txt | 2 +- data/4-days-cleaned/day-47.md | 6 ++-- data/4-days-cleaned/day-48.md | 4 +-- data/4-days-cleaned/day-56.md | 6 ++-- data/6-wiki/aliases.md | 1 + data/6-wiki/clues/day-47-coverage-audit.md | 2 +- data/6-wiki/concepts/elemental-prisons.md | 4 +-- data/6-wiki/index.md | 1 + data/6-wiki/open-threads.md | 6 ++-- data/6-wiki/people/attabre-altabre.md | 7 +++-- data/6-wiki/people/benu.md | 6 +++- data/6-wiki/people/bynx.md | 15 +++++---- data/6-wiki/people/bynxs-sister.md | 49 ++++++++++++++++++++++++++++++ data/6-wiki/people/garadwal.md | 10 +++--- data/6-wiki/people/papae-munera.md | 4 +-- data/6-wiki/people/trixus.md | 9 ++++-- data/6-wiki/places/sunsoreen.md | 4 ++- data/6-wiki/sources.md | 4 +-- data/6-wiki/timeline.md | 2 +- 19 files changed, 105 insertions(+), 37 deletions(-)Show diff
diff --git a/data/2-pages/318.txt b/data/2-pages/318.txt index a2aae96..de2b157 100644 --- a/data/2-pages/318.txt +++ b/data/2-pages/318.txt @@ -2,7 +2,7 @@ Page: 318 Source: data/1-source/IMG_9991.jpg Transcription: -Annadressdey speaks of her sacrifice against a massive white dragon threat. It was a True sacrifice and imbued her powers into all white dragon descendants, including Lefang. +Annadressdey speaks of her sacrifice against a massive white dragon threat. It was a True sacrifice and imbued her powers into all white dragon descendants, including Icefang. Third level. Carpet has three blue dragons, serpent-like. Doors all magically locked. Geldrin taps the Rubyeye on the door and it opens. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index b136af2..596773a 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -116,7 +116,7 @@ A tome of dome making displayed strange curving patterns, a "magnet curvature pa The archway's "glittering" rune glowed, and men stepped through the portal. One was human-ish and old, with golden blond hair, a very long moustache, golden eyes, ornate old clothing, sandals, and a walking stick. He asked where the scroll was and named himself Aurum Prudence. He disliked Dotharl. He said the only portal activation in the last thousand years had been the cat. He thought the scrolls had all gone with them when everything was crazy. Pacts had been broken, perhaps Hartwall and Icefang, and they had decided to take charge and move the city. -Aurum suggested the party come back with him so he could show them around, after which they could decide whether he could have the scroll. The party took the cloak. They went to Snowsorrow, where the archway had different runes. The building was enormous, with grass and woodlands below. It was a warm patch and blackout time, but it was midday. The Tri-moon was visible at the wrong time. A copper dragon landed nearby and entered the building. The city was now called Sunsoreen. A door was carved with a female sphynx face identified as Bynx's sister. Aurum took the party inside the palace to the council first. The council doorway was enormous and impressive, carved with a white dragon and sphynx. Geldrin had the scroll explaining how they moved the city to the other side of the earth. +Aurum suggested the party come back with him so he could show them around, after which they could decide whether he could have the scroll. The party took the cloak. They went to Snowsorrow, where the archway had different runes. The building was enormous, with grass and woodlands below. It was a warm patch and blackout time, but it was midday. The Tri-moon was visible at the wrong time. A copper dragon landed nearby and entered the building. The city was now called Sunsoreen. A door was carved with a female sphynx face identified as Bynx's sister, the guardian of the white dragons who sacrificed herself to become part of them and turn them good. Aurum took the party inside the palace to the council first. The council doorway was enormous and impressive, carved with a white dragon and sphynx. Geldrin had the scroll explaining how they moved the city to the other side of the earth. Stained glass appeared to show dragon theory: a white dragon surrounded by gold dragons. Five thrones stood in the middle. The council figures included a female elf or human to the left of the white dragon, a golden dragonborn, an unclear figure with odd hair, and to the right a dwarf with a massive golden beard covered in statue symbols. Sophus Holed was linked to spiritual things. Aurum Prudence sat in one of the free chairs. An elf or human asked why the party wanted an audience with the Council. @@ -134,7 +134,7 @@ The court did not want to question Dotharl because they did not question machine The notes record that Dothril / Dotharl had a familial tie to an elemental. Bynx explained that where pure elemental planes meet, they combine. When the party asked if the council were ready, two gold dragonborn escorted them. Only Hayhearn Frostwind and Aurum Prudence were present. The Lorekeeper was unavailable. Hayhearn disliked being asked where their information came from. She sent Aurum to fetch records; he muttered that it was not like it used to be. When Eliana questioned why the trial questions were irrelevant, Hayhearn asked who Eliana thought they were. According to Sunsoreen records, Eliana was Eliana Hartwall. -Aurum left, and Hayhearn said that explained a lot. Bynx cast Truesight and found his sister was no longer there; there was no trace of her in the white dragon. Aurum returned with the rest of the council, and the empty chair was now filled by a silver-skinned human. The council proposed that Eliana stay and they would help Eliana find out what they had lost. The party did not trust this. The party demanded release of all Sunsoreen citizens; the council declined. Hayhearn invoked guest rights and tried to arrest them, but Aurum Prudence objected forcefully and told the party to leave. Many people then ran to the chambers with papers for an emergency law-making meeting. +Aurum left, and Hayhearn said that explained a lot. Bynx cast Truesight and found his sister was no longer there; there was no trace of her in the white dragon. This was significant because her sacrifice should have left a trace in all white dragons and their descendants. Aurum returned with the rest of the council, and the empty chair was now filled by a silver-skinned human. The council proposed that Eliana stay and they would help Eliana find out what they had lost. The party did not trust this. The party demanded release of all Sunsoreen citizens; the council declined. Hayhearn invoked guest rights and tried to arrest them, but Aurum Prudence objected forcefully and told the party to leave. Many people then ran to the chambers with papers for an emergency law-making meeting. The party returned to the frost prison. Geldrin tried to turn the portal off but accidentally activated another location: a square black obsidian room with no doors. Geldrin found a door, placed a hand on it, and opened it into a black corridor in Valententhide's house. The portal had one charge left, shared between portals and resetting once a day. When the party opened the portal and tried to go through, they saw Valententhide and passed out. Three went through before the portal closed. Morgana heard Eliana and felt cold hands on her shoulder. @@ -200,7 +200,7 @@ Aurum Prudence and Sunsoreen revealed a city moved to the other side of the eart The Lorekeeper supplied impossible information about Eliana Hartwall, teddy bears, pets, and Dotharl's "Help me, Grandson" message, but could not be met. Its nature and source of knowledge are unresolved. -Bynx's Truesight found his sister absent from the white dragon with no trace. The sister's identity, disappearance, and relation to the white dragon and Sunsoreen council remain unresolved. +Bynx's Truesight found his sister absent from the white dragon with no trace. Because Bynx's sister was the guardian of the white dragons and sacrificed herself to become part of them, all white dragons and descendants should retain a trace of her; her absence is therefore a major unresolved clue. The council offered to help Eliana find what she had lost if she stayed, refused to release citizens, and attempted an arrest under guest rights. Aurum's objection prevented immediate capture, but emergency law-making followed. diff --git a/data/4-days-cleaned/day-48.md b/data/4-days-cleaned/day-48.md index 97b70a3..556879f 100644 --- a/data/4-days-cleaned/day-48.md +++ b/data/4-days-cleaned/day-48.md @@ -20,7 +20,7 @@ complete: true # Narrative -Day 48 began after the party closed the fire elemental rift in Hartwall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed Eliana being a Hartwall, Bynx said Eliana was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping Eliana from memories in the same way Ennuyé's wife Hannah had been erased. +Day 48 began after the party closed the fire elemental rift in Hartwall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed Eliana being a Hartwall, Bynx said Eliana was not always green and sometimes reminded him of his sister and Platinum. Bynx's sister was the guardian of the white dragons and had sacrificed herself to become part of them, so his earlier finding that no trace of her remained in the white dragon was significant. The party considered or named a deal with a god: wiping Eliana from memories in the same way Ennuyé's wife Hannah had been erased. Errol returned and reported that things were bad after a battle. Gardoil was not present because she had gone to do something, and reinforcements were needed from the capital. The party tried to travel by broom to Azureside and found themselves in a place of completely blue sky, passages, vanishing doors, lush grass, mushrooms, and sky below. A squirrel spoke with them, did not know where it was, and said a floppy bronze-coloured lizard looked after him. The squirrel sent a magpie to fetch it. A metallic brass-looking dragon approached. @@ -80,7 +80,7 @@ Strategic resources and plans mentioned include reinforcements from the capital, # Clues, Mysteries, and Open Threads -Bynx's statements that Eliana was not always green and sometimes reminds him of his sister and Platinum continue the unresolved identity, jade, and sphynx-family threads. +Bynx's statements that Eliana was not always green and sometimes reminds him of his sister and Platinum continue the unresolved identity, jade, and sphynx-family threads. His sister's absence from the white dragon is especially concerning because white dragons and their descendants should retain a trace of her sacrifice. The possible god-deal to wipe Eliana from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Ennuyé, Joy, Hannah, and Eliana's Hartwall identity. diff --git a/data/4-days-cleaned/day-56.md b/data/4-days-cleaned/day-56.md index 59f8e3d..8298e0c 100644 --- a/data/4-days-cleaned/day-56.md +++ b/data/4-days-cleaned/day-56.md @@ -22,11 +22,11 @@ Dotharl saw Valententhide reflected in Invar's armour. The party left the room a The control room was guarded by two automatons and held eight statues. Salana's runes were intact. Garadwal and Valententhide's runes were unlit, while the rest flickered. Monks meandered through the room. Dotharl looked at the Valententhide statue, thought he saw only a statue, and was attacked by it. Geldrin investigated and took damage. Runes lit up around the statue saying, "leave here." Merocole had a tiny dwarf face carved into his mouth. Geldrin fixed the prison runes and closed them all except possibly `[unclear: Keakis?]`, where his fixing mark carried over and worked. Two creatures brought a small box as a present. Inside was a black shard. They called it the elemental of Void and wanted the party to put him where he belonged. Eliana brought a gift: the Frost pole ball, with a desire to switch out the frost elementals. The party suspected Browning was running events there. Dotharl interfered with the symbols on Aneurascarle's prison. -Bynx told Dirk his brothers were coming and to close the door. When Eliana shut it, purple bears appeared. Four Juticars came through tears: Scumbleduck, the rubber-eye figure, a silver dragonborn, and another. A robot Juticar addressed "Justicar Geldrin," saying Geldrin seemed to have forgotten his mission and that the party were not as compliant as they should be. Geldrin had been obeying orders until the worm was removed; everything up to that point had happened as foretold, and the Juticars believed he had been compromised. They spoke of chaotic tendencies visible in the prognostic machine. +Bynx told Dirk his brothers were coming and to close the door. His brothers are Trixus, Benu, and Garadwal, all children of Attabre. When Eliana shut it, purple bears appeared. Four Juticars came through tears: Scumbleduck, the rubber-eye figure, a silver dragonborn, and another. A robot Juticar addressed "Justicar Geldrin," saying Geldrin seemed to have forgotten his mission and that the party were not as compliant as they should be. Geldrin had been obeying orders until the worm was removed; everything up to that point had happened as foretold, and the Juticars believed he had been compromised. They spoke of chaotic tendencies visible in the prognostic machine. The wizards altered the map, saying they were preparing for fuel incoming. The map appeared recently reconfigured for another purpose. They activated the table, and a giant bearded head, Browning, appeared above it chanting. The party countered the spell, but Browning finished with, "and the flight of the gold ends." A dragonborn, elf, and dwarf teleported away, leaving a gnome behind. She refused to speak until Morgana dispelled magic and she recovered. She was a treasure hunter from Great Farnworth, remembered a voyage across the sea, did not know the year, and remembered place details both before and after the dome. A device nearby was a remote to activate a shield, with no apparent way to reverse it, and it should not be far from the party. -The replacements thought Eliana had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Hartwall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers. +The replacements thought Eliana had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Hartwall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers: Trixus, Benu, and Garadwal. The party explored nearby rooms. One dusty room held a circle in the middle that looked dragged toward the door and taken to the teleport circle. Another held an old man sleeping. Dirk found a box under his pillow. A dormitory lay opposite, and another bedroom held books on alloys, travel, and botany. Dirk searched under another pillow and found a thorny brush or briar; Morgana kept it. The box put Geldrin and Morgana to sleep. The mage woke thinking it was 3740 AC and that Dirk looked like a Thrunglagen. He searched for his spellbook, which was found in his room. He was Humorous, an old Rivermeet headmaster. The party opened the teleport-room door and found a Barrier trapping Trixus, Benu, Garadwal, and Bynx. Temporary Wisdom was removed. @@ -66,7 +66,7 @@ The Juticars' claim that Geldrin was previously obedient until the worm was remo Browning's interrupted spell still ended with "the flight of the gold ends," and his godhood ritual may be close to completion after nearly one thousand years. -Dome activation may have captured Bynx's sphynx brothers, making the dome's creation or reactivation directly tied to sphynx imprisonment. +Dome activation may have captured Bynx's sphynx brothers, Trixus, Benu, and Garadwal, making the dome's creation or reactivation directly tied to sphynx imprisonment. Humorous waking in 3740 AC, remembering before and after the dome, and having been an old Rivermeet headmaster adds another displaced witness to pre-dome history. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 622db71..4e2cb33 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -155,6 +155,7 @@ sources: - [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. - [Trixus](people/trixus.md): Trixus, Trixius, Tixun, Benu's little brother, elemental of light. - [Attabre / Altabre](people/attabre-altabre.md): Attabre, Altabre, Protector of the Brass city, father of the sphinxes. +- [Anadreste](people/bynxs-sister.md): Anadreste, Annadressdey, Annadrazadey, Bynx's sister, guardian of the white dragons, white dragon guardian. - [Galimma, the Peridot Queen](people/galimma-peridot-queen.md): Galimma, Peridot Queen. - [Papa'e Munera](people/papae-munera.md): Papa'e Munera, papa'e munera, papael'munsera, papa I Meurina, black orb. - [Noxia](people/noxia.md): Noxia, Noxia Beast avatar, Noxia blood, lady of destruction. diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index 43f2387..fb1a283 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -9,7 +9,7 @@ sources: | Extracted subject | Coverage outcome | | --- | --- | -| Bynx / sphynx baby / goliath baby | Standalone [Bynx](../people/bynx.md). | +| Bynx / sphynx baby / goliath baby / Anadreste | Standalone [Bynx](../people/bynx.md) and [Anadreste](../people/bynxs-sister.md). | | Sunsoreen / Snowsorrow | Standalone [Sunsoreen](../places/sunsoreen.md). | | Sunsoreen Council, Council of Gold, Aurum, Hayhearn, Sophus, Orius, Silent One | Standalone [Sunsoreen Council](../factions/sunsoreen-council.md). | | Valententhide palace, house, deep-sky domain, wall of faces | Existing [Valententhide](../people/valententhide.md) updated. | diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 22067d8..32a2ced 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -65,7 +65,7 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Day 52 says destroying the dome would cancel all pacts and release all prisons. - Day 54 elementals at the Magstein / Grimcrag bridge were appeased with about 100 coins to `their mother`, adding another unresolved elemental authority or relation. - Day 55 adds Papa Illmarne's dome and Papa Marmaru / Merocole to the prison network: Papa's Dome had a hole that could not be repaired without pylons, Papa had more freedom and was breaking dwarves, and Merocole appeared as a smoke sphere with spidery legs and a human face. -- Day 56 Grand Towers control-room systems included prison runes, statue states, a black shard claimed to be an elemental of Void, a Frost pole ball for switching frost elementals, and possible dome activation that captured Bynx's sphynx brothers. The dome also drained the party like elementals, especially near the edges. +- Day 56 Grand Towers control-room systems included prison runes, statue states, a black shard claimed to be an elemental of Void, a Frost pole ball for switching frost elementals, and possible dome activation that captured Bynx's sphynx brothers: Trixus, Benu, and Garadwal. The dome also drained the party like elementals, especially near the edges. ## Timeline @@ -114,4 +114,4 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Who is the elementals' mother, and why would coins appease her? - Is Papa Illmarne / Papa Marmaru a prisoner, controller, elemental, or another dome-bound being? - What does the black shard elemental of Void contain or release? -- Did dome activation capture Bynx's sphynx brothers? +- Did dome activation capture Bynx's sphynx brothers, Trixus, Benu, and Garadwal, and can they be released safely? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index e58101b..dbb7f58 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -110,6 +110,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) - [Bynx](people/bynx.md) +- [Anadreste](people/bynxs-sister.md) - [Verdigrim](people/verdigrim.md) - [Anya Blakedurn](people/anya-blakedurn.md) - [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md) diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index d957876..b898870 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -140,7 +140,7 @@ sources: - What cost comes with Bleakstorm's time travel, and who is his lost friend [uncertain: leechus]? - What does Bridge require to free Perodita, and what does releasing [Valententhide](people/valententhide.md) under the god rule mean? - Who is the pale dwarf with black dreadlocks and a crown who can help find Ruby Eye? -- What are the full Benu-book family names, including Anadreste, the hidden Gardwel name, Trixus, and the missing unnamed sibling? +- What are the full Benu-book family names, including Anadreste, the hidden Gardwel name, Trixus, Bynx, and any missing unnamed sibling? - What are the lost dwarf cities of Grincray / Grim & Cray, why is Mashir the route, and why is there no third-city book? - What is [Papa'e Munera](people/papae-munera.md), where is the rest of him, and who or what is [uncertain: unrasorak]? - What blocks lost knowledge retrieval, and is it tied to flesh-crafting wands, Barrier magic, or the Riversmeet memory-interference spell? @@ -186,7 +186,7 @@ sources: - Who was removed from the Hartwall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Hartwall's daughters? - What do Argathum's urn, Lady Elissa Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Elissa Hartwall's sacrifices? - Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Browning do with the key after Avalina left? -- What does [Bynx](people/bynx.md)'s identification of [Attabre / Altabre](people/attabre-altabre.md) as his father mean, and what happened to Bynx's sister in the white dragon? +- What removed [Anadreste](people/bynxs-sister.md)'s trace from the white dragon, given that her sacrifice should leave a trace in all white dragons and descendants? - What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? - Which trophy-plinth artifacts are still missing, including the Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, and Crown of Thorns? - Can the dome or prison network be powered safely without exploiting elementals, and what prisoners remain behind the frost-prison doors? @@ -219,7 +219,7 @@ sources: - What are the twenty-seven Humility fragments, where is the large weak part needed to recombine Thomas, and what did Thomas remove to become Envy? - What is the black shard / elemental of Void, and should it be placed into the Grand Towers prison system? - What did [Everard Browning](people/everard-browning.md)'s phrase `and the flight of the gold ends` accomplish after his table spell was countered? -- Did dome activation capture [Bynx](people/bynx.md)'s sphynx brothers, and can they be released without collapsing other prisons? +- Did dome activation capture [Bynx](people/bynx.md)'s sphynx brothers, [Trixus](people/trixus.md), [Benu](people/benu.md), and [Garadwal](people/garadwal.md), and can they be released without collapsing other prisons? - What is the shield remote near Grand Towers, and why is there no obvious way to reverse it? - Can [Browning](people/everard-browning.md)'s near-complete godhood ritual be stopped before he uses more crystal? - Where exactly are Cardinal in the Brass dome and [Rubyeye](people/brutor-ruby-eye.md) in the far-airwise dwarven loop? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md index 46ee004..094eacc 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre-altabre.md @@ -20,17 +20,19 @@ sources: ## Summary -Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, Trixus, Anadreste, and a baby Attabre spirit destined for the Goliaths. +Attabre or Altabre is the god and father of the sphynxes, tied to Brass City, Benu, Garadwal, Trixus, Anadreste, Bynx, and a baby Attabre spirit destined for the Goliaths. ## Known Details - Trixus's brass rings name Altabre as Protector of the Brass city, `Salvation to his Children`, first of his name and fifth of his kind. - A shrine offering on `day-42` produced the words: `The father wishes freedom for all his children.` +- All sphynxes are children of Attabre. - Day 43's Benu book listed family names as a missing unnamed one, Anadreste, Benu, hidden Gardwel, and Trixus. - Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. - Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. - Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. - Day 47 showed a toy figure of Attabre in a Grand Towers memory box, with an elven body and lion's head; Bynx said Attabre was his father. +- Trixus, Benu, and Garadwal are Bynx's brothers. Anadreste is Bynx's sister, guardian of the white dragons, and sacrificed herself to become part of them. - Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. - Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. - Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Lady Elissa Hartwall accepted the spells. @@ -42,12 +44,13 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - [Trixus](trixus.md) - [Benu](benu.md) - [Garadwal](garadwal.md) +- [Bynx](bynx.md) +- [Anadreste](bynxs-sister.md) - [Papa'e Munera](papae-munera.md) - [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) ## Open Questions -- How does Bynx's identification of Attabre as his father connect to the fifth sphinx and the broader sphinx family? - Is Attabre the same as Altabre, or are these variant spellings of a title and a deity? - What task did Attabre give Trixus, and why was Trixus not going to achieve it? - What does `rule one, but from afar` mean, and is it the origin of the current god bargains? diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md index 6a48180..c6b4fac 100644 --- a/data/6-wiki/people/benu.md +++ b/data/6-wiki/people/benu.md @@ -3,6 +3,7 @@ title: Benu type: person aliases: - goat-headed sphinx + - Bynx's brother first_seen: day-29 last_updated: day-56 sources: @@ -17,7 +18,7 @@ sources: ## Summary -Benu is a Dunensend ally or authority figure later revealed as one of Altabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), the elves, and the great tower. +Benu is a Dunensend ally or authority figure later revealed as one of Altabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), [Bynx](bynx.md), the elves, and the great tower. ## Known Details @@ -27,6 +28,7 @@ Benu is a Dunensend ally or authority figure later revealed as one of Altabre's - Benu could create a hero's feast before the army moved. - Day 42 found an out-of-place picture of Benu / Guradwal / a goat-headed sphinx dedicated to the Warriors of the Lion from the Dunemin; hidden behind it were two large orange-and-blue-feathered relics. - A book in Ashkellon described Benu, Garadwal, and Trixus as the last three of Altabre's children who walk on earth. +- Trixus, Benu, and Garadwal are Bynx's brothers. - Benu was protector of the elves and helped construct the great tower, but did little protection and instead trained them in art and poetry until they became obsessed with it. - The book says Benu saw errors in its ways, left for an unknown reason, and hid. - On Day 43, Benu appeared at Ashkellon when summoned by vulture-men contact, stood between the party and Trixus / Garadwal, fought Garadwal, and later disappeared when Attabre answered the shrine. @@ -47,6 +49,8 @@ Benu is a Dunensend ally or authority figure later revealed as one of Altabre's - [Dunensend](../places/dunensend.md) - [Lortesh](lortesh.md) - [Trixus](trixus.md) +- [Garadwal](garadwal.md) +- [Bynx](bynx.md) - [Attabre / Altabre](attabre-altabre.md) - [Ashkellon](../places/ashkellon.md) diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index caf20b4..50124c1 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -10,6 +10,7 @@ last_updated: day-56 sources: - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-56.md --- @@ -17,7 +18,7 @@ sources: ## Summary -Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. +Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. Like all sphynxes, Bynx is a child of [Attabre / Altabre](attabre-altabre.md). ## Known Details @@ -25,24 +26,26 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - On `day-47`, the sphynx grew quickly, asked many questions, played in Hartwall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. - On `day-47`, Bynx told Eliana, "I wasn't born green," connected the green change to jade, and remembered brothers now. - Bynx identified the lion-headed elven toy figure of Attabre in a Grand Towers memory box as his father and broke the box. +- Trixus, Benu, and Garadwal are Bynx's brothers. - The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. -- Bynx's sister appeared as a carved female sphynx face on a Sunsoreen palace door. +- [Anadreste](bynxs-sister.md), Bynx's sister and the guardian of the white dragons, appeared as a carved female sphynx face on a Sunsoreen palace door. - In Sunsoreen, Bynx explained that where pure elemental planes meet, they combine. -- Bynx cast Truesight and found his sister was no longer present, with no trace of her in the white dragon. +- Bynx cast Truesight and found Anadreste was no longer present, with no trace of her in the white dragon. This is significant because she sacrificed herself to become part of the white dragons, turning them good, so all white dragons and their descendants should retain a trace of her. - On Day 56, Bynx warned Dirk that his brothers were coming and to close the door. - Day 56 also suggested dome activation may have captured Bynx's sphynx brothers, and Bynx was later found behind a Barrier with Trixus, Benu, and Garadwal. ## Related Entries - [Garadwal](garadwal.md) +- [Anadreste](bynxs-sister.md) +- [Attabre / Altabre](attabre-altabre.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Sunsoreen](../places/sunsoreen.md) - [Minor Figures from Day 47](minor-figures-day-47.md) ## Open Questions -- What does Bynx's identification of Attabre as his father mean for his origin and family? -- What happened to Bynx's sister, and why was there no trace of her in the white dragon? +- What removed Anadreste's trace from the white dragon? - Why did Bynx's reincarnation complete too quickly, and which power helped? -- Who are Bynx's brothers, and were they captured by the dome activation? +- Were Trixus, Benu, and Garadwal captured by the dome activation, and can they be released without collapsing other prisons? - Why was Bynx behind the Grand Towers Barrier with Trixus, Benu, and Garadwal? diff --git a/data/6-wiki/people/bynxs-sister.md b/data/6-wiki/people/bynxs-sister.md new file mode 100644 index 0000000..b367b8b --- /dev/null +++ b/data/6-wiki/people/bynxs-sister.md @@ -0,0 +1,49 @@ +--- +title: Anadreste +type: sphynx, white dragon guardian +aliases: + - Anadreste + - Annadressdey + - Annadrazadey + - Bynx's sister + - guardian of the white dragons + - white dragon guardian +first_seen: day-43 +last_updated: day-48 +sources: + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md +--- + +# Anadreste + +## Summary + +Anadreste, also recorded as Annadressdey or Annadrazadey, is [Bynx](bynx.md)'s sister, one of the sphynx children of [Attabre / Altabre](attabre-altabre.md), and the guardian of the white dragons. + +## Known Details + +- All sphynxes are children of Attabre. +- [Trixus](trixus.md), [Benu](benu.md), and [Garadwal](garadwal.md) are [Bynx](bynx.md)'s brothers. +- Day 43's Benu-family list names Anadreste among the sphynx siblings. +- Anadreste blessed [Papa'e Munera](papae-munera.md), the fragmented black orb from Invar's box. +- Anadreste sacrificed herself to become part of the white dragons, turning them into good dragons. +- Because of that sacrifice, all white dragons and their descendants should have a trace of her present. +- On `day-47`, a Sunsoreen palace door was carved with a female sphynx face identified as Anadreste / Bynx's sister. +- Bynx later cast Truesight and found Anadreste was no longer present, with no trace of her in the white dragon. This is significant because a trace should have remained in white dragons and their descendants. + +## Related Entries + +- [Bynx](bynx.md) +- [Attabre / Altabre](attabre-altabre.md) +- [Trixus](trixus.md) +- [Benu](benu.md) +- [Garadwal](garadwal.md) +- [Papa'e Munera](papae-munera.md) +- [Sunsoreen / Snowsorrow](../places/sunsoreen.md) + +## Open Questions + +- What removed Anadreste's trace from the white dragon? +- Does her absence mean the white dragons' goodness, guardianship, or inheritance has been damaged? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 5462720..e962eb3 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -13,6 +13,7 @@ aliases: - Guradwal - Gardwell - Groot + - Bynx's brother first_seen: day-01 last_updated: day-56 sources: @@ -38,7 +39,7 @@ sources: ## Summary -Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [Barrier](../concepts/barrier.md), the Prison of the Sands, void lore, sand, earth, fire, and later cold/void dreams. +Garadwal, also recorded as Guardwel, is one of Attabre's sphynx children and Bynx's brothers, a major imprisoned threat tied to the [Barrier](../concepts/barrier.md), the Prison of the Sands, void lore, sand, earth, fire, and later cold/void dreams. ## Known Details @@ -58,6 +59,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Geldrin offered Garadwal to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. - At Coalmont Falls, an automaton introduced himself as Garaduel before activating recall protocol; this spelling is preserved as a possible variant or separate automaton identity. - Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Altabre](attabre-altabre.md)'s children walking on earth. +- Trixus, Benu, and Garadwal are Bynx's brothers. - The same book says Gardwell looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. - On Day 43, Garadwal spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. - Garadwal appeared in Ashkellon for the sphinx-family reunion, refused to lay down weapons, killed Eliana, fought Benu, and was banished at 5:00. @@ -98,19 +100,19 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - [Cardonald's Desert Laboratory](../places/desert-laboratory.md) - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) - [Trixus](trixus.md) +- [Benu](benu.md) - [Ashkellon](../places/ashkellon.md) - [Bynx](bynx.md) ## Open Questions -- Is Garadwal a sphinx, void being, elemental master, prisoner, or a conflation of several accounts? +- How does Garadwal's identity as one of Attabre's sphynx children overlap with his void, elemental-master, and prisoner identities? - What are the other seven beings or poles connected to him? - Has he escaped, partially escaped, or only influenced agents from prison? - Was Garadwal once a protector or leader before consuming the void lieutenant? - Is Excellence's brother the same figure as Garadwal, and why did Goliaths ask Excellence to trap him? - What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? - Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? -- Who are Garadwal's brothers, and is one connected to the undead sphinx reported near the Hartwall artifact lead? -- How does Bynx's identification of Attabre as his father relate to Garadwal and the other sphynx-linked figures? +- Was the undead sphinx reported near the Hartwall artifact lead connected to Trixus, Benu, Garadwal, Bynx, or another sibling? - Why does Garadwal now want the dome brought down, and how does that differ from his earlier motives? - Which father trusted the party after the children reunited, and what does his trust permit? diff --git a/data/6-wiki/people/papae-munera.md b/data/6-wiki/people/papae-munera.md index 5c5f826..1842c55 100644 --- a/data/6-wiki/people/papae-munera.md +++ b/data/6-wiki/people/papae-munera.md @@ -18,7 +18,7 @@ sources: ## Summary -Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a black orb in Invar's box, Anadreste's blessing, and possible elemental-prison naming. +Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a black orb in Invar's box, [Anadreste](bynxs-sister.md)'s blessing, and possible elemental-prison naming. ## Known Details @@ -26,7 +26,7 @@ Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a bl - On `day-43`, a dwarf blacksmith gave Invar a glowing warm box containing a small black orb with lava-stone racks and snake-head eyes. - The orb spoke many languages, said it had been boxed for one min moon / 300 days, and identified itself as only part of papa'e munera. - It knew where the rest of itself was and wanted the party to free him and [uncertain: unrasorak]. -- It was blessed by Anadreste and had been extracted from a lake by friends; dwarves had seen the errors of their ways and now wanted to release him. +- It was blessed by [Anadreste](bynxs-sister.md) and had been extracted from a lake by friends; dwarves had seen the errors of their ways and now wanted to release him. - The Benu book's page was blank when asked for the location of papael'munsera. ## Related Entries diff --git a/data/6-wiki/people/trixus.md b/data/6-wiki/people/trixus.md index 93c6537..9c9a3a7 100644 --- a/data/6-wiki/people/trixus.md +++ b/data/6-wiki/people/trixus.md @@ -4,7 +4,8 @@ type: sphinx or elemental of light aliases: - Trixius - Tixun - - Benu's little brother +- Benu's little brother + - Bynx's brother - elemental of light first_seen: day-42 last_updated: day-56 @@ -18,13 +19,14 @@ sources: ## Summary -Trixus, also Trixius or Tixun, is Benu's little brother, one of Altabre's children, and an elemental of light imprisoned in Ashkellon. +Trixus, also Trixius or Tixun, is Benu and Bynx's brother, one of Altabre's children, and an elemental of light imprisoned in Ashkellon. ## Known Details - On `day-42`, the goat-headed sphinx prisoner was identified as Trixus, an elemental of light and Benu's little brother. - He had four brass rings on each paw inscribed: `A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` - A book on Benu, Garadwal, and Trixus described them as the last three of Altabre's children who walk on the earth. +- Trixus, Benu, and Garadwal are Bynx's brothers. - Trixus helped create Brass City and helped the tabaxi become industrious and proactive. - He remained under a Slumber version of Imprisonment even after the party opened barriers. - On `day-43`, the family reunion with [Benu](benu.md), [Garadwal](garadwal.md), and Trixus occurred in Ashkellon; Geldrin released Trixus with a tremor skill. @@ -35,6 +37,7 @@ Trixus, also Trixius or Tixun, is Benu's little brother, one of Altabre's childr - [Benu](benu.md) - [Garadwal](garadwal.md) +- [Bynx](bynx.md) - [Attabre / Altabre](attabre-altabre.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Ashkellon](../places/ashkellon.md) @@ -43,5 +46,5 @@ Trixus, also Trixius or Tixun, is Benu's little brother, one of Altabre's childr - Why did Altabre put Trixus to sleep? - Can Trixus restore Emi's removed emotions, and where are those emotions held? -- Is Trixus one of the Barrier prisoners, one of the five sphinx children, or both? +- How does Trixus's role as one of Attabre's sphynx children overlap with his elemental-of-light identity and Barrier imprisonment? - Why was Trixus again behind a Barrier at Grand Towers after the Ashkellon release? diff --git a/data/6-wiki/places/sunsoreen.md b/data/6-wiki/places/sunsoreen.md index 477deb5..5041166 100644 --- a/data/6-wiki/places/sunsoreen.md +++ b/data/6-wiki/places/sunsoreen.md @@ -27,7 +27,7 @@ Sunsoreen is the current name of Snowsorrow, a city or palace that was originall - The archway had different runes, the building was enormous, grass and woodlands lay below, and the area was warm despite blackout time. - The Tri-moon was visible when it should not have been. - A copper dragon landed nearby and entered the building. -- A palace door was carved with a female sphynx face, identified as [Bynx](../people/bynx.md)'s sister. +- A palace door was carved with a female sphynx face, identified as [Anadreste](../people/bynxs-sister.md), [Bynx](../people/bynx.md)'s sister and the guardian of the white dragons. - The council doorway was carved with a white dragon and sphynx. - Seven settlements within one hundred miles had been absorbed under the Sunsoreen umbrella. - Sunsoreen enforces frequent new laws, job or training requirements, information control, outbreeding laws, and courtroom systems spread across more than two hundred courtrooms citywide. @@ -39,6 +39,7 @@ Sunsoreen is the current name of Snowsorrow, a city or palace that was originall - [Fishtailedge](fishtailedge.md) - [Rimewatch and the Ice Prison](rimewatch-ice-prison.md) - [Elemental Prisons](../concepts/elemental-prisons.md) +- [Anadreste](../people/bynxs-sister.md) - [Tri-moon Countdown](../events/tri-moon-countdown.md) - [Minor Places from Day 47](minor-places-day-47.md) @@ -47,3 +48,4 @@ Sunsoreen is the current name of Snowsorrow, a city or palace that was originall - How exactly was Sunsoreen moved, and what did the city-moving scroll enable? - Why was the Tri-moon visible at the wrong time? - Are Sunsoreen's citizens legally trapped, magically controlled, or socially coerced? +- Why was Anadreste's trace absent from the white dragon despite her sacrifice becoming part of the white dragons? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 0afa3b2..a2b168d 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -91,8 +91,8 @@ sources: - `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). -- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). -- `data/4-days-cleaned/day-48.md`: [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). +- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Anadreste](people/bynxs-sister.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). +- `data/4-days-cleaned/day-48.md`: [Bynx](people/bynx.md), [Anadreste](people/bynxs-sister.md), [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 13239b0..b7b7207 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -92,7 +92,7 @@ sources: - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre / Altabre](people/attabre-altabre.md) as his father, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. +- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre / Altabre](people/attabre-altabre.md) as his father, [Anadreste](people/bynxs-sister.md)'s missing trace at [Sunsoreen](places/sunsoreen.md), trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and Sunsoreen's records naming Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. - `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. -
de90bd5Bynxby Laura Mostert
data/2-pages/195.txt | 4 +-- data/2-pages/197.txt | 8 +++--- data/2-pages/200.txt | 2 +- data/2-pages/201.txt | 4 +-- data/2-pages/203.txt | 2 +- data/2-pages/214.txt | 4 +-- data/2-pages/215.txt | 2 +- data/2-pages/225.txt | 2 +- data/2-pages/227.txt | 2 +- data/2-pages/228.txt | 8 +++--- data/2-pages/237.txt | 2 +- data/2-pages/238.txt | 2 +- data/2-pages/245.txt | 2 +- data/2-pages/251.txt | 2 +- data/2-pages/254.txt | 2 +- data/3-days/day-44.md | 20 +++++++------- data/3-days/day-46.md | 6 ++-- data/3-days/day-47.md | 16 +++++------ data/3-days/day-48.md | 6 ++-- data/4-days-cleaned/day-44.md | 20 +++++++------- data/4-days-cleaned/day-46.md | 8 +++--- data/4-days-cleaned/day-47.md | 32 +++++++++++----------- data/4-days-cleaned/day-48.md | 12 ++++---- data/6-wiki/aliases.md | 4 +-- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/day-47-coverage-audit.md | 4 +-- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- data/6-wiki/items/minor-items-day-47.md | 2 +- data/6-wiki/items/minor-items-days-48-52.md | 2 +- data/6-wiki/open-threads.md | 6 ++-- data/6-wiki/people/attabre-altabre.md | 4 ++- data/6-wiki/people/brutor-ruby-eye.md | 6 ++-- data/6-wiki/people/bynx.md | 5 ++-- "data/6-wiki/people/ennuy\303\251.md" | 15 +++++++++- data/6-wiki/people/garadwal.md | 6 ++-- data/6-wiki/people/joy.md | 6 ++-- data/6-wiki/people/minor-figures-day-47.md | 4 +-- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- data/6-wiki/people/minor-figures-days-48-52.md | 2 +- data/6-wiki/people/noxia.md | 2 +- .../riversmeet-menagerie-and-old-mage-school.md | 2 +- data/6-wiki/timeline.md | 2 +- 42 files changed, 131 insertions(+), 115 deletions(-)Show diff
diff --git a/data/2-pages/195.txt b/data/2-pages/195.txt index f4bee95..4ddecd2 100644 --- a/data/2-pages/195.txt +++ b/data/2-pages/195.txt @@ -4,12 +4,12 @@ Source: data/1-source/IMG_9862.jpg Transcription: She tells us we are late... I try to keep the door open & she spots me & sends -me to detention (5th floor). 18 year old human man - Enis (was called Thomas) +me to detention (5th floor). 18 year old human man - Ennuyé (was called Thomas) plus a girlfriend - 1st year called Hannah. Joy. Dirk manages to get to the infirmary, asks Nurse for date. 3rd Sereneday of Hummeron, 2968 AC (32 BD) -Mama Cardonald thinks Enis is a bad influence +Mama Cardonald thinks Ennuyé is a bad influence on her daughter as always in detention. At the end of class Bosh & Cardonald head to the study diff --git a/data/2-pages/197.txt b/data/2-pages/197.txt index 582de92..7c35b53 100644 --- a/data/2-pages/197.txt +++ b/data/2-pages/197.txt @@ -24,12 +24,12 @@ for his Truesight (sees me as a dragon??). Says he's concerned for me as friend of his daughter. Worried about breaking the Pact with the Gold dragons. Says my form is interesting. -Abjuration - go through a door & Enis is there. -Rubyeye asks Enis to show him the book & Enis asks who +Abjuration - go through a door & Ennuyé is there. +Rubyeye asks Ennuyé to show him the book & Ennuyé asks who is with him. Rubyeye saying he's thinking of asking them to join their Say they're going to test them later. -Enis asks Geldrin for a second - been touched by a god -"lady of destruction". Enis has been looking into some dark magic. +Ennuyé asks Geldrin for a second - been touched by a god +"lady of destruction". Ennuyé has been looking into some dark magic. - in a Divination classroom. Enchanting - Dangers of cursed items - 2 potions (healing) one cursed, diff --git a/data/2-pages/200.txt b/data/2-pages/200.txt index 48b9e54..74cadee 100644 --- a/data/2-pages/200.txt +++ b/data/2-pages/200.txt @@ -6,7 +6,7 @@ Go to the air common room. 10pm Door is flanked by pictures of a dwarf with bushy beard & blue dragonborn. -4 mages - Browning, Valenth, Brotor, Enis, & Hannah. +4 mages - Browning, Valenth, Brotor, Ennuyé, & Hannah. A featureless woman has her hands on Hannah's shoulders. Thanks me for bringing the broom as it's part of the plan. diff --git a/data/2-pages/201.txt b/data/2-pages/201.txt index 785a2de..3539372 100644 --- a/data/2-pages/201.txt +++ b/data/2-pages/201.txt @@ -7,13 +7,13 @@ A silver dragon appears - earth flows through & a silver/green claw bursts through. Geldrin forces it closed. "Taken my form give it back" (Avalina) Took everything from her - manage to close the door & give -Geldrin the broom (couldn't give it to Enis, Thomas, +Geldrin the broom (couldn't give it to Ennuyé, Thomas, Browning?). Open in an empty room - shelves, stacks of paper etc. White room, blue viewing, gorgeous red desks, young elven child sat at each desk - lesson for simple maths. -Enis says it's taking too long - give the broom & we +Ennuyé says it's taking too long - give the broom & we end up in a field. Next small room made of Brass - Brass city. diff --git a/data/2-pages/203.txt b/data/2-pages/203.txt index 9cdbfef..d7510c5 100644 --- a/data/2-pages/203.txt +++ b/data/2-pages/203.txt @@ -9,7 +9,7 @@ Mr Moreley's room is fully painted as a mural of Snowsorrow. Large desk, pedestal with a cushion & sphere of glass on it, smoke inside. Powerful defense mechanism if don't have the password. -Containment device - same as Enis's. +Containment device - same as Ennuyé's. Mural - Gold, Silver, Copper & white dragons. Dirk throws javelin at the box - doesn't do anything. diff --git a/data/2-pages/214.txt b/data/2-pages/214.txt index a7088ee..8e6fd34 100644 --- a/data/2-pages/214.txt +++ b/data/2-pages/214.txt @@ -24,10 +24,10 @@ Garadwal removes Morgana's feeble mind. She sees Geldrin asks Errol for Rubyeye's message & he says he doesn't have one. Geldrin calls him out for lying & he opens his desk & a ruby drops out. -Ruby has something playing in it - see Enis & Browning sort of +Ruby has something playing in it - see Ennuyé & Browning sort of a huddle - what did Squeal ask for? Browning says the weather to come through the barrier - but that's not what he -said - actually says "the loss of everything". Enis +said - actually says "the loss of everything". Ennuyé says cryptic but we may use it to help us. 2nd one has red glowing eyes with white minds for eyes, diff --git a/data/2-pages/215.txt b/data/2-pages/215.txt index da145e9..af30ab4 100644 --- a/data/2-pages/215.txt +++ b/data/2-pages/215.txt @@ -34,7 +34,7 @@ dissipates. Heads out, then heading to "Joshua". Eyes turn. Message from Rubyeye - Squeal - be careful at riversmeet. -Enis set a trap on the room for Rubyeye, went +Ennuyé set a trap on the room for Rubyeye, went to a safe place - wife's place & is imprisoned. Cardonald - her & goliaths spotted tainted dragons - going to diff --git a/data/2-pages/225.txt b/data/2-pages/225.txt index caef085..9a37398 100644 --- a/data/2-pages/225.txt +++ b/data/2-pages/225.txt @@ -24,7 +24,7 @@ Males - um, females - ex. (random order but all aligned.) Sentient door - asks who are you to me & asks if I'm allowed out?!? -Has brothers at different places (Enis' lab & [unclear: aprosur]). +Has brothers at different places (Ennuyé' lab & [unclear: aprosur]). Lots of people in & out. I've been in & out lots & prefers my other look wearing a dress. Last time Avalina left - the next person to come in was diff --git a/data/2-pages/227.txt b/data/2-pages/227.txt index aa3330e..af53538 100644 --- a/data/2-pages/227.txt +++ b/data/2-pages/227.txt @@ -32,4 +32,4 @@ Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, me Sphynx wants Dirk to read books. Toy chests are empty. Geldrin reads the bears' words "Here always Never Nowhere all Harth". -(Hannah) Hannah Joy - Enis' wife - erased from existence. +(Hannah) Hannah Joy - Ennuyé' wife - erased from existence. diff --git a/data/2-pages/228.txt b/data/2-pages/228.txt index e269988..298b976 100644 --- a/data/2-pages/228.txt +++ b/data/2-pages/228.txt @@ -2,12 +2,12 @@ Page: 228 Source: data/1-source/IMG_9896.jpg Transcription: -Reason Enis sacrificed his wife was so Joy could live, but it didn't work. Enis tricked because Joy can't exist if her mother didn't exist. +Reason Ennuyé sacrificed his wife was so Joy could live, but it didn't work. Ennuyé tricked because Joy can't exist if her mother didn't exist. -Sphynx growing up quick and asking lots of questions. Invar has crab in bag. I want him green. Jade turned me green. Remembers brother's nose. +Sphynx growing up quick and asking lots of questions. Invar has crab in bag. I wasn't born green. Jade turned me green. Remembers brothers now. Go into next room. All the doors seem to have carvings. -- Stone door, crudely carved bell, cracked and on fire. Large men surrounding it, looking up at the sky (Bellborn?). +- Stone door, crudely carved bell, cracked and on fire. Large men surrounding it, looking up at the sky (Bellburn?). Dirk asks the door to open and it says, "You may not pass, son of fire." Only the son of stone and their friends may enter. Invar tries to get in and the door tells him to run back home. Opens for me. @@ -15,4 +15,4 @@ Room is large and empty. Dirk finds a coin but not sure where it is from. Invar Morgana: piece of paper, not sure how it was missed. "I hid them for you. One is in a cell, the other false teddy." The flagstone looks loose, hollow, and contains a box. Geldrin finds a memory orb. -Box reveals a little scene of grand towers before the other towers were built. Three small boxes at the front, seen before Enis's place / a professor's? I don't recognise. Seven elves in front, bare chested. Two hold chains leading to side panels. One to whorps of wind, other elven body with head of lion. Baby thinks real daddy: lion head. Wind is nearby. Baby takes the lion and breaks the box, then falls asleep after his tantrum. +Box reveals a little scene of grand towers before the other towers were built. Three small boxes at the front, seen before Ennuyé's place / a professor's? I don't recognise. Seven elves in front, bare chested. Two hold chains leading to side panels. One to whorps of wind, other is a toy figure of Attabre: an elven body with head of lion. Baby sphynx says Attabre is his father. Wind is nearby. Baby takes the lion and breaks the box, then falls asleep after his tantrum. diff --git a/data/2-pages/237.txt b/data/2-pages/237.txt index 915a16f..72f0c2b 100644 --- a/data/2-pages/237.txt +++ b/data/2-pages/237.txt @@ -14,7 +14,7 @@ Dark door leads to an ancient dwarven hold (not a settlement). Open the door: bi Geldrin promises to come let him out when he finds out how to power the dome without all the elementals. Cell mate chosen to turn off the gusts and can turn them back on when he pleases. -Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Hartwall lab for Enis. Needs a door handle like one of the Hartwall handles. Archway, the one at Hartwall's lab. +Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Hartwall lab for Ennuyé. Needs a door handle like one of the Hartwall handles. Archway, the one at Hartwall's lab. Goat: Dorion. Bull: Tim. Lion: Geoffrey. diff --git a/data/2-pages/238.txt b/data/2-pages/238.txt index 6cd3ea6..7c78774 100644 --- a/data/2-pages/238.txt +++ b/data/2-pages/238.txt @@ -16,6 +16,6 @@ Nursery rhyme book shows a castle, likely Hartwall escape style. Coat stand has some invisible eyes on it. Cloak, when invisible, has moving starscapes on it, but not to the person wearing it. -Geldrin puts different books on the table. Enis's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Enis's soul? +Geldrin puts different books on the table. Ennuyé's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Ennuyé's soul? Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadwal. diff --git a/data/2-pages/245.txt b/data/2-pages/245.txt index 0897f3a..9c67c5f 100644 --- a/data/2-pages/245.txt +++ b/data/2-pages/245.txt @@ -11,7 +11,7 @@ Day 48 Bynx grows up again. Want to go to Gardoil and Dirk's dad. Send Errol off with a message to Dirk's dad. Start to talk about everything, saying I'm a Hartwall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. -Deal with a god. Wipe me from memories like Enis's wife, Hannah. +Deal with a god. Wipe me from memories like Ennuyé's wife, Hannah. Errol returns. Things not great, recovering from a battle. Gardoil not with them. She had to go do something. Need reinforcements from the capital. diff --git a/data/2-pages/251.txt b/data/2-pages/251.txt index e3714e7..230c7f4 100644 --- a/data/2-pages/251.txt +++ b/data/2-pages/251.txt @@ -12,7 +12,7 @@ Charges: Not seen Cardinal. -Working things out. Enis has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? +Working things out. Ennuyé has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? Rubyeye remembers Hannah and that there were six elemental forces, six arms on the exhausted, etc. There were six of them all along. diff --git a/data/2-pages/254.txt b/data/2-pages/254.txt index 43de731..7de0dbe 100644 --- a/data/2-pages/254.txt +++ b/data/2-pages/254.txt @@ -10,7 +10,7 @@ Try to match up the armour with the statues. Fine glass dust in cracks of the st Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valententhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. -Third door. Magical runes on the door knob, infernal-like writing in Enis's lab. +Third door. Magical runes on the door knob, infernal-like writing in Ennuyé's lab. "Come on, boy, we haven't got all day," Dothral hears when he tries to open the door. diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md index fc1f6cd..ca1a8fc 100644 --- a/data/3-days/day-44.md +++ b/data/3-days/day-44.md @@ -202,12 +202,12 @@ Come out in the Divination classroom full of students She tells us we are late... I try to keep the door open & she spots me & sends -me to detention (5th floor). 18 year old human man - Enis (was called Thomas) +me to detention (5th floor). 18 year old human man - Ennuyé (was called Thomas) plus a girlfriend - 1st year called Hannah. Joy. Dirk manages to get to the infirmary, asks Nurse for date. 3rd Sereneday of Hummeron, 2968 AC (32 BD) -Mama Cardonald thinks Enis is a bad influence +Mama Cardonald thinks Ennuyé is a bad influence on her daughter as always in detention. At the end of class Bosh & Cardonald head to the study @@ -297,12 +297,12 @@ for his Truesight (sees me as a dragon??). Says he's concerned for me as friend of his daughter. Worried about breaking the Pact with the Gold dragons. Says my form is interesting. -Abjuration - go through a door & Enis is there. -Rubyeye asks Enis to show him the book & Enis asks who +Abjuration - go through a door & Ennuyé is there. +Rubyeye asks Ennuyé to show him the book & Ennuyé asks who is with him. Rubyeye saying he's thinking of asking them to join their Say they're going to test them later. -Enis asks Geldrin for a second - been touched by a god -"lady of destruction". Enis has been looking into some dark magic. +Ennuyé asks Geldrin for a second - been touched by a god +"lady of destruction". Ennuyé has been looking into some dark magic. - in a Divination classroom. Enchanting - Dangers of cursed items - 2 potions (healing) one cursed, @@ -390,7 +390,7 @@ Go to the air common room. 10pm Door is flanked by pictures of a dwarf with bushy beard & blue dragonborn. -4 mages - Browning, Valenth, Brotor, Enis, & Hannah. +4 mages - Browning, Valenth, Brotor, Ennuyé, & Hannah. A featureless woman has her hands on Hannah's shoulders. Thanks me for bringing the broom as it's part of the plan. @@ -426,13 +426,13 @@ A silver dragon appears - earth flows through & a silver/green claw bursts through. Geldrin forces it closed. "Taken my form give it back" (Avalina) Took everything from her - manage to close the door & give -Geldrin the broom (couldn't give it to Enis, Thomas, +Geldrin the broom (couldn't give it to Ennuyé, Thomas, Browning?). Open in an empty room - shelves, stacks of paper etc. White room, blue viewing, gorgeous red desks, young elven child sat at each desk - lesson for simple maths. -Enis says it's taking too long - give the broom & we +Ennuyé says it's taking too long - give the broom & we end up in a field. Next small room made of Brass - Brass city. @@ -507,7 +507,7 @@ Mr Moreley's room is fully painted as a mural of Snowsorrow. Large desk, pedestal with a cushion & sphere of glass on it, smoke inside. Powerful defense mechanism if don't have the password. -Containment device - same as Enis's. +Containment device - same as Ennuyé's. Mural - Gold, Silver, Copper & white dragons. Dirk throws javelin at the box - doesn't do anything. diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md index 328a512..60cb378 100644 --- a/data/3-days/day-46.md +++ b/data/3-days/day-46.md @@ -417,10 +417,10 @@ Garadwal removes Morgana's feeble mind. She sees Geldrin asks Errol for Rubyeye's message & he says he doesn't have one. Geldrin calls him out for lying & he opens his desk & a ruby drops out. -Ruby has something playing in it - see Enis & Browning sort of +Ruby has something playing in it - see Ennuyé & Browning sort of a huddle - what did Squeal ask for? Browning says the weather to come through the barrier - but that's not what he -said - actually says "the loss of everything". Enis +said - actually says "the loss of everything". Ennuyé says cryptic but we may use it to help us. 2nd one has red glowing eyes with white minds for eyes, @@ -468,7 +468,7 @@ dissipates. Heads out, then heading to "Joshua". Eyes turn. Message from Rubyeye - Squeal - be careful at riversmeet. -Enis set a trap on the room for Rubyeye, went +Ennuyé set a trap on the room for Rubyeye, went to a safe place - wife's place & is imprisoned. Cardonald - her & goliaths spotted tainted dragons - going to diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index 3c300e3..bab42cb 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -130,7 +130,7 @@ Males - um, females - ex. (random order but all aligned.) Sentient door - asks who are you to me & asks if I'm allowed out?!? -Has brothers at different places (Enis' lab & [unclear: aprosur]). +Has brothers at different places (Ennuyé' lab & [unclear: aprosur]). Lots of people in & out. I've been in & out lots & prefers my other look wearing a dress. Last time Avalina left - the next person to come in was @@ -209,16 +209,16 @@ Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, me Sphynx wants Dirk to read books. Toy chests are empty. Geldrin reads the bears' words "Here always Never Nowhere all Harth". -(Hannah) Hannah Joy - Enis' wife - erased from existence. +(Hannah) Hannah Joy - Ennuyé' wife - erased from existence. ## Page 228 -Reason Enis sacrificed his wife was so Joy could live, but it didn't work. Enis tricked because Joy can't exist if her mother didn't exist. +Reason Ennuyé sacrificed his wife was so Joy could live, but it didn't work. Ennuyé tricked because Joy can't exist if her mother didn't exist. -Sphynx growing up quick and asking lots of questions. Invar has crab in bag. I want him green. Jade turned me green. Remembers brother's nose. +Sphynx growing up quick and asking lots of questions. Invar has crab in bag. I wasn't born green. Jade turned me green. Remembers brothers now. Go into next room. All the doors seem to have carvings. -- Stone door, crudely carved bell, cracked and on fire. Large men surrounding it, looking up at the sky (Bellborn?). +- Stone door, crudely carved bell, cracked and on fire. Large men surrounding it, looking up at the sky (Bellburn?). Dirk asks the door to open and it says, "You may not pass, son of fire." Only the son of stone and their friends may enter. Invar tries to get in and the door tells him to run back home. Opens for me. @@ -226,7 +226,7 @@ Room is large and empty. Dirk finds a coin but not sure where it is from. Invar Morgana: piece of paper, not sure how it was missed. "I hid them for you. One is in a cell, the other false teddy." The flagstone looks loose, hollow, and contains a box. Geldrin finds a memory orb. -Box reveals a little scene of grand towers before the other towers were built. Three small boxes at the front, seen before Enis's place / a professor's? I don't recognise. Seven elves in front, bare chested. Two hold chains leading to side panels. One to whorps of wind, other elven body with head of lion. Baby thinks real daddy: lion head. Wind is nearby. Baby takes the lion and breaks the box, then falls asleep after his tantrum. +Box reveals a little scene of grand towers before the other towers were built. Three small boxes at the front, seen before Ennuyé's place / a professor's? I don't recognise. Seven elves in front, bare chested. Two hold chains leading to side panels. One to whorps of wind, other is a toy figure of Attabre: an elven body with head of lion. Baby sphynx says Attabre is his father. Wind is nearby. Baby takes the lion and breaks the box, then falls asleep after his tantrum. ## Page 229 @@ -386,7 +386,7 @@ Dark door leads to an ancient dwarven hold (not a settlement). Open the door: bi Geldrin promises to come let him out when he finds out how to power the dome without all the elementals. Cell mate chosen to turn off the gusts and can turn them back on when he pleases. -Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Hartwall lab for Enis. Needs a door handle like one of the Hartwall handles. Archway, the one at Hartwall's lab. +Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Hartwall lab for Ennuyé. Needs a door handle like one of the Hartwall handles. Archway, the one at Hartwall's lab. Goat: Dorion. Bull: Tim. Lion: Geoffrey. @@ -412,7 +412,7 @@ Nursery rhyme book shows a castle, likely Hartwall escape style. Coat stand has some invisible eyes on it. Cloak, when invisible, has moving starscapes on it, but not to the person wearing it. -Geldrin puts different books on the table. Enis's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Enis's soul? +Geldrin puts different books on the table. Ennuyé's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Ennuyé's soul? Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadwal. diff --git a/data/3-days/day-48.md b/data/3-days/day-48.md index c6fec32..33ba6b3 100644 --- a/data/3-days/day-48.md +++ b/data/3-days/day-48.md @@ -41,7 +41,7 @@ Day 48 Bynx grows up again. Want to go to Gardoil and Dirk's dad. Send Errol off with a message to Dirk's dad. Start to talk about everything, saying I'm a Hartwall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. -Deal with a god. Wipe me from memories like Enis's wife, Hannah. +Deal with a god. Wipe me from memories like Ennuyé's wife, Hannah. Errol returns. Things not great, recovering from a battle. Gardoil not with them. She had to go do something. Need reinforcements from the capital. @@ -167,7 +167,7 @@ Charges: Not seen Cardinal. -Working things out. Enis has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? +Working things out. Ennuyé has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? Rubyeye remembers Hannah and that there were six elemental forces, six arms on the exhausted, etc. There were six of them all along. @@ -232,7 +232,7 @@ Try to match up the armour with the statues. Fine glass dust in cracks of the st Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valententhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. -Third door. Magical runes on the door knob, infernal-like writing in Enis's lab. +Third door. Magical runes on the door knob, infernal-like writing in Ennuyé's lab. "Come on, boy, we haven't got all day," Dothral hears when he tries to open the door. diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index 8629a4c..23677cf 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -46,7 +46,7 @@ The party went back down to the school and entered an auditorium-style transmuta The party learned that Lord Hacethorn had been the last potion and herb teacher and had written the book on Ruby Eye. The founders of the college were dated 547 years before the dome, 2453 AC after cataclysm: the white-haired elven man Tortish Harthwall and the elderly man Humerous Torn. The party returned to the principal's office and back out, emerging into the Divination classroom full of students, where Isobanne was teaching. It was Sereneday. -Isobanne told the party they were late. Eliana tried to keep the door open, was spotted, and was sent to detention on the fifth floor. An eighteen-year-old human man named Enis, who had been called Thomas, was there, along with a girlfriend or first-year called Hannah. Joy was also noted. Dirk reached the infirmary and asked Nurse Cardonald for the date: the 3rd Sereneday of Hummeron, 2968 AC, or 32 BD. Mama Cardonald thought Enis was a bad influence on her daughter because he was always in detention. +Isobanne told the party they were late. Eliana tried to keep the door open, was spotted, and was sent to detention on the fifth floor. An eighteen-year-old human man named Ennuyé, who had been called Thomas, was there, along with a girlfriend or first-year called Hannah. Joy was also noted. Dirk reached the infirmary and asked Nurse Cardonald for the date: the 3rd Sereneday of Hummeron, 2968 AC, or 32 BD. Mama Cardonald thought Ennuyé was a bad influence on her daughter because he was always in detention. At the end of class, Bosh and Cardonald went to the study hall and pulled out a book. A dragon skull named Mr Moreley covered the study hall. Geldrin spoke to the dragon, a gold dragon. Geldrin showed him the ancient dragon scroll. Mr Moreley was confused because it was something still being worked on, and he said he would consult the Gold Dragon Council because he thought Hartwall was keeping things from them. Ruby Eye and Cardonald were eavesdropping and wanted to ask Geldrin something. Ruby Eye went to speak to him. His final project was to remove his eye. He asked Geldrin to join them. Everard, Thomas, and Valenth were named. A book about Grand Tower was written in god language; when the party tried to read it, they got a vision of the top of the tower. Cardonald was working on automations and wanted to do something for the head teacher, then a bird and a cat. They wanted to become famous. Ruby Eye's parents wanted him to follow a priestly path. Mama Cardonald was good friends with some of the Thinglaens / Goliaths. They were currently in the automations. She could not speak to them, and they were not one of the four usual elementals; she thought they were light. @@ -58,7 +58,7 @@ The party went to history. The teacher's voice was familiar: an older man, Lord Class ended, and everyone left except a person at the back: Everard Browning. He asked a question about Bleakstorm living forever, and about gnomes and their devices. Dirk asked about travelling through time. Bright does not work in a linear way; the note trails off after "if we were to go back in." Morgana was Earth, and Geldrin was Water. The party went to Enchanting, though Geldrin and Morgana thought they should be there but instead followed Ruby Eye. The Enchanting teacher was a bright-red-haired elf, Mr Cardonald. He called Eliana aside and asked whether it was true she was marrying Argathum while still seeing Hartwall's childhood sweetheart. He warned that it was not good if she was seeing the prince behind Hartwall's back. He said her form was interesting and he would not have recognised her if not for Truesight, which saw her as a dragon. He was concerned for her as a friend of his daughter and worried about breaking the Pact with the Gold dragons. -In Abjuration, the party went through a door and Enis was there. Ruby Eye asked Enis to show him the book, and Enis asked who was with him. Ruby Eye said he was thinking of asking them to join, and that they would test them later. Enis asked Geldrin for a moment and said Geldrin had been touched by a god, the "lady of destruction." Enis had been looking into some dark magic in a Divination classroom. Enchanting covered the dangers of cursed items: two healing potions, one cursed, and neither Identify nor Detect Magic could reveal which one. Students needed to be aware of mimics at all times. In Abjuration, no teacher appeared; the teacher should have been Mr Grey. Most people began leaving, but some stayed. +In Abjuration, the party went through a door and Ennuyé was there. Ruby Eye asked Ennuyé to show him the book, and Ennuyé asked who was with him. Ruby Eye said he was thinking of asking them to join, and that they would test them later. Ennuyé asked Geldrin for a moment and said Geldrin had been touched by a god, the "lady of destruction." Ennuyé had been looking into some dark magic in a Divination classroom. Enchanting covered the dangers of cursed items: two healing potions, one cursed, and neither Identify nor Detect Magic could reveal which one. Students needed to be aware of mimics at all times. In Abjuration, no teacher appeared; the teacher should have been Mr Grey. Most people began leaving, but some stayed. The remaining students gathered around a very dark-skinned elf with a bottle of green liquid. The elf did not know what it was. The liquid moved up the side of the bottle when poked. Morgana tried to speak to it and felt something reach out. It did not know its name but came from the desert. Morgana bought it, and it wanted to go back to the rest of itself in the desert. The party agreed to meet Ruby Eye at 10 in the Air room and regrouped in the first-year common room. The slime might be the blood of Noxia. @@ -70,13 +70,13 @@ Lord of Bleakstorm and the Gnomes said Bleakstorm thought the gnomes were cast-o Morgana tried to find detention and headed to the principal's office on the map. Altith / Icefang tried to contact Eliana and said they had been meant to meet after Eliana met with Argathum. A man appeared, Icefang. He warned that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snowsorrow. The party needed the janitor's broom to open the door. The note also says "T look silver with a hint of green," with two green dragons named Emeraldus and another. Goliaths were meant to go and attack them and be one of [unclear]. Icefang tried to see the future. When asked what happened if Browning did, the vision showed broken tower fields, burning blue, black, green, and red dragons flying around, small settlements of people hiding, and elementals destroying things. Icefang said, "The future could be desperate, the people are not ready yet." Cold Identify revealed that something had come with the party. Icefang suggested they go see Browning and ask him for the broom. -The party went to the Air common room at 22:00. Its door was flanked by pictures of a dwarf with a bushy beard and a blue dragonborn. Four or five mages were present: Browning, Valenth, Brotor, Enis, and Hannah. A featureless woman had her hands on Hannah's shoulders. She thanked the party for bringing the broom because it was part of the plan. Everard thought he had found a way into the tower through the tunnels, and they needed the broom to get there. They wanted to see secrets of emotional elimination, memories, and automations, and to help defend the land because they did not think the elemental truce would last much longer. The party agreed to go with them. Tallith had not hired the janitor for nothing; he used to work with the elves. Valententhide said her sister's magic protected the party for now. Hannah, a priestess of Attabre, thought the elves had the same magic as the [unclear]. +The party went to the Air common room at 22:00. Its door was flanked by pictures of a dwarf with a bushy beard and a blue dragonborn. Four or five mages were present: Browning, Valenth, Brotor, Ennuyé, and Hannah. A featureless woman had her hands on Hannah's shoulders. She thanked the party for bringing the broom because it was part of the plan. Everard thought he had found a way into the tower through the tunnels, and they needed the broom to get there. They wanted to see secrets of emotional elimination, memories, and automations, and to help defend the land because they did not think the elemental truce would last much longer. The party agreed to go with them. Tallith had not hired the janitor for nothing; he used to work with the elves. Valententhide said her sister's magic protected the party for now. Hannah, a priestess of Attabre, thought the elves had the same magic as the [unclear]. They opened a door to a dark corridor. Valententhide said the party should not have seen this, that Bright had shown them too much, and that they should not even be able to see Hannah because she had been wiped from time and space. Everard entered, and the party followed into the corridor and closed the door. Valententhide hovered over them and let go of Hannah. The corridor opened into a janitor's closet. Reborn stone was noted. A coin thrown into Bright's statue made the door disappear. Dirk's group appeared in a bathhouse room with a human and the name Blackhold noted. The party tried to find everyone and succeeded. -When they tried to open the door back to the school, a silver dragon appeared. Earth flowed through, and a silver-green claw burst through. Geldrin forced it closed. A voice said, "Taken my form give it back" and connected this to Avalina, saying it had taken everything from her. The party managed to close the door and give Geldrin the broom; they could not give it to Enis, Thomas, or Browning [uncertain]. +When they tried to open the door back to the school, a silver dragon appeared. Earth flowed through, and a silver-green claw burst through. Geldrin forced it closed. A voice said, "Taken my form give it back" and connected this to Avalina, saying it had taken everything from her. The party managed to close the door and give Geldrin the broom; they could not give it to Ennuyé, Thomas, or Browning [uncertain]. -They opened into an empty room with shelves and stacks of paper. It was a white room with blue viewing and gorgeous red desks, where young elven children sat at each desk for simple maths. Enis said it was taking too long. The party gave the broom, and they ended up in a field. The next small room was made of brass: Brass City. Browning took the broom in the Air common room, then gave it back. The group went out, and the door slammed shut. It reopened to a dusky room like the Air common room, with black windows and cracking glass sounds. The party exited and seemed to return to their own time. They no longer remembered Hannah, except the image of her turning to dust in the cave; they did not even remember her name. The Noxia glob had some of the rest returned home, and magic doors now felt cold. +They opened into an empty room with shelves and stacks of paper. It was a white room with blue viewing and gorgeous red desks, where young elven children sat at each desk for simple maths. Ennuyé said it was taking too long. The party gave the broom, and they ended up in a field. The next small room was made of brass: Brass City. Browning took the broom in the Air common room, then gave it back. The group went out, and the door slammed shut. It reopened to a dusky room like the Air common room, with black windows and cracking glass sounds. The party exited and seemed to return to their own time. They no longer remembered Hannah, except the image of her turning to dust in the cave; they did not even remember her name. The Noxia glob had some of the rest returned home, and magic doors now felt cold. The party went through the door and saw shadows of Valententhide's face. They felt as if they were being pulled up. They got out through the door on the other side of the barrier, to the room above the Air common room. The door there was made of black crystal, nearly transparent and enchanted. They found a suit of armour sized for a Goliath or goblin, with a gnomish hole set up so someone could stand on it and put it on. Purple crystals were linked with copper wire to a hatch containing an automaton core. A rug showed a cityscape with buildings and walkways. A label said "Great Farmouth." The armour was an enhanced suit with a world of magic missiles, a power suit, and a shield. @@ -84,7 +84,7 @@ The party got Bosh out and went downstairs. In one set of quarters, the room had At 23:00, doors led to the first-year common room and the conjuration class. The conjuration classroom had a birdhouse type of setup and coloured things above the blackboard. Morgana took the green one, waking a pixie inside. The pixie thought it was 49 AD, not 1012 AD. They thought they were leaving for Grand Towers tomorrow with the others, Green, Red, and Blue. The teachers of conjuration were "the sisters." They could not leave the classroom and were an elemental of Igraine. The party tried to get a new core using Treamon's skull and succeeded. The pixie wondered whether Morgana worked for the Chorus because she was one of Igraine's greatest executers. They thought Vita was also one, but became his own thing while working with Mr Bleakthorn. Mr Moreley could not leave the school either. A baby Attabre spirit had been brought in. The sisters were excited to see it. It was going to the Goliaths as they were becoming Emeraldus's line. The Goliaths killed the remaining two green dragons and created Wyrmdown. -The party went to Mr Moreley's classroom via the second-year common room. Something left through the other door to the common room when they arrived. Mr Moreley's room was fully painted as a mural of Snowsorrow. It had a large desk, a pedestal with a cushion, and a glass sphere with smoke inside. There was a powerful defence mechanism if someone lacked the password. The containment device was the same as Enis's. The mural showed gold, silver, copper, and white dragons. Dirk threw a javelin at the box, but it did nothing. One dragon head of each colour on the mural was a button. The party worked out the pattern, opening the gates of Snowsorrow to reveal an alcove with a draconic book for Ruby Eye. It had been left somewhere only Ruby Eye would find it. The writer was going to try to stop what they were doing here and used the plans for the dome once they had a [unclear] future for [unclear]. "Battery is the clue." The book contained a picture of a baby sphinx, a sixth sphinx. It said a Mother hive for the "worm" had been created using the Attabre excellence. +The party went to Mr Moreley's classroom via the second-year common room. Something left through the other door to the common room when they arrived. Mr Moreley's room was fully painted as a mural of Snowsorrow. It had a large desk, a pedestal with a cushion, and a glass sphere with smoke inside. There was a powerful defence mechanism if someone lacked the password. The containment device was the same as Ennuyé's. The mural showed gold, silver, copper, and white dragons. Dirk threw a javelin at the box, but it did nothing. One dragon head of each colour on the mural was a button. The party worked out the pattern, opening the gates of Snowsorrow to reveal an alcove with a draconic book for Ruby Eye. It had been left somewhere only Ruby Eye would find it. The writer was going to try to stop what they were doing here and used the plans for the dome once they had a [unclear] future for [unclear]. "Battery is the clue." The book contained a picture of a baby sphinx, a sixth sphinx. It said a Mother hive for the "worm" had been created using the Attabre excellence. The party headed up to astronomy. There was a big telescope and blackboards showing what the moons actually look like. The telescope showed a full moon even though the moon was currently only half. The room moved when the telescope moved. Constellations were named; one was called Bell / Squall. Scrying spells on the telescopes could home in on certain points. Pri-moon had many "meteor" impacts. The second moon was a very perfect seasonal stone with a chunk missing. Tri-moon was deep purple. @@ -94,7 +94,7 @@ Back in Mr Moreley's room, after breaking the void out, the dragon on the wall s # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine, Hydrum, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Tortish Hartwall / Tortish Harthwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Enis / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. +People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine, Hydrum, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Tortish Hartwall / Tortish Harthwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Ennuyé / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. Groups and factions mentioned include the party, adventurers who found Hartwall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. @@ -106,7 +106,7 @@ Creatures and creature-like beings mentioned include oxen-horse crossbreeds, gri Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowsorrow mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. -Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Enis recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. +Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Ennuyé recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. Strategic resources and plans mentioned include the Howling Tombs lead through Hartwall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. @@ -144,7 +144,7 @@ The party entered the date 3rd Sereneday of Hummeron, 2968 AC / 32 BD. The relat Mr Moreley saw Geldrin's ancient dragon scroll as still being worked on and suspected Hartwall was hiding things from the Gold Dragon Council. This suggests the party brought future knowledge into the past. -Ruby Eye's final project was to remove his eye, and he asked Geldrin to join a group including Everard, Thomas / Enis, and Valenth. This appears to be a key origin point for later events. +Ruby Eye's final project was to remove his eye, and he asked Geldrin to join a group including Everard, Thomas / Ennuyé, and Valenth. This appears to be a key origin point for later events. Cardonald's automations contained Thinglaens / Goliaths or light-like entities, not one of the four usual elementals. The ethical and magical nature of these automations remains unresolved. @@ -152,7 +152,7 @@ Eliana's assumed identity as Evalina Hartwall / Miana / Avalina, seen by Truesig Lord Bleakstorm's lesson and the books Tale of Two Sisters and Lord of Bleakstorm and the Gnomes preserve history about Bright, Valentenhule / Valententhide, Great Farmouth, gnomes, merfolk, Grand Towers technology, and everlasting life. These are major lore threads. -Enis recognised Geldrin as touched by the lady of destruction and was researching dark magic. Hannah was later described as wiped from time and space. Their role in the tower expedition is critical. +Ennuyé recognised Geldrin as touched by the lady of destruction and was researching dark magic. Hannah was later described as wiped from time and space. Their role in the tower expedition is critical. The green liquid / possible Noxia blood came from the desert, wanted to return to the rest of itself, and may have partially returned home after the time-door events. It remains dangerous and unresolved. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index a98429b..a97a99e 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -74,11 +74,11 @@ Geldrin appeared in a dark room before Kasha's throne. Kasha wanted to claim her The water room held the water Excellence the party had battled, dragging the mermaid they had rescued. When Dirk asked why it was there, it replied that because they had seen it, now it would be their end. Garadwal removed Morgana's Feeble Mind. Before returning to herself, she saw two storm Rubyeyes. The party removed the salt orb, and the prison door shut. -Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but when Geldrin called out the lie, Errol opened his desk and a ruby dropped out. The ruby played a scene of Enis and Browning in a huddle. Browning asked what Squeal had asked for. He said the weather to come through the Barrier, but the notes clarify that was not what Squeal said; Squeal actually asked for "the loss of everything." Enis said it was cryptic but might help them. A second message showed red glowing eyes with white minds for eyes, a water Excellence, and a whirlwind being. Errol refused to play the message. Morgana turned into a bat and found something by echolocation, then forgot she had found it and turned back. The lost ring was given to Geldrin. When he put it on, it disappeared. Dirk lost compassion, and Geldrin no longer wanted to learn things. A message said "Bread & Circus" and pretended to be Rubyeye. +Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but when Geldrin called out the lie, Errol opened his desk and a ruby dropped out. The ruby played a scene of Ennuyé and Browning in a huddle. Browning asked what Squeal had asked for. He said the weather to come through the Barrier, but the notes clarify that was not what Squeal said; Squeal actually asked for "the loss of everything." Ennuyé said it was cryptic but might help them. A second message showed red glowing eyes with white minds for eyes, a water Excellence, and a whirlwind being. Errol refused to play the message. Morgana turned into a bat and found something by echolocation, then forgot she had found it and turned back. The lost ring was given to Geldrin. When he put it on, it disappeared. Dirk lost compassion, and Geldrin no longer wanted to learn things. A message said "Bread & Circus" and pretended to be Rubyeye. Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunner door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. -Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Enis had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." +Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Ennuyé had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." Dothral, also called Joshua, had only been aware for twenty years. A soul crashing into the tower had awakened a few constructs. A magpie landed on Morgana and said it could help her. The Chorus had sent it. Difficult times were coming, but Morgana would know the right path when it came. The magpie could say no more because Morgana had told it not to say anything else, though she could not remember doing so. It said it was time; the Chorus could not help before but could now. Willowispa was flying away furious. Dothral had awakened around Rhime watches about twenty years earlier, near a door, and something had forcefully propelled him through it. @@ -114,7 +114,7 @@ Bollar men were looking for the party. He agreed to help the militia and find th # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Enis, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. +People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Ennuyé, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. @@ -128,7 +128,7 @@ Items, documents, and physical resources mentioned include the broom, salt pot s Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadwal, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadwal's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valententhide's proposed pathway magic. -Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Enis, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowsorrow, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. +Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Ennuyé, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowsorrow, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. # Clues, Mysteries, and Open Threads diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index 2b6556e..b136af2 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -42,7 +42,7 @@ When the party checked the crack, someone became petrified by it and instinctive An ornate door led to a long throne room. One throne was Hartwall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadwal. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. -A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Browning came in a day later and left with a key. The door said Hartwall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." +A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Ennuyé's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Browning came in a day later and left with a key. The door said Hartwall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." Eliana and Joshua / Dothral felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. @@ -54,13 +54,13 @@ Dirk sang a sombre goliath song from the music book. While he sang, Eliana heard The next room had two beds, one carved with sky and one with a dragon. The sky bed had an X carved into it. Under the dragon bed was a box; a key was on the dragon's bottom with six possible Celestial words on it. A magical pure-black cat with green eyes came around the door and wanted to be killed. Something was locked up at the end of the corridor. The cat escaped; Eliana shot and injured it, but it repaired itself. -A "window" opened into an illusion of a beautiful field of roses, with a picnic blanket under the window and dragon toys nearby. A tea set held cups with folded papers labelled Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, and me, with the last perhaps keyless. The sphynx wanted Dirk to read books. The toy chests were empty. Geldrin read the bears' words: "Here always Never Nowhere all Harth." The notes identify Hannah Joy, Enis's wife, as erased from existence. +A "window" opened into an illusion of a beautiful field of roses, with a picnic blanket under the window and dragon toys nearby. A tea set held cups with folded papers labelled Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, and me, with the last perhaps keyless. The sphynx wanted Dirk to read books. The toy chests were empty. Geldrin read the bears' words: "Here always Never Nowhere all Harth." The notes identify Hannah Joy, Ennuyé's wife, as erased from existence. -The party realised Enis had sacrificed his wife so Joy could live, but it did not work because Joy could not exist if her mother did not exist. The sphynx grew quickly and asked many questions. Invar had a crab in his bag. Eliana wanted the sphynx green, noted that jade had turned them green, and remembered a brother's nose. +The party realised Ennuyé had sacrificed his wife so Joy could live, but it did not work because Joy could not exist if her mother did not exist. The sphynx grew quickly and asked many questions. Invar had a crab in his bag. The baby sphynx told Eliana, "I wasn't born green," said jade had turned them green, and remembered brothers now. -The next room had carved doors. One stone door was crudely carved with a bell, cracked and on fire, and large men surrounding it while looking at the sky, perhaps Bellborn. When Dirk asked it to open, it said, "You may not pass, son of fire." Only the son of stone and their friends could enter. Invar tried to enter, and the door told him to run back home. It opened for Eliana. The room was large and empty. Dirk found a coin of uncertain origin. Invar noticed one stone was slightly different from the uniform others. Morgana found a paper that read: "I hid them for you. One is in a cell, the other false teddy." A loose hollow flagstone held a box, and Geldrin found a memory orb. +The next room had carved doors. One stone door was crudely carved with a bell, cracked and on fire, and large men surrounding it while looking at the sky, perhaps Bellburn. When Dirk asked it to open, it said, "You may not pass, son of fire." Only the son of stone and their friends could enter. Invar tried to enter, and the door told him to run back home. It opened for Eliana. The room was large and empty. Dirk found a coin of uncertain origin. Invar noticed one stone was slightly different from the uniform others. Morgana found a paper that read: "I hid them for you. One is in a cell, the other false teddy." A loose hollow flagstone held a box, and Geldrin found a memory orb. -The box revealed a small scene of Grand Towers before the other towers were built. Three small boxes at the front resembled something seen before at Enis's place or a professor's. Seven bare-chested elves stood in front. Two held chains leading to side panels: one to whorls of wind, and the other to an elven body with a lion's head. The baby thought the lion-headed figure was the real daddy, took the lion, broke the box, and fell asleep after the tantrum. +The box revealed a small scene of Grand Towers before the other towers were built. Three small boxes at the front resembled something seen before at Ennuyé's place or a professor's. Seven bare-chested elves stood in front. Two held chains leading to side panels: one to whorls of wind, and the other to a toy figure of Attabre, an elven body with a lion's head. The baby sphynx said Attabre was his father, took the lion, broke the box, and fell asleep after the tantrum. Geldrin found a glass shard, and Eliana found a statue with Goblin writing: "Time flies." Things disappeared when the party left the room. Another door led to a desert-badlands room showing a sandstone battle between Noxia and Sierra. It contained a giant adult-dragon-sized bed, a human-sized bedside table and vanity, and a bedside book titled `Tunnels of Love`, identified bluntly as dwarf porn. @@ -106,11 +106,11 @@ At another prison, a standard carved door showed eight serpents with different h One dark door now held nothing; it had been a prisoner of a different time. Another dark door led to an ancient dwarven hold, not a settlement. Opening it revealed a massive shaggy blue aurora. Geldrin promised to return and let it out when he learned how to power the dome without all the elementals. The cellmate had been chosen to turn off the gusts and could turn them back on when he pleased. -At the snake door, the party chipped at the ice and one head spoke. It knew the door at Hartwall's lab for Enis and needed a Hartwall-style door handle and archway. The goat was Dorion, the bull was Tim, and the lion was Geoffrey. The door's conditions were to use the arch, oil the hinges, and not break it. It called Dotharl the door guard for this prison. Geoffrey wanted a new body before allowing them in. The party agreed not to take or break anything. Inside, the walls were intricately carved with faces showing different expressions, except for eyeballs or hair. +At the snake door, the party chipped at the ice and one head spoke. It knew the door at Hartwall's lab for Ennuyé and needed a Hartwall-style door handle and archway. The goat was Dorion, the bull was Tim, and the lion was Geoffrey. The door's conditions were to use the arch, oil the hinges, and not break it. It called Dotharl the door guard for this prison. Geoffrey wanted a new body before allowing them in. The party agreed not to take or break anything. Inside, the walls were intricately carved with faces showing different expressions, except for eyeballs or hair. The floor was a mosaic of seaward stone, purple crystal, and other materials. The archway matched the Hartwall lab archway, and the prison symbol said "home." A seaward-stone table had veining like an unrecognised map. A hat stand held a cloak that made the wearer invisible. Bookshelves held books about the moon and a nursery rhyme book about Valententhide. One unknown-author book, `Palace of Valententhide`, said her palace was forged in the deep sky, in a domain outside mortal realms, on the crimson. Its walls were faces she did not have, the air was unbreathable unless visitors brought their own, and when the gods were banished to another plane, Valententhide used a loophole to stay at this palace. -Geldrin felt urged to put the book on the table. The table's blue veins morphed to look like the moon. The nursery rhyme book showed a castle, perhaps in Hartwall escape style. The coat stand had invisible eyes on it. The cloak, when invisible, showed moving starscapes to observers but not to the wearer. When Geldrin placed other books on the table, Enis's spellbook made it blank, then showed sleeping men, then a girl in a dome, then an endless well with more at the bottom, then two grinning figures guarding a door with weapons, perhaps a picture of Enis's soul. A Mythos spellbook showed a pyramid, temples beside a sphynx, an egg, and Garadwal. +Geldrin felt urged to put the book on the table. The table's blue veins morphed to look like the moon. The nursery rhyme book showed a castle, perhaps in Hartwall escape style. The coat stand had invisible eyes on it. The cloak, when invisible, showed moving starscapes to observers but not to the wearer. When Geldrin placed other books on the table, Ennuyé's spellbook made it blank, then showed sleeping men, then a girl in a dome, then an endless well with more at the bottom, then two grinning figures guarding a door with weapons, perhaps a picture of Ennuyé's soul. A Mythos spellbook showed a pyramid, temples beside a sphynx, an egg, and Garadwal. A tome of dome making displayed strange curving patterns, a "magnet curvature pattern," Grand Towers, a crystal, mountains, the atmosphere, and a giant flaming rock. Geldrin's spellbook showed a massive dragon, Perodita, now with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the windows. Other pages showed trees, then nothing, then a two-lodge logging area. The table spoke the words on the page. Another image showed a dragon lady and two dragon men, possibly silver, white, or gold. `Flight of the Gold` showed an enormous palace with tiny dragons flying around, a snow screen, flowers and trees, no snow, and a temperate appearance. @@ -142,21 +142,21 @@ The party then used the right blade to go to Hartwall's lab. They gave the ice e # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Browning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Ennuyé, Mr Browning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellburn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. -Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. +Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellburn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. -Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `Fuck you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. +Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Ennuyé's lab, `[unclear: aprosur]`, the corridor with `Fuck you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. -Creatures and creature-like beings mentioned include the magical black green-eyed cat, the sphynx / Bynx, the goliath baby, a crab in Invar's bag, the lion-headed elven body, the huge black dragon with flies, the drow or green dragon, a copper dragon, a dragon lady and dragon men, a white dragon, red and blue dragons, a fire elemental, ice elemental, frost elemental, massive shaggy blue aurora, elemental prisoners, insects speaking for Cacophony, and invisible hooded figures, one of whom became a copper dragon. +Creatures and creature-like beings mentioned include the magical black green-eyed cat, the sphynx / Bynx, the goliath baby, a crab in Invar's bag, the Attabre toy figure with an elven body and lion's head, the huge black dragon with flies, the drow or green dragon, a copper dragon, a dragon lady and dragon men, a white dragon, red and blue dragons, a fire elemental, ice elemental, frost elemental, massive shaggy blue aurora, elemental prisoners, insects speaking for Cacophony, and invisible hooded figures, one of whom became a copper dragon. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. +Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Ennuyé's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. -Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Hartwall had two daughters; the note hiding items in a cell and a false teddy; Bynx's memory of a lion-headed "real daddy"; the Hartwall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming Eliana as Eliana Hartwall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. +Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Hartwall had two daughters; the note hiding items in a cell and a false teddy; Bynx identifying the Attabre toy figure as his father; the Hartwall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming Eliana as Eliana Hartwall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. # Clues, Mysteries, and Open Threads @@ -170,13 +170,13 @@ Argathum's urn, the offering flute, the white rose, the amethyst orb, the frosty The statues turning silver into crystallised jade dust, the green jade heart pendant, prior jade purchases, and Eliana being turned green by jade remain connected but unresolved. -The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for Eliana in a dress, Mr Browning's key, and Hartwall's unnamed baby daughters remain active clues. +The sentient door's brothers at Ennuyé's lab and `[unclear: aprosur]`, its preference for Eliana in a dress, Mr Browning's key, and Hartwall's unnamed baby daughters remain active clues. The mind fog, the voice telling Invar "I will not lose you again my son," Dirk's vision of Joy, Errol's warning that information was being lost, and Platinum's belief that the memory wipe missed the door all point to ongoing memory-erasure machinery. -The room with the goliath song, flute, stuffed "bears," rose-field window, labelled tea cups, and Hannah Joy confirms Enis's sacrifice of Hannah so Joy might live, but also that Joy could not exist if Hannah did not. The consequences for Joy, Hannah, and Enis remain unresolved. +The room with the goliath song, flute, stuffed "bears," rose-field window, labelled tea cups, and Hannah Joy confirms Ennuyé's sacrifice of Hannah so Joy might live, but also that Joy could not exist if Hannah did not. The consequences for Joy, Hannah, and Ennuyé remain unresolved. -The stone door recognised sons of fire and stone, and the room held a memory orb showing Grand Towers, seven elves, whorls of wind, and a lion-headed elven body. Bynx's identification of the lion-headed figure as "real daddy" is an open identity clue. +The stone door recognised sons of fire and stone, and the room held a memory orb showing Grand Towers, seven elves, whorls of wind, and a toy figure of Attabre with an elven body and a lion's head. Bynx identified Attabre as his father. The desert-badlands room showed Noxia fighting Sierra, while later plinths named the Blood of Noxia and Spear / Arrow of Sierra. How these artifacts and the battle relate remains unresolved. diff --git a/data/4-days-cleaned/day-48.md b/data/4-days-cleaned/day-48.md index f91e9f7..97b70a3 100644 --- a/data/4-days-cleaned/day-48.md +++ b/data/4-days-cleaned/day-48.md @@ -20,7 +20,7 @@ complete: true # Narrative -Day 48 began after the party closed the fire elemental rift in Hartwall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed Eliana being a Hartwall, Bynx said Eliana was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping Eliana from memories in the same way Enis's wife Hannah had been erased. +Day 48 began after the party closed the fire elemental rift in Hartwall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed Eliana being a Hartwall, Bynx said Eliana was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping Eliana from memories in the same way Ennuyé's wife Hannah had been erased. Errol returned and reported that things were bad after a battle. Gardoil was not present because she had gone to do something, and reinforcements were needed from the capital. The party tried to travel by broom to Azureside and found themselves in a place of completely blue sky, passages, vanishing doors, lush grass, mushrooms, and sky below. A squirrel spoke with them, did not know where it was, and said a floppy bronze-coloured lizard looked after him. The squirrel sent a magpie to fetch it. A metallic brass-looking dragon approached. @@ -42,7 +42,7 @@ Wrath took the party to a huge underground dwarven city. A lava ball held a humo Invar made an offering to the lava orb. He opened a box containing a tiny creature, which leapt to the lava orb and told him to aid his friends. The party saw cells and a dark-skinned man crawling across sand and begging for help. They saw Grand Towers elves leaving defeated and in pride, and the fall of two empires. Pride teleported away. Wrath became angry because the party had not killed Pride. The dwarf High Priest wanted to arrest Wrath for existing. Rubyeye was present and was arrested for ancient crimes after the council deemed him a wanted criminal and summoned him. Wrath had been advocating for Rubyeye and had brought Pride while claiming the party caused events. -Spindl led the party to Rubyeye, who was imprisoned in a dome. His charges included 174,312 herfolk babies murdered, entrapment of elemental spirits, construction of tower, and downfall of ancient race. Cardinal was not seen. Rubyeye said Enis had a body stored somewhere, perhaps Goalmost Falls. He remembered Hannah and that there were six elemental forces, six arms on the exhausted, and that there had been six of them all along. The party asked Spindl to call an audience with the judges, then decided to kill Pride. Geldrin scried Pride in a veined stone building with rows of flat red and blue stained glass. +Spindl led the party to Rubyeye, who was imprisoned in a dome. His charges included 174,312 herfolk babies murdered, entrapment of elemental spirits, construction of tower, and downfall of ancient race. Cardinal was not seen. Rubyeye said Ennuyé had a body stored somewhere, perhaps Goalmost Falls. He remembered Hannah and that there were six elemental forces, six arms on the exhausted, and that there had been six of them all along. The party asked Spindl to call an audience with the judges, then decided to kill Pride. Geldrin scried Pride in a veined stone building with rows of flat red and blue stained glass. The party broke Rubyeye out and teleported to Salanar's prison. A black dragonborn or extremely dark-skinned humanoid named Umberous greeted them and locked them in. He spoke on his father's behalf and said nothing the party had done had caused his father's ire, because they had done what they were asked and kept the dome up. He gave Geldrin a pouch of white powder to recover spell slots. A vision of Grand Towers showed a proud, calloused-cheeked elf with sunken eyes who looked as if he had given up. Umberous said his father wanted to meet and had a gift that would help. @@ -52,7 +52,7 @@ The party threw slurry, bones, and metal through the Barrier. The slurry and sim The party investigated the prison. A door rune read "Empty." Corridors were lined with heavily armoured dwarf statues. Plaques named Ugarth Thunderfut, slain by the demon Samuel; Borbor Thunderfut, who saw Samuel slain by the demon Struct; and Lhura Trutbrow, slain by Struct but bound in chain upon him. The story involved thirty dwarves from two clans capturing Throngore. A thirty-foot circular room held six more dwarves who had bound the creature there. One statue should have held a crystal or diamond-type gem, but the gem was missing. A dark corridor led to a chamber of thirty dwarf sarcophagi. The room stank of decay, and the bodies had been decapitated around twenty years earlier, despite sarcophagus inscriptions saying the thirty dwarves had lived in the corridor and all died on the same date 1,050 years ago. Their armour and weapons were present as heirlooms and had been covered with goat urine. -The party tried to match armour to statues and found fine glass dust in stone cracks, suggesting a diamond resurrection spell or similar. Stoven and Stuart had both been imprisoned twenty years earlier and only recently released by the party and another group. A narrowing dark corridor led to a handleless door with a panel. Beyond it was a prison dome containing a featureless humanoid figure, uncertainly noted as Aglue?, Anemie?, or Valententhide. Pylon runes explained the pylons and mentioned a key or "wheel" to open it. A third door had magical infernal-like writing on the doorknob, reminiscent of Enis's lab. When Dothral tried to open it, he heard, "Come on, boy, we haven't got all day." Inside were five living dwarves with no hands or feet, their eyes and lips sewn shut. They wanted only to be killed. A crystal gave Eliana a faint memory of medical school and playing with a sister by the river in Provista, where she looked different and called Eliana silly poo-poo head. +The party tried to match armour to statues and found fine glass dust in stone cracks, suggesting a diamond resurrection spell or similar. Stoven and Stuart had both been imprisoned twenty years earlier and only recently released by the party and another group. A narrowing dark corridor led to a handleless door with a panel. Beyond it was a prison dome containing a featureless humanoid figure, uncertainly noted as Aglue?, Anemie?, or Valententhide. Pylon runes explained the pylons and mentioned a key or "wheel" to open it. A third door had magical infernal-like writing on the doorknob, reminiscent of Ennuyé's lab. When Dothral tried to open it, he heard, "Come on, boy, we haven't got all day." Inside were five living dwarves with no hands or feet, their eyes and lips sewn shut. They wanted only to be killed. A crystal gave Eliana a faint memory of medical school and playing with a sister by the river in Provista, where she looked different and called Eliana silly poo-poo head. When the party took the crystal to the dwarves, they smiled and passed happily into the afterlife. As the party moved past, Invar's bag of holding opened by itself so something inside could emerge: an Orb of Compassion. The headmaster's office at the magic school had held a note reading "mines beneath the real." The party became overwhelmed with compassion and dropped the orb and crystal. Geldrin found a loose stone hiding a small eye-sized ruby with a spell similar to Knock. @@ -64,11 +64,11 @@ The room darkened when Invar said "original." Darkness closed in, stars appeared # People, Factions, and Places Mentioned -People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Enis, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Eliana Hartwall, Ingus, Spindl, Pride, the dwarf High Priest, Enis, Goalmost Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. +People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Ennuyé, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Eliana Hartwall, Ingus, Spindl, Pride, the dwarf High Priest, Ennuyé, Goalmost Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. Groups and factions mentioned include the party, Dunners, goliaths, merfolk, dragonborn, Duhg guards, Verdigrim's people, Verdigrimtown, Ashkielion's goliath claimants, the council in camp, dwarves, the dwarf council, herfolk babies, elemental spirits, ancient race, Grand Towers elves, black dragonborn or Umberous's faction, Infestus's side, two dwarf clans, thirty dwarves who captured Throngore, handless and footless preserved dwarves, gods, elemental-plane powers, tormentors, and another party that helped release prisoners. -Places mentioned include Azureside, blue-sky passageways, the capital, cave-network entrances, the main cliff entrance, hidden patrol entrances under shrub / behind rock / poison door / ground, the Dunners' camp, Ashkielion, Verdigrimtown, the dragonborn tunnels and Dunner-style throne room, the goliath council tent, the huge underground dwarven city, the lava-orb chamber, Grand Towers, Salanar's prison, the seaside of the world, the Barrier, snowy mountain and great stone sky fort, the scared dwarven prison room, Throngore's possible prison under Lewshis and Aneurascarle, the circular dwarf statue chamber, the thirty-dwarf sarcophagus chamber, Enis's lab, medical school, Provista, the magic school headmaster's office, elemental planes as highway, Morgana's `[coded]` teleport circle, and Morgana's hut. +Places mentioned include Azureside, blue-sky passageways, the capital, cave-network entrances, the main cliff entrance, hidden patrol entrances under shrub / behind rock / poison door / ground, the Dunners' camp, Ashkielion, Verdigrimtown, the dragonborn tunnels and Dunner-style throne room, the goliath council tent, the huge underground dwarven city, the lava-orb chamber, Grand Towers, Salanar's prison, the seaside of the world, the Barrier, snowy mountain and great stone sky fort, the scared dwarven prison room, Throngore's possible prison under Lewshis and Aneurascarle, the circular dwarf statue chamber, the thirty-dwarf sarcophagus chamber, Ennuyé's lab, medical school, Provista, the magic school headmaster's office, elemental planes as highway, Morgana's `[coded]` teleport circle, and Morgana's hut. Creatures and creature-like beings mentioned include a squirrel, magpie, floppy bronze lizard, metallic brass dragon, manticore, invisible enemies, white raiding forces, earth elementals, tiny creature from Invar's box, lava elemental orb or prisoner, void elemental, black dragonborn / Umberous, featureless dome figure / lost part of Valententhide, gods, shadowy figure, and preserved mutilated dwarves. @@ -82,7 +82,7 @@ Strategic resources and plans mentioned include reinforcements from the capital, Bynx's statements that Eliana was not always green and sometimes reminds him of his sister and Platinum continue the unresolved identity, jade, and sphynx-family threads. -The possible god-deal to wipe Eliana from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Enis, Joy, Hannah, and Eliana's Hartwall identity. +The possible god-deal to wipe Eliana from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Ennuyé, Joy, Hannah, and Eliana's Hartwall identity. The Dunners' uncovered texts, Benu's convalescence, the prophecy of the child's return, and the question of accepting Garadwal as old protector made flesh anew remain active political and religious threads. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 2058200..622db71 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -84,7 +84,7 @@ sources: - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. - [Everard Browning](people/everard-browning.md): Everard Browning, Browning, Edward Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. -- [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, The Mage, Visage Ennuyé. +- [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, Thomas, The Mage, Visage Ennuyé. - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. @@ -162,7 +162,7 @@ sources: - [Bleakstorm](places/bleakstorm.md): Bleakstorm, Lord Bleakstorm, Bleakstorm castle. - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md): Riversmeet, Menagerie, Mages College at Riversmeet, old mage school, mage school. - [Void Spheres](items/void-spheres.md): void spheres, orb of void, void orb, eight spheres, Brotor's gift. -- [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Enis / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. +- [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Ennuyé / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. - [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. - [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. - [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index cf242ba..880154c 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -26,7 +26,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Joy | Updated [Joy](../people/joy.md). | | Kasha / Kashe | Existing deity/pact coverage; Day 46 baby-spirit and Garadwal claims preserved in cleaned narrative and [Open Threads](../open-threads.md). | | Amoursorate, Dothral / Joshua | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); orb context added to [Void Spheres](../items/void-spheres.md). | -| Enis, Browning, Squeal | Existing Rubyeye/Browning context; Squeal added to [Minor Figures from Day 46](../people/minor-figures-day-46.md) and [Open Threads](../open-threads.md). | +| Ennuyé, Browning, Squeal | Existing Rubyeye/Browning context; Squeal added to [Minor Figures from Day 46](../people/minor-figures-day-46.md) and [Open Threads](../open-threads.md). | | Water Excellence | Existing [Excellences](../concepts/excellences.md); Day 46 context preserved in cleaned narrative. | | Sierra, Lodest, Anastasia | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Platinum, Cardonald | Platinum added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); Cardonald covered by existing Cardonald/Rubyeye context and cleaned narrative. | diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index aa63f9f..43f2387 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -14,8 +14,8 @@ sources: | Sunsoreen Council, Council of Gold, Aurum, Hayhearn, Sophus, Orius, Silent One | Standalone [Sunsoreen Council](../factions/sunsoreen-council.md). | | Valententhide palace, house, deep-sky domain, wall of faces | Existing [Valententhide](../people/valententhide.md) updated. | | Elemental prisons, frost prison, Dorion, Tim, Geoffrey, aurora prisoner, fire rift | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; minor names also in [Minor Figures from Day 47](../people/minor-figures-day-47.md). | -| Joy / Hannah / Enis sacrifice | Existing [Joy](../people/joy.md) updated; Hannah in minor figures and open threads. | -| Garadwal, Argentum, Metatous, lion-headed father clue | Existing [Garadwal](../people/garadwal.md) updated; Bynx page and minor figures cover details. | +| Joy / Hannah / Ennuyé sacrifice | Existing [Joy](../people/joy.md) and [Ennuyé](../people/ennuyé.md) updated; Hannah in minor figures and open threads. | +| Garadwal, Argentum, Metatous, Bynx identifying Attabre as his father | Existing [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), and [Attabre / Altabre](../people/attabre-altabre.md) updated. | | Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Browning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Hartwall lab rooms, Pine Springs, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index ca5b17d..e7faa61 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -49,7 +49,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Noxia green liquid / blood, lady of destruction, Noxia-return-to-desert clue | [Noxia](../people/noxia.md), [Minor Items](../items/minor-items-days-42-44.md), inventory, and open threads. | | Void orb, eight spheres, Squall's Belt, Brotor's gift, Aurises, kitchen seasoning lead | Standalone item page: [Void Spheres](../items/void-spheres.md); inventory and clues updated. | | Ruby Eye, Browning / Everard, Icefang / Altith, Joy, Attabre, Grand Towers, Barrier, Bleakstorm | Existing pages updated. | -| Cardonald variants, Arreanae, Tortish Hartwall / Hartwall, Humerous Torn, Principal Grey, Dribble, Enis / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Lady Evalina Hartwall / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | +| Cardonald variants, Arreanae, Tortish Hartwall / Hartwall, Humerous Torn, Principal Grey, Dribble, Ennuyé / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Lady Evalina Hartwall / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | | Howling Tombs, Hartwall's old lab, temples of Hydrum / Igraine / Larn / Kasha, Far Grove, Waterrose, Great Farmouth, Blackhold, Brass City, Pri-moon, second moon, Tri-moon, Squall's Belt | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), standalone pages where appropriate. | | Hartwall lab key, Draconic teleport/seeing scroll, alteration orb, janitor broom, power armour, automaton core, Larn chain/cat collars, Treamon's-skull core, Mr Moreley's book, telescope, empty glass orb, dust instructions | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), [Void Spheres](../items/void-spheres.md). | | Morgana statue, incomplete report, Ruby Eye wife/house sequence, Menagerie lockdown, displacement rules, old school historical date, future knowledge, Ruby Eye final project, automations, Evalina/Avalina identity, Hannah erasure, silver-green claw, baby Attabre spirit, sixth sphinx, lunar truth, next sphere leads | [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/items/minor-items-day-47.md b/data/6-wiki/items/minor-items-day-47.md index f4742da..a533242 100644 --- a/data/6-wiki/items/minor-items-day-47.md +++ b/data/6-wiki/items/minor-items-day-47.md @@ -15,7 +15,7 @@ sources: | Key from Mr Browning | Sentient door said Mr Browning left with a key. | [Everard Browning](../people/everard-browning.md). | | Stuffed "bears" | Actually humans, gnomes, and halflings; bore the phrase "Here always Never Nowhere all Harth." | Rollup / inscription. | | Dragon-bed key | Key on the dragon bed's bottom with six possible Celestial words. | Rollup. | -| Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a lion-headed body. | Rollup and [Bynx](../people/bynx.md). | +| Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a toy figure of Attabre with an elven body and lion's head; Bynx said Attabre was his father. | Rollup, [Bynx](../people/bynx.md), and [Attabre / Altabre](../people/attabre-altabre.md). | | `Tunnels of Love` | Dwarf porn found on a dragon-sized bed. | Rollup. | | White rose powder | Smelled of visions. | Rollup. | | Green jade heart pendant | Silver necklace with jade heart pendant found in a false-bottom cutlery box. | Rollup / jade thread. | diff --git a/data/6-wiki/items/minor-items-days-48-52.md b/data/6-wiki/items/minor-items-days-48-52.md index 31d5f1a..f804519 100644 --- a/data/6-wiki/items/minor-items-days-48-52.md +++ b/data/6-wiki/items/minor-items-days-48-52.md @@ -21,7 +21,7 @@ sources: | Dwarf heirloom armour and weapons | 48 | Belonged to thirty dwarves; found with goat urine, glass dust, and sarcophagus date mismatch. | Rollup. | | Missing crystal / diamond-type gem | 48 | Absent from one of six binding dwarf statues; possibly tied to resurrection or prison function. | Rollup / open thread. | | Pylon runes / key / wheel | 48 | Explained pylons and how to open the featureless dome. | [Elemental Prisons](../concepts/elemental-prisons.md). | -| Infernal-like doorknob writing | 48 | Similar to Enis's lab; Dothral heard a grandfather-like prompt. | Rollup. | +| Infernal-like doorknob writing | 48 | Similar to Ennuyé's lab; Dothral heard a grandfather-like prompt. | Rollup. | | Memory crystal | 48 | Let Eliana remember medical school and a Provista sister calling them silly poo-poo head; released mutilated dwarves to afterlife. | Rollup / open thread. | | Orb of Compassion | 48 | Emerged from Invar's bag and overwhelmed the party with compassion. | Rollup / open thread. | | `mines beneath the real` note | 48 | Note from magic school headmaster's office. | Rollup / open thread. | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 95556da..d957876 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -157,10 +157,10 @@ sources: - What does the empathy alteration orb mean by `mine felt right here yours is under real`? - How do the serpans' sphinx book, underground city, Grincray, [Trixus](people/trixus.md), and the sixth sphinx connect? - What future knowledge did Mr Moreley recognize in Geldrin's ancient dragon scroll, and what was Hartwall hiding from the Gold Dragon Council? -- What was Ruby Eye's eye-removal final project, and why did he recruit Geldrin to join Everard, Thomas / Enis, and Valenth? +- What was Ruby Eye's eye-removal final project, and why did he recruit Geldrin to join Everard, Thomas / Ennuyé, and Valenth? - What is the Lady Evalina Hartwall / Miana / Avalina identity, and why did a silver dragon or silver-green claw demand its form back? - What did [Bright](people/valententhide.md), Valentenhule, Great Farmouth, gnomes, merfolk, and Grand Towers technology really have to do with each other? -- What did Enis mean by Geldrin being touched by the lady of destruction, and what dark magic was Enis researching? +- What did Ennuyé mean by Geldrin being touched by the lady of destruction, and what dark magic was Ennuyé researching? - What is the green liquid / possible Noxia blood from the desert, and what came with the party? - Who was Hannah, how was she wiped from time and space, and why did the party forget her name? - Who owned or was meant to use the black crystal door power armour, automaton core, Great Farmouth rug, and gnomish setup? @@ -186,7 +186,7 @@ sources: - Who was removed from the Hartwall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Hartwall's daughters? - What do Argathum's urn, Lady Elissa Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Elissa Hartwall's sacrifices? - Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Browning do with the key after Avalina left? -- Who is [Bynx](people/bynx.md)'s lion-headed `real daddy`, and what happened to Bynx's sister in the white dragon? +- What does [Bynx](people/bynx.md)'s identification of [Attabre / Altabre](people/attabre-altabre.md) as his father mean, and what happened to Bynx's sister in the white dragon? - What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? - Which trophy-plinth artifacts are still missing, including the Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, and Crown of Thorns? - Can the dome or prison network be powered safely without exploiting elementals, and what prisoners remain behind the frost-prison doors? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md index fcb346c..46ee004 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre-altabre.md @@ -12,6 +12,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-57.md --- @@ -29,6 +30,7 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. - Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. - Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. +- Day 47 showed a toy figure of Attabre in a Grand Towers memory box, with an elven body and lion's head; Bynx said Attabre was his father. - Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. - Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. - Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Lady Elissa Hartwall accepted the spells. @@ -45,7 +47,7 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, ## Open Questions -- Who is the fifth sphinx described as father? +- How does Bynx's identification of Attabre as his father connect to the fifth sphinx and the broader sphinx family? - Is Attabre the same as Altabre, or are these variant spellings of a title and a deity? - What task did Attabre give Trixus, and why was Trixus not going to achieve it? - What does `rule one, but from afar` mean, and is it the origin of the current god bargains? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 17d1688..f4a9166 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -51,11 +51,11 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - On Day 42, a false Ruby Eye illusion was found in an Ashkellon dome while the real Ruby Eye dispelled trap magic, taught the party ring activation as proof of identity, and said the rings activate in the Barrier so Joy cannot leave. - Ruby Eye said his pacts with Kashe were his downfall and that sacrifices by him and Joy's mother kept Joy safe; after the battle, Ruby Eye was missing and out of Bleakstorm's sight. - Day 43 records that Ruby Eye was no longer welcome at the pale-skinned, black-dreadlocked king's city; later Cardonald could not find Ruby Eye and thought he might not be on the same plane. -- Day 44 places young Ruby Eye in the old Riversmeet mage school, working on a final project to remove his eye, recruiting Geldrin into a group with Everard, Thomas / Enis, and Valenth, and using a self-reincarnation spell. +- Day 44 places young Ruby Eye in the old Riversmeet mage school, working on a final project to remove his eye, recruiting Geldrin into a group with Everard, Thomas / Ennuyé, and Valenth, and using a self-reincarnation spell. - Mr Moreley recognized Geldrin's ancient dragon scroll as something still being worked on and suspected Hartwall was keeping things from the Gold Dragon Council; a later draconic book was left where only Ruby Eye would find it and said `Battery is the clue`. -- On Day 46, Errol hid ruby messages connected to Rubyeye, Enis, Browning, and Squeal. One clarified that Squeal did not ask for weather through the Barrier but for `the loss of everything`; another message with red glowing eyes, a water Excellence, and a whirlwind being was refused by Errol. +- On Day 46, Errol hid ruby messages connected to Rubyeye, Ennuyé, Browning, and Squeal. One clarified that Squeal did not ask for weather through the Barrier but for `the loss of everything`; another message with red glowing eyes, a water Excellence, and a whirlwind being was refused by Errol. - A false message said `Bread & Circus` and pretended to be Rubyeye, while Platinum said Errol was possessed by one of Squeal's things. -- A Rubyeye / Squeal warning said to be careful at Riversmeet and that Enis had trapped Rubyeye in a room before Rubyeye went to his wife's place and was imprisoned. +- A Rubyeye / Squeal warning said to be careful at Riversmeet and that Ennuyé had trapped Rubyeye in a room before Rubyeye went to his wife's place and was imprisoned. - On Day 48, Wrath brought Rubyeye to the party saying he needed rescuing and Cardinal had been useless. - In a huge underground dwarven city, Rubyeye was arrested for ancient crimes: 174,312 herfolk babies murdered, elemental spirit entrapment, tower construction, and downfall of ancient race. - Rubyeye remembered Hannah and said there were six elemental forces all along, matching six arms on the exhausted. diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index 9d47d66..caf20b4 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -23,7 +23,8 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - On `day-46`, Morgana recovered the baby sphynx / goliath child after Kasha tried to claim it as alternative payment; the spell completed too quickly, as if another power also cast it. - On `day-47`, the sphynx grew quickly, asked many questions, played in Hartwall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. -- Bynx identified a lion-headed elven body in a Grand Towers memory box as "real daddy" and broke the box. +- On `day-47`, Bynx told Eliana, "I wasn't born green," connected the green change to jade, and remembered brothers now. +- Bynx identified the lion-headed elven toy figure of Attabre in a Grand Towers memory box as his father and broke the box. - The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. - Bynx's sister appeared as a carved female sphynx face on a Sunsoreen palace door. - In Sunsoreen, Bynx explained that where pure elemental planes meet, they combine. @@ -40,7 +41,7 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r ## Open Questions -- Who is Bynx's lion-headed "real daddy"? +- What does Bynx's identification of Attabre as his father mean for his origin and family? - What happened to Bynx's sister, and why was there no trace of her in the white dragon? - Why did Bynx's reincarnation complete too quickly, and which power helped? - Who are Bynx's brothers, and were they captured by the dome activation? diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index c79ceac..195a662 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -9,6 +9,7 @@ aliases: - Enwi - Envi - Ennui + - Thomas - The Mage - Visage Ennuyé first_seen: day-05 @@ -24,6 +25,9 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-57.md --- @@ -51,6 +55,10 @@ Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one - Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. - Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices were made to keep Joy safe and eternal. - Day 43 says Wroth trapped Envy in Lady Evalina Hartwall's head the same way Envy is in Ruby Eye's, suggesting Envy can be contained in people or minds. +- Day 44 places Ennuyé, then called Thomas, in the old Riversmeet mage school: he was an eighteen-year-old human in detention with Hannah, was considered a bad influence by Mama Cardonald, recognized Geldrin as touched by the lady of destruction, and was researching dark magic. +- Ruby Eye recruited Geldrin into a group including Everard, Thomas / Ennuyé, and Valenth around the eye-removal final project. +- Day 47 identifies Hannah Joy as Ennuyé's erased wife and says a sentient door had brothers at Ennuyé's lab and `[unclear: aprosur]`. +- Day 48 says Rubyeye believed Ennuyé had a body stored somewhere, perhaps Goalmost Falls, and records infernal-like doorknob writing reminiscent of Ennuyé's lab. - Day 57 Hydran-realm carvings said Envi was free: his spirit reached his base, occupied an awakened body in his laboratory, gained power and control over crystals, and had captured the party's allies. His goal was unknown and he had not been near his other parts. - Day 57 Azar Nuri said Envi works for him and has Tresmun's arm. @@ -66,6 +74,9 @@ Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one - `day-30`: Enwi's gloves are located in the Goliath Tower in the Oasis, and Enwi's ring pact is noted. - `day-42`: Envi's possible imprisonment, dark-demon deals, fifth ring, and Joy-related ring activation become central. - `day-43`: Wroth's Envy-in-Mama-Hartwall account reframes Envy/Envi containment in minds. +- `day-44`: Old-school scenes show Ennuyé / Thomas with Hannah, Ruby Eye, Everard, Valenth, and the tower expedition. +- `day-47`: Hartwall lab memory rooms clarify Hannah Joy as Ennuyé's erased wife and point toward Ennuyé's lab. +- `day-48`: Rubyeye says Ennuyé has a body stored somewhere, possibly Goalmost Falls. - `day-57`: Hydran's realm and Azar Nuri identify Envi as free, crystal-controlling, allied with or subordinate to Azar Nuri, and holding Tresmun's arm. ## Related Entries @@ -80,7 +91,9 @@ Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one - What did the five rings do? - Did his attempt to save Joy damage the Barrier? -- Are Ennuyé, Enwi, Envi, and Ennui all the same person, or are some separate figures? +- Are Ennuyé, Enwi, Envi, Ennui, and Thomas all the same person, or are some separate figures? - Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? - Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Lady Evalina Hartwall / Mama Hartwall? +- What happened to Hannah Joy, and how does her erasure relate to Joy's survival? +- Where is Ennuyé's stored body, and is Goalmost Falls the right lead? - Why does Envi have Tresmun's arm, and what does Azar Nuri expect him to do with it? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 265bb84..5462720 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -66,7 +66,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. - Garadwal sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. - After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. -- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a lion-headed elven body that [Bynx](bynx.md) called "real daddy," and diary entries saying Argentum wanted to help Garadwal fight elementals. +- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a toy figure of [Attabre / Altabre](attabre-altabre.md) that [Bynx](bynx.md) identified as his father, and diary entries saying Argentum wanted to help Garadwal fight elementals. - Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadwal, while preserving uncertainty about whether the original intentions remained good. - On Day 56, Garadwal was found behind a Barrier with Trixus, Benu, and Bynx in a Grand Towers control-room side area. He was clearer, said he would repay his misdeeds by helping the party, and asked that the dome be brought down now for different reasons. - Garadwal's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Hartwall to the downfall and said Argentum died. @@ -86,7 +86,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Altabre's children, the Dumnens, and the hidden feather relic. - `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. - `day-46`: Garadwal is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. -- `day-47`: Hartwall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx's lion-headed father clue. +- `day-47`: Hartwall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx identifying Attabre as his father. - `day-56`: Garadwal is found with Trixus, Benu, and Bynx behind a Grand Towers Barrier and urges the party toward bringing the dome down. ## Related Entries @@ -111,6 +111,6 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? - Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? - Who are Garadwal's brothers, and is one connected to the undead sphinx reported near the Hartwall artifact lead? -- Is Bynx's lion-headed `real daddy` Garadwal, a relative, or another sphynx-linked figure? +- How does Bynx's identification of Attabre as his father relate to Garadwal and the other sphynx-linked figures? - Why does Garadwal now want the dome brought down, and how does that differ from his earlier motives? - Which father trusted the party after the children reunited, and what does his trust permit? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index b919ce5..a9b0e43 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -38,10 +38,10 @@ Joy was a tiefling child and daughter of [Ennuyé](ennuyé.md), connected to the - On Day 42, Joy appeared with Emri as two ghost figures in an Ashkellon dome; Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices kept Joy safe and eternal. - In the Ashkellon library sequence, Joy warned that `they've got him` and told the party to go, probably referring to Ruby Eye. - Day 43 records Joy's dislike of Emi's dark-skinned elf apprentice. -- Day 44 notes Joy in the old school context around Enis / Thomas, Hannah, and Cardonald's daughter. +- Day 44 notes Joy in the old school context around Ennuyé / Thomas, Hannah, and Cardonald's daughter. - On Day 46, an illusion of Joy appeared beyond the map table after the memory-destroying creature died, saying she was there because the party had met her and that she was lost and always had been. -- Day 47 clarifies that Enis sacrificed his wife Hannah Joy so Joy could live, but the attempt failed because Joy could not exist if her mother did not exist. -- Hartwall lab memory rooms preserved Joy-labelled tea-set papers and confirmed Hannah Joy, Enis's wife, had been erased from existence. +- Day 47 clarifies that Ennuyé sacrificed his wife Hannah Joy so Joy could live, but the attempt failed because Joy could not exist if her mother did not exist. +- Hartwall lab memory rooms preserved Joy-labelled tea-set papers and confirmed Hannah Joy, Ennuyé's wife, had been erased from existence. ## Timeline diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index a910939..72ffe8c 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -16,8 +16,8 @@ sources: | Mr Browning | Entered after Avalina left and departed with a key. | Rollup. | | Everard | Unknown addressee in runes reading `Fuck you Everard`. | Rollup. | | Uncle Leeg, Daddle, Mum, stupid cat, poopoo head | Labels on folded papers in the rose-field tea set. | Rollup / inscription clue. | -| Hannah Joy | Enis's erased wife; Day 47 clarifies Enis sacrificed her so Joy could live, but Joy could not exist if Hannah did not. | Existing Hannah thread; rollup and [Joy](joy.md). | -| Bellborn? | Possible identification of large men around a cracked burning bell on a stone door. | Rollup; uncertain. | +| Hannah Joy | Ennuyé's erased wife; Day 47 clarifies Ennuyé sacrificed her so Joy could live, but Joy could not exist if Hannah did not. | Existing Hannah thread; rollup, [Joy](joy.md), and [Ennuyé](ennuyé.md). | +| Bellburn? | Possible identification of large men around a cracked burning bell on a stone door. | Rollup; uncertain. | | Laylistra | Name attached to a room after the Barrier vision. | Rollup. | | Greensleeves | Halfling chef named in a note under the fridge with a hidden handle. | Rollup. | | Cacophony | Tax collector who will collect payment after a path begun by Igraine's servant. | Rollup and [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index f7a44d9..8e8a073 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -63,7 +63,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Acroneth, Crindler, Belocoose, sphinx on another plane | Names from Geldrin's enrollment effect. | Rollup/open thread. | | Arreanae, Valent's daughter, gremlin janitor, Tortish Hartwall / Hartwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Serpans, four-armed vulture men, mindflayer-like wizard, Isobanne | Sphinx book and study-hall/classroom figures. | Rollup/open thread. | -| Enis / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Valententhide](valententhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Ennuyé / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Ennuyé](ennuyé.md), [Valententhide](valententhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Everard, Valenth, Brotor / Brutor, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Miana / Avalina | Student identities and old school group. | Standalone entry plus existing pages where present. | | Bright, Argathum / Argenthum, Mr Cardonald, lady of destruction, very dark-skinned elf with green liquid | Lessons, god-touch, and possible Noxia blood clues. | [Valententhide](valententhide.md), [Noxia](noxia.md), rollup. | | Altith / Icefang, Emeraldus, Tallith, Blackhold | Future warning, janitor/broom, and route figures. | [Icefang](icefang.md), rollup. | diff --git a/data/6-wiki/people/minor-figures-days-48-52.md b/data/6-wiki/people/minor-figures-days-48-52.md index 5bac73f..b1c1af6 100644 --- a/data/6-wiki/people/minor-figures-days-48-52.md +++ b/data/6-wiki/people/minor-figures-days-48-52.md @@ -30,7 +30,7 @@ This rollup preserves named and name-like figures from Days 48 and 52 that do no | Samuel | 48 | Demon named on dwarf statue plaques. | Rollup. | | Struct | 48 | Demon named on dwarf statue plaques; killed Samuel and Lhura. | Rollup. | | Aglue? / Anemie? | 48 | Uncertain possible names for the featureless dome figure / lost part of Valententhide. | [Valententhide](valententhide.md). | -| Thomas | 48 | Said to have put the lost part of Valententhide in the dome and taken what was there. | Rollup / old-school Thomas-Enis thread. | +| Thomas | 48 | Said to have put the lost part of Valententhide in the dome and taken what was there. | Rollup / old-school Thomas-Ennuyé thread. | | Simon | 48 | Pieced-together figure with Stoven and Stuart; wanted Valententhide and communicated with Throngore. | Rollup. | | Stoven and Stuart | 48 | Former prisoners released about twenty years after imprisonment; arrived with Simon. | Rollup. | | Squeall / Squeal | 52 | God of the lost / possible grandfather in Dothral's family thread. | Rollup / open thread. | diff --git a/data/6-wiki/people/noxia.md b/data/6-wiki/people/noxia.md index abb2342..1128106 100644 --- a/data/6-wiki/people/noxia.md +++ b/data/6-wiki/people/noxia.md @@ -30,7 +30,7 @@ Noxia is a destructive divine or corrupting force tied to scorpion symbolism, ba - Earlier auction and bargain clues connected Noxia to a holy symbol, bargain trinkets, and barrier sickness. - On `day-42`, the party found a Noxia chamber with purple crackling energy, a green dripping blob, a medusa, a statue figure, a child of the Mother with a worm, an eyeless dog, bronze, and a telescope like Emri's. - The party killed the Noxia Beast avatar, while a later observatory book said Noxia wanted to walk on the earth and that Noxia's blood corrupted land after a fight with Sierra. -- On `day-44`, Enis recognized Geldrin as touched by the `lady of destruction`, and a bottle of green liquid from the desert may have been Noxia blood. +- On `day-44`, Ennuyé recognized Geldrin as touched by the `lady of destruction`, and a bottle of green liquid from the desert may have been Noxia blood. - The green liquid wanted to return to the rest of itself in the desert; after time-door events, some of it had returned home. - On `day-53`, Perodita claimed the goliaths' suffering was tribute to Noxia. - On `day-55`, killing Perodita released Noxia essence. Most things healed it, but the party killed the essence and moved the remaining Noxia ooze into a barrel. diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index 338e099..218e6b5 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -30,7 +30,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - On `day-44`, the party reached Riversmeet, found Ruby Eye's melted house ruins and gravestone, and joined Lady Igraine's siege outside the Menagerie. - The Menagerie grounds had broken cages for griffon, dragon, wolf, and human subjects and a wall of force or similar effect. - Inside, the party entered old-school time or planes: apothecary, infirmary, head teacher's office, Divination, transmutation, study hall, common rooms, lessons, Air common room, tower tunnels, classrooms, and astronomy. -- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Enis, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Tortish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. +- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Ennuyé, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Tortish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. - Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. - On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadwal's reincarnation. - The school contained or released a memory-destroying creature and an invisible escaping entity; the party's memories were blanked and later flooded back after they protected a glowing thing in linked rooms. diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index c6473c4..13239b0 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -92,7 +92,7 @@ sources: - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s lion-headed father clue, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. +- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s identification of [Attabre / Altabre](people/attabre-altabre.md) as his father, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. - `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. -
3072c5fCorrect Browning and Everard name transcriptionsby Laura Mostert
data/2-pages/225.txt | 2 +- data/2-pages/226.txt | 2 +- data/2-pages/77.txt | 2 +- data/3-days/day-23.md | 2 +- data/3-days/day-47.md | 4 ++-- data/4-days-cleaned/day-23.md | 2 +- data/4-days-cleaned/day-47.md | 12 ++++++------ data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/day-47-coverage-audit.md | 2 +- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 2 +- data/6-wiki/clues/days-53-56-coverage-audit.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/items/hartwall-auction-lots.md | 2 +- data/6-wiki/items/minor-items-day-47.md | 2 +- data/6-wiki/open-threads.md | 6 +++--- .../people/{edward-browning.md => everard-browning.md} | 10 +++++----- data/6-wiki/people/geldrin.md | 2 +- data/6-wiki/people/icefang.md | 2 +- data/6-wiki/people/minor-figures-day-47.md | 4 ++-- data/6-wiki/people/minor-figures-days-32-35.md | 2 +- data/6-wiki/people/wrath.md | 2 +- data/6-wiki/places/desert-laboratory.md | 2 +- data/6-wiki/places/grand-towers.md | 2 +- .../places/riversmeet-menagerie-and-old-mage-school.md | 2 +- data/6-wiki/sources.md | 18 +++++++++--------- data/6-wiki/timeline.md | 2 +- 26 files changed, 47 insertions(+), 47 deletions(-)Show diff
diff --git a/data/2-pages/225.txt b/data/2-pages/225.txt index 422ac88..caef085 100644 --- a/data/2-pages/225.txt +++ b/data/2-pages/225.txt @@ -28,7 +28,7 @@ Has brothers at different places (Enis' lab & [unclear: aprosur]). Lots of people in & out. I've been in & out lots & prefers my other look wearing a dress. Last time Avalina left - the next person to come in was -Mr Boorning a day later - left with a key. +Mr Browning a day later - left with a key. Hartwall had 2 daughters - won't tell us their names due to privacy as they are babies. Don't seem to be able to trick it. diff --git a/data/2-pages/226.txt b/data/2-pages/226.txt index 2793a79..f8a225c 100644 --- a/data/2-pages/226.txt +++ b/data/2-pages/226.txt @@ -24,7 +24,7 @@ lab is through the door? - Dothral recognises the architecture. Forcefield appears part way down the corridor. Runes are in a language we don't understand. -Runes say "help you Everard". +Runes say "Fuck you Everard". First door on left - carving of small elvish town houses & large trees (out of place), Elvish script at the bottom. diff --git a/data/2-pages/77.txt b/data/2-pages/77.txt index 387ce4a..06469ca 100644 --- a/data/2-pages/77.txt +++ b/data/2-pages/77.txt @@ -21,7 +21,7 @@ hat stand has a cloak on it with a key in it parchment says - "we made it so you need to do both at the same time" Library - No Grimoire. Noxus in the building -project automation construction manual - by Edward Browning +project automation construction manual - by Everard Browning lots of different versions. Powered by a weak elemental & shield crystals & copper to animate it. key elven form - where you bind your own spirit to it "instructions for creating sentient jewelery" by Cardonal diff --git a/data/3-days/day-23.md b/data/3-days/day-23.md index ac66a29..e6ddea0 100644 --- a/data/3-days/day-23.md +++ b/data/3-days/day-23.md @@ -310,7 +310,7 @@ hat stand has a cloak on it with a key in it parchment says - "we made it so you need to do both at the same time" Library - No Grimoire. Noxus in the building -project automation construction manual - by Edward Browning +project automation construction manual - by Everard Browning lots of different versions. Powered by a weak elemental & shield crystals & copper to animate it. key elven form - where you bind your own spirit to it "instructions for creating sentient jewelery" by Cardonal diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index 1a5380d..3c300e3 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -134,7 +134,7 @@ Has brothers at different places (Enis' lab & [unclear: aprosur]). Lots of people in & out. I've been in & out lots & prefers my other look wearing a dress. Last time Avalina left - the next person to come in was -Mr Boorning a day later - left with a key. +Mr Browning a day later - left with a key. Hartwall had 2 daughters - won't tell us their names due to privacy as they are babies. Don't seem to be able to trick it. @@ -165,7 +165,7 @@ the door. - Dothral recognises the architecture. Forcefield appears part way down the corridor. Runes are in a language we don't understand. -Runes say "help you Everard". +Runes say "Fuck you Everard". First door on left - carving of small elvish town houses & large trees (out of place), Elvish script at the bottom. diff --git a/data/4-days-cleaned/day-23.md b/data/4-days-cleaned/day-23.md index b4ba17c..66357c2 100644 --- a/data/4-days-cleaned/day-23.md +++ b/data/4-days-cleaned/day-23.md @@ -56,7 +56,7 @@ The kitchen door showed char marks from the kitchen to the dining room, suggesti The door next to the lab was trapped and led to a storeroom with parchment, copper wire, shield crystals, and other materials. Crates contained bits of Silver as spare parts. Silver thought she wanted to be friends but had been just a practice vessel. She blew up the storeroom door. The laboratory door was trapped and needed a key, which was not in her room. In the guest room, a mirror had Elvish writing: "When you hold it like this you they get me first." It was very loose and contained a key in parchment. A stone under the mirror read, "you'll need something from a gift to Gavin." A hat stand had a cloak with a key in it, and the parchment said, "we made it so you need to do both at the same time." -The library contained no grimoire, but Noxus was in the building. A project automation construction manual by Edward Browning existed in many versions. Automations were powered by a weak elemental, shield crystals, and copper to animate them. A key elven form involved binding one's own spirit to it. "Instructions for creating sentient jewellery" by Cardonal was written in Celestial. Sentient items needed a soul. The party managed to stun Silver and lock her in the dining room, then opened the laboratory. +The library contained no grimoire, but Noxus was in the building. A project automation construction manual by Everard Browning existed in many versions. Automations were powered by a weak elemental, shield crystals, and copper to animate them. A key elven form involved binding one's own spirit to it. "Instructions for creating sentient jewellery" by Cardonal was written in Celestial. Sentient items needed a soul. The party managed to stun Silver and lock her in the dining room, then opened the laboratory. Inside the laboratory, Gardwal armour was piled as though to remind the mistress of shame. There were practice enchanted items. On the desk was a copper astrolabe containing a red gem. A voice came from the crystal and asked who the party were and what year it was. It had been 907 years. The speaker knew or was unsure that the necklace would survive her friend [unclear]. Enwi was being protected by Goliaths. Nobody knew the city was there, due to Browning's doing. Silver had taken over the body from the ring. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index daa7434..2b6556e 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -42,11 +42,11 @@ When the party checked the crack, someone became petrified by it and instinctive An ornate door led to a long throne room. One throne was Hartwall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadwal. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. -A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Boorning came in a day later and left with a key. The door said Hartwall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." +A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Browning came in a day later and left with a key. The door said Hartwall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." Eliana and Joshua / Dothral felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. -The party went outside to find and clear the area where the room had caved in. On the far side they found a trapped door, disarmed it, and identified a magical banishing trap aimed at someone coming out. The rest of the lab may have been through the door. Dothral recognised the architecture. A forcefield appeared partway down the corridor. Runes in an unknown language read "help you Everard." +The party went outside to find and clear the area where the room had caved in. On the far side they found a trapped door, disarmed it, and identified a magical banishing trap aimed at someone coming out. The rest of the lab may have been through the door. Dothral recognised the architecture. A forcefield appeared partway down the corridor. Runes in an unknown language read "Fuck you Everard." The first door on the left had carvings of small elvish town houses and large out-of-place trees, with Elvish script at the bottom. Inside were a wooden rocking horse on a spring, a vanity, a sofa with stuffed "bears" that were actually humans, gnomes, and halflings, and a rack of flutes. Eliana picked up one stuffed bear, tucked it under their arm, started to cry, tried to remember something, and felt as if they had lost something. They put it in their bag. @@ -142,17 +142,17 @@ The party then used the right blade to go to Hartwall's lab. They gave the ice e # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Browning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. -Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `help you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. +Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `Fuck you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. Creatures and creature-like beings mentioned include the magical black green-eyed cat, the sphynx / Bynx, the goliath baby, a crab in Invar's bag, the lion-headed elven body, the huge black dragon with flies, the drow or green dragon, a copper dragon, a dragon lady and dragon men, a white dragon, red and blue dragons, a fire elemental, ice elemental, frost elemental, massive shaggy blue aurora, elemental prisoners, insects speaking for Cacophony, and invisible hooded figures, one of whom became a copper dragon. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. +Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Browning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. @@ -170,7 +170,7 @@ Argathum's urn, the offering flute, the white rose, the amethyst orb, the frosty The statues turning silver into crystallised jade dust, the green jade heart pendant, prior jade purchases, and Eliana being turned green by jade remain connected but unresolved. -The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for Eliana in a dress, Mr Boorning's key, and Hartwall's unnamed baby daughters remain active clues. +The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for Eliana in a dress, Mr Browning's key, and Hartwall's unnamed baby daughters remain active clues. The mind fog, the voice telling Invar "I will not lose you again my son," Dirk's vision of Joy, Errol's warning that information was being lost, and Platinum's belief that the memory wipe missed the door all point to ongoing memory-erasure machinery. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 44c510b..2058200 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -82,7 +82,7 @@ sources: - [Bug Hunter](people/bug-hunter.md): Bug Hunter. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent], Brotor / Brutor [context: void gift and Brotor's eye uncertain]. - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. -- [Edward Browning](people/edward-browning.md): Edward Browning, Browning, Everard Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. +- [Everard Browning](people/everard-browning.md): Everard Browning, Browning, Edward Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. - [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, The Mage, Visage Ennuyé. - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index f025feb..aa63f9f 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -16,7 +16,7 @@ sources: | Elemental prisons, frost prison, Dorion, Tim, Geoffrey, aurora prisoner, fire rift | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; minor names also in [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Joy / Hannah / Enis sacrifice | Existing [Joy](../people/joy.md) updated; Hannah in minor figures and open threads. | | Garadwal, Argentum, Metatous, lion-headed father clue | Existing [Garadwal](../people/garadwal.md) updated; Bynx page and minor figures cover details. | -| Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Boorning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | +| Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Browning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Hartwall lab rooms, Pine Springs, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | | Altered picture, missing third girl, Hartwall daughters, Eliana as Eliana Hartwall, Lorekeeper source, Sunsoreen citizen release, emotional quelling | Added to [Open Threads](../open-threads.md) and relevant standalone pages. | diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index 61209ef..4958d2c 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -17,7 +17,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Existing Pages Updated or Used -- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Ennuyé](../people/ennuyé.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). +- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Everard Browning](../people/everard-browning.md), [Garadwal](../people/garadwal.md), [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Ennuyé](../people/ennuyé.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). ## Rollups Used diff --git a/data/6-wiki/clues/days-53-56-coverage-audit.md b/data/6-wiki/clues/days-53-56-coverage-audit.md index eee0276..52a7a4e 100644 --- a/data/6-wiki/clues/days-53-56-coverage-audit.md +++ b/data/6-wiki/clues/days-53-56-coverage-audit.md @@ -19,7 +19,7 @@ sources: | Bridget's return point, council chamber, Blakedurn's house, convoy battlefield, Perodita passages, Grand Towers side rooms, Bluescale, Great Infestus | Rollup: [Minor Places from Days 53-56](../places/minor-places-days-53-56.md). | | Garadwal armour, Rubyeye-summoning device, pylons, shield crystal/copper, poison/explosives, basilisk coal, rift blade, Noxia ooze barrel, control-room mechanisms, Rubyeye eye, Bluescale rules, Ember reward | Rollup: [Minor Items from Days 53-56](../items/minor-items-days-53-56.md). | | Peridita / Perodita and Noxia essence | Existing pages updated: [Peridita](../people/peridita.md), [Noxia](../people/noxia.md). | -| Grand Towers control room, Browning godhood ritual, Humility / Thomas / Envy, Juticar mission | Existing pages updated: [Grand Towers](../places/grand-towers.md), [Edward Browning](../people/edward-browning.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md). | +| Grand Towers control room, Browning godhood ritual, Humility / Thomas / Envy, Juticar mission | Existing pages updated: [Grand Towers](../places/grand-towers.md), [Everard Browning](../people/everard-browning.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md). | | Benu, Garadwal, Trixus, Bynx, sphinx brothers, dome-down choice | Existing pages updated or already covered: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), [Trixus](../people/trixus.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Cardinal, Rubyeye, Infestus, Wrath, Ember, Brass City route | Existing pages updated or linked: [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Infestus](../people/infestus.md), [Wrath](../people/wrath.md), minor figure/place/item rollups. | | Open questions from Days 53-56 | Added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index f86bb5f..e58101b 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -85,7 +85,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Infestus](people/infestus.md) - [Pythus Aleyvarus](people/pythus-aleyvarus.md) - [Valenth Cardonald](people/valenth-cardonald.md) -- [Edward Browning](people/edward-browning.md) +- [Everard Browning](people/everard-browning.md) - [Silver](people/silver.md) - [The Mother](people/the-mother.md) - [Peridita](people/peridita.md) diff --git a/data/6-wiki/items/hartwall-auction-lots.md b/data/6-wiki/items/hartwall-auction-lots.md index e15782e..ca52705 100644 --- a/data/6-wiki/items/hartwall-auction-lots.md +++ b/data/6-wiki/items/hartwall-auction-lots.md @@ -30,7 +30,7 @@ The Hartwall Grand Auction House lots included historical art, magical items, co ## Related Entries - [Xinquiss/Zinquiss](../people/xinquiss-zinquiss.md) -- [Edward Browning](../people/edward-browning.md) +- [Everard Browning](../people/everard-browning.md) - [Excellences](../concepts/excellences.md) - [Mother-of-Pearl Elemental Chariot](mother-of-pearl-elemental-chariot.md) - [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) diff --git a/data/6-wiki/items/minor-items-day-47.md b/data/6-wiki/items/minor-items-day-47.md index a966426..f4742da 100644 --- a/data/6-wiki/items/minor-items-day-47.md +++ b/data/6-wiki/items/minor-items-day-47.md @@ -12,7 +12,7 @@ sources: | Altered picture with `Preserve` rune | A third girl was removed or hidden from the white-rose picture. | [Open Threads](../open-threads.md). | | Argathum's urn, white rose, amethyst orb, red ribbon, dark wooden flute | Offering-like arrangement in a newly discovered prison room. | Rollup. | | Crystallised jade dust | Silver appeared to be turning into jade. | Open jade thread. | -| Key from Mr Boorning | Sentient door said Mr Boorning left with a key. | Rollup. | +| Key from Mr Browning | Sentient door said Mr Browning left with a key. | [Everard Browning](../people/everard-browning.md). | | Stuffed "bears" | Actually humans, gnomes, and halflings; bore the phrase "Here always Never Nowhere all Harth." | Rollup / inscription. | | Dragon-bed key | Key on the dragon bed's bottom with six possible Celestial words. | Rollup. | | Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a lion-headed body. | Rollup and [Bynx](../people/bynx.md). | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 9cd486e..95556da 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -185,7 +185,7 @@ sources: - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? - Who was removed from the Hartwall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Hartwall's daughters? - What do Argathum's urn, Lady Elissa Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Elissa Hartwall's sacrifices? -- Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Boorning do with the key after Avalina left? +- Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Browning do with the key after Avalina left? - Who is [Bynx](people/bynx.md)'s lion-headed `real daddy`, and what happened to Bynx's sister in the white dragon? - What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? - Which trophy-plinth artifacts are still missing, including the Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, and Crown of Thorns? @@ -218,10 +218,10 @@ sources: - What should be done with the barrel of Noxia ooze recovered after [Peridita](people/peridita.md)'s death? - What are the twenty-seven Humility fragments, where is the large weak part needed to recombine Thomas, and what did Thomas remove to become Envy? - What is the black shard / elemental of Void, and should it be placed into the Grand Towers prison system? -- What did [Edward Browning](people/edward-browning.md)'s phrase `and the flight of the gold ends` accomplish after his table spell was countered? +- What did [Everard Browning](people/everard-browning.md)'s phrase `and the flight of the gold ends` accomplish after his table spell was countered? - Did dome activation capture [Bynx](people/bynx.md)'s sphynx brothers, and can they be released without collapsing other prisons? - What is the shield remote near Grand Towers, and why is there no obvious way to reverse it? -- Can [Browning](people/edward-browning.md)'s near-complete godhood ritual be stopped before he uses more crystal? +- Can [Browning](people/everard-browning.md)'s near-complete godhood ritual be stopped before he uses more crystal? - Where exactly are Cardinal in the Brass dome and [Rubyeye](people/brutor-ruby-eye.md) in the far-airwise dwarven loop? - What are Bluescale's truth-currency rules and location secrecy protecting? - Where are the red dragons or dragonborn Ember seeks, and why does Eliana smell of elf? diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/everard-browning.md similarity index 93% rename from data/6-wiki/people/edward-browning.md rename to data/6-wiki/people/everard-browning.md index 6bba03f..894ab2d 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/everard-browning.md @@ -1,9 +1,9 @@ --- -title: Edward Browning +title: Everard Browning type: person aliases: - Browning - - Everard Browning + - Edward Browning - Everard first_seen: day-23 last_updated: day-56 @@ -21,16 +21,16 @@ sources: - data/4-days-cleaned/day-56.md --- -# Edward Browning +# Everard Browning ## Summary -Edward Browning, usually called Browning, is an ancient mage or engineer tied to automations, Grand Towers, the dome, laboratories, and hidden technical systems. +Everard Browning, usually called Browning, is an ancient mage or engineer tied to automations, Grand Towers, the dome, laboratories, and hidden technical systems. ## Known Details - Day 23 names Browning among the figures commemorated in the desert laboratory statue and later in paintings from 314 BD. -- The desert laboratory had automation construction manuals by Edward Browning, and the kitchen was said to have been made by Cardonal and Browning. +- The desert laboratory had automation construction manuals by Everard Browning, and the kitchen was said to have been made by Cardonal and Browning. - Browning allegedly spread the word that he died of old age so magisters and Justiciars could act as his proxy. - Day 28 connects Browning and Ennui to something beneath Grand Towers, possibly an advance in dome technology or a power source for the workshop. - Day 30 places Browning's lab near Craters Edge and records that he bargained to rid fishes from the Barrier in return for a peace treaty. diff --git a/data/6-wiki/people/geldrin.md b/data/6-wiki/people/geldrin.md index c124037..6b7052d 100644 --- a/data/6-wiki/people/geldrin.md +++ b/data/6-wiki/people/geldrin.md @@ -35,7 +35,7 @@ Geldrin, also called Geldrin the Mighty, is a player character played by Shaun. ## Related Entries - [Bug Hunter](bug-hunter.md) -- [Edward Browning](edward-browning.md) +- [Everard Browning](everard-browning.md) - [Ennuyé](ennuyé.md) - [Peridita](peridita.md) - [Azar Nuri](azar-nuri.md) diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 2002fc5..3dd546e 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -41,7 +41,7 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) -- [Edward Browning](edward-browning.md) +- [Everard Browning](everard-browning.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index ceb68d1..a910939 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -13,8 +13,8 @@ sources: | Provista | Possible source of Eliana somehow knowing Lady Elissa Hartwall played the flute. | Rollup. | | Avalina | Portrait subject; diary apparently revealed through makeup; tied to daughters, promises, forced mate, and Council of Gold. | Rollup and [Open Threads](../open-threads.md). | | Corundum, Argea?, Cetiosa | Portrait or missing-portrait names in the throne room. | Rollup; uncertainty preserved. | -| Mr Boorning | Entered after Avalina left and departed with a key. | Rollup. | -| Everard | Unknown addressee in runes reading `help you Everard`. | Rollup. | +| Mr Browning | Entered after Avalina left and departed with a key. | Rollup. | +| Everard | Unknown addressee in runes reading `Fuck you Everard`. | Rollup. | | Uncle Leeg, Daddle, Mum, stupid cat, poopoo head | Labels on folded papers in the rose-field tea set. | Rollup / inscription clue. | | Hannah Joy | Enis's erased wife; Day 47 clarifies Enis sacrificed her so Joy could live, but Joy could not exist if Hannah did not. | Existing Hannah thread; rollup and [Joy](joy.md). | | Bellborn? | Possible identification of large men around a cracked burning bell on a stone door. | Rollup; uncertain. | diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index 4fa3a8c..774b404 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -42,7 +42,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Numbhotall / Scrambleduck / Nambodall: uncertain name variants for the figure who smashed a stick on the floor, cast a spell, and was associated with a locating duck. - Older human man, robed figure, silver dragonborn, backpack of scrolls, floating book, and gnome with a wooden shield bearing a golden duck: present around Lot 35. - Laura: won the bracelet of locating for 101 gp. -- Skutey Galvin: name linked to Browning and wanted for impersonating a Justicar; not merged with Edward Browning without confirmation. +- Skutey Galvin: name linked to Browning and wanted for impersonating a Justicar; not merged with Everard Browning without confirmation. - Constantine Harthwall: false name Eliana gave to the Justicar. - Wroth: called by Xinquiss to help hide the shield crystal. - Barrett: returned with the militia-house prisoner roster. diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md index 04f8e95..2ee5d1d 100644 --- a/data/6-wiki/people/wrath.md +++ b/data/6-wiki/people/wrath.md @@ -32,7 +32,7 @@ Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pa - [Brutor Ruby Eye](brutor-ruby-eye.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) -- [Edward Browning](edward-browning.md) +- [Everard Browning](everard-browning.md) - [Excellences](../concepts/excellences.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) diff --git a/data/6-wiki/places/desert-laboratory.md b/data/6-wiki/places/desert-laboratory.md index 85d7090..ef66a13 100644 --- a/data/6-wiki/places/desert-laboratory.md +++ b/data/6-wiki/places/desert-laboratory.md @@ -26,7 +26,7 @@ Cardonald's desert laboratory is an ancient automation and sentient-item site ti - Rubyeye had visited 47 times, last around 908 years earlier, and requested a book copy after viewing it at Aquaria. - The site contained white roses, art and statues of Hephaestos's defeat, portraits of Enwi, Joy, Browning, Rubyeye, Heurhall, and a sphinx, and the note `Victorious but too late it was still the Dunewand`. - Behind Garadwal's picture was a golden band with a smashed ruby resembling Eno's ring, possibly sentient or hurt. -- The library contained Edward Browning automation manuals and Cardonal's Celestial `Instructions for creating sentient jewellery`; sentient items required a soul. +- The library contained Everard Browning automation manuals and Cardonal's Celestial `Instructions for creating sentient jewellery`; sentient items required a soul. - The laboratory held practice enchanted items and a copper astrolabe with a red gem through which Cardonal spoke after 907 years. - Cardonal provided or could provide teleport-circle codes for prisons, labs, and Grand Towers levels, including factory, control room, and meeting level. - Later Cardenald and Rubyeye returned to Cardenald's lab to study and gather supplies. diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md index 89c564e..d620d98 100644 --- a/data/6-wiki/places/grand-towers.md +++ b/data/6-wiki/places/grand-towers.md @@ -45,7 +45,7 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - [Barrier](../concepts/barrier.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) -- [Edward Browning](../people/edward-browning.md) +- [Everard Browning](../people/everard-browning.md) - [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index f516d07..338e099 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -39,7 +39,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an ## Related Entries - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) -- [Edward Browning](../people/edward-browning.md) +- [Everard Browning](../people/everard-browning.md) - [Valententhide / Valentenhule](../people/valententhide.md) - [Noxia](../people/noxia.md) - [Void Spheres](../items/void-spheres.md) diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 2862cff..0afa3b2 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -74,22 +74,22 @@ sources: - `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). - `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). -- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Silver](people/silver.md), [Ennuyé](people/ennuyé.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Silver](people/silver.md), [Ennuyé](people/ennuyé.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-27.md`: [Dunensend](places/dunensend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-28.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-28.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). - `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Everard Browning](people/everard-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Everard Browning](people/everard-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Everard Browning](people/everard-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Everard Browning](people/everard-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). - `data/4-days-cleaned/day-48.md`: [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). @@ -97,7 +97,7 @@ sources: - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Everard Browning](people/everard-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 20b0717..c6473c4 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -99,5 +99,5 @@ sources: - `day-53`: Bridget sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. - `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. - `day-55`: The party fights through Magstein / Grimcrag, learns Merocole has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. -- `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become Envy, confronts Justicars and [Edward Browning](people/edward-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. +- `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become Envy, confronts Justicars and [Everard Browning](people/everard-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. - `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tresmon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Lady Elissa Hartwall identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. -
3e2c4e4Duncan-Dunnanby Laura Mostert
data/2-pages/75.txt | 2 +- data/2-pages/78.txt | 4 ++-- data/2-pages/82.txt | 2 +- data/3-days/day-23.md | 6 +++--- data/3-days/day-25.md | 2 +- data/4-days-cleaned/day-23.md | 8 ++++---- data/4-days-cleaned/day-25.md | 6 +++--- data/6-wiki/open-threads.md | 2 +- data/6-wiki/people/garadwal.md | 4 ++-- data/6-wiki/people/minor-figures-days-23-31.md | 2 +- data/6-wiki/people/peridita.md | 2 +- 11 files changed, 20 insertions(+), 20 deletions(-)Show diff
diff --git a/data/2-pages/75.txt b/data/2-pages/75.txt index a591f38..8bddb59 100644 --- a/data/2-pages/75.txt +++ b/data/2-pages/75.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9736.jpg Transcription: 29 yrs BC, Hephaestos formed an army. -Rubodueul called for aid friend of Duncan people +Rubodueul called for aid friend of Dunnen people 2 years later he returned with mages & defeated Hephaestos. lamented not helping Gardolwal in his revenge diff --git a/data/2-pages/78.txt b/data/2-pages/78.txt index 39647bb..4903128 100644 --- a/data/2-pages/78.txt +++ b/data/2-pages/78.txt @@ -14,8 +14,8 @@ Dirk manages to throw her into the barrier & destroys the Soul. Cardonal then ta "Acore Iceland" - The Ancient One was her friend who tried to save her. 13:00 Enwi's Apprentice seemed to be the end of Garadwal's Sanity. -Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Duncan people. -leader of Duncan People. +Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Dunnen people. +leader of Dunnen people. Alliance with the gods for the barrier to entrap the other "gods". Dragon crashing into grand towers was enough to weaken the prisons enough for Garadwal to escape diff --git a/data/2-pages/82.txt b/data/2-pages/82.txt index c7055e3..3958fb0 100644 --- a/data/2-pages/82.txt +++ b/data/2-pages/82.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9743.jpg Transcription: One stands "The mother of many & the mother they plot" Peridita -The mother? Duncan's mage? +The mother? Dunnen's mage? Dragon full names - Infestus bane of multitude, slayer of Ruby eye (Black), father of the veridican. diff --git a/data/3-days/day-23.md b/data/3-days/day-23.md index 631f07e..ac66a29 100644 --- a/data/3-days/day-23.md +++ b/data/3-days/day-23.md @@ -224,7 +224,7 @@ Cardonal ## Page 75 29 yrs BC, Hephaestos formed an army. -Rubodueul called for aid friend of Duncan people +Rubodueul called for aid friend of Dunnen people 2 years later he returned with mages & defeated Hephaestos. lamented not helping Gardolwal in his revenge @@ -342,8 +342,8 @@ Dirk manages to throw her into the barrier & destroys the Soul. Cardonal then ta "Acore Iceland" - The Ancient One was her friend who tried to save her. 13:00 Enwi's Apprentice seemed to be the end of Garadwal's Sanity. -Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Duncan people. -leader of Duncan People. +Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Dunnen people. +leader of Dunnen people. Alliance with the gods for the barrier to entrap the other "gods". Dragon crashing into grand towers was enough to weaken the prisons enough for Garadwal to escape diff --git a/data/3-days/day-25.md b/data/3-days/day-25.md index b8d6b15..9e29641 100644 --- a/data/3-days/day-25.md +++ b/data/3-days/day-25.md @@ -38,7 +38,7 @@ White Dragonborn takes us to the Inn. ## Page 82 One stands "The mother of many & the mother they plot" Peridita -The mother? Duncan's mage? +The mother? Dunnen's mage? Dragon full names - Infestus bane of multitude, slayer of Ruby eye (Black), father of the veridican. diff --git a/data/4-days-cleaned/day-23.md b/data/4-days-cleaned/day-23.md index 21e215d..b4ba17c 100644 --- a/data/4-days-cleaned/day-23.md +++ b/data/4-days-cleaned/day-23.md @@ -42,7 +42,7 @@ The party was served wine from 37 BD, Before Dome. Silver said the mistress died On the tour, a room opposite contained flower beds with well-pruned white roses, disposed of with fire at a different temperature, and insects in the dirt. Down the corridor, a door on the left opened into a room with a huge silver statue of a dragon, a sphinx, and humans and others at the base with a dead eagle. The inscription or note read: "Victorious but too late it was still the Dunewand." The figures included the human Browning, the elf Cardonal, the dwarf Rubyeye, the halfling Enwi, the dragon Muttowh, and the sphinx Garadwal. The statue commemorated the death of Hephaestos, exalted of air. The names Valianth and Cardonal were boxed in the notes. -The history recorded there said that in 29 BC Hephaestos formed an army. Rubodueul, a friend of the Duncan people, called for aid. Two years later he returned with mages and defeated Hephaestos. He lamented not helping Gardolwal in his revenge when he learned that a void lieutenant had escaped, and he sought revenge. The Brass City fell and drove the tabaxi out. He had been a friend of the mages, but they trapped him and he became friends with another mage. +The history recorded there said that in 29 BC Hephaestos formed an army. Rubodueul, a friend of the Dunnen people, called for aid. Two years later he returned with mages and defeated Hephaestos. He lamented not helping Gardolwal in his revenge when he learned that a void lieutenant had escaped, and he sought revenge. The Brass City fell and drove the tabaxi out. He had been a friend of the mages, but they trapped him and he became friends with another mage. The elven art gallery was a marble room dominated by statues of very muscular elves, like the Elementarium, and pictures of pale skin. Aranthium was named as the main architect of the Great Tower. Elementarium was a great scholar, slain by Excellence or entombed for 400 years, worshipped darker gods, and died in 741 BD. Others shown were local folk heroes. A picture showed Aranthium in front of the Great Tower. Browning died in 44 AD, but Rubyeye and Cardonal had talked about him as though he were alive. The mistress had defensive automations that could teleport in from the factory through a teleport circle if needed. @@ -62,7 +62,7 @@ Inside the laboratory, Gardwal armour was piled as though to remind the mistress Silver's defence mechanisms were extensive. The voice fell silent when told that Gardwel had escaped. She held the barrier, constructs, and Silver in check in all ways. A barrier shock might help remove Silver from the body. The party planned to trick Silver into opening the door. Silver tried something, was propelled across the room into shelving, slumped against the wall, and the lights in her eyes went out. When the party tried to take her to the barrier, Cardonal said she was still active. She woke up by the portal room. Dirk threw her into the barrier, destroying the soul, and Cardonal then took over the construct. -At 13:00, "Acore Iceland" was recorded. The Ancient One was Cardonal's friend and had tried to save her. Enwi's apprentice seemed to have been the end of Garadwal's sanity. Gardwal had been locked up after consuming the void's lieutenant and slaughtering the rest of the Duncan people. He was the leader of the Duncan people. An alliance with the gods had created the barrier to entrap the other "gods." The dragon crashing into Grand Towers had been enough to weaken the prisons so Garadwal could escape. +At 13:00, "Acore Iceland" was recorded. The Ancient One was Cardonal's friend and had tried to save her. Enwi's apprentice seemed to have been the end of Garadwal's sanity. Gardwal had been locked up after consuming the void's lieutenant and slaughtering the rest of the Dunnen people. He was the leader of the Dunnen people. An alliance with the gods had created the barrier to entrap the other "gods." The dragon crashing into Grand Towers had been enough to weaken the prisons so Garadwal could escape. Cardonal could provide codes for other teleport circles. There were seven prisons, five labs, Browning's inaccessible the last time, and three Grand Towers levels: factory, control room, and meeting level. Other sites included the gate in the mountains earthwise of Coalment Falls, Coppermines at Arthur, the impact site earthwise of Goldenswell, the menagerie at Riversmeet, the Goliath city, and one location close to each pylon. An additional dwarven city had disappeared. Rubyeye had a connection to both the missing dwarf city and the missing Goliath city. @@ -82,7 +82,7 @@ Iceland needed the party's help with the prisons. The shimmery one required taki Freeport, the Castle, the Drunken Duck, the Jewelry District, Baytail Accord, Grand Towers, the Underbelly, the Brass City, the desert laboratory, Aquaria, the Great Tower, the factory, the music room, the laboratory, the portal room, the barrier, Coalment Falls, Arthur, Goldenswell, Riversmeet, the Goliath city, Dunengend, Provista Town Hall, and Iceland were all mentioned. -Alana, the merfolk, Guardseen, the Huntmaster, Princess Aquunea, Salt elementals, The Basilisk, the Baroness, the sergeant with the necklace, Valenth Caerdunel, Arxion, the Little Finger, tabaxi, automations, Silver, the mistress, Rubyeye, Cardonal, Browning, Enwi, Joy, Heurhall, Garadwal/Gardwal/Gardolwal/Gardwel, Muttowh, Hephaestos, Rubodueul, the Duncan people, Aranthium, Elementarium, Excellence, Dirk, Eliana, Geldrin, Noxus, the Ancient One, Enwi's apprentice, the gods, Salinas, Limus Vita, Iceblus, Arasarath, Merocole, Papa I Meurina, Valententhidle, Galetea, Inqueshwash, veridican dragonborn, the Perodot princess, magisters, Justiciars, Explorer, and Iceland were all mentioned. +Alana, the merfolk, Guardseen, the Huntmaster, Princess Aquunea, Salt elementals, The Basilisk, the Baroness, the sergeant with the necklace, Valenth Caerdunel, Arxion, the Little Finger, tabaxi, automations, Silver, the mistress, Rubyeye, Cardonal, Browning, Enwi, Joy, Heurhall, Garadwal/Gardwal/Gardolwal/Gardwel, Muttowh, Hephaestos, Rubodueul, the Dunnen people, Aranthium, Elementarium, Excellence, Dirk, Eliana, Geldrin, Noxus, the Ancient One, Enwi's apprentice, the gods, Salinas, Limus Vita, Iceblus, Arasarath, Merocole, Papa I Meurina, Valententhidle, Galetea, Inqueshwash, veridican dragonborn, the Perodot princess, magisters, Justiciars, Explorer, and Iceland were all mentioned. # Items, Rewards, and Resources @@ -98,4 +98,4 @@ The shared dreams over Freeport contradicted one another and may have come from The desert laboratory established that Silver, Cardonal, the mistress, Rubyeye, Browning, Enwi, the automations, and the sentient rings or jewellery are deeply connected. The exact identity of the voice in the red gem, the phrase about the necklace surviving her friend, the role of Noxus in the building, the threat implied by "I'm coming to get you," and Silver's shifting control remain uncertain. Sentient items requiring souls, Silver as a practice vessel, and Cardonal taking over the construct are major open consequences. -Garadwal's escape appears tied to the dragon crashing into Grand Towers weakening the prisons. Garadwal consumed a void lieutenant, killed Duncan people, and may not know the other prison locations. The seven prisons, five labs, missing dwarven and Goliath cities, Rubyeye's connections, Elemental Princes, prison-status systems, and Grand Towers control levels remain central campaign threads. Iceland's visions point toward threats at Ice's prison, the shimmery one, the black spider thing, a two-headed green dragon, the pirate, Excellence, and Browning still in the tower. +Garadwal's escape appears tied to the dragon crashing into Grand Towers weakening the prisons. Garadwal consumed a void lieutenant, killed Dunnen people, and may not know the other prison locations. The seven prisons, five labs, missing dwarven and Goliath cities, Rubyeye's connections, Elemental Princes, prison-status systems, and Grand Towers control levels remain central campaign threads. Iceland's visions point toward threats at Ice's prison, the shimmery one, the black spider thing, a two-headed green dragon, the pirate, Excellence, and Browning still in the tower. diff --git a/data/4-days-cleaned/day-25.md b/data/4-days-cleaned/day-25.md index 44ad00c..a35e9ad 100644 --- a/data/4-days-cleaned/day-25.md +++ b/data/4-days-cleaned/day-25.md @@ -14,7 +14,7 @@ Day 25 was Friday, 10th Tan 101, with 9 days to Arrynoon and 5 days to Autumn. T They approached Rimewatch, an outpost around the pylon, and then headed to the town. The town was in a much worse state than when they had left. A white dragonborn took them to the inn. -The party learned that 20 years ago someone briefly woke up. The notes record a warning or prophecy involving dragons breathing the Terror of the Sands out of her prison: "They plot again there pair they plot again" and "And before the black one was cast out they plot again". One person stood and said, "The mother of many & the mother they plot". Peridita was identified in connection with this, though the notes also ask whether "the mother" could be Duncan's mage. +The party learned that 20 years ago someone briefly woke up. The notes record a warning or prophecy involving dragons breathing the Terror of the Sands out of her prison: "They plot again there pair they plot again" and "And before the black one was cast out they plot again". One person stood and said, "The mother of many & the mother they plot". Peridita was identified in connection with this, though the notes also ask whether "the mother" could be Dunnen's mage. Dragon full names and titles were recorded. Infestus was "bane of multitude," "slayer of Ruby eye," black, and father of the veridican. Peridita was "The Choking Death," "The whispers in the dark," and "Mother of many," and was green. Calemnis Bereth, also written as Girth or literal green again, was wife of death and veridican. @@ -28,7 +28,7 @@ When shown Salina's runes, the party learned that they needed to go back to Enwi Coalment, Snowsorrow, Rimewatch, the pylon, the town, the inn, the Ice prison, the Howling Tombs, Grand Tower, Rubyeye's lab, Enwi's lab, Enwi's basement, the control room, and Arasarath's prison were all mentioned. -Ice Fang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Duncan's mage, Garadwal, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadwal's people, Salina, Enwi, and three automations were all mentioned. +Ice Fang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Dunnen's mage, Garadwal, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadwal's people, Salina, Enwi, and three automations were all mentioned. # Items, Rewards, and Resources @@ -36,6 +36,6 @@ The party gained winter clothes that provide advantage against severe exposure. # Clues, Mysteries, and Open Threads -The warning from 20 years ago points to dragons plotting again, dragons breathing the Terror of the Sands out of her prison, and a connection to the black one being cast out. Peridita may be the "mother of many" and "mother" in the warning, though the notes preserve uncertainty over whether the mother could instead be Duncan's mage. +The warning from 20 years ago points to dragons plotting again, dragons breathing the Terror of the Sands out of her prison, and a connection to the black one being cast out. Peridita may be the "mother of many" and "mother" in the warning, though the notes preserve uncertainty over whether the mother could instead be Dunnen's mage. The named dragons and titles connect Infestus, Peridita, Calemnis Bereth/Girth, Rubyeye, the veridican, and Garadwal to two plots: removing certain cities and breaking out Garadwal. The Howling Tombs appear to be the source of the storms. Enwi's tapping of life force from his prison has weakened the replicated prison system across all prisons, making Enwi's lab, the Grand Tower control centre, Rubyeye's readout, and the automations in Enwi's basement urgent open threads. diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 9cf88f6..9cd486e 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -74,7 +74,7 @@ sources: - What did the cold dream voice mean by `where is he I know you hide him`, and why did a white dragonscale fall from the party room icicle? - Did the Ruby Eye riddle/layout mechanism have further consequences after the hidden laboratory was opened? - Who or what sent the white powder visions of basilisk, salamanders, Arabic writing, white dragon, black void, cold blue eyes, and contradictory Freeport dreams? -- What is the exact relationship between [Garadwal](people/garadwal.md), the Duncan people, the void lieutenant he consumed, Enwi's apprentice, and the dragon crash that weakened the prisons? +- What is the exact relationship between [Garadwal](people/garadwal.md), the Dunnen people, the void lieutenant he consumed, Enwi's apprentice, and the dragon crash that weakened the prisons? - Which of the seven named prisons, five labs, Grand Towers levels, Goliath city, missing dwarf city, Goldenswell impact site, Riversmeet menagerie, and pylon-adjacent sites are still intact or compromised? - Did [Ennuyé](people/ennuyé.md)'s life-force siphoning replicate across all prisons by design, sabotage, or later misuse, and can it be reversed without killing prisoners like Limnuvela? - Who gave Anrasurall the Ice prison runes, what was he trying to free at [Rimewatch](places/rimewatch-ice-prison.md), and what are the hollow rocks or possible eggs near the burst entrance? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 1309082..265bb84 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -48,7 +48,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Elementals later described Garadwal as their master and said he was associated with sand, earth, and fire. - He was said to have been buried north of Aegis-on-Sands and imprisoned in the Prison of the Sands. - Wrath/Kolin was asked to search for Garadwal at Black Scale. -- Cardonal's laboratory lore says Garadwal was leader of the Duncan people, consumed a void lieutenant, slaughtered the rest of the Duncan people, and was locked up after the event. +- Cardonal's laboratory lore says Garadwal was leader of the Dunnen people, consumed a void lieutenant, slaughtered the rest of the Dunnen people, and was locked up after the event. - The dragon crash into Grand Towers was said to have weakened the prisons enough for Garadwal to escape. - Infestus appeared in a dream sending Garadwal through a portal with a coin; another dream showed abnormal dragons near Garadwal's prison and a void voice asking `where is he I know you know`. - Garadwal moved through Blackscale, returned to the dome, and attacked Baytail Accord before teleporting away. @@ -78,7 +78,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-14`: Elementals describe Garadwal as their master and connect him to elemental imprisonment. - `day-15`: Brutor's lore frames Garadwal as a void prisoner whose escape weakens the Barrier. - `day-21`: Cold dreams, void language, and white dragonscale clues may connect back to Garadwal. -- `day-23`: The desert laboratory identifies many Garadwal variants, his Duncan people history, void lieutenant connection, prison network, and possible escape mechanism. +- `day-23`: The desert laboratory identifies many Garadwal variants, his Dunnen people history, void lieutenant connection, prison network, and possible escape mechanism. - `day-25`: Rimewatch warnings describe dragons plotting to breathe the Terror of the Sands out of her prison. - `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadwal moving actively. - `day-29`: Excellence says he protected the vultures after Gardwal failed, and his brother was apparently looking for him. diff --git a/data/6-wiki/people/minor-figures-days-23-31.md b/data/6-wiki/people/minor-figures-days-23-31.md index ef606b3..44edf50 100644 --- a/data/6-wiki/people/minor-figures-days-23-31.md +++ b/data/6-wiki/people/minor-figures-days-23-31.md @@ -23,7 +23,7 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch - Princess Aquunea: merfolk or Pact nobility associated with the empire beyond the Barrier; also appears as Aquena/Aquana in later Pact context. - Muttowh: dragon figure named on the desert laboratory statue commemorating Hephaestos's death. - Hephaestos: exalted of air whose death was commemorated by the desert laboratory statue. -- Rubodueul: friend of the Duncan people who called for aid during the Hephaestos history. +- Rubodueul: friend of the Dunnen people who called for aid during the Hephaestos history. - Aranthium: named as the main architect of the Great Tower. - Elementarium: great scholar shown in the elven art gallery, slain by Excellence or entombed for 400 years, worshipped darker gods, and died in 741 BD. - Heurhall: human figure in a 314 BD dining-room painting; Iceland later said he had tried to help Dirk's people with Heurhall. diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 8e7e430..a9bca7c 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -54,7 +54,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T ## Open Questions -- Is Peridita the `mother` from the old warning, or could that refer to Duncan's mage? +- Is Peridita the `mother` from the old warning, or could that refer to Dunnen's mage? - What is her exact relationship to Lortesh / Kortesh Gravesings and the Green Dragons? - Is the laughing female dragon / Peridot Queen vision connected to Peridita, or is it a separate dragon figure? - Are Perodita, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? -
b7fbab7Normalize Snowsorrow references and Bynx's sister noteby Laura Mostert
data/2-pages/166.txt | 2 +- data/2-pages/175.txt | 4 ++-- data/2-pages/177.txt | 2 +- data/2-pages/203.txt | 4 ++-- data/2-pages/209.txt | 2 +- data/2-pages/221.txt | 2 +- data/2-pages/240.txt | 4 ++-- data/2-pages/326.txt | 2 +- data/2-pages/62.txt | 2 +- data/2-pages/63.txt | 2 +- data/3-days/day-20.md | 4 ++-- data/3-days/day-41.md | 2 +- data/3-days/day-42.md | 6 +++--- data/3-days/day-44.md | 4 ++-- data/3-days/day-46.md | 4 ++-- data/3-days/day-47.md | 4 ++-- data/4-days-cleaned/day-20.md | 8 ++++---- data/4-days-cleaned/day-25.md | 4 ++-- data/4-days-cleaned/day-36.md | 4 ++-- data/4-days-cleaned/day-41.md | 8 ++++---- data/4-days-cleaned/day-42.md | 14 +++++++------- data/4-days-cleaned/day-43.md | 14 +++++++------- data/4-days-cleaned/day-44.md | 10 +++++----- data/4-days-cleaned/day-46.md | 12 ++++++------ data/4-days-cleaned/day-47.md | 4 ++-- data/6-wiki/aliases.md | 5 +++-- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/day-47-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- .../clues/known-passwords-and-inscriptions.md | 2 +- data/6-wiki/concepts/elemental-prisons.md | 2 +- data/6-wiki/index.md | 3 ++- data/6-wiki/items/minor-items-day-46.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 2 +- data/6-wiki/open-threads.md | 4 ++-- data/6-wiki/people/bynx.md | 2 +- data/6-wiki/people/dotharl.md | 2 +- data/6-wiki/people/icefang.md | 10 +++++----- data/6-wiki/people/status.md | 6 +++--- data/6-wiki/people/the-basilisk.md | 2 +- data/6-wiki/places/bleakstorm.md | 2 +- data/6-wiki/places/fishtailedge.md | 21 +++++++++++++++++++++ data/6-wiki/places/minor-places-day-46.md | 4 ++-- data/6-wiki/places/minor-places-days-36-40-41.md | 4 ++-- data/6-wiki/places/minor-places-days-42-44.md | 2 +- data/6-wiki/places/minor-places-days-48-52.md | 2 +- data/6-wiki/places/provista.md | 2 +- data/6-wiki/places/rimewatch-ice-prison.md | 2 +- data/6-wiki/places/sunsoreen.md | 18 ++++++++++++------ data/6-wiki/sources.md | 2 +- 50 files changed, 132 insertions(+), 103 deletions(-)Show diff
diff --git a/data/2-pages/166.txt b/data/2-pages/166.txt index a28351c..d50437d 100644 --- a/data/2-pages/166.txt +++ b/data/2-pages/166.txt @@ -3,7 +3,7 @@ Source: data/1-source/IMG_9832.jpg Transcription: Galdenseell still not providing aide. -Lost all contact with Snow Sorrow. Perens going missing. +Lost all contact with Snowsorrow. Perens going missing. Contracted by an interested party (who wishes to lend her aid) (Peridot Queen) out to get things for herself. So she will help until something better comes along. diff --git a/data/2-pages/175.txt b/data/2-pages/175.txt index b2c559c..193beee 100644 --- a/data/2-pages/175.txt +++ b/data/2-pages/175.txt @@ -22,8 +22,8 @@ have we seen her boy - doesn't know why she is here - ate about 1 week ago - let her out & give food - find a maggot in her ear. remove it she uncontrollably cries. remembers everything - Copper -Dragon - home is Snow Screen - used to play with -King & queen's son in Snow Screen. (Now Snow Sorrow) +Dragon - home is Snowsorrow - used to play with +King & queen's son in Snowsorrow. (Now Snowsorrow) [Ice fang] (Atlih) - Gold Dragons? diff --git a/data/2-pages/177.txt b/data/2-pages/177.txt index b52e4bf..a5e5690 100644 --- a/data/2-pages/177.txt +++ b/data/2-pages/177.txt @@ -2,7 +2,7 @@ Page: 177 Source: data/1-source/IMG_9844.jpg Transcription: -Geldrin places Snow Sorrow coin onto Altabre's offering bowl +Geldrin places Snowsorrow coin onto Altabre's offering bowl white creature comes in & destroys the city female Sphynx comes out & lays a hand on its head & they both disappear. she disappears in sparkles, white dragon diff --git a/data/2-pages/203.txt b/data/2-pages/203.txt index 34a1d08..9cdbfef 100644 --- a/data/2-pages/203.txt +++ b/data/2-pages/203.txt @@ -5,7 +5,7 @@ Transcription: Go to Mr Moreley's Classroom. Via 2nd year common. Something leaves through the other door to the common room when we get there. -Mr Moreley's room is fully painted as a mural of Snowscreen. +Mr Moreley's room is fully painted as a mural of Snowsorrow. Large desk, pedestal with a cushion & sphere of glass on it, smoke inside. Powerful defense mechanism if don't have the password. @@ -15,7 +15,7 @@ Dirk throws javelin at the box - doesn't do anything. One of each colour dragon head on the mural is a button - work out the pattern & it opens the gates -of Snowscreen to reveal an alcove containing a book +of Snowsorrow to reveal an alcove containing a book in draconic - for Rubyeye. Left somewhere only Rubyeye will find it. Going to try to stop what they are doing here - used diff --git a/data/2-pages/209.txt b/data/2-pages/209.txt index 938267b..a19f79d 100644 --- a/data/2-pages/209.txt +++ b/data/2-pages/209.txt @@ -32,4 +32,4 @@ classroom. Novelty from home - go somewhere to buy shit gifts. Go to the shop - very quiet on the way. Persuade the door to open - socks & trinkets - illusion of a gnome -shopkeeper. Ask for a snowglobe from Snowscreen. +shopkeeper. Ask for a snowglobe from Snowsorrow. diff --git a/data/2-pages/221.txt b/data/2-pages/221.txt index 68a9f11..8168ed4 100644 --- a/data/2-pages/221.txt +++ b/data/2-pages/221.txt @@ -30,7 +30,7 @@ new identity. Have some leads: Hartwall artifact was put in one of the prisons. Hartwall meant to be looking after mind effects, maybe -stopped her from remembering. Somewhere near Snowscreen. +stopped her from remembering. Somewhere near Snowsorrow. No team currently checking it out. Some people near Pinesprings but some adventurers killed them all. Brothers - one disappeared - the other controlling an diff --git a/data/2-pages/240.txt b/data/2-pages/240.txt index 0cc1a74..fe16268 100644 --- a/data/2-pages/240.txt +++ b/data/2-pages/240.txt @@ -4,9 +4,9 @@ Source: data/1-source/IMG_9908.jpg Transcription: Suggests we go back with him and he will show us round, and we can decide if he can have the scroll. Take the cloak with me. -Go to Snowscreen. Archway has different runes. Building is enormous. Grass and woodlands below. Warm patch, blackout time, but it is midday. Tri-moon even though it is not time for the Tri-moon. +Go to Snowsorrow. Archway has different runes. Building is enormous. Grass and woodlands below. Warm patch, blackout time, but it is midday. Tri-moon even though it is not time for the Tri-moon. -Copper dragon lands nearby, goes into the building. City is now called Sunsoreen. Door is carved with a sphynx female face. Bynx's mother. +Copper dragon lands nearby, goes into the building. City is now called Sunsoreen. Door is carved with a sphynx female face. Bynx's sister. Takes us inside the palace. Takes us to the council first. Doorway to the council is enormous and impressive, carved with white dragon and sphynx. City. diff --git a/data/2-pages/326.txt b/data/2-pages/326.txt index c2f6398..fc9c8b0 100644 --- a/data/2-pages/326.txt +++ b/data/2-pages/326.txt @@ -14,4 +14,4 @@ Teleport to Hathwall's lab. Door out of teleport room is blocked. Hear running d Head to the urn room. Door is open. Shuffling coming from the room. Pile of fabric in the corner: young 18-year-old woman, commoner clothes. I stealth over to get the dragon statue and get it without disturbing her. -My room: guy curled up in my bed asleep with red hair. Go into the room and wake him up, Jack. One of the dragons from Snow Sorrow, about 11 of them. +My room: guy curled up in my bed asleep with red hair. Go into the room and wake him up, Jack. One of the dragons from Snowsorrow, about 11 of them. diff --git a/data/2-pages/62.txt b/data/2-pages/62.txt index 343e360..c4d8ee3 100644 --- a/data/2-pages/62.txt +++ b/data/2-pages/62.txt @@ -26,7 +26,7 @@ Baroness [crossed out: Kavaliliere] - head of Freeport. No taxes for trade here Newspaper - Ancient takes flight - left his home for last 1,000 years - moving to Snow Sorrow + moving to Snowsorrow - fighting still goes on in the mountains near Highden - good taking a beating. - paper seems to be propaganda diff --git a/data/2-pages/63.txt b/data/2-pages/63.txt index 33b611d..493e376 100644 --- a/data/2-pages/63.txt +++ b/data/2-pages/63.txt @@ -27,7 +27,7 @@ Investigated the crater & found a old lab but unable to get in * Friends on the council meeting with the ancient -around Snow-sorrow. +around Snowsorrow. * azure-side - reported perodetta & spawn amassing in the area. diff --git a/data/3-days/day-20.md b/data/3-days/day-20.md index a727a48..212e016 100644 --- a/data/3-days/day-20.md +++ b/data/3-days/day-20.md @@ -75,7 +75,7 @@ Baroness [crossed out: Kavaliliere] - head of Freeport. No taxes for trade here Newspaper - Ancient takes flight - left his home for last 1,000 years - moving to Snow Sorrow + moving to Snowsorrow - fighting still goes on in the mountains near Highden - good taking a beating. - paper seems to be propaganda @@ -112,7 +112,7 @@ Investigated the crater & found a old lab but unable to get in * Friends on the council meeting with the ancient -around Snow-sorrow. +around Snowsorrow. * azure-side - reported perodetta & spawn amassing in the area. diff --git a/data/3-days/day-41.md b/data/3-days/day-41.md index 6ffde89..d94d782 100644 --- a/data/3-days/day-41.md +++ b/data/3-days/day-41.md @@ -168,7 +168,7 @@ making a new barrier around grand towers ## Page 166 Galdenseell still not providing aide. -Lost all contact with Snow Sorrow. Perens going missing. +Lost all contact with Snowsorrow. Perens going missing. Contracted by an interested party (who wishes to lend her aid) (Peridot Queen) out to get things for herself. So she will help until something better comes along. diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index a447377..ce3e283 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -452,8 +452,8 @@ have we seen her boy - doesn't know why she is here - ate about 1 week ago - let her out & give food - find a maggot in her ear. remove it she uncontrollably cries. remembers everything - Copper -Dragon - home is Snow Screen - used to play with -King & queen's son in Snow Screen. (Now Snow Sorrow) +Dragon - home is Snowsorrow - used to play with +King & queen's son in Snowsorrow. (Now Snowsorrow) [Ice fang] (Atlih) - Gold Dragons? @@ -518,7 +518,7 @@ to Altabre?) ## Page 177 -Geldrin places Snow Sorrow coin onto Altabre's offering bowl +Geldrin places Snowsorrow coin onto Altabre's offering bowl white creature comes in & destroys the city female Sphynx comes out & lays a hand on its head & they both disappear. she disappears in sparkles, white dragon diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md index b9682f0..fc1f6cd 100644 --- a/data/3-days/day-44.md +++ b/data/3-days/day-44.md @@ -503,7 +503,7 @@ Emeraldus line - Goliath's killed remaining 2 green dragons Go to Mr Moreley's Classroom. Via 2nd year common. Something leaves through the other door to the common room when we get there. -Mr Moreley's room is fully painted as a mural of Snowscreen. +Mr Moreley's room is fully painted as a mural of Snowsorrow. Large desk, pedestal with a cushion & sphere of glass on it, smoke inside. Powerful defense mechanism if don't have the password. @@ -513,7 +513,7 @@ Dirk throws javelin at the box - doesn't do anything. One of each colour dragon head on the mural is a button - work out the pattern & it opens the gates -of Snowscreen to reveal an alcove containing a book +of Snowsorrow to reveal an alcove containing a book in draconic - for Rubyeye. Left somewhere only Rubyeye will find it. Going to try to stop what they are doing here - used diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md index 3fadabb..328a512 100644 --- a/data/3-days/day-46.md +++ b/data/3-days/day-46.md @@ -229,7 +229,7 @@ classroom. Novelty from home - go somewhere to buy shit gifts. Go to the shop - very quiet on the way. Persuade the door to open - socks & trinkets - illusion of a gnome -shopkeeper. Ask for a snowglobe from Snowscreen. +shopkeeper. Ask for a snowglobe from Snowsorrow. ## Page 210 @@ -697,7 +697,7 @@ new identity. Have some leads: Hartwall artifact was put in one of the prisons. Hartwall meant to be looking after mind effects, maybe -stopped her from remembering. Somewhere near Snowscreen. +stopped her from remembering. Somewhere near Snowsorrow. No team currently checking it out. Some people near Pinesprings but some adventurers killed them all. Brothers - one disappeared - the other controlling an diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index def82d8..1a5380d 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -436,9 +436,9 @@ Thought all the scrolls had gone with them. Disappeared because everything was c Suggests we go back with him and he will show us round, and we can decide if he can have the scroll. Take the cloak with me. -Go to Snowscreen. Archway has different runes. Building is enormous. Grass and woodlands below. Warm patch, blackout time, but it is midday. Tri-moon even though it is not time for the Tri-moon. +Go to Snowsorrow. Archway has different runes. Building is enormous. Grass and woodlands below. Warm patch, blackout time, but it is midday. Tri-moon even though it is not time for the Tri-moon. -Copper dragon lands nearby, goes into the building. City is now called Sunsoreen. Door is carved with a sphynx female face. Bynx's mother. +Copper dragon lands nearby, goes into the building. City is now called Sunsoreen. Door is carved with a sphynx female face. Bynx's sister. Takes us inside the palace. Takes us to the council first. Doorway to the council is enormous and impressive, carved with white dragon and sphynx. City. diff --git a/data/4-days-cleaned/day-20.md b/data/4-days-cleaned/day-20.md index 3e601ec..b18ab45 100644 --- a/data/4-days-cleaned/day-20.md +++ b/data/4-days-cleaned/day-20.md @@ -23,11 +23,11 @@ The party stayed in the barracks overnight. Dirk had a strange dream. In it, a g The party headed toward the ship. A merfolk named Guardfree said his mistress had been working on misdirection. Food was brought to the party's cabin, and the journey was luckily uneventful. Freeport appeared as an oddly busy, bustling city and a mishmash of styles. Kairibidius's ship was docked there. A quartermaster loaded the shipment onto the party's cart to take with them. -The Baroness, initially written then crossed out as [Kavaliliere], was the head of Freeport. Freeport had no taxes for trade. A local newspaper appeared to be propaganda. Its stories included "Ancient takes flight," reporting that an ancient had left his home for the first time in 1,000 years and was moving to Snow Sorrow; fighting continuing in the mountains near Highden, where the good side was taking a beating; and other slanted reports. Around 20:00 the party went shopping, including at Esmerelda's magic item shop. +The Baroness, initially written then crossed out as [Kavaliliere], was the head of Freeport. Freeport had no taxes for trade. A local newspaper appeared to be propaganda. Its stories included "Ancient takes flight," reporting that an ancient had left his home for the first time in 1,000 years and was moving to Snowsorrow; fighting continuing in the mountains near Highden, where the good side was taking a beating; and other slanted reports. Around 20:00 the party went shopping, including at Esmerelda's magic item shop. The party went to see Tiana at the Siren & Garter. She expected a group of 40 to help fight the Excellence. The Excellence were described as mutual, able to be slain, and as beings that delight in bossing mortals around. Tiana said the Baroness seemed good but let people do what they pleased. The Baroness could be random about which groups to dispose of. About a week earlier, she had disposed of a group involving bound elementals and gems, including arc and water. Another group had been selling archaeological items from the desert, involving a Tabaxi caravan, and she had seized the goods. -The party found the basilisks in a private room. They learned that Highden was being attacked by a fire Excellence, which had something against the elves. Someone had investigated the crater and found an old lab but had been unable to get in. Friends on the council were meeting with the ancient around Snow-sorrow. Azure-side had reported Perodetta and spawn amassing in the area. Arabella had been kidnapped again in a targeted attack, with faces removed. No forces were available, but Zinquiss would meet the party at the harbour with one other. The Baroness was considered a neutral party, fairly reclusive, and following her predecessors' ideas. There was speculation that she might be something similar to Lady Hathwall but not a dragon; the previous Baroness had been human. +The party found the basilisks in a private room. They learned that Highden was being attacked by a fire Excellence, which had something against the elves. Someone had investigated the crater and found an old lab but had been unable to get in. Friends on the council were meeting with the ancient around Snowsorrow. Azure-side had reported Perodetta and spawn amassing in the area. Arabella had been kidnapped again in a targeted attack, with faces removed. No forces were available, but Zinquiss would meet the party at the harbour with one other. The Baroness was considered a neutral party, fairly reclusive, and following her predecessors' ideas. There was speculation that she might be something similar to Lady Hathwall but not a dragon; the previous Baroness had been human. The party told the basilisks about the copper weapons and the paper trail showing Malcolm Jethnes and the Earl of Fairport's involvement in the shipment. They received a dagger from the basilisks: a Lesser Rift Blade, a dagger +1 with three charges. One charge can cast dimension door. Three charges can cast teleport, opening a portal for 5 seconds; the user thinks of the place to go, and the portal is big enough for a person. The blade recharges one charge per day. @@ -47,7 +47,7 @@ The party returned to Pirates Pearls Plundered. Guardfree said he would get his # People, Factions, and Places Mentioned -Freeport, Baytrail Accord, Seaward, Turisle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snow Sorrow or Snow-sorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, The Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. +Freeport, Baytrail Accord, Seaward, Turisle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snowsorrow or Snowsorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, The Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. # Items, Rewards, and Resources @@ -55,4 +55,4 @@ Important items and resources included the shipment from the Earl to Malcolm Jef # Clues, Mysteries, and Open Threads -The Sahuagin had Kiendra's scepter conch, one of only eight, and Kiendra was believed killed or lost. The six-armed creature from Day 19 was identified as An Excellence. The shipment tied the Earl of Fairshaws or Fairport to Malcolm Jeffries or Malcolm Jethnes and to boxes like those outside Seaward. Dirk's dream connected Rubyeye, a granite throne, a granite city, fire imagery, and possibly a dog. Kairibidius's ship was docked in Freeport. The newspaper may be propaganda, and its reports point to the ancient moving to Snow Sorrow, Highden losing battles, and wider instability. Highden was under attack by a fire Excellence hostile to elves. An old lab was found in a crater but could not be entered. Perodetta and spawn were amassing near Azure-side. Arabella was kidnapped again in a targeted attack involving removed faces. The Baroness's identity, predecessors, necklace, connection to Lady Hathwall, and Heartwall-like secrecy remain suspicious. Velenth Cardonald wanted to transfer herself into an object, echoing Ruby Eye's best friend wanting to craft herself into something and continue in that form. The lab may contain a diamond, Barrier emergency systems, a safe and circle code, and something else. A dragon may roost in the ruins of Dirk's old city. Ruby Eye's warning about getting something before she tries to get it is incomplete and unresolved. +The Sahuagin had Kiendra's scepter conch, one of only eight, and Kiendra was believed killed or lost. The six-armed creature from Day 19 was identified as An Excellence. The shipment tied the Earl of Fairshaws or Fairport to Malcolm Jeffries or Malcolm Jethnes and to boxes like those outside Seaward. Dirk's dream connected Rubyeye, a granite throne, a granite city, fire imagery, and possibly a dog. Kairibidius's ship was docked in Freeport. The newspaper may be propaganda, and its reports point to the ancient moving to Snowsorrow, Highden losing battles, and wider instability. Highden was under attack by a fire Excellence hostile to elves. An old lab was found in a crater but could not be entered. Perodetta and spawn were amassing near Azure-side. Arabella was kidnapped again in a targeted attack involving removed faces. The Baroness's identity, predecessors, necklace, connection to Lady Hathwall, and Heartwall-like secrecy remain suspicious. Velenth Cardonald wanted to transfer herself into an object, echoing Ruby Eye's best friend wanting to craft herself into something and continue in that form. The lab may contain a diamond, Barrier emergency systems, a safe and circle code, and something else. A dragon may roost in the ruins of Dirk's old city. Ruby Eye's warning about getting something before she tries to get it is incomplete and unresolved. diff --git a/data/4-days-cleaned/day-25.md b/data/4-days-cleaned/day-25.md index b284561..44ad00c 100644 --- a/data/4-days-cleaned/day-25.md +++ b/data/4-days-cleaned/day-25.md @@ -10,7 +10,7 @@ complete: true # Narrative -Day 25 was Friday, 10th Tan 101, with 9 days to Arrynoon and 5 days to Autumn. The party was at Coalment and headed down to the Ice prison on Ice Fang's back. As they passed Snow Sorrow, the weather became very stormy. +Day 25 was Friday, 10th Tan 101, with 9 days to Arrynoon and 5 days to Autumn. The party was at Coalment and headed down to the Ice prison on Ice Fang's back. As they passed Snowsorrow, the weather became very stormy. They approached Rimewatch, an outpost around the pylon, and then headed to the town. The town was in a much worse state than when they had left. A white dragonborn took them to the inn. @@ -26,7 +26,7 @@ When shown Salina's runes, the party learned that they needed to go back to Enwi # People, Factions, and Places Mentioned -Coalment, Snow Sorrow, Rimewatch, the pylon, the town, the inn, the Ice prison, the Howling Tombs, Grand Tower, Rubyeye's lab, Enwi's lab, Enwi's basement, the control room, and Arasarath's prison were all mentioned. +Coalment, Snowsorrow, Rimewatch, the pylon, the town, the inn, the Ice prison, the Howling Tombs, Grand Tower, Rubyeye's lab, Enwi's lab, Enwi's basement, the control room, and Arasarath's prison were all mentioned. Ice Fang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Duncan's mage, Garadwal, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadwal's people, Salina, Enwi, and three automations were all mentioned. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index cff10d5..8928b83 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -140,7 +140,7 @@ Hartwall did not know who her father was; she had always been told he died in ba A portal appeared, and Valenth and Ruby Eye emerged. Valenth knew before the party told her. Ruby Eye realized that they had done it to him. The dark elf may have been from Envy's apprentice, and they had been making plans. One curveball plan was to swap Valentenhide with Kasher. A coin appeared and blue thistles lay on the ground. A portal opened to a carriage drawn by two cows and guarded by very dressed-up guards. An elderly gentleman appeared, the same one from the vision of Provita's birth: Lord Bleakstorm. He chanted a message from Icefang from outside the dome. He looked no different from his pictures because he was dead. He had not freed the auroch because he could not remain inside the dome long; Browning would find him and send minions after him. Lord Bleakstorm gave Eliana a snowflake coin, a one-use portal to Bleakstorm. -The party learned that kobolds were very good at digging through the barrier. The grub contained nothing but had properties like a leech crossed with a larval fly. Cardunel would take Icefang to be buried near Snow Sorrow. Geldrin planned to try to free Justicarus by pretending to be the Grand Towers medical team. The party returned to the troops' camp. Dirk's jaw would remain changed for the next twenty-four hours. +The party learned that kobolds were very good at digging through the barrier. The grub contained nothing but had properties like a leech crossed with a larval fly. Cardunel would take Icefang to be buried near Snowsorrow. Geldrin planned to try to free Justicarus by pretending to be the Grand Towers medical team. The party returned to the troops' camp. Dirk's jaw would remain changed for the next twenty-four hours. [Mathwall] asked what was happening at Goldenswell and wanted to speak to Lady Lyraine at Riversmeet. Dirk's father and army were now in Sunset Vista on their way to fight the green dragon. [Mathwall] was sending Lady [rabbit] to speak to Lady Lyraine. The party went to Azurescale to speak to the merfolk and gather information about the goliath city. There was a statue to Hydrath. @@ -170,7 +170,7 @@ People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. -Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Hartwall, the castle gates, the courtyard where Hartwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snow Sorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. +Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Hartwall, the castle gates, the courtyard where Hartwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snowsorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-41.md b/data/4-days-cleaned/day-41.md index a769d90..61fcb3f 100644 --- a/data/4-days-cleaned/day-41.md +++ b/data/4-days-cleaned/day-41.md @@ -44,7 +44,7 @@ The old lady or leader had attacked the dragon once. She had respected the drago The Basilisk appeared and said the party was nothing but trouble. Emmeraine was under attack. The father at Dunensend was mobilising an army, and Muthall was mobilising to Emmeraine. A Hearthsmoor fisherman had reported a beast plaguing the town, and about an hour earlier four towers had sprung out of the ground, making a new barrier around Grand Towers. -Galdenseell was still not providing aid. All contact had been lost with Snow Sorrow, and Perens were going missing. The Basilisk had been contracted by an interested party who wished to lend her aid: the Peridot Queen. The Peridot Queen was out to get things for herself, so she would help only until something better came along. Agents in PineSprings had run into undead creatures. Godmount pills might help, though the note adds that "he's an idiot." The party did not think they should bring the barrier down. The Basilisk and the others would coordinate the defense of the other towns. The Basilisk would arrange to meet the Peridot Queen by Trade Smells and get Cardonald to come get the party and take them back to the army. +Galdenseell was still not providing aid. All contact had been lost with Snowsorrow, and Perens were going missing. The Basilisk had been contracted by an interested party who wished to lend her aid: the Peridot Queen. The Peridot Queen was out to get things for herself, so she would help only until something better came along. Agents in PineSprings had run into undead creatures. Godmount pills might help, though the note adds that "he's an idiot." The party did not think they should bring the barrier down. The Basilisk and the others would coordinate the defense of the other towns. The Basilisk would arrange to meet the Peridot Queen by Trade Smells and get Cardonald to come get the party and take them back to the army. Morgana sent a pigeon to the crows. Searu's Arrow was identified or described as a +2 spear. Once per day, it could turn an attack roll into an automatic critical hit. If all three strikes hit a target in consecutive rounds, the target was slain. The arrows returned to the fire place. Hayes was told to look after the leader. @@ -54,9 +54,9 @@ Cardonald arrived, and the party teleported to the army. During sleep, Eliana sa People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodita, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and Eliana who had the eggshell dragon dream. -Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snow Sorrow, Perens, The Basilisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. +Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snowsorrow, Perens, The Basilisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. -Places mentioned include the town square, the tower, the cobbler's shop, Sunset Vista, Azureside, the Cheery & Cherry pub, the Pact Keeper's domain, the village being evacuated, Threeleigh, Donly, the horizon where the green shape appeared, the Aire, the Savannah, the hunters' encampment, the smallish settlement where a celebration was happening, the tower in the flames, the Goliath settlement below the tower, Emmeraine, Dunensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, Trade Smells, the army, a cave entrance in the dream, and the fire place associated with Searu's Arrow. +Places mentioned include the town square, the tower, the cobbler's shop, Sunset Vista, Azureside, the Cheery & Cherry pub, the Pact Keeper's domain, the village being evacuated, Threeleigh, Donly, the horizon where the green shape appeared, the Aire, the Savannah, the hunters' encampment, the smallish settlement where a celebration was happening, the tower in the flames, the Goliath settlement below the tower, Emmeraine, Dunensend, Hearthsmoor, Grand Towers, Snowsorrow, PineSprings, Trade Smells, the army, a cave entrance in the dream, and the fire place associated with Searu's Arrow. # Items, Rewards, and Resources @@ -98,7 +98,7 @@ The leader had once attacked the dragon, had respected the dragon and her church The Basilisk reported multiple simultaneous crises: Emmeraine under attack, the father at Dunensend mobilising an army, Muthall mobilising to Emmeraine, a Hearthsmoor fisherman reporting a beast plaguing the town, and four towers rising around Grand Towers to make a new barrier. How these events connect to the green dragon, the Pacts, and the wider barrier crisis remains unresolved. -Galdenseell was still not providing aid. Contact with Snow Sorrow was lost, and Perens were going missing. Agents in PineSprings ran into undead creatures. The reasons for Galdenseell's refusal, Snow Sorrow's silence, the missing Perens, and the undead in PineSprings remain open. +Galdenseell was still not providing aid. Contact with Snowsorrow was lost, and Perens were going missing. Agents in PineSprings ran into undead creatures. The reasons for Galdenseell's refusal, Snowsorrow's silence, the missing Perens, and the undead in PineSprings remain open. The Peridot Queen was willing to lend aid through The Basilisk but was explicitly acting for herself and would help only until something better came along. The Basilisk planned to meet her by Trade Smells. Her motives, price, and reliability remain suspect. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index 3d09e25..4c4f392 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -73,15 +73,15 @@ The party spoke to Cardenald. Tradesmells was totally empty: no dragons and no G Hephestus's door had a ninth-level Banishment on it. The goat-headed sphinx was Trixus, an elemental of light. The elf lady was a copper dragon, possibly metallic and good according to childhood chants. The goat man was Thromgore's boy, Steven, with Shuert locked up elsewhere. Emri had put Steven here; Steven had helped to contain Valentenhide. Steven just wanted to "Bob stuff" and seemed sincere. He had been imprisoned for one thousand years. The elf / dragon had not been there long. -The dragon lady was hungry. The party opened the barrier to give her food, and she did not try to escape because the barrier made her safe. She said "he's gone now" and seemed sad. The guards said he was dead, or that he had gone recently; the name Lorleh was noted. She asked whether the party had seen her boy. She did not know why she was there and had eaten about one week earlier. The party let her out and gave her food. They found a maggot in her ear and removed it. She uncontrollably cried and remembered everything. She was a copper dragon from Snow Screen, which is now Snow Sorrow. She used to play with the king and queen's son in Snow Screen. The names [uncertain: Ice fang] and Atlih were noted. Gold dragons were also mentioned. Verdugrim was said to be his or Lorleh's son, "the tarnished," and had bred [uncertain: all?] Verdugrim's dragonborn and Goliaths. Eveline Heathsall, called Mama, was betrothed to Argentum and became a Heathsall. Igraine had come to the copper dragon while she was sleeping and said she was lucky she was not captive anywhere else, because Igraine could not speak to her somewhere else. Ice Fury was approximately thirty to forty years older than her. +The dragon lady was hungry. The party opened the barrier to give her food, and she did not try to escape because the barrier made her safe. She said "he's gone now" and seemed sad. The guards said he was dead, or that he had gone recently; the name Lorleh was noted. She asked whether the party had seen her boy. She did not know why she was there and had eaten about one week earlier. The party let her out and gave her food. They found a maggot in her ear and removed it. She uncontrollably cried and remembered everything. She was a copper dragon from Snowsorrow, which is now Snowsorrow. She used to play with the king and queen's son in Snowsorrow. The names [uncertain: Ice fang] and Atlih were noted. Gold dragons were also mentioned. Verdugrim was said to be his or Lorleh's son, "the tarnished," and had bred [uncertain: all?] Verdugrim's dragonborn and Goliaths. Eveline Heathsall, called Mama, was betrothed to Argentum and became a Heathsall. Igraine had come to the copper dragon while she was sleeping and said she was lucky she was not captive anywhere else, because Igraine could not speak to her somewhere else. Ice Fury was approximately thirty to forty years older than her. The party went to see Trixus, Benu's little brother. He was asleep, and loud noises did not wake him. They opened the barrier. Trixus had four brass rings on each paw. The runes on the rings read: "A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind." Shuert came through the portal, fell through to the library, came to find Steven, and promised he had Ruby Eye. -The party checked the treasure hall. It contained lots of Goliath currency, Brass City currency, Dumnen currency, and massive triangular coins of Snow Sorrow. One coin showed a female sphinx resting its hand on a dragon. The party took the copper dragon down and put Trixus's hand on her head. He briefly stirred with recognition but stayed asleep. +The party checked the treasure hall. It contained lots of Goliath currency, Brass City currency, Dumnen currency, and massive triangular coins of Snowsorrow. One coin showed a female sphinx resting its hand on a dragon. The party took the copper dragon down and put Trixus's hand on her head. He briefly stirred with recognition but stayed asleep. In the library, the party found a book on Benu, Garadwal, and Trixus, described as the last three of Altabre's children who walk on the earth. They came from Fire. Gardwell looked after the Dumnens and enjoyed the gifts. Igraine gave them the gifts to heal their people. Trixus helped create Brass City. The tabaxi were confused and lost, and Trixus helped them; they became industrious and proactive in creating things. It was not clear where the brass came from, perhaps a blessing from [uncertain: Shulcher]. Benu was protector of the elves and helped construct the great tower, but did little protection, instead seeming to train them in art and poetry until they became obsessed with it. Benu saw errors in its ways, eventually left for an unknown reason, and hid. The historian seemed to be waiting to be noticed to get a protector. The book mentioned knowledge of five sphinxes and was dated 700 BD, with a note about returning to Altabre. -Geldrin placed a Snow Sorrow coin into Altabre's offering bowl. A white creature came in and destroyed the city; a female sphinx came out and laid a hand on its head, and both disappeared. The sphinx disappeared in sparkles, while the white dragon remained as the vision ended. The words came: "The father wishes freedom for all his children." The statue seemed to look at Geldrin. The party wondered whether the sphinx turned into the dragon and what the symbolism of the shield and Trixus meant. +Geldrin placed a Snowsorrow coin into Altabre's offering bowl. A white creature came in and destroyed the city; a female sphinx came out and laid a hand on its head, and both disappeared. The sphinx disappeared in sparkles, while the white dragon remained as the vision ended. The words came: "The father wishes freedom for all his children." The statue seemed to look at Geldrin. The party wondered whether the sphinx turned into the dragon and what the symbolism of the shield and Trixus meant. In an observatory room, the party found a flesh-crafting wand and many books. One book, written by a Goliath, concerned Noxia wanting to walk on the earth and the study of what Noxia left behind in the fight between Noxia and Sierra. Drops of Noxia's blood corrupted the earth and ensured things did not grow. Dragonborn forces were leaving the city and going to the Earth Waker side. The party decided to go to Bleakstorm at 17:30. @@ -103,13 +103,13 @@ People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodita's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. -Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snow Screen / Snow Sorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Hartwall, and Emmerave. +Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snowsorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Hartwall, and Emmerave. -Creatures and creature-like entities mentioned include the fat-bellied dragon in Dirk's dream, dark demons, the black-feather communication bird, dragonborn, Goliaths, the baby Badger, the featureless woman reflected in the ring, the lion-headed god figure, the dragon in the no-barrier vision, the four card-playing dragonborn with welded armour, something made of air in a barrier, the goat man, the goat-headed sphinx, the copper-haired elven woman / copper dragon, the medusa, the statue figure, the child of the Mother with a worm, the eyeless dog, the fat dragon in the dragon vision, the Noxia Beast avatar, Trixus the elemental of light, Steven the goat man, the copper dragon from Snow Screen, gold dragons, the female sphinx on Snow Sorrow currency, the white creature / white dragon in the Altabre vision, and ice elementals. +Creatures and creature-like entities mentioned include the fat-bellied dragon in Dirk's dream, dark demons, the black-feather communication bird, dragonborn, Goliaths, the baby Badger, the featureless woman reflected in the ring, the lion-headed god figure, the dragon in the no-barrier vision, the four card-playing dragonborn with welded armour, something made of air in a barrier, the goat man, the goat-headed sphinx, the copper-haired elven woman / copper dragon, the medusa, the statue figure, the child of the Mother with a worm, the eyeless dog, the fat dragon in the dragon vision, the Noxia Beast avatar, Trixus the elemental of light, Steven the goat man, the copper dragon from Snowsorrow, gold dragons, the female sphinx on Snowsorrow currency, the white creature / white dragon in the Altabre vision, and ice elementals. # Items, Rewards, and Resources -Items, currencies, and physical resources mentioned include Envi's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snow Sorrow coins, the Snow Sorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. +Items, currencies, and physical resources mentioned include Envi's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snowsorrow coins, the Snowsorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. @@ -165,7 +165,7 @@ Tradesmells was totally empty of dragons and Goliaths, while Ruby Eye was missin The elves learned not only barrier formation but also the removal of soul-parts in an attempt to perfect themselves. The large man under the mountain being a battery is an important clue that remains unexplained. -The copper dragon from Snow Screen / Snow Sorrow remembered after a maggot was removed from her ear. Her boy, Lorleh, Atlih / Ice Fang, Ice Fury, Eveline Heathsall, Argentum, Igraine's ability to reach her, and Verdugrim's breeding of dragonborn and Goliaths all need later preservation. +The copper dragon from Snowsorrow remembered after a maggot was removed from her ear. Her boy, Lorleh, Atlih / Ice Fang, Ice Fury, Eveline Heathsall, Argentum, Igraine's ability to reach her, and Verdugrim's breeding of dragonborn and Goliaths all need later preservation. Trixus, Benu's little brother and Altabre's child, remained under Slumber Imprisonment despite barriers being opened. His rings identify Altabre as Protector of Brass City and first of his name, fifth of his kind. The "father wishes freedom for all his children" vision suggests Altabre wants the sphinxes freed. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index f6c89d8..a277474 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -41,11 +41,11 @@ The party returned to the castle to wait for the bird. They decided to open Inva Shurling arrived. The Chorus knew where the entrance to Grincray was, but they needed to go through Mashir. The flesh-crafting wands were discussed; something was still out there stopping all of the lost knowledge from being retrieved. -Lady Elissa Hartwall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Hartwall, and she had done so before she disappeared. Lady Elissa Hartwall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Elissa Hartwall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. +Lady Elissa Hartwall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Hartwall, and she had done so before she disappeared. Lady Elissa Hartwall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Elissa Hartwall about the copper dragon and Snowsorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. The Menagerie was then discussed. The mages who worked there had not returned to Grand Towers and had locked the Menagerie down; no one could get in. It used to be the mage school. Emi's apprentice was a dark-skinned elf. Joy did not like him, and Mr Browning also did not like him. Browning was described as a nice man, though the note adds that this is not what the party has seen. Storms were bad in the latest reports. Heathmoor plagues were very bad. The land was healing, but the people were not, and the plagues did not share similarities with barrier sickness. News from a rear Ironcraft air site said a tradesman went to pick someone up but that person had "disappeared." The guilt was Emi's guilt. -Lady Elissa Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Hartwall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Hartwall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. +Lady Elissa Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Hartwall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Hartwall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snowsorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. The party tried to speak to Garadwel through the feather. It vibrated, and there was a chill in the air. Garadwel called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. @@ -77,11 +77,11 @@ Cardonald gave Geldrin all of the teleportation circles: seven prisons with no d People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. -Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snow Sorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. +Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snowsorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. -Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Snowsorrow / Snow Sorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. +Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Snowsorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. -Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snow Sorrow, gold dragons, Benu, Trixus, Garadwal, Perodita, Hephestos as a soul, and Morgana as a crow. +Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snowsorrow, gold dragons, Benu, Trixus, Garadwal, Perodita, Hephestos as a soul, and Morgana as a crow. # Items, Rewards, and Resources @@ -89,7 +89,7 @@ Items, documents, and physical resources mentioned include lost documents, the d Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. -Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. +Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snowsorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. # Clues, Mysteries, and Open Threads @@ -121,7 +121,7 @@ Shurling reported that the Chorus knew the entrance to Grincray but needed to go Something is still preventing all lost knowledge from being retrieved. This blocker may be connected to flesh-crafting wands, memory interference, or barrier magic. -Lady Elissa Hartwall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Hartwall, Perodita, and Snow Sorrow remain unresolved. +Lady Elissa Hartwall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Hartwall, Perodita, and Snowsorrow remain unresolved. The Menagerie, formerly the mage school, is locked down by mages who did not return to Grand Towers. Emi's dark-skinned elf apprentice, Joy's dislike of him, and Browning's contradictory reputation are important unresolved leads. diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index 1895a2d..8629a4c 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -68,7 +68,7 @@ Tale of Two Sisters described high-ranking queens of the elemental plane. They g Lord of Bleakstorm and the Gnomes said Bleakstorm thought the gnomes were cast-outs chosen to show anything but recently started showing off seas. The gnomes seemed to have an agreement with merfolk, because they always turned away from a port he knew existed: Great Farmouth. Bleakstorm thought Grand Towers was made with gnomish technology. Gnomes used random names to hide their family names. -Morgana tried to find detention and headed to the principal's office on the map. Altith / Icefang tried to contact Eliana and said they had been meant to meet after Eliana met with Argathum. A man appeared, Icefang. He warned that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. The party needed the janitor's broom to open the door. The note also says "T look silver with a hint of green," with two green dragons named Emeraldus and another. Goliaths were meant to go and attack them and be one of [unclear]. Icefang tried to see the future. When asked what happened if Browning did, the vision showed broken tower fields, burning blue, black, green, and red dragons flying around, small settlements of people hiding, and elementals destroying things. Icefang said, "The future could be desperate, the people are not ready yet." Cold Identify revealed that something had come with the party. Icefang suggested they go see Browning and ask him for the broom. +Morgana tried to find detention and headed to the principal's office on the map. Altith / Icefang tried to contact Eliana and said they had been meant to meet after Eliana met with Argathum. A man appeared, Icefang. He warned that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snowsorrow. The party needed the janitor's broom to open the door. The note also says "T look silver with a hint of green," with two green dragons named Emeraldus and another. Goliaths were meant to go and attack them and be one of [unclear]. Icefang tried to see the future. When asked what happened if Browning did, the vision showed broken tower fields, burning blue, black, green, and red dragons flying around, small settlements of people hiding, and elementals destroying things. Icefang said, "The future could be desperate, the people are not ready yet." Cold Identify revealed that something had come with the party. Icefang suggested they go see Browning and ask him for the broom. The party went to the Air common room at 22:00. Its door was flanked by pictures of a dwarf with a bushy beard and a blue dragonborn. Four or five mages were present: Browning, Valenth, Brotor, Enis, and Hannah. A featureless woman had her hands on Hannah's shoulders. She thanked the party for bringing the broom because it was part of the plan. Everard thought he had found a way into the tower through the tunnels, and they needed the broom to get there. They wanted to see secrets of emotional elimination, memories, and automations, and to help defend the land because they did not think the elemental truce would last much longer. The party agreed to go with them. Tallith had not hired the janitor for nothing; he used to work with the elves. Valententhide said her sister's magic protected the party for now. Hannah, a priestess of Attabre, thought the elves had the same magic as the [unclear]. @@ -84,7 +84,7 @@ The party got Bosh out and went downstairs. In one set of quarters, the room had At 23:00, doors led to the first-year common room and the conjuration class. The conjuration classroom had a birdhouse type of setup and coloured things above the blackboard. Morgana took the green one, waking a pixie inside. The pixie thought it was 49 AD, not 1012 AD. They thought they were leaving for Grand Towers tomorrow with the others, Green, Red, and Blue. The teachers of conjuration were "the sisters." They could not leave the classroom and were an elemental of Igraine. The party tried to get a new core using Treamon's skull and succeeded. The pixie wondered whether Morgana worked for the Chorus because she was one of Igraine's greatest executers. They thought Vita was also one, but became his own thing while working with Mr Bleakthorn. Mr Moreley could not leave the school either. A baby Attabre spirit had been brought in. The sisters were excited to see it. It was going to the Goliaths as they were becoming Emeraldus's line. The Goliaths killed the remaining two green dragons and created Wyrmdown. -The party went to Mr Moreley's classroom via the second-year common room. Something left through the other door to the common room when they arrived. Mr Moreley's room was fully painted as a mural of Snowscreen. It had a large desk, a pedestal with a cushion, and a glass sphere with smoke inside. There was a powerful defence mechanism if someone lacked the password. The containment device was the same as Enis's. The mural showed gold, silver, copper, and white dragons. Dirk threw a javelin at the box, but it did nothing. One dragon head of each colour on the mural was a button. The party worked out the pattern, opening the gates of Snowscreen to reveal an alcove with a draconic book for Ruby Eye. It had been left somewhere only Ruby Eye would find it. The writer was going to try to stop what they were doing here and used the plans for the dome once they had a [unclear] future for [unclear]. "Battery is the clue." The book contained a picture of a baby sphinx, a sixth sphinx. It said a Mother hive for the "worm" had been created using the Attabre excellence. +The party went to Mr Moreley's classroom via the second-year common room. Something left through the other door to the common room when they arrived. Mr Moreley's room was fully painted as a mural of Snowsorrow. It had a large desk, a pedestal with a cushion, and a glass sphere with smoke inside. There was a powerful defence mechanism if someone lacked the password. The containment device was the same as Enis's. The mural showed gold, silver, copper, and white dragons. Dirk threw a javelin at the box, but it did nothing. One dragon head of each colour on the mural was a button. The party worked out the pattern, opening the gates of Snowsorrow to reveal an alcove with a draconic book for Ruby Eye. It had been left somewhere only Ruby Eye would find it. The writer was going to try to stop what they were doing here and used the plans for the dome once they had a [unclear] future for [unclear]. "Battery is the clue." The book contained a picture of a baby sphinx, a sixth sphinx. It said a Mother hive for the "worm" had been created using the Attabre excellence. The party headed up to astronomy. There was a big telescope and blackboards showing what the moons actually look like. The telescope showed a full moon even though the moon was currently only half. The room moved when the telescope moved. Constellations were named; one was called Bell / Squall. Scrying spells on the telescopes could home in on certain points. Pri-moon had many "meteor" impacts. The second moon was a very perfect seasonal stone with a chunk missing. Tri-moon was deep purple. @@ -98,13 +98,13 @@ People and name-like figures mentioned include Morgana, Cardonald / Matron Cardo Groups and factions mentioned include the party, adventurers who found Hartwall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. -Places mentioned include the location of Morgana's statue, Howling Tombs, Hartwall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrum, Igraine, Larn, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snow Screen / Snowscreen, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. +Places mentioned include the location of Morgana's statue, Howling Tombs, Hartwall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrum, Igraine, Larn, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snowsorrow, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. Creatures and creature-like beings mentioned include oxen-horse crossbreeds, griffon, dragon, wolf, human cage subjects, the acid beast, water elemental Dribble, the fresh water elemental released by the party, four-armed vulture men, mindflayer-like wizard, gold dragon skull Mr Moreley, automations containing Thinglaens / light entities, a half-orc, orcs, gnolls, Bright and Valentenhule as elemental-plane queens, ice elementals, two green dragons including Emeraldus, the featureless woman holding Hannah, a silver dragon, the silver-green claw, Noxia-blood slime / green liquid, pixie in the green classroom object, Igraine elemental, baby Attabre spirit, gold / silver / copper / white dragons in the mural, baby sphinx / sixth sphinx, Mother hive for the worm, and the void entity / void orb. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowscreen mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. +Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowsorrow mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Enis recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. @@ -156,7 +156,7 @@ Enis recognised Geldrin as touched by the lady of destruction and was researchin The green liquid / possible Noxia blood came from the desert, wanted to return to the rest of itself, and may have partially returned home after the time-door events. It remains dangerous and unresolved. -Icefang warned that humans were getting above their station, the gods would take over Snow Screen, and a Browning future involved broken tower fields, burning chromatic dragons, hidden settlements, and destructive elementals. Something came with the party. +Icefang warned that humans were getting above their station, the gods would take over Snowsorrow, and a Browning future involved broken tower fields, burning chromatic dragons, hidden settlements, and destructive elementals. Something came with the party. The janitor's broom was required to open the tower route, and Tallith had hired the janitor because he used to work with elves. The janitor's identity, broom's mechanics, and Tallith's motives remain unclear. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index 375f3d4..a98429b 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -50,7 +50,7 @@ The party returned to the basement to sleep. Three hours in, Geldrin's Alarm wen At 8:00, the party left the room and found eleven severed heads lining the hole. The heads looked torn off and apparently had not been killed there. Most of the wizards seemed to be dead. In Elemental Lore, an ornate handle with all the elements on it formed part of the lock. A counter stood at one end, and thirty or forty cages held animals that all seemed dead. Errol tapped on the window, saying he could not find Rubyeye. He was chatty and odd, saying it had been 117 years for him but three days for the party. He looked maintained, did not remember where he had been, and his core seemed to be bursting with energy. He remembered looking for Rubyeye and the dwarves, darkness being with him for forty years, and giving only the answer "lost." He had been with Abraxus in a really nice city, returned inside the Barrier through the Coalmount Hills portal, and saw a fight involving one black and three green dragons, perhaps Veridian. He had been eating gems for forty years. He thought the party had always owned him, thought Eliana was Evalina, and recognised the others from the time they went to the past. Abraxus had given him to them. Abraxus was Professor Moreley. Moreley was waiting downstairs, very confused and not making sense. -Back at Evocation, Errol had not found any orbs. The party went to the third-year upper dorm and found a globe with a rock inside, then turned it into lava in the Evocation classroom. They wanted a novelty from home and went looking for poor gifts. The shop was very quiet. They persuaded its door to open and found socks, trinkets, and an illusion of a gnome shopkeeper. They asked for a snowglobe from Snowscreen. +Back at Evocation, Errol had not found any orbs. The party went to the third-year upper dorm and found a globe with a rock inside, then turned it into lava in the Evocation classroom. They wanted a novelty from home and went looking for poor gifts. The shop was very quiet. They persuaded its door to open and found socks, trinkets, and an illusion of a gnome shopkeeper. They asked for a snowglobe from Snowsorrow. The party apparently obtained or considered racing automatons that were voice activated. They needed to make the snowglobe bigger in Alteration. The door between Necromancy and Alteration seemed to be made of bone. The party got into the room by shrinking, eating cake, and growing again with a potion. They took the remaining cakes and potions from the desks. At the tuck shop, they learned the next targets were in obvious rooms, exactly where expected: Storm in Weather and Life in Herbs. @@ -104,7 +104,7 @@ The party went to "I'm the Drink," a dingy pub on the outskirts of the bridges. A half-elf entered, interrupted, and headed straight to Geldrin. He said there had been a setback to the plans: they had had a good working in the town hall, but less so after the scuffle. It was taking a lot of power, and someone might go there herself. There were many forgotten passages; people had gone missing using them. They needed reinforcement and thought the artifact had been hidden somewhere. They could not risk another abduction and had not found it when he was abducted. Mind magic had not been working properly since something happened at the school. He would get the town hall back under control and get others to look for the artifact, though they had no suspected location. He also reported the brothers were loose, perhaps with an undead sphinx. He was sixth in charge; numbers one through five were unaccounted for. He would speak to Garrick in another town. Lady Igraine had not been taken again. -The half-elf spoke to Garrick through a mirror and told him to get it for them. An hour later, a fifteen-year-old and an unknown man ran off, and the party chased them. They found him at the races, probably trying to get a new identity. The leads gained were that the Hartwall artifact had been put in one of the prisons; Hartwall was meant to be looking after mind effects and may have stopped her remembering; it was somewhere near Snowscreen; no team was currently checking it; some people near Pinesprings had been killed by adventurers; and of the brothers, one had disappeared while the other controlled an undead sphinx. +The half-elf spoke to Garrick through a mirror and told him to get it for them. An hour later, a fifteen-year-old and an unknown man ran off, and the party chased them. They found him at the races, probably trying to get a new identity. The leads gained were that the Hartwall artifact had been put in one of the prisons; Hartwall was meant to be looking after mind effects and may have stopped her remembering; it was somewhere near Snowsorrow; no team was currently checking it; some people near Pinesprings had been killed by adventurers; and of the brothers, one had disappeared while the other controlled an undead sphinx. The party learned that Igraine had returned that morning, had two guards on her door, and was now missing. Terrance was fourth in charge and did not know the party had killed everything else in town. He thought they should leave town and reinforce the prisons. The mirror was in the seneschal's office. The fifth in charge, a greasy halfling, returned with "the mirror" and said they were all going to get on a boat and sail off. The party made him first in command. He took them to the quay, where people were loading things onto the boat. Moonbeam killed the greasy halfling, and Fireball struck the boat and incinerated everything. Diving into the water, the party found 50,000 gp worth of jade. No one seemed to come investigate. Morgana saw a white rabbit out of the corner of her eye. It had arrived on the back of the protector from the snowy area on the lectern and seemed to remember the party. @@ -118,17 +118,17 @@ People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Gel Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. -Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowscreen, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. +Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowsorrow, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the invisible entity, the 40-foot memory-destroying alien creature, spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child, undead sphinx, and possible tainted dragons. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the broom, salt pot safe with sequence `6/11/10/13/7`, salt, beast-sales ledger, Noxia-symbol snake-and-scorpion necklace, basement relief map with eight divots, magical traps, musical lock, dark-rune summoning circle, jellyfish brooch, 5th-level Magic Missile scroll, coin necklace, curved sword with purple-crystal hilt, note reading "propell," Alarm spell, elemental ornate handle, globe with rock, lava-transformed rock, socks and trinkets, Snowscreen snowglobe, racing automatons, cakes and potions, Storm Orb, seasoned stone, mushroom pieces, ancient Draconic warning runes, orbs in slots, Amoursorate's scratched orb, rug saying "lost," skull-and-ruby-eyes orb, ruby messages, lost ring, coral door, power-armour suit, Invar's robe surname, deputy badges, sending stones, 500 gp jade purchase, jade earrings, jade-disguised staff, mirror, 80 hexagon coins, dark grey rose, Bartholomew's silver chain with green pendant, 50,000 gp worth of jade, militia rewards, tray with leaves, and the mirror through which Valententhide offered pathways. +Items, documents, and physical resources mentioned include the broom, salt pot safe with sequence `6/11/10/13/7`, salt, beast-sales ledger, Noxia-symbol snake-and-scorpion necklace, basement relief map with eight divots, magical traps, musical lock, dark-rune summoning circle, jellyfish brooch, 5th-level Magic Missile scroll, coin necklace, curved sword with purple-crystal hilt, note reading "propell," Alarm spell, elemental ornate handle, globe with rock, lava-transformed rock, socks and trinkets, Snowsorrow snowglobe, racing automatons, cakes and potions, Storm Orb, seasoned stone, mushroom pieces, ancient Draconic warning runes, orbs in slots, Amoursorate's scratched orb, rug saying "lost," skull-and-ruby-eyes orb, ruby messages, lost ring, coral door, power-armour suit, Invar's robe surname, deputy badges, sending stones, 500 gp jade purchase, jade earrings, jade-disguised staff, mirror, 80 hexagon coins, dark grey rose, Bartholomew's silver chain with green pendant, 50,000 gp worth of jade, militia rewards, tray with leaves, and the mirror through which Valententhide offered pathways. Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadwal, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadwal's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valententhide's proposed pathway magic. -Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Enis, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowscreen, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. +Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Enis, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowsorrow, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. # Clues, Mysteries, and Open Threads @@ -166,7 +166,7 @@ The baby sphinx / goliath child was reincarnated too quickly by someone else and Riversmeet town hall was infiltrated through false officials, altered memories, rats, lamias, Bartholomew, Terrance, Williams, and unknown chains of command. The missing Lady Igraine, missing townsfolk, and remaining infiltrators are unresolved. -The Hartwall artifact is said to be hidden in one of the prisons near Snowscreen, tied to Hartwall's work on mind effects. Which prison holds it, and why it matters to the infiltrators, remains unresolved. +The Hartwall artifact is said to be hidden in one of the prisons near Snowsorrow, tied to Hartwall's work on mind effects. Which prison holds it, and why it matters to the infiltrators, remains unresolved. The huge jade cache on the boat, the 500 gp jade purchase, jade earrings, and jade disguise point to a coordinated resource or control mechanism. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index 79e7166..daa7434 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -116,7 +116,7 @@ A tome of dome making displayed strange curving patterns, a "magnet curvature pa The archway's "glittering" rune glowed, and men stepped through the portal. One was human-ish and old, with golden blond hair, a very long moustache, golden eyes, ornate old clothing, sandals, and a walking stick. He asked where the scroll was and named himself Aurum Prudence. He disliked Dotharl. He said the only portal activation in the last thousand years had been the cat. He thought the scrolls had all gone with them when everything was crazy. Pacts had been broken, perhaps Hartwall and Icefang, and they had decided to take charge and move the city. -Aurum suggested the party come back with him so he could show them around, after which they could decide whether he could have the scroll. The party took the cloak. They went to Snowscreen, where the archway had different runes. The building was enormous, with grass and woodlands below. It was a warm patch and blackout time, but it was midday. The Tri-moon was visible at the wrong time. A copper dragon landed nearby and entered the building. The city was now called Sunsoreen. A door was carved with a female sphynx face identified as Bynx's mother. Aurum took the party inside the palace to the council first. The council doorway was enormous and impressive, carved with a white dragon and sphynx. Geldrin had the scroll explaining how they moved the city to the other side of the earth. +Aurum suggested the party come back with him so he could show them around, after which they could decide whether he could have the scroll. The party took the cloak. They went to Snowsorrow, where the archway had different runes. The building was enormous, with grass and woodlands below. It was a warm patch and blackout time, but it was midday. The Tri-moon was visible at the wrong time. A copper dragon landed nearby and entered the building. The city was now called Sunsoreen. A door was carved with a female sphynx face identified as Bynx's sister. Aurum took the party inside the palace to the council first. The council doorway was enormous and impressive, carved with a white dragon and sphynx. Geldrin had the scroll explaining how they moved the city to the other side of the earth. Stained glass appeared to show dragon theory: a white dragon surrounded by gold dragons. Five thrones stood in the middle. The council figures included a female elf or human to the left of the white dragon, a golden dragonborn, an unclear figure with odd hair, and to the right a dwarf with a massive golden beard covered in statue symbols. Sophus Holed was linked to spiritual things. Aurum Prudence sat in one of the free chairs. An elf or human asked why the party wanted an audience with the Council. @@ -146,7 +146,7 @@ People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, th Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. -Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `help you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowscreen / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. +Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `help you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowsorrow / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. Creatures and creature-like beings mentioned include the magical black green-eyed cat, the sphynx / Bynx, the goliath baby, a crab in Invar's bag, the lion-headed elven body, the huge black dragon with flies, the drow or green dragon, a copper dragon, a dragon lady and dragon men, a white dragon, red and blue dragons, a fire elemental, ice elemental, frost elemental, massive shaggy blue aurora, elemental prisoners, insects speaking for Cacophony, and invisible hooded figures, one of whom became a copper dragon. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index c3d65b4..44c510b 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -74,6 +74,7 @@ sources: - [Pine Springs](places/pine-springs.md): Pine Springs, PineSprings, Pinespring, Pinesprings. - [Lake Fishtail](places/lake-fishtail.md): Lake Fishtail. - [Fishtail Point](places/fishtail-point.md): Fishtail Point. +- [Fishtailedge](places/fishtailedge.md): Fishtailedge. - [Twolodge](places/twolodge.md): Twolodge. - [Riversmeet](places/riversmeet.md): Riversmeet, Rivermeet. - [Baytail Accord](places/baytail-accord.md): Baytail Accord, Baylen Accord [uncertain note variant], Baylain Accord [uncertain note variant]. @@ -87,7 +88,7 @@ sources: - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. -- [Sunsoreen / Snowscreen](places/sunsoreen.md): Sunsoreen, Snowscreen, Snow Screen. +- [Sunsoreen / Snowsorrow](places/sunsoreen.md): Sunsoreen, Snowsorrow, Snowscreen [misspelling], Snow Screen [misspelling], Snow Sorrow [spacing variant]. - [Sunsoreen Council](factions/sunsoreen-council.md): Council of Gold, Sunsoreen Council, Hayhearn Frowbrind, Hayhearn Frostwind, Aurum Prudence, Sophus Holed, Orius [Nosheer?], The Silent One. - [The Mother](people/the-mother.md): The Mother, Mother. - [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, The Choking Death, The whispers in the dark, Mother of many. @@ -162,7 +163,7 @@ sources: - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md): Riversmeet, Menagerie, Mages College at Riversmeet, old mage school, mage school. - [Void Spheres](items/void-spheres.md): void spheres, orb of void, void orb, eight spheres, Brotor's gift. - [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Enis / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. -- [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. +- [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. - [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. - [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. - [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index 825b866..cf242ba 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -39,7 +39,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Riversmeet Menagerie / old mage school and internal rooms | Updated [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); room details in [Minor Places from Day 46](../places/minor-places-day-46.md). | | Hartwall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | | Coalmount Hills portal | Preserved in cleaned narrative; existing prison/barrier context. | -| Dunensend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pine Springs, Hartwall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | +| Dunensend, Tradesmells, Snowsorrow, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pine Springs, Hartwall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | | Salt pot safe, sequence `6/11/10/13/7`, beast ledger, Noxia necklace, relief map, musical lock, Evocation circle, jellyfish brooch, Magic Missile scroll, purple-crystal sword, note `propell`, snowglobe, cakes, potions, Storm Orb, mushroom pieces, Draconic warning, scratched Amoursorate orb, `lost` rug, ruby messages, lost ring, power armour, deputy badges, sending stones, jade resources, hexagon coins, dark grey rose, silver chain with green pendant, mirror | Added to [Minor Items from Day 46](../items/minor-items-day-46.md); Storm Orb and Amoursorate orb also updated in [Void Spheres](../items/void-spheres.md); Ruby messages updated in [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | | Spells, visions, and magical effects | Preserved in cleaned narrative; plot-bearing effects added to [Open Threads](../open-threads.md). | | Strategic resources and plans | Preserved in cleaned narrative; Hartwall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index 911ea5b..f025feb 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -10,7 +10,7 @@ sources: | Extracted subject | Coverage outcome | | --- | --- | | Bynx / sphynx baby / goliath baby | Standalone [Bynx](../people/bynx.md). | -| Sunsoreen / Snowscreen | Standalone [Sunsoreen](../places/sunsoreen.md). | +| Sunsoreen / Snowsorrow | Standalone [Sunsoreen](../places/sunsoreen.md). | | Sunsoreen Council, Council of Gold, Aurum, Hayhearn, Sophus, Orius, Silent One | Standalone [Sunsoreen Council](../factions/sunsoreen-council.md). | | Valententhide palace, house, deep-sky domain, wall of faces | Existing [Valententhide](../people/valententhide.md) updated. | | Elemental prisons, frost prison, Dorion, Tim, Geoffrey, aurora prisoner, fire rift | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; minor names also in [Minor Figures from Day 47](../people/minor-figures-day-47.md). | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 66ac3c9..ca5b17d 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -24,7 +24,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | | Offering responses, statue inscriptions, Trixus ring inscription, Badger phrase | [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | -| Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Hartwall, Emmerane and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | +| Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snowsorrow, Gravel Basers, Hartwall, Emmerane and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | | Black-feather communication brick, Domain of Pengalis coin, feather relics, coins/currencies, Treamon's skull, flesh-crafting wand, Trixus's brass rings, time device and other specific resources | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Altabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Hartwall | [Open Threads](../open-threads.md), plus related standalone pages. | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 787d353..f5fe6e2 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -123,7 +123,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `Tor Protects all` | `data/4-days-cleaned/day-42.md` | Tor response to `Badger born in freedom` note. | | `A gift crafted for a friend is the key to it all` | `data/4-days-cleaned/day-42.md` | Stitcher bowl smoke image response showing Ruby Eye and Lute. | | `A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` | `data/4-days-cleaned/day-42.md` | Runes on Trixus's four brass rings. | -| `The father wishes freedom for all his children` | `data/4-days-cleaned/day-42.md` | Altabre offering-bowl response after Snow Sorrow coin. | +| `The father wishes freedom for all his children` | `data/4-days-cleaned/day-42.md` | Altabre offering-bowl response after Snowsorrow coin. | | `In her gaze, End of Days`; `One more glance a death dance`; `one brief look last breath look`; `In her stare Bones laid bare`; `in her gaze the end of days` | `data/4-days-cleaned/day-43.md` | Valentenshide / Valentenhide death-rhyme cluster from scroll and Benu book. | | `a family reunited` | `data/4-days-cleaned/day-43.md` | Benu book image of Benu, Trixus, Garadwel, and two sphinxes, one only an outline. | | `in her stare honey laid bare` | `data/4-days-cleaned/day-43.md` | Vulture man / force phrase; he did not remember speaking. | diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index f70a0d1..22067d8 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -50,7 +50,7 @@ The elemental prisons are ancient containment systems that may hold or exploit p - The life prison was converted into flesh by high-level Carnamancy and siphoned by The Mother; Limnuvela survived by holding the Barrier up. - The Guilt claimed it could reset the control room and fix a prison, and later admitted it accidentally opened a prison while controlling a wizard. - Treamen, the Earth Excellence, was killed and left a jagged purple crystal skull artifact made partly from [uncertain: shield] crystal. -- Day 42 Ashkellon prison rooms contained air, light, goat, sphinx, copper-dragon, mirror, and other entities behind barriers, including [Trixus](../people/trixus.md), Steven, Hephestus, and a copper dragon from Snow Screen / Snow Sorrow. +- Day 42 Ashkellon prison rooms contained air, light, goat, sphinx, copper-dragon, mirror, and other entities behind barriers, including [Trixus](../people/trixus.md), Steven, Hephestus, and a copper dragon from Snowsorrow. - Emri was still imprisoned and missing soul-parts including guilt, misery, and possibly sorrow, compassion, Joy, and mercy; the elves had learned to remove soul-parts in an attempt to perfect themselves. - Day 43 says Hephestos was only his soul, wanted a pact, and may have been asked to attack the dome; Trixus could help with memories but a spell inside the Barrier interfered. - Cardonald's Day 43 teleportation-circle list included seven prisons with no defences, a lab with uncertain defences, Grand Towers factory/control/meeting lounge, Menagerie, Ashhellier, and five pylons. diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 86df932..f86bb5f 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -173,6 +173,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Pine Springs](places/pine-springs.md) - [Lake Fishtail](places/lake-fishtail.md) - [Fishtail Point](places/fishtail-point.md) +- [Fishtailedge](places/fishtailedge.md) - [Twolodge](places/twolodge.md) - [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md) - [Riversmeet](places/riversmeet.md) @@ -185,7 +186,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Cardonald's Desert Laboratory](places/desert-laboratory.md) - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md) - [Minor Places from Day 46](places/minor-places-day-46.md) -- [Sunsoreen / Snowscreen](places/sunsoreen.md) +- [Sunsoreen / Snowsorrow](places/sunsoreen.md) - [Minor Places from Day 47](places/minor-places-day-47.md) - [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md) - [Magstein and Grimcrag](places/magstein-grimcrag.md) diff --git a/data/6-wiki/items/minor-items-day-46.md b/data/6-wiki/items/minor-items-day-46.md index 03b6448..8533c63 100644 --- a/data/6-wiki/items/minor-items-day-46.md +++ b/data/6-wiki/items/minor-items-day-46.md @@ -17,7 +17,7 @@ sources: | Jellyfish brooch and 5th-level Magic Missile scroll | Found after the squid-headed man died. | Party inventory / rollup, custody unclear. | | Purple-crystal curved sword and coin necklace | Armed Tarnished carried these; the sword activated the summoning circle. | Rollup/open thread. | | Note reading `propell` | Dropped by an invisible copper Tarnished. | Rollup/open thread. | -| Snowscreen snowglobe, cakes, and potions | Used or sought for Alteration-room access and size changes. | Rollup. | +| Snowsorrow snowglobe, cakes, and potions | Used or sought for Alteration-room access and size changes. | Rollup. | | Storm Orb | Retrieved from the Weather room by changing weather, using Shape Water, and charging the orb with lightning. | [Void Spheres](void-spheres.md). | | Mushroom pieces | Mushroom entity wanted five pieces planted a mile apart, earthwise from a river, after five years. | Rollup/open thread. | | Ancient Draconic warning runes | Warned of a memory-destroying creature and forgotten spell before the battle. | Rollup/open thread. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 4f167f5..9da598c 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -14,7 +14,7 @@ sources: | Envi's fifth ring, ring-reflection voice, three-ring attunement | Anastasia gave Dirk the fifth ring; Invar heard `ring of the betrayer`. | [Rings of Joy, Ennuyé, and Dirk](rings-of-joy-ennuyé-and-dirk.md), inventory/open thread. | | Black-feather communication brick and bird | Three Finger Dune Shwelter's resistance communication device. | Party Inventory unclear custody / [Ashkellon](../places/ashkellon.md). | | Linen basket, dirty soap, new linen, towel pile, dagger in Araks's back | Ashkellon worker-rescue details. | Rollup/status. | -| Domain of Pengalis Goliath coin, old tower coins, dragon bone-chip currency, Goliath / Brass City / Dumnen / Snow Sorrow currencies | Tower and treasure-hall currencies. | Party Treasury / rollup. | +| Domain of Pengalis Goliath coin, old tower coins, dragon bone-chip currency, Goliath / Brass City / Dumnen / Snowsorrow currencies | Tower and treasure-hall currencies. | Party Treasury / rollup. | | Offering bowls, tower's penny, nip, Brass City platinum, Lortesh's scale / hair of Nature, cider bottle, note `Badger born in freedom`, cloak in Stitcher's bowl | Goliathified god-statue offerings and responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md), treasury/inventory. | | Two large feathers with orange and blue feathers and beads | Hidden behind Benu / Guradwal picture; later Garadwal communication used a feather. | Party Inventory; [Garadwal](../people/garadwal.md). | | Red and blue crystals, dwarf-and-dragon-head rug, ornate map of Pentacity slates, four ornate swords, four copper pylons, barrier-opening wheels | Ashkellon tower infrastructure and prison items. | [Ashkellon](../places/ashkellon.md), [Elemental Prisons](../concepts/elemental-prisons.md). | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 9410236..9cf88f6 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -118,7 +118,7 @@ sources: - What is the day-41 blocker that interfered with messages and teleportation, and does it share range or source with Perodita's ten-mile smoke influence? - What happened to Aurouze and his two companions after the Savannah hunt? - What trapped ally, corruptions, and Goliath resistance did [Searu](people/searu.md)'s flame vision point toward while the dragon was away? -- What are the simultaneous day-41 crises at Emmerane, Dunensend, Heartmoor, Snow Sorrow, Pine Springs, and Grand Towers, and are they coordinated? +- What are the simultaneous day-41 crises at Emmerane, Dunensend, Heartmoor, Snowsorrow, Pine Springs, and Grand Towers, and are they coordinated? - What price or betrayal risk comes with the Peridot Queen's aid through The Basilisk? - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused Eliana's cracked-eggshell dragon dream and temporary mental-stat disadvantage? @@ -177,7 +177,7 @@ sources: - What did the lost ring remove from Dirk and Geldrin, and can compassion or curiosity be restored? - Who or what caused the Day 46 memory flood, and why did Invar and Eliana remember Morgana as more familiar than expected? - Who is controlling Riversmeet through false officials, lamias, rats, jade, altered memories, and the town-hall passages? -- Which prison near Snowscreen holds the Hartwall artifact, and how does it affect Hartwall's memory work? +- Which prison near Snowsorrow holds the Hartwall artifact, and how does it affect Hartwall's memory work? - What is the purpose of the 50,000 gp jade cache from the boat, and how does it connect to Terrance's wife's jade earrings and the 500 gp jade order? - Where does the `Earth hath no` door at The Olde Clay Jug lead, and who is Highgate? - What did Valententhide intend to charge in identities, eyes, and pride for use of her pathways? diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index e0b376c..9d47d66 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -25,7 +25,7 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - On `day-47`, the sphynx grew quickly, asked many questions, played in Hartwall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. - Bynx identified a lion-headed elven body in a Grand Towers memory box as "real daddy" and broke the box. - The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. -- Bynx's mother appeared as a carved female sphynx face on a Sunsoreen palace door. +- Bynx's sister appeared as a carved female sphynx face on a Sunsoreen palace door. - In Sunsoreen, Bynx explained that where pure elemental planes meet, they combine. - Bynx cast Truesight and found his sister was no longer present, with no trace of her in the white dragon. - On Day 56, Bynx warned Dirk that his brothers were coming and to close the door. diff --git a/data/6-wiki/people/dotharl.md b/data/6-wiki/people/dotharl.md index 545c3d1..12797e7 100644 --- a/data/6-wiki/people/dotharl.md +++ b/data/6-wiki/people/dotharl.md @@ -42,7 +42,7 @@ Dotharl, also recorded as Dothral, Dothril, and Dothurl, is a player character p ## Related Entries - [Bridget's Doors](../concepts/bridgets-doors.md) -- [Sunsoreen / Snowscreen](../places/sunsoreen.md) +- [Sunsoreen / Snowsorrow](../places/sunsoreen.md) - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) - [Valententhide / Valentenhule](valententhide.md) - [Brutor Ruby Eye](brutor-ruby-eye.md) diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 38b3d37..2002fc5 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -28,10 +28,10 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Icefang said he never would have dropped a rope, was glad to be sane before the end, and said the party needed to right the wrongs. - He said the Barrier was a good thing but too many sacrifices had been made. - In the Highden battle, a massive frost dragon burst from a black hole, seized the skeletal dragon, called Hartwall `My Child`, crashed through the Barrier, and was retrieved by a water elemental. -- Cardunel planned to bury Icefang near Snow Sorrow. -- Day 42 copper-dragon history says Ice Fury was about thirty to forty years older than the copper dragon, while [uncertain: Ice fang] / Atlih was noted near her boy and Snow Screen / Snow Sorrow. +- Cardunel planned to bury Icefang near Snowsorrow. +- Day 42 copper-dragon history says Ice Fury was about thirty to forty years older than the copper dragon, while [uncertain: Ice fang] / Atlih was noted near her boy and Snowsorrow. - Day 43 says Lady Elissa Hartwall remembered Icefang more clearly, that he cared for her, and that he and Lady Elissa Hartwall assaulted Perodita while Icefang was starting to lose his mind. -- Day 44 has Altith / Icefang contact Eliana, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. +- Day 44 has Altith / Icefang contact Eliana, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snowsorrow. - Icefang's future vision if Browning acted showed broken tower fields, burning blue, black, green, and red dragons, hidden settlements, and destructive elementals. - Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Lady Evalina Hartwall / Mama Hartwall holding the blue ball and saying the work had to stop. - Day 57 Bleakstorm said Icefang's spirit was still in the dome because Icefang died there and asked the party to free it. @@ -49,7 +49,7 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Who ordered or carried out Icefang's memory tampering? - What was the `paysoil`, and why would it not work without Icefang? - What is Icefang's exact family relationship to Hartwall? -- Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snow Screen figures? -- What did Icefang mean by Dad being mad and the gods taking over Snow Screen? +- Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snowsorrow figures? +- What did Icefang mean by Dad being mad and the gods taking over Snowsorrow? - What does freeing Icefang's spirit from the dome require? - How do Icefang, Attabre, Lady Elissa Hartwall, and Eliana's Hartwall identity fit together? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 2fe5553..e0fe730 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -70,7 +70,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-41.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | | Joel / revived dwarf | revived, ran home | `data/4-days-cleaned/day-41.md` | Ticking female stabbed Joel through; after the fight the dwarf was revived. | | Badger | rescued from immediate captivity, later safety unknown | `data/4-days-cleaned/day-42.md` | Baby hidden in linen basket in Ashkellon; party proposed `Badger born in freedom` as a name if the plan succeeded. | -| Copper dragon from Snow Screen / Snow Sorrow | freed and memory restored | `data/4-days-cleaned/day-42.md` | Maggot removed from her ear; remembered Snow Screen, her boy, Lorleh, Igraine, and Verdugrim's breeding. | +| Copper dragon from Snowsorrow | freed and memory restored | `data/4-days-cleaned/day-42.md` | Maggot removed from her ear; remembered Snowsorrow, her boy, Lorleh, Igraine, and Verdugrim's breeding. | | [Trixus](trixus.md) | released from barrier but still recovering/uncertain | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Initially under Slumber Imprisonment; later released and could possibly help with memories. | | Stalwart and restored Iron Knights | restored/active | `data/4-days-cleaned/day-43.md` | Stalwart was the first restored Iron Knight; purification ritual removed ailment, and Morgana healed children. | | [Brass City Council](../factions/brass-city-council.md) / live tabaxi king | partly restored from stone | `data/4-days-cleaned/day-57.md` | Returning the tail broke stone casing and revealed live tabaxi; the king asked how long they had been stone. | @@ -130,10 +130,10 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Brookville Springs leader / lead human | vanished | `data/4-days-cleaned/day-36.md` | Missing on the bang night after purple explosions. | | Newgate's sister and doppel/imposter | unresolved | `data/4-days-cleaned/day-36.md` | Claymeadow message reported Newgate's doppel/imposter in quarters and broken Bird. | | The Guilt | unconscious in dangerous chest | `data/4-days-cleaned/day-36.md` | Avatar of Pride; condition tied to Pride being eaten by Garadwal. | -| Icefang | dead or dying, to be buried | `data/4-days-cleaned/day-36.md` | Returned as frost dragon, badly injured, retrieved by water elemental; Cardunel planned burial near Snow Sorrow. | +| Icefang | dead or dying, to be buried | `data/4-days-cleaned/day-36.md` | Returned as frost dragon, badly injured, retrieved by water elemental; Cardunel planned burial near Snowsorrow. | | Lord Bleakstorm | dead but active outside dome | `data/4-days-cleaned/day-36.md` | Delivered Icefang's message and gave snowflake coin; cannot remain inside dome long. | | Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | -| Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | The Basilisk reported all contact lost with Snow Sorrow and Perens going missing. | +| Snowsorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | The Basilisk reported all contact lost with Snowsorrow and Perens going missing. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | missing / possibly off-plane | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Joy warned `they've got him`; after Ashkellon Ruby Eye was missing, out of Bleakstorm's sight, and Cardonald could not find him. | | [Ennuyé](ennuyé.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tresmun's arm. | | Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | diff --git a/data/6-wiki/people/the-basilisk.md b/data/6-wiki/people/the-basilisk.md index 2d8d565..53d82a0 100644 --- a/data/6-wiki/people/the-basilisk.md +++ b/data/6-wiki/people/the-basilisk.md @@ -33,7 +33,7 @@ The Basilisk is a recurring contact who receives party messages, appears during - The Basilisk's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` - The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. - On Day 36, the party sent The Basilisk a note about current events from Highden. -- On Day 41, The Basilisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmerane, Dunensend, Heartmoor, Grand Towers, Snow Sorrow, Pine Springs, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. +- On Day 41, The Basilisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmerane, Dunensend, Heartmoor, Grand Towers, Snowsorrow, Pine Springs, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. - The Basilisk planned to meet the Peridot Queen by Trade Smells and get Cardonald to take the party back to the army. ## Related Entries diff --git a/data/6-wiki/places/bleakstorm.md b/data/6-wiki/places/bleakstorm.md index 3feead0..18d8075 100644 --- a/data/6-wiki/places/bleakstorm.md +++ b/data/6-wiki/places/bleakstorm.md @@ -17,7 +17,7 @@ sources: ## Summary -Bleakstorm is both a cursed/blessed castle location and the title or identity of Lord Bleakstorm, a time-aware figure tied to Bright, gnomes, Snow Screen, and trips outside the Barrier. +Bleakstorm is both a cursed/blessed castle location and the title or identity of Lord Bleakstorm, a time-aware figure tied to Bright, gnomes, Snowsorrow, and trips outside the Barrier. ## Known Details diff --git a/data/6-wiki/places/fishtailedge.md b/data/6-wiki/places/fishtailedge.md new file mode 100644 index 0000000..ade1473 --- /dev/null +++ b/data/6-wiki/places/fishtailedge.md @@ -0,0 +1,21 @@ +--- +title: Fishtailedge +type: place +aliases: + - Fishtailedge +first_seen: user clarification +last_updated: user clarification +sources: + - user clarification +--- + +# Fishtailedge + +## Summary + +Fishtailedge is a location near old Snowsorrow. Before dragons moved the city and it became [Sunsoreen](sunsoreen.md), Snowsorrow was located between Fishtailedge and [Rimewatch](rimewatch-ice-prison.md). + +## Related Entries + +- [Sunsoreen / Snowsorrow](sunsoreen.md) +- [Rimewatch and the Ice Prison](rimewatch-ice-prison.md) diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md index 1344ffc..01070d6 100644 --- a/data/6-wiki/places/minor-places-day-46.md +++ b/data/6-wiki/places/minor-places-day-46.md @@ -14,12 +14,12 @@ sources: | Basement map room and orb room | Site of eight-divot map, orb placement, memory-destroying creature battle, and Joy illusion. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](../items/void-spheres.md). | | Dunensend ray | Corridor rug image showed Garadwal and the word `Terror`. | Rollup; [Garadwal](../people/garadwal.md). | | Tradesmells underground hideout | Tarnished hideout said to be fifteen miles below Tradesmells. | Rollup/open thread. | -| Snowscreen | Snowglobe source and later area near the prison where the Hartwall artifact may be hidden. | Rollup/open thread. | +| Snowsorrow | Snowglobe source and later area near the prison where the Hartwall artifact may be hidden. | Rollup/open thread. | | Infinite library / Grand temple city / [unclear: Hyane] | Morgana's vision during reincarnation magic. | Rollup/open thread. | | Pre-Dome desert | Garadwal's last memory before reincarnation. | [Garadwal](../people/garadwal.md). | | Rhime watches | Dothral woke near here around twenty years ago before being propelled through a door. | Rollup/open thread. | | Lake Azure | Longfang thought the dragon there might be dead. | Rollup/open thread. | | Riversmeet council bridge, And Pool, `I'm the Drink`, Wayshrill Bridge, The Olde Clay Jug | Town investigation locations around the false Exchequer, missing Igraine, infiltrators, rewards, and the `Earth hath no` door. | Rollup/open thread. | -| Hartwall artifact prison near Snowscreen | Infiltrator lead said Hartwall put an artifact in one of the prisons near Snowscreen. | Open thread. | +| Hartwall artifact prison near Snowsorrow | Infiltrator lead said Hartwall put an artifact in one of the prisons near Snowsorrow. | Open thread. | | Pine Springs | Adventurers killed some people there while following a related lead. | Rollup/open thread. | | Hartwall's lab | The party chose to head there after rest and chicken. | Rollup/open thread. | diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index 1592b1d..a845048 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -25,7 +25,7 @@ sources: | Three Full Moons | Inn where party met Gary and Shep. | Rollup. | | Rimewock prison | Icefang's ice elemental prison. | [Rimewatch and the Ice Prison](rimewatch-ice-prison.md). | | Mental palace room and dark cavern with skull throne | Icefang and Geldrin visions. | [Icefang](../people/icefang.md) / open thread. | -| Rellport, Bleakstorm, Snow Sorrow, Riversmeet, Sunset Vista | Vision, portal, burial, and war-coordination places. | Rollup/open threads. | +| Rellport, Bleakstorm, Snowsorrow, Riversmeet, Sunset Vista | Vision, portal, burial, and war-coordination places. | Rollup/open threads. | | Azurescale, Azureside cherry orchard, Calcmont, Coalmont Falls | Travel and black-water investigation route. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md), [Azureside](azureside.md). | | Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, monastery | Coalmont Falls services and nearby missing-logger/Zigglecog references. | Coalmont page / rollup. | | Lake, underwater obsidian archway, Dull Peake, Domain of Anthrosite, underground chamber, underwater barrier, freshly cut stone corridor, ticking-rune door, geyser pit, Envi's circular room, merfolk lodge | Coalmont prison/facility sites. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md). | @@ -34,5 +34,5 @@ sources: | Threeleigh, Donly, horizon of green shape, Aire | Evacuation and route after Perodita attack. | Open thread / rollup. | | Savannah hunters' encampment and red-eyed settlement | Hospitality settlement where Searu appeared. | [Searu](../people/searu.md). | | Tower in the flames and Goliath settlement below tower | Perodita/Searu vision location. | Open thread / rollup. | -| Emmerane, Dunensend, Heartmoor, Grand Towers, Galdenseell, Snow Sorrow, Pine Springs, Trade Smells | Simultaneous crisis locations reported by The Basilisk. | Open threads; existing pages where present. | +| Emmerane, Dunensend, Heartmoor, Grand Towers, Galdenseell, Snowsorrow, Pine Springs, Trade Smells | Simultaneous crisis locations reported by The Basilisk. | Open threads; existing pages where present. | | Cave entrance in dream and fire place associated with Searu's Arrow | Dragon dream and Searu's Arrow return place. | [Searu's Arrow](../items/searus-arrow.md) / open thread. | diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md index c7c4053..a264867 100644 --- a/data/6-wiki/places/minor-places-days-42-44.md +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -13,7 +13,7 @@ sources: |---|---|---| | Council tent, Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, [uncertain: Tazer], [uncertain: Gugghut] | Day-42 planning and dragon-family geography. | Rollup; [Ashkellon](ashkellon.md), [Peridita](../people/peridita.md). | | Ashkellon throne room, wash room, resistance building, soft tower, skull-arched room, statue room, prison rooms, Noxia chamber, treasure hall, observatory room | Major Ashkellon tower sites. | [Ashkellon](ashkellon.md). | -| Domain of Pengalis, Dunemin, Pentacity slates, sea gap, Shousorrow, Snow Screen / Snow Sorrow, Fire, great tower, Gravel Basers | Historical and map locations from Ashkellon. | Rollup/open threads. | +| Domain of Pengalis, Dunemin, Pentacity slates, sea gap, Shousorrow, Snowsorrow, Fire, great tower, Gravel Basers | Historical and map locations from Ashkellon. | Rollup/open threads. | | Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Hartwall, Emmerane | Day-42 time/Bridge/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | | Goldenswell, Pine Springs, Hartwall, 11th Duke of Hartwall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Hartwall locations. | Rollup/open threads. | | Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise | Tomes about newly discovered places. | Rollup/open threads. | diff --git a/data/6-wiki/places/minor-places-days-48-52.md b/data/6-wiki/places/minor-places-days-48-52.md index 4749842..e16c9f1 100644 --- a/data/6-wiki/places/minor-places-days-48-52.md +++ b/data/6-wiki/places/minor-places-days-48-52.md @@ -32,7 +32,7 @@ sources: | Medinner's show space | 52 | Reenacted Eliana, Avalina, burial, rooted woman, and robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | | Chessboard space | 52 | Dice/card puzzle moved Geldrin and Dirk; lights appeared on a 20-square board. | Rollup. | | Darker-sky realm and storm | 52 | Bouncy-castle-feeling space where party moved by intent and Dotharl heard the tempting voice. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Snowsoreen / order city | 52 | Named in questions about a trapped being and order. | [Sunsoreen / Snowscreen](sunsoreen.md). | +| Snowsoreen / order city | 52 | Named in questions about a trapped being and order. | [Sunsoreen / Snowsorrow](sunsoreen.md). | ## Open Questions diff --git a/data/6-wiki/places/provista.md b/data/6-wiki/places/provista.md index 873f88b..1970b95 100644 --- a/data/6-wiki/places/provista.md +++ b/data/6-wiki/places/provista.md @@ -27,5 +27,5 @@ Provista is a mapped city northwest of Hartwall and a major location in Eliana's - [Eliana](../people/eliana.md) - [Hartwall](hartwall.md) -- [Sunsoreen / Snowscreen](sunsoreen.md) +- [Sunsoreen / Snowsorrow](sunsoreen.md) - [Bleakstorm](bleakstorm.md) diff --git a/data/6-wiki/places/rimewatch-ice-prison.md b/data/6-wiki/places/rimewatch-ice-prison.md index 664e314..06f7b8c 100644 --- a/data/6-wiki/places/rimewatch-ice-prison.md +++ b/data/6-wiki/places/rimewatch-ice-prison.md @@ -24,7 +24,7 @@ Rimewatch is an outpost around a pylon near the Ice prison, where storms, dragon ## Known Details -- The party approached Rimewatch on Ice Fang and found the town worse than before, with stormy weather near Snow Sorrow. +- The party approached Rimewatch on Ice Fang and found the town worse than before, with stormy weather near Snowsorrow. - A warning from 20 years earlier described dragons plotting again, dragons breathing the Terror of the Sands out of her prison, and the black one being cast out. - Infestus, Peridita, Calemnis Bereth/Girth, Garadwal, Rubyeye, the veridican, and Peridita as `Mother of many` were connected to two plots: removing cities and breaking out Garadwal. - The Howling Tombs were identified as where storms begin. diff --git a/data/6-wiki/places/sunsoreen.md b/data/6-wiki/places/sunsoreen.md index 2f72d21..477deb5 100644 --- a/data/6-wiki/places/sunsoreen.md +++ b/data/6-wiki/places/sunsoreen.md @@ -1,29 +1,33 @@ --- -title: Sunsoreen / Snowscreen +title: Sunsoreen / Snowsorrow type: city, moved settlement, palace aliases: - Sunsoreen - - Snowscreen - - Snow Screen + - Snowsorrow + - Snowscreen [misspelling] + - Snow Screen [misspelling] + - Snow Sorrow [spacing variant] first_seen: day-47 last_updated: day-47 sources: - data/4-days-cleaned/day-47.md --- -# Sunsoreen / Snowscreen +# Sunsoreen / Snowsorrow ## Summary -Sunsoreen is the current name of Snowscreen, a city or palace moved to the other side of the earth by a council after broken pacts and the dome crisis. +Sunsoreen is the current name of Snowsorrow, a city or palace that was originally between [Fishtailedge](fishtailedge.md) and [Rimewatch](rimewatch-ice-prison.md) before dragons moved it to the other side of the earth after broken pacts and the dome crisis. ## Known Details - The party reached Sunsoreen through a portal from the frost prison after meeting [Aurum Prudence](../factions/sunsoreen-council.md). +- Before the move, Snowsorrow was located between Fishtailedge and Rimewatch. +- Dragons moved the city, after which it became Sunsoreen. - The archway had different runes, the building was enormous, grass and woodlands lay below, and the area was warm despite blackout time. - The Tri-moon was visible when it should not have been. - A copper dragon landed nearby and entered the building. -- A palace door was carved with a female sphynx face, identified as [Bynx](../people/bynx.md)'s mother. +- A palace door was carved with a female sphynx face, identified as [Bynx](../people/bynx.md)'s sister. - The council doorway was carved with a white dragon and sphynx. - Seven settlements within one hundred miles had been absorbed under the Sunsoreen umbrella. - Sunsoreen enforces frequent new laws, job or training requirements, information control, outbreeding laws, and courtroom systems spread across more than two hundred courtrooms citywide. @@ -32,6 +36,8 @@ Sunsoreen is the current name of Snowscreen, a city or palace moved to the other ## Related Entries - [Sunsoreen Council](../factions/sunsoreen-council.md) +- [Fishtailedge](fishtailedge.md) +- [Rimewatch and the Ice Prison](rimewatch-ice-prison.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Tri-moon Countdown](../events/tri-moon-countdown.md) - [Minor Places from Day 47](minor-places-day-47.md) diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 8bc3a32..2862cff 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -91,7 +91,7 @@ sources: - `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). -- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). +- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowsorrow](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). - `data/4-days-cleaned/day-48.md`: [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -
914e032Normalize note spellings and update place descriptionsby Laura Mostert
data/2-pages/146.txt | 2 +- data/2-pages/164.txt | 2 +- data/2-pages/167.txt | 4 +- data/2-pages/289.txt | 2 +- data/3-days/day-36.md | 2 +- data/3-days/day-41.md | 2 +- data/3-days/day-42.md | 4 +- data/3-days/day-57.md | 2 +- data/4-days-cleaned/day-36.md | 4 +- data/4-days-cleaned/day-41.md | 6 +-- data/4-days-cleaned/day-42.md | 12 +++--- data/6-wiki/aliases.md | 43 +++++++++++++++++--- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/day-47-coverage-audit.md | 2 +- data/6-wiki/clues/day-57-coverage-audit.md | 2 +- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 4 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 6 +-- .../clues/known-passwords-and-inscriptions.md | 4 +- data/6-wiki/concepts/excellences.md | 4 +- .../goldenswell-prison-network-and-memory-grubs.md | 4 +- data/6-wiki/events/tri-moon-countdown.md | 2 +- data/6-wiki/factions/dollarmen.md | 2 +- data/6-wiki/factions/sahuagin-fish-men.md | 4 +- data/6-wiki/factions/the-pact.md | 8 ++-- data/6-wiki/index.md | 44 ++++++++++++++++++--- data/6-wiki/inventories/party-inventory.md | 4 +- data/6-wiki/items/freeport-auction-lots.md | 3 +- data/6-wiki/items/minor-items-days-36-40-41.md | 2 +- data/6-wiki/items/snake-slayers.md | 2 +- data/6-wiki/open-threads.md | 12 +++--- data/6-wiki/people/freeport-baroness.md | 2 + data/6-wiki/people/galimma-peridot-queen.md | 2 +- data/6-wiki/people/lady-elissa-hartwall.md | 2 +- data/6-wiki/people/minor-figures-days-32-35.md | 2 +- data/6-wiki/people/minor-figures-days-36-40-41.md | 8 ++-- data/6-wiki/people/minor-figures-days-42-44.md | 2 +- data/6-wiki/people/peridita.md | 9 ++--- data/6-wiki/people/searu.md | 2 +- data/6-wiki/people/shandra.md | 4 +- data/6-wiki/people/status.md | 10 ++--- data/6-wiki/people/the-basilisk.md | 4 +- data/6-wiki/places/aegis-on-sands.md | 32 +++++++++++++++ data/6-wiki/places/arafar.md | 25 ++++++++++++ data/6-wiki/places/ashkellon.md | 2 +- .../{azureside-heartmoor.md => azureside.md} | 10 ++--- data/6-wiki/places/baytail-accord.md | 32 +++++++++++++++ data/6-wiki/places/bonstock.md | 21 ++++++++++ data/6-wiki/places/claymeadow.md | 34 ++++++++++++++++ data/6-wiki/places/donly.md | 27 +++++++++++++ data/6-wiki/places/emmerane.md | 31 +++++++++++++++ data/6-wiki/places/fairshaw.md | 32 +++++++++++++++ data/6-wiki/places/fishtail-point.md | 20 ++++++++++ data/6-wiki/places/freeport.md | 5 ++- data/6-wiki/places/goldenswell.md | 33 ++++++++++++++++ data/6-wiki/places/hartwall.md | 33 ++++++++++++++++ data/6-wiki/places/heartmoor.md | 30 ++++++++++++++ data/6-wiki/places/{highden-fell.md => highden.md} | 9 ++--- data/6-wiki/places/hillcaster.md | 20 ++++++++++ data/6-wiki/places/ironcroft-firewise.md | 28 +++++++++++++ data/6-wiki/places/lake-azure.md | 29 ++++++++++++++ data/6-wiki/places/lake-fishtail.md | 19 +++++++++ data/6-wiki/places/lyndgale.md | 20 ++++++++++ data/6-wiki/places/minor-places-day-46.md | 2 +- data/6-wiki/places/minor-places-day-47.md | 2 +- data/6-wiki/places/minor-places-day-57.md | 2 +- data/6-wiki/places/minor-places-days-36-40-41.md | 12 +++--- data/6-wiki/places/minor-places-days-42-44.md | 4 +- data/6-wiki/places/mosscourt.md | 20 ++++++++++ data/6-wiki/places/pine-springs.md | 36 +++++++++++++++++ data/6-wiki/places/provista.md | 31 +++++++++++++++ data/6-wiki/places/redford-point.md | 29 ++++++++++++++ data/6-wiki/places/riversmeet.md | 34 ++++++++++++++++ data/6-wiki/places/salvation.md | 29 ++++++++++++++ data/6-wiki/places/stonerampart-earthwise.md | 29 ++++++++++++++ data/6-wiki/places/stronghedge.md | 29 ++++++++++++++ data/6-wiki/places/sunset-vista.md | 29 ++++++++++++++ data/6-wiki/places/threeleigh.md | 28 +++++++++++++ .../places/{turisle-point.md => torisle-point.md} | 11 ++++-- data/6-wiki/places/twolodge.md | 21 ++++++++++ data/6-wiki/sources.md | 8 ++-- data/6-wiki/timeline.md | 8 ++-- .../{IMG_1457.png => Pentacity States Map.png} | Bin .../{IMG_1494.png => Player Characters.png} | Bin 83 files changed, 976 insertions(+), 123 deletions(-)Show diff
diff --git a/data/2-pages/146.txt b/data/2-pages/146.txt index bedfbdd..f2e8101 100644 --- a/data/2-pages/146.txt +++ b/data/2-pages/146.txt @@ -3,7 +3,7 @@ Source: data/1-source/IMG_9810.jpg Transcription: -Highden Fell - Armies retreated to the fire wise +Highden fell - Armies retreated to the fire wise mountain - 2nd level. 14:00 Issues with sickness - internal consumption, from the diff --git a/data/2-pages/164.txt b/data/2-pages/164.txt index bacfdff..d918392 100644 --- a/data/2-pages/164.txt +++ b/data/2-pages/164.txt @@ -19,7 +19,7 @@ streaming out of his mouth & others swatting invisible bugs. Guide everyone out of the village over to Threeleigh. -Perodika +Perodita Smoke turns into 30ft tall dragon beautiful green Scales. Possesses people & speaks to Dirk: diff --git a/data/2-pages/167.txt b/data/2-pages/167.txt index 59dc7bd..8f8e965 100644 --- a/data/2-pages/167.txt +++ b/data/2-pages/167.txt @@ -6,7 +6,7 @@ Rubyeye & Cardonald have been looking into things - memories coming back since Eva slayed The Mother. Believes Envi maybe trapped - unsure whos side he is on. -Goliaths Empire - slew Perodika's parents & built a city on their bones. Wyrmdoom +Goliaths Empire - slew Perodita's parents & built a city on their bones. Wyrmdoom was there for a few hundred years after the barrier went up Envi part of the deals with the dark demons. @@ -29,7 +29,7 @@ another of Lortesh's sons with a captive wife - Toxicanthus - Wyrmdoom - Rotwrake - Thundeya - Verdigrim - Tradesmells -Lortesh & Perodika's children +Lortesh & Perodita's children Emeredge resides in Askellon Twisted - Lapis diff --git a/data/2-pages/289.txt b/data/2-pages/289.txt index 57a3b7b..dc267ea 100644 --- a/data/2-pages/289.txt +++ b/data/2-pages/289.txt @@ -18,4 +18,4 @@ Dragon door: still Pinesprings but different place. Green/yellow flash from the Geldrin goes through the moon door. Tresmon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. -Dragon room / redbeard figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. +Dragon room / robed figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md index 5ebfd26..621954c 100644 --- a/data/3-days/day-36.md +++ b/data/3-days/day-36.md @@ -676,7 +676,7 @@ go to the cathedral ## Page 146 -Highden Fell - Armies retreated to the fire wise +Highden fell - Armies retreated to the fire wise mountain - 2nd level. 14:00 Issues with sickness - internal consumption, from the diff --git a/data/3-days/day-41.md b/data/3-days/day-41.md index 567ce1f..6ffde89 100644 --- a/data/3-days/day-41.md +++ b/data/3-days/day-41.md @@ -99,7 +99,7 @@ streaming out of his mouth & others swatting invisible bugs. Guide everyone out of the village over to Threeleigh. -Perodika +Perodita Smoke turns into 30ft tall dragon beautiful green Scales. Possesses people & speaks to Dirk: diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index ae72b1c..a447377 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -55,7 +55,7 @@ Rubyeye & Cardonald have been looking into things - memories coming back since Eva slayed The Mother. Believes Envi maybe trapped - unsure whos side he is on. -Goliaths Empire - slew Perodika's parents & built a city on their bones. Wyrmdoom +Goliaths Empire - slew Perodita's parents & built a city on their bones. Wyrmdoom was there for a few hundred years after the barrier went up Envi part of the deals with the dark demons. @@ -78,7 +78,7 @@ another of Lortesh's sons with a captive wife - Toxicanthus - Wyrmdoom - Rotwrake - Thundeya - Verdigrim - Tradesmells -Lortesh & Perodika's children +Lortesh & Perodita's children Emeredge resides in Askellon Twisted - Lapis diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index c26f678..613cb68 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -283,7 +283,7 @@ Dragon door: still Pinesprings but different place. Green/yellow flash from the Geldrin goes through the moon door. Tresmon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. -Dragon room / redbeard figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. +Dragon room / robed figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. ## Page 290 diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index 69253d6..cff10d5 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -112,7 +112,7 @@ The party opened the door. Smoke lay at the end of the room. Symbols on the floo Morgana saw Joy in the trees, motionless and looking very odd; it was an illusion. Mutated animals belched out of the woods. The party entered combat with them and the betrayer. Carduneld joined the party. The betrayer was killed. Carduneld and Ruby Eye talked and thought some information would put the party in danger. The party tried to ask what they knew, but they did not want to say and thought the party should focus on the [unfinished]. Ruby Eye was regaining some memories. They were unsure whether they should renegotiate some of the deals made with the gods, and wanted to look into breaking the curse on the inferlite and the damage caused by the barrier. It was not only Ruby Eye's memories that had been tampered with; Icefang's had been too. They thought the party should talk to Mama Hartwall, but first needed to head to Stone Rampart earthwise. Ruby Eye and Carduneld left. -At the cathedral, priests walked around dealing with people. Two humans with blistering skin were healed by a priest, who then came to the party. Highden Fell's armies had retreated to the firewise mountain's second level by 14:00. There were issues with sickness, internal consumption, from the crystal. The party told him about crystal sickness and advised that people spend time away from the city. He told them to see the Earl, in the other foot. The statue had been created by the five mayors. +At the cathedral, priests walked around dealing with people. Two humans with blistering skin were healed by a priest, who then came to the party. After Highden fell, its armies had retreated to the firewise mountain's second level by 14:00. There were issues with sickness, internal consumption, from the crystal. The party told him about crystal sickness and advised that people spend time away from the city. He told them to see the Earl, in the other foot. The statue had been created by the five mayors. The party went to see the Earl. In the park between the legs, plants were in bloom. Militia wore jagged rock keep tabards, and there was much activity. The party left a message with a lieutenant. A note says she did not have it because she was born in Highden and [unfinished]. A frog appeared to Laura and wanted Eliana's attention, motioning for them to follow. They did not follow, and Sevor-ice could not follow; possible bullying was noted. The party got another sending stone with a new number from someone in the Underbelly. A Highden lizardfolk was on the building, mumbled something as the party left, and Eliana shut up. The creature said hello and cast invisibility. Morgana cast thorn whip on it. It had been skulking because it was scared of the party and had been sent to deliver something by its boss. @@ -170,7 +170,7 @@ People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. -Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Hartwall, the castle gates, the courtyard where Hartwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden Fell, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snow Sorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. +Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Hartwall, the castle gates, the courtyard where Hartwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snow Sorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-41.md b/data/4-days-cleaned/day-41.md index 51b2e53..a769d90 100644 --- a/data/4-days-cleaned/day-41.md +++ b/data/4-days-cleaned/day-41.md @@ -26,7 +26,7 @@ The party sought an audience with the Pact Keeper. They learned or noted that no Geldrin and Dirk heard whispers in the smoke but could not make out any particular words. Townsfolk panicked. One turned around with woodlice streaming from his mouth, while others swatted at invisible bugs. The party guided everyone out of the village toward Threeleigh. -The name Perodika was noted. The smoke formed into a thirty-foot-tall dragon with beautiful green scales. It possessed people and spoke to Dirk. It declared that all of the Pacts were off and that it would kill everyone in every town. It said there was nowhere to run or hide, that it would devour the army first and then devour what she liked. It told Dirk, "I think you underestimate me," called itself "the choking death" and "the mother of many," and then choked some of the townsfolk. +The name Perodita was noted. The smoke formed into a thirty-foot-tall dragon with beautiful green scales. It possessed people and spoke to Dirk. It declared that all of the Pacts were off and that it would kill everyone in every town. It said there was nowhere to run or hide, that it would devour the army first and then devour what she liked. It told Dirk, "I think you underestimate me," called itself "the choking death" and "the mother of many," and then choked some of the townsfolk. The party sent a message to The Basilisk. Errol sent messages to Cardonald and Rubyeye, who said they were coming to the party. The message seemed to nearly get through but could not because there was a blocker in the area. They would try to get to Threeleigh, or perhaps out of the area. The party headed toward Donly and told Errol to get Dirk's dad to direct himself toward Donly so they could meet up. @@ -52,7 +52,7 @@ Cardonald arrived, and the party teleported to the army. During sleep, Eliana sa # People, Factions, and Places Mentioned -People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and Eliana who had the eggshell dragon dream. +People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodita, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and Eliana who had the eggshell dragon dream. Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snow Sorrow, Perens, The Basilisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. @@ -82,7 +82,7 @@ The Cheery & Cherry explosion was more powerful than expected for a gnoll. Moons The Pact Keeper and the matriarch remain important. No one had ever seen the matriarch leave their domain, and shortly afterward the smoke dragon declared that all Pacts were off. The exact relationship between the Pact Keeper, the matriarch, the Pacts, and the green dragon's threat remains unresolved. -The smoke over the town caused whispers, panic, woodlice streaming from a person's mouth, people swatting invisible bugs, possession, and choking. The thirty-foot beautiful green-scaled dragon named or associated with Perodika called itself "the choking death" and "the mother of many," threatened every town, and intended to devour the army first. Its claims, range, and identity remain central open threads. +The smoke over the town caused whispers, panic, woodlice streaming from a person's mouth, people swatting invisible bugs, possession, and choking. The thirty-foot beautiful green-scaled dragon named or associated with Perodita called itself "the choking death" and "the mother of many," threatened every town, and intended to devour the army first. Its claims, range, and identity remain central open threads. The blocker in the area interfered with messages and prevented teleportation to the party. The Basilisk wanted to meet in Donly or Sunset Vista because of this. The source, range, and nature of the blocker are not identified. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index b0c093a..3d09e25 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -23,11 +23,11 @@ complete: true Day 42 began after another strange dream. Dirk also had an odd dream, in which he was a Goliath munching out a fat-bellied dragon. The feeling from the dream was that the party had a link to these dragons or figures. -The party woke and went to meet the council in a large tent. Present or named at the meeting were Cardonald, Ruby Eye, several Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, one figure who seemed to be the leader of the sickly Goliaths, and Blisterfoot. Ruby Eye and Cardonald had been looking into matters. Memories had started returning since Eva slew The Mother. They believed Envi might be trapped, though it was still unclear whose side he was on. The history discussed was grim: the Goliath Empire slew Perodika's parents and built a city on their bones. Wyrmdoom had been there for a few hundred years after the barrier went up. Envi had been part of the deals with the dark demons. +The party woke and went to meet the council in a large tent. Present or named at the meeting were Cardonald, Ruby Eye, several Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, one figure who seemed to be the leader of the sickly Goliaths, and Blisterfoot. Ruby Eye and Cardonald had been looking into matters. Memories had started returning since Eva slew The Mother. They believed Envi might be trapped, though it was still unclear whose side he was on. The history discussed was grim: the Goliath Empire slew Perodita's parents and built a city on their bones. Wyrmdoom had been there for a few hundred years after the barrier went up. Envi had been part of the deals with the dark demons. The group needed a plan. The best course proposed was to infiltrate the Goliaths in the city and turn them against the dragons. Galimma, the Peridot Queen, then arrived and called herself a master spy. She offered to give information freely if the party agreed to leave her alone so she could go about her business, choose some mates, and live her life without threat. She was candid that she might kill the husbands and the odd person, shed some gold, and would not be evil but would not be good either. She promised to put a sign on her lair to notify people of the risk. -Galimma gave information about Lortesh and Perodika's children and related dragons. There might be five left from the first coupling. Another of Lortesh's sons had a captive wife. The listed dragons included Emeredge in Askellon; Willowspra / Willow-wispa in Vahthell, described as the oldest daughter; Toxicanthus in Wyrmdoom; Rotwrake in Thundeya; and Verdigrim in Tradesmells. Three were described as twisted, with references to Lapis, Heady, and Plague. The army would attack Tradesmells, while the party and some others would head to Askellon, though the note preserves some uncertainty with "maybe." +Galimma gave information about Lortesh and Perodita's children and related dragons. There might be five left from the first coupling. Another of Lortesh's sons had a captive wife. The listed dragons included Emeredge in Askellon; Willowspra / Willow-wispa in Vahthell, described as the oldest daughter; Toxicanthus in Wyrmdoom; Rotwrake in Thundeya; and Verdigrim in Tradesmells. Three were described as twisted, with references to Lapis, Heady, and Plague. The army would attack Tradesmells, while the party and some others would head to Askellon, though the note preserves some uncertainty with "maybe." The party asked Blisterfoot whether any of the other rescued Goliaths were from the towns or members of the resistance. Blisterfoot returned with someone claiming to be part of the resistance in Ashkellon: Three Finger Dune Shwelter. This person, who had been sold as a slave, was one of Emeredge's dune dwellers. He had a communication device like a brick with black feathers. It flew to other birds, and he had to tell it to fly slower to stay quiet. Whenever the resistance tried to contact the outside, those who made the attempt ended up disappearing. Three Finger Dune Shwelter agreed to help the party find the resistance. @@ -99,9 +99,9 @@ The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Elissa Hart # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. -Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodika's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. +Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodita's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snow Screen / Snow Sorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Hartwall, and Emmerave. @@ -121,11 +121,11 @@ Dirk's Goliath-and-fat-bellied-dragon dream suggested a link to the dragons or G Memories were returning since Eva slew The Mother. Envi might be trapped, but whose side he is on remains uncertain. Envi was also part of deals with dark demons, and his fifth ring is now with Dirk. -The Goliath Empire killed Perodika's parents and built a city on their bones. Wyrmdoom remained there for centuries after the barrier went up. How this history connects to current Goliath sickness, the dragons, and Perodika's own path remains central. +The Goliath Empire killed Perodita's parents and built a city on their bones. Wyrmdoom remained there for centuries after the barrier went up. How this history connects to current Goliath sickness, the dragons, and Perodita's own path remains central. Galimma / the Peridot Queen offered useful information while openly negotiating for freedom to take mates, possibly kill husbands and the odd person, and live neither good nor evil. Her reliability, boundaries, and future threat level remain unresolved. -The dragon family list preserves many uncertain or variant names: Emeredge / Emmeredge, Askellon / Ashkellon, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Wyrmdoom, Rotwrake, Thundeya, Verdigrim / Verdugrim, Tradesmells, Lapis, Heady, and Plague. Their exact identities, locations, and relationships to Lortesh and Perodika should be preserved carefully. +The dragon family list preserves many uncertain or variant names: Emeredge / Emmeredge, Askellon / Ashkellon, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Wyrmdoom, Rotwrake, Thundeya, Verdigrim / Verdugrim, Tradesmells, Lapis, Heady, and Plague. Their exact identities, locations, and relationships to Lortesh and Perodita should be preserved carefully. Resistance members trying to contact the outside disappeared. Three Finger Dune Shwelter's black-feather communication brick may be vital, but the cause of the disappearances is not known. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 760d52f..c3d65b4 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -44,6 +44,40 @@ sources: - [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Garadwel, Garaduel [uncertain automaton spelling], Guradwal, Gardwell, Terror of the Sands, nightmare of the darkness. - [Everchard](places/everchard.md): Everchard. +- [Seaward](places/seaward.md): Seaward. +- [Fairshaw](places/fairshaw.md): Fairshaw, Fairshaws. +- [Freeport](places/freeport.md): Freeport, Fairport [map typo]. +- [Bonstock](places/bonstock.md): Bonstock. +- [Redford Point](places/redford-point.md): Redford Point, Redford. +- [Hartwall](places/hartwall.md): Hartwall. +- [Provista](places/provista.md): Provista. +- [Stonerampart Earthwise](places/stonerampart-earthwise.md): Stonerampart Earthwise, Stonerampart, Stone Rampart. +- [Highden](places/highden.md): Highden. +- [Goldenswell](places/goldenswell.md): Goldenswell, Goldensell, Galdenseell. +- [Stronghedge](places/stronghedge.md): Stronghedge, Strong Hedge. +- [Mosscourt](places/mosscourt.md): Mosscourt. +- [Hillcaster](places/hillcaster.md): Hillcaster. +- [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridge Statue, Statue of Bridge, Hazy Days. +- [Claymeadow](places/claymeadow.md): Claymeadow, Claymeadows, Clay Meadows. +- [Ironcroft Firewise](places/ironcroft-firewise.md): Ironcroft Firewise, Ironcroft, Ironcraft [uncertain note variant]. +- [Salvation](places/salvation.md): Salvation. +- [Sunset Vista](places/sunset-vista.md): Sunset Vista. +- [Donly](places/donly.md): Donly. +- [Threeleigh](places/threeleigh.md): Threeleigh. +- [Aegis-On-Sands](places/aegis-on-sands.md): Aegis-On-Sands, Aegis-on-Sands, Aegis on Sands. +- [Arafar](places/arafar.md): Arafar, Arrofarc [uncertain note variant]. +- [Heartmoor](places/heartmoor.md): Heartmoor, Hearthsmoor. +- [Azureside](places/azureside.md): Azureside, Firevine, Cheery & Cherry, Cheery & cherry, Saphire Shores. +- [Lake Azure](places/lake-azure.md): Lake Azure. +- [Emmerane](places/emmerane.md): Emmerane, Emmeraine, Emmerave. +- [Lyndgale](places/lyndgale.md): Lyndgale. +- [Pine Springs](places/pine-springs.md): Pine Springs, PineSprings, Pinespring, Pinesprings. +- [Lake Fishtail](places/lake-fishtail.md): Lake Fishtail. +- [Fishtail Point](places/fishtail-point.md): Fishtail Point. +- [Twolodge](places/twolodge.md): Twolodge. +- [Riversmeet](places/riversmeet.md): Riversmeet, Rivermeet. +- [Baytail Accord](places/baytail-accord.md): Baytail Accord, Baylen Accord [uncertain note variant], Baylain Accord [uncertain note variant]. +- [Torisle Point](places/torisle-point.md): Torisle Point, Turisle Point. - [Bug Hunter](people/bug-hunter.md): Bug Hunter. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent], Brotor / Brutor [context: void gift and Brotor's eye uncertain]. - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. @@ -56,7 +90,7 @@ sources: - [Sunsoreen / Snowscreen](places/sunsoreen.md): Sunsoreen, Snowscreen, Snow Screen. - [Sunsoreen Council](factions/sunsoreen-council.md): Council of Gold, Sunsoreen Council, Hayhearn Frowbrind, Hayhearn Frostwind, Aurum Prudence, Sophus Holed, Orius [Nosheer?], The Silent One. - [The Mother](people/the-mother.md): The Mother, Mother. -- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, Perodita, The Choking Death, The whispers in the dark, Mother of many. +- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, The Choking Death, The whispers in the dark, Mother of many. - [The Basilisk](people/the-basilisk.md): The Basilisk, The Basilisk's guild. - [Invar](people/invar.md): Invar. - [Dirk](people/dirk.md): Dirk. @@ -77,16 +111,15 @@ sources: - [Benu](people/benu.md): Benu. - [Astraywoo](people/astraywoo.md): Astraywoo, athruygon? [uncertain]. - [Luth](people/luth.md): Luth. -- [Freeport Auction Lots](items/freeport-auction-lots.md): auction house items, Freeport auction house lots. +- [Freeport Auction Lots](items/freeport-auction-lots.md): Freeport auction house lots, auction house items, Fairport auction house lots [map typo]. - [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md): Lady R. Beauchamp?!?, Lady R. Beauchamp. -- [The Freeport Baroness](people/freeport-baroness.md): Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. +- [The Freeport Baroness](people/freeport-baroness.md): Freeport Baroness, Fairport Baroness [map typo], Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. - [Lady Thorpe](people/lady-thorpe.md): Lady Thorpe, false Lady Thorpe, llama impostor. - [TJ Biggins](people/tj-biggins.md): Mr TJ Biggins, TJ. - [Lady Yadreya Egrine](people/lady-yadreya-egrine.md): Lady Yadreya Egrine, Baroness of Riversmeet, half-elf female [context-dependent]. - [Hartwall Auction Lots](items/hartwall-auction-lots.md): Hartwall auction, Grand Auction House lots, Browning's scroll, Firefang, Smulty box, Ray of sorting and stirring, bracelet of locating. - [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): Goldenswell prison network, off-the-books prisoners, memory grubs, ear pupae, ear grubs, large grubs attached to ear canals. - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scrambleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Barrett, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. -- [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridge Statue, Statue of Bridge, Hazy Days. - [Bridget's Doors](concepts/bridgets-doors.md): Bridget, Bridge, Bridget / Bridge, Bridge Statue, Statue of Bridge, Bridget's door travel. - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md): Grimescale, Gravltooth, Umberous, Spindl, Cedric, Medinner, Squeall / Squeal, Aglue?, Anemie?. - [Anya Blakedurn](people/anya-blakedurn.md): Anya Blakedurn, Blakedurn, Guild Mistress. @@ -115,9 +148,7 @@ sources: - [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md): gods' bargains, barrier bargains, Noxia's terms, Otasha's unborn nerfili baby bargain, Leptrop workaround. - [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md): Jelly Fish Broach, Jelly Fish Brooch, Scorpion, Snowlee, Jelly Fish, Ant. - [Valenthielles Prison](places/valenthielles-prison.md): Valenthielles prison, Valenthielle's prison. -- [Highden Fell](places/highden-fell.md): Highden Fell, Highden. - [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md): Coalmont Falls, Calcmont, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Dull Peake, !Asmoorade!, Domain of Anthrosite. -- [Azureside and Heartmoor](places/azureside-heartmoor.md): Azureside, Heartmoor, Firevine, Cheery & Cherry, Cheery & cherry, Saphire Shores. - [Snake Slayers](items/snake-slayers.md): Snake Slayers, the crossbow. - [Searu's Arrow](items/searus-arrow.md): Searu's Arrow, Searu's arrows, Searu's staff. - [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index c351ff1..825b866 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -39,7 +39,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Riversmeet Menagerie / old mage school and internal rooms | Updated [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); room details in [Minor Places from Day 46](../places/minor-places-day-46.md). | | Hartwall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | | Coalmount Hills portal | Preserved in cleaned narrative; existing prison/barrier context. | -| Dunensend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pinesprings, Hartwall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | +| Dunensend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pine Springs, Hartwall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | | Salt pot safe, sequence `6/11/10/13/7`, beast ledger, Noxia necklace, relief map, musical lock, Evocation circle, jellyfish brooch, Magic Missile scroll, purple-crystal sword, note `propell`, snowglobe, cakes, potions, Storm Orb, mushroom pieces, Draconic warning, scratched Amoursorate orb, `lost` rug, ruby messages, lost ring, power armour, deputy badges, sending stones, jade resources, hexagon coins, dark grey rose, silver chain with green pendant, mirror | Added to [Minor Items from Day 46](../items/minor-items-day-46.md); Storm Orb and Amoursorate orb also updated in [Void Spheres](../items/void-spheres.md); Ruby messages updated in [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | | Spells, visions, and magical effects | Preserved in cleaned narrative; plot-bearing effects added to [Open Threads](../open-threads.md). | | Strategic resources and plans | Preserved in cleaned narrative; Hartwall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index 2437579..911ea5b 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -17,7 +17,7 @@ sources: | Joy / Hannah / Enis sacrifice | Existing [Joy](../people/joy.md) updated; Hannah in minor figures and open threads. | | Garadwal, Argentum, Metatous, lion-headed father clue | Existing [Garadwal](../people/garadwal.md) updated; Bynx page and minor figures cover details. | | Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Boorning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | -| Hartwall lab rooms, Pinesprings, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | +| Hartwall lab rooms, Pine Springs, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | | Altered picture, missing third girl, Hartwall daughters, Eliana as Eliana Hartwall, Lorekeeper source, Sunsoreen citizen release, emotional quelling | Added to [Open Threads](../open-threads.md) and relevant standalone pages. | | Day 48 pages 245-247 | Intentionally deferred; no Day 49 boundary is visible, so Day 48 remains page transcriptions only. | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index ef5b136..e8f8a4a 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -32,7 +32,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | | Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | -| Craters Edge, Pinesprings, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | +| Craters Edge, Pine Springs, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | | Items: newspaper, orb, coal, granite, silver dragon object, Scroll of Fireball, black thread, candles, gold statues, moon crystal, arm bone, Founder's Day poster, auroch sculpture, hourglass, false necklaces, biggening juice, porcelain/quartz dragons, mechanical bird, knife, black coins | Covered in [Minor Items from Day 57](../items/minor-items-day-57.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Clues: 17th March 991, 2842 AP, 3480, 2034 AP, 1050 years, first birth, 12:30 meeting, someone scrying Dirk | Added to [Timeline](../timeline.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), and relevant pages. | | Gods list: Kasha, Throngore 4/13, Shylow, Sjorra, Law 4/13, [unclear: Ice?], Hydran, Noxia, Squwal, Bridske 4, Attabre 4 | Major names have standalone/existing pages; uncertain/minor names in [Minor Figures from Day 57](../people/minor-figures-day-57.md). | diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index ecf0480..61209ef 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -13,7 +13,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Standalone Pages Created -- [Dollarmen](../factions/dollarmen.md), [Brookville Springs](../places/brookville-springs.md), [Grand Towers](../places/grand-towers.md), [Bridget's Doors](../concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md), [Wrath](../people/wrath.md), [Icefang](../people/icefang.md), [Valenthielles Prison](../places/valenthielles-prison.md), [Highden Fell](../places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md), [Azureside and Heartmoor](../places/azureside-heartmoor.md), [Snake Slayers](../items/snake-slayers.md), [Searu's Arrow](../items/searus-arrow.md), and [Searu](../people/searu.md). +- [Dollarmen](../factions/dollarmen.md), [Brookville Springs](../places/brookville-springs.md), [Grand Towers](../places/grand-towers.md), [Bridget's Doors](../concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md), [Wrath](../people/wrath.md), [Icefang](../people/icefang.md), [Valenthielles Prison](../places/valenthielles-prison.md), [Highden](../places/highden.md), [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md), [Azureside](../places/azureside.md), [Snake Slayers](../items/snake-slayers.md), [Searu's Arrow](../items/searus-arrow.md), and [Searu](../people/searu.md). ## Existing Pages Updated or Used @@ -30,6 +30,6 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I - Seneshell on `day-36` was not merged with Mr Seneshell / snake-bodied boss from `day-35`. - Carduneld / Cardunel was not silently merged with Valenth Cardonald beyond alias/search coverage. - Envi in Coalmont Falls was not silently merged with Ennuyé despite existing alias overlap. -- Perodika is treated as likely related to Peridita because titles match, but the variant remains explicit. +- Perodita is treated as likely related to Peridita because titles match, but the variant remains explicit. - Poison Dragon, female lake monstrosity, lithe veridian dragon, toothless/no-lip dragon, little dragon, and black smoke dragon were not merged with Peridita. - Sir [uncertain: Counting Fibo], [unclear] Cezzerliksygh, and [unclear] Neutron to chitra Entoldust Darkness Born retain uncertain names. diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 910f06a..66ac3c9 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -18,13 +18,13 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | | Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre / Altabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre / Altabre](../people/attabre-altabre.md). | -| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | +| Ruby Eye, Envi / Envy, Joy, Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | | Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | | Offering responses, statue inscriptions, Trixus ring inscription, Badger phrase | [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | -| Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Hartwall, Emmerave and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | +| Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Hartwall, Emmerane and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | | Black-feather communication brick, Domain of Pengalis coin, feather relics, coins/currencies, Treamon's skull, flesh-crafting wand, Trixus's brass rings, time device and other specific resources | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Altabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Hartwall | [Open Threads](../open-threads.md), plus related standalone pages. | @@ -36,7 +36,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Papa'e Munera / papael'munsera / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | | Garadwal feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadwal banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | | Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | -| Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Grincray / Grim & Cray, Mashir, Claymeadows, Harthden, Arrofarc, Aegis on Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md) and open threads. | +| Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Grincray / Grim & Cray, Mashir, Claymeadow, Harthden, Arafar, Aegis-On-Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md) and open threads. | | Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadwal's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | | Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), and related standalone pages. | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 1f88a7e..787d353 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -79,7 +79,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Five runes in a pentagram around a twenty-foot statue | `data/4-days-cleaned/day-36.md` | Underwater chamber associated with !Asmoorade! at Coalmont Falls. | | Ticking rune door | `data/4-days-cleaned/day-36.md` | Door in freshly cut Coalmont facility corridor; would not open normally. | | `My Child` | `data/4-days-cleaned/day-36.md` | Icefang said this while passing Hartwall during the frost-dragon intervention. | -| `all of the Pacts are off` | `data/4-days-cleaned/day-41.md` | Perodika / green smoke dragon declaration while possessing people. | +| `all of the Pacts are off` | `data/4-days-cleaned/day-41.md` | Perodita / green smoke dragon declaration while possessing people. | ## Riddles and Layout Clues @@ -106,7 +106,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Hartwall auction | Grand Auction House auction occurred around 2 pm; `11:00` also noted | `data/4-days-cleaned/day-32.md` | | Seaward Barrier flickers | began 2-3 weeks earlier, increasing, random, longest 3 seconds, clustered around 9 am, none around midnight, moving horizontally toward pylon | `data/4-days-cleaned/day-12.md` | | Azureside evacuation | evacuation would take about half a day | `data/4-days-cleaned/day-41.md` | -| Perodika influence range | light returned to normal around ten miles away | `data/4-days-cleaned/day-41.md` | +| Perodita influence range | light returned to normal around ten miles away | `data/4-days-cleaned/day-41.md` | ## Day 42-44 Clues and Inscriptions diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 3347887..83e6c50 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -38,7 +38,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - Elven creation theology described six Excellences after light, dark, life, gods, and twelve gods. - Shandra identified a six-armed creature as an Excellence. -- One fish-like creature threatened destruction around the Turisle Point and Sahuagin crisis. +- One fish-like creature threatened destruction around the Torisle Point and Sahuagin crisis. - A fire Excellence was attacking Highden and hostile to elves. - The Huntmaster was later found fighting an Excellence, and the party recorded `Deed Excellence!` as defeat or deed against it. - Dunensend treated `agents of the excellence` as agents of Infestus. @@ -76,7 +76,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - [The Pact](../factions/the-pact.md) - [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) - [Shield Crystal Mission](../events/shield-crystal-mission.md) -- [Turisle Point](../places/turisle-point.md) +- [Torisle Point](../places/torisle-point.md) - [Dunensend](../places/dunensend.md) - [Elemental Prisons](elemental-prisons.md) diff --git a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md index 9ee7c43..4b5f689 100644 --- a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md +++ b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md @@ -28,7 +28,7 @@ The Goldenswell prison operation was an off-the-books detention and prisoner-tra - The captain said orders came from the Duke's office, a Duke's emissary fed Lady Thorpe, and the Duke's personal guard had brought prisoners in. - A woman with a bag on her head, a snake-bodied man, Duke's emissaries, Duke's personal guard, and yellow guards with a half-sun tattoo obscured by a waterfall are implicated. - Off-the-books prisoners had been held a few times, with several people taken each week over the prior month. -- Prisoners or prisoner sources linked to the network included Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, Hartwall, Lady Thorpe, the Elementarium, Baytail, a half-elven woman related to the twin Justicar guards, a kobold in recognizable tattered robes, a pale halfling woman with tiger-eye-like eyes, and several council members rescued on Day 35. +- Prisoners or prisoner sources linked to the network included Claymeadow, Stronghedge, Redford Point, Seaward, Gnoll, Hartwall, Lady Thorpe, the Elementarium, Baytail, a half-elven woman related to the twin Justicar guards, a kobold in recognizable tattered robes, a pale halfling woman with tiger-eye-like eyes, and several council members rescued on Day 35. - On Day 35, a prisoner cart carried magically asleep or drugged captives including Lady Katherine Cole, the Elementarium, Mr TJ Biggins, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, and Lady Yadreya Egrine. - Rescued council members had dried blood, eardrum injuries, deafness, and a pupa or large grub lodged in an ear canal. - Removing and killing Lady Cole's grub restored her memories, ended the feeling that she was being watched, and revealed that affected prisoners had forgotten The Guilt was a council member and had been told not to trust him. @@ -52,5 +52,5 @@ The Goldenswell prison operation was an off-the-books detention and prisoner-tra - Are the snake-bodied boss, Lady Envy, llamia, Noxia-linked serpent talisman, and memory grubs part of one faction? - Who used the grubs to erase The Guilt from council memory and turn council members against him? - Did the menagerie supply the grubs, lose them, or investigate them after the fact? -- What happened to the remaining prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and the still-unidentified cells? +- What happened to the remaining prisoners from Claymeadow, Stronghedge, Redford Point, Seaward, Gnoll, and the still-unidentified cells? - Who else among the old wizards or dragons had memories altered by ear-grub-like intervention? diff --git a/data/6-wiki/events/tri-moon-countdown.md b/data/6-wiki/events/tri-moon-countdown.md index 5a90757..b5e7fb4 100644 --- a/data/6-wiki/events/tri-moon-countdown.md +++ b/data/6-wiki/events/tri-moon-countdown.md @@ -21,7 +21,7 @@ The Tri-moon countdown tracks the approach of the Tri-moon and shard crisis, rea ## Known Details -- The Tri-moon affects water at Turisle Point, where locals expect high water. +- The Tri-moon affects water at Torisle Point, where locals expect high water. - The shard crisis requires a repelling device and may require the Barrier to go down. - The countdown moves through the coastal, Pact, and shield crystal mission sequence. - Chronology preserves a date discrepancy: day-21 metadata says `6th Jan 1002`, while day-22 says `6th Jan 1012`. diff --git a/data/6-wiki/factions/dollarmen.md b/data/6-wiki/factions/dollarmen.md index 5dd4a1b..34b2fef 100644 --- a/data/6-wiki/factions/dollarmen.md +++ b/data/6-wiki/factions/dollarmen.md @@ -32,7 +32,7 @@ The Dollarmen, also written Dollarmans, are assassins or organized raiders encou ## Related Entries - [Brookville Springs](../places/brookville-springs.md) -- [Azureside and Heartmoor](../places/azureside-heartmoor.md) +- [Azureside](../places/azureside.md) - [Minor Figures from Days 36, 40, and 41](../people/minor-figures-days-36-40-41.md) ## Open Questions diff --git a/data/6-wiki/factions/sahuagin-fish-men.md b/data/6-wiki/factions/sahuagin-fish-men.md index 45f27f7..c458b7d 100644 --- a/data/6-wiki/factions/sahuagin-fish-men.md +++ b/data/6-wiki/factions/sahuagin-fish-men.md @@ -20,7 +20,7 @@ The Sahuagin or fish men were assembling copper weapons, feared or followed Boss ## Known Details -- Fish people were found making copper weapons in old-town huts near Turisle Point. +- Fish people were found making copper weapons in old-town huts near Torisle Point. - They were connected to Kingly/Boss and an Excellence threat. - They had Kiendra's scepter conch. - The suspicious shipment thread included copper-tipped trident heads and waterproof paper for salt water only. @@ -34,7 +34,7 @@ The Sahuagin or fish men were assembling copper weapons, feared or followed Boss - [Kiendra](../people/kiendra.md) - [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) -- [Turisle Point](../places/turisle-point.md) +- [Torisle Point](../places/torisle-point.md) - [Excellences](../concepts/excellences.md) ## Open Questions diff --git a/data/6-wiki/factions/the-pact.md b/data/6-wiki/factions/the-pact.md index 181bdaf..f67c2d4 100644 --- a/data/6-wiki/factions/the-pact.md +++ b/data/6-wiki/factions/the-pact.md @@ -26,7 +26,7 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - It is linked to five wizards and a meeting at a Newhaven pub. - Shandra explained that it protects people in exchange for protecting the Barrier. -- Local leaders include Shandra at Turisle Point, Tiana/Taina in Freeport, and Alana by report. +- Local leaders include Shandra at Torisle Point, Tiana/Taina in Freeport, and Alana by report. - Pact artifacts include a Pact Scepter and eight scepter conches. - The security council and Grand Towers discussions rely on Pact history and responsibilities. - Merfolk outside the Barrier have an empire and diplomatic missions; Princess Aquunea/Aquana is associated with nobility beyond the Barrier. @@ -35,7 +35,7 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - The Pact has a route outside the Barrier; leaders believe a birth curse exists outside or around the Barrier and that the Barrier protects them from it. - Baytail Accord's first baby girl in 20 years was born after the crisis, with Princess Aquana present. - Day 40 confirms Alana as the Pact leader at Azureside / Heartmoor while Carl was absent and the guild was trying to run town affairs. -- Day 41 mentions the Pact Keeper and a matriarch no one had seen leave her domain, immediately before Perodika declared all Pacts off. +- Day 41 mentions the Pact Keeper and a matriarch no one had seen leave her domain, immediately before Perodita declared all Pacts off. - The party guided Azureside evacuation and coordinated messages with The Basilisk, Cardonald, and Rubyeye while the Pacts appeared under direct attack. ## Timeline @@ -47,7 +47,7 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - `day-23`: Merfolk diplomatic and beyond-Barrier Pact context expands the Pact's geography. - `day-26`: The party saves Baytail Accord, joins Pact leaders, and learns about birth records, outside routes, and regional reports. - `day-40`: Alana and the guild try to run Heartmoor/Azureside amid plague and dragon-payment pressure. -- `day-41`: Perodika declares all Pacts off, threatening every town and forcing evacuation toward Threeleigh. +- `day-41`: Perodita declares all Pacts off, threatening every town and forcing evacuation toward Threeleigh. ## Related Entries @@ -63,4 +63,4 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - What are the legal or magical limits of Pact authority? - What is the birth curse, and why did births inside the Barrier recently stop? - What does the glowing parchment under glass at Baytail Accord preserve or enforce? -- What are the Pact Keeper and matriarch's exact powers, and can Perodika truly void all Pacts? +- What are the Pact Keeper and matriarch's exact powers, and can Perodita truly void all Pacts? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 744751f..86df932 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -137,18 +137,52 @@ This wiki indexes searchable campaign material extracted from the cleaned day na ## Places +- [Pentacity States Map](<../7-reference-images/Pentacity States Map.png>) - [Everchard](places/everchard.md) - [Hostel](places/hostel.md) - [Barrier Observatory](places/barrier-observatory.md) - [Seaward](places/seaward.md) +- [Fairshaw](places/fairshaw.md) +- [Freeport](places/freeport.md) +- [Bonstock](places/bonstock.md) +- [Redford Point](places/redford-point.md) +- [Hartwall](places/hartwall.md) +- [Provista](places/provista.md) +- [Stonerampart Earthwise](places/stonerampart-earthwise.md) +- [Highden](places/highden.md) +- [Goldenswell](places/goldenswell.md) +- [Stronghedge](places/stronghedge.md) +- [Mosscourt](places/mosscourt.md) +- [Hillcaster](places/hillcaster.md) +- [Brookville Springs](places/brookville-springs.md) +- [Claymeadow](places/claymeadow.md) +- [Ironcroft Firewise](places/ironcroft-firewise.md) +- [Salvation](places/salvation.md) +- [Sunset Vista](places/sunset-vista.md) +- [Donly](places/donly.md) +- [Threeleigh](places/threeleigh.md) +- [Dunensend](places/dunensend.md) +- [Aegis-On-Sands](places/aegis-on-sands.md) +- [Arafar](places/arafar.md) +- [Heartmoor](places/heartmoor.md) +- [Azureside](places/azureside.md) +- [Lake Azure](places/lake-azure.md) +- [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) +- [Emmerane](places/emmerane.md) +- [Lyndgale](places/lyndgale.md) +- [Pine Springs](places/pine-springs.md) +- [Lake Fishtail](places/lake-fishtail.md) +- [Fishtail Point](places/fishtail-point.md) +- [Twolodge](places/twolodge.md) +- [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md) +- [Riversmeet](places/riversmeet.md) +- [Grand Towers](places/grand-towers.md) +- [Baytail Accord](places/baytail-accord.md) +- [Torisle Point](places/torisle-point.md) +- [Dunhold Cache](places/dunhold-cache.md) - [Salt Dragon Prison](places/salt-dragon-prison.md) - [Hidden Laboratory](places/hidden-laboratory.md) - [Cardonald's Desert Laboratory](places/desert-laboratory.md) -- [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md) -- [Dunensend](places/dunensend.md) -- [Freeport](places/freeport.md) -- [Turisle Point](places/turisle-point.md) -- [Dunhold Cache](places/dunhold-cache.md) - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md) - [Minor Places from Day 46](places/minor-places-day-46.md) - [Sunsoreen / Snowscreen](places/sunsoreen.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 5adc6bb..b178e7c 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -55,7 +55,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Guradwal picture; later Garadwal's feather functioned as one-person communication. | | Papa'e Munera black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | | Garadwal's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadwal. | -| Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, lab, Grand Towers sites, Dunnendale gate, Arrofarc mines, Goldenswell impact site, Menagerie, Ashhellier, and pylons. | +| Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, lab, Grand Towers sites, Dunnendale gate, Arafar mines, Goldenswell impact site, Menagerie, Ashhellier, and pylons. | | Void orb / sphere | party | `day-44` | `data/4-days-cleaned/day-44.md` | Left after the void entity recognized Brotor's eye and vanished; party needs eight spheres total. | | Powerful charged shield crystal and scrolls | party | `day-57` | `data/4-days-cleaned/day-57.md` | Given by Infestus's wife before Brass City travel; exact scrolls not listed. | | Scroll of Fireball | Geldrin | `day-57` | `data/4-days-cleaned/day-57.md` | Found at the cat tavern table. | @@ -85,7 +85,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl |---|---|---|---| | Baroness forces | promised | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) promised to loan some forces and gave laboratory permission/information. | | Huntmaster aid | promised | `data/4-days-cleaned/day-20.md` | Huntmaster Thrune agreed to provide aid against the Excellence. | -| Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | The Basilisk was arranging contact in Fairshaws or Freeport carrying Winter Rose. | +| Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | The Basilisk was arranging contact in Fairshaw or Freeport carrying Winter Rose. | | Mother-of-pearl elemental chariot auction | possibly occurred, identity uncertain | `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it; a chariot at the Hartwall auction was tied to an Excellence and taken to the Palace, but identity with the mother-of-pearl chariot is not confirmed. | | Jelly Fish Broach retrieval | promised attempt | `data/4-days-cleaned/day-36.md` | Mercy's contractor wanted the party to retrieve it from Grand Towers floor 74 for a female buyer outside the Barrier. | | Free Icefang's ice elemental | promised to water elementals | `data/4-days-cleaned/day-36.md` | Water elementals required this before helping with dragon flames. | diff --git a/data/6-wiki/items/freeport-auction-lots.md b/data/6-wiki/items/freeport-auction-lots.md index 1b8e257..3f43fbc 100644 --- a/data/6-wiki/items/freeport-auction-lots.md +++ b/data/6-wiki/items/freeport-auction-lots.md @@ -2,8 +2,9 @@ title: Freeport Auction Lots type: item group aliases: - - auction house items - Freeport auction house lots + - auction house items + - Fairport auction house lots [map typo] first_seen: day-31 last_updated: day-31 sources: diff --git a/data/6-wiki/items/minor-items-days-36-40-41.md b/data/6-wiki/items/minor-items-days-36-40-41.md index 82e74a5..4d3cc02 100644 --- a/data/6-wiki/items/minor-items-days-36-40-41.md +++ b/data/6-wiki/items/minor-items-days-36-40-41.md @@ -23,7 +23,7 @@ sources: | White Rune-like saltwater sensation, brain-tickle visions, Dirk's rod, dead ear grub, black dragon book from Ruby Eye's lab | Highden battle clues/resources. | Inventory/open threads/memory-grub page. | | Snowflake coin | One-use portal to Bleakstorm. | [Party Inventory](../inventories/party-inventory.md). | | Steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, ancient Dull Peake sign, five runes in a pentagram, ticking-rune door, upright hand on plinth, Envi tube, purple cores | Coalmont Falls / !Asmoorade! facility details. | [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | -| Abandoned bushels, dragon offerings/payments, seaweed stone, contagious magically linked plague concoction, fireball, two shoes | Azureside plague and attack details. | [Azureside and Heartmoor](../places/azureside-heartmoor.md) / rollup. | +| Abandoned bushels, dragon offerings/payments, seaweed stone, contagious magically linked plague concoction, fireball, two shoes | Azureside plague and attack details. | [Azureside](../places/azureside.md) / rollup. | | Bok and Bosh | Blackjack clubs made from scorpion leather and jellyfish tendril cords. | [Party Inventory](../inventories/party-inventory.md) unclear custody. | | Door guard armour, boss's snake/wasp/jellyfish/scorpion rings, Geldrin's skin book, cards | Dollarmen clues/resources. | [Dollarmen](../factions/dollarmen.md), open thread. | | Crossbow / Snake Slayers | Frilleshanks streamlined it; Bosh later took a crossbow from a chest. | [Snake Slayers](snake-slayers.md). | diff --git a/data/6-wiki/items/snake-slayers.md b/data/6-wiki/items/snake-slayers.md index bf44e02..d3c6d31 100644 --- a/data/6-wiki/items/snake-slayers.md +++ b/data/6-wiki/items/snake-slayers.md @@ -25,7 +25,7 @@ Snake Slayers is a crossbow or anti-dragon weapon that Frilleshanks helped strea ## Related Entries -- [Azureside and Heartmoor](../places/azureside-heartmoor.md) +- [Azureside](../places/azureside.md) - [Party Inventory](../inventories/party-inventory.md) ## Open Questions diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 3970517..9410236 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -97,7 +97,7 @@ sources: - Why was the Tri-moon visible during the day 16 hours early, and why did Jin-Loo's records list 104 AD, 339 AD, 629 AD, and 1012 AD despite saying the event happened three times in 1,000 years? - Who runs the [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): the Duke's office, the woman with a bag on her head, the snake-bodied emissary, Lady Envy, Noxia-linked agents, or another faction? - Why did memory grubs erase council members' memories of [The Guilt](concepts/excellences.md), make them distrust him, and create a feeling of being watched? -- What became of the remaining Goldenswell prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, Baytail, the Elementarium, the half-elf sister of the twin Justicars, and the pale halfling with tiger-eye eyes? +- What became of the remaining Goldenswell prisoners from Claymeadow, Stronghedge, Redford Point, Seaward, Gnoll, Baytail, the Elementarium, the half-elf sister of the twin Justicars, and the pale halfling with tiger-eye eyes? - What is [TJ Biggins](people/tj-biggins.md)'s outside-dome context: Plantation of Newt [unclear] Vain, Lady Envy's sand dome, Loose Teeth, greenscale family, Blackscales tribute, Bumblebeers, Bleakshrouvers, mining, fire and earth raids, and paid entry into the dome? - What happened at Lady Yadreya Egrine's menagerie, and who stole the experimental creatures later recognized as memory grubs? - What does Morgana's forced-feeling kiss vision of a laughing female dragon, possibly the Peridot Queen, mean for Elementarium's green eyes and the silver dragon man who cast a spell on him? @@ -111,14 +111,14 @@ sources: - What did the recent visitors remove from [Valenthielles Prison](places/valenthielles-prison.md), and what is the Joy-like dark female figure? - Who is the skull-throne woman who accepted Garadwal for Soot, and what claim did she already have on Soot? - What is destabilizing [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), and what happened to Envi, Rumplky, the purple-cored automatons, the upright hand, and Garaduel? -- What caused Heartmoor's contagious magically linked plague, Azureside's diseased land, and the venomous female lake figure: the Poison Dragon, Perodika, Dollarmen, dragons, or another force? +- What caused Heartmoor's contagious magically linked plague, Azureside's diseased land, and the venomous female lake figure: the Poison Dragon, Perodita, Dollarmen, dragons, or another force? - What hierarchy sent the [Dollarmen](factions/dollarmen.md) boss to the `easy town`, and what is the Council with Mercy from Brookville Springs? - What exactly are [Snake Slayers](items/snake-slayers.md), and is Bosh's crossbow the same weapon? -- Are Perodika, [Peridita](people/peridita.md), the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother dragon one being, related beings, or separate threats? -- What is the day-41 blocker that interfered with messages and teleportation, and does it share range or source with Perodika's ten-mile smoke influence? +- Are Perodita, [Peridita](people/peridita.md), the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother dragon one being, related beings, or separate threats? +- What is the day-41 blocker that interfered with messages and teleportation, and does it share range or source with Perodita's ten-mile smoke influence? - What happened to Aurouze and his two companions after the Savannah hunt? - What trapped ally, corruptions, and Goliath resistance did [Searu](people/searu.md)'s flame vision point toward while the dragon was away? -- What are the simultaneous day-41 crises at Emmeraine, Dunensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? +- What are the simultaneous day-41 crises at Emmerane, Dunensend, Heartmoor, Snow Sorrow, Pine Springs, and Grand Towers, and are they coordinated? - What price or betrayal risk comes with the Peridot Queen's aid through The Basilisk? - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused Eliana's cracked-eggshell dragon dream and temporary mental-stat disadvantage? @@ -146,7 +146,7 @@ sources: - What blocks lost knowledge retrieval, and is it tied to flesh-crafting wands, Barrier magic, or the Riversmeet memory-interference spell? - What are the Heathmoor plagues if they are not barrier sickness, and why are the people not healing with the land? - Why are Ruby Eye and Errol possibly not on the same plane? -- What do Cardonald's teleportation-circle destinations reveal about undefended prisons, the lab, Grand Towers, Menagerie, Ashhellier, and broken Aegis on Sands? +- What do Cardonald's teleportation-circle destinations reveal about undefended prisons, the lab, Grand Towers, Menagerie, Ashhellier, and broken Aegis-On-Sands? - Who built Morgana's statue, and how fast did her Goliath-child healing become legend? - What is in Hartwall's old lab, and how does its key help access the Howling Tombs? - How should Geldrin's arcane Draconic teleport/seeing scroll be used to understand where `they` went? diff --git a/data/6-wiki/people/freeport-baroness.md b/data/6-wiki/people/freeport-baroness.md index bbffea8..2bbee8a 100644 --- a/data/6-wiki/people/freeport-baroness.md +++ b/data/6-wiki/people/freeport-baroness.md @@ -2,6 +2,8 @@ title: The Freeport Baroness type: person aliases: + - Freeport Baroness + - Fairport Baroness [map typo] - Baroness - Baroness [Kavaliliere] - Heatherhall diff --git a/data/6-wiki/people/galimma-peridot-queen.md b/data/6-wiki/people/galimma-peridot-queen.md index 6be972e..5c0d515 100644 --- a/data/6-wiki/people/galimma-peridot-queen.md +++ b/data/6-wiki/people/galimma-peridot-queen.md @@ -25,7 +25,7 @@ Galimma, the Peridot Queen, is a self-described master spy and dangerous green/p - On `day-41`, The Basilisk said the Peridot Queen had contracted him to help while acting for herself. - On `day-42`, Galimma offered information if the party agreed to leave her alone to choose mates, live freely, and put a warning sign on her lair. - She candidly said she might kill husbands and the odd person, shed some gold, and would be neither good nor evil. -- She named or described remaining dragons connected to Lortesh and Perodika, including Emeredge, Willowspra / Willow-wispa, Toxicanthus, Rotwrake, and Verdigrim / Verdugrim. +- She named or described remaining dragons connected to Lortesh and Perodita, including Emeredge, Willowspra / Willow-wispa, Toxicanthus, Rotwrake, and Verdigrim / Verdugrim. ## Related Entries diff --git a/data/6-wiki/people/lady-elissa-hartwall.md b/data/6-wiki/people/lady-elissa-hartwall.md index 142fda8..ce9bdfd 100644 --- a/data/6-wiki/people/lady-elissa-hartwall.md +++ b/data/6-wiki/people/lady-elissa-hartwall.md @@ -38,7 +38,7 @@ Lady Elissa Hartwall is a regional noble or military authority connected to Hart - Lady Elissa Hartwall transformed in the courtyard and was slightly bigger than the Peridot Queen. - Lady Elissa Hartwall's Raven had exploded, and several explosions occurred across her city. - Lady Elissa Hartwall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. -- Day 42 records Lady Elissa Hartwall away airwise to help with the battle heading to Emmerave. +- Day 42 records Lady Elissa Hartwall away airwise to help with the battle heading to Emmerane. - Day 43 records Lady Elissa Hartwall remembering Icefang, gold dragons, and her and Icefang's assault on Perodita; she also reported forces from Dumnensend, the Menagerie lockdown, Heathmoor plagues, and Goldenswell politics. - Lady Elissa Hartwall transformed into a dragon at Ashkellon to catch the party after teleportation. - Kaylara is Lady Elissa Hartwall. diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index 0c3e272..4fa3a8c 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -55,7 +55,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Scumi: goblin with a bag of skulls who tried to survey or enter the prison. - Gary: corrupted sphinx heading toward Grand Towers in skull visions. - Baytail: accused head of the Underbelly, seen as a Goldenswell prisoner. -- Isabella Neegale and the Earl of Clay Meadows: possible identity anchors for the pale-skinned halfling prisoner with brown speckled tiger-eye eyes. +- Isabella Neegale and the Earl of Claymeadow: possible identity anchors for the pale-skinned halfling prisoner with brown speckled tiger-eye eyes. - Twin Justicar guards: their sister may be the half-elven woman seen among Goldenswell prisoners. ## Day 35 Figures and Prisoner-Transport Figures diff --git a/data/6-wiki/people/minor-figures-days-36-40-41.md b/data/6-wiki/people/minor-figures-days-36-40-41.md index b6f1473..f657231 100644 --- a/data/6-wiki/people/minor-figures-days-36-40-41.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -41,7 +41,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Suggested future contact. | Standalone entry; identity now confirmed. | | Highden priest, Earl, Laura, Sevor-ice | Highden contacts and odd frog/Sevor-ice moment. | Rollup. | | Scurry, Granny, Lady Coke | Highden Underbelly contacts. | [Underbelly](../factions/underbelly.md) and status. | -| Gerald, Captain Briarthorn, Gary, Shep | Highden / Three Full Moons figures. | [Highden Fell](../places/highden-fell.md) and rollup. | +| Gerald, Captain Briarthorn, Gary, Shep | Highden / Three Full Moons figures. | [Highden](../places/highden.md) and rollup. | | Soot, pale skull-throne woman, Tirar | Highden battle and visions. | NPC Status and open threads. | | Valentenhide / Valentinhide, Kasher | Void elemental bargain terms. | Open thread and rollup. | | Lord Bleakstorm, Provita | Dead outside-dome messenger and birth-vision reference. | Inventory / rollup. | @@ -55,7 +55,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi |---|---|---| | Sir [uncertain: Counting Fibo] | Supposed to remove the pit made against the merfolk. | Open thread; uncertain alias. | | Poison Dragon | Morgana connected plagued Azureside earth to this dragon. | Open thread; not merged with Peridita. | -| Alana and Carl | Pact leader and absent town authority around Heartmoor. | [The Pact](../factions/the-pact.md), [Azureside and Heartmoor](../places/azureside-heartmoor.md). | +| Alana and Carl | Pact leader and absent town authority around Heartmoor. | [The Pact](../factions/the-pact.md), [Azureside](../places/azureside.md). | | Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat | Azureside town hall figures. | Rollup/status. | | Paralitha | Had not seen plague like this. | Rollup. | | Female figure above the lake | Scorpion-tail, snake-head monstrosity. | Open thread; not merged. | @@ -73,8 +73,8 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Revived dwarf and jeweller reincarnated as halfling | Post-battle changed figures. | NPC Status. | | Longfury | Gnoll who took charge at Cheery & Cherry and taunted dragon. | NPC Status / rollup. | | Pact Keeper and matriarch | Domain/Pacts thread; matriarch never seen leaving. | [The Pact](../factions/the-pact.md) and open thread. | -| Perodika | Green smoke dragon, Choking Death, Mother of many. | [Peridita](peridita.md), with variant preserved. | +| Perodita | Green smoke dragon, Choking Death, Mother of many. | [Peridita](peridita.md), with variant preserved. | | The Basilisk, Cardonald, Rubyeye, Dirk's dad | Messaging and teleportation coordination. | Existing pages/status. | | Grinan, Hayes, Aurouze and two companions | Savannah settlement contact, dog, and missing hunters. | Status / open thread. | | Old lady / settlement leader / Searu | Flame vision and Searu's Arrow. | [Searu](searu.md). | -| Father at Dunensend, Hearthsmoor fisherman, interested party, Peridot Queen, Godmount | Regional crisis and aid report figures. | Rollup/open threads. | +| Father at Dunensend, Heartmoor fisherman, interested party, Peridot Queen, Godmount | Regional crisis and aid report figures. | Rollup/open threads. | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index b1cd59b..f7a44d9 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -48,7 +48,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre / Altabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | | Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | -| Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcraft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | +| Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcroft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | | Earl of Goldenswell, Hartwall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | | Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadwal feather conversation and Benu-summoning details. | Rollup/open thread. | | Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | Status rollup. | diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 65d8bf9..8e7e430 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -4,7 +4,6 @@ type: dragon or person aliases: - Perodita - Perodetta - - Perodika - The Choking Death - The whispers in the dark - Mother of many @@ -38,9 +37,9 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Azureside records tied Green Dragons to the destruction of the Goliaths and lack of contact for about 900 years. - On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. - Day 40 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. -- Day 41 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. -- Day 42 council history said the Goliath Empire killed Perodika's parents and built a city on their bones; Perodita later headed toward Hartwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. -- Galimma's dragon-family information preserves Perodika's children or related dragons with uncertain names and locations. +- Day 41 names Perodita in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. +- Day 42 council history said the Goliath Empire killed Perodita's parents and built a city on their bones; Perodita later headed toward Hartwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. +- Galimma's dragon-family information preserves Perodita's children or related dragons with uncertain names and locations. - Day 43 says Lady Elissa Hartwall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. - Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. - Day 48 reveals Verdigrim originally invited the party because Perodita told him to kill them and promised to leave his people alone. @@ -58,7 +57,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Is Peridita the `mother` from the old warning, or could that refer to Duncan's mage? - What is her exact relationship to Lortesh / Kortesh Gravesings and the Green Dragons? - Is the laughing female dragon / Peridot Queen vision connected to Peridita, or is it a separate dragon figure? -- Are Perodika, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? +- Are Perodita, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? - What does freeing Perodita require from Bridge, and what does releasing Valentenhide under the god rule cost? - Why does Perodita want flesh-crafting wands? - Why did Perodita pressure Verdigrim to kill the party, and what would she stop doing if he obeyed? diff --git a/data/6-wiki/people/searu.md b/data/6-wiki/people/searu.md index 0c54c95..11b1f9e 100644 --- a/data/6-wiki/people/searu.md +++ b/data/6-wiki/people/searu.md @@ -14,7 +14,7 @@ sources: ## Summary -Searu is the transformed identity or power of the old leader at the Savannah hunters' settlement who advised against a headlong attack on Perodika and revealed Searu's Arrow. +Searu is the transformed identity or power of the old leader at the Savannah hunters' settlement who advised against a headlong attack on Perodita and revealed Searu's Arrow. ## Known Details diff --git a/data/6-wiki/people/shandra.md b/data/6-wiki/people/shandra.md index fdbb01a..e4322ef 100644 --- a/data/6-wiki/people/shandra.md +++ b/data/6-wiki/people/shandra.md @@ -11,7 +11,7 @@ sources: ## Summary -Shandra is a [Pact](../factions/the-pact.md) leader in Turisle Point who explained Pact responsibilities and entrusted or gave the Pact Scepter to the party. +Shandra is a [Pact](../factions/the-pact.md) leader in Torisle Point who explained Pact responsibilities and entrusted or gave the Pact Scepter to the party. ## Known Details @@ -28,4 +28,4 @@ Shandra is a [Pact](../factions/the-pact.md) leader in Turisle Point who explain - [The Pact](../factions/the-pact.md) - [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) - [Excellences](../concepts/excellences.md) -- [Turisle Point](../places/turisle-point.md) +- [Torisle Point](../places/torisle-point.md) diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index cf3145c..2fe5553 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -151,9 +151,9 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Void fragment/creature | freed or contactable, reliability uncertain | `data/4-days-cleaned/day-16.md` | Released a contact circle of obsidian after the party tried to let it out. | | Elemental prisoners / eight beings | trapped or exploited | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-15.md` | Barrier system may use quasi-elemental prisoners as batteries. | | Water elementals chained to chariot | chained, with party, pending auction | `data/4-days-cleaned/day-22.md` | They wanted something [unclear] and agreed to come on the big boat. | -| Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaws on the Earl's orders under treason accusations. | +| Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaw on the Earl's orders under treason accusations. | | [Silver](silver.md) | soul destroyed, construct taken over | `data/4-days-cleaned/day-23.md` | Dirk threw Silver into the Barrier, destroying the soul; Cardonal then took over the construct. | -| Goldenswell off-the-books prisoners | captive or partly rescued | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Hartwall were identified; later transport rescue recovered several council members. | +| Goldenswell off-the-books prisoners | captive or partly rescued | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Prisoners from Claymeadow, Stronghedge, Redford Point, Seaward, Gnoll, and Hartwall were identified; later transport rescue recovered several council members. | | [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | imprisoned then released/curse unresolved | `data/4-days-cleaned/day-36.md` | Wrath put her in the ground with imprisonment using a silver dragon statue. | | Valenthielles | left in prison by recent visitors | `data/4-days-cleaned/day-36.md` | Dark prison entity said visitors cleaned up quickly and left Valenthielles there. | | Icefang's ice elemental | imprisoned at Rimewock / Rimewatch | `data/4-days-cleaned/day-36.md` | Water elementals required the party to agree to free it. | @@ -172,7 +172,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [The Chorus](the-chorus.md) | strange ally/source | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-07.md` | Explained memory magic and watched remaining people near the Barrier. | | [The Basilisk](the-basilisk.md) | recurring contact | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md`, `data/4-days-cleaned/day-23.md`, `data/4-days-cleaned/day-30.md` | Bodyguard to Lady Catherine Cole, arranging a Winter Rose contact; later receives party messages and may help with mage support. | | Elementharium/Clementarium | Seaward expert | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md` | Explained quasi-elementals and gave Ruby Eye skull. | -| [Shandra](shandra.md) | Turisle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | +| [Shandra](shandra.md) | Torisle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | | [Tiana/Taina](tiana-taina.md) | Freeport Pact leader/coordinator | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Coordinated forces against the Excellence. | | [Xinquiss/Zinquiss](xinquiss-zinquiss.md) | potion, shard, and auction contact | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-30.md`, `data/4-days-cleaned/day-31.md` | Helped with potions, joined sea operation, planned to auction the chariot, was tasked to retrieve the moon shard, and appeared at the auction with a cart. | | Jin-Loo | tortle teleport mage/contact | `data/4-days-cleaned/day-32.md` | Teleported the party to Goldenswell and left a ring so he could find them again. | @@ -203,12 +203,12 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Sahuagin / Kingly / six-armed fish creature | hostile faction/threat | `data/4-days-cleaned/day-19.md`, `data/4-days-cleaned/day-20.md` | Had Kiendra's conch and prepared copper weapons. | | Excellence | hostile type, one defeated | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Can be slain; one fought Huntmaster and was defeated or dealt with. | | Perodetta | regional threat | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Spawn amassing near Azure-side; Heartmoor illness may connect. | -| Fairshaws/Fairport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | +| Fairshaw/Freeport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | | [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | | Lady Envy | llamia boss | `data/4-days-cleaned/day-35.md` | Named by TJ Biggins as boss of the llamia; relation to Excellence/sin-title pattern unresolved. | | [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Lady Evalina Hartwall / Mama Hartwall, and was shouted back into Ruby Eye's eye. | | [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-40.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | -| [Peridita](peridita.md) / Perodika | active regional dragon threat | `data/4-days-cleaned/day-41.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | +| [Peridita](peridita.md) / Perodita | active regional dragon threat | `data/4-days-cleaned/day-41.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | | Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-41.md` | Ran off during the Azureside battle. | | [Peridita](peridita.md) | outside Barrier, active threat | `data/4-days-cleaned/day-43.md` | Appeared bedraggled outside the Barrier, wanted flesh-crafting wands, and intended to get back in. | | [Noxia](noxia.md) | larger threat unresolved | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-44.md` | Noxia Beast avatar killed, but Noxia blood and desert green liquid remain active clues. | diff --git a/data/6-wiki/people/the-basilisk.md b/data/6-wiki/people/the-basilisk.md index ba3506f..2d8d565 100644 --- a/data/6-wiki/people/the-basilisk.md +++ b/data/6-wiki/people/the-basilisk.md @@ -33,7 +33,7 @@ The Basilisk is a recurring contact who receives party messages, appears during - The Basilisk's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` - The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. - On Day 36, the party sent The Basilisk a note about current events from Highden. -- On Day 41, The Basilisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. +- On Day 41, The Basilisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmerane, Dunensend, Heartmoor, Grand Towers, Snow Sorrow, Pine Springs, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. - The Basilisk planned to meet the Peridot Queen by Trade Smells and get Cardonald to take the party back to the army. ## Related Entries @@ -47,4 +47,4 @@ The Basilisk is a recurring contact who receives party messages, appears during - Who are the tabaxi and boss who appeared with him? - Why was he seeking the Gelissa-like box while warning the party to leave it alone? -- What compromised Strong Hedge, and how does it connect to Goldenswell's off-the-books prisoners? +- What compromised Stronghedge, and how does it connect to Goldenswell's off-the-books prisoners? diff --git a/data/6-wiki/places/aegis-on-sands.md b/data/6-wiki/places/aegis-on-sands.md new file mode 100644 index 0000000..42d6c02 --- /dev/null +++ b/data/6-wiki/places/aegis-on-sands.md @@ -0,0 +1,32 @@ +--- +title: Aegis-On-Sands +type: place +aliases: + - Aegis-On-Sands + - Aegis-on-Sands + - Aegis on Sands + - Aegis-on-sands +first_seen: day-16 +last_updated: day-43 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-43.md +--- + +# Aegis-On-Sands + +## Summary + +Aegis-On-Sands is a mapped shire town in the southern desert, connected by road to Arafar, Heartmoor, Dunensend, and Sunset Vista. + +## Known Details + +- Day 16 uses Aegis-on-Sands as a reference point for a crossed-out city note firewise of Lake Azure. +- Later notes mention broken Aegis-On-Sands among Cardonald's teleportation-circle implications. + +## Related Entries + +- [Arafar](arafar.md) +- [Heartmoor](heartmoor.md) +- [Dunensend](dunensend.md) diff --git a/data/6-wiki/places/arafar.md b/data/6-wiki/places/arafar.md new file mode 100644 index 0000000..5d4a668 --- /dev/null +++ b/data/6-wiki/places/arafar.md @@ -0,0 +1,25 @@ +--- +title: Arafar +type: place +aliases: + - Arafar + - Arrofarc +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-43.md +--- + +# Arafar + +## Summary + +Arafar is a mapped town southwest of Heartmoor and northwest of Aegis-On-Sands. + +## Known Details + +- Earlier notes uncertainly record Arrofarc; the map gives Arafar as the canonical spelling. + +## Related Entries + +- [Heartmoor](heartmoor.md) +- [Aegis-On-Sands](aegis-on-sands.md) diff --git a/data/6-wiki/places/ashkellon.md b/data/6-wiki/places/ashkellon.md index df2f61a..f540d34 100644 --- a/data/6-wiki/places/ashkellon.md +++ b/data/6-wiki/places/ashkellon.md @@ -23,7 +23,7 @@ Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city ## Known Details -- Galimma identified Emeredge in Askellon among Lortesh and Perodika's remaining children or related dragons. +- Galimma identified Emeredge in Askellon among Lortesh and Perodita's remaining children or related dragons. - Three Finger Dune Shwelter claimed to be part of the Ashkellon resistance and helped the party contact resistance members through a black-feather communication device. - The party teleported into a throne room, killed Araks, and moved workers and Badger out from the wash-room area. - The tower contained skull arches, Goliathified god statues, offering bowls, prison rooms, a library, map rooms, a Noxia chamber, treasure hall, and elemental or dragon prisoners. diff --git a/data/6-wiki/places/azureside-heartmoor.md b/data/6-wiki/places/azureside.md similarity index 75% rename from data/6-wiki/places/azureside-heartmoor.md rename to data/6-wiki/places/azureside.md index d4d1e88..f0d7d65 100644 --- a/data/6-wiki/places/azureside-heartmoor.md +++ b/data/6-wiki/places/azureside.md @@ -1,5 +1,5 @@ --- -title: Azureside and Heartmoor +title: Azureside type: place aliases: - Azureside @@ -17,20 +17,20 @@ sources: - data/4-days-cleaned/day-41.md --- -# Azureside and Heartmoor +# Azureside ## Summary -Azureside and nearby Heartmoor are Pact-linked settlements affected by diseased cherry trees, a contagious magically linked plague, dragon payment demands, Dollarmen thefts, and Perodika's smoke assault. +Azureside is a Pact-linked settlement near Heartmoor, affected by diseased cherry trees, dragon payment demands, Dollarmen thefts, and Perodita's smoke assault. ## Known Details - Azureside has cherry orchards that looked diseased on `day-40`, with abandoned bushels and plagued earth Morgana connected to the Poison Dragon. -- Alana, Pact leader, said plague had overtaken Heartmoor after Carl left town; Alana and the guild were trying to run things. +- Nearby [Heartmoor](heartmoor.md) had been overtaken by plague after Carl left town; Alana and the guild were trying to run things. - The cobbler's shop served as town hall, with Greysock Soulspindle, Ahlabre / Alizabesh Azure, and Captain Spratt present. - A seaweed-stone temple was immune to dragon acid. - The Cheery & Cherry was a dodgy pub used by Dollarmen and their black-eyed snake-bottom boss. -- On `day-41`, Azureside was evacuated toward Threeleigh after Perodika's smoke caused panic, possession, choking, woodlice, invisible-bug hallucinations, and a threat that all Pacts were off. +- On `day-41`, Azureside was evacuated toward Threeleigh after Perodita's smoke caused panic, possession, choking, woodlice, invisible-bug hallucinations, and a threat that all Pacts were off. ## Related Entries diff --git a/data/6-wiki/places/baytail-accord.md b/data/6-wiki/places/baytail-accord.md new file mode 100644 index 0000000..acc014b --- /dev/null +++ b/data/6-wiki/places/baytail-accord.md @@ -0,0 +1,32 @@ +--- +title: Baytail Accord +type: place +aliases: + - Baytail Accord + - Baylen Accord + - Baylain Accord +first_seen: day-20 +last_updated: day-47 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-47.md +--- + +# Baytail Accord + +## Summary + +Baytail Accord is a mapped coastal town south of Freeport and west of Fishtail Point, tied to merfolk diplomacy and later uncertain Baylen/Baylain variants. + +## Known Details + +- Mermaids planned a meeting at Baytail Accord after the shield crystal mission. +- The location appears in later uncertain forms as Baylen or Baylain Accord. + +## Related Entries + +- [Freeport](freeport.md) +- [Torisle Point](torisle-point.md) +- [The Pact](../factions/the-pact.md) diff --git a/data/6-wiki/places/bonstock.md b/data/6-wiki/places/bonstock.md new file mode 100644 index 0000000..bfcd5c7 --- /dev/null +++ b/data/6-wiki/places/bonstock.md @@ -0,0 +1,21 @@ +--- +title: Bonstock +type: place +aliases: + - Bonstock +sources: + - data/7-reference-images/Pentacity States Map.png +--- + +# Bonstock + +## Summary + +Bonstock is a mapped town on the western road between Fairshaw, Redford Point, Freeport, and Riversmeet. + +## Related Entries + +- [Fairshaw](fairshaw.md) +- [Freeport](freeport.md) +- [Redford Point](redford-point.md) +- [Riversmeet](riversmeet.md) diff --git a/data/6-wiki/places/claymeadow.md b/data/6-wiki/places/claymeadow.md new file mode 100644 index 0000000..71370bb --- /dev/null +++ b/data/6-wiki/places/claymeadow.md @@ -0,0 +1,34 @@ +--- +title: Claymeadow +type: place +aliases: + - Claymeadow + - Claymeadows + - Clay Meadows +first_seen: day-32 +last_updated: day-43 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-43.md +--- + +# Claymeadow + +## Summary + +Claymeadow is a mapped town east of Goldenswell and west of Ironcroft Firewise. + +## Known Details + +- Claymeadow appears among prisoner-source locations in the Goldenswell prison network. +- On Day 36, a message from Claymeadow reported explosions, Newgate's doppel/imposter in quarters, and a broken Bird. +- Later notes mention Claymeadow among political or military locations. + +## Related Entries + +- [Goldenswell](goldenswell.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Ironcroft Firewise](ironcroft-firewise.md) diff --git a/data/6-wiki/places/donly.md b/data/6-wiki/places/donly.md new file mode 100644 index 0000000..e5e8be9 --- /dev/null +++ b/data/6-wiki/places/donly.md @@ -0,0 +1,27 @@ +--- +title: Donly +type: place +aliases: + - Donly +first_seen: day-41 +last_updated: day-41 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-41.md +--- + +# Donly + +## Summary + +Donly is a mapped town southeast of Grand Towers, near Threeleigh, Azureside, and Sunset Vista. + +## Known Details + +- The party considered heading toward Donly after the Azureside evacuation and message-blocking crisis. + +## Related Entries + +- [Threeleigh](threeleigh.md) +- [Azureside](azureside.md) +- [Sunset Vista](sunset-vista.md) diff --git a/data/6-wiki/places/emmerane.md b/data/6-wiki/places/emmerane.md new file mode 100644 index 0000000..8f99073 --- /dev/null +++ b/data/6-wiki/places/emmerane.md @@ -0,0 +1,31 @@ +--- +title: Emmerane +type: place +aliases: + - Emmerane + - Emmeraine + - Emmerave +first_seen: day-41 +last_updated: day-42 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md +--- + +# Emmerane + +## Summary + +Emmerane is a mapped town southeast of Coalmont Falls and north of Heartmoor. + +## Known Details + +- The Basilisk reported a crisis at Emmerane. +- Day 42 mentions a battle heading to Emmerane; earlier notes used variants including Emmeraine and Emmerave. + +## Related Entries + +- [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md) +- [Heartmoor](heartmoor.md) +- [Lyndgale](lyndgale.md) diff --git a/data/6-wiki/places/fairshaw.md b/data/6-wiki/places/fairshaw.md new file mode 100644 index 0000000..99b8de3 --- /dev/null +++ b/data/6-wiki/places/fairshaw.md @@ -0,0 +1,32 @@ +--- +title: Fairshaw +type: place +aliases: + - Fairshaw + - Fairshaws +first_seen: day-19 +last_updated: day-23 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-23.md +--- + +# Fairshaw + +## Summary + +Fairshaw is a coastal city west of Bonstock and southeast of Seaward. Earlier notes record it as Fairshaws. + +## Known Details + +- The party approached Fairshaw and saw gold sands and white plaster buildings. +- Fairshaw had a harbour where the party sought a boat. +- The party's boat was later seized at Fairshaw on the Earl's orders under treason accusations. + +## Related Entries + +- [Seaward](seaward.md) +- [Freeport](freeport.md) +- [Torisle Point](torisle-point.md) diff --git a/data/6-wiki/places/fishtail-point.md b/data/6-wiki/places/fishtail-point.md new file mode 100644 index 0000000..e8ec7fc --- /dev/null +++ b/data/6-wiki/places/fishtail-point.md @@ -0,0 +1,20 @@ +--- +title: Fishtail Point +type: place +aliases: + - Fishtail Point +sources: + - data/7-reference-images/Pentacity States Map.png +--- + +# Fishtail Point + +## Summary + +Fishtail Point is a mapped town south of Twolodge and west of Lake Fishtail, on the road toward Rimewatch. + +## Related Entries + +- [Twolodge](twolodge.md) +- [Lake Fishtail](lake-fishtail.md) +- [Rimewatch and the Ice Prison](rimewatch-ice-prison.md) diff --git a/data/6-wiki/places/freeport.md b/data/6-wiki/places/freeport.md index d573f02..69ab4cb 100644 --- a/data/6-wiki/places/freeport.md +++ b/data/6-wiki/places/freeport.md @@ -1,6 +1,9 @@ --- title: Freeport type: place +aliases: + - Freeport + - Fairport [map typo] first_seen: day-17 last_updated: day-31 sources: @@ -15,7 +18,7 @@ sources: ## Summary -Freeport is a busy trade city with no trade taxes, ruled by the reclusive Baroness and hosting Pact leadership, shops, lodging, an auction house, and forces for the shield crystal mission. +Freeport is a busy trade city with no trade taxes, ruled by the reclusive Baroness and hosting Pact leadership, shops, lodging, an auction house, and forces for the shield crystal mission. The Pentacity States map labels it as Fairport, but that is a typo. ## Known Details diff --git a/data/6-wiki/places/goldenswell.md b/data/6-wiki/places/goldenswell.md new file mode 100644 index 0000000..af61403 --- /dev/null +++ b/data/6-wiki/places/goldenswell.md @@ -0,0 +1,33 @@ +--- +title: Goldenswell +type: place +aliases: + - Goldenswell + - Goldensell + - Galdenseell +first_seen: day-32 +last_updated: day-43 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-43.md +--- + +# Goldenswell + +## Summary + +Goldenswell is a mapped city east of Hartwall and Stronghedge, tied to Lady Thorpe, memory grubs, off-the-books prisoners, and later war politics. + +## Known Details + +- Goldenswell refused The Basilisk's prison checks while Redford and Everchard had no Lady Thorpe. +- The Goldenswell militia house was used in an off-the-books prison network. +- Day 43 included Goldenswell and Hartwall political and military threads. + +## Related Entries + +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Lady Thorpe](../people/lady-thorpe.md) +- [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md) diff --git a/data/6-wiki/places/hartwall.md b/data/6-wiki/places/hartwall.md new file mode 100644 index 0000000..392a443 --- /dev/null +++ b/data/6-wiki/places/hartwall.md @@ -0,0 +1,33 @@ +--- +title: Hartwall +type: place +aliases: + - Hartwall +first_seen: day-32 +last_updated: day-57 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-57.md +--- + +# Hartwall + +## Summary + +Hartwall is a mapped city north of Riversmeet and west of Goldenswell, tied to Lady Elissa Hartwall, Lady Evalina Hartwall, Eliana's later identity reveal, and Hartwall laboratory history. + +## Known Details + +- Lady Elissa Hartwall is associated with Hartwall and its war response. +- Hartwall's lab contains memory rooms, prison doors, handle puzzles, and portal links. +- Day 57 memory scenes connect Eliana's house in Provista with the Hartwall family thread. + +## Related Entries + +- [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md) +- [Lady Evalina Hartwall](../people/lady-evalina-hartwall.md) +- [Eliana](../people/eliana.md) +- [Provista](provista.md) diff --git a/data/6-wiki/places/heartmoor.md b/data/6-wiki/places/heartmoor.md new file mode 100644 index 0000000..a68b51f --- /dev/null +++ b/data/6-wiki/places/heartmoor.md @@ -0,0 +1,30 @@ +--- +title: Heartmoor +type: place +aliases: + - Heartmoor + - Hearthsmoor +first_seen: day-40 +last_updated: day-41 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md +--- + +# Heartmoor + +## Summary + +Heartmoor is a mapped town south of Emmerane and east of Lyndgale, closely tied to Azureside's Pact, plague, and evacuation threads. + +## Known Details + +- Alana said plague had overtaken Heartmoor after Carl left town. +- Day 41 reports simultaneous crisis pressure at Heartmoor, earlier recorded as Hearthsmoor. + +## Related Entries + +- [Azureside](azureside.md) +- [Emmerane](emmerane.md) +- [Lyndgale](lyndgale.md) diff --git a/data/6-wiki/places/highden-fell.md b/data/6-wiki/places/highden.md similarity index 79% rename from data/6-wiki/places/highden-fell.md rename to data/6-wiki/places/highden.md index 044e934..5cefe5a 100644 --- a/data/6-wiki/places/highden-fell.md +++ b/data/6-wiki/places/highden.md @@ -1,25 +1,24 @@ --- -title: Highden Fell +title: Highden type: place aliases: - Highden - - Highden Fell first_seen: day-36 last_updated: day-36 sources: - data/4-days-cleaned/day-36.md --- -# Highden Fell +# Highden ## Summary -Highden Fell was a major battlefront on day 36, suffering crystal sickness, military retreat, false obsidian-raven messages, and attacks by tribesfolk, giants, and dragons. +Highden was a major battlefront on day 36, suffering crystal sickness, military retreat after the fall of the town, false obsidian-raven messages, and attacks by tribesfolk, giants, and dragons. ## Known Details - Priests treated people with blistering skin and internal-consumption crystal sickness. -- Highden Fell's armies had retreated to the firewise mountain's second level by 14:00. +- After Highden fell, its armies had retreated to the firewise mountain's second level by 14:00. - Captain Briarthorn commanded an elf hundred and planned to use the river as a battle point. - The command had obsidian ravens whose replies falsely told troops not to support the cause. - Hartwall joined fully armored, and the party planned a forest ambush and fire to split large giants from the army. diff --git a/data/6-wiki/places/hillcaster.md b/data/6-wiki/places/hillcaster.md new file mode 100644 index 0000000..f838347 --- /dev/null +++ b/data/6-wiki/places/hillcaster.md @@ -0,0 +1,20 @@ +--- +title: Hillcaster +type: place +aliases: + - Hillcaster +sources: + - data/7-reference-images/Pentacity States Map.png +--- + +# Hillcaster + +## Summary + +Hillcaster is a mapped town north of Grand Towers and south of Mosscourt. + +## Related Entries + +- [Grand Towers](grand-towers.md) +- [Mosscourt](mosscourt.md) +- [Brookville Springs](brookville-springs.md) diff --git a/data/6-wiki/places/ironcroft-firewise.md b/data/6-wiki/places/ironcroft-firewise.md new file mode 100644 index 0000000..04e0f34 --- /dev/null +++ b/data/6-wiki/places/ironcroft-firewise.md @@ -0,0 +1,28 @@ +--- +title: Ironcroft Firewise +type: place +aliases: + - Ironcroft Firewise + - Ironcroft + - rear Ironcraft air site +first_seen: day-43 +last_updated: day-43 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-43.md +--- + +# Ironcroft Firewise + +## Summary + +Ironcroft Firewise is a mapped town east of Claymeadow and north of Salvation. + +## Known Details + +- Earlier notes uncertainly preserve a "rear Ironcroft air site"; the map gives Ironcroft Firewise as the canonical spelling. + +## Related Entries + +- [Claymeadow](claymeadow.md) +- [Salvation](salvation.md) diff --git a/data/6-wiki/places/lake-azure.md b/data/6-wiki/places/lake-azure.md new file mode 100644 index 0000000..56a4e3f --- /dev/null +++ b/data/6-wiki/places/lake-azure.md @@ -0,0 +1,29 @@ +--- +title: Lake Azure +type: place +aliases: + - Lake Azure +first_seen: day-16 +last_updated: day-46 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-46.md +--- + +# Lake Azure + +## Summary + +Lake Azure is a mapped lake between Threeleigh, Azureside, and Donly. + +## Known Details + +- Day 16 uses Lake Azure as a reference point for a crossed-out city note. +- Longfang later thought the dragon in Lake Azure might be dead. + +## Related Entries + +- [Azureside](azureside.md) +- [Threeleigh](threeleigh.md) +- [Donly](donly.md) diff --git a/data/6-wiki/places/lake-fishtail.md b/data/6-wiki/places/lake-fishtail.md new file mode 100644 index 0000000..5ff14f8 --- /dev/null +++ b/data/6-wiki/places/lake-fishtail.md @@ -0,0 +1,19 @@ +--- +title: Lake Fishtail +type: place +aliases: + - Lake Fishtail +sources: + - data/7-reference-images/Pentacity States Map.png +--- + +# Lake Fishtail + +## Summary + +Lake Fishtail is a mapped lake east of Fishtail Point and southwest of Coalmont Falls. + +## Related Entries + +- [Fishtail Point](fishtail-point.md) +- [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md) diff --git a/data/6-wiki/places/lyndgale.md b/data/6-wiki/places/lyndgale.md new file mode 100644 index 0000000..aff39cc --- /dev/null +++ b/data/6-wiki/places/lyndgale.md @@ -0,0 +1,20 @@ +--- +title: Lyndgale +type: place +aliases: + - Lyndgale +sources: + - data/7-reference-images/Pentacity States Map.png +--- + +# Lyndgale + +## Summary + +Lyndgale is a mapped town south of Coalmont Falls, west of Heartmoor, and north of Pine Springs. + +## Related Entries + +- [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md) +- [Heartmoor](heartmoor.md) +- [Pine Springs](pine-springs.md) diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md index 60fd0b4..1344ffc 100644 --- a/data/6-wiki/places/minor-places-day-46.md +++ b/data/6-wiki/places/minor-places-day-46.md @@ -21,5 +21,5 @@ sources: | Lake Azure | Longfang thought the dragon there might be dead. | Rollup/open thread. | | Riversmeet council bridge, And Pool, `I'm the Drink`, Wayshrill Bridge, The Olde Clay Jug | Town investigation locations around the false Exchequer, missing Igraine, infiltrators, rewards, and the `Earth hath no` door. | Rollup/open thread. | | Hartwall artifact prison near Snowscreen | Infiltrator lead said Hartwall put an artifact in one of the prisons near Snowscreen. | Open thread. | -| Pinesprings | Adventurers killed some people there while following a related lead. | Rollup/open thread. | +| Pine Springs | Adventurers killed some people there while following a related lead. | Rollup/open thread. | | Hartwall's lab | The party chose to head there after rest and chicken. | Rollup/open thread. | diff --git a/data/6-wiki/places/minor-places-day-47.md b/data/6-wiki/places/minor-places-day-47.md index 958e310..ed43f6c 100644 --- a/data/6-wiki/places/minor-places-day-47.md +++ b/data/6-wiki/places/minor-places-day-47.md @@ -10,7 +10,7 @@ sources: | Place | Day 47 details | Coverage | | --- | --- | --- | | Hartwall's lab | Destination and frame for Day 47; contains memory rooms, prison doors, handle puzzles, and portal links. | Rollup and open threads. | -| Pinesprings | Woodcutters had been taken by an elf killed by adventurers. | Existing place reference; rollup. | +| Pine Springs | Woodcutters had been taken by an elf killed by adventurers. | Existing place reference; rollup. | | Rose-field picture / illusion room | White-rose picture and window illusion preserve missing-girl and Joy/Hannah clues. | Rollup. | | `[unclear: aprosur]` | One of the sentient door's brother locations. | Rollup; uncertain. | | Desert badlands room | Showed battle between Noxia and Sierra. | Rollup. | diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index ef8858d..ba4be3a 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -15,7 +15,7 @@ sources: | Harn? tavern | Tavern-like cat space reached through an Earth-plane door; a ghost carrying sword and shield was not welcome. | Rollup. | | Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to the Lady Evalina Hartwall / Mama Hartwall and Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Craters Edge | Seen through the moon door; Dirk heard garbled conversations. | Rollup. | -| Pinesprings | Dragon door memory of snow, pine trees, baby dragonborn, and redbeard figure with a broom. | Rollup. | +| Pine Springs | Dragon door memory of snow, pine trees, baby dragonborn, and a robed figure with a broom. | Rollup. | | Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana](../people/eliana.md). | | City of Aquarius | Mother-of-pearl palace where Keepers of the Pact were welcome by Lord Hydram's permission. | [Hydran / Hydram](../people/hydran.md). | | Morgana's dead-tree hut | Painting realm with dead Everchard trees, birds, white rose, conch, and offering bowl. | [Igraine](../people/igraine.md). | diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index 70e378c..1592b1d 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -21,18 +21,18 @@ sources: | Hartwall / Hartwall castle gates and courtyard | Hartwall transformation and recovery. | [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md). | | Stone Rampart, pylon, bazaar | Day-36 war and travel points. | Rollup. | | Valenthielles prison rooms | Seamless teleport room, middle door, dark corridor, smoky prison room. | [Valenthielles Prison](valenthielles-prison.md). | -| Cathedral, Earl's other foot, park between legs, inn taken by troops, river battle point, forest ambush site, mountain plume | Highden Fell sites. | [Highden Fell](highden-fell.md). | +| Cathedral, Earl's other foot, park between legs, inn taken by troops, river battle point, forest ambush site, mountain plume | Highden sites. | [Highden](highden.md). | | Three Full Moons | Inn where party met Gary and Shep. | Rollup. | | Rimewock prison | Icefang's ice elemental prison. | [Rimewatch and the Ice Prison](rimewatch-ice-prison.md). | | Mental palace room and dark cavern with skull throne | Icefang and Geldrin visions. | [Icefang](../people/icefang.md) / open thread. | | Rellport, Bleakstorm, Snow Sorrow, Riversmeet, Sunset Vista | Vision, portal, burial, and war-coordination places. | Rollup/open threads. | -| Azurescale, Azureside cherry orchard, Calcmont, Coalmont Falls | Travel and black-water investigation route. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md), [Azureside and Heartmoor](azureside-heartmoor.md). | +| Azurescale, Azureside cherry orchard, Calcmont, Coalmont Falls | Travel and black-water investigation route. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md), [Azureside](azureside.md). | | Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, monastery | Coalmont Falls services and nearby missing-logger/Zigglecog references. | Coalmont page / rollup. | | Lake, underwater obsidian archway, Dull Peake, Domain of Anthrosite, underground chamber, underwater barrier, freshly cut stone corridor, ticking-rune door, geyser pit, Envi's circular room, merfolk lodge | Coalmont prison/facility sites. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md). | | Pit made against the merfolk | Dome-start pit Sir [uncertain: Counting Fibo] was supposed to remove. | Open thread / rollup. | -| Cobbler's shop / town hall, Firevine, town square, seaweed-stone temple, lake, bell tower, Cheery & Cherry, sewers, cursed lands, Saphire Shores | Azureside/Heartmoor day-40 sites. | [Azureside and Heartmoor](azureside-heartmoor.md), [Dollarmen](../factions/dollarmen.md). | -| Threeleigh, Donly, horizon of green shape, Aire | Evacuation and route after Perodika attack. | Open thread / rollup. | +| Cobbler's shop / town hall, Firevine, town square, seaweed-stone temple, lake, bell tower, Cheery & Cherry, sewers, cursed lands, Saphire Shores | Azureside/Heartmoor day-40 sites. | [Azureside](azureside.md), [Dollarmen](../factions/dollarmen.md). | +| Threeleigh, Donly, horizon of green shape, Aire | Evacuation and route after Perodita attack. | Open thread / rollup. | | Savannah hunters' encampment and red-eyed settlement | Hospitality settlement where Searu appeared. | [Searu](../people/searu.md). | -| Tower in the flames and Goliath settlement below tower | Perodika/Searu vision location. | Open thread / rollup. | -| Emmeraine, Dunensend, Hearthsmoor, Grand Towers, Galdenseell, Snow Sorrow, PineSprings, Trade Smells | Simultaneous crisis locations reported by The Basilisk. | Open threads; existing pages where present. | +| Tower in the flames and Goliath settlement below tower | Perodita/Searu vision location. | Open thread / rollup. | +| Emmerane, Dunensend, Heartmoor, Grand Towers, Galdenseell, Snow Sorrow, Pine Springs, Trade Smells | Simultaneous crisis locations reported by The Basilisk. | Open threads; existing pages where present. | | Cave entrance in dream and fire place associated with Searu's Arrow | Dragon dream and Searu's Arrow return place. | [Searu's Arrow](../items/searus-arrow.md) / open thread. | diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md index 1aa62dc..c7c4053 100644 --- a/data/6-wiki/places/minor-places-days-42-44.md +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -14,10 +14,10 @@ sources: | Council tent, Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, [uncertain: Tazer], [uncertain: Gugghut] | Day-42 planning and dragon-family geography. | Rollup; [Ashkellon](ashkellon.md), [Peridita](../people/peridita.md). | | Ashkellon throne room, wash room, resistance building, soft tower, skull-arched room, statue room, prison rooms, Noxia chamber, treasure hall, observatory room | Major Ashkellon tower sites. | [Ashkellon](ashkellon.md). | | Domain of Pengalis, Dunemin, Pentacity slates, sea gap, Shousorrow, Snow Screen / Snow Sorrow, Fire, great tower, Gravel Basers | Historical and map locations from Ashkellon. | Rollup/open threads. | -| Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Hartwall, Emmerave | Day-42 time/Bridge/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | +| Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Hartwall, Emmerane | Day-42 time/Bridge/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | | Goldenswell, Pine Springs, Hartwall, 11th Duke of Hartwall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Hartwall locations. | Rollup/open threads. | | Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise | Tomes about newly discovered places. | Rollup/open threads. | -| Grincray / Grim & Cray, Mashir, lake of Papa'e Munera, rear Ironcraft air site, Claymeadows, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | +| Grincray / Grim & Cray, Mashir, lake of Papa'e Munera, rear Ironcroft air site, Claymeadow, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | | Riversmeet, Ruby Eye's melted house ruins and gravestone, central bridge manor house, temples of Hydrum / Igraine / Larn / Kasha | Day-44 Riversmeet investigation. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Hartwall's old lab, Howling Tombs, Menagerie outpost, Menagerie grounds, apothecary, infirmary, head teacher's office, old classrooms, Air common room, astronomy room | Day-44 Menagerie and school spaces. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Far Grove, Waterrose, Great Farmouth, tower tunnels, Blackhold, white classroom, Brass City, room above Air common room, kitchen, Ruby Eye's old stomping ground | Historical/planar route locations in the old school. | Rollup; [Bleakstorm](bleakstorm.md), [Void Spheres](../items/void-spheres.md). | diff --git a/data/6-wiki/places/mosscourt.md b/data/6-wiki/places/mosscourt.md new file mode 100644 index 0000000..a067d8e --- /dev/null +++ b/data/6-wiki/places/mosscourt.md @@ -0,0 +1,20 @@ +--- +title: Mosscourt +type: place +aliases: + - Mosscourt +sources: + - data/7-reference-images/Pentacity States Map.png +--- + +# Mosscourt + +## Summary + +Mosscourt is a mapped town south of Hartwall, west of Stronghedge, and north of Hillcaster. + +## Related Entries + +- [Hartwall](hartwall.md) +- [Stronghedge](stronghedge.md) +- [Hillcaster](hillcaster.md) diff --git a/data/6-wiki/places/pine-springs.md b/data/6-wiki/places/pine-springs.md new file mode 100644 index 0000000..6a45496 --- /dev/null +++ b/data/6-wiki/places/pine-springs.md @@ -0,0 +1,36 @@ +--- +title: Pine Springs +type: place +aliases: + - Pine Springs + - PineSprings + - Pinespring + - Pinesprings +first_seen: day-36 +last_updated: day-57 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-57.md +--- + +# Pine Springs + +## Summary + +Pine Springs is a mapped town north of Rimewatch and south of Lyndgale, repeatedly appearing in logging, war, and memory threads. + +## Known Details + +- Pinespring loggers were going missing around the Coalmont Falls investigation. +- Goldenswell/Hartwall notes mention Pine Springs among regional locations. +- Day 57's dragon door memory showed Pine Springs with snow, pine trees, a baby dragonborn, and a robed figure with a broom. + +## Related Entries + +- [Rimewatch and the Ice Prison](rimewatch-ice-prison.md) +- [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md) +- [Lyndgale](lyndgale.md) diff --git a/data/6-wiki/places/provista.md b/data/6-wiki/places/provista.md new file mode 100644 index 0000000..873f88b --- /dev/null +++ b/data/6-wiki/places/provista.md @@ -0,0 +1,31 @@ +--- +title: Provista +type: place +aliases: + - Provista +first_seen: day-47 +last_updated: day-57 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-57.md +--- + +# Provista + +## Summary + +Provista is a mapped city northwest of Hartwall and a major location in Eliana's later identity and memory threads. + +## Known Details + +- Day 47 Sunsoreen records helped identify Eliana in connection with Hartwall. +- Day 57 shows Provista about twenty years in the past, where Eliana's house received the Everchard baby-and-sword box. +- The town square had a Founder's Day poster showing Bleakstorm and a Geldrin look-alike. + +## Related Entries + +- [Eliana](../people/eliana.md) +- [Hartwall](hartwall.md) +- [Sunsoreen / Snowscreen](sunsoreen.md) +- [Bleakstorm](bleakstorm.md) diff --git a/data/6-wiki/places/redford-point.md b/data/6-wiki/places/redford-point.md new file mode 100644 index 0000000..e45e77a --- /dev/null +++ b/data/6-wiki/places/redford-point.md @@ -0,0 +1,29 @@ +--- +title: Redford Point +type: place +aliases: + - Redford Point + - Redford +first_seen: day-32 +last_updated: day-35 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md +--- + +# Redford Point + +## Summary + +Redford Point is a mapped town between Bonstock, Everchard, Hartwall, and Riversmeet. + +## Known Details + +- Redford Point is named among prisoner-source locations in the Goldenswell off-the-books prison network. + +## Related Entries + +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Everchard](everchard.md) +- [Hartwall](hartwall.md) diff --git a/data/6-wiki/places/riversmeet.md b/data/6-wiki/places/riversmeet.md new file mode 100644 index 0000000..65a22f4 --- /dev/null +++ b/data/6-wiki/places/riversmeet.md @@ -0,0 +1,34 @@ +--- +title: Riversmeet +type: place +aliases: + - Riversmeet + - Rivermeet +first_seen: day-16 +last_updated: day-57 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-57.md +--- + +# Riversmeet + +## Summary + +Riversmeet is a mapped city west of Grand Towers, tied to old mage-school history, Ruby Eye's melted house, temples, bridges, and later Brass City memory scenes. + +## Known Details + +- Riversmeet contains the old mage school / Menagerie site. +- Day 44 investigates Ruby Eye's melted house ruins, a central bridge manor house, and temples of Hydrum, Igraine, Larn, and Kasha. +- Day 57 includes a small round temple near the remains of the Riversmeet bridge and dwarven bridge. + +## Related Entries + +- [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md) +- [Grand Towers](grand-towers.md) +- [Bridget's Doors](../concepts/bridgets-doors.md) diff --git a/data/6-wiki/places/salvation.md b/data/6-wiki/places/salvation.md new file mode 100644 index 0000000..3c596bb --- /dev/null +++ b/data/6-wiki/places/salvation.md @@ -0,0 +1,29 @@ +--- +title: Salvation +type: place +aliases: + - Salvation +first_seen: day-16 +last_updated: day-48 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-48.md +--- + +# Salvation + +## Summary + +Salvation is a mapped town at the edge of the desert, east of Sunset Vista and south of Ironcroft Firewise. + +## Known Details + +- Pythus Aleyvarus was scried in a sandstone cavern near Salvation while reading the human-flesh grimoire. +- Dirk's sister sent word that Dad was unavailable and the party should come to Salvation. + +## Related Entries + +- [Pythus Aleyvarus](../people/pythus-aleyvarus.md) +- [Sunset Vista](sunset-vista.md) +- [Ironcroft Firewise](ironcroft-firewise.md) diff --git a/data/6-wiki/places/stonerampart-earthwise.md b/data/6-wiki/places/stonerampart-earthwise.md new file mode 100644 index 0000000..080ec32 --- /dev/null +++ b/data/6-wiki/places/stonerampart-earthwise.md @@ -0,0 +1,29 @@ +--- +title: Stonerampart Earthwise +type: place +aliases: + - Stonerampart Earthwise + - Stonerampart + - Stone Rampart +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-57.md +--- + +# Stonerampart Earthwise + +## Summary + +Stonerampart Earthwise is a mapped shire town in the northeastern mountains, north of Hartwall and west of Highden. + +## Known Details + +- Earlier notes use Stone Rampart in war and Eliana-related memory contexts. +- The map gives the place-name spelling as Stonerampart Earthwise. + +## Related Entries + +- [Hartwall](hartwall.md) +- [Highden](highden.md) +- [Eliana](../people/eliana.md) diff --git a/data/6-wiki/places/stronghedge.md b/data/6-wiki/places/stronghedge.md new file mode 100644 index 0000000..8bc030f --- /dev/null +++ b/data/6-wiki/places/stronghedge.md @@ -0,0 +1,29 @@ +--- +title: Stronghedge +type: place +aliases: + - Stronghedge + - Strong Hedge +first_seen: day-32 +last_updated: day-35 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md +--- + +# Stronghedge + +## Summary + +Stronghedge is a mapped town between Hartwall, Goldenswell, Mosscourt, and Brookville Springs. + +## Known Details + +- Stronghedge appears among the Goldenswell prisoner-source locations. + +## Related Entries + +- [Goldenswell](goldenswell.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Brookville Springs](brookville-springs.md) diff --git a/data/6-wiki/places/sunset-vista.md b/data/6-wiki/places/sunset-vista.md new file mode 100644 index 0000000..7252c68 --- /dev/null +++ b/data/6-wiki/places/sunset-vista.md @@ -0,0 +1,29 @@ +--- +title: Sunset Vista +type: place +aliases: + - Sunset Vista +first_seen: day-36 +last_updated: day-41 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-41.md +--- + +# Sunset Vista + +## Summary + +Sunset Vista is a mapped town near Donly, Salvation, Dunensend, and Aegis-on-Sands. + +## Known Details + +- Dirk's father and army were reported in Sunset Vista on their way to fight the green dragon. +- The Basilisk considered meeting in Donly or Sunset Vista during the Day 41 blocker crisis. + +## Related Entries + +- [Donly](donly.md) +- [Salvation](salvation.md) +- [Dunensend](dunensend.md) diff --git a/data/6-wiki/places/threeleigh.md b/data/6-wiki/places/threeleigh.md new file mode 100644 index 0000000..f70bcbe --- /dev/null +++ b/data/6-wiki/places/threeleigh.md @@ -0,0 +1,28 @@ +--- +title: Threeleigh +type: place +aliases: + - Threeleigh + - Threeleigh +first_seen: day-41 +last_updated: day-41 +sources: + - data/7-reference-images/Pentacity States Map.png + - data/4-days-cleaned/day-41.md +--- + +# Threeleigh + +## Summary + +Threeleigh is a mapped town south of Grand Towers, between Coalmont Falls, Donly, and Azureside. + +## Known Details + +- Azureside evacuees were guided toward Threeleigh during Perodita's smoke attack. + +## Related Entries + +- [Azureside](azureside.md) +- [Donly](donly.md) +- [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md) diff --git a/data/6-wiki/places/turisle-point.md b/data/6-wiki/places/torisle-point.md similarity index 70% rename from data/6-wiki/places/turisle-point.md rename to data/6-wiki/places/torisle-point.md index 0c7aba9..d336a90 100644 --- a/data/6-wiki/places/turisle-point.md +++ b/data/6-wiki/places/torisle-point.md @@ -1,6 +1,9 @@ --- -title: Turisle Point +title: Torisle Point type: place +aliases: + - Torisle Point + - Turisle Point first_seen: day-19 last_updated: day-20 sources: @@ -8,11 +11,11 @@ sources: - data/4-days-cleaned/day-20.md --- -# Turisle Point +# Torisle Point ## Summary -Turisle Point is the only town on its isle, home to turtle men, the Great Turtle shrine, Pact barracks, underwater docks, and the start of the Sahuagin and Kiendra conch crisis. +Torisle Point, earlier recorded as Turisle Point, is the only town on its isle, home to turtle men, the Great Turtle shrine, Pact barracks, underwater docks, and the start of the Sahuagin and Kiendra conch crisis. ## Known Details @@ -24,7 +27,7 @@ Turisle Point is the only town on its isle, home to turtle men, the Great Turtle ## Timeline - `day-19`: The party arrives after pirate attacks and learns Great Turtle lore. -- `day-20`: The Pact and Sahuagin threads deepen from Turisle Point. +- `day-20`: The Pact and Sahuagin threads deepen from Torisle Point. ## Related Entries diff --git a/data/6-wiki/places/twolodge.md b/data/6-wiki/places/twolodge.md new file mode 100644 index 0000000..f76eea0 --- /dev/null +++ b/data/6-wiki/places/twolodge.md @@ -0,0 +1,21 @@ +--- +title: Twolodge +type: place +aliases: + - Twolodge +sources: + - data/7-reference-images/Pentacity States Map.png +--- + +# Twolodge + +## Summary + +Twolodge is a mapped town south of Riversmeet, near Freeport, Fishtail Point, and Lake Fishtail. + +## Related Entries + +- [Riversmeet](riversmeet.md) +- [Freeport](freeport.md) +- [Fishtail Point](fishtail-point.md) +- [Lake Fishtail](lake-fishtail.md) diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index b25db01..8bc3a32 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -70,7 +70,7 @@ sources: - `data/4-days-cleaned/day-16.md`: [Hidden Laboratory](places/hidden-laboratory.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Infestus](people/infestus.md), [Pythus Aleyvarus](people/pythus-aleyvarus.md), [The Pact](factions/the-pact.md), [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md). - `data/4-days-cleaned/day-17.md`: [The Pact](factions/the-pact.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Shard](items/tri-moon-shard.md). - `data/4-days-cleaned/day-18.md`: [Timeline](timeline.md), [Open Threads](open-threads.md). -- `data/4-days-cleaned/day-19.md`: [Turisle Point](places/turisle-point.md), [Sahuagin/Fish Men](factions/sahuagin-fish-men.md), [Excellences](concepts/excellences.md). +- `data/4-days-cleaned/day-19.md`: [Torisle Point](places/torisle-point.md), [Sahuagin/Fish Men](factions/sahuagin-fish-men.md), [Excellences](concepts/excellences.md). - `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). - `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). @@ -84,9 +84,9 @@ sources: - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). -- `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). -- `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden](places/highden.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-40.md`: [Azureside](places/azureside.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-41.md`: [Azureside](places/azureside.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index fb308cd..20b0717 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -66,8 +66,8 @@ sources: - `day-15`: Elementharium/Clementarium explains quasi-elementals, and [Brutor Ruby Eye](people/brutor-ruby-eye.md) becomes a major source of containment lore. - `day-16`: The party opens [Hidden Laboratory](places/hidden-laboratory.md), sees memories of Brutor, Ennuyé, the Pact, the Barrier, and the void creature, then faces Infestus's agents. - `day-17`: A security council discusses the Barrier, the party receives Brutor's skull, and warrants and suspicious shipments complicate the response. -- `day-18`: The party travels toward Fairshaws/Fairport and the coast while the suspicious shipment thread continues. -- `day-19`: The party sails on the Pride of the Penta Cities, fights Kairbidius's pirates, and reaches Turisle Point. +- `day-18`: The party travels toward Fairshaw/Freeport and the coast while the suspicious shipment thread continues. +- `day-19`: The party sails on the Pride of the Penta Cities, fights Kairbidius's pirates, and reaches Torisle Point. - `day-20`: [The Pact](factions/the-pact.md), Freeport, the Baroness, Valenth/Velenth, Kiendra's stolen conch, and the shield crystal mission converge. - `day-21`: Regional crises escalate around Highden, Heartmoor, Provincia, the Grand Towers, and the sea shield crystal operation. - `day-22`: The underwater party fights at the [Shield Crystals](items/shield-crystals.md) site, rescues [Kiendra](people/kiendra.md), defeats an [Excellence](concepts/excellences.md), and recovers the [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md). @@ -85,8 +85,8 @@ sources: - `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. - `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns Pride was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Hartwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. - `day-37` through `day-69`: Not included in this wiki pass. -- `day-40`: At [Azureside and Heartmoor](places/azureside-heartmoor.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). -- `day-41`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears The Basilisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). +- `day-40`: At [Azureside](places/azureside.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). +- `day-41`: Perodita / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears The Basilisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). - `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadwal](people/garadwal.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Hartwall. - `day-43`: Goldenswell and Hartwall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). diff --git a/data/7-reference-images/IMG_1457.png b/data/7-reference-images/Pentacity States Map.png similarity index 100% rename from data/7-reference-images/IMG_1457.png rename to data/7-reference-images/Pentacity States Map.png diff --git a/data/7-reference-images/IMG_1494.png b/data/7-reference-images/Player Characters.png similarity index 100% rename from data/7-reference-images/IMG_1494.png rename to data/7-reference-images/Player Characters.png -
6140408Upload files to "data/7-reference-images"by lady.serina
data/7-reference-images/IMG_1494.png | Bin 0 -> 2452845 bytes 1 file changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/7-reference-images/IMG_1494.png b/data/7-reference-images/IMG_1494.png new file mode 100644 index 0000000..1a38fb0 Binary files /dev/null and b/data/7-reference-images/IMG_1494.png differ -
f2bbe37Upload files to "data/7-reference-images"by lady.serina
data/7-reference-images/IMG_1457.png | Bin 0 -> 4203588 bytes 1 file changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/7-reference-images/IMG_1457.png b/data/7-reference-images/IMG_1457.png new file mode 100644 index 0000000..2b38a1b Binary files /dev/null and b/data/7-reference-images/IMG_1457.png differ -
055988cAdd player character pages and reference images folderby Laura Mostert
data/7-reference-images/README.md | 5 +++++ 1 file changed, 5 insertions(+)Show diff
diff --git a/data/7-reference-images/README.md b/data/7-reference-images/README.md new file mode 100644 index 0000000..764c112 --- /dev/null +++ b/data/7-reference-images/README.md @@ -0,0 +1,5 @@ +# Reference Images + +Store campaign reference images here, including maps, character art, handouts, location art, and other visual references used alongside the notes and wiki. + +Suggested organization can be added as the collection grows, for example `maps/`, `characters/`, `places/`, or `items/`. -
db95735Hazeby Laura Mostert
data/2-pages/285.txt | 6 +++--- data/2-pages/286.txt | 2 +- data/3-days/day-57.md | 8 ++++---- data/4-days-cleaned/day-57.md | 8 ++++---- data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/day-57-coverage-audit.md | 2 +- data/6-wiki/people/invar.md | 2 +- data/6-wiki/people/minor-figures-day-57.md | 6 +++--- 8 files changed, 18 insertions(+), 18 deletions(-)Show diff
diff --git a/data/2-pages/285.txt b/data/2-pages/285.txt index c452e1f..383da0f 100644 --- a/data/2-pages/285.txt +++ b/data/2-pages/285.txt @@ -2,19 +2,19 @@ Page: 285 Source: data/1-source/IMG_9958.jpg Transcription: -Pick up the cat. Geldrin says There. The cat pops and a big dog appears. Come to aid us in our travels and still due to our service to his mistress. +Pick up the cat. Geldrin says There. The cat pops and Haze appears as a big dog. Come to aid us in our travels and still due to our service to his mistress. Must not damage anything in the city. Must solve something else. Excellence of Air went to the dome as needed something to hint his task to make a trap for Sierra, to trap her so Browning can take her place. -There says, "I forgot something," and brings Bob and Bosh. Still cursed but says he can fix them when we are done. +Haze says, "I forgot something," and brings Bob and Bosh. Still cursed but says he can fix them when we are done. Need wizards of the stars to find the sword. Six doors at the top of the stairs. -There stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. There says this is a control room, which controls planes at once. +Haze stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. Haze says this is a control room, which controls planes at once. Sword is in the Earth plane, along with Tresmun's body. We mustn't leave the citadel when we go there, and it's hard to get back. diff --git a/data/2-pages/286.txt b/data/2-pages/286.txt index ca976d3..c94d77b 100644 --- a/data/2-pages/286.txt +++ b/data/2-pages/286.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9959.jpg Transcription: Completely dark and Invar's magic doesn't work. -There makes it work, for Counterspell. +Haze makes it work, for Counterspell. Earth elemental on the other side of the door. He hasn't had anyone from the prime plane for a long time. Not used to anyone other than tabaxi and cobra men. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index a3b2397..c26f678 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -179,19 +179,19 @@ Put a coin in a spot orbiting around the edge. Ignan: "We are close once more. I ## Page 285 -Pick up the cat. Geldrin says There. The cat pops and a big dog appears. Come to aid us in our travels and still due to our service to his mistress. +Pick up the cat. Geldrin says There. The cat pops and Haze appears as a big dog. Come to aid us in our travels and still due to our service to his mistress. Must not damage anything in the city. Must solve something else. Excellence of Air went to the dome as needed something to hint his task to make a trap for Sierra, to trap her so Browning can take her place. -There says, "I forgot something," and brings Bob and Bosh. Still cursed but says he can fix them when we are done. +Haze says, "I forgot something," and brings Bob and Bosh. Still cursed but says he can fix them when we are done. Need wizards of the stars to find the sword. Six doors at the top of the stairs. -There stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. There says this is a control room, which controls planes at once. +Haze stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. Haze says this is a control room, which controls planes at once. Sword is in the Earth plane, along with Tresmun's body. We mustn't leave the citadel when we go there, and it's hard to get back. @@ -201,7 +201,7 @@ When we go, all the pictures disappear and the room totally changes. Completely dark and Invar's magic doesn't work. -There makes it work, for Counterspell. +Haze makes it work, for Counterspell. Earth elemental on the other side of the door. He hasn't had anyone from the prime plane for a long time. Not used to anyone other than tabaxi and cobra men. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index 06354c4..9480d96 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -52,9 +52,9 @@ Dirk spoke to a fountain. The water wanted to go somewhere but was doing an impo At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a sun, a thick-set dwarf, and a slender woman with a bow, and a depiction of Garadwal speaking with the Dunner people. There was no evidence of a fire elemental living there. Statues lined the corridor facing the wall. One turned statue bore text like "runs in the streams" and possibly "high mountainness?" Another "slays foes bravely." A tabaxi with scales, missing one back leg and ears, was described as "fur of night scales of the sky," first princess of the union, and was slightly cracked. The sword had been made but perhaps the person had not, suggesting a Medusa-type spell. Other statues and objects involved weighted idols, jewellery, gravity and weight, the Lord of the Brass City, a necklace partly carved from a statue, something that hummed and "lungs," "Gleams in the first light," possible high priests of Goklhar, a fine-dressed figure with a book and rose, a brazier, and "Lies in the morning dew," prophet of the light. When a coin was placed in an orbiting spot, Ignan said, "We are close once more. I will help you say his name when you pick him up." -The party picked up the cat. Geldrin said "There," and the cat became a big dog named There, who had come to aid them in their travels and was still due to their service to his mistress. There warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. There remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. There stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that There called a control room controlling multiple planes at once. The sword was in the Earth plane with Tresmun's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. +The party picked up the cat. Geldrin said "There," and the cat became Haze as a big dog, who had come to aid them in their travels and was still due to their service to his mistress. Haze warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. Haze remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. Haze stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that Haze called a control room controlling multiple planes at once. The sword was in the Earth plane with Tresmun's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. -In the Earth-plane space, it was completely dark and Invar's magic did not work until There made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Hartwall, jagged granite, and shield crystal. The shield crystal was a piece of Tresmon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. +In the Earth-plane space, it was completely dark and Invar's magic did not work until Haze made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Hartwall, jagged granite, and shield crystal. The shield crystal was a piece of Tresmon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. A rat came to Morgana and disintegrated. Cacophony, previously met on page 231, appeared as a huge worm, died, and said it would show her something interesting. Her cider showed Rubyeye in a runed bathroom removing his eye. The cats hissed, the fire burned brighter, and then things returned to normal. A cat said the outcome was not predetermined and that the party had got rid of something bad following them. Dirk put the coal in the fire and saw a man saving a young girl; a clever way appeared with the rings. The party reached a small round temple near the remains of the Riversmeet bridge and the dwarven bridge, with Seward marble, about thirty benches carved with odd stones, five unlit altar candles, and ten gold statues under the altar representing different races but missing a dragon. The candles would not light until Invar used the torches around the room and Geldrin placed the wizard-race statues by the candles. They saw a vision of a large round table with seven people: five wizards, Hannah, and Icefang. Mama Hartwall, angry and holding the blue ball, said, "This is enough. You can't continue this any more." A silver scale in dirt appeared and then a door. @@ -120,7 +120,7 @@ Groups and factions mentioned include the party, towns and states at the expecte Places mentioned include the Black Dragon City in the Underblame, Infestus's city, Brass City, the Brass City citadel, Gaol, the lush inner city, the four great minarets, elemental fountains, the citadel corridors, the Trixus control room, the Earth plane, Harn? tavern, the small round temple near the Riversmeet bridge and dwarven bridge, Riversmeet, the Goliath throne room, Craters Edge, Pinesprings, Everchard, Morgana's house, the moon-like crystal surface, Provista, Eliana's house, the town square, Bleakstorm's town hall, the normal-plane statue room, the theatre room, the water painting realm, Morgana's hut with dead Everchard trees, Hydran's realm, the realm of darkness / dark plane, fire realm, Azar Nuri's fire garden and throne room, past Brass City, the marketplace, the palace, Igraine's field / possible afterlife, Attabre's realm, the Mortal realm, Kasha's realm, the death realm, Throngore's throne room, the path to the Dracula-style castle, the memory battlefield, the prison with the purple crystal and blue wisps, the sea-water prison area, and the empty house where the party rested. -Creatures and creature-like beings mentioned include the orb-made blue dragon, smoke-scaled cobra-headed diplomat, air elementals, fountain water elemental, earth elemental, There as cat/dog, cats, the huge worm form of Cacophony, stone Dirk, the white dragon by a river, young beautiful sphynx, baby dragonborn, salamander, mermen, merlady, jellyfish-headed guards, clam, fish man, birds, Mourning, crystalline and porcelain dragons, small mechanical bird, water elemental babies, odd scaled fish, living-flame prince, hammerhead-shark transformation, imp, ladybird, pigeon / Bruce, Throngore's demon form, cockroach, wasp people, goat men, Water Bull / God Bull, live tabaxi released from stone, and merfolk retinue. +Creatures and creature-like beings mentioned include the orb-made blue dragon, smoke-scaled cobra-headed diplomat, air elementals, fountain water elemental, earth elemental, Haze as a cat/dog, cats, the huge worm form of Cacophony, stone Dirk, the white dragon by a river, young beautiful sphynx, baby dragonborn, salamander, mermen, merlady, jellyfish-headed guards, clam, fish man, birds, Mourning, crystalline and porcelain dragons, small mechanical bird, water elemental babies, odd scaled fish, living-flame prince, hammerhead-shark transformation, imp, ladybird, pigeon / Bruce, Throngore's demon form, cockroach, wasp people, goat men, Water Bull / God Bull, live tabaxi released from stone, and merfolk retinue. # Items, Rewards, and Resources @@ -136,7 +136,7 @@ The fountain water elemental / Hydraxia thread links blue dragons, merfolk, a pu The Council statues were cursed around 2034 AP / approximately 3480, the same time the coins were smelted and when the tabaxi were ousted from the Brass. Returning their objects or body pieces restored at least one live tabaxi king; the full Council roster and consequences remain unresolved. -There says the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place. This links the dome, Air, Sierra, and Browning's replacement plan but does not fully explain who Sierra is or how the trap works. +Haze says the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place. This links the dome, Air, Sierra, and Browning's replacement plan but does not fully explain who Sierra is or how the trap works. Tresmun / Tresmon's body is incomplete and spread across planes or memories. Geldrin restored a shard to the moon/Brass City body, Envi has Tresmun's arm, and the party restored the tail at the end of the day. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index ca7ec4c..760d52f 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -108,7 +108,7 @@ sources: - [Dotharl](people/dotharl.md): Dotharl, Dothral, Dothril, Dothurl. - [Lady Elissa Hartwall](people/lady-elissa-hartwall.md): Lady Elissa Hartwall, Lady Hartwall, Hartwall, Elissa, Kaylissa, Kaylara, Lady Eliisa Hartwall. - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md): Lady Evalina Hartwall, Evalina Hartwall, Mama Hartwall, Miana, Avalina. -- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. +- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, Haze, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. - [Icefang](people/icefang.md): Icefang, Ice Fang, Altith, Atlih [uncertain], Ice Fury [uncertain related], elderly gentleman in the mental palace. diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index 979f19d..ef5b136 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -29,7 +29,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | -| There, Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | +| Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | | Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | | Craters Edge, Pinesprings, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | diff --git a/data/6-wiki/people/invar.md b/data/6-wiki/people/invar.md index d0805d0..ff845ca 100644 --- a/data/6-wiki/people/invar.md +++ b/data/6-wiki/people/invar.md @@ -29,7 +29,7 @@ Invar is a player character played by Bas. He is one of the original party membe - Day 47 records Invar hearing, amid mind fog, "I will not lose you again my son." - In Bridget's Day 52 pathway, Invar's route was paired with Morgana's; his room involved a cricket, raven, and gruel. - Bridget described Invar as a man of faith only beginning to learn it and said he needed to give someone a crystal, the one Geldrin lost, and use it if they returned to his city. -- On Day 57, Invar's magic did not work in the Earth-plane space until There made Counterspell work, and later Invar made a new case and repaired a plinth for the offering bowl. +- On Day 57, Invar's magic did not work in the Earth-plane space until Haze made Counterspell work, and later Invar made a new case and repaired a plinth for the offering bowl. ## Related Entries diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index d5289b4..525d2cc 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -11,15 +11,15 @@ sources: |---|---|---|---| | Infestus's wife | 57 | Gave the party a powerful shield crystal and scrolls, smashed an orb, and transformed a tiny human into a blue dragon for Brass City travel. | Rollup / [Infestus](infestus.md). | | Salinas | 57 | Infestus could ensure Salinas caused no issues during the treaty/council context. | Rollup. | -| Excellence of Air / Air | 57 | Left Brass City and never returned; There says Air went to the dome to make a trap for Sierra so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | +| Excellence of Air / Air | 57 | Left Brass City and never returned; Haze says Air went to the dome to make a trap for Sierra so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | | Envy | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envi/Envy remains uncertain. | [Ennuyé](ennuyé.md). | | Hydraxia | 57 | Named by the fountain water elemental before being given to blue dragons; relation to Hydran uncertain. | [Hydran / Hydram](hydran.md). | | Lord of the Brass City | 57 | Associated with weighted idols, jewellery, gravity, and weight in the statue corridor. | [Brass City](../places/brass-city.md). | | Goklhar | 57 | Possible high-priest reference near `Gleams in the first light`; spelling and identity uncertain. | Rollup. | | `Lies in the morning dew` | 57 | Prophet of the light, fine-dressed statue with book, rose, and brazier. | [Brass City Council](../factions/brass-city-council.md). | | Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | -| There | 57 | Cat became a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | -| Bob and Bosh | 57 | Still cursed; There said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | +| Haze | 57 | Cat became Haze as a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | +| Bob and Bosh | 57 | Still cursed; Haze said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | | [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana](eliana.md) / [Lady Elissa Hartwall](lady-elissa-hartwall.md). | | Cacophony | 57 | Appeared to Morgana as a huge worm, died, and showed Rubyeye removing his eye. | Rollup / [Open Threads](../open-threads.md). | | Rubyeye | 57 | Seen in vision removing his eye in a runed bathroom. | [Brutor Ruby Eye](brutor-ruby-eye.md). | -
7019fcdPC'sby Laura Mostert
data/6-wiki/aliases.md | 8 +++- data/6-wiki/clues/day-57-coverage-audit.md | 4 +- data/6-wiki/index.md | 15 +++++- data/6-wiki/items/minor-items-day-57.md | 2 +- data/6-wiki/open-threads.md | 2 +- data/6-wiki/people/dirk.md | 45 ++++++++++++++++++ data/6-wiki/people/dotharl.md | 55 ++++++++++++++++++++++ .../people/{eliana-hartwall.md => eliana.md} | 11 +++-- data/6-wiki/people/geldrin.md | 48 +++++++++++++++++++ data/6-wiki/people/invar.md | 44 +++++++++++++++++ data/6-wiki/people/kasha.md | 2 +- data/6-wiki/people/lady-elissa-hartwall.md | 2 +- data/6-wiki/people/lady-evalina-hartwall.md | 4 +- data/6-wiki/people/lord-briarthorn.md | 2 +- data/6-wiki/people/minor-figures-day-57.md | 6 +-- data/6-wiki/people/morgana.md | 17 +++++-- data/6-wiki/people/status.md | 2 +- data/6-wiki/places/minor-places-day-57.md | 2 +- data/6-wiki/sources.md | 2 +- 19 files changed, 248 insertions(+), 25 deletions(-)Show diff
diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 3453f1a..ca7ec4c 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -58,6 +58,9 @@ sources: - [The Mother](people/the-mother.md): The Mother, Mother. - [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, Perodita, The Choking Death, The whispers in the dark, Mother of many. - [The Basilisk](people/the-basilisk.md): The Basilisk, The Basilisk's guild. +- [Invar](people/invar.md): Invar. +- [Dirk](people/dirk.md): Dirk. +- [Geldrin](people/geldrin.md): Geldrin, Geldrin the Mighty. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. - [Dunhold Cache](places/dunhold-cache.md): Dunhold Cache. - [Pythus Aleyvarus](people/pythus-aleyvarus.md): Pythus Aleyvarus, Pythas, Pythus. @@ -101,10 +104,11 @@ sources: - [Igraine](people/igraine.md): Igraine, Lady Igraine, Egraine Brook [uncertain earlier variant], spirit of Igraine. - [Throngore](people/throngore.md): Throngore, Thromgore [earlier variant], giant goat-headed lord, god/demon of the death realm. - [Kasha](people/kasha.md): Kasha, Kasher [earlier uncertain variant]. -- [Eliana Hartwall](people/eliana-hartwall.md): Eliana Hartwall, Elliana Hartwall, Elluin Hartwall, Elluin Hartwall!. +- [Eliana](people/eliana.md): Eliana, Eliana Hartwall, Elliana Hartwall, Elluin Hartwall, Elluin Hartwall!. +- [Dotharl](people/dotharl.md): Dotharl, Dothral, Dothril, Dothurl. - [Lady Elissa Hartwall](people/lady-elissa-hartwall.md): Lady Elissa Hartwall, Lady Hartwall, Hartwall, Elissa, Kaylissa, Kaylara, Lady Eliisa Hartwall. - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md): Lady Evalina Hartwall, Evalina Hartwall, Mama Hartwall, Miana, Avalina. -- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Dothurl / Dotharl, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. +- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. - [Icefang](people/icefang.md): Icefang, Ice Fang, Altith, Atlih [uncertain], Ice Fury [uncertain related], elderly gentleman in the mental palace. diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index c4b328d..979f19d 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -23,13 +23,13 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Kasha, Guardwell soul pact, merbaby souls through Barrier, Kasha realm, Kasha breaking through ceiling | Added [Kasha](../people/kasha.md); updated [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Throngore, Sauver, Shylow, death realm, goat men, wasps, Air throne warning, path contradiction | Added [Throngore](../people/throngore.md); Sauver/Shylow in [Minor Figures from Day 57](../people/minor-figures-day-57.md); places in [Minor Places from Day 57](../places/minor-places-day-57.md). | | Lord Briarthorn, thorn-beard elf, moon trip with Eliana's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | -| Eliana Hartwall and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana Hartwall](../people/eliana-hartwall.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre / Altabre](../people/attabre-altabre.md). | +| Eliana and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana](../people/eliana.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre / Altabre](../people/attabre-altabre.md). | | Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre / Altabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | -| There, Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | +| There, Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Dotharl](../people/dotharl.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | | Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | | Craters Edge, Pinesprings, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 206139f..744751f 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -67,6 +67,15 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Days 53-56 Coverage Audit](clues/days-53-56-coverage-audit.md) - [Day 57 Coverage Audit](clues/day-57-coverage-audit.md) +## Player Characters + +- [Invar](people/invar.md) +- [Dirk](people/dirk.md) +- [Geldrin](people/geldrin.md) +- [Morgana](people/morgana.md) +- [Eliana](people/eliana.md) +- [Dotharl](people/dotharl.md) + ## People - [Garadwal](people/garadwal.md) @@ -81,6 +90,9 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [The Mother](people/the-mother.md) - [Peridita](people/peridita.md) - [The Basilisk](people/the-basilisk.md) +- [Invar](people/invar.md) +- [Dirk](people/dirk.md) +- [Geldrin](people/geldrin.md) - [Morgana](people/morgana.md) - [Benu](people/benu.md) - [Astraywoo](people/astraywoo.md) @@ -118,7 +130,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Igraine](people/igraine.md) - [Throngore](people/throngore.md) - [Kasha](people/kasha.md) -- [Eliana Hartwall](people/eliana-hartwall.md) +- [Eliana](people/eliana.md) +- [Dotharl](people/dotharl.md) - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md) - [Minor Figures from Day 57](people/minor-figures-day-57.md) diff --git a/data/6-wiki/items/minor-items-day-57.md b/data/6-wiki/items/minor-items-day-57.md index b2edfde..b4f3124 100644 --- a/data/6-wiki/items/minor-items-day-57.md +++ b/data/6-wiki/items/minor-items-day-57.md @@ -16,7 +16,7 @@ sources: | Orbiting coin | Triggered Ignan phrase about helping say his name when picked up. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tresmon, coal was wet, granite scorched, silver dragon matched Lady Evalina Hartwall / Mama Hartwall. | [Tresmon's Body and Statue Artifacts](tresmons-body-and-statue-artifacts.md). | | Scroll of Fireball | Parchment found by Geldrin at the cat tavern table. | [Party Inventory](../inventories/party-inventory.md). | -| Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Eliana Hartwall](../people/eliana-hartwall.md). | +| Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Eliana](../people/eliana.md). | | Five altar candles and ten gold statues | Used in the round temple vision of five wizards, Hannah, and Icefang. | Rollup. | | Moon crystal and tiny arm bone | Moon crystal motivated opening the moon door; tiny arm bone came through the wave door. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | | Founder's Day poster dated 17th March 991 | Showed Bleakstorm and a Geldrin look-alike; date was not Founding Day. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index d9356ad..3970517 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -229,6 +229,6 @@ sources: - What exactly is [Tresmon's body](items/tresmons-body-and-statue-artifacts.md), why is Envi holding the arm, and who is the crystal body ultimately being completed for? - Can [Globule](people/globule.md), [Hydran](people/hydran.md), and [Queen Mooncoral](people/queen-mooncoral.md)'s people keep the freed merbabies safe from Kasha and Noxia? - What did [Azar Nuri](people/azar-nuri.md) gain from Geldrin's bargain, and what happens if his envoys reach the Mortal plane? -- How do [Eliana Hartwall](people/eliana-hartwall.md) and [Lady Elissa Hartwall](people/lady-elissa-hartwall.md) relate across Hartwall family history, memory, and magical identity? +- How do [Eliana](people/eliana.md) and [Lady Elissa Hartwall](people/lady-elissa-hartwall.md) relate across Hartwall family history, memory, and magical identity? - Which instructions should the party trust in the dark plane: Hydran's advice to leave the path or [Throngore](people/throngore.md)'s demand to stay on it? - Why did Dirk feel someone scrying on him in [Brass City](places/brass-city.md) after Queen Mooncoral's arrival? diff --git a/data/6-wiki/people/dirk.md b/data/6-wiki/people/dirk.md new file mode 100644 index 0000000..b562c26 --- /dev/null +++ b/data/6-wiki/people/dirk.md @@ -0,0 +1,45 @@ +--- +title: Dirk +type: player character +aliases: + - Dirk +tags: + - player-character +player: Laura M +first_seen: day-01 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-57.md +--- + +# Dirk + +## Summary + +Dirk is a player character played by Laura M. He is one of the original party members, first noted in Everchard as a Goliath. + +## Known Details + +- On Day 1, Dirk was present at the Cider Inn Cider when the party began investigating Everchard's missing pigs, missing people, and memory tampering. +- Day 1 also records Dirk seeing a rat around the time an unidentified fifth human warrior vanished from memory. +- Dirk often consults ancestors for guidance, including asking what would happen if the party released the Valententhide-like figure and whether the party could defeat Browning as they were. +- Dirk's family and people are recurring concerns: Dirk Sr told Dirk to see his sister Ingris, and Bridget later said Dirk was on the path to free his people. +- On Day 57, Dirk spoke Aquan to Globule in the whirlpool and later asked the ancestors whether the party would land safely in the death realm. +- Queen Mooncoral gave the party a sending stone and ring of fire resistance after the merfolk rescue. + +## Related Entries + +- [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md) +- [Joy](joy.md) +- [Globule](globule.md) +- [Queen Mooncoral](queen-mooncoral.md) +- [Bridget's Doors](../concepts/bridgets-doors.md) + +## Open Questions + +- What exactly is Dirk's path to freeing his people? +- What is the future fishing expedition Bridget warned him not to forget? diff --git a/data/6-wiki/people/dotharl.md b/data/6-wiki/people/dotharl.md new file mode 100644 index 0000000..545c3d1 --- /dev/null +++ b/data/6-wiki/people/dotharl.md @@ -0,0 +1,55 @@ +--- +title: Dotharl +type: player character +aliases: + - Dotharl + - Dothral + - Dothril + - Dothurl +tags: + - player-character +player: Joshua +first_seen: day-46 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md +--- + +# Dotharl + +## Summary + +Dotharl, also recorded as Dothral, Dothril, and Dothurl, is a player character played by Joshua. His history is tied to awakened constructs, Bridget, Squeall, and elemental-prison lore. + +## Known Details + +- Day 46 says Dothral had only been aware for twenty years. +- A soul crashing into the tower awakened a few constructs; Dothral awakened around Rimewatch about twenty years earlier, near a door, and something forcefully propelled him through it. +- Day 47 records Dothral recognizing Hartwall lab architecture, encountering Dothral automatons, and being called the door guard for a prison. +- Sunsoreen's court did not want to question Dotharl because they did not question machines, but questions appeared anyway: "Help me, Grandson." +- Day 52 says Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. +- Bridget said part of Dotharl was Bridget and framed a future choice: Dotharl could keep his humanity or rejoin Bridget's realm. +- Day 55 gives Dotharl a warning dream involving a glass dome, a blue-eyed figure, a green-eyed woman, her hurt friend, her hostile brother, and possible Envy. +- Day 56 uses Dotharl, through Hracency's death and Rubyeye's eye, to locate Rubyeye and Cardinal. +- Day 57 records Dotharl entering paintings, casting See Invisibility, and being one of the named jumpers into the death realm. + +## Related Entries + +- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Sunsoreen / Snowscreen](../places/sunsoreen.md) +- [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) +- [Valententhide / Valentenhule](valententhide.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) + +## Open Questions + +- Is Dotharl's father Aneurascarle, and is Squeall truly his grandfather? +- What does it mean that part of Dotharl is Bridget? +- Who is the voice offering to free Dotharl from mortals? +- What is the meaning of Dotharl's Day 55 dome dream? diff --git a/data/6-wiki/people/eliana-hartwall.md b/data/6-wiki/people/eliana.md similarity index 79% rename from data/6-wiki/people/eliana-hartwall.md rename to data/6-wiki/people/eliana.md index a18501f..ab139eb 100644 --- a/data/6-wiki/people/eliana-hartwall.md +++ b/data/6-wiki/people/eliana.md @@ -1,11 +1,14 @@ --- -title: Eliana Hartwall +title: Eliana type: player character aliases: + - Eliana - Eliana Hartwall - Elliana Hartwall - Elluin Hartwall - Elluin Hartwall! +tags: + - player-character player: Kirsty note_taker: Kirsty first_seen: day-47 @@ -17,11 +20,11 @@ sources: - data/4-days-cleaned/day-57.md --- -# Eliana Hartwall +# Eliana ## Summary -Eliana Hartwall is a main player character played by Kirsty, who is also the note taker. Day 57 adds origin memories, a delivered baby box, Attabre and Icefang parentage, death/reincarnation implications, and a death-realm prison memory. +Eliana is a main player character played by Kirsty, who is also the note taker. Much later, the plot reveals her as Eliana Hartwall. Day 57 adds origin memories, a delivered baby box, Attabre and Icefang parentage, death/reincarnation implications, and a death-realm prison memory. ## Day 57 Details @@ -47,6 +50,6 @@ Eliana Hartwall is a main player character played by Kirsty, who is also the not ## Open Questions -- How do Eliana Hartwall and Lady Elissa Hartwall relate across Hartwall family history, memory, and magical identity? +- How do Eliana and Lady Elissa Hartwall relate across Hartwall family history, memory, and magical identity? - What spells did Lady Elissa Hartwall accept that Eliana refused? - What did Morgana's reincarnation do, and why are memories still incomplete? diff --git a/data/6-wiki/people/geldrin.md b/data/6-wiki/people/geldrin.md new file mode 100644 index 0000000..c124037 --- /dev/null +++ b/data/6-wiki/people/geldrin.md @@ -0,0 +1,48 @@ +--- +title: Geldrin +type: player character +aliases: + - Geldrin + - Geldrin the Mighty +tags: + - player-character +player: Shaun +first_seen: day-01 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-57.md +--- + +# Geldrin + +## Summary + +Geldrin, also called Geldrin the Mighty, is a player character played by Shaun. He is one of the original party members, first noted in Everchard as a gnome with wild brown hair and glasses with no glass. + +## Known Details + +- On Day 1, Geldrin uniquely remembered Gelissa when nobody else did, helping expose Everchard's memory tampering. +- Geldrin bought a compass box that pointed to Bug Hunter. +- Geldrin has repeatedly interacted with unusual books and spellbooks, including Enwi's spellbook, the skin book, and his own spellbook showing Perodita. +- Day 47 records Geldrin promising to return and free a massive shaggy blue aurora once he learned how to power the dome without all the elementals. +- In Bridget's Day 52 pathway, Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. +- On Day 57, Geldrin received a Scroll of Fireball, gave Attabre a book, and made a dangerous bargain with Sultan Azar Nuri for the fire-realm tongs. + +## Related Entries + +- [Bug Hunter](bug-hunter.md) +- [Edward Browning](edward-browning.md) +- [Ennuyé](ennuyé.md) +- [Peridita](peridita.md) +- [Azar Nuri](azar-nuri.md) +- [Bridget's Doors](../concepts/bridgets-doors.md) + +## Open Questions + +- What are the Brownings' connection to Geldrin and his people? +- How dangerous is Geldrin's bargain with Azar Nuri? +- Can Geldrin find a way to power the dome without trapped elementals? diff --git a/data/6-wiki/people/invar.md b/data/6-wiki/people/invar.md new file mode 100644 index 0000000..d0805d0 --- /dev/null +++ b/data/6-wiki/people/invar.md @@ -0,0 +1,44 @@ +--- +title: Invar +type: player character +aliases: + - Invar +tags: + - player-character +player: Bas +first_seen: day-01 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-57.md +--- + +# Invar + +## Summary + +Invar is a player character played by Bas. He is one of the original party members, first noted in Everchard as a greying-haired, paladin-looking dwarf who did not yet have plate. + +## Known Details + +- On Day 1, Invar had delivered weapons to Everchard before the party discovered the militia and memory problems. +- Invar briefly remembered Gelissa during the Everchard memory tampering. +- Day 47 records Invar hearing, amid mind fog, "I will not lose you again my son." +- In Bridget's Day 52 pathway, Invar's route was paired with Morgana's; his room involved a cricket, raven, and gruel. +- Bridget described Invar as a man of faith only beginning to learn it and said he needed to give someone a crystal, the one Geldrin lost, and use it if they returned to his city. +- On Day 57, Invar's magic did not work in the Earth-plane space until There made Counterspell work, and later Invar made a new case and repaired a plinth for the offering bowl. + +## Related Entries + +- [Morgana](morgana.md) +- [Geldrin](geldrin.md) +- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Brass City](../places/brass-city.md) + +## Open Questions + +- Who called Invar "my son" during the Day 47 mind fog? +- What is Invar's city, and what will the crystal task require? diff --git a/data/6-wiki/people/kasha.md b/data/6-wiki/people/kasha.md index ef30164..92903ca 100644 --- a/data/6-wiki/people/kasha.md +++ b/data/6-wiki/people/kasha.md @@ -30,7 +30,7 @@ Kasha is a soul-associated power whose bargains and realm pressure matter to Gel - [Throngore](throngore.md) - [Hydran / Hydram](hydran.md) -- [Eliana Hartwall](eliana-hartwall.md) +- [Eliana](eliana.md) ## Open Questions diff --git a/data/6-wiki/people/lady-elissa-hartwall.md b/data/6-wiki/people/lady-elissa-hartwall.md index 8803f30..142fda8 100644 --- a/data/6-wiki/people/lady-elissa-hartwall.md +++ b/data/6-wiki/people/lady-elissa-hartwall.md @@ -48,7 +48,7 @@ Lady Elissa Hartwall is a regional noble or military authority connected to Hart - [Dunensend](../places/dunensend.md) - [Lady Thorpe](lady-thorpe.md) -- [Eliana Hartwall](eliana-hartwall.md) +- [Eliana](eliana.md) - [Icefang](icefang.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Open Threads](../open-threads.md) diff --git a/data/6-wiki/people/lady-evalina-hartwall.md b/data/6-wiki/people/lady-evalina-hartwall.md index 6742f12..a4190d2 100644 --- a/data/6-wiki/people/lady-evalina-hartwall.md +++ b/data/6-wiki/people/lady-evalina-hartwall.md @@ -36,7 +36,7 @@ Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall fami ## Related Entries -- [Eliana Hartwall](eliana-hartwall.md) +- [Eliana](eliana.md) - [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [Icefang](icefang.md) - [Ennuyé](ennuyé.md) @@ -44,6 +44,6 @@ Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall fami ## Open Questions -- How do Lady Evalina Hartwall, Eliana Hartwall, Miana, and Avalina relate across memory, time, and altered identity? +- How do Lady Evalina Hartwall, Eliana, Miana, and Avalina relate across memory, time, and altered identity? - What exactly happened when Envy was trapped in Lady Evalina Hartwall's head? - Are the daughters referenced on Day 56 Eliana, Joy, Hannah, Lady Elissa Hartwall, or other Hartwall children? diff --git a/data/6-wiki/people/lord-briarthorn.md b/data/6-wiki/people/lord-briarthorn.md index f2e16f4..06251e0 100644 --- a/data/6-wiki/people/lord-briarthorn.md +++ b/data/6-wiki/people/lord-briarthorn.md @@ -25,7 +25,7 @@ Lord Briarthorn is a mortal thorn-beard elf found in a death-realm prison cell. ## Related Entries - [Throngore](throngore.md) -- [Eliana Hartwall](eliana-hartwall.md) +- [Eliana](eliana.md) - [Minor Figures from Day 57](minor-figures-day-57.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 8126078..d5289b4 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -20,19 +20,19 @@ sources: | Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | There | 57 | Cat became a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | | Bob and Bosh | 57 | Still cursed; There said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | -| [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana Hartwall](eliana-hartwall.md) / [Lady Elissa Hartwall](lady-elissa-hartwall.md). | +| [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana](eliana.md) / [Lady Elissa Hartwall](lady-elissa-hartwall.md). | | Cacophony | 57 | Appeared to Morgana as a huge worm, died, and showed Rubyeye removing his eye. | Rollup / [Open Threads](../open-threads.md). | | Rubyeye | 57 | Seen in vision removing his eye in a runed bathroom. | [Brutor Ruby Eye](brutor-ruby-eye.md). | | Hannah | 57 | Present at the vision round table with five wizards and Icefang. | Rollup / [Open Threads](../open-threads.md). | | Bleakstorm | 57 | In Provista/Town Hall with ice auroch sculpture; wanted the party to save him and free Icefang's spirit. | [Icefang](icefang.md). | -| Dothurl / Dotharl | 57 | Entered paintings, cast See Invisibility, and was one of the ancestors' named jumpers. | Rollup. | +| [Dotharl](dotharl.md) / Dothurl | 57 | Entered paintings, cast See Invisibility, and was one of the ancestors' named jumpers. | Standalone player character page. | | Nare | 57 | Thought Globule was dangerous. | Rollup. | | Kesha | 57 | Identified as Noxia's sister; Noxia replaced someone but Kesha did not. | [Noxia](noxia.md), [Kasha](kasha.md) because sister identities remain uncertain. | | Mourning | 57 | Bird/enforcer created by Morgana; imprisoned for creating funerals and killing people who cut down trees or killed rabbits. | [Igraine](igraine.md). | | Bruce | 57 | Bird who agreed to teach Morgana animal/bird channeling; Morgana named it Bruce. | [Igraine](igraine.md). | | Sauver | 57 | Goat man on a throne, one of Throngore's, bound until the party arrived. | [Throngore](throngore.md). | | Shylow | 57 | Goat figure who thought the party were goat people and accepted names beginning with S. | [Throngore](throngore.md). | -| [uncertain: Shevolt] | 57 | Recognized Eliana in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Eliana Hartwall](eliana-hartwall.md). | +| [uncertain: Shevolt] | 57 | Recognized Eliana in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Eliana](eliana.md). | | Fred | 57 | Fellow goat whom [uncertain: Shevolt] claimed he was there to free. | Rollup. | | Sjorra, Law, [unclear: Ice?], Squwal, Bridske | 57 | Listed among gods/god-like names with counts beside some names. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Water Bull / God Bull | 57 | Regained memories, defied Kasha, and wanted to take his realm back; could not enter sea water to get merbabies. | [Hydran / Hydram](hydran.md), [Throngore](throngore.md). | diff --git a/data/6-wiki/people/morgana.md b/data/6-wiki/people/morgana.md index f9f03f1..5c66376 100644 --- a/data/6-wiki/people/morgana.md +++ b/data/6-wiki/people/morgana.md @@ -1,21 +1,27 @@ --- title: Morgana -type: person +type: player character +tags: + - player-character +player: Laura R first_seen: day-27 -last_updated: day-35 +last_updated: day-57 sources: - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-28.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-57.md --- # Morgana ## Summary -Morgana is a human sent by The Chorus because the visions went better when the party had five members. +Morgana is a human player character played by Laura R. She was sent by The Chorus because the visions went better when the party had five members. ## Known Details @@ -28,6 +34,9 @@ Morgana is a human sent by The Chorus because the visions went better when the p - Day 32 has Morgana escaping with Geldrin and Dith through a trapdoor while carrying or helping secure the shield crystal, later locating Lady Thorpe inside the Goldenswell militia house. - Day 35 has Morgana scouting as a spider, bribing or attempting to bribe guards, sensing movement, stopping carts with thorns, killing llamia with a cart wheel, and trying to wake Elementarium with a kiss. - The attempted kiss felt forced and gave Morgana a vision of a laughing female dragon, possibly the Peridot Queen. +- Day 46 shows Morgana's bee scouting, infinite-library vision, and Chorus magpie guidance. +- Bridget's Day 52 pathway framed Morgana's choice to help the party as costly, with those who sought to train her also coming at great cost. +- Day 57 tied Morgana to Igraine, Mourning, Bruce, animal/bird channeling, and a future-looking image of Morgana with Igraine over small-dragon bones. ## Related Entries @@ -42,3 +51,5 @@ Morgana is a human sent by The Chorus because the visions went better when the p - Why do the visions improve when Morgana is present? - What is happening in Everchard forest around the green Dragonborn and sickly Goliaths? - Why did waking Elementarium feel forced, and what did the laughing dragon vision mean? +- What does Morgana's costly aid and training thread require? +- What does the future image of Morgana, Igraine, birds, and small-dragon bones actually mean? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 919f58a..cf3145c 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -178,7 +178,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Jin-Loo | tortle teleport mage/contact | `data/4-days-cleaned/day-32.md` | Teleported the party to Goldenswell and left a ring so he could find them again. | | Guardfree and Guardfore | merfolk guards/allies | `data/4-days-cleaned/day-20.md` | Guardfree kept watch and planned to get his mistress to bring guest shells. | | Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadwal's location. | -| [Morgana](morgana.md) | allied fifth party member | `data/4-days-cleaned/day-27.md`, `data/4-days-cleaned/day-28.md`, `data/4-days-cleaned/day-30.md` | Sent by The Chorus because visions went better with five party members; carries birds, heals, and can Polymorph. | +| [Morgana](morgana.md) | player character | `data/4-days-cleaned/day-27.md`, `data/4-days-cleaned/day-28.md`, `data/4-days-cleaned/day-30.md` | Sent by The Chorus because visions went better with five party members; carries birds, heals, and can Polymorph. | | [Benu](benu.md) | Dunensend ally | `data/4-days-cleaned/day-29.md`, `data/4-days-cleaned/day-30.md` | Helped secure support in wars to come, stayed to build a temple, could message Cardenald, and could create a hero's feast. | | Granny and Scurry | trusted Underbelly contacts in Highden | `data/4-days-cleaned/day-36.md` | Granny was an old gnoll liaison; Scurry was a Highden lizardfolk courier. | | Captain Briarthorn | Highden commander | `data/4-days-cleaned/day-36.md` | Moss couch elf captain of an elf hundred planning a river battle point. | diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index 51d38a3..ef8858d 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -16,7 +16,7 @@ sources: | Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to the Lady Evalina Hartwall / Mama Hartwall and Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Craters Edge | Seen through the moon door; Dirk heard garbled conversations. | Rollup. | | Pinesprings | Dragon door memory of snow, pine trees, baby dragonborn, and redbeard figure with a broom. | Rollup. | -| Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana Hartwall](../people/eliana-hartwall.md). | +| Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana](../people/eliana.md). | | City of Aquarius | Mother-of-pearl palace where Keepers of the Pact were welcome by Lord Hydram's permission. | [Hydran / Hydram](../people/hydran.md). | | Morgana's dead-tree hut | Painting realm with dead Everchard trees, birds, white rose, conch, and offering bowl. | [Igraine](../people/igraine.md). | | Hydran's realm | Reached through the `Submarine` door; held the contract to save babies' spirits and carvings about Envi, Noxia, and Morgana. | [Hydran / Hydram](../people/hydran.md). | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 12f4d66..b25db01 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -98,7 +98,7 @@ sources: - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana Hartwall](people/eliana-hartwall.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana](people/eliana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups -
6960994Fix wiki validationby Bas Mostert
tools/validate-wiki-site.mjs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-)Show diff
diff --git a/tools/validate-wiki-site.mjs b/tools/validate-wiki-site.mjs index df7bdb7..b603d80 100644 --- a/tools/validate-wiki-site.mjs +++ b/tools/validate-wiki-site.mjs @@ -37,8 +37,16 @@ function stripHashAndQuery(href) { return href.split('#')[0].split('?')[0]; } +function decodeHrefPath(href) { + try { + return decodeURI(href); + } catch { + return href; + } +} + function targetFileForHref(fromHtmlPath, href) { - const cleanHref = stripHashAndQuery(href); + const cleanHref = decodeHrefPath(stripHashAndQuery(href)); if (!cleanHref || cleanHref.startsWith('mailto:') || /^[a-z][a-z0-9+.-]*:/i.test(cleanHref)) return null; const resolved = path.resolve(path.dirname(fromHtmlPath), cleanHref); if (path.extname(resolved)) return resolved; -
2aebe27HTML Wiki buildingby Bas Mostert
.gitea/workflows/wiki.yml | 38 ++ .gitignore | 2 + package-lock.json | 80 ++++ package.json | 13 + tools/build-wiki.mjs | 964 +++++++++++++++++++++++++++++++++++++++++++ tools/validate-wiki-site.mjs | 108 +++++ 6 files changed, 1205 insertions(+)Show diff
diff --git a/.gitea/workflows/wiki.yml b/.gitea/workflows/wiki.yml new file mode 100644 index 0000000..279c1c1 --- /dev/null +++ b/.gitea/workflows/wiki.yml @@ -0,0 +1,38 @@ +name: Build Wiki + +on: + push: + branches: + - master + pull_request: + +jobs: + build-wiki: + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build wiki + run: npm run build:wiki + + - name: Validate wiki + run: npm run validate:wiki + + - name: Upload generated wiki + uses: actions/upload-artifact@v3 + with: + name: pentacity-wiki + path: dist/wiki + retention-days: 30 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b947077 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +dist/ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..c58d3bd --- /dev/null +++ b/package-lock.json @@ -0,0 +1,80 @@ +{ + "name": "pentacity-notes", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "pentacity-notes", + "version": "1.0.0", + "dependencies": { + "markdown-it": "^14.1.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, + "node_modules/markdown-it": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.1.tgz", + "integrity": "sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "bin": { + "markdown-it": "bin/markdown-it.mjs" + } + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "license": "MIT" + }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "license": "MIT" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..466cc40 --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "name": "pentacity-notes", + "version": "1.0.0", + "private": true, + "type": "module", + "scripts": { + "build:wiki": "node tools/build-wiki.mjs", + "validate:wiki": "node tools/validate-wiki-site.mjs" + }, + "dependencies": { + "markdown-it": "^14.1.0" + } +} diff --git a/tools/build-wiki.mjs b/tools/build-wiki.mjs new file mode 100644 index 0000000..23d710c --- /dev/null +++ b/tools/build-wiki.mjs @@ -0,0 +1,964 @@ +import fs from 'node:fs'; +import path from 'node:path'; +import { execFileSync } from 'node:child_process'; +import process from 'node:process'; +import MarkdownIt from 'markdown-it'; + +const rootDir = process.cwd(); +const sourceDir = path.join(rootDir, 'data', '6-wiki'); +const cleanedDaysDir = path.join(rootDir, 'data', '4-days-cleaned'); +const outputDir = path.join(rootDir, 'dist', 'wiki'); +const assetsDir = path.join(outputDir, 'assets'); +const recentChangesLimit = Number.parseInt(process.env.WIKI_RECENT_CHANGES_LIMIT ?? '0', 10); + +const md = new MarkdownIt({ + html: false, + linkify: true, + typographer: true +}); + +function walkMarkdownFiles(dir) { + const entries = fs.readdirSync(dir, { withFileTypes: true }); + const files = []; + + for (const entry of entries) { + const fullPath = path.join(dir, entry.name); + if (entry.isDirectory()) { + files.push(...walkMarkdownFiles(fullPath)); + } else if (entry.isFile() && entry.name.endsWith('.md')) { + files.push(fullPath); + } + } + + return files.sort((a, b) => a.localeCompare(b)); +} + +function posixPath(filePath) { + return filePath.split(path.sep).join('/'); +} + +function routeForSource(sourceRelativePath) { + const parsed = path.posix.parse(sourceRelativePath); + if (parsed.base === 'index.md') { + return parsed.dir ? `${parsed.dir}/index.html` : 'index.html'; + } + return path.posix.join(parsed.dir, parsed.name, 'index.html'); +} + +function pageUrlForRoute(route) { + return route.endsWith('/index.html') ? route.slice(0, -'index.html'.length) : route; +} + +function relativeHref(fromRoute, toRoute) { + const fromDir = path.posix.dirname(fromRoute); + const targetUrl = pageUrlForRoute(toRoute); + let href = path.posix.relative(fromDir, targetUrl || '.'); + if (!href) href = '.'; + if (!href.startsWith('.')) href = `./${href}`; + return href; +} + +function escapeHtml(value) { + return String(value) + .replaceAll('&', '&') + .replaceAll('<', '<') + .replaceAll('>', '>') + .replaceAll('"', '"') + .replaceAll("'", '''); +} + +function slugify(value) { + return String(value) + .toLowerCase() + .replace(/[^a-z0-9]+/g, '-') + .replace(/^-+|-+$/g, '') || 'entry'; +} + +function titleFromPath(sourceRelativePath) { + const parsed = path.posix.parse(sourceRelativePath); + return parsed.name + .split('-') + .map((part) => part.charAt(0).toUpperCase() + part.slice(1)) + .join(' '); +} + +function titleFromDayPath(sourceRelativePath) { + const parsed = path.posix.parse(sourceRelativePath); + const match = /^day-(\d+)$/.exec(parsed.name); + if (!match) return titleFromPath(sourceRelativePath); + return `Day ${Number.parseInt(match[1], 10)}`; +} + +function daySortValue(page) { + const match = /day-(\d+)\.md$/.exec(page.rootRelativePath); + return match ? Number.parseInt(match[1], 10) : Number.MAX_SAFE_INTEGER; +} + +function parseFrontmatter(raw) { + if (!raw.startsWith('---\n')) { + return { data: {}, content: raw }; + } + + const end = raw.indexOf('\n---', 4); + if (end === -1) { + return { data: {}, content: raw }; + } + + const block = raw.slice(4, end).trimEnd(); + const contentStart = raw.indexOf('\n', end + 4); + const content = contentStart === -1 ? '' : raw.slice(contentStart + 1); + const data = {}; + const lines = block.split('\n'); + + for (let index = 0; index < lines.length; index += 1) { + const line = lines[index]; + const scalar = /^([A-Za-z0-9_-]+):\s*(.*)$/.exec(line); + if (!scalar) continue; + + const [, key, value] = scalar; + if (value) { + data[key] = value.trim().replace(/^['"]|['"]$/g, ''); + continue; + } + + const values = []; + while (index + 1 < lines.length) { + const next = lines[index + 1]; + const listItem = /^\s+-\s*(.*)$/.exec(next); + if (!listItem) break; + values.push(listItem[1].trim().replace(/^['"]|['"]$/g, '')); + index += 1; + } + data[key] = values; + } + + return { data, content }; +} + +function normalizeHeadingText(value) { + return String(value) + .trim() + .replace(/`([^`]+)`/g, '$1') + .replace(/\s+/g, ' ') + .toLowerCase(); +} + +function removeDuplicateTopHeading(markdown, title) { + const lines = markdown.split('\n'); + const firstContentIndex = lines.findIndex((line) => line.trim()); + if (firstContentIndex === -1) return markdown; + + const heading = /^#\s+(.+?)\s*$/.exec(lines[firstContentIndex]); + if (!heading) return markdown; + if (normalizeHeadingText(heading[1]) !== normalizeHeadingText(title)) return markdown; + + lines.splice(firstContentIndex, 1); + return lines.join('\n').replace(/^\n+/, ''); +} + +function git(args, fallback = '') { + try { + return execFileSync('git', args, { + cwd: rootDir, + encoding: 'utf8', + stdio: ['ignore', 'pipe', 'ignore'] + }).trim(); + } catch { + return fallback; + } +} + +function lastModifiedForFile(absPath) { + const rel = posixPath(path.relative(rootDir, absPath)); + const committed = git(['log', '-1', '--format=%cI', '--', rel]); + if (committed) return new Date(committed); + return fs.statSync(absPath).mtime; +} + +function formatDate(date) { + return new Intl.DateTimeFormat('en-GB', { + year: 'numeric', + month: 'short', + day: '2-digit' + }).format(date); +} + +function formatDateTime(date) { + return new Intl.DateTimeFormat('en-GB', { + year: 'numeric', + month: 'short', + day: '2-digit', + hour: '2-digit', + minute: '2-digit', + timeZoneName: 'short' + }).format(date); +} + +function rewriteMarkdownLinks(markdown, sourceRelativePath, route, sourceToRoute) { + return markdown.replace(/(!?)\[([^\]]+)]\(([^)]+\.md)(#[^)\s]+)?\)/g, (match, bang, label, rawHref, hash = '') => { + if (bang) return match; + if (/^[a-z][a-z0-9+.-]*:/i.test(rawHref)) return match; + + const currentDir = path.posix.dirname(sourceRelativePath); + const normalized = path.posix.normalize(path.posix.join(currentDir, rawHref)); + const targetRoute = sourceToRoute.get(normalized); + if (!targetRoute) return match; + + return `[${label}](${relativeHref(route, targetRoute)}${hash})`; + }); +} + +function collectHeadings(content) { + const headings = []; + for (const line of content.split('\n')) { + const match = /^(#{2,3})\s+(.+?)\s*$/.exec(line); + if (!match) continue; + headings.push({ + level: match[1].length, + text: match[2].replace(/`/g, ''), + id: slugify(match[2]) + }); + } + return headings.slice(0, 12); +} + +function addHeadingIds(html) { + return html.replace(/<h([2-3])>(.*?)<\/h\1>/g, (_match, level, inner) => { + const text = inner.replace(/<[^>]+>/g, ''); + return `<h${level} id="${escapeHtml(slugify(text))}">${inner}</h${level}>`; + }); +} + +function renderLogo() { + return ` + <svg class="site-logo" viewBox="0 0 96 96" role="img" aria-labelledby="logo-title logo-desc" xmlns="http://www.w3.org/2000/svg"> + <title id="logo-title">The Pentacity States logo</title> + <desc id="logo-desc">Five towers arranged around a pentagonal star.</desc> + <defs> + <linearGradient id="tower-glow" x1="0" x2="1" y1="0" y2="1"> + <stop offset="0" stop-color="#f6d78b" /> + <stop offset="1" stop-color="#b36b38" /> + </linearGradient> + </defs> + <path d="M48 5 88 34 73 81H23L8 34Z" fill="#1b2832" stroke="#d7b46a" stroke-width="3" /> + <path d="M48 15 78 37 67 72H29L18 37Z" fill="#263746" stroke="#6ea6a6" stroke-width="2" /> + <path d="M48 25 55 42 74 43 59 54 64 72 48 62 32 72 37 54 22 43 41 42Z" fill="#d7b46a" opacity="0.95" /> + <g fill="url(#tower-glow)" stroke="#3b2418" stroke-width="1.5"> + <path d="M44 16h8v23h-8z" /> + <path d="M70 35h8v22h-8z" /> + <path d="M57 66h8v17h-8z" /> + <path d="M31 66h8v17h-8z" /> + <path d="M18 35h8v22h-8z" /> + </g> + <g fill="#f8ecd0"> + <rect x="47" y="22" width="2" height="6" /> + <rect x="73" y="41" width="2" height="6" /> + <rect x="60" y="71" width="2" height="5" /> + <rect x="34" y="71" width="2" height="5" /> + <rect x="21" y="41" width="2" height="6" /> + </g> + </svg>`; +} + +function renderLayout({ title, type, content, route, headings, lastModified, sourceRelativePath, allPages }) { + const cssHref = relativeHref(route, 'assets/styles.css'); + const homeHref = relativeHref(route, 'index.html'); + const recentHref = relativeHref(route, 'recent-changes/index.html'); + const daysHref = relativeHref(route, 'days/index.html'); + const indexPages = allPages.filter((page) => page.category === 'index').slice(0, 4); + const categoryPages = new Map(); + + for (const page of allPages) { + if (page.category === 'index') continue; + if (!categoryPages.has(page.category)) categoryPages.set(page.category, []); + categoryPages.get(page.category).push(page); + } + + const navSections = [...categoryPages.entries()] + .sort(([a], [b]) => a.localeCompare(b)) + .map(([category, pages]) => { + const categoryTitle = category.charAt(0).toUpperCase() + category.slice(1); + const sortedPages = [...pages].sort((a, b) => { + if (category === 'days') return daySortValue(a) - daySortValue(b); + return a.title.localeCompare(b.title); + }); + const samples = sortedPages.map((page) => `<li><a href="${escapeHtml(relativeHref(route, page.route))}">${escapeHtml(page.title)}</a></li>`).join(''); + return `<details class="nav-group"><summary>${escapeHtml(categoryTitle)} <span>${pages.length}</span></summary><ul>${samples}</ul></details>`; + }).join('\n'); + + const headingNav = headings.length + ? `<nav class="toc" aria-labelledby="toc-title"><h2 id="toc-title">On This Page</h2><ol>${headings.map((heading) => `<li class="toc-level-${heading.level}"><a href="#${escapeHtml(heading.id)}">${escapeHtml(heading.text)}</a></li>`).join('')}</ol></nav>` + : ''; + + const indexLinks = indexPages.map((page) => `<a href="${escapeHtml(relativeHref(route, page.route))}">${escapeHtml(page.title)}</a>`).join(''); + + return `<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>${escapeHtml(title)} | The Pentacity States</title> + <link rel="stylesheet" href="${escapeHtml(cssHref)}"> +</head> +<body> + <a class="skip-link" href="#content">Skip to content</a> + <header class="site-header"> + <a class="brand" href="${escapeHtml(homeHref)}" aria-label="The Pentacity States home"> + ${renderLogo()} + <span><strong>The Pentacity States</strong><small>Campaign Wiki</small></span> + </a> + <nav class="top-nav" aria-label="Primary navigation"> + <a href="${escapeHtml(homeHref)}">Index</a> + <a href="${escapeHtml(daysHref)}">Days</a> + <a href="${escapeHtml(recentHref)}">Recent Changes</a> + ${indexLinks} + </nav> + </header> + <div class="page-shell"> + <aside class="sidebar" aria-label="Wiki sections"> + <form class="search" role="search"> + <label for="wiki-filter">Filter pages</label> + <input id="wiki-filter" type="search" placeholder="Search page titles" data-page-filter> + </form> + <nav aria-label="Wiki pages" data-page-list> + ${navSections} + </nav> + </aside> + <main id="content" class="content" tabindex="-1"> + <article class="wiki-page"> + <header class="page-title"> + <p class="eyebrow">${escapeHtml(type || 'wiki entry')}</p> + <h1>${escapeHtml(title)}</h1> + </header> + ${content} + </article> + </main> + <aside class="right-rail" aria-label="Page details"> + ${headingNav} + <section class="page-meta" aria-labelledby="page-meta-title"> + <h2 id="page-meta-title">Page Details</h2> + <dl> + <dt>Source</dt><dd><code>${escapeHtml(sourceRelativePath)}</code></dd> + <dt>Last modified</dt><dd><time datetime="${lastModified.toISOString()}">${escapeHtml(formatDate(lastModified))}</time></dd> + </dl> + </section> + </aside> + </div> + <footer class="site-footer"> + <p>Last modified: <time datetime="${lastModified.toISOString()}">${escapeHtml(formatDateTime(lastModified))}</time></p> + <p>Generated from the Markdown campaign notes.</p> + </footer> + <script src="${escapeHtml(relativeHref(route, 'assets/wiki.js'))}" defer></script> +</body> +</html>`; +} + +function parsePages() { + const files = walkMarkdownFiles(sourceDir); + const cleanedDayFiles = fs.existsSync(cleanedDaysDir) ? walkMarkdownFiles(cleanedDaysDir) : []; + const sourceToRoute = new Map(); + + for (const absPath of files) { + const rel = posixPath(path.relative(sourceDir, absPath)); + sourceToRoute.set(rel, routeForSource(rel)); + } + + for (const absPath of cleanedDayFiles) { + const rel = posixPath(path.relative(cleanedDaysDir, absPath)); + sourceToRoute.set(posixPath(path.relative(rootDir, absPath)), path.posix.join('days', routeForSource(rel))); + } + + const pages = files.map((absPath) => { + const sourceRelativePath = posixPath(path.relative(sourceDir, absPath)); + const rootRelativePath = posixPath(path.relative(rootDir, absPath)); + const parsed = parseFrontmatter(fs.readFileSync(absPath, 'utf8')); + const route = sourceToRoute.get(sourceRelativePath); + const category = sourceRelativePath.includes('/') ? sourceRelativePath.split('/')[0] : 'index'; + const title = parsed.data.title || titleFromPath(sourceRelativePath); + + return { + absPath, + sourceRelativePath, + rootRelativePath, + route, + category, + title, + type: parsed.data.type, + frontmatter: parsed.data, + markdown: parsed.content, + lastModified: lastModifiedForFile(absPath) + }; + }); + + const dayPages = cleanedDayFiles.map((absPath) => { + const sourceRelativePath = posixPath(path.relative(rootDir, absPath)); + const cleanedRelativePath = posixPath(path.relative(cleanedDaysDir, absPath)); + const rootRelativePath = posixPath(path.relative(rootDir, absPath)); + const parsed = parseFrontmatter(fs.readFileSync(absPath, 'utf8')); + const route = path.posix.join('days', routeForSource(cleanedRelativePath)); + const title = titleFromDayPath(cleanedRelativePath); + + return { + absPath, + sourceRelativePath, + rootRelativePath, + route, + category: 'days', + title, + type: 'cleaned day', + frontmatter: parsed.data, + markdown: parsed.content, + lastModified: lastModifiedForFile(absPath) + }; + }).sort((a, b) => daySortValue(a) - daySortValue(b)); + + if (dayPages.length) { + const newestDay = dayPages.reduce((latest, page) => page.lastModified > latest ? page.lastModified : latest, dayPages[0].lastModified); + const list = dayPages.map((page) => `- [${page.title}](${page.route.replace(/^days\//, '')})`).join('\n'); + pages.push({ + absPath: cleanedDaysDir, + sourceRelativePath: 'data/4-days-cleaned', + rootRelativePath: 'data/4-days-cleaned', + route: 'days/index.html', + category: 'days', + title: 'Days', + type: 'cleaned day index', + frontmatter: {}, + markdown: `The cleaned day narratives are the full chronological campaign record behind the extracted wiki entries.\n\n${list}\n`, + lastModified: newestDay + }); + } + + pages.push(...dayPages); + + return { pages, sourceToRoute }; +} + +function renderWikiPages(pages, sourceToRoute) { + for (const page of pages) { + const markdown = removeDuplicateTopHeading(page.markdown, page.title); + const rewritten = rewriteMarkdownLinks(markdown, page.sourceRelativePath, page.route, sourceToRoute); + const headings = collectHeadings(rewritten); + const content = addHeadingIds(md.render(rewritten)); + const html = renderLayout({ + title: page.title, + type: page.type, + content, + route: page.route, + headings, + lastModified: page.lastModified, + sourceRelativePath: page.rootRelativePath, + allPages: pages + }); + const outPath = path.join(outputDir, page.route); + fs.mkdirSync(path.dirname(outPath), { recursive: true }); + fs.writeFileSync(outPath, html); + } +} + +function parseCommits() { + const format = '%H%x1f%h%x1f%cI%x1f%an%x1f%s%x1e'; + const args = ['log', `--format=${format}`]; + if (recentChangesLimit > 0) args.splice(1, 0, `-${recentChangesLimit}`); + const raw = git(args); + if (!raw) return []; + + return raw.split('\x1e') + .map((entry) => entry.trim()) + .filter(Boolean) + .map((entry) => { + const [hash, shortHash, date, author, subject] = entry.split('\x1f'); + const stat = git(['show', '--stat', '--format=', '--no-ext-diff', hash]); + const diff = git(['show', '--format=', '--no-ext-diff', '--unified=3', hash]); + return { hash, shortHash, date: new Date(date), author, subject, stat, diff }; + }); +} + +function renderRecentChanges(pages) { + const commits = parseCommits(); + const route = 'recent-changes/index.html'; + const content = `<section class="recent-changes"> + <p class="lede">A repository history for the campaign notes and generated wiki source. Each entry includes changed-file statistics and a collapsible diff when Git history is available.</p> + ${commits.length ? `<ol class="commit-list">${commits.map((commit) => ` + <li class="commit-card"> + <article> + <header> + <h2><code>${escapeHtml(commit.shortHash)}</code> ${escapeHtml(commit.subject)}</h2> + <p><time datetime="${commit.date.toISOString()}">${escapeHtml(formatDateTime(commit.date))}</time> by ${escapeHtml(commit.author)}</p> + </header> + ${commit.stat ? `<pre class="diff-stat"><code>${escapeHtml(commit.stat)}</code></pre>` : ''} + ${commit.diff ? `<details class="diff"><summary>Show diff</summary><pre><code>${escapeHtml(commit.diff)}</code></pre></details>` : ''} + </article> + </li>`).join('')}</ol>` : '<p>No Git history was available while building this site.</p>'} + </section>`; + + const latest = commits[0]?.date ?? new Date(); + const html = renderLayout({ + title: 'Recent Changes', + type: 'repository history', + content, + route, + headings: [], + lastModified: latest, + sourceRelativePath: '.git', + allPages: pages + }); + const outPath = path.join(outputDir, route); + fs.mkdirSync(path.dirname(outPath), { recursive: true }); + fs.writeFileSync(outPath, html); +} + +function writeAssets() { + fs.mkdirSync(assetsDir, { recursive: true }); + fs.writeFileSync(path.join(assetsDir, 'styles.css'), `:root { + color-scheme: light; + --ink: #191919; + --muted: #66707a; + --page: #eef0f3; + --surface: #ffffff; + --surface-alt: #f7f8fa; + --line: #d9dde3; + --line-strong: #b8c0ca; + --charcoal: #15171b; + --charcoal-2: #20242a; + --charcoal-3: #2c3138; + --red: #c53131; + --red-dark: #8f1f1f; + --red-deep: #5f1515; + --gold: #d7ad4c; + --link: #1e5c8f; + --shadow: 0 16px 42px rgba(14, 18, 24, 0.16); + --sharp-shadow: 0 3px 0 rgba(0, 0, 0, 0.16); + font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; +} + +* { box-sizing: border-box; } + +html { scroll-behavior: smooth; } + +body { + margin: 0; + color: var(--ink); + background: + linear-gradient(rgba(21, 23, 27, 0.035) 1px, transparent 1px), + linear-gradient(90deg, rgba(21, 23, 27, 0.035) 1px, transparent 1px), + radial-gradient(circle at top, rgba(197, 49, 49, 0.14), transparent 22rem), + var(--page); + background-size: 28px 28px, 28px 28px, auto, auto; + min-height: 100vh; +} + +a { + color: var(--link); + font-weight: 650; + text-decoration-color: rgba(30, 92, 143, 0.3); + text-underline-offset: 0.18em; +} + +a:hover { color: var(--red-dark); text-decoration-color: currentColor; } + +.skip-link { + position: absolute; + top: 0.75rem; + left: 0.75rem; + transform: translateY(-200%); + z-index: 10; + background: var(--red); + color: white; + padding: 0.65rem 0.9rem; + border-radius: 0.25rem; + box-shadow: var(--sharp-shadow); +} + +.skip-link:focus { transform: translateY(0); } + +.site-header { + position: sticky; + top: 0; + z-index: 5; + display: flex; + align-items: center; + justify-content: space-between; + gap: 1rem; + padding: 0.65rem clamp(1rem, 2.4vw, 2rem); + background: + linear-gradient(180deg, #24282f, #15171b), + var(--charcoal); + color: white; + border-bottom: 4px solid var(--red); + box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28); +} + +.brand { + display: inline-flex; + align-items: center; + gap: 0.75rem; + color: white; + text-decoration: none; + min-width: max-content; +} + +.brand strong { + display: block; + font-family: Georgia, "Times New Roman", serif; + font-size: clamp(1.05rem, 2vw, 1.35rem); + letter-spacing: 0.035em; + text-transform: uppercase; +} + +.brand small { + display: block; + color: #cbd0d7; + font-size: 0.76rem; + font-weight: 800; + letter-spacing: 0.14em; + text-transform: uppercase; +} + +.site-logo { + width: 3.2rem; + height: 3.2rem; + flex: 0 0 auto; + background: #101216; + border: 2px solid rgba(255, 255, 255, 0.16); + border-radius: 0.45rem; + filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.35)); +} + +.top-nav { + display: flex; + align-items: center; + justify-content: flex-end; + gap: 0.45rem; + flex-wrap: wrap; +} + +.top-nav a { + color: #f5f6f7; + text-decoration: none; + border-radius: 0.25rem; + padding: 0.48rem 0.72rem; + font-size: 0.87rem; + font-weight: 900; + letter-spacing: 0.04em; + text-transform: uppercase; +} + +.top-nav a:hover { + background: var(--red); + color: #fff; +} + +.page-shell { + display: grid; + grid-template-columns: minmax(15rem, 19rem) minmax(0, 1fr) minmax(13rem, 17rem); + gap: clamp(1rem, 2vw, 1.6rem); + width: min(100%, 1540px); + margin: 0 auto; + padding: clamp(1rem, 2.5vw, 2rem); +} + +.sidebar, .right-rail { + align-self: start; + position: sticky; + top: 5.8rem; + max-height: calc(100vh - 7rem); + overflow: auto; +} + +.sidebar { + background: var(--charcoal-2); + border: 1px solid #343943; + border-top: 4px solid var(--red); + border-radius: 0.35rem; + box-shadow: var(--shadow); + color: #eef1f4; + padding: 0.9rem; +} + +.toc, .page-meta, .wiki-page { + background: var(--surface); + border: 1px solid var(--line); + border-radius: 0.35rem; + box-shadow: var(--shadow); +} + +.wiki-page { + padding: clamp(1.25rem, 3vw, 3rem); + border-top: 5px solid var(--red); +} + +.toc, .page-meta { padding: 1rem; } + +.search label { + display: block; + color: #f4f6f8; + font-size: 0.76rem; + font-weight: 900; + letter-spacing: 0.08em; + margin-bottom: 0.45rem; + text-transform: uppercase; +} + +.search input { + width: 100%; + border: 1px solid #4b515c; + border-radius: 0.25rem; + padding: 0.68rem 0.75rem; + background: #111318; + color: #fff; + outline: none; +} + +.search input:focus { + border-color: var(--red); + box-shadow: 0 0 0 3px rgba(197, 49, 49, 0.3); +} + +.nav-group { + margin-top: 0.65rem; + border-top: 1px solid #3a404a; + padding-top: 0.65rem; +} + +.nav-group summary { + cursor: pointer; + color: #fff; + font-weight: 900; + letter-spacing: 0.04em; + text-transform: uppercase; +} + +.nav-group summary span { + color: #c3c8cf; + font-weight: 800; +} + +.nav-group ul { list-style: none; padding: 0; margin: 0.55rem 0 0; } +.nav-group li { margin: 0.18rem 0; } + +.nav-group a { + display: block; + border-left: 3px solid transparent; + border-radius: 0.2rem; + color: #dce1e7; + font-weight: 650; + padding: 0.38rem 0.45rem; + text-decoration: none; +} + +.nav-group a:hover { + background: #303640; + border-left-color: var(--red); + color: #fff; +} + +.page-title { + position: relative; + margin: -0.2rem 0 1.7rem; + padding: 0 0 1.15rem; + border-bottom: 1px solid var(--line); +} + +.page-title::after { + content: ""; + position: absolute; + bottom: -1px; + left: 0; + width: 7.5rem; + height: 4px; + background: linear-gradient(90deg, var(--red), var(--red-deep)); +} + +.eyebrow { + color: var(--red); + font-weight: 950; + letter-spacing: 0.16em; + margin: 0 0 0.45rem; + text-transform: uppercase; + font-size: 0.76rem; +} + +.wiki-page h1, .wiki-page h2, .wiki-page h3, .toc h2, .page-meta h2 { + color: #16191d; + font-family: Georgia, "Times New Roman", serif; + line-height: 1.1; +} + +.wiki-page h1 { + font-size: clamp(2.1rem, 5vw, 4rem); + margin: 0; +} + +.wiki-page h2 { + border-bottom: 1px solid var(--line); + font-size: clamp(1.45rem, 3vw, 1.95rem); + margin-top: 2rem; + padding-bottom: 0.35rem; +} + +.wiki-page h3 { + color: var(--red-dark); + font-size: 1.22rem; + margin-top: 1.6rem; +} + +.wiki-page p, .wiki-page li { line-height: 1.72; } +.wiki-page li + li { margin-top: 0.26rem; } + +.wiki-page blockquote { + margin: 1.5rem 0; + padding: 0.9rem 1rem; + border-left: 0.35rem solid var(--red); + background: #f3f4f6; + color: #303640; +} + +.wiki-page table { + width: 100%; + border-collapse: collapse; + margin: 1.25rem 0; +} + +.wiki-page th { + background: var(--charcoal-2); + color: white; + text-align: left; +} + +.wiki-page th, .wiki-page td { + border: 1px solid var(--line); + padding: 0.65rem 0.75rem; +} + +.wiki-page tr:nth-child(even) td { background: var(--surface-alt); } + +.wiki-page code, .page-meta code { + background: #eef0f3; + border: 1px solid #d9dde3; + border-radius: 0.22rem; + color: #941f1f; + padding: 0.1rem 0.3rem; +} + +.wiki-page pre, .diff-stat, .diff pre { + overflow: auto; + border-radius: 0.3rem; + border: 1px solid #2d333b; + background: #15191f; + color: #f2f5f8; + padding: 1rem; +} + +.toc { margin-bottom: 1rem; border-top: 4px solid var(--red); } +.toc h2, .page-meta h2 { margin: 0 0 0.75rem; font-size: 1.05rem; } +.toc ol { list-style: none; margin: 0; padding: 0; } +.toc li { margin: 0.45rem 0; } +.toc a { font-weight: 750; text-decoration: none; } +.toc-level-3 { padding-left: 0.85rem; font-size: 0.92rem; } + +.page-meta { border-top: 4px solid var(--charcoal-2); } +.page-meta dl { margin: 0; } +.page-meta dt { + color: var(--red-dark); + font-size: 0.76rem; + font-weight: 900; + letter-spacing: 0.08em; + text-transform: uppercase; +} +.page-meta dd { margin: 0 0 0.8rem; overflow-wrap: anywhere; } + +.lede { font-size: 1.1rem; color: #38424c; } +.commit-list { list-style: none; padding: 0; margin: 1.5rem 0 0; } +.commit-card { margin: 0 0 1rem; } +.commit-card article { + border: 1px solid var(--line); + border-left: 5px solid var(--red); + border-radius: 0.35rem; + background: var(--surface-alt); + padding: 1rem; +} +.commit-card h2 { font-size: 1.22rem; margin: 0 0 0.3rem; } +.commit-card header p { margin: 0 0 0.75rem; color: var(--muted); } +.diff summary { cursor: pointer; font-weight: 900; margin-top: 0.8rem; color: var(--red-dark); } + +.site-footer { + display: flex; + justify-content: space-between; + gap: 1rem; + flex-wrap: wrap; + padding: 1.35rem clamp(1rem, 2.4vw, 2rem); + background: #101216; + color: #dce1e7; + border-top: 4px solid var(--red); +} + +.site-footer p { margin: 0; } + +@media (max-width: 1100px) { + .page-shell { grid-template-columns: minmax(0, 1fr); } + .sidebar, .right-rail { position: static; max-height: none; } + .right-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1rem; } +} + +@media (max-width: 720px) { + .site-header { align-items: flex-start; flex-direction: column; position: static; } + .top-nav { justify-content: flex-start; } + .top-nav a { background: #2a2f37; } + .wiki-page { border-radius: 0.25rem; } +} +`); + + fs.writeFileSync(path.join(assetsDir, 'wiki.js'), `const filter = document.querySelector('[data-page-filter]'); +const pageList = document.querySelector('[data-page-list]'); + +if (filter && pageList) { + filter.addEventListener('input', () => { + const query = filter.value.trim().toLowerCase(); + for (const link of pageList.querySelectorAll('a')) { + const item = link.closest('li'); + item.hidden = query && !link.textContent.toLowerCase().includes(query); + } + for (const group of pageList.querySelectorAll('details')) { + const visible = [...group.querySelectorAll('li')].some((item) => !item.hidden); + group.hidden = !visible; + if (query && visible) group.open = true; + } + }); +} +`); +} + +function writeManifest(pages) { + const manifest = { + generatedAt: new Date().toISOString(), + sourceDir: 'data/6-wiki', + outputDir: 'dist/wiki', + pages: pages.map((page) => ({ + source: page.rootRelativePath, + route: page.route, + title: page.title, + lastModified: page.lastModified.toISOString() + })).concat([{ source: '.git', route: 'recent-changes/index.html', title: 'Recent Changes' }]) + }; + fs.writeFileSync(path.join(outputDir, 'manifest.json'), `${JSON.stringify(manifest, null, 2)}\n`); +} + +function main() { + if (!fs.existsSync(sourceDir)) { + throw new Error(`Wiki source directory does not exist: ${sourceDir}`); + } + + fs.rmSync(outputDir, { recursive: true, force: true }); + fs.mkdirSync(outputDir, { recursive: true }); + + const { pages, sourceToRoute } = parsePages(); + writeAssets(); + renderWikiPages(pages, sourceToRoute); + renderRecentChanges(pages); + writeManifest(pages); + + console.log(`Built ${pages.length} wiki pages plus recent changes in ${path.relative(rootDir, outputDir)}`); +} + +main(); diff --git a/tools/validate-wiki-site.mjs b/tools/validate-wiki-site.mjs new file mode 100644 index 0000000..df7bdb7 --- /dev/null +++ b/tools/validate-wiki-site.mjs @@ -0,0 +1,108 @@ +import fs from 'node:fs'; +import path from 'node:path'; +import process from 'node:process'; + +const rootDir = process.cwd(); +const sourceDir = path.join(rootDir, 'data', '6-wiki'); +const cleanedDaysDir = path.join(rootDir, 'data', '4-days-cleaned'); +const outputDir = path.join(rootDir, 'dist', 'wiki'); + +function walk(dir, predicate) { + const entries = fs.readdirSync(dir, { withFileTypes: true }); + const files = []; + for (const entry of entries) { + const fullPath = path.join(dir, entry.name); + if (entry.isDirectory()) files.push(...walk(fullPath, predicate)); + else if (entry.isFile() && predicate(fullPath)) files.push(fullPath); + } + return files.sort((a, b) => a.localeCompare(b)); +} + +function posixPath(filePath) { + return filePath.split(path.sep).join('/'); +} + +function routeForSource(sourceRelativePath) { + const parsed = path.posix.parse(sourceRelativePath); + if (parsed.base === 'index.md') return parsed.dir ? `${parsed.dir}/index.html` : 'index.html'; + return path.posix.join(parsed.dir, parsed.name, 'index.html'); +} + +function fail(message) { + console.error(message); + process.exitCode = 1; +} + +function stripHashAndQuery(href) { + return href.split('#')[0].split('?')[0]; +} + +function targetFileForHref(fromHtmlPath, href) { + const cleanHref = stripHashAndQuery(href); + if (!cleanHref || cleanHref.startsWith('mailto:') || /^[a-z][a-z0-9+.-]*:/i.test(cleanHref)) return null; + const resolved = path.resolve(path.dirname(fromHtmlPath), cleanHref); + if (path.extname(resolved)) return resolved; + return path.join(resolved, 'index.html'); +} + +function validateExpectedPages() { + const markdownFiles = walk(sourceDir, (file) => file.endsWith('.md')); + for (const file of markdownFiles) { + const sourceRel = posixPath(path.relative(sourceDir, file)); + const outputPath = path.join(outputDir, routeForSource(sourceRel)); + if (!fs.existsSync(outputPath)) fail(`Missing generated page for ${sourceRel}: ${path.relative(rootDir, outputPath)}`); + } + + if (fs.existsSync(cleanedDaysDir)) { + const cleanedDayFiles = walk(cleanedDaysDir, (file) => file.endsWith('.md')); + for (const file of cleanedDayFiles) { + const sourceRel = posixPath(path.relative(cleanedDaysDir, file)); + const outputPath = path.join(outputDir, 'days', routeForSource(sourceRel)); + if (!fs.existsSync(outputPath)) fail(`Missing generated cleaned day page for ${sourceRel}: ${path.relative(rootDir, outputPath)}`); + } + + const daysIndex = path.join(outputDir, 'days', 'index.html'); + if (!fs.existsSync(daysIndex)) fail('Missing generated days index page'); + } + + const recent = path.join(outputDir, 'recent-changes', 'index.html'); + if (!fs.existsSync(recent)) fail('Missing generated recent changes page'); +} + +function validateHtmlStructureAndLinks() { + const htmlFiles = walk(outputDir, (file) => file.endsWith('.html')); + for (const file of htmlFiles) { + const html = fs.readFileSync(file, 'utf8'); + const rel = path.relative(rootDir, file); + for (const tag of ['<!doctype html>', '<html lang="en">', '<header', '<main', '<footer']) { + if (!html.toLowerCase().includes(tag.toLowerCase())) fail(`${rel} is missing ${tag}`); + } + if (!html.includes('The Pentacity States')) fail(`${rel} is missing site title/logo text`); + if (!html.includes('Last modified:')) fail(`${rel} is missing last modified footer text`); + + const hrefPattern = /href="([^"]+)"/g; + for (const match of html.matchAll(hrefPattern)) { + const href = match[1]; + const target = targetFileForHref(file, href); + if (!target) continue; + if (!path.resolve(target).startsWith(path.resolve(outputDir))) { + fail(`${rel} links outside generated site: ${href}`); + continue; + } + if (!fs.existsSync(target)) fail(`${rel} has broken internal link: ${href}`); + } + } +} + +function main() { + if (!fs.existsSync(outputDir)) { + fail('Generated wiki does not exist. Run npm run build:wiki first.'); + return; + } + validateExpectedPages(); + validateHtmlStructureAndLinks(); + if (process.exitCode) return; + console.log('Wiki site validation passed.'); +} + +main(); -
652e828Lady Hartwall stuffby Laura Mostert
data/2-pages/105.txt | 2 +- data/2-pages/112.txt | 2 +- data/2-pages/116.txt | 2 +- data/2-pages/117.txt | 4 +- data/2-pages/121.txt | 2 +- data/2-pages/141.txt | 2 +- data/2-pages/142.txt | 2 +- data/2-pages/179.txt | 2 +- data/2-pages/185.txt | 2 +- data/2-pages/187.txt | 2 +- data/2-pages/223.txt | 2 +- data/2-pages/224.txt | 2 +- data/2-pages/237.txt | 2 +- data/2-pages/309.txt | 2 +- data/3-days/day-30.md | 2 +- data/3-days/day-32.md | 10 ++-- data/3-days/day-36.md | 4 +- data/3-days/day-42.md | 2 +- data/3-days/day-43.md | 4 +- data/3-days/day-47.md | 6 +-- data/3-days/day-57.md | 2 +- data/4-days-cleaned/day-30.md | 4 +- data/4-days-cleaned/day-32.md | 14 ++--- data/4-days-cleaned/day-36.md | 10 ++-- data/4-days-cleaned/day-42.md | 8 +-- data/4-days-cleaned/day-43.md | 14 ++--- data/4-days-cleaned/day-47.md | 12 ++--- data/4-days-cleaned/day-57.md | 6 +-- data/6-wiki/aliases.md | 4 +- data/6-wiki/clues/day-57-coverage-audit.md | 2 +- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- .../clues/known-passwords-and-inscriptions.md | 2 +- data/6-wiki/index.md | 4 +- data/6-wiki/inventories/party-inventory.md | 2 +- data/6-wiki/items/minor-items-day-57.md | 2 +- data/6-wiki/open-threads.md | 6 +-- data/6-wiki/people/attabre-altabre.md | 2 +- data/6-wiki/people/eliana-hartwall.md | 16 +++--- data/6-wiki/people/icefang.md | 8 +-- data/6-wiki/people/kasha.md | 2 +- data/6-wiki/people/lady-elissa-hartwall.md | 61 ++++++++++++++++++++++ data/6-wiki/people/lady-evalina-hartwall.md | 7 +-- data/6-wiki/people/lady-hartwall.md | 52 ------------------ data/6-wiki/people/lady-thorpe.md | 4 +- data/6-wiki/people/lord-briarthorn.md | 2 +- data/6-wiki/people/minor-figures-day-47.md | 2 +- data/6-wiki/people/minor-figures-day-57.md | 4 +- data/6-wiki/people/minor-figures-days-32-35.md | 4 +- data/6-wiki/people/minor-figures-days-42-44.md | 4 +- data/6-wiki/people/peridita.md | 2 +- data/6-wiki/people/status.md | 8 +-- data/6-wiki/people/wrath.md | 8 +-- data/6-wiki/places/highden-fell.md | 2 +- data/6-wiki/places/minor-places-day-57.md | 2 +- data/6-wiki/places/minor-places-days-36-40-41.md | 2 +- data/6-wiki/sources.md | 10 ++-- data/6-wiki/timeline.md | 2 +- 58 files changed, 184 insertions(+), 174 deletions(-)Show diff
diff --git a/data/2-pages/105.txt b/data/2-pages/105.txt index 19952ae..405cb5c 100644 --- a/data/2-pages/105.txt +++ b/data/2-pages/105.txt @@ -32,5 +32,5 @@ Head to Inn & sleep. Town Crier information laptop. - message from The Basilisk - wants to meet us - comes in. -Lady Hartwall injured - fighting giants decided to take into her own hands, recuperating norm. +Lady Elissa Hartwall injured - fighting giants decided to take into her own hands, recuperating norm. Goldenswell retreated soldiers. diff --git a/data/2-pages/112.txt b/data/2-pages/112.txt index f5b0091..8c714d4 100644 --- a/data/2-pages/112.txt +++ b/data/2-pages/112.txt @@ -20,7 +20,7 @@ Decide to travel to Hartwall - Rift block. Statue to Lan (Earth god to love, home & family) outside Hartwall - teleport there. on target. Statue of Lan is very similar in style to the Statue of Serva. 2 guards - human & half elf - -city is fine - Lady Hartwall still injured. +city is fine - Lady Elissa Hartwall still injured. Lady Freya in attendance in the city. - other items for sale by Xinqus. Mirth is in town for the auction. diff --git a/data/2-pages/116.txt b/data/2-pages/116.txt index f3c25fa..9c0ba96 100644 --- a/data/2-pages/116.txt +++ b/data/2-pages/116.txt @@ -25,7 +25,7 @@ up high. waitress opens a trapdoor where Xinquiss is hiding. - call myself Constantine Harthwall to the Justicar. - guardsmen takes chariot & everything to the -Palace - Lady Hartwall wants to see us in the hours. +Palace - Lady Elissa Hartwall wants to see us in the hours. - Justicars take llamia to grand towers. Dith & Geldrin & Morgana escape with the shield crystal diff --git a/data/2-pages/117.txt b/data/2-pages/117.txt index 2bb706c..d3cba2f 100644 --- a/data/2-pages/117.txt +++ b/data/2-pages/117.txt @@ -9,11 +9,11 @@ Castle. Takes us through the Castle. god of Law. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently -as Lady Hartwall could have known it wasn't +as Lady Elissa Hartwall could have known it wasn't her wife. Lady Fatrabbit leads us to a bedroom where -Lady Hartwall is. - Doctors making some antidote (for?) +Lady Elissa Hartwall is. - Doctors making some antidote (for?) Suggest poison & trouble hiding her true form. Llamia - may have done it. seems like a magical diff --git a/data/2-pages/121.txt b/data/2-pages/121.txt index 48dfb6c..e44439d 100644 --- a/data/2-pages/121.txt +++ b/data/2-pages/121.txt @@ -14,7 +14,7 @@ ago but imprisoned over 1 week ago. (There's an imposter in place) Try to contact Cardencalde via Eroll - she didn't answer ? why as it contacts her directly. -Sent message to Lady Hartwall via Eroll. 16:00 +Sent message to Lady Elissa Hartwall via Eroll. 16:00 - other prisoners held on the same floor - 7 altogether getting a few a week over the last month diff --git a/data/2-pages/141.txt b/data/2-pages/141.txt index 2e67b3e..20f3246 100644 --- a/data/2-pages/141.txt +++ b/data/2-pages/141.txt @@ -31,7 +31,7 @@ They always had issues, Browning made sure they needed us Otasha - more than just suffering - gave her the unborn nerfili babies across the whole race - Barrier seems to stop this slightly. -Lady Hartwall - not happy about it & didn't +Lady Elissa Hartwall - not happy about it & didn't know about half the deals made. Found a way around most of the bargains diff --git a/data/2-pages/142.txt b/data/2-pages/142.txt index 99b7c30..7b765b9 100644 --- a/data/2-pages/142.txt +++ b/data/2-pages/142.txt @@ -34,7 +34,7 @@ the city Day 34 get Breakfast in the grand Hall in Hartwall. -Lady Hartwall feels much better. +Lady Elissa Hartwall feels much better. Fighting has been pushed back to stone rampart Earthwise. Lots of mutations large explosion seen in the area by the retreating diff --git a/data/2-pages/179.txt b/data/2-pages/179.txt index a8c5eee..015f1d1 100644 --- a/data/2-pages/179.txt +++ b/data/2-pages/179.txt @@ -26,7 +26,7 @@ grants our idea & we appear at Hartwall & see Perodita vanish!! Head over to Hartwall. - speak to Lady Parthabbit -Lady Hartwall isn't in she's gone Airwise to help +Lady Elissa Hartwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. * resend message to The Basilisk. diff --git a/data/2-pages/185.txt b/data/2-pages/185.txt index 74de8f3..8db187a 100644 --- a/data/2-pages/185.txt +++ b/data/2-pages/185.txt @@ -2,7 +2,7 @@ Page: 185 Source: data/1-source/IMG_9852.jpg Transcription: -Lady Hartwall appears. +Lady Elissa Hartwall appears. She went with some forces from Dumnensend to defend near where we were fighting. lots of "Dragon born" defending diff --git a/data/2-pages/187.txt b/data/2-pages/187.txt index 85ff79e..f7bf242 100644 --- a/data/2-pages/187.txt +++ b/data/2-pages/187.txt @@ -28,6 +28,6 @@ Asks if he wants to see his brother first. & he transforms to normal self. Notices Trixus is sleepy... ceiling above vanishes - Benu appears. -Lady Hartwall drops to her knees & starts to glow +Lady Elissa Hartwall drops to her knees & starts to glow humanoid is the size of the tower & wakes Trixus (A family re-united) diff --git a/data/2-pages/223.txt b/data/2-pages/223.txt index 864a161..e4b3446 100644 --- a/data/2-pages/223.txt +++ b/data/2-pages/223.txt @@ -29,7 +29,7 @@ trying to escape to get back to the ground. Morgana sets it free in the forest - it's called "No chart". -Adventurers took Lady Hartwall's diary. +Adventurers took Lady Elissa Hartwall's diary. They killed the elf who was taking all the woodcutters from Pinesprings. diff --git a/data/2-pages/224.txt b/data/2-pages/224.txt index f45a368..7bceed3 100644 --- a/data/2-pages/224.txt +++ b/data/2-pages/224.txt @@ -25,7 +25,7 @@ came back then there were 3 (1 big, 2 small). Obsidian statue, no face but gracious god - eyestone lower torso (Squeal?) Other side Kasha. [unclear: Leys 8? mystery]. -- Look at flute - Lady Hartwall plays the flute - know this somehow, +- Look at flute - Lady Elissa Hartwall plays the flute - know this somehow, maybe a look from Provista. I get a tear in the corner of my eye that is frosty. Urn says - Though my love for you in life may not have diff --git a/data/2-pages/237.txt b/data/2-pages/237.txt index bf6c564..915a16f 100644 --- a/data/2-pages/237.txt +++ b/data/2-pages/237.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9905.jpg Transcription: If he stays, is there anything he needs? Able to think and talk to some elementals. -Lady Hartwall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. +Lady Elissa Hartwall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. Before release him, if we want to, others in prisons. Some very narked prisoners. diff --git a/data/2-pages/309.txt b/data/2-pages/309.txt index 30c11e8..709ebda 100644 --- a/data/2-pages/309.txt +++ b/data/2-pages/309.txt @@ -10,7 +10,7 @@ Connection to my father has allowed to view pieces of my past, so knows most of Not just Icefang's daughter but his too. It's Attabre. -I was killed because I got in the way. More strong-willed. She accepted their spells but I didn't, so they killed me. Icefang managed to get Kaylara out and then fell to slumber. +I was killed because I got in the way. More strong-willed. She accepted their spells but I didn't, so they killed me. Icefang managed to get Lady Elissa Hartwall out and then fell to slumber. When we venture forth on our next step, the gods we have befriended will give us gifts. But it will be hard to choose. If we die in the next realm we won't get back up. She warns Geldrin in particular. diff --git a/data/3-days/day-30.md b/data/3-days/day-30.md index 27b073a..17055fe 100644 --- a/data/3-days/day-30.md +++ b/data/3-days/day-30.md @@ -22,7 +22,7 @@ complete: true Town Crier information laptop. - message from The Basilisk - wants to meet us - comes in. -Lady Hartwall injured - fighting giants decided to take into her own hands, recuperating norm. +Lady Elissa Hartwall injured - fighting giants decided to take into her own hands, recuperating norm. Goldenswell retreated soldiers. ## Page 106 diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md index 50cb28a..4b2e45f 100644 --- a/data/3-days/day-32.md +++ b/data/3-days/day-32.md @@ -48,7 +48,7 @@ Decide to travel to Hartwall - Rift block. Statue to Lan (Earth god to love, home & family) outside Hartwall - teleport there. on target. Statue of Lan is very similar in style to the Statue of Serva. 2 guards - human & half elf - -city is fine - Lady Hartwall still injured. +city is fine - Lady Elissa Hartwall still injured. Lady Freya in attendance in the city. - other items for sale by Xinqus. Mirth is in town for the auction. @@ -210,7 +210,7 @@ up high. waitress opens a trapdoor where Xinquiss is hiding. - call myself Constantine Harthwall to the Justicar. - guardsmen takes chariot & everything to the -Palace - Lady Hartwall wants to see us in the hours. +Palace - Lady Elissa Hartwall wants to see us in the hours. - Justicars take llamia to grand towers. Dith & Geldrin & Morgana escape with the shield crystal @@ -236,11 +236,11 @@ Castle. Takes us through the Castle. god of Law. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently -as Lady Hartwall could have known it wasn't +as Lady Elissa Hartwall could have known it wasn't her wife. Lady Fatrabbit leads us to a bedroom where -Lady Hartwall is. - Doctors making some antidote (for?) +Lady Elissa Hartwall is. - Doctors making some antidote (for?) Suggest poison & trouble hiding her true form. Llamia - may have done it. seems like a magical @@ -415,7 +415,7 @@ ago but imprisoned over 1 week ago. (There's an imposter in place) Try to contact Cardencalde via Eroll - she didn't answer ? why as it contacts her directly. -Sent message to Lady Hartwall via Eroll. 16:00 +Sent message to Lady Elissa Hartwall via Eroll. 16:00 - other prisoners held on the same floor - 7 altogether getting a few a week over the last month diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md index 359f87d..5ebfd26 100644 --- a/data/3-days/day-36.md +++ b/data/3-days/day-36.md @@ -518,7 +518,7 @@ They always had issues, Browning made sure they needed us Otasha - more than just suffering - gave her the unborn nerfili babies across the whole race - Barrier seems to stop this slightly. -Lady Hartwall - not happy about it & didn't +Lady Elissa Hartwall - not happy about it & didn't know about half the deals made. Found a way around most of the bargains @@ -565,7 +565,7 @@ the city Day 34 get Breakfast in the grand Hall in Hartwall. -Lady Hartwall feels much better. +Lady Elissa Hartwall feels much better. Fighting has been pushed back to stone rampart Earthwise. Lots of mutations large explosion seen in the area by the retreating diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index 4d36c4e..ae72b1c 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -615,7 +615,7 @@ grants our idea & we appear at Hartwall & see Perodita vanish!! Head over to Hartwall. - speak to Lady Parthabbit -Lady Hartwall isn't in she's gone Airwise to help +Lady Elissa Hartwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. * resend message to The Basilisk. diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index 97e6c8f..8d3a9a2 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -234,7 +234,7 @@ king is paleskinned with black dreads ## Page 185 -Lady Hartwall appears. +Lady Elissa Hartwall appears. She went with some forces from Dumnensend to defend near where we were fighting. lots of "Dragon born" defending @@ -332,7 +332,7 @@ Asks if he wants to see his brother first. & he transforms to normal self. Notices Trixus is sleepy... ceiling above vanishes - Benu appears. -Lady Hartwall drops to her knees & starts to glow +Lady Elissa Hartwall drops to her knees & starts to glow humanoid is the size of the tower & wakes Trixus (A family re-united) diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index 3160b21..def82d8 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -63,7 +63,7 @@ trying to escape to get back to the ground. Morgana sets it free in the forest - it's called "No chart". -Adventurers took Lady Hartwall's diary. +Adventurers took Lady Elissa Hartwall's diary. They killed the elf who was taking all the woodcutters from Pinesprings. @@ -96,7 +96,7 @@ came back then there were 3 (1 big, 2 small). Obsidian statue, no face but gracious god - eyestone lower torso (Squeal?) Other side Kasha. [unclear: Leys 8? mystery]. -- Look at flute - Lady Hartwall plays the flute - know this somehow, +- Look at flute - Lady Elissa Hartwall plays the flute - know this somehow, maybe a look from Provista. I get a tear in the corner of my eye that is frosty. Urn says - Though my love for you in life may not have @@ -376,7 +376,7 @@ Dirk tries to talk to it in Aquan. Knows Dirk's name as come to set him free. As If he stays, is there anything he needs? Able to think and talk to some elementals. -Lady Hartwall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. +Lady Elissa Hartwall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. Before release him, if we want to, others in prisons. Some very narked prisoners. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index c193a8a..a3b2397 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -603,7 +603,7 @@ Connection to my father has allowed to view pieces of my past, so knows most of Not just Icefang's daughter but his too. It's Attabre. -I was killed because I got in the way. More strong-willed. She accepted their spells but I didn't, so they killed me. Icefang managed to get Kaylara out and then fell to slumber. +I was killed because I got in the way. More strong-willed. She accepted their spells but I didn't, so they killed me. Icefang managed to get Lady Elissa Hartwall out and then fell to slumber. When we venture forth on our next step, the gods we have befriended will give us gifts. But it will be hard to choose. If we die in the next realm we won't get back up. She warns Geldrin in particular. diff --git a/data/4-days-cleaned/day-30.md b/data/4-days-cleaned/day-30.md index c2524cc..9721978 100644 --- a/data/4-days-cleaned/day-30.md +++ b/data/4-days-cleaned/day-30.md @@ -13,7 +13,7 @@ complete: true Day 30 was Wednesday, 2nd Tan 107 AT, with 4 days to Timnor and 5 days to the auction. A margin note also recorded "+2 days 4pm" and [uncertain: Lathlie]. -The party received Town Crier information on the laptop. The Basilisk had sent a message saying he wanted to meet them and was coming in. News also said Lady Hartwall had been injured after deciding to take the fight against the giants into her own hands, though she was recuperating normally. Soldiers from Goldenswell had retreated. +The party received Town Crier information on the laptop. The Basilisk had sent a message saying he wanted to meet them and was coming in. News also said Lady Elissa Hartwall had been injured after deciding to take the fight against the giants into her own hands, though she was recuperating normally. Soldiers from Goldenswell had retreated. Hucan's ship had been attacked and rummaged in the night, and the party's cart had also been rummaged through. Messages were being intercepted. The notes connect this to a blue dragon, leaked battle plans, and a magical attack at Craters Edge. The cart guards had been found in a mess, pointing toward a betrayer. @@ -41,7 +41,7 @@ Cardenald and Rubyeye returned with 2 orbs and 2 scrolls of Counterspell. Errol # People, Factions, and Places Mentioned -The Basilisk, Lady Hartwall, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunensend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. +The Basilisk, Lady Elissa Hartwall, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunensend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. Places mentioned include Dunensend, the shrine, the barrier, the sea, the ground towers, the shield crystal, Highden, Craters Edge / Crater's Edge, Browning's lab, the Cheese shop, the palace, Cardenald's lab, the library, the Goliath Tower in the Oasis, the Goliath capital Ashktioth, and Tradesmall. diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index 665f512..fae9d29 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -22,7 +22,7 @@ complete: true Day 32 began in a Hillfolk village between [uncertain: Prortibhe] and Stone Rampart, earthwise. The party decided to travel to Hartwall because of the Rift block. They teleported to the statue of Lan outside Hartwall and arrived on target. Lan was noted as an earth god associated with love, home, and family, and the statue of Lan was very similar in style to the Statue of Serva. -At Hartwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Hartwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hartwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. +At Hartwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Elissa Hartwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hartwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. At the Baked Mattress they saw a human sitting down with a very noticeable underbelly. The barkeep was noted as "Patches of night & husband." Xinqus was in town. The party headed to the auction house with 870kg and saw a [uncertain: pigeon/aracock] with Xinqus's cart; Xinqus was inside. "1600" was recorded. They walked to the front of the queue, where Mirth let them in and gave them a number. Everyone else seemed to have paid to enter. The auction drew a very eclectic crowd. A dragon and the Retribution shrine on Azureside were noted. @@ -46,13 +46,13 @@ The party skulked out to check on Lady Thorpe. She had six guards around her in Lot 35 was a mimic mouse trap. Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, an older human man, a robed figure carrying along beside a silver dragonborn, a backpack of scrolls, a floating book, and a gnome with a wooden shield bearing a golden duck were noted. Justicars were looking for Xinquiss. The party did not recognize Inwar. Laura won the bracelet of locating for 101g. Mith teleported away, and a Justicar tried to Counterspell. Scrambleduck smashed a stick on the floor and cast a spell, associated with a locating duck. When she turned around, Eliana bumped into something invisible and moved to attack her. -Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind Eliana helped, while her guard tried to get Eliana. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. Eliana called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Hartwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. +Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind Eliana helped, while her guard tried to get Eliana. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. Eliana called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Elissa Hartwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. Dith, Geldrin, and Morgana escaped with the shield crystal down the trapdoor into a house. Xinquiss called Wroth to come and help hide the crystal, and Wroth did so. Dith, Geldrin, and Morgana tried to disguise themselves and return to the auction house. Eliana and Inwar asked about them and were told about the trapdoor at 4:30. The party headed to the Castle. At the Castle, a higher-ranking halfling general with a huge sword and ornate armour strode over. This was Lady Fatrabbit, also called Blossom, a halfling who was also the sheriff. She took the party through the Castle. The engravings on her armour were a dedication to the god of Law. The Castle seemed busy and short-staffed. -Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Hartwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Hartwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Hartwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Hartwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. +Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Elissa Hartwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Elissa Hartwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Elissa Hartwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Elissa Hartwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Hartwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. @@ -74,7 +74,7 @@ They messaged The Basilisk to say they had Lady Thorpe and revived her. Lady Tho When the captain was awakened, he said he got in trouble with the Duke for attracting the militia. He was told it was a sensitive situation and not to let anybody in. The Duke sent one of his emissaries to feed Lady Thorpe. The captain knew the Duke was doing something dodgy but did not know the full truth. Some woman with a bag on her head was involved. Orders came from the Duke's office, and a few other guards knew about it. Off-the-books prisoners had been held a few times; the last one was about a week ago and was still down there. -The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Hartwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. +The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Elissa Hartwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. The skull's connection to ascension to godhood was discussed, and it was linked to when the moon did this, like the Tri-moon / Treamen. Geldrin tried to attune to the skull. An obsidian raven circled overhead as if looking for something and then flew off toward Grand Towers. @@ -92,11 +92,11 @@ The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Re # People, Factions, and Places Mentioned -People and name-like figures mentioned include Lan, Serva, Lady Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. +People and name-like figures mentioned include Lan, Serva, Lady Elissa Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Furres, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. -Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. +Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Elissa Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. # Items, Rewards, and Resources @@ -116,7 +116,7 @@ Xinqus / Xinquiss was in Hartwall with a cart and a [uncertain: pigeon/aracock], The auction contained many significant artifacts and historical references, including the chariot tied to an excellence defeated in the "battle of the unending seas," "Valententide's Betrayal," Browning's spell scroll, Firefang, the holy symbol of Noxia, the shield ring with runes of Lauren, and the talon of soot. The identities and agendas of the Ravens, jewellery men, emissary, Dally who walks in the room, the Hartwall partner, and the werewolfish [uncertain: Repiteth] remain open. The meaning of the Amle for adult? remains unclear. -False Lady Thorpe's odd mannerisms, failure to recognize the party, transformation into a llama when concentration failed, and the Noxia-like magical poison / religious curse suggest impersonation, shapeshifting, and identity suppression. The real Lady Thorpe had been abducted and held in Goldenswell. Lady Hartwall remained injured, and the antidote's target and composition are not fully clear. +False Lady Thorpe's odd mannerisms, failure to recognize the party, transformation into a llama when concentration failed, and the Noxia-like magical poison / religious curse suggest impersonation, shapeshifting, and identity suppression. The real Lady Thorpe had been abducted and held in Goldenswell. Lady Elissa Hartwall remained injured, and the antidote's target and composition are not fully clear. The party's arrest warrant had been quashed by somebody up high, but the responsible person was not identified. Browning / Skutey Galvin was wanted for impersonating a Justicar. The Justicars took the llama to Grand Towers, leaving the later fate and interrogation of the false Lady Thorpe unresolved. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index 574c1c7..69253d6 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -60,7 +60,7 @@ The party headed back to the statue by the outskirts of town. They saw a few shi At the statue, an obsidian bird named Terry, Metallics' bird, waited with a private message from Incara: the party should be wary if their compatriot wizards were working against them, because the wizards were the reason for their infertility, though this was not yet confirmed. A margin note said the party would go down the passage after getting Ruby Eye. -There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Hartwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Hartwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. +There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Hartwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Elissa Hartwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. The party returned to Mercy's place. Behind Mercy stood a half-elf with rounded ears, the barkeep from the Drunken Duck. Mercy had told him what was going on, and he had come down to ease the party's worries. They were independent contractors for the Guilt, concerned citizens hired for money. He wanted to cash in the favour now. He wanted something from Grand Towers: a small trinket from the private mage area on the 74th floor, a Jelly Fish Broach. An interested party wanted it retrieved. The buyer was not the party's current mutual antagonist, but a female outside the barrier. The party promised to attempt to retrieve it. @@ -96,13 +96,13 @@ Geldrin dropped two pennies onto Bridget's hand. Her eyes glowed green and then Dirk remained in Seaward and heard several explosions around midnight. The party got Ruby Eye out, and Ruby Eye shouted at Wrath until Wrath got back into his eye. Dirk reported that most earthwise cities had had explosions, including the Hartwall and Goldenswell areas. Grol found Dirk, and Dirk sent a message back around 20:00. Ruby Eye teleported the party to Dirk. -Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Hartwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Hartwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. +Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Elissa Hartwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Hartwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. Ruby Eye said his pact with Wrath came only from needing more power after seeing how much power Browning had with Pride. Browning wanted the biggest tower and to be the greatest wizard of all time. The party teleported to Hartwall, arriving on target by her statue, and went to the castle gates. Sheriff Fathrabit took them to Hartwall and said the other nobles had arrived. The party brought out Wrath. Wrath said the curse was not his normal thing and was definitely his sister's work. He said, "there you go," and claimed that Hartwall would be fine in a few days, but he was lying. He wanted a favour: for the party to tell Envy that he did it. Hartwall wanted to transform and left the chamber for the courtyard, where she transformed. Hartwall was slightly bigger than the Peridot Queen. In Seaward, there were not many known reports; nobody stated that the racist automatons had exploded. Hartwall's Raven had exploded, and there had been several explosions across the city. -The notes then mark "Day 34." At breakfast in the great hall in Hartwall, Lady Hartwall felt much better. Fighting had been pushed back earthwise to Stone Rampart. There were many mutations, and retreating troops had seen a large explosion in that area. Hartwall would defend the pylon while the party went to get the betrayer. A margin note reads "Da Pig Plaguers." Reports from the captured leaders said they had all managed to retake their cities with minimal casualties. Three paws on the ground reported the safe arrival of the goliaths. +The notes then mark "Day 34." At breakfast in the great hall in Hartwall, Lady Elissa Hartwall felt much better. Fighting had been pushed back earthwise to Stone Rampart. There were many mutations, and retreating troops had seen a large explosion in that area. Hartwall would defend the pylon while the party went to get the betrayer. A margin note reads "Da Pig Plaguers." Reports from the captured leaders said they had all managed to retake their cities with minimal casualties. Three paws on the ground reported the safe arrival of the goliaths. The party scried on "The Mother." They saw mountainous terrain, a weird two-legged horse, a little tiefling girl, and a small band of odd creatures. They were together by a small crater in the side of the barrier near the mountain, close to Valenthielles prison. The Mother had been imprisoned last time with help from the [unfinished]. Carduneld had dabbled with Envy but had not entered any [unfinished]. The party met Brother Fracture in the bazaar, with Andy [uncertain: Kallamar?] with him. They had been on their way to the front lines. The party directed Brother Fracture to Lady Fat Rabbit. @@ -122,7 +122,7 @@ A guard on the door was a sixty-foot giant, though not the size of the Tor statu The command had some "exciting" obsidian ravens. The party advised them to stop using the ravens, because all messages back had been telling them not to support the cause. Gerald went to get the quartermaster. The raven was a stealth version, and the quartermaster did not think anything was wrong. A message was sent to Dirk. Dirk said he would be there in a minute, but the reply came back saying he could not come. The party told the quartermaster to send messages ordering troops to come regardless of any reply. Errol was loaned to the commander for two hours. -The party went to another inn, the Three Full Moons, and talked to Gary, a house farmer with a dog named Shep. They returned to Captain Briarthorn, where Lady Hartwall was fully armoured. The plan was that giants were close to where the defenders wanted to ambush them. The dragon would try to split off some of the larger giants, and the party would attack. Some towns had responded through Errol and were sending small troops to help. The party arranged to meet Hartwall in the forest and planned to start a fire to separate the large giants from the army. While riding the dragon, they saw a black plume of smoke near the mountain at the edge of vision. The plume was magical in nature, perhaps Hartwall/Highden. +The party went to another inn, the Three Full Moons, and talked to Gary, a house farmer with a dog named Shep. They returned to Captain Briarthorn, where Lady Elissa Hartwall was fully armoured. The plan was that giants were close to where the defenders wanted to ambush them. The dragon would try to split off some of the larger giants, and the party would attack. Some towns had responded through Errol and were sending small troops to help. The party arranged to meet Hartwall in the forest and planned to start a fire to separate the large giants from the army. While riding the dragon, they saw a black plume of smoke near the mountain at the edge of vision. The plume was magical in nature, perhaps Hartwall/Highden. As they drew closer, the smoke shape came to attack them. Hartwall protected the party from the dragon's flame. A giant attacked, bashing Invar into the ground with his mace while the others closed in. Dirk clung to the giant's arm and climbed up his leg. Morgana summoned a bear and grappled the giant's arms. The party defeated all the giants. Hartwall and a skeletal dragon fought each other. The skeletal dragon had the book from Ruby Eye's lab, and the words he spoke from the book were words he did not understand. The party teleported out to the armies, and the dragon came toward them. @@ -166,7 +166,7 @@ The figure thought it was Ruby Eye. It could not open the barrier because that m # People, Factions, and Places Mentioned -People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Hartwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Hartwall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. +People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Elissa Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Hartwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Hartwall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index feaf59f..b0c093a 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -95,11 +95,11 @@ Bleakstorm reported that Perodita was heading to Hartwall. Bridge's sister was n The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Hartwall, where they saw Perodita vanish. -The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Hartwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. +The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Elissa Hartwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Hartwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, and Jin Woo. Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodika's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. @@ -113,7 +113,7 @@ Items, currencies, and physical resources mentioned include Envi's fifth ring gi Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. -Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Hartwall's movement airwise to help with the battle heading to Emmerave. +Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Elissa Hartwall's movement airwise to help with the battle heading to Emmerave. # Clues, Mysteries, and Open Threads @@ -177,6 +177,6 @@ Bleakstorm detected Dirk missing a day. The missing day, Bleakstorm's deals with Bleakstorm will not forgive Emri for taking away his only friend after being told not to entrust him. The friend, [uncertain: leechus], and the promise to free him remain open. -Perodita was heading to Hartwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Hartwall, and Lady Hartwall had gone airwise toward Emmerave. +Perodita was heading to Hartwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Hartwall, and Lady Elissa Hartwall had gone airwise toward Emmerave. T.J. Boggins remained at Hartwall eating meat and watching opera, while Jin Woo was absent. Their immediate relevance is not stated. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index 32ed9bf..f6c89d8 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -41,11 +41,11 @@ The party returned to the castle to wait for the bird. They decided to open Inva Shurling arrived. The Chorus knew where the entrance to Grincray was, but they needed to go through Mashir. The flesh-crafting wands were discussed; something was still out there stopping all of the lost knowledge from being retrieved. -Lady Hartwall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Hartwall, and she had done so before she disappeared. Lady Hartwall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Hartwall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. +Lady Elissa Hartwall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Hartwall, and she had done so before she disappeared. Lady Elissa Hartwall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Elissa Hartwall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. The Menagerie was then discussed. The mages who worked there had not returned to Grand Towers and had locked the Menagerie down; no one could get in. It used to be the mage school. Emi's apprentice was a dark-skinned elf. Joy did not like him, and Mr Browning also did not like him. Browning was described as a nice man, though the note adds that this is not what the party has seen. Storms were bad in the latest reports. Heathmoor plagues were very bad. The land was healing, but the people were not, and the plagues did not share similarities with barrier sickness. News from a rear Ironcraft air site said a tradesman went to pick someone up but that person had "disappeared." The guilt was Emi's guilt. -Lady Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Hartwall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Hartwall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. +Lady Elissa Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Hartwall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Hartwall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. The party tried to speak to Garadwel through the feather. It vibrated, and there was a chill in the air. Garadwel called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. @@ -53,7 +53,7 @@ Garadwel said people did not build things as he taught them and instead ran off A quick update came by sending stone: the Grand Towers dome was down, and Garadwell had probably gone to Ashkhellion. The party debated whether to go to Ashkhellion and get Benu first. They went to the library to speak to the vulture man. He went to get his sending stone to speak to [uncertain: Ashtrigwos], to tell Benu to meet the party at the tower in Ashkhellion. Geldrin asked for magical scrolls and got them just before the teleportation circle completed. The party went to Ashkhellion. -They appeared higher up in the tower, and Hartwall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. +They appeared higher up in the tower, and Hartwall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Elissa Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadwal, while Trixus was still in a barrier. The party asked Garadwel to lay down his weapons, but he refused. Eliana tried to get the dome opener, and Garadwal killed them. Benu attacked Garadwal. Geldrin used a tremor skill to release Trixus. Eliana was revived and saw Valentenshide manage to look away. Benu and Garadwal broke through the walls and fought outside. A fight ensued, and Garadwal was banished at 5:00. @@ -75,7 +75,7 @@ Cardonald gave Geldrin all of the teleportation circles: seven prisons with no d # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Elissa Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snow Sorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. @@ -87,9 +87,9 @@ Creatures and creature-like beings mentioned include kobolds, the silvery-green Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadwal's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. -Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. +Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Elissa Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. -Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. +Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Elissa Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. # Clues, Mysteries, and Open Threads @@ -121,7 +121,7 @@ Shurling reported that the Chorus knew the entrance to Grincray but needed to go Something is still preventing all lost knowledge from being retrieved. This blocker may be connected to flesh-crafting wands, memory interference, or barrier magic. -Lady Hartwall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Hartwall, Perodita, and Snow Sorrow remain unresolved. +Lady Elissa Hartwall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Hartwall, Perodita, and Snow Sorrow remain unresolved. The Menagerie, formerly the mage school, is locked down by mages who did not return to Grand Towers. Emi's dark-skinned elf apprentice, Joy's dislike of him, and Browning's contradictory reputation are important unresolved leads. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index 7e28795..79e7166 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -30,13 +30,13 @@ complete: true # Narrative -Day 47 began after the party decided to go to Hartwall's lab. They tried to put rations into the bag of holding while escaping back to the ground. Morgana set something free in the forest; it was called "No chart." The notes then report that adventurers had taken Lady Hartwall's diary and killed the elf who had been taking woodcutters from Pinesprings. +Day 47 began after the party decided to go to Hartwall's lab. They tried to put rations into the bag of holding while escaping back to the ground. Morgana set something free in the forest; it was called "No chart." The notes then report that adventurers had taken Lady Elissa Hartwall's diary and killed the elf who had been taking woodcutters from Pinesprings. In the ransacked room, an untouched picture showed a halfling girl with a silver-haired girl in a field of white roses. The picture had been altered: investigation revealed that the other side of the girls had been changed, and another girl had originally been in the picture. Draconic runes on the frame included the word "Preserve." Beyond a door was an empty bookshelf and an alchemist's table covered in mushrooms. The phrase "Friend fleshbag set him free" appeared in the notes, along with the statement that the children were elsewhere now. The party learned or inferred that two silver dragons had lived there, fought, one left, and then came back, after which there were three: one big and two small. At the end of a corridor were two prison rooms. One room was filled with dirt and kept filling with more. The next room was locked; Platinum said the door had not been there when she was with the adventurers. Inside stood an obsidian plinth with an urn, a single white rose, an amethyst orb, a red ribbon tied in a bow, and a dark wooden flute laid like an offering. -An obsidian statue had no face but suggested a gracious god, with an eyestone in the lower torso, possibly Squeal. The other side represented Kasha, with an unclear note preserved as `[unclear: Leys 8? mystery]`. When Eliana looked at the flute, they somehow knew Lady Hartwall played it, perhaps from a look from Provista, and a frosty tear formed in the corner of their eye. The urn read: "Though my love for you in life may not have been true, you still gave your life for me. I'm sorry." It was Argathum's urn. Behind the silks, one made Eliana shiver and feel afraid. Dirk found a crack in the wall. +An obsidian statue had no face but suggested a gracious god, with an eyestone in the lower torso, possibly Squeal. The other side represented Kasha, with an unclear note preserved as `[unclear: Leys 8? mystery]`. When Eliana looked at the flute, they somehow knew Lady Elissa Hartwall played it, perhaps from a look from Provista, and a frosty tear formed in the corner of their eye. The urn read: "Though my love for you in life may not have been true, you still gave your life for me. I'm sorry." It was Argathum's urn. Behind the silks, one made Eliana shiver and feel afraid. Dirk found a crack in the wall. When the party checked the crack, someone became petrified by it and instinctively threw the flute at it. The crack looked as if something spherical had hit it. Dirk checked the urn, found it contained dust, and tried to speak to it. The phrase "In her strange bones laid bare" was recorded. Nearby metal looked tarnished, odd for silver; when wiped, it revealed crystallised jade dust, as if silver were turning into jade. Geldrin cleaned both statues and became lost looking at one. @@ -102,7 +102,7 @@ Arc asked Dothral to set it free. The party teleported to the frost prison. Ice To the right, an elaborate door bore danger symbology. Turning right changed the symbols to say, "Don't go down here." Darkness lay that way, and the corridor felt as if it went farther. At the corridor end, where there was no ice, a closed door had black hardened tree sap or rubber around the frame. A feeling called from behind it. Dirk asked the ancestors what would happen if the party replaced the elemental and sensed woe. Further conversation suggested some lies. Dirk used Clairvoyance and saw a semicircular room with an apparently empty central plinth and rubber between all flagstones. This oracle area of the dome aligned with the pipe from Timnor's vision. The being said he was no longer in this plane. -At another prison, a standard carved door showed eight serpents with different heads: goat, lion, and bull among them. The door at the end was iced over, with no rubber. Lightning seemed to come from this side of the door. Dirk spoke Aquan. The entity knew Dirk's name, expected him to set it free, asked whether it was safe, and wanted to make sure it was the right thing. It could think and talk to some elementals. The notes suggest Lady Hartwall had the ice thing trapped and may have put it into a fire elemental. It was weakened by the prison, could affect things through a gap, and had a cellmate throwing ice around. It had been tricked into the prison. Before releasing it, the party learned there were other angry prisoners. +At another prison, a standard carved door showed eight serpents with different heads: goat, lion, and bull among them. The door at the end was iced over, with no rubber. Lightning seemed to come from this side of the door. Dirk spoke Aquan. The entity knew Dirk's name, expected him to set it free, asked whether it was safe, and wanted to make sure it was the right thing. It could think and talk to some elementals. The notes suggest Lady Elissa Hartwall had the ice thing trapped and may have put it into a fire elemental. It was weakened by the prison, could affect things through a gap, and had a cellmate throwing ice around. It had been tricked into the prison. Before releasing it, the party learned there were other angry prisoners. One dark door now held nothing; it had been a prisoner of a different time. Another dark door led to an ancient dwarven hold, not a settlement. Opening it revealed a massive shaggy blue aurora. Geldrin promised to return and let it out when he learned how to power the dome without all the elementals. The cellmate had been chosen to turn off the gusts and could turn them back on when he pleased. @@ -142,7 +142,7 @@ The party then used the right blade to go to Hartwall's lab. They gave the ice e # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Elissa Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. @@ -152,7 +152,7 @@ Creatures and creature-like beings mentioned include the magical black green-eye # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the bag of holding, Lady Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. +Items, documents, and physical resources mentioned include the bag of holding, Lady Elissa Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. @@ -162,7 +162,7 @@ Strategic resources and plans mentioned include the clue that an altered picture The altered white-rose picture and its `Preserve` rune imply a third girl was removed or hidden from memory or history. The identity of the missing girl and how she relates to Eliana, Joy, Hannah, and Hartwall's daughters remains unresolved. -The note about "No chart," the forest release, and the adventurers who took Lady Hartwall's diary are unexplained. +The note about "No chart," the forest release, and the adventurers who took Lady Elissa Hartwall's diary are unexplained. The mushroom table message "Friend fleshbag set him free" and the statement that the children are elsewhere now connect to earlier mushroom and Limos Vita threads, but the freed entity and the children's location remain unclear. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index f85bbec..06354c4 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -96,7 +96,7 @@ The party chose the Light realm. Bynx lowered the chandelier and took them throu The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but Eliana could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from Eliana's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. Leadus' father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. -Attabre said Eliana's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. Eliana was not only Icefang's daughter but Attabre's too. Eliana was killed because they got in the way, being more strong-willed; Kaylara accepted the spells, but Eliana did not, so they killed Eliana. Icefang got Kaylara out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. +Attabre said Eliana's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. Eliana was not only Icefang's daughter but Attabre's too. Eliana was killed because they got in the way, being more strong-willed; Lady Elissa Hartwall accepted the spells, but Eliana did not, so they killed Eliana. Icefang got Lady Elissa Hartwall out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. The choice to bring down the dome remained the party's. Attabre said the gods would not mind except those who benefited, and bringing down the dome would weaken Throngore. Kasha had been allowed to get certain souls through the Barrier, the merbabies, to help her sister. The party had been good Envoys. Bynx would need to decide whether to stay and build the Goliath race or return to him. Geldrin asked how to leave his pact with Kasha to get Guardwell's soul. Attabre said Kasha was not bound like the gods, but she would do everything she could, which was limited on the Mortal realm but strong in her realm. Attabre let the party rest, and they returned to the Mortal realm. The death realm became a portal and the light disappeared. The party had to leave the safety of the city in the death realm and free the merfolk babies. Geldrin put part of Haze into Errol to help find the tail. Timon abseiled into the portal, Morgana became an eagle to explore, and Dirk asked the ancestors whether they would land safely. The ancestors said Whel, Eliana, and Dotharl should jump straight in, followed by everyone else. @@ -114,7 +114,7 @@ The party found an empty house and relaxed. Dirk felt someone scrying on him. Ou # People, Factions, and Places Mentioned -People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Kaylara, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. +People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Lady Elissa Hartwall, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. @@ -144,7 +144,7 @@ The Earth-plane tavern sequence removed something bad that had been following th Mama Hartwall's vision at the round table with five wizards, Hannah, and Icefang shows her trying to stop something involving the blue ball. It appears tied to the old wizard project, Icefang, Hannah, and Eliana's past. -Eliana's origin is reframed again: the younger Chorus "made" a baby, a box from Everchard delivered Eliana and sword to Provista about twenty years earlier, the name Eliana Hartwall appears, Attabre says Eliana is both Icefang's and Attabre's daughter, Kaylara accepted spells while Eliana did not, and Eliana was killed for getting in the way. Necrotic damage in the death realm briefly revealed a silver dragonborn with horn ribbons and a teddy. +Eliana's origin is reframed again: the younger Chorus "made" a baby, a box from Everchard delivered Eliana and sword to Provista about twenty years earlier, the name Eliana Hartwall appears, Attabre says Eliana is both Icefang's and Attabre's daughter, Lady Elissa Hartwall accepted spells while Eliana did not, and Eliana was killed for getting in the way. Necrotic damage in the death realm briefly revealed a silver dragonborn with horn ribbons and a teddy. Bleakstorm wants a personal favour to save him and free Icefang's spirit, which remains in the dome because Icefang died there. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index ad21f5c..3453f1a 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -75,7 +75,6 @@ sources: - [Astraywoo](people/astraywoo.md): Astraywoo, athruygon? [uncertain]. - [Luth](people/luth.md): Luth. - [Freeport Auction Lots](items/freeport-auction-lots.md): auction house items, Freeport auction house lots. -- [Lady Hartwall](people/lady-hartwall.md): Lady Hartwall, Hartwall. - [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md): Lady R. Beauchamp?!?, Lady R. Beauchamp. - [The Freeport Baroness](people/freeport-baroness.md): Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. - [Lady Thorpe](people/lady-thorpe.md): Lady Thorpe, false Lady Thorpe, llama impostor. @@ -102,7 +101,8 @@ sources: - [Igraine](people/igraine.md): Igraine, Lady Igraine, Egraine Brook [uncertain earlier variant], spirit of Igraine. - [Throngore](people/throngore.md): Throngore, Thromgore [earlier variant], giant goat-headed lord, god/demon of the death realm. - [Kasha](people/kasha.md): Kasha, Kasher [earlier uncertain variant]. -- [Eliana Hartwall / Kaylara](people/eliana-hartwall.md): Eliana Hartwall, Elliana Hartwall, Elluin Hartwall, Elluin Hartwall!, Kaylara [related but not silently merged]. +- [Eliana Hartwall](people/eliana-hartwall.md): Eliana Hartwall, Elliana Hartwall, Elluin Hartwall, Elluin Hartwall!. +- [Lady Elissa Hartwall](people/lady-elissa-hartwall.md): Lady Elissa Hartwall, Lady Hartwall, Hartwall, Elissa, Kaylissa, Kaylara, Lady Eliisa Hartwall. - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md): Lady Evalina Hartwall, Evalina Hartwall, Mama Hartwall, Miana, Avalina. - [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Dothurl / Dotharl, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index e2b5a18..c4b328d 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -23,7 +23,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Kasha, Guardwell soul pact, merbaby souls through Barrier, Kasha realm, Kasha breaking through ceiling | Added [Kasha](../people/kasha.md); updated [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Throngore, Sauver, Shylow, death realm, goat men, wasps, Air throne warning, path contradiction | Added [Throngore](../people/throngore.md); Sauver/Shylow in [Minor Figures from Day 57](../people/minor-figures-day-57.md); places in [Minor Places from Day 57](../places/minor-places-day-57.md). | | Lord Briarthorn, thorn-beard elf, moon trip with Eliana's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | -| Eliana Hartwall / Kaylara identity, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md); updated [Icefang](../people/icefang.md) and [Attabre / Altabre](../people/attabre-altabre.md). | +| Eliana Hartwall and Lady Elissa Hartwall identity lore, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana Hartwall](../people/eliana-hartwall.md) and updated [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Icefang](../people/icefang.md), and [Attabre / Altabre](../people/attabre-altabre.md). | | Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre / Altabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index 93916b6..ecf0480 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -17,7 +17,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Existing Pages Updated or Used -- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hartwall](../people/lady-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Ennuyé](../people/ennuyé.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). +- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Ennuyé](../people/ennuyé.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). ## Rollups Used diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index a32b69c..910f06a 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -18,7 +18,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | | Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre / Altabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre / Altabre](../people/attabre-altabre.md). | -| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | +| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Elissa Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | | Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index feefe5b..1f88a7e 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -42,7 +42,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `Thurtall!!` | possible teleport carpet trigger | `data/4-days-cleaned/day-17.md` | Shouted as a gargoyle rolled out a carpet with a teleport rune; whether it is a formal command word is not explicit. | | `Bun` | TJ's name for the dome | `data/4-days-cleaned/day-35.md` | TJ Biggins called the dome the `Bun` after Dirk explained it using a bun. | | The Guilt's chest disarm code | known to chest users, not recorded | `data/4-days-cleaned/day-36.md` | Seneshell showed The Guilt inside a dangerous chest like the one in Envy's lab; it was dangerous when armed and had a code to disarm it. | -| `Burial` | Wrath imprisonment command | `data/4-days-cleaned/day-36.md` | Wrath, impersonating Ruby Eye, shouted `Burial` while imprisoning Hartwall with a silver dragon statue. | +| `Burial` | Wrath imprisonment command | `data/4-days-cleaned/day-36.md` | Wrath, impersonating Ruby Eye, shouted `Burial` while imprisoning Lady Evalina Hartwall / Mama Hartwall with a silver dragon statue. | | `winter roses` | Coalmont Falls door phrase | `data/4-days-cleaned/day-36.md` | Hanner said `winter roses` at the door in the underwater facility, and it came to life. | ## Inscriptions, Labels, Symbols, and Coded Phrases diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 5147645..206139f 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -86,7 +86,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Astraywoo](people/astraywoo.md) - [Luth](people/luth.md) - [The Freeport Baroness](people/freeport-baroness.md) -- [Lady Hartwall](people/lady-hartwall.md) +- [Lady Elissa Hartwall](people/lady-elissa-hartwall.md) - [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md) - [Lortesh](people/lortesh.md) - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) @@ -118,7 +118,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Igraine](people/igraine.md) - [Throngore](people/throngore.md) - [Kasha](people/kasha.md) -- [Eliana Hartwall / Kaylara](people/eliana-hartwall.md) +- [Eliana Hartwall](people/eliana-hartwall.md) - [Lady Evalina Hartwall](people/lady-evalina-hartwall.md) - [Minor Figures from Day 57](people/minor-figures-day-57.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 515d972..5adc6bb 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -76,7 +76,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Dragon skull of Alsafaur | returned to black dragon | `day-16` | `data/4-days-cleaned/day-16.md` | Given to the black dragon at the Barrier in exchange for being `even`. | | 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | | One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hartwall auction. | -| Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Hartwall wanted to see the party. | +| Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Elissa Hartwall wanted to see the party. | | Sword, necklace, bowl, tongs, cat/light-cat, and tail statue artifacts | returned to Brass City statues/body | `day-57` | `data/4-days-cleaned/day-57.md` | Returned or used to restore Council/Tresmon body pieces; see [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | ## Promised, Expected, or Pending diff --git a/data/6-wiki/items/minor-items-day-57.md b/data/6-wiki/items/minor-items-day-57.md index d311a31..b2edfde 100644 --- a/data/6-wiki/items/minor-items-day-57.md +++ b/data/6-wiki/items/minor-items-day-57.md @@ -16,7 +16,7 @@ sources: | Orbiting coin | Triggered Ignan phrase about helping say his name when picked up. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tresmon, coal was wet, granite scorched, silver dragon matched Lady Evalina Hartwall / Mama Hartwall. | [Tresmon's Body and Statue Artifacts](tresmons-body-and-statue-artifacts.md). | | Scroll of Fireball | Parchment found by Geldrin at the cat tavern table. | [Party Inventory](../inventories/party-inventory.md). | -| Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md). | +| Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Eliana Hartwall](../people/eliana-hartwall.md). | | Five altar candles and ten gold statues | Used in the round temple vision of five wizards, Hannah, and Icefang. | Rollup. | | Moon crystal and tiny arm bone | Moon crystal motivated opening the moon door; tiny arm bone came through the wave door. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | | Founder's Day poster dated 17th March 991 | Showed Bleakstorm and a Geldrin look-alike; date was not Founding Day. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 1920c64..d9356ad 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -90,7 +90,7 @@ sources: - What are Enwi's gloves doing in the Goliath Tower in the Oasis, and does that mean Enwi died there without being released? - What are Ashktioth, Tradesmall, the Goliath tower in a field, Goldenswell's impact site, and the generations of Goliaths serving dragons? - What do the command-tent platinum coins commemorate by `the fall of the labour in the name of the lord Searean`, and what are the domed city tower and snake symbols? -- What happened to [Lady Hartwall](people/lady-hartwall.md) after the antidote, injury, and Lady Thorpe impersonation crisis? +- What happened to [Lady Elissa Hartwall](people/lady-elissa-hartwall.md) after the antidote, injury, and Lady Thorpe impersonation crisis? - Who replaced [Lady Thorpe](people/lady-thorpe.md) with a llama-form impostor, why did the impostor use Noxia-like identity-suppression poison or curse, and what did the Justicars learn after taking the llama to Grand Towers? - What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s shield-crystal role after hiding a crystal piece with Wroth, and why were Justicars looking for him at the Hartwall auction? - Are the [Hartwall Auction Lots](items/hartwall-auction-lots.md) chariot, `Valententide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? @@ -184,7 +184,7 @@ sources: - What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? - Who was removed from the Hartwall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Hartwall's daughters? -- What do Argathum's urn, Lady Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Hartwall's sacrifices? +- What do Argathum's urn, Lady Elissa Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Elissa Hartwall's sacrifices? - Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Boorning do with the key after Avalina left? - Who is [Bynx](people/bynx.md)'s lion-headed `real daddy`, and what happened to Bynx's sister in the white dragon? - What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? @@ -229,6 +229,6 @@ sources: - What exactly is [Tresmon's body](items/tresmons-body-and-statue-artifacts.md), why is Envi holding the arm, and who is the crystal body ultimately being completed for? - Can [Globule](people/globule.md), [Hydran](people/hydran.md), and [Queen Mooncoral](people/queen-mooncoral.md)'s people keep the freed merbabies safe from Kasha and Noxia? - What did [Azar Nuri](people/azar-nuri.md) gain from Geldrin's bargain, and what happens if his envoys reach the Mortal plane? -- Is [Eliana Hartwall / Kaylara](people/eliana-hartwall.md) one identity, split identities, reincarnations, or related siblings/doubles? +- How do [Eliana Hartwall](people/eliana-hartwall.md) and [Lady Elissa Hartwall](people/lady-elissa-hartwall.md) relate across Hartwall family history, memory, and magical identity? - Which instructions should the party trust in the dark plane: Hydran's advice to leave the path or [Throngore](people/throngore.md)'s demand to stay on it? - Why did Dirk feel someone scrying on him in [Brass City](places/brass-city.md) after Queen Mooncoral's arrival? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md index 5002f82..fcb346c 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre-altabre.md @@ -31,7 +31,7 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. - Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. - Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. -- Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Kaylara accepted the spells. +- Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Lady Elissa Hartwall accepted the spells. - Attabre warned that divine gifts before the next realm would be hard to choose and that if the party died there they would not get back up. - Attabre said bringing down the dome was the party's choice, would weaken Throngore, and would not bother gods except those who benefit. diff --git a/data/6-wiki/people/eliana-hartwall.md b/data/6-wiki/people/eliana-hartwall.md index 641b9cf..a18501f 100644 --- a/data/6-wiki/people/eliana-hartwall.md +++ b/data/6-wiki/people/eliana-hartwall.md @@ -1,12 +1,11 @@ --- -title: Eliana Hartwall / Kaylara +title: Eliana Hartwall type: player character aliases: - Eliana Hartwall - Elliana Hartwall - Elluin Hartwall - Elluin Hartwall! - - Kaylara player: Kirsty note_taker: Kirsty first_seen: day-47 @@ -18,11 +17,11 @@ sources: - data/4-days-cleaned/day-57.md --- -# Eliana Hartwall / Kaylara +# Eliana Hartwall ## Summary -Eliana Hartwall is a main player character played by Kirsty, who is also the note taker. Eliana's identity remains unresolved across Eliana Hartwall and Kaylara clues. Day 57 adds origin memories, a delivered baby box, Attabre and Icefang parentage, death/reincarnation implications, and a death-realm prison memory. +Eliana Hartwall is a main player character played by Kirsty, who is also the note taker. Day 57 adds origin memories, a delivered baby box, Attabre and Icefang parentage, death/reincarnation implications, and a death-realm prison memory. ## Day 57 Details @@ -32,8 +31,8 @@ Eliana Hartwall is a main player character played by Kirsty, who is also the not - The Chorus had black thread sewn through eyes and mouth; Morgana found black thread in the baby/sword context. - Bleakstorm wanted the party to save him and free Icefang's spirit, which remained in the dome because Icefang died there. - Attabre said Eliana was Icefang's daughter and also Attabre's, not just Icefang's. -- Attabre said Eliana was killed for getting in the way and being strong-willed; Kaylara accepted the spells, while Eliana did not. -- Icefang got Kaylara out and then fell into slumber. +- Attabre said Eliana was killed for getting in the way and being strong-willed; Lady Elissa Hartwall accepted the spells, while Eliana did not. +- Icefang got Lady Elissa Hartwall out and then fell into slumber. - Necrotic damage in Throngore's prison briefly changed Eliana into a silver dragonborn with ribbons on the horns and a teddy on the belt. - A nearby rock guy said Eliana's mother killed him and dedicated him to Kasha; he grew to like Stone Rampart or Eliana. @@ -41,12 +40,13 @@ Eliana Hartwall is a main player character played by Kirsty, who is also the not - [Icefang](icefang.md) - [Attabre / Altabre](attabre-altabre.md) +- [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [The Chorus](the-chorus.md) - [Lord Briarthorn](lord-briarthorn.md) - [Kasha](kasha.md) ## Open Questions -- Are Eliana, Eliana Hartwall, and Kaylara separate people, variant names, or altered states of Eliana? -- What spells did Kaylara accept that Eliana refused? +- How do Eliana Hartwall and Lady Elissa Hartwall relate across Hartwall family history, memory, and magical identity? +- What spells did Lady Elissa Hartwall accept that Eliana refused? - What did Morgana's reincarnation do, and why are memories still incomplete? diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 23aa9ae..38b3d37 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -30,19 +30,19 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - In the Highden battle, a massive frost dragon burst from a black hole, seized the skeletal dragon, called Hartwall `My Child`, crashed through the Barrier, and was retrieved by a water elemental. - Cardunel planned to bury Icefang near Snow Sorrow. - Day 42 copper-dragon history says Ice Fury was about thirty to forty years older than the copper dragon, while [uncertain: Ice fang] / Atlih was noted near her boy and Snow Screen / Snow Sorrow. -- Day 43 says Lady Hartwall remembered Icefang more clearly, that he cared for her, and that he and Lady Hartwall assaulted Perodita while Icefang was starting to lose his mind. +- Day 43 says Lady Elissa Hartwall remembered Icefang more clearly, that he cared for her, and that he and Lady Elissa Hartwall assaulted Perodita while Icefang was starting to lose his mind. - Day 44 has Altith / Icefang contact Eliana, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. - Icefang's future vision if Browning acted showed broken tower fields, burning blue, black, green, and red dragons, hidden settlements, and destructive elementals. - Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Lady Evalina Hartwall / Mama Hartwall holding the blue ball and saying the work had to stop. - Day 57 Bleakstorm said Icefang's spirit was still in the dome because Icefang died there and asked the party to free it. -- Day 57 Attabre said Eliana was Icefang's daughter as well as Attabre's, that Icefang gave them all vision, got Kaylara out, and then fell to slumber. +- Day 57 Attabre said Eliana was Icefang's daughter as well as Attabre's, that Icefang gave them all vision, got Lady Elissa Hartwall out, and then fell to slumber. ## Related Entries - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Edward Browning](edward-browning.md) -- [Lady Hartwall](lady-hartwall.md) +- [Lady Elissa Hartwall](lady-elissa-hartwall.md) ## Open Questions @@ -52,4 +52,4 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snow Screen figures? - What did Icefang mean by Dad being mad and the gods taking over Snow Screen? - What does freeing Icefang's spirit from the dome require? -- How do Icefang, Attabre, Kaylara, and Eliana's Hartwall identity fit together? +- How do Icefang, Attabre, Lady Elissa Hartwall, and Eliana's Hartwall identity fit together? diff --git a/data/6-wiki/people/kasha.md b/data/6-wiki/people/kasha.md index 15cfab5..ef30164 100644 --- a/data/6-wiki/people/kasha.md +++ b/data/6-wiki/people/kasha.md @@ -30,7 +30,7 @@ Kasha is a soul-associated power whose bargains and realm pressure matter to Gel - [Throngore](throngore.md) - [Hydran / Hydram](hydran.md) -- [Eliana Hartwall / Kaylara](eliana-hartwall.md) +- [Eliana Hartwall](eliana-hartwall.md) ## Open Questions diff --git a/data/6-wiki/people/lady-elissa-hartwall.md b/data/6-wiki/people/lady-elissa-hartwall.md new file mode 100644 index 0000000..8803f30 --- /dev/null +++ b/data/6-wiki/people/lady-elissa-hartwall.md @@ -0,0 +1,61 @@ +--- +title: Lady Elissa Hartwall +type: person +aliases: + - Hartwall + - Lady Hartwall + - Lady Elissa Hartwall + - Elissa + - Kaylissa + - Kaylara + - Lady Eliisa Hartwall +first_seen: day-30 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-57.md +--- + +# Lady Elissa Hartwall + +## Summary + +Lady Elissa Hartwall is a regional noble or military authority connected to Hartwall, Goldenswell war news, and the Lady Thorpe impersonation crisis. + +## Known Details + +- She was injured after deciding to take the fight against the giants into her own hands. +- The news report said she was recuperating normally. +- Later the same day, Invar received a message saying the Lady was unavailable because she was fighting on the front lines. +- Day 32 places Lady Elissa Hartwall in Hartwall, still injured, while Lady Freya attended the city. +- Lady Elissa Hartwall wanted to see the party after the false Lady Thorpe incident; doctors were making an antidote while she suffered great pain from a condition that seemed like magical poison or a religious curse, possibly Noxia. +- Lady Elissa Hartwall had noticed that Lady Thorpe had not visited as much as expected, but had not realized her wife or partner had been replaced. +- Eroll was used to send a message to Lady Elissa Hartwall after the Goldenswell rescue. +- Lady Elissa Hartwall transformed in the courtyard and was slightly bigger than the Peridot Queen. +- Lady Elissa Hartwall's Raven had exploded, and several explosions occurred across her city. +- Lady Elissa Hartwall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. +- Day 42 records Lady Elissa Hartwall away airwise to help with the battle heading to Emmerave. +- Day 43 records Lady Elissa Hartwall remembering Icefang, gold dragons, and her and Icefang's assault on Perodita; she also reported forces from Dumnensend, the Menagerie lockdown, Heathmoor plagues, and Goldenswell politics. +- Lady Elissa Hartwall transformed into a dragon at Ashkellon to catch the party after teleportation. +- Kaylara is Lady Elissa Hartwall. +- Day 57 says Lady Elissa Hartwall accepted the spells while Eliana did not; Icefang got Lady Elissa Hartwall out and then fell into slumber. + +## Related Entries + +- [Dunensend](../places/dunensend.md) +- [Lady Thorpe](lady-thorpe.md) +- [Eliana Hartwall](eliana-hartwall.md) +- [Icefang](icefang.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Open Threads](../open-threads.md) + +## Open Questions + +- Which front was she fighting on, and what authority does she hold over the anti-giant response? +- Was her poison or curse part of the same operation that abducted Lady Thorpe? +- What is Lady Elissa Hartwall's true parentage, and is Icefang her father? +- How do Lady Elissa Hartwall's recovered memories of Icefang, gold dragons, and Perodita alter her current political or military choices? diff --git a/data/6-wiki/people/lady-evalina-hartwall.md b/data/6-wiki/people/lady-evalina-hartwall.md index e8411ee..6742f12 100644 --- a/data/6-wiki/people/lady-evalina-hartwall.md +++ b/data/6-wiki/people/lady-evalina-hartwall.md @@ -27,6 +27,7 @@ Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall fami - Day 43 says Wroth trapped Envy in Mama Hartwall's head the same way Envy is in Ruby Eye's. - Day 36 has Ruby Eye and Carduneld say the party should talk to Mama Hartwall after recognizing memory tampering around Ruby Eye and Icefang. +- On Day 36, Wrath impersonating Ruby Eye imprisoned Lady Evalina Hartwall with a silver dragon statue, then later claimed to remove the curse while lying about full recovery. - Day 44 has Eliana give the name Evalina Hartwall in the old school sequence; Miana / Lady Evalina was assigned Air. - Day 44 later frames Eliana's assumed identity as Lady Evalina Hartwall / Miana / Avalina, seen by Truesight as a dragon. - Day 56 records the line, `I thought my daughters would like it? Mama Hartwall??` @@ -35,8 +36,8 @@ Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall fami ## Related Entries -- [Eliana Hartwall / Kaylara](eliana-hartwall.md) -- [Lady Hartwall](lady-hartwall.md) +- [Eliana Hartwall](eliana-hartwall.md) +- [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [Icefang](icefang.md) - [Ennuyé](ennuyé.md) - [Valententhide](valententhide.md) @@ -45,4 +46,4 @@ Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall fami - How do Lady Evalina Hartwall, Eliana Hartwall, Miana, and Avalina relate across memory, time, and altered identity? - What exactly happened when Envy was trapped in Lady Evalina Hartwall's head? -- Are the daughters referenced on Day 56 Eliana, Joy, Hannah, Kaylara, or other Hartwall children? +- Are the daughters referenced on Day 56 Eliana, Joy, Hannah, Lady Elissa Hartwall, or other Hartwall children? diff --git a/data/6-wiki/people/lady-hartwall.md b/data/6-wiki/people/lady-hartwall.md deleted file mode 100644 index 088aacb..0000000 --- a/data/6-wiki/people/lady-hartwall.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Lady Hartwall -type: person -aliases: - - Hartwall - - Lady Hartwall -first_seen: day-30 -last_updated: day-43 -sources: - - data/4-days-cleaned/day-30.md - - data/4-days-cleaned/day-32.md - - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-42.md - - data/4-days-cleaned/day-43.md ---- - -# Lady Hartwall - -## Summary - -Lady Hartwall is a regional noble or military authority connected to Hartwall, Goldenswell war news, and the Lady Thorpe impersonation crisis. - -## Known Details - -- She was injured after deciding to take the fight against the giants into her own hands. -- The news report said she was recuperating normally. -- Later the same day, Invar received a message saying the Lady was unavailable because she was fighting on the front lines. -- Day 32 places Lady Hartwall in Hartwall, still injured, while Lady Freya attended the city. -- Lady Hartwall wanted to see the party after the false Lady Thorpe incident; doctors were making an antidote while she suffered great pain from a condition that seemed like magical poison or a religious curse, possibly Noxia. -- Lady Hartwall had noticed that Lady Thorpe had not visited as much as expected, but had not realized her wife or partner had been replaced. -- Eroll was used to send a message to Lady Hartwall after the Goldenswell rescue. -- On Day 36, Wrath impersonating Ruby Eye imprisoned Lady Hartwall with a silver dragon statue, then later claimed to remove the curse while lying about full recovery. -- Lady Hartwall transformed in the courtyard and was slightly bigger than the Peridot Queen. -- Lady Hartwall's Raven had exploded, and several explosions occurred across her city. -- Lady Hartwall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. -- Day 42 records Lady Hartwall away airwise to help with the battle heading to Emmerave. -- Day 43 records Lady Hartwall remembering Icefang, gold dragons, and her and Icefang's assault on Perodita; she also reported forces from Dumnensend, the Menagerie lockdown, Heathmoor plagues, and Goldenswell politics. -- Lady Hartwall transformed into a dragon at Ashkellon to catch the party after teleportation. - -## Related Entries - -- [Dunensend](../places/dunensend.md) -- [Lady Thorpe](lady-thorpe.md) -- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) -- [Open Threads](../open-threads.md) - -## Open Questions - -- Which front was she fighting on, and what authority does she hold over the anti-giant response? -- Was her poison or curse part of the same operation that abducted Lady Thorpe? -- What is Lady Hartwall's true parentage, and is Icefang her father? -- How do Lady Hartwall's recovered memories of Icefang, gold dragons, and Perodita alter her current political or military choices? diff --git a/data/6-wiki/people/lady-thorpe.md b/data/6-wiki/people/lady-thorpe.md index bf5bbf6..2f3fa00 100644 --- a/data/6-wiki/people/lady-thorpe.md +++ b/data/6-wiki/people/lady-thorpe.md @@ -11,7 +11,7 @@ sources: ## Summary -Lady Thorpe is Lady Hartwall's wife or partner and a front-line noble or commander who was impersonated, abducted, imprisoned in Goldenswell, and rescued by the party. +Lady Thorpe is Lady Elissa Hartwall's wife or partner and a front-line noble or commander who was impersonated, abducted, imprisoned in Goldenswell, and rescued by the party. ## Known Details @@ -23,7 +23,7 @@ Lady Thorpe is Lady Hartwall's wife or partner and a front-line noble or command ## Related Entries -- [Lady Hartwall](lady-hartwall.md) +- [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md) diff --git a/data/6-wiki/people/lord-briarthorn.md b/data/6-wiki/people/lord-briarthorn.md index 2327be2..f2e16f4 100644 --- a/data/6-wiki/people/lord-briarthorn.md +++ b/data/6-wiki/people/lord-briarthorn.md @@ -25,7 +25,7 @@ Lord Briarthorn is a mortal thorn-beard elf found in a death-realm prison cell. ## Related Entries - [Throngore](throngore.md) -- [Eliana Hartwall / Kaylara](eliana-hartwall.md) +- [Eliana Hartwall](eliana-hartwall.md) - [Minor Figures from Day 57](minor-figures-day-57.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index 080dad0..ceb68d1 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -10,7 +10,7 @@ sources: | Figure | Day 47 details | Coverage | | --- | --- | --- | | Argathum | Urn inscription apologised that love in life may not have been true though Argathum gave life for the writer. | Rollup; linked to Hartwall lab thread. | -| Provista | Possible source of Eliana somehow knowing Lady Hartwall played the flute. | Rollup. | +| Provista | Possible source of Eliana somehow knowing Lady Elissa Hartwall played the flute. | Rollup. | | Avalina | Portrait subject; diary apparently revealed through makeup; tied to daughters, promises, forced mate, and Council of Gold. | Rollup and [Open Threads](../open-threads.md). | | Corundum, Argea?, Cetiosa | Portrait or missing-portrait names in the throne room. | Rollup; uncertainty preserved. | | Mr Boorning | Entered after Avalina left and departed with a key. | Rollup. | diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 1098cdd..8126078 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -20,7 +20,7 @@ sources: | Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | There | 57 | Cat became a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | | Bob and Bosh | 57 | Still cursed; There said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | -| [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana Hartwall / Kaylara](eliana-hartwall.md). | +| [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana Hartwall](eliana-hartwall.md) / [Lady Elissa Hartwall](lady-elissa-hartwall.md). | | Cacophony | 57 | Appeared to Morgana as a huge worm, died, and showed Rubyeye removing his eye. | Rollup / [Open Threads](../open-threads.md). | | Rubyeye | 57 | Seen in vision removing his eye in a runed bathroom. | [Brutor Ruby Eye](brutor-ruby-eye.md). | | Hannah | 57 | Present at the vision round table with five wizards and Icefang. | Rollup / [Open Threads](../open-threads.md). | @@ -32,7 +32,7 @@ sources: | Bruce | 57 | Bird who agreed to teach Morgana animal/bird channeling; Morgana named it Bruce. | [Igraine](igraine.md). | | Sauver | 57 | Goat man on a throne, one of Throngore's, bound until the party arrived. | [Throngore](throngore.md). | | Shylow | 57 | Goat figure who thought the party were goat people and accepted names beginning with S. | [Throngore](throngore.md). | -| [uncertain: Shevolt] | 57 | Recognized Eliana in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Eliana Hartwall / Kaylara](eliana-hartwall.md). | +| [uncertain: Shevolt] | 57 | Recognized Eliana in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Eliana Hartwall](eliana-hartwall.md). | | Fred | 57 | Fellow goat whom [uncertain: Shevolt] claimed he was there to free. | Rollup. | | Sjorra, Law, [unclear: Ice?], Squwal, Bridske | 57 | Listed among gods/god-like names with counts beside some names. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Water Bull / God Bull | 57 | Regained memories, defied Kasha, and wanted to take his realm back; could not enter sea water to get merbabies. | [Hydran / Hydram](hydran.md), [Throngore](throngore.md). | diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index ad183b2..0c3e272 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -16,7 +16,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Lan: earth god associated with love, home, and family; the statue of Lan outside Hartwall resembled the Statue of Serva. - Serva: figure represented by the Statue of Serva, stylistically similar to Lan's statue. -- Lady Freya: present in Hartwall while Lady Hartwall remained injured. +- Lady Freya: present in Hartwall while Lady Elissa Hartwall remained injured. - Human with a very noticeable underbelly: seen at the Baked Mattress. - Barkeep described as `Patches of night & husband`: associated with the Baked Mattress. - Candelissa Hustlebustle: Arabica pechen lady seated beside the party at the auction; bought drink lots. @@ -50,7 +50,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Bugy / Little Bugy: connected to an attempted assassination of Sefris on the ground and the Cult of Salvation. - Sefris: assassination target connected to Cult of Salvation activity. - Cardencalde: did not answer Eroll, which was strange because Eroll contacts her directly. -- Eroll: direct messaging/contact route to Cardencalde and Lady Hartwall; returned with Jin-Loo's ring. +- Eroll: direct messaging/contact route to Cardencalde and Lady Elissa Hartwall; returned with Jin-Loo's ring. - Alf: wanted out allot - Elementarium. - Scumi: goblin with a bag of skulls who tried to survey or enter the prison. - Gary: corrupted sphinx heading toward Grand Towers in skull visions. diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index f821b47..b1cd59b 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -35,7 +35,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Thromgore, Steven / Steve, Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | | [uncertain: Shulcher], Sierra, Earth Waker | Book and Noxia-corruption history figures. | Rollup/open thread; [Noxia](noxia.md). | | Partially ice dwarf, strapping Goliath, half-elf from Everdard, [uncertain: leechus] | Bleakstorm castle figures and lost-friend clue. | [Bleakstorm](../places/bleakstorm.md) / rollup. | -| Lady Parthabbit, Lady Hartwall, T.J. Boggins, Jin Woo | Hartwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | +| Lady Parthabbit, Lady Elissa Hartwall, T.J. Boggins, Jin Woo | Hartwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | ## Day 43 @@ -48,7 +48,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre / Altabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | | Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | -| Lady Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcraft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | +| Lady Elissa Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcraft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | | Earl of Goldenswell, Hartwall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | | Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadwal feather conversation and Benu-summoning details. | Rollup/open thread. | | Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | Status rollup. | diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index b419d73..65d8bf9 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -41,7 +41,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Day 41 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. - Day 42 council history said the Goliath Empire killed Perodika's parents and built a city on their bones; Perodita later headed toward Hartwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. - Galimma's dragon-family information preserves Perodika's children or related dragons with uncertain names and locations. -- Day 43 says Lady Hartwall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. +- Day 43 says Lady Elissa Hartwall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. - Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. - Day 48 reveals Verdigrim originally invited the party because Perodita told him to kill them and promised to leave his people alone. - Day 53 makes Perodita an urgent dwarven-city threat: Anya Blakedurn says Perodita is trying to get back into the dome through the city, and Perodita claims goliath suffering was tribute to Noxia. diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 3f44891..919f58a 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -56,7 +56,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Kiendra](kiendra.md) | rescued, weak, tortured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Initially believed killed/lost, then sensed in a cavern and rescued during the shield crystal mission. | | Huntmaster Thrune / Huntmaster | survived but injured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Agreed to aid against the Excellence, went missing, then was found fighting an Excellence while both were very injured. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | restored | `data/4-days-cleaned/day-30.md` | Restored from an animated floating skull with both eyes glowing red; immediately helped gather supplies. | -| [Lady Hartwall](lady-hartwall.md) | injured, then active on the front lines | `data/4-days-cleaned/day-30.md` | Injured fighting giants but recuperating normally; later unavailable because she was fighting on the front lines. | +| [Lady Elissa Hartwall](lady-elissa-hartwall.md) | injured, then active on the front lines | `data/4-days-cleaned/day-30.md` | Injured fighting giants but recuperating normally; later unavailable because she was fighting on the front lines. | | [Lady Thorpe](lady-thorpe.md) | rescued from Goldenswell | `data/4-days-cleaned/day-32.md` | Real Lady Thorpe was abducted, injured, and malnourished in Goldenswell; false Lady Thorpe became a llama when concentration failed. | | Lady Katherine Cole | rescued and memory restored | `data/4-days-cleaned/day-35.md` | Ear grub removed and killed; memories of The Guilt returned and watched feeling ended. | | [TJ Biggins](tj-biggins.md) | rescued | `data/4-days-cleaned/day-35.md` | Kobold from Plantation of Newt [unclear] Vain; experienced seven moons between home sleep and rescue. | @@ -64,7 +64,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Lord [uncertain: Harmock] Hayes | rescued | `data/4-days-cleaned/day-35.md` | Rescued from prisoner cart; apparent council member. | | [Lady Yadreya Egrine](lady-yadreya-egrine.md) | rescued | `data/4-days-cleaned/day-35.md` | Baroness of Riversmeet; recognized the ear grubs from her menagerie. | | Invar | curse memory partly restored | `data/4-days-cleaned/day-36.md` | Remembered he knew remove curse; bracelet fell off his wrist; still did not remember being kidnapped. | -| [Lady Hartwall](lady-hartwall.md) | curse partly addressed, active in battle | `data/4-days-cleaned/day-36.md` | Wrath claimed she would recover in days but was lying; she transformed and later fought at Highden. | +| [Lady Elissa Hartwall](lady-elissa-hartwall.md) | active in battle | `data/4-days-cleaned/day-36.md` | She transformed and later fought at Highden. | | Arik Bellburn | injured then healed | `data/4-days-cleaned/day-36.md` | Bridget clergyman in Bellburn. | | Greysock Soulspindle | reincarnated as elf | `data/4-days-cleaned/day-41.md` | Elderly gnome cobbler changed after battle; Captain Sprat fetched clothes. | | Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-41.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | @@ -154,7 +154,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaws on the Earl's orders under treason accusations. | | [Silver](silver.md) | soul destroyed, construct taken over | `data/4-days-cleaned/day-23.md` | Dirk threw Silver into the Barrier, destroying the soul; Cardonal then took over the construct. | | Goldenswell off-the-books prisoners | captive or partly rescued | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Hartwall were identified; later transport rescue recovered several council members. | -| Hartwall | imprisoned then released/curse unresolved | `data/4-days-cleaned/day-36.md` | Wrath put her in the ground with imprisonment using a silver dragon statue. | +| [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | imprisoned then released/curse unresolved | `data/4-days-cleaned/day-36.md` | Wrath put her in the ground with imprisonment using a silver dragon statue. | | Valenthielles | left in prison by recent visitors | `data/4-days-cleaned/day-36.md` | Dark prison entity said visitors cleaned up quickly and left Valenthielles there. | | Icefang's ice elemental | imprisoned at Rimewock / Rimewatch | `data/4-days-cleaned/day-36.md` | Water elementals required the party to agree to free it. | | Hephestus / Hephestos | imprisoned soul or barrier entity | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Door had ninth-level Banishment; later described as only his soul and wanted a pact to be let out. | @@ -206,7 +206,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Fairshaws/Fairport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | | [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | | Lady Envy | llamia boss | `data/4-days-cleaned/day-35.md` | Named by TJ Biggins as boss of the llamia; relation to Excellence/sin-title pattern unresolved. | -| [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Hartwall, and was shouted back into Ruby Eye's eye. | +| [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Lady Evalina Hartwall / Mama Hartwall, and was shouted back into Ruby Eye's eye. | | [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-40.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | | [Peridita](peridita.md) / Perodika | active regional dragon threat | `data/4-days-cleaned/day-41.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | | Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-41.md` | Ran off during the Azureside battle. | diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md index 94f474e..04f8e95 100644 --- a/data/6-wiki/people/wrath.md +++ b/data/6-wiki/people/wrath.md @@ -15,13 +15,13 @@ sources: ## Summary -Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pact with Ruby Eye, cursed silver and black dragons, and imprisoned Hartwall. +Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pact with Ruby Eye, cursed silver and black dragons, and imprisoned Lady Evalina Hartwall / Mama Hartwall. ## Known Details - Wrath appeared as Ruby Eye until Morgana's moonbeam revealed a red-skinned tiefling. -- He cast imprisonment on Hartwall using a silver dragon statue and the command `Burial`. -- He had made a pact with Ruby Eye to help kill the black dragon and said it was his fault Hartwall was outside. +- He cast imprisonment on Lady Evalina Hartwall / Mama Hartwall using a silver dragon statue and the command `Burial`. +- He had made a pact with Ruby Eye to help kill the black dragon and said it was his fault Lady Evalina Hartwall / Mama Hartwall was outside. - Wrath was scared of Browning, who had teamed up with Pride. - He cursed the silver and black dragons so they could not take human form. - He wanted the shell of [uncertain: Tremoon] because he saw the wizards make it and it helped people get through the Barrier. @@ -31,7 +31,7 @@ Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pa ## Related Entries - [Brutor Ruby Eye](brutor-ruby-eye.md) -- [Lady Hartwall](lady-hartwall.md) +- [Lady Elissa Hartwall](lady-elissa-hartwall.md) - [Edward Browning](edward-browning.md) - [Excellences](../concepts/excellences.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) diff --git a/data/6-wiki/places/highden-fell.md b/data/6-wiki/places/highden-fell.md index 8bc8e12..044e934 100644 --- a/data/6-wiki/places/highden-fell.md +++ b/data/6-wiki/places/highden-fell.md @@ -28,7 +28,7 @@ Highden Fell was a major battlefront on day 36, suffering crystal sickness, mili ## Related Entries - [Icefang](../people/icefang.md) -- [Lady Hartwall](../people/lady-hartwall.md) +- [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Underbelly](../factions/underbelly.md) diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index 20d25eb..51d38a3 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -16,7 +16,7 @@ sources: | Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to the Lady Evalina Hartwall / Mama Hartwall and Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Craters Edge | Seen through the moon door; Dirk heard garbled conversations. | Rollup. | | Pinesprings | Dragon door memory of snow, pine trees, baby dragonborn, and redbeard figure with a broom. | Rollup. | -| Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md). | +| Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana Hartwall](../people/eliana-hartwall.md). | | City of Aquarius | Mother-of-pearl palace where Keepers of the Pact were welcome by Lord Hydram's permission. | [Hydran / Hydram](../people/hydran.md). | | Morgana's dead-tree hut | Painting realm with dead Everchard trees, birds, white rose, conch, and offering bowl. | [Igraine](../people/igraine.md). | | Hydran's realm | Reached through the `Submarine` door; held the contract to save babies' spirits and carvings about Envi, Noxia, and Morgana. | [Hydran / Hydram](../people/hydran.md). | diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index 15e7b93..70e378c 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -18,7 +18,7 @@ sources: | Envy's lab | Dangerous chest comparison. | [Excellences](../concepts/excellences.md) / rollup. | | Mercy's place, Drunken Duck, Grand Towers passage, broom cupboard, floor 65, floor 74, floor 98 | Grand Towers access route and sites. | [Brookville Springs](brookville-springs.md), [Grand Towers](grand-towers.md). | | Bellburn, early Bridget-like church, Bellburn courtyard and tower | Outside-dome Bridget/goliath town and Hartwall fight area. | [Bridget's Doors](../concepts/bridgets-doors.md) / rollup. | -| Hartwall / Hartwall castle gates and courtyard | Hartwall transformation and recovery. | [Lady Hartwall](../people/lady-hartwall.md). | +| Hartwall / Hartwall castle gates and courtyard | Hartwall transformation and recovery. | [Lady Elissa Hartwall](../people/lady-elissa-hartwall.md). | | Stone Rampart, pylon, bazaar | Day-36 war and travel points. | Rollup. | | Valenthielles prison rooms | Seamless teleport room, middle door, dark corridor, smoky prison room. | [Valenthielles Prison](valenthielles-prison.md). | | Cathedral, Earl's other foot, park between legs, inn taken by troops, river battle point, forest ambush site, mountain plume | Highden Fell sites. | [Highden Fell](highden-fell.md). | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 3a1fc68..12f4d66 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -80,15 +80,15 @@ sources: - `data/4-days-cleaned/day-27.md`: [Dunensend](places/dunensend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-28.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). - `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hartwall](people/lady-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hartwall](people/lady-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hartwall](people/lady-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hartwall](people/lady-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). @@ -98,7 +98,7 @@ sources: - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana Hartwall / Kaylara](people/eliana-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana Hartwall](people/eliana-hartwall.md), [Lady Elissa Hartwall](people/lady-elissa-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 16ba59d..fb308cd 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -100,4 +100,4 @@ sources: - `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. - `day-55`: The party fights through Magstein / Grimcrag, learns Merocole has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. - `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become Envy, confronts Justicars and [Edward Browning](people/edward-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. -- `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tresmon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Kaylara identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. +- `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tresmon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Lady Elissa Hartwall identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. -
69e1fffNormalize Hartwall spellings in notes and wikiby Laura Mostert
data/2-pages/112.txt | 4 +- data/2-pages/114.txt | 2 +- data/2-pages/115.txt | 2 +- data/2-pages/117.txt | 2 +- data/2-pages/123.txt | 2 +- data/2-pages/134.txt | 4 +- data/2-pages/136.txt | 2 +- data/2-pages/137.txt | 2 +- data/2-pages/138.txt | 12 ++--- data/2-pages/139.txt | 2 +- data/2-pages/141.txt | 4 +- data/2-pages/142.txt | 14 +++--- data/2-pages/178.txt | 4 +- data/2-pages/179.txt | 6 +-- data/2-pages/180.txt | 6 +-- data/2-pages/181.txt | 2 +- data/2-pages/182.txt | 2 +- data/2-pages/185.txt | 2 +- data/2-pages/186.txt | 4 +- data/2-pages/187.txt | 2 +- data/2-pages/188.txt | 2 +- data/2-pages/189.txt | 2 +- data/2-pages/190.txt | 2 +- data/2-pages/191.txt | 2 +- data/2-pages/193.txt | 2 +- data/2-pages/195.txt | 2 +- data/2-pages/196.txt | 2 +- data/2-pages/197.txt | 4 +- data/2-pages/205.txt | 2 +- data/2-pages/221.txt | 4 +- data/2-pages/223.txt | 2 +- data/2-pages/225.txt | 4 +- data/2-pages/229.txt | 2 +- data/2-pages/230.txt | 2 +- data/2-pages/237.txt | 2 +- data/2-pages/238.txt | 4 +- data/2-pages/239.txt | 2 +- data/2-pages/245.txt | 4 +- data/2-pages/256.txt | 4 +- data/2-pages/257.txt | 2 +- data/2-pages/277.txt | 2 +- data/2-pages/278.txt | 2 +- data/2-pages/279.txt | 4 +- data/2-pages/281.txt | 2 +- data/2-pages/286.txt | 2 +- data/2-pages/287.txt | 2 +- data/2-pages/309.txt | 2 +- data/2-pages/90.txt | 2 +- data/3-days/day-26.md | 2 +- data/3-days/day-32.md | 12 ++--- data/3-days/day-36.md | 40 ++++++++-------- data/3-days/day-42.md | 10 ++-- data/3-days/day-43.md | 24 +++++----- data/3-days/day-44.md | 12 ++--- data/3-days/day-46.md | 8 ++-- data/3-days/day-47.md | 18 +++---- data/3-days/day-48.md | 6 +-- data/3-days/day-52.md | 2 +- data/3-days/day-56.md | 10 ++-- data/3-days/day-57.md | 6 +-- data/4-days-cleaned/day-26.md | 4 +- data/4-days-cleaned/day-32.md | 22 ++++----- data/4-days-cleaned/day-36.md | 56 +++++++++++----------- data/4-days-cleaned/day-42.md | 16 +++---- data/4-days-cleaned/day-43.md | 34 ++++++------- data/4-days-cleaned/day-44.md | 28 +++++------ data/4-days-cleaned/day-46.md | 18 +++---- data/4-days-cleaned/day-47.md | 34 ++++++------- data/4-days-cleaned/day-48.md | 8 ++-- data/4-days-cleaned/day-52.md | 6 +-- data/4-days-cleaned/day-56.md | 10 ++-- data/4-days-cleaned/day-57.md | 12 ++--- data/6-wiki/aliases.md | 11 +++-- data/6-wiki/clues/day-46-coverage-audit.md | 8 ++-- data/6-wiki/clues/day-47-coverage-audit.md | 4 +- data/6-wiki/clues/day-57-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 16 +++---- .../clues/known-passwords-and-inscriptions.md | 8 ++-- data/6-wiki/concepts/barrier.md | 2 +- data/6-wiki/concepts/elemental-prisons.md | 2 +- data/6-wiki/concepts/excellences.md | 2 +- .../concepts/gods-bargains-behind-the-barrier.md | 2 +- .../goldenswell-prison-network-and-memory-grubs.md | 4 +- data/6-wiki/factions/mage-judicators-justicars.md | 2 +- data/6-wiki/factions/sunsoreen-council.md | 2 +- data/6-wiki/index.md | 3 +- data/6-wiki/inventories/party-inventory.md | 6 +-- data/6-wiki/inventories/party-treasury.md | 2 +- ...ll-auction-lots.md => hartwall-auction-lots.md} | 13 +++-- data/6-wiki/items/minor-items-day-47.md | 2 +- data/6-wiki/items/minor-items-day-57.md | 2 +- data/6-wiki/items/minor-items-days-36-40-41.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 6 +-- .../items/mother-of-pearl-elemental-chariot.md | 4 +- data/6-wiki/items/shield-crystals.md | 4 +- data/6-wiki/open-threads.md | 18 +++---- data/6-wiki/people/attabre-altabre.md | 2 +- data/6-wiki/people/brutor-ruby-eye.md | 4 +- data/6-wiki/people/bynx.md | 4 +- data/6-wiki/people/edward-browning.md | 2 +- data/6-wiki/people/eliana-hartwall.md | 2 +- "data/6-wiki/people/ennuy\303\251.md" | 6 +-- data/6-wiki/people/garadwal.md | 8 ++-- data/6-wiki/people/icefang.md | 8 ++-- data/6-wiki/people/joy.md | 2 +- data/6-wiki/people/lady-evalina-hartwall.md | 48 +++++++++++++++++++ data/6-wiki/people/lady-hartwall.md | 4 +- data/6-wiki/people/lady-thorpe.md | 2 +- data/6-wiki/people/minor-figures-day-47.md | 2 +- data/6-wiki/people/minor-figures-day-57.md | 2 +- data/6-wiki/people/minor-figures-days-23-31.md | 2 +- data/6-wiki/people/minor-figures-days-32-35.md | 10 ++-- data/6-wiki/people/minor-figures-days-36-40-41.md | 4 +- data/6-wiki/people/minor-figures-days-42-44.md | 16 +++---- data/6-wiki/people/minor-figures-days-53-56.md | 4 +- data/6-wiki/people/peridita.md | 2 +- data/6-wiki/people/status.md | 8 ++-- data/6-wiki/people/valententhide.md | 8 ++-- data/6-wiki/people/wrath.md | 6 +-- data/6-wiki/people/xinquiss-zinquiss.md | 4 +- data/6-wiki/places/bleakstorm.md | 2 +- data/6-wiki/places/grand-towers.md | 4 +- data/6-wiki/places/highden-fell.md | 4 +- data/6-wiki/places/minor-places-day-46.md | 8 ++-- data/6-wiki/places/minor-places-day-47.md | 2 +- data/6-wiki/places/minor-places-day-57.md | 2 +- data/6-wiki/places/minor-places-days-36-40-41.md | 4 +- data/6-wiki/places/minor-places-days-42-44.md | 6 +-- data/6-wiki/places/minor-places-days-53-56.md | 2 +- .../riversmeet-menagerie-and-old-mage-school.md | 2 +- data/6-wiki/sources.md | 12 ++--- data/6-wiki/timeline.md | 14 +++--- 132 files changed, 473 insertions(+), 424 deletions(-)Show diff
diff --git a/data/2-pages/112.txt b/data/2-pages/112.txt index 28b0a11..f5b0091 100644 --- a/data/2-pages/112.txt +++ b/data/2-pages/112.txt @@ -16,8 +16,8 @@ think the dragons are gods. Rebels killed one of the young ones - she killed 1,0 Hillfolk village between [uncertain: Prortibhe] & Stone rampart. Earthwise. one I know. -Decide to travel to Hearthwall - Rift block. -Statue to Lan (Earth god to love, home & family) outside Hearthwall - teleport there. on target. +Decide to travel to Hartwall - Rift block. +Statue to Lan (Earth god to love, home & family) outside Hartwall - teleport there. on target. Statue of Lan is very similar in style to the Statue of Serva. 2 guards - human & half elf - city is fine - Lady Hartwall still injured. diff --git a/data/2-pages/114.txt b/data/2-pages/114.txt index bf553d1..bc4b42b 100644 --- a/data/2-pages/114.txt +++ b/data/2-pages/114.txt @@ -38,7 +38,7 @@ Lot 16 Brass city coin 160g Tobaxi - shaved head pink mohawk Art: Lot 17 talon of soot 50g remote bid. Lot 18 painting - lord Bleakstorm refuses demands -female being relieved in caroline Harthwall(?) infant & a blue cow +female being relieved in caroline Hartwall(?) infant & a blue cow male recognize? - Iceborg. Jayseel horns image of someone lowering a rope down a hole 35g for too much jewellery < human male diff --git a/data/2-pages/115.txt b/data/2-pages/115.txt index 9b4e3ee..8ed7548 100644 --- a/data/2-pages/115.txt +++ b/data/2-pages/115.txt @@ -25,7 +25,7 @@ Lot 33 Chariot excellence defeated in "battle of the unending seas" 4 people bidding 2 Ravens/jewellery men/emissary Bidding war: Jewelled men on short paths Dally who walks -in the room - Harthwall partner +in the room - Hartwall partner Lady Thorpe 11,900g, [uncertain: we got] 14,000g - already levelling it up onto a wagon? Many guards outside. diff --git a/data/2-pages/117.txt b/data/2-pages/117.txt index abd75cb..2bb706c 100644 --- a/data/2-pages/117.txt +++ b/data/2-pages/117.txt @@ -34,7 +34,7 @@ to do this. - Stone room, chained up, looks like a dungeon Dull image, no light, injured, malnourished, no fleshcrafting 1 door (cell door), grey mountain stone (not seaward/Runeyend) -same type of stone as the Harthwall Castle, Door looks +same type of stone as the Hartwall Castle, Door looks made of wood, iron bound reinforced with an iron grate at the top. Dungeon in Ca looks similar to this castle. diff --git a/data/2-pages/123.txt b/data/2-pages/123.txt index 5fa5f3f..c355097 100644 --- a/data/2-pages/123.txt +++ b/data/2-pages/123.txt @@ -28,7 +28,7 @@ at the sky - never usually leaves the house. - Gnoll - half elf woman (sister of the Twin Justicar guards we met on the way to seaward) -- Harthwall - rescued +- Hartwall - rescued Head Back to Goldenswell with the Captain via the side roads. diff --git a/data/2-pages/134.txt b/data/2-pages/134.txt index 62d6787..c709b1c 100644 --- a/data/2-pages/134.txt +++ b/data/2-pages/134.txt @@ -7,12 +7,12 @@ Big flash - Rubyeye appears. - Valenth still repairing. - Valenth & Ruby eye have been convalescing. asks about the crystal shell - told him we off it -at Harthwall. +at Hartwall. Doesn't know about Envy. lots of giants rampaging at his clan's settlement. -Asks about Lady Envy ??? & lady Harthwall. +Asks about Lady Envy ??? & lady Hartwall. Made some enemies but the dome is proof of his efforts. Wants to retrieve the shell of [uncertain: Tremoon]. doesn't want diff --git a/data/2-pages/136.txt b/data/2-pages/136.txt index 9bfa4b6..25fc2a9 100644 --- a/data/2-pages/136.txt +++ b/data/2-pages/136.txt @@ -18,7 +18,7 @@ Browning - Gideone chair. Gazzy plugged in old man. about their presence. Pop another ball in the front. -- board room in grand towers. Ruby eye, Harthwall all 5 +- board room in grand towers. Ruby eye, Hartwall all 5 except browning this vision?) trinkets in front of him Scorpion Snowlee diff --git a/data/2-pages/137.txt b/data/2-pages/137.txt index c9a78e1..085ba21 100644 --- a/data/2-pages/137.txt +++ b/data/2-pages/137.txt @@ -5,7 +5,7 @@ Transcription: Now orb - save person. Are elementals flying around. Completed towers. at a panel fighting happening. -touching the panel. Harthwall asks if nearly ready +touching the panel. Hartwall asks if nearly ready to kill them off. Browning says ready - he turns into a dragon & he then activates the device & she disappears he says diff --git a/data/2-pages/138.txt b/data/2-pages/138.txt index 4a83e4e..15680e6 100644 --- a/data/2-pages/138.txt +++ b/data/2-pages/138.txt @@ -5,22 +5,22 @@ Transcription: hear a dragon - Speaks draconic - I have come for payment Ruby eye says we need to go -Suddenly sound of battle, sounds of Goliath fighting Harthwall's +Suddenly sound of battle, sounds of Goliath fighting Hartwall's silver dragon on top of a building saying she's come for payment Envy will have her due. -Dragon looks similar to original Harthwall +Dragon looks similar to original Hartwall except she looks more mean & grimaced. has a green tinge to her scales. All of the goliaths seem to have maces made from Seaward stone. -Rubyeye wants to leave thinks Harthwall hates +Rubyeye wants to leave thinks Hartwall hates him -Start to enter the fight. try to get Harthwall's attention. -Harthwall calls out Ruby eye & tells him to +Start to enter the fight. try to get Hartwall's attention. +Hartwall calls out Ruby eye & tells him to come & remove the curse he put on her! 17:00 Ruby eye casts imprisonment on her - shouts "Burial" @@ -39,4 +39,4 @@ Red skinned tiefling via morgana's Moon beam Wrath Made a pact with Ruby eye to help kill Black Dragon -& his fault Harthwall is out here +& his fault Hartwall is out here diff --git a/data/2-pages/139.txt b/data/2-pages/139.txt index 29eb0df..645af88 100644 --- a/data/2-pages/139.txt +++ b/data/2-pages/139.txt @@ -13,7 +13,7 @@ Promises us power in exchange for fighting our enemies. 9 of them in total - little demons of Darkness. Wrath, Pride, Envy. -- Wrath puts Harthwall in the ground (imprisonment) using a silver dragon +- Wrath puts Hartwall in the ground (imprisonment) using a silver dragon statue. Wizards worked with them to help make the dome to protect from them... diff --git a/data/2-pages/141.txt b/data/2-pages/141.txt index b59ac81..2e67b3e 100644 --- a/data/2-pages/141.txt +++ b/data/2-pages/141.txt @@ -10,7 +10,7 @@ get Ruby eye out & he shouts at Wrath & wrath gets back into his eye. Dirk - most Earthwise cities have had explosions - -Harthwall / Goldenswell areas. +Hartwall / Goldenswell areas. Grol finds Dirk & he sends a message back. 20:00 Rubyeye teleports us all to Dirk. @@ -42,5 +42,5 @@ Otasha didn't want the barrier as getting a lot of business. Allowed to make her a bargain. Ennik & Browning did many of the deals. -Harthwall - Taken of the group - speak to Valenth about how she +Hartwall - Taken of the group - speak to Valenth about how she ended up with envy diff --git a/data/2-pages/142.txt b/data/2-pages/142.txt index ab3c13b..99b7c30 100644 --- a/data/2-pages/142.txt +++ b/data/2-pages/142.txt @@ -11,35 +11,35 @@ Browning had with Pride. Browning wanted the biggest tower & to be the greatest wizard of all time -teleport over to Harthwall, on target +teleport over to Hartwall, on target by statue of her. go to the castle gates. -Sheriff Fathrabit takes us to Harthwall & says +Sheriff Fathrabit takes us to Hartwall & says the other Nobles arrived... bring out wrath. it isn't his normal thing. definitely his sisters work, says there you go give it a few days and she'll be fine - lying. Wants a favour - to tell Envy that he did it. -Harthwall wants to transform so leaves the chamber +Hartwall wants to transform so leaves the chamber into the courtyard & transforms. -Harthwall is slightly bigger than Peridot Queen. +Hartwall is slightly bigger than Peridot Queen. Seaward no many knowns. Nobody stated the racist automatons had exploded. -Harthwall's Raven exploded. several explosions across +Hartwall's Raven exploded. several explosions across the city Day 34 -get Breakfast in the grand Hall in Harthwall. +get Breakfast in the grand Hall in Hartwall. Lady Hartwall feels much better. Fighting has been pushed back to stone rampart Earthwise. Lots of mutations large explosion seen in the area by the retreating troops. -Harthwall will defend the pylon we go & get the +Hartwall will defend the pylon we go & get the betrayer. [margin note: Da Pig Plaguers] diff --git a/data/2-pages/178.txt b/data/2-pages/178.txt index dd8d47d..1ec9af0 100644 --- a/data/2-pages/178.txt +++ b/data/2-pages/178.txt @@ -32,8 +32,8 @@ He often trusts his god which she appreciates. - Tips outside the barrier can be difficult but -Perodita heading to Heathwall +Perodita heading to Hartwall Bridge's sister is nasty trickery (Atana?) Valentenhide -we have 7 hours before she gets to Heathwall. +we have 7 hours before she gets to Hartwall. can go back in time but there is a cost Ruby eye is out of his sight diff --git a/data/2-pages/179.txt b/data/2-pages/179.txt index 5a798d9..a8c5eee 100644 --- a/data/2-pages/179.txt +++ b/data/2-pages/179.txt @@ -6,7 +6,7 @@ Trixus got a task he was not going to achieve. Send a message to The Basilisk about Perodita -heading to Heathwall - Didn't send us outside the +heading to Hartwall - Didn't send us outside the Barrier. Gardwal getting stronger inside the barrier at @@ -22,10 +22,10 @@ proposal to free Perodita - she seems to like that idea - requests us to pay homage to her if we agree to release Valentenhide then she will ensure she adheres to the god rule. -grants our idea & we appear at Heathwall +grants our idea & we appear at Hartwall & see Perodita vanish!! -Head over to Heathwall. - speak to Lady Parthabbit +Head over to Hartwall. - speak to Lady Parthabbit Lady Hartwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. diff --git a/data/2-pages/180.txt b/data/2-pages/180.txt index 2f401a2..df4e830 100644 --- a/data/2-pages/180.txt +++ b/data/2-pages/180.txt @@ -26,14 +26,14 @@ he was kidnapped as he used to sleep on top of his mother. The place he came from had lots of words, -the same as this place. (Harthall) +the same as this place. (Hartwall) - there was a door in one of the rooms with a goat man in - had gone when he left [unclear] - (Shriek?) -- Wroth - trapped Envy when he trapped Mama Harthall - as envy is in Mama Harthall's head like he is +- Wroth - trapped Envy when he trapped Mama Hartwall + as envy is in Mama Hartwall's head like he is in Rubyeye's Geldrin finds a disintegrated scroll in Jin Woo's room diff --git a/data/2-pages/181.txt b/data/2-pages/181.txt index a883979..1404eff 100644 --- a/data/2-pages/181.txt +++ b/data/2-pages/181.txt @@ -9,7 +9,7 @@ pieces one of the rooks looks like brakemen. Auction House Receipt is for a large picture frame with a massive moth -Pub is called "11th Duke of Harthall's wife" +Pub is called "11th Duke of Hartwall's wife" Moustached fat dude - on his arm was a really good looking Raven-haired half elf. diff --git a/data/2-pages/182.txt b/data/2-pages/182.txt index be66ac8..5a6f316 100644 --- a/data/2-pages/182.txt +++ b/data/2-pages/182.txt @@ -20,7 +20,7 @@ Invar's armor & collapse to the floor. Book written by Benu. & 5 books in total - Goldenswell, Snowsorrow, Dumnensend, -Freeport & Harthall +Freeport & Hartwall Ask book for location of papael'munsera - blank page. diff --git a/data/2-pages/185.txt b/data/2-pages/185.txt index 819aa12..74de8f3 100644 --- a/data/2-pages/185.txt +++ b/data/2-pages/185.txt @@ -8,7 +8,7 @@ defend near where we were fighting. lots of "Dragon born" defending Emeraire Hartmor araltar - thought Bridlator was going -to attack Harthall - she did before she disappeared. +to attack Hartwall - she did before she disappeared. Started to remember things - Remembers Icefang more & he cared for her - They both assaulted Perodita, he was starting to lose his mind. She had appear unexpected for diff --git a/data/2-pages/186.txt b/data/2-pages/186.txt index c4e81ef..f3670c4 100644 --- a/data/2-pages/186.txt +++ b/data/2-pages/186.txt @@ -3,11 +3,11 @@ Source: data/1-source/IMG_9853.jpg Transcription: Goldenswell - Earl need to be fair & ok -8ish weeks ago pulled his armies & left Harthall +8ish weeks ago pulled his armies & left Hartwall in the lurch - Claymeadows - The believers are killed her niece -- lovely Brooching - person Harthall would like to see +- lovely Brooching - person Hartwall would like to see replace the Earl of Goldenswell. Harthden demolished by the giants. situation difficult to rally Threepaws to anything diff --git a/data/2-pages/187.txt b/data/2-pages/187.txt index 13c936e..85ff79e 100644 --- a/data/2-pages/187.txt +++ b/data/2-pages/187.txt @@ -20,7 +20,7 @@ to tell Benu to meet us at the tower in Ashkhellion. Geldrin asks for magical scrolls & got them Just Before the teleportation circle completes. Go to Ashkhellion -Appear higher up in the tower & Harthall transforms to +Appear higher up in the tower & Hartwall transforms to a dragon to catch us. go to the prison room. there is a dwarven man with the barrier opener around Hephestos prison. diff --git a/data/2-pages/188.txt b/data/2-pages/188.txt index e7f9c33..b64c5bb 100644 --- a/data/2-pages/188.txt +++ b/data/2-pages/188.txt @@ -39,4 +39,4 @@ what do we seek. we seek justice. Benu disappears. he seek atonement for his crimes. justice. Trixus is looking but ok. Attabre angry with Benu. Goliaths were due to get a protector like Trixus. -Tell Harthall about The ancient +Tell Hartwall about The ancient diff --git a/data/2-pages/189.txt b/data/2-pages/189.txt index b419007..3b6dc1d 100644 --- a/data/2-pages/189.txt +++ b/data/2-pages/189.txt @@ -14,7 +14,7 @@ Trixus doesn't like the barrier - Doesn't think the elves should have been able to remove their pride. Riversmeet - speak to Lady Igraine -Take Harthall to meet Anastasia (Dirk & Me & Morgana) +Take Hartwall to meet Anastasia (Dirk & Me & Morgana) Take Trixus to see Emi (Invar & Geldrin) split party... Emi diff --git a/data/2-pages/190.txt b/data/2-pages/190.txt index a4d00ee..11c3936 100644 --- a/data/2-pages/190.txt +++ b/data/2-pages/190.txt @@ -20,7 +20,7 @@ Send Anastasia's bird to Cardonald to get her to come to us for the teleport circle to Riversmeet. Cardonald appears. - Still not found Rubyeye & can't find Errol either - not on the same plane? -Cardonald says Harthall means alot to her - which one? +Cardonald says Hartwall means alot to her - which one? Icefang - Things wouldn't be as good as they are without him. diff --git a/data/2-pages/191.txt b/data/2-pages/191.txt index 192cf19..3fdd93f 100644 --- a/data/2-pages/191.txt +++ b/data/2-pages/191.txt @@ -6,7 +6,7 @@ Cardonald has a familiar give her a report which may aid for the Howling Tombs. - group of adventurers is tinkering around & -have found Harthall's old lab & a key which may +have found Hartwall's old lab & a key which may help gain access to the tombs. Her familiar is going with them so will report if anything else. diff --git a/data/2-pages/193.txt b/data/2-pages/193.txt index 589b805..ea9d067 100644 --- a/data/2-pages/193.txt +++ b/data/2-pages/193.txt @@ -11,7 +11,7 @@ Arreanae - Mum. Gremlin type creature (Janitor) takes us to the head teacher. Pictures: - pale skinned man with white hair holding a sceptre, - elven/human (Tortish Harthall) (blue crystal) + elven/human (Tortish Hartwall) (blue crystal) - elderly man - Geldrin saw in a bed in grand towers founders of the college (Humerous Torn) diff --git a/data/2-pages/195.txt b/data/2-pages/195.txt index 22a8219..f4bee95 100644 --- a/data/2-pages/195.txt +++ b/data/2-pages/195.txt @@ -17,7 +17,7 @@ hall & pull out a book. Dragon skull (Mr Moreley) covering the study hall. Geldrin speaks to the Dragon - a gold dragon - Geldrin shows him the ancient dragon scroll & Mr Moreley is confused as it's something still being worked on - will consult the -Gold Dragon Council as thinks Harthall is keeping things +Gold Dragon Council as thinks Hartwall is keeping things from them. Rubyeye & Cardonald eavesdropping. Want to ask Geldrin something. Rubyeye goes to speak to him. Final project to remove his eye. Asks Geldrin to join them. diff --git a/data/2-pages/196.txt b/data/2-pages/196.txt index 5210f7d..2932250 100644 --- a/data/2-pages/196.txt +++ b/data/2-pages/196.txt @@ -24,7 +24,7 @@ Hall-ork shows me to the cloakroom (Grisnak). Orcs are being re-located as part of the peace Gnolls too: anybody who is uncivilised. No record of me in the list - my race doesn't exist yet. -Say my name is Evalina Harthall. Robe doesn't +Say my name is Evalina Hartwall. Robe doesn't fit as made for human. Request a new robe. Miana (Evalina) - air - extra embroidery, [unclear] & flag. diff --git a/data/2-pages/197.txt b/data/2-pages/197.txt index 140e284..582de92 100644 --- a/data/2-pages/197.txt +++ b/data/2-pages/197.txt @@ -17,8 +17,8 @@ Teacher is an elf - bright red hair - Mr Cardonald. Calls me aside. Is it true I'm marrying Argethum? But still seeing -Harthall's childhood sweetheart. Not good if she's seeing -the prince behind Harthall's back. Says I have an +Hartwall's childhood sweetheart. Not good if she's seeing +the prince behind Hartwall's back. Says I have an interesting form & he wouldn't recognise me if it wasn't for his Truesight (sees me as a dragon??). Says he's concerned for me as friend of his daughter. Worried about breaking diff --git a/data/2-pages/205.txt b/data/2-pages/205.txt index 6c7be4c..c87d2f8 100644 --- a/data/2-pages/205.txt +++ b/data/2-pages/205.txt @@ -27,7 +27,7 @@ Use broom to try to get to kitchen - darkness is worse. Door disappears. - 2 black holes & ring of black around them. Try broom again on the floor - seems to come out in a cathedral & the door is in the ceiling - Morgana tries -to detect Dirk's dad & feels like we are in Harthall. +to detect Dirk's dad & feels like we are in Hartwall. Strange wood & vacuum feel - the holes have now gone?? Morgana tries to leave note saying we may have left Valententhides home. Sees her & yelps - asks if she is the diff --git a/data/2-pages/221.txt b/data/2-pages/221.txt index b34af4c..68a9f11 100644 --- a/data/2-pages/221.txt +++ b/data/2-pages/221.txt @@ -28,8 +28,8 @@ instantly runs off. Chase him. Found him at the races probably trying to get a new identity. Have some leads: -Harthall artifact was put in one of the prisons. -Harthall meant to be looking after mind effects, maybe +Hartwall artifact was put in one of the prisons. +Hartwall meant to be looking after mind effects, maybe stopped her from remembering. Somewhere near Snowscreen. No team currently checking it out. Some people near Pinesprings but some adventurers killed them all. diff --git a/data/2-pages/223.txt b/data/2-pages/223.txt index c5b9628..864a161 100644 --- a/data/2-pages/223.txt +++ b/data/2-pages/223.txt @@ -19,7 +19,7 @@ us use her pathways - wants the artifact & will come at the cost of some identities & some eyes & some pride. Shut her off. -Decide to go to Harthall's lab after resting & eating +Decide to go to Hartwall's lab after resting & eating chicken. Day 47 diff --git a/data/2-pages/225.txt b/data/2-pages/225.txt index 611358c..422ac88 100644 --- a/data/2-pages/225.txt +++ b/data/2-pages/225.txt @@ -14,7 +14,7 @@ crystallised jade dust. Turning the silver into jade. Geldrin cleans both statues - Geldrin gets lost looking at the statue. -Ornate door - long throne room. One throne Harthall carved, +Ornate door - long throne room. One throne Hartwall carved, crudely decorated with skulls. Dead elf & 6 skeletons. Pictures - copper mines / saintshrine / snowy mountain tops / lots of people (portraits), silver hair / sphynx (Garadwal). @@ -29,7 +29,7 @@ Lots of people in & out. I've been in & out lots & prefers my other look wearing a dress. Last time Avalina left - the next person to come in was Mr Boorning a day later - left with a key. -Harthall had 2 daughters - won't tell us their names +Hartwall had 2 daughters - won't tell us their names due to privacy as they are babies. Don't seem to be able to trick it. Strange noise - door disintegrates into a pile of dust diff --git a/data/2-pages/229.txt b/data/2-pages/229.txt index f7cac2a..63f6f15 100644 --- a/data/2-pages/229.txt +++ b/data/2-pages/229.txt @@ -12,4 +12,4 @@ Next room: coral and sea shells. Depicts temple on a shore line (Baylen/Baylain Next room: light airy stone. Town with houses on stilts. Door says, "Not time for flying lessons." Not time for me never, not any more. Invar breaks the door. Nothing in it. Pictures all down the walls. Circle down the ceiling, copper sunrise, and ceiling looks like it should open. Baby goes back into the other room and leaves with the memory orb. It doesn't disappear. -Pictures in the room: Avalina, Harthall, and some others. Baby puts memories on the wall. "No, maybe it time." Huge black dragon, horn of flies buzzing around it, in a desert near a large tower, turns into human, ornate wearing suit. Drow/green dragon attacks black dragon, winning. Drow pulls out a jar. Beautiful elf propelled into sky crashes into Barrier. +Pictures in the room: Avalina, Hartwall, and some others. Baby puts memories on the wall. "No, maybe it time." Huge black dragon, horn of flies buzzing around it, in a desert near a large tower, turns into human, ornate wearing suit. Drow/green dragon attacks black dragon, winning. Drow pulls out a jar. Beautiful elf propelled into sky crashes into Barrier. diff --git a/data/2-pages/230.txt b/data/2-pages/230.txt index 869ca63..83301cb 100644 --- a/data/2-pages/230.txt +++ b/data/2-pages/230.txt @@ -6,7 +6,7 @@ Pushes through the Barrier. Woman says not any more, "that's your form now." He In a room, Laylistra. -Entrance chamber to a school. We are all there. I have a robe, Harthall crests. +Entrance chamber to a school. We are all there. I have a robe, Hartwall crests. Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Eliana!" and then pushes her into the wall. diff --git a/data/2-pages/237.txt b/data/2-pages/237.txt index 59e43aa..bf6c564 100644 --- a/data/2-pages/237.txt +++ b/data/2-pages/237.txt @@ -14,7 +14,7 @@ Dark door leads to an ancient dwarven hold (not a settlement). Open the door: bi Geldrin promises to come let him out when he finds out how to power the dome without all the elementals. Cell mate chosen to turn off the gusts and can turn them back on when he pleases. -Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Harthall lab for Enis. Needs a door handle like one of the Harthall handles. Archway, the one at Harthall's lab. +Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Hartwall lab for Enis. Needs a door handle like one of the Hartwall handles. Archway, the one at Hartwall's lab. Goat: Dorion. Bull: Tim. Lion: Geoffrey. diff --git a/data/2-pages/238.txt b/data/2-pages/238.txt index 3dd9b63..6cd3ea6 100644 --- a/data/2-pages/238.txt +++ b/data/2-pages/238.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9906.jpg Transcription: Floor is mosaic of seaward stone, purple crystal, etc. -Archway, same as Harthall lab one. Prison symbol says "home." +Archway, same as Hartwall lab one. Prison symbol says "home." Table is made out of seaward stone. Veining seems to be a map but don't recognise the area. Hat stand. Cloak on it. Turns me invisible when I put it on. @@ -12,7 +12,7 @@ Bookshelf full of books about the moon and one nursery rhyme book about Valenten Geldrin feels urge to put the book on the table. Blue veins morph to look like the moon. -Nursery rhyme book shows a castle, likely Harthall escape style. +Nursery rhyme book shows a castle, likely Hartwall escape style. Coat stand has some invisible eyes on it. Cloak, when invisible, has moving starscapes on it, but not to the person wearing it. diff --git a/data/2-pages/239.txt b/data/2-pages/239.txt index 7116a26..9b39d8e 100644 --- a/data/2-pages/239.txt +++ b/data/2-pages/239.txt @@ -14,4 +14,4 @@ Archway rune glows: "glittering" rune. Men step through the portal. Human-ish, l Only one portal activation in the last 1,000 years: the cat. -Thought all the scrolls had gone with them. Disappeared because everything was crazy. Pacts were broken: Harthall and Icefang? Decided to take charge and move the city. +Thought all the scrolls had gone with them. Disappeared because everything was crazy. Pacts were broken: Hartwall and Icefang? Decided to take charge and move the city. diff --git a/data/2-pages/245.txt b/data/2-pages/245.txt index c1fe007..0897f3a 100644 --- a/data/2-pages/245.txt +++ b/data/2-pages/245.txt @@ -2,7 +2,7 @@ Page: 245 Source: data/1-source/IMG_9914.jpg Transcription: -Right blade to Harthall's lab. +Right blade to Hartwall's lab. Give the ice elemental ball to the fire elemental in the fireplace. Dispel magic on the rift in the fireplace and close the portal to the fire elemental. @@ -10,7 +10,7 @@ Day 48 Bynx grows up again. Want to go to Gardoil and Dirk's dad. Send Errol off with a message to Dirk's dad. -Start to talk about everything, saying I'm a Harthall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. +Start to talk about everything, saying I'm a Hartwall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. Deal with a god. Wipe me from memories like Enis's wife, Hannah. Errol returns. Things not great, recovering from a battle. Gardoil not with them. She had to go do something. Need reinforcements from the capital. diff --git a/data/2-pages/256.txt b/data/2-pages/256.txt index c73860a..8b6700d 100644 --- a/data/2-pages/256.txt +++ b/data/2-pages/256.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9928.jpg Transcription: Questions: - What will happen if Valententhide is reformed? -- Why does everyone think Eliana is a Harthall? +- Why does everyone think Eliana is a Hartwall? Morgana gets a voice saying the vessel is theirs. @@ -20,7 +20,7 @@ Room gets darker when Invar says original. Darkness closes in and stars start to See a shadowy figure on the far wall. Open the dome and let her out. -"Why does everyone think I'm a Harthall?" Because you are. +"Why does everyone think I'm a Hartwall?" Because you are. Stoven and Stuart and Simon come into the prison shouting about their stuff being messed up. diff --git a/data/2-pages/257.txt b/data/2-pages/257.txt index b42195e..d8d4ff4 100644 --- a/data/2-pages/257.txt +++ b/data/2-pages/257.txt @@ -14,7 +14,7 @@ Dothral wants to know more about his dad. Thinks it is Aneurascarle, making him Memory: dragons talking about a beehive being poked and why the dome was created. -Query fully regain my memories of being a Harthall. Lost retrieving will not be easy; they align with the general memories as the pact with the god of the lost. Dothral sees snippets of my true form and need to do something with the J. +Query fully regain my memories of being a Hartwall. Lost retrieving will not be easy; they align with the general memories as the pact with the god of the lost. Dothral sees snippets of my true form and need to do something with the J. Price was paid by dragonkind. It was not taken very well and those who remain have the power to. diff --git a/data/2-pages/277.txt b/data/2-pages/277.txt index 4d7899e..2f05dd3 100644 --- a/data/2-pages/277.txt +++ b/data/2-pages/277.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9950.jpg Transcription: Valententhide and Garadwal were important; replacements think it was me who stopped them from tricking the statues. -"I thought my daughters would like it? Mama Harthall??" +"I thought my daughters would like it? Mama Hartwall??" The table was a trap. diff --git a/data/2-pages/278.txt b/data/2-pages/278.txt index 2a975a9..c6f3ddc 100644 --- a/data/2-pages/278.txt +++ b/data/2-pages/278.txt @@ -18,7 +18,7 @@ We should bring down the dome, but what will become of the bad elementals? Garadwal asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. -Harthall was part of his downfall and Argentum died defending his people. +Hartwall was part of his downfall and Argentum died defending his people. Father has said it is our choice to make. All the wizards are being controlled and they and the five wizards can't affect the power sources. diff --git a/data/2-pages/279.txt b/data/2-pages/279.txt index 8a17a07..fa3da97 100644 --- a/data/2-pages/279.txt +++ b/data/2-pages/279.txt @@ -14,7 +14,7 @@ Scumbledunk betrays us and teleports out after hearing our discussion. Try to decide what to do now. -Go to Riversmeet with Bynx. The others are going to Emercurine to help Harthall. +Go to Riversmeet with Bynx. The others are going to Emercurine to help Hartwall. Go to Headmaster's office. @@ -28,4 +28,4 @@ War going on with the dragons back in Humorous. Gnome remembers Emeraldous causi Humorous is approximately 300 years old. Patrons. -He would speak to Fairlight Harthall. Windows can't find him. +He would speak to Fairlight Hartwall. Windows can't find him. diff --git a/data/2-pages/281.txt b/data/2-pages/281.txt index d097774..c59cdff 100644 --- a/data/2-pages/281.txt +++ b/data/2-pages/281.txt @@ -16,7 +16,7 @@ Options: - Jeroll's ode for Geldrin and charged shield crystal. - Help with the bad elementals to bring the dome down. - Supply something to bolster the dome. -- Help release Harthall. Kill Wrath? +- Help release Hartwall. Kill Wrath? - Permanent deal to not attack each other. - Getting to the Brass City. diff --git a/data/2-pages/286.txt b/data/2-pages/286.txt index 917080e..ca976d3 100644 --- a/data/2-pages/286.txt +++ b/data/2-pages/286.txt @@ -10,7 +10,7 @@ Earth elemental on the other side of the door. He hasn't had anyone from the pri On his table: coal, gold dragon, jagged granite, shield crystal. Are they the next people? Are we the next people? -Gold dragon is actually silver and exactly like Mama Harthall. +Gold dragon is actually silver and exactly like Mama Hartwall. Shield crystal: piece of Tresmon. diff --git a/data/2-pages/287.txt b/data/2-pages/287.txt index e05192f..33dbd12 100644 --- a/data/2-pages/287.txt +++ b/data/2-pages/287.txt @@ -20,4 +20,4 @@ Altar has gold statues under it, 10 of them, all different races and missing a d Invar uses the torches around to light the candles. Geldrin places the statues of the wizard races by the candles. -Vision: large round table, seven people, five wizards, Hannah and Icefang. Mama Harthall angry, holding the blue ball, saying, "This is enough. You can't continue this any more." +Vision: large round table, seven people, five wizards, Hannah and Icefang. Mama Hartwall angry, holding the blue ball, saying, "This is enough. You can't continue this any more." diff --git a/data/2-pages/309.txt b/data/2-pages/309.txt index b0e2d03..30c11e8 100644 --- a/data/2-pages/309.txt +++ b/data/2-pages/309.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9982.jpg Transcription: All started to become wary of the princes. May have made the wrong deals to keep the princes in check. -Leader's dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. +Leadus' dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. Connection to my father has allowed to view pieces of my past, so knows most of it. Icefang gave us all vision. diff --git a/data/2-pages/90.txt b/data/2-pages/90.txt index b10b8ba..09527e1 100644 --- a/data/2-pages/90.txt +++ b/data/2-pages/90.txt @@ -23,7 +23,7 @@ Geldrin furious! Freeport State - Duchess Lauleriere Dunensend State - Duke Humbersinthesand -Hearthwall State - Duchess Hearthwall. +Hartwall State - Duchess Hartwall. Goldenswell State - Duke Norman Goldenswell Snowsorrow State - Duke Torrain Freefellow diff --git a/data/3-days/day-26.md b/data/3-days/day-26.md index 2b40baf..d039963 100644 --- a/data/3-days/day-26.md +++ b/data/3-days/day-26.md @@ -293,7 +293,7 @@ Geldrin furious! Freeport State - Duchess Lauleriere Dunensend State - Duke Humbersinthesand -Hearthwall State - Duchess Hearthwall. +Hartwall State - Duchess Hartwall. Goldenswell State - Duke Norman Goldenswell Snowsorrow State - Duke Torrain Freefellow diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md index 3d76858..50cb28a 100644 --- a/data/3-days/day-32.md +++ b/data/3-days/day-32.md @@ -44,8 +44,8 @@ notes: Hillfolk village between [uncertain: Prortibhe] & Stone rampart. Earthwise. one I know. -Decide to travel to Hearthwall - Rift block. -Statue to Lan (Earth god to love, home & family) outside Hearthwall - teleport there. on target. +Decide to travel to Hartwall - Rift block. +Statue to Lan (Earth god to love, home & family) outside Hartwall - teleport there. on target. Statue of Lan is very similar in style to the Statue of Serva. 2 guards - human & half elf - city is fine - Lady Hartwall still injured. @@ -128,7 +128,7 @@ Lot 16 Brass city coin 160g Tobaxi - shaved head pink mohawk Art: Lot 17 talon of soot 50g remote bid. Lot 18 painting - lord Bleakstorm refuses demands -female being relieved in caroline Harthwall(?) infant & a blue cow +female being relieved in caroline Hartwall(?) infant & a blue cow male recognize? - Iceborg. Jayseel horns image of someone lowering a rope down a hole 35g for too much jewellery < human male @@ -161,7 +161,7 @@ Lot 33 Chariot excellence defeated in "battle of the unending seas" 4 people bidding 2 Ravens/jewellery men/emissary Bidding war: Jewelled men on short paths Dally who walks -in the room - Harthwall partner +in the room - Hartwall partner Lady Thorpe 11,900g, [uncertain: we got] 14,000g - already levelling it up onto a wagon? Many guards outside. @@ -261,7 +261,7 @@ to do this. - Stone room, chained up, looks like a dungeon Dull image, no light, injured, malnourished, no fleshcrafting 1 door (cell door), grey mountain stone (not seaward/Runeyend) -same type of stone as the Harthwall Castle, Door looks +same type of stone as the Hartwall Castle, Door looks made of wood, iron bound reinforced with an iron grate at the top. Dungeon in Ca looks similar to this castle. @@ -511,7 +511,7 @@ at the sky - never usually leaves the house. - Gnoll - half elf woman (sister of the Twin Justicar guards we met on the way to seaward) -- Harthwall - rescued +- Hartwall - rescued Head Back to Goldenswell with the Captain via the side roads. diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md index 9d4e8a3..359f87d 100644 --- a/data/3-days/day-36.md +++ b/data/3-days/day-36.md @@ -235,12 +235,12 @@ Big flash - Rubyeye appears. - Valenth still repairing. - Valenth & Ruby eye have been convalescing. asks about the crystal shell - told him we off it -at Harthwall. +at Hartwall. Doesn't know about Envy. lots of giants rampaging at his clan's settlement. -Asks about Lady Envy ??? & lady Harthwall. +Asks about Lady Envy ??? & lady Hartwall. Made some enemies but the dome is proof of his efforts. Wants to retrieve the shell of [uncertain: Tremoon]. doesn't want @@ -317,7 +317,7 @@ Browning - Gideone chair. Gazzy plugged in old man. about their presence. Pop another ball in the front. -- board room in grand towers. Ruby eye, Harthwall all 5 +- board room in grand towers. Ruby eye, Hartwall all 5 except browning this vision?) trinkets in front of him Scorpion Snowlee @@ -344,7 +344,7 @@ is his boss... Rubyeye knows what is good for him. Now orb - save person. Are elementals flying around. Completed towers. at a panel fighting happening. -touching the panel. Harthwall asks if nearly ready +touching the panel. Hartwall asks if nearly ready to kill them off. Browning says ready - he turns into a dragon & he then activates the device & she disappears he says @@ -379,22 +379,22 @@ Prayed for freedom from their oppressors (envy) & Bridget sent us. hear a dragon - Speaks draconic - I have come for payment Ruby eye says we need to go -Suddenly sound of battle, sounds of Goliath fighting Harthwall's +Suddenly sound of battle, sounds of Goliath fighting Hartwall's silver dragon on top of a building saying she's come for payment Envy will have her due. -Dragon looks similar to original Harthwall +Dragon looks similar to original Hartwall except she looks more mean & grimaced. has a green tinge to her scales. All of the goliaths seem to have maces made from Seaward stone. -Rubyeye wants to leave thinks Harthwall hates +Rubyeye wants to leave thinks Hartwall hates him -Start to enter the fight. try to get Harthwall's attention. -Harthwall calls out Ruby eye & tells him to +Start to enter the fight. try to get Hartwall's attention. +Hartwall calls out Ruby eye & tells him to come & remove the curse he put on her! 17:00 Ruby eye casts imprisonment on her - shouts "Burial" @@ -413,7 +413,7 @@ Red skinned tiefling via morgana's Moon beam Wrath Made a pact with Ruby eye to help kill Black Dragon -& his fault Harthwall is out here +& his fault Hartwall is out here ## Page 139 @@ -427,7 +427,7 @@ Promises us power in exchange for fighting our enemies. 9 of them in total - little demons of Darkness. Wrath, Pride, Envy. -- Wrath puts Harthwall in the ground (imprisonment) using a silver dragon +- Wrath puts Hartwall in the ground (imprisonment) using a silver dragon statue. Wizards worked with them to help make the dome to protect from them... @@ -497,7 +497,7 @@ get Ruby eye out & he shouts at Wrath & wrath gets back into his eye. Dirk - most Earthwise cities have had explosions - -Harthwall / Goldenswell areas. +Hartwall / Goldenswell areas. Grol finds Dirk & he sends a message back. 20:00 Rubyeye teleports us all to Dirk. @@ -529,7 +529,7 @@ Otasha didn't want the barrier as getting a lot of business. Allowed to make her a bargain. Ennik & Browning did many of the deals. -Harthwall - Taken of the group - speak to Valenth about how she +Hartwall - Taken of the group - speak to Valenth about how she ended up with envy ## Page 142 @@ -542,35 +542,35 @@ Browning had with Pride. Browning wanted the biggest tower & to be the greatest wizard of all time -teleport over to Harthwall, on target +teleport over to Hartwall, on target by statue of her. go to the castle gates. -Sheriff Fathrabit takes us to Harthwall & says +Sheriff Fathrabit takes us to Hartwall & says the other Nobles arrived... bring out wrath. it isn't his normal thing. definitely his sisters work, says there you go give it a few days and she'll be fine - lying. Wants a favour - to tell Envy that he did it. -Harthwall wants to transform so leaves the chamber +Hartwall wants to transform so leaves the chamber into the courtyard & transforms. -Harthwall is slightly bigger than Peridot Queen. +Hartwall is slightly bigger than Peridot Queen. Seaward no many knowns. Nobody stated the racist automatons had exploded. -Harthwall's Raven exploded. several explosions across +Hartwall's Raven exploded. several explosions across the city Day 34 -get Breakfast in the grand Hall in Harthwall. +get Breakfast in the grand Hall in Hartwall. Lady Hartwall feels much better. Fighting has been pushed back to stone rampart Earthwise. Lots of mutations large explosion seen in the area by the retreating troops. -Harthwall will defend the pylon we go & get the +Hartwall will defend the pylon we go & get the betrayer. [margin note: Da Pig Plaguers] diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index 37bd5fe..4d36c4e 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -583,9 +583,9 @@ He often trusts his god which she appreciates. - Tips outside the barrier can be difficult but -Perodita heading to Heathwall +Perodita heading to Hartwall Bridge's sister is nasty trickery (Atana?) Valentenhide -we have 7 hours before she gets to Heathwall. +we have 7 hours before she gets to Hartwall. can go back in time but there is a cost Ruby eye is out of his sight @@ -595,7 +595,7 @@ Trixus got a task he was not going to achieve. Send a message to The Basilisk about Perodita -heading to Heathwall - Didn't send us outside the +heading to Hartwall - Didn't send us outside the Barrier. Gardwal getting stronger inside the barrier at @@ -611,10 +611,10 @@ proposal to free Perodita - she seems to like that idea - requests us to pay homage to her if we agree to release Valentenhide then she will ensure she adheres to the god rule. -grants our idea & we appear at Heathwall +grants our idea & we appear at Hartwall & see Perodita vanish!! -Head over to Heathwall. - speak to Lady Parthabbit +Head over to Hartwall. - speak to Lady Parthabbit Lady Hartwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index efbb992..97e6c8f 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -65,14 +65,14 @@ he was kidnapped as he used to sleep on top of his mother. The place he came from had lots of words, -the same as this place. (Harthall) +the same as this place. (Hartwall) - there was a door in one of the rooms with a goat man in - had gone when he left [unclear] - (Shriek?) -- Wroth - trapped Envy when he trapped Mama Harthall - as envy is in Mama Harthall's head like he is +- Wroth - trapped Envy when he trapped Mama Hartwall + as envy is in Mama Hartwall's head like he is in Rubyeye's Geldrin finds a disintegrated scroll in Jin Woo's room @@ -87,7 +87,7 @@ pieces one of the rooks looks like brakemen. Auction House Receipt is for a large picture frame with a massive moth -Pub is called "11th Duke of Harthall's wife" +Pub is called "11th Duke of Hartwall's wife" Moustached fat dude - on his arm was a really good looking Raven-haired half elf. @@ -139,7 +139,7 @@ Invar's armor & collapse to the floor. Book written by Benu. & 5 books in total - Goldenswell, Snowsorrow, Dumnensend, -Freeport & Harthall +Freeport & Hartwall Ask book for location of papael'munsera - blank page. @@ -240,7 +240,7 @@ defend near where we were fighting. lots of "Dragon born" defending Emeraire Hartmor araltar - thought Bridlator was going -to attack Harthall - she did before she disappeared. +to attack Hartwall - she did before she disappeared. Started to remember things - Remembers Icefang more & he cared for her - They both assaulted Perodita, he was starting to lose his mind. She had appear unexpected for @@ -272,11 +272,11 @@ the guilt is Emi's Guilt. ## Page 186 Goldenswell - Earl need to be fair & ok -8ish weeks ago pulled his armies & left Harthall +8ish weeks ago pulled his armies & left Hartwall in the lurch - Claymeadows - The believers are killed her niece -- lovely Brooching - person Harthall would like to see +- lovely Brooching - person Hartwall would like to see replace the Earl of Goldenswell. Harthden demolished by the giants. situation difficult to rally Threepaws to anything @@ -324,7 +324,7 @@ to tell Benu to meet us at the tower in Ashkhellion. Geldrin asks for magical scrolls & got them Just Before the teleportation circle completes. Go to Ashkhellion -Appear higher up in the tower & Harthall transforms to +Appear higher up in the tower & Hartwall transforms to a dragon to catch us. go to the prison room. there is a dwarven man with the barrier opener around Hephestos prison. @@ -375,7 +375,7 @@ what do we seek. we seek justice. Benu disappears. he seek atonement for his crimes. justice. Trixus is looking but ok. Attabre angry with Benu. Goliaths were due to get a protector like Trixus. -Tell Harthall about The ancient +Tell Hartwall about The ancient ## Page 189 @@ -391,7 +391,7 @@ Trixus doesn't like the barrier - Doesn't think the elves should have been able to remove their pride. Riversmeet - speak to Lady Igraine -Take Harthall to meet Anastasia (Dirk & Me & Morgana) +Take Hartwall to meet Anastasia (Dirk & Me & Morgana) Take Trixus to see Emi (Invar & Geldrin) split party... Emi @@ -441,7 +441,7 @@ Send Anastasia's bird to Cardonald to get her to come to us for the teleport circle to Riversmeet. Cardonald appears. - Still not found Rubyeye & can't find Errol either - not on the same plane? -Cardonald says Harthall means alot to her - which one? +Cardonald says Hartwall means alot to her - which one? Icefang - Things wouldn't be as good as they are without him. diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md index adcee38..b9682f0 100644 --- a/data/3-days/day-44.md +++ b/data/3-days/day-44.md @@ -51,7 +51,7 @@ Cardonald has a familiar give her a report which may aid for the Howling Tombs. - group of adventurers is tinkering around & -have found Harthall's old lab & a key which may +have found Hartwall's old lab & a key which may help gain access to the tombs. Her familiar is going with them so will report if anything else. @@ -127,7 +127,7 @@ Arreanae - Mum. Gremlin type creature (Janitor) takes us to the head teacher. Pictures: - pale skinned man with white hair holding a sceptre, - elven/human (Tortish Harthall) (blue crystal) + elven/human (Tortish Hartwall) (blue crystal) - elderly man - Geldrin saw in a bed in grand towers founders of the college (Humerous Torn) @@ -215,7 +215,7 @@ hall & pull out a book. Dragon skull (Mr Moreley) covering the study hall. Geldrin speaks to the Dragon - a gold dragon - Geldrin shows him the ancient dragon scroll & Mr Moreley is confused as it's something still being worked on - will consult the -Gold Dragon Council as thinks Harthall is keeping things +Gold Dragon Council as thinks Hartwall is keeping things from them. Rubyeye & Cardonald eavesdropping. Want to ask Geldrin something. Rubyeye goes to speak to him. Final project to remove his eye. Asks Geldrin to join them. @@ -257,7 +257,7 @@ Hall-ork shows me to the cloakroom (Grisnak). Orcs are being re-located as part of the peace Gnolls too: anybody who is uncivilised. No record of me in the list - my race doesn't exist yet. -Say my name is Evalina Harthall. Robe doesn't +Say my name is Evalina Hartwall. Robe doesn't fit as made for human. Request a new robe. Miana (Evalina) - air - extra embroidery, [unclear] & flag. @@ -290,8 +290,8 @@ Teacher is an elf - bright red hair - Mr Cardonald. Calls me aside. Is it true I'm marrying Argethum? But still seeing -Harthall's childhood sweetheart. Not good if she's seeing -the prince behind Harthall's back. Says I have an +Hartwall's childhood sweetheart. Not good if she's seeing +the prince behind Hartwall's back. Says I have an interesting form & he wouldn't recognise me if it wasn't for his Truesight (sees me as a dragon??). Says he's concerned for me as friend of his daughter. Worried about breaking diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md index 49101c6..3fadabb 100644 --- a/data/3-days/day-46.md +++ b/data/3-days/day-46.md @@ -73,7 +73,7 @@ Use broom to try to get to kitchen - darkness is worse. Door disappears. - 2 black holes & ring of black around them. Try broom again on the floor - seems to come out in a cathedral & the door is in the ceiling - Morgana tries -to detect Dirk's dad & feels like we are in Harthall. +to detect Dirk's dad & feels like we are in Hartwall. Strange wood & vacuum feel - the holes have now gone?? Morgana tries to leave note saying we may have left Valententhides home. Sees her & yelps - asks if she is the @@ -695,8 +695,8 @@ instantly runs off. Chase him. Found him at the races probably trying to get a new identity. Have some leads: -Harthall artifact was put in one of the prisons. -Harthall meant to be looking after mind effects, maybe +Hartwall artifact was put in one of the prisons. +Hartwall meant to be looking after mind effects, maybe stopped her from remembering. Somewhere near Snowscreen. No team currently checking it out. Some people near Pinesprings but some adventurers killed them all. @@ -757,5 +757,5 @@ us use her pathways - wants the artifact & will come at the cost of some identities & some eyes & some pride. Shut her off. -Decide to go to Harthall's lab after resting & eating +Decide to go to Hartwall's lab after resting & eating chicken. diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index 1961240..3160b21 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -120,7 +120,7 @@ crystallised jade dust. Turning the silver into jade. Geldrin cleans both statues - Geldrin gets lost looking at the statue. -Ornate door - long throne room. One throne Harthall carved, +Ornate door - long throne room. One throne Hartwall carved, crudely decorated with skulls. Dead elf & 6 skeletons. Pictures - copper mines / saintshrine / snowy mountain tops / lots of people (portraits), silver hair / sphynx (Garadwal). @@ -135,7 +135,7 @@ Lots of people in & out. I've been in & out lots & prefers my other look wearing a dress. Last time Avalina left - the next person to come in was Mr Boorning a day later - left with a key. -Harthall had 2 daughters - won't tell us their names +Hartwall had 2 daughters - won't tell us their names due to privacy as they are babies. Don't seem to be able to trick it. Strange noise - door disintegrates into a pile of dust @@ -240,7 +240,7 @@ Next room: coral and sea shells. Depicts temple on a shore line (Baylen/Baylain Next room: light airy stone. Town with houses on stilts. Door says, "Not time for flying lessons." Not time for me never, not any more. Invar breaks the door. Nothing in it. Pictures all down the walls. Circle down the ceiling, copper sunrise, and ceiling looks like it should open. Baby goes back into the other room and leaves with the memory orb. It doesn't disappear. -Pictures in the room: Avalina, Harthall, and some others. Baby puts memories on the wall. "No, maybe it time." Huge black dragon, horn of flies buzzing around it, in a desert near a large tower, turns into human, ornate wearing suit. Drow/green dragon attacks black dragon, winning. Drow pulls out a jar. Beautiful elf propelled into sky crashes into Barrier. +Pictures in the room: Avalina, Hartwall, and some others. Baby puts memories on the wall. "No, maybe it time." Huge black dragon, horn of flies buzzing around it, in a desert near a large tower, turns into human, ornate wearing suit. Drow/green dragon attacks black dragon, winning. Drow pulls out a jar. Beautiful elf propelled into sky crashes into Barrier. ## Page 230 @@ -248,7 +248,7 @@ Pushes through the Barrier. Woman says not any more, "that's your form now." He In a room, Laylistra. -Entrance chamber to a school. We are all there. I have a robe, Harthall crests. +Entrance chamber to a school. We are all there. I have a robe, Hartwall crests. Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Eliana!" and then pushes her into the wall. @@ -386,7 +386,7 @@ Dark door leads to an ancient dwarven hold (not a settlement). Open the door: bi Geldrin promises to come let him out when he finds out how to power the dome without all the elementals. Cell mate chosen to turn off the gusts and can turn them back on when he pleases. -Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Harthall lab for Enis. Needs a door handle like one of the Harthall handles. Archway, the one at Harthall's lab. +Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Hartwall lab for Enis. Needs a door handle like one of the Hartwall handles. Archway, the one at Hartwall's lab. Goat: Dorion. Bull: Tim. Lion: Geoffrey. @@ -400,7 +400,7 @@ Go into the room. Walls carved with faces with different expressions, very intri Floor is mosaic of seaward stone, purple crystal, etc. -Archway, same as Harthall lab one. Prison symbol says "home." +Archway, same as Hartwall lab one. Prison symbol says "home." Table is made out of seaward stone. Veining seems to be a map but don't recognise the area. Hat stand. Cloak on it. Turns me invisible when I put it on. @@ -408,7 +408,7 @@ Bookshelf full of books about the moon and one nursery rhyme book about Valenten Geldrin feels urge to put the book on the table. Blue veins morph to look like the moon. -Nursery rhyme book shows a castle, likely Harthall escape style. +Nursery rhyme book shows a castle, likely Hartwall escape style. Coat stand has some invisible eyes on it. Cloak, when invisible, has moving starscapes on it, but not to the person wearing it. @@ -430,7 +430,7 @@ Archway rune glows: "glittering" rune. Men step through the portal. Human-ish, l Only one portal activation in the last 1,000 years: the cat. -Thought all the scrolls had gone with them. Disappeared because everything was crazy. Pacts were broken: Harthall and Icefang? Decided to take charge and move the city. +Thought all the scrolls had gone with them. Disappeared because everything was crazy. Pacts were broken: Hartwall and Icefang? Decided to take charge and move the city. ## Page 240 @@ -531,6 +531,6 @@ Open portal and as we attempt to go through, see Valententhide. Pass out. Three ## Page 245 -Right blade to Harthall's lab. +Right blade to Hartwall's lab. Give the ice elemental ball to the fire elemental in the fireplace. Dispel magic on the rift in the fireplace and close the portal to the fire elemental. diff --git a/data/3-days/day-48.md b/data/3-days/day-48.md index 4070ed5..c6fec32 100644 --- a/data/3-days/day-48.md +++ b/data/3-days/day-48.md @@ -40,7 +40,7 @@ Day 48 Bynx grows up again. Want to go to Gardoil and Dirk's dad. Send Errol off with a message to Dirk's dad. -Start to talk about everything, saying I'm a Harthall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. +Start to talk about everything, saying I'm a Hartwall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. Deal with a god. Wipe me from memories like Enis's wife, Hannah. Errol returns. Things not great, recovering from a battle. Gardoil not with them. She had to go do something. Need reinforcements from the capital. @@ -262,7 +262,7 @@ Elemental planes were highway, made a pact and created the world, but still too Questions: - What will happen if Valententhide is reformed? -- Why does everyone think Eliana is a Harthall? +- Why does everyone think Eliana is a Hartwall? Morgana gets a voice saying the vessel is theirs. @@ -278,7 +278,7 @@ Room gets darker when Invar says original. Darkness closes in and stars start to See a shadowy figure on the far wall. Open the dome and let her out. -"Why does everyone think I'm a Harthall?" Because you are. +"Why does everyone think I'm a Hartwall?" Because you are. Stoven and Stuart and Simon come into the prison shouting about their stuff being messed up. diff --git a/data/3-days/day-52.md b/data/3-days/day-52.md index 20542c2..06e214d 100644 --- a/data/3-days/day-52.md +++ b/data/3-days/day-52.md @@ -30,7 +30,7 @@ Dothral wants to know more about his dad. Thinks it is Aneurascarle, making him Memory: dragons talking about a beehive being poked and why the dome was created. -Query fully regain my memories of being a Harthall. Lost retrieving will not be easy; they align with the general memories as the pact with the god of the lost. Dothral sees snippets of my true form and need to do something with the J. +Query fully regain my memories of being a Hartwall. Lost retrieving will not be easy; they align with the general memories as the pact with the god of the lost. Dothral sees snippets of my true form and need to do something with the J. Price was paid by dragonkind. It was not taken very well and those who remain have the power to. diff --git a/data/3-days/day-56.md b/data/3-days/day-56.md index f9f15e1..2f04186 100644 --- a/data/3-days/day-56.md +++ b/data/3-days/day-56.md @@ -122,7 +122,7 @@ Device is a remote to activate a shield. No way to reverse it. Shouldn't be far Valententhide and Garadwal were important; replacements think it was me who stopped them from tricking the statues. -"I thought my daughters would like it? Mama Harthall??" +"I thought my daughters would like it? Mama Hartwall??" The table was a trap. @@ -168,7 +168,7 @@ We should bring down the dome, but what will become of the bad elementals? Garadwal asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. -Harthall was part of his downfall and Argentum died defending his people. +Hartwall was part of his downfall and Argentum died defending his people. Father has said it is our choice to make. All the wizards are being controlled and they and the five wizards can't affect the power sources. @@ -190,7 +190,7 @@ Scumbledunk betrays us and teleports out after hearing our discussion. Try to decide what to do now. -Go to Riversmeet with Bynx. The others are going to Emercurine to help Harthall. +Go to Riversmeet with Bynx. The others are going to Emercurine to help Hartwall. Go to Headmaster's office. @@ -204,7 +204,7 @@ War going on with the dragons back in Humorous. Gnome remembers Emeraldous causi Humorous is approximately 300 years old. Patrons. -He would speak to Fairlight Harthall. Windows can't find him. +He would speak to Fairlight Hartwall. Windows can't find him. ## Page 280 @@ -249,7 +249,7 @@ Options: - Jeroll's ode for Geldrin and charged shield crystal. - Help with the bad elementals to bring the dome down. - Supply something to bolster the dome. -- Help release Harthall. Kill Wrath? +- Help release Hartwall. Kill Wrath? - Permanent deal to not attack each other. - Getting to the Brass City. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index 2d4b146..c193a8a 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -207,7 +207,7 @@ Earth elemental on the other side of the door. He hasn't had anyone from the pri On his table: coal, gold dragon, jagged granite, shield crystal. Are they the next people? Are we the next people? -Gold dragon is actually silver and exactly like Mama Harthall. +Gold dragon is actually silver and exactly like Mama Hartwall. Shield crystal: piece of Tresmon. @@ -245,7 +245,7 @@ Altar has gold statues under it, 10 of them, all different races and missing a d Invar uses the torches around to light the candles. Geldrin places the statues of the wizard races by the candles. -Vision: large round table, seven people, five wizards, Hannah and Icefang. Mama Harthall angry, holding the blue ball, saying, "This is enough. You can't continue this any more." +Vision: large round table, seven people, five wizards, Hannah and Icefang. Mama Hartwall angry, holding the blue ball, saying, "This is enough. You can't continue this any more." ## Page 288 @@ -597,7 +597,7 @@ Leaders: the one who was a god before him. Leaders dead. Lifted the cold element All started to become wary of the princes. May have made the wrong deals to keep the princes in check. -Leader's dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. +Leadus' dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. Connection to my father has allowed to view pieces of my past, so knows most of it. Icefang gave us all vision. diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md index f4db749..50c19cf 100644 --- a/data/4-days-cleaned/day-26.md +++ b/data/4-days-cleaned/day-26.md @@ -66,7 +66,7 @@ Hanna of Fishbait's Edge had little to report beyond colder weather and a few st Alana reported a break-in at the menagerie. Many things had been stolen, and the Magisters had issued fines for black-market animals. Geldrin thought of the farmer in Everchard. -The merfolk had a messenger bird named Terry. Terry carried messages: one said there was an unprecedented amount of instability and forces were out enforcing city-states with no cause for concern. Another said all were required at the noble council meeting on the next Trimoon. Another said Dunensend State was uncompliant because it had not sent troops to fight giants. Another said the Seaward barriers had been fixed by the gushiers; two were seen, plus an unknown one called Gendrin, which made Geldrin furious. There are five dukes on the noble council: Duchess Lauleriere of Freeport State, Duke Humbersinthesand of Dunensend State, Duchess Hearthwall of Hearthwall State, Duke Norman Goldenswell of Goldenswell State, and Duke Torrain Freefellow of Snowsorrow State. Azureside may be on the edge of Dunensend State. +The merfolk had a messenger bird named Terry. Terry carried messages: one said there was an unprecedented amount of instability and forces were out enforcing city-states with no cause for concern. Another said all were required at the noble council meeting on the next Trimoon. Another said Dunensend State was uncompliant because it had not sent troops to fight giants. Another said the Seaward barriers had been fixed by the gushiers; two were seen, plus an unknown one called Gendrin, which made Geldrin furious. There are five dukes on the noble council: Duchess Lauleriere of Freeport State, Duke Humbersinthesand of Dunensend State, Duchess Hartwall of Hartwall State, Duke Norman Goldenswell of Goldenswell State, and Duke Torrain Freefellow of Snowsorrow State. Azureside may be on the edge of Dunensend State. Terry received a message from Erroll, establishing two-way communication. Valenth was present and reported something going on: the place was lit up like a Christmas tree, the barrier was flickering, and an energy surge had started about half an hour earlier. The Mother had repurposed Envi's clone in Envi's lab. Valenth planned to investigate, then decided not to go. He heard a noise and saw Joy heading away, not to a specific circle. @@ -76,7 +76,7 @@ Dreams were discussed: over many years they could be saved, and many recent drea # People, Factions, and Places Mentioned -Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hearthwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hearthwall State, Goldenswell State, and Snowsorrow State were all mentioned. +Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hartwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hartwall State, Goldenswell State, and Snowsorrow State were all mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index a416c42..665f512 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -20,9 +20,9 @@ complete: true # Narrative -Day 32 began in a Hillfolk village between [uncertain: Prortibhe] and Stone Rampart, earthwise. The party decided to travel to Hearthwall because of the Rift block. They teleported to the statue of Lan outside Hearthwall and arrived on target. Lan was noted as an earth god associated with love, home, and family, and the statue of Lan was very similar in style to the Statue of Serva. +Day 32 began in a Hillfolk village between [uncertain: Prortibhe] and Stone Rampart, earthwise. The party decided to travel to Hartwall because of the Rift block. They teleported to the statue of Lan outside Hartwall and arrived on target. Lan was noted as an earth god associated with love, home, and family, and the statue of Lan was very similar in style to the Statue of Serva. -At Hearthwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Hartwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hearthwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. +At Hartwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Hartwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hartwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. At the Baked Mattress they saw a human sitting down with a very noticeable underbelly. The barkeep was noted as "Patches of night & husband." Xinqus was in town. The party headed to the auction house with 870kg and saw a [uncertain: pigeon/aracock] with Xinqus's cart; Xinqus was inside. "1600" was recorded. They walked to the front of the queue, where Mirth let them in and gave them a number. Everyone else seemed to have paid to enter. The auction drew a very eclectic crowd. A dragon and the Retribution shrine on Azureside were noted. @@ -40,7 +40,7 @@ The art lots began with Lot 17, talon of soot, sold by remote bid for 50g. Lot 1 Lot 20 showed Davina Browning covering her eyes with her hands, with eyes on the hands, titled "circling vultures." It sold for 10g to the jewellery guy. Lot 21 was love poetry, blessings of Laurel, and sold for 7g. Lot 22 was a red and blue glass sculpture of Serra and sold for 10g. Lot 23 was the functioning moon pocket watch and sold for 175g. Lot 24 was the green-rim spectacles, which translated elven into common, and sold for 112g. Lot 25 was the mahogany box, also called the Smulty box, and sold for 30g to a bidder described as an elf / flirting woman with goat legs. Lot 26 was a Ray of sorting and stirring and sold for 85g. Lot 27 was an elven forest comb of delousing and sold for 35g. Lot 28 was an elven flute carved with mice, called a turtle flute, and sold for 65g. Lot 29 was an hourglass of smoke instead of sand and sold for 85g. -Lot 30 was the holy symbol of Noxia and sold to Raven 1 for 175g. Lot 31 was a shield ring with runes of Lauren and sold for 600g to a werewolfish [uncertain: Repiteth]. Lot 32 was Firefang and sold for 2050g to a red-and-purple-haired dwarf male. Lot 33 was the chariot, connected to an excellence defeated in the "battle of the unending seas." Four people bid, including two Ravens, the jewellery men, and an emissary. A bidding war followed involving the jewelled men and short paths, Dally who walks in the room, the Harthwall partner, and Lady Thorpe. The price reached 11,900g and then [uncertain: we got] 14,000g. The chariot was already being levelled onto a wagon, and many guards were outside. Lot 34, the Browning spell scroll, sold for 6,200g to the jewellery guy. +Lot 30 was the holy symbol of Noxia and sold to Raven 1 for 175g. Lot 31 was a shield ring with runes of Lauren and sold for 600g to a werewolfish [uncertain: Repiteth]. Lot 32 was Firefang and sold for 2050g to a red-and-purple-haired dwarf male. Lot 33 was the chariot, connected to an excellence defeated in the "battle of the unending seas." Four people bid, including two Ravens, the jewellery men, and an emissary. A bidding war followed involving the jewelled men and short paths, Dally who walks in the room, the Hartwall partner, and Lady Thorpe. The price reached 11,900g and then [uncertain: we got] 14,000g. The chariot was already being levelled onto a wagon, and many guards were outside. Lot 34, the Browning spell scroll, sold for 6,200g to the jewellery guy. The party skulked out to check on Lady Thorpe. She had six guards around her in transparent dragon / silver dragon livery. While she felt better and insisted on going back to the front lines, which were not going great, she looked flustered, confused, and uneasy in her responses. Something was odd about her mannerisms. Eliana did not think she knew who they were, or at least that she was who she said she was. @@ -54,7 +54,7 @@ At the Castle, a higher-ranking halfling general with a huge sword and ornate ar Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Hartwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Hartwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Hartwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Hartwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. -Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Harthwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. +Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Hartwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. Eliana and Dith searched the cells, but Lady Thorpe was not there. Barrett returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. @@ -88,15 +88,15 @@ The skull showed the Goldenswell militia house with the same desk sergeant sitti Another vision showed the Goliath City in ruins, with sickly Goliaths being attacked by lions, overseen by a brutal-looking veridian for tea. All dragons were mutated. A tower with a purple glow had something massive nestled around it. The half-elven woman was identified as the sister of the twin Justicar guards met on the way to Seaward. The skull needed to be next to its foes to smite them. The Chorus was standing outside the house looking up at the sky and never usually leaves the house. -The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, a half-elf woman who was the sister of the twin Justicar guards met on the way to Seaward, and Harthwall, who had been rescued. They headed back to Goldenswell with the captain by side roads and disguised themselves with winter clothes. The captain said the Duke's personal guard had brought the prisoners in. The party bribed him with 50 platinum pieces and his money back for his help, giving him 1 platinum as a down payment, to get them into the prison, rescue all the prisoners, and get him out of the city. They considered offering the rest of the guards money, though the Duke's guards at the gates might not be bribable. They went in through the earthwise gate, where the guards were likely to have been drinking. 12:00 was noted. +The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, a half-elf woman who was the sister of the twin Justicar guards met on the way to Seaward, and Hartwall, who had been rescued. They headed back to Goldenswell with the captain by side roads and disguised themselves with winter clothes. The captain said the Duke's personal guard had brought the prisoners in. The party bribed him with 50 platinum pieces and his money back for his help, giving him 1 platinum as a down payment, to get them into the prison, rescue all the prisoners, and get him out of the city. They considered offering the rest of the guards money, though the Duke's guards at the gates might not be bribable. They went in through the earthwise gate, where the guards were likely to have been drinking. 12:00 was noted. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Lan, Serva, Lady Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Harthwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. +People and name-like figures mentioned include Lan, Serva, Lady Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Hartwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Furres, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. -Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hearthwall / Harthwall, the Rift block, the statue of Lan outside Hearthwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. +Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hartwall / Hartwall, the Rift block, the statue of Lan outside Hartwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. # Items, Rewards, and Resources @@ -112,15 +112,15 @@ Spells and magical effects mentioned include teleporting to the statue of Lan, D The page's opening location preserves uncertainty: the Hillfolk village was between [uncertain: Prortibhe] and Stone Rampart. The note "Day 32 [uncertain: Chuwee]" remains unclear. The relationship between the statue of Lan and the Statue of Serva remains significant because they are very similar in style. -Xinqus / Xinquiss was in Hearthwall with a cart and a [uncertain: pigeon/aracock], with "1600" recorded without explanation. The party agreed to drop off a piece of shield crystal for Xinquiss, and Wroth later helped hide that crystal. Xinquiss was being sought by Justicars. The party told Xinquiss that the quilt might be an "excellence" or working for one, but the meaning and target remain unresolved. +Xinqus / Xinquiss was in Hartwall with a cart and a [uncertain: pigeon/aracock], with "1600" recorded without explanation. The party agreed to drop off a piece of shield crystal for Xinquiss, and Wroth later helped hide that crystal. Xinquiss was being sought by Justicars. The party told Xinquiss that the quilt might be an "excellence" or working for one, but the meaning and target remain unresolved. -The auction contained many significant artifacts and historical references, including the chariot tied to an excellence defeated in the "battle of the unending seas," "Valententide's Betrayal," Browning's spell scroll, Firefang, the holy symbol of Noxia, the shield ring with runes of Lauren, and the talon of soot. The identities and agendas of the Ravens, jewellery men, emissary, Dally who walks in the room, the Harthwall partner, and the werewolfish [uncertain: Repiteth] remain open. The meaning of the Amle for adult? remains unclear. +The auction contained many significant artifacts and historical references, including the chariot tied to an excellence defeated in the "battle of the unending seas," "Valententide's Betrayal," Browning's spell scroll, Firefang, the holy symbol of Noxia, the shield ring with runes of Lauren, and the talon of soot. The identities and agendas of the Ravens, jewellery men, emissary, Dally who walks in the room, the Hartwall partner, and the werewolfish [uncertain: Repiteth] remain open. The meaning of the Amle for adult? remains unclear. False Lady Thorpe's odd mannerisms, failure to recognize the party, transformation into a llama when concentration failed, and the Noxia-like magical poison / religious curse suggest impersonation, shapeshifting, and identity suppression. The real Lady Thorpe had been abducted and held in Goldenswell. Lady Hartwall remained injured, and the antidote's target and composition are not fully clear. The party's arrest warrant had been quashed by somebody up high, but the responsible person was not identified. Browning / Skutey Galvin was wanted for impersonating a Justicar. The Justicars took the llama to Grand Towers, leaving the later fate and interrogation of the false Lady Thorpe unresolved. -Geldrin's Scrying showed Lady Thorpe in a grey mountain-stone dungeon like Harthwall Castle, Ca, or the militia house, but she was ultimately in Goldenswell. The similarities between militia houses, including the Everchard-like militia building, may be relevant. The prison on the road to Stonehedge, Clay Meadow / Everchard / Redford Point / Stonehedge / Goldenswell rosters, and the note that Goldenswell refused access remain part of the prison network mystery. +Geldrin's Scrying showed Lady Thorpe in a grey mountain-stone dungeon like Hartwall Castle, Ca, or the militia house, but she was ultimately in Goldenswell. The similarities between militia houses, including the Everchard-like militia building, may be relevant. The prison on the road to Stonehedge, Clay Meadow / Everchard / Redford Point / Stonehedge / Goldenswell rosters, and the note that Goldenswell refused access remain part of the prison network mystery. The Basilisk's note said Redford and Everchard had no Lady Thorpe, while Goldenswell refused and prevented access. The Basilisk also warned, "Don't come to Strong hedge Compromised." The attempted assassination of Sefris on the ground by someone named little Bugy, connected to the Cult of Salvation, remains unresolved. @@ -134,6 +134,6 @@ The skull's visions tied together Treamen / Tri-moon, ascension to godhood, Noxi The Mother crater, the small town where he fell, the small halfling girl seeing dogs together, Condennis Place, the underground dwarven city, the old wizened dwarf from Inwar's vision, the molten prison, and the possible connection to Ruby Eye's wife or village are all open threads. The skull's projection using moon reflections may connect the Tri-moon to distant surveillance or prison devices. -The Goldenswell prisoners seen in visions and listed by the party create unresolved identity threads: the Elementarium; a human male in his mid-40s with a scar on his right cheek; Baytail, accused head of the Underbelly; a half-elven woman resembling the sister of the twin Justicar guards; a kobold in a recognizable tattered robe; a pale-skinned halfling woman with brown speckled tiger-eye eyes, possibly Isabella Neegale's aunt or the Earl of Clay Meadows; prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Harthwall. The half-elf woman's relationship to the twin Justicar guards met on the way to Seaward is specifically preserved. +The Goldenswell prisoners seen in visions and listed by the party create unresolved identity threads: the Elementarium; a human male in his mid-40s with a scar on his right cheek; Baytail, accused head of the Underbelly; a half-elven woman resembling the sister of the twin Justicar guards; a kobold in a recognizable tattered robe; a pale-skinned halfling woman with brown speckled tiger-eye eyes, possibly Isabella Neegale's aunt or the Earl of Clay Meadows; prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Hartwall. The half-elf woman's relationship to the twin Justicar guards met on the way to Seaward is specifically preserved. The Chorus stood outside the house looking up at the sky, which is unusual because the Chorus never usually leaves the house. The Goliath City vision showed ruins, sickly Goliaths attacked by lions, a brutal-looking veridian, mutated dragons, and a purple-glowing tower with something massive nestled around it; this remains a major open thread. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index c1cbd44..574c1c7 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -60,7 +60,7 @@ The party headed back to the statue by the outskirts of town. They saw a few shi At the statue, an obsidian bird named Terry, Metallics' bird, waited with a private message from Incara: the party should be wary if their compatriot wizards were working against them, because the wizards were the reason for their infertility, though this was not yet confirmed. A margin note said the party would go down the passage after getting Ruby Eye. -There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Harthwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Hartwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. +There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Hartwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Hartwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. The party returned to Mercy's place. Behind Mercy stood a half-elf with rounded ears, the barkeep from the Drunken Duck. Mercy had told him what was going on, and he had come down to ease the party's worries. They were independent contractors for the Guilt, concerned citizens hired for money. He wanted to cash in the favour now. He wanted something from Grand Towers: a small trinket from the private mage area on the 74th floor, a Jelly Fish Broach. An interested party wanted it retrieved. The buyer was not the party's current mutual antagonist, but a female outside the barrier. The party promised to attempt to retrieve it. @@ -70,11 +70,11 @@ The party got Ruby Eye out on floor 65. There was nothing of note on that floor. They followed Ruby Eye down the corridor to an elevator room with a teleport circle. Geldrin went with Ruby Eye, looking to a random level as they moved upward through a maze of ropes and similar workings. Ruby Eye said they were going to see Browning. They saw a Gideone chair, Gazzy plugged into an old man, and two people tinkering at the chair's feet, not worried by their presence. -The party put another ball in the front. This vision showed a Grand Towers boardroom. Ruby Eye, Harthwall, and all five except Browning were present. Trinkets lay in front of them: Scorpion, Snowlee, Jelly Fish, Ant, and others. The other wizards looked uncomfortable. Someone put something into a pouch, and the deal was done. When asked how many more, the answer was about seven signed up and five more to go. The wizards looked uncomfortable, saying there must be another way. Ruby Eye was unhappy and said they were good people, but the only people who would suffer; it would save millions in the long run. +The party put another ball in the front. This vision showed a Grand Towers boardroom. Ruby Eye, Hartwall, and all five except Browning were present. Trinkets lay in front of them: Scorpion, Snowlee, Jelly Fish, Ant, and others. The other wizards looked uncomfortable. Someone put something into a pouch, and the deal was done. When asked how many more, the answer was about seven signed up and five more to go. The wizards looked uncomfortable, saying there must be another way. Ruby Eye was unhappy and said they were good people, but the only people who would suffer; it would save millions in the long run. The mages knew Geldrin was following their progress and that he had succeeded in the barrier safely. A chair guy had altered Pride to be eaten by Garadwal, speaking through his greater gravel children. Garadwal was locked downstairs and heard him when he was ready; he had walked into Browning's trap. Ruby Eye said they would sort Garadwal out, as if Browning was his boss, and said Ruby Eye knew what was good for him. -Another orb showed a person being saved while elementals flew around. The towers were completed, and fighting happened at a panel. Harthwall asked if they were nearly ready to kill them off. Browning said ready, turned into a dragon, activated the device, and Harthwall disappeared. Browning said it was too late and it had started. Ruby Eye said they needed to go now. +Another orb showed a person being saved while elementals flew around. The towers were completed, and fighting happened at a panel. Hartwall asked if they were nearly ready to kill them off. Browning said ready, turned into a dragon, activated the device, and Hartwall disappeared. Browning said it was too late and it had started. Ruby Eye said they needed to go now. A further orb showed Browning in the same room calling out through a crystal ball. A giant green dragon appeared. He asked for help getting rid of his husband. The dragon agreed, saying they could use them as cattle wherever they were done. Browning threw a blanket over the view as Valenth walked in. @@ -82,11 +82,11 @@ Geldrin returned, saying he had been on floor 98 and had found Browning. The par The party found a courtyard with many doors. They tried to go up the tower. Behind a door, a red-robed goliath sat, shocked as they walked through. He was a clergyman named Arik Bellburn of Bridget. He said the party had come from the dome and Bridget had freed them. He described Eliana as having skin of evil, Morgana as Bleak glimmer, and Geldrin as lost winner. They were in the town of Bellburn. The people had prayed for freedom from their oppressors, Envy, and Bridget sent the party. -The party heard a dragon. In Draconic, it said it had come for payment. Ruby Eye said they needed to go. Suddenly there were sounds of battle. Goliaths were fighting Harthwall's silver dragon on top of a building. The dragon said she had come for payment and Envy would have her due. This dragon looked similar to the original Harthwall but meaner and grimacing, with a green tinge to her scales. The goliaths all seemed to have maces made from Seaward stone. Ruby Eye wanted to leave and thought Harthwall hated him. +The party heard a dragon. In Draconic, it said it had come for payment. Ruby Eye said they needed to go. Suddenly there were sounds of battle. Goliaths were fighting Hartwall's silver dragon on top of a building. The dragon said she had come for payment and Envy would have her due. This dragon looked similar to the original Hartwall but meaner and grimacing, with a green tinge to her scales. The goliaths all seemed to have maces made from Seaward stone. Ruby Eye wanted to leave and thought Hartwall hated him. -The party entered the fight and tried to get Harthwall's attention. Harthwall called out Ruby Eye and told him to come remove the curse he had put on her. It was about 17:00. Ruby Eye cast imprisonment on Harthwall, shouting "Burial" in a voice that echoed like an unearthly command. Ruby Eye sounded odd, like someone doing an impression of him, and seemed furious with Dirk after Dirk hit him with a magic missile. A changing touch made Eliana think Dirk's sword was the most amazing thing ever for a brief moment. Eliana heard a voice, felt "my brother's touch" upon them, and wanted the inverse hammer. Morgana's moonbeam revealed that "Ruby Eye" was actually a red-skinned tiefling: Wrath. +The party entered the fight and tried to get Hartwall's attention. Hartwall called out Ruby Eye and told him to come remove the curse he had put on her. It was about 17:00. Ruby Eye cast imprisonment on Hartwall, shouting "Burial" in a voice that echoed like an unearthly command. Ruby Eye sounded odd, like someone doing an impression of him, and seemed furious with Dirk after Dirk hit him with a magic missile. A changing touch made Eliana think Dirk's sword was the most amazing thing ever for a brief moment. Eliana heard a voice, felt "my brother's touch" upon them, and wanted the inverse hammer. Morgana's moonbeam revealed that "Ruby Eye" was actually a red-skinned tiefling: Wrath. -Wrath had made a pact with Ruby Eye to help kill the black dragon, and it was his fault Harthwall was outside. Wrath was scared of Browning, who had teamed up with Pride. Wrath had cursed the silver and black dragons so they could not take human form. He promised the party power in exchange for fighting their enemies. He said there were nine of them in total, little demons of Darkness: Wrath, Pride, Envy, and others. Wrath put Harthwall in the ground with imprisonment using a silver dragon statue. He said the wizards had worked with the demons to help make the dome to protect against them. He insisted the party were not working for him in any way, shape, or form, but could assist if mutually beneficial. Wrath wanted [uncertain: Tremoon's] shell because he saw the wizards make it and it helped people get in and out of the barrier. +Wrath had made a pact with Ruby Eye to help kill the black dragon, and it was his fault Hartwall was outside. Wrath was scared of Browning, who had teamed up with Pride. Wrath had cursed the silver and black dragons so they could not take human form. He promised the party power in exchange for fighting their enemies. He said there were nine of them in total, little demons of Darkness: Wrath, Pride, Envy, and others. Wrath put Hartwall in the ground with imprisonment using a silver dragon statue. He said the wizards had worked with the demons to help make the dome to protect against them. He insisted the party were not working for him in any way, shape, or form, but could assist if mutually beneficial. Wrath wanted [uncertain: Tremoon's] shell because he saw the wizards make it and it helped people get in and out of the barrier. Arik had been injured and was healed. The goliaths paid the Blackscales and sometimes the ore kobolds. Doors were sacred to Bridget. A hellfling mayor, Mayor Longbottom, wanted to accommodate the party for the evening. She had woken up in the church one day, was originally from Goldenswell, and said there was no way back into the dome. Wrath had been part of Ruby Eye but left him when the party "took him out." Ruby Eye was still in the bag. Morgana asked Bridget if she would get them back into the dome, and Bridget took her to the chorus, with good and bad results. @@ -94,15 +94,15 @@ Dirk and Geldrin put a Grand Towers penny onto Bridget's statue. It disappeared Geldrin dropped two pennies onto Bridget's hand. Her eyes glowed green and then yellow. The party went into the closet and emerged into a blue-and-white tiled reception room in a great palace with no furniture, reminiscent of Seaward. Dirk felt 400 to 500 miles away earthwise/waterwise; they were still outside the dome. Guards outside the door in blue tabards did not expect the party to be there. A guard chased Morgana and caught her by the door. They tried to confuse him with the room's appearance, and he called for the Baron. The party closed the door and reopened it to blackness. Dirk had not moved before the door opened, but when it opened Dirk was gone. The party closed the door, stepped out, went back through it, and came into Brookville Springs. Sopparra, identified with Mercy in the notes, said Wrath had been a goliath when they went in. -Dirk remained in Seaward and heard several explosions around midnight. The party got Ruby Eye out, and Ruby Eye shouted at Wrath until Wrath got back into his eye. Dirk reported that most earthwise cities had had explosions, including the Harthwall and Goldenswell areas. Grol found Dirk, and Dirk sent a message back around 20:00. Ruby Eye teleported the party to Dirk. +Dirk remained in Seaward and heard several explosions around midnight. The party got Ruby Eye out, and Ruby Eye shouted at Wrath until Wrath got back into his eye. Dirk reported that most earthwise cities had had explosions, including the Hartwall and Goldenswell areas. Grol found Dirk, and Dirk sent a message back around 20:00. Ruby Eye teleported the party to Dirk. -Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Hartwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Harthwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. +Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Hartwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Hartwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. -Ruby Eye said his pact with Wrath came only from needing more power after seeing how much power Browning had with Pride. Browning wanted the biggest tower and to be the greatest wizard of all time. The party teleported to Harthwall, arriving on target by her statue, and went to the castle gates. Sheriff Fathrabit took them to Harthwall and said the other nobles had arrived. +Ruby Eye said his pact with Wrath came only from needing more power after seeing how much power Browning had with Pride. Browning wanted the biggest tower and to be the greatest wizard of all time. The party teleported to Hartwall, arriving on target by her statue, and went to the castle gates. Sheriff Fathrabit took them to Hartwall and said the other nobles had arrived. -The party brought out Wrath. Wrath said the curse was not his normal thing and was definitely his sister's work. He said, "there you go," and claimed that Harthwall would be fine in a few days, but he was lying. He wanted a favour: for the party to tell Envy that he did it. Harthwall wanted to transform and left the chamber for the courtyard, where she transformed. Harthwall was slightly bigger than the Peridot Queen. In Seaward, there were not many known reports; nobody stated that the racist automatons had exploded. Harthwall's Raven had exploded, and there had been several explosions across the city. +The party brought out Wrath. Wrath said the curse was not his normal thing and was definitely his sister's work. He said, "there you go," and claimed that Hartwall would be fine in a few days, but he was lying. He wanted a favour: for the party to tell Envy that he did it. Hartwall wanted to transform and left the chamber for the courtyard, where she transformed. Hartwall was slightly bigger than the Peridot Queen. In Seaward, there were not many known reports; nobody stated that the racist automatons had exploded. Hartwall's Raven had exploded, and there had been several explosions across the city. -The notes then mark "Day 34." At breakfast in the great hall in Harthwall, Lady Hartwall felt much better. Fighting had been pushed back earthwise to Stone Rampart. There were many mutations, and retreating troops had seen a large explosion in that area. Harthwall would defend the pylon while the party went to get the betrayer. A margin note reads "Da Pig Plaguers." Reports from the captured leaders said they had all managed to retake their cities with minimal casualties. Three paws on the ground reported the safe arrival of the goliaths. +The notes then mark "Day 34." At breakfast in the great hall in Hartwall, Lady Hartwall felt much better. Fighting had been pushed back earthwise to Stone Rampart. There were many mutations, and retreating troops had seen a large explosion in that area. Hartwall would defend the pylon while the party went to get the betrayer. A margin note reads "Da Pig Plaguers." Reports from the captured leaders said they had all managed to retake their cities with minimal casualties. Three paws on the ground reported the safe arrival of the goliaths. The party scried on "The Mother." They saw mountainous terrain, a weird two-legged horse, a little tiefling girl, and a small band of odd creatures. They were together by a small crater in the side of the barrier near the mountain, close to Valenthielles prison. The Mother had been imprisoned last time with help from the [unfinished]. Carduneld had dabbled with Envy but had not entered any [unfinished]. The party met Brother Fracture in the bazaar, with Andy [uncertain: Kallamar?] with him. They had been on their way to the front lines. The party directed Brother Fracture to Lady Fat Rabbit. @@ -110,33 +110,33 @@ The party went to the teleport circle in Valenthielles prison. They arrived in a The party opened the door. Smoke lay at the end of the room. Symbols on the floor marked the prison, and smoke on the far side suggested where an explosion may have happened. The female figure laid her hand on Dirk's shoulder and asked to come with them. When Eliana turned around, they took damage. The entity had had recent visitors, very friendly, who promised to come back but would not be back soon. They had cleaned up quickly, teleported outside the prison, and left Valenthielles there. -Morgana saw Joy in the trees, motionless and looking very odd; it was an illusion. Mutated animals belched out of the woods. The party entered combat with them and the betrayer. Carduneld joined the party. The betrayer was killed. Carduneld and Ruby Eye talked and thought some information would put the party in danger. The party tried to ask what they knew, but they did not want to say and thought the party should focus on the [unfinished]. Ruby Eye was regaining some memories. They were unsure whether they should renegotiate some of the deals made with the gods, and wanted to look into breaking the curse on the inferlite and the damage caused by the barrier. It was not only Ruby Eye's memories that had been tampered with; Icefang's had been too. They thought the party should talk to Mama Harthall, but first needed to head to Stone Rampart earthwise. Ruby Eye and Carduneld left. +Morgana saw Joy in the trees, motionless and looking very odd; it was an illusion. Mutated animals belched out of the woods. The party entered combat with them and the betrayer. Carduneld joined the party. The betrayer was killed. Carduneld and Ruby Eye talked and thought some information would put the party in danger. The party tried to ask what they knew, but they did not want to say and thought the party should focus on the [unfinished]. Ruby Eye was regaining some memories. They were unsure whether they should renegotiate some of the deals made with the gods, and wanted to look into breaking the curse on the inferlite and the damage caused by the barrier. It was not only Ruby Eye's memories that had been tampered with; Icefang's had been too. They thought the party should talk to Mama Hartwall, but first needed to head to Stone Rampart earthwise. Ruby Eye and Carduneld left. At the cathedral, priests walked around dealing with people. Two humans with blistering skin were healed by a priest, who then came to the party. Highden Fell's armies had retreated to the firewise mountain's second level by 14:00. There were issues with sickness, internal consumption, from the crystal. The party told him about crystal sickness and advised that people spend time away from the city. He told them to see the Earl, in the other foot. The statue had been created by the five mayors. The party went to see the Earl. In the park between the legs, plants were in bloom. Militia wore jagged rock keep tabards, and there was much activity. The party left a message with a lieutenant. A note says she did not have it because she was born in Highden and [unfinished]. A frog appeared to Laura and wanted Eliana's attention, motioning for them to follow. They did not follow, and Sevor-ice could not follow; possible bullying was noted. The party got another sending stone with a new number from someone in the Underbelly. A Highden lizardfolk was on the building, mumbled something as the party left, and Eliana shut up. The creature said hello and cast invisibility. Morgana cast thorn whip on it. It had been skulking because it was scared of the party and had been sent to deliver something by its boss. -The lizardfolk wanted to go somewhere private. The party met an old gnoll in a rocking chair under a blanket, "granny," an Underbelly liaison. The lizard was named Scurry. Granny knew what the party had done in town but did not know if Harthall was there yet. The Underbelly was getting back on track now that Lady Coke was back. Granny and Scurry were the only two to trust. Highden was a wreck, troops had taken over the inn, and the place "never sees the sun." The party sent The Basilisk a note about current events and used a pulley lift system to go to the inn. +The lizardfolk wanted to go somewhere private. The party met an old gnoll in a rocking chair under a blanket, "granny," an Underbelly liaison. The lizard was named Scurry. Granny knew what the party had done in town but did not know if Hartwall was there yet. The Underbelly was getting back on track now that Lady Coke was back. Granny and Scurry were the only two to trust. Highden was a wreck, troops had taken over the inn, and the place "never sees the sun." The party sent The Basilisk a note about current events and used a pulley lift system to go to the inn. A guard on the door was a sixty-foot giant, though not the size of the Tor statue. He led the party upstairs to the commander. The commander was an elf with a laurel of white roses around his head, a beard, and green peach fuzz unlike standard elves, described as a Moss couch elf. He was Captain Briarthorn, of an elf hundred. He hoped to use the natural terrain of the river as the battle point. Thousands of tribesfolk, perhaps goliaths, were involved. A blue dragon had been spotted with them but had not been seen for a while. He would mobilize the troops now that the Mother had been slain. The command had some "exciting" obsidian ravens. The party advised them to stop using the ravens, because all messages back had been telling them not to support the cause. Gerald went to get the quartermaster. The raven was a stealth version, and the quartermaster did not think anything was wrong. A message was sent to Dirk. Dirk said he would be there in a minute, but the reply came back saying he could not come. The party told the quartermaster to send messages ordering troops to come regardless of any reply. Errol was loaned to the commander for two hours. -The party went to another inn, the Three Full Moons, and talked to Gary, a house farmer with a dog named Shep. They returned to Captain Briarthorn, where Lady Hartwall was fully armoured. The plan was that giants were close to where the defenders wanted to ambush them. The dragon would try to split off some of the larger giants, and the party would attack. Some towns had responded through Errol and were sending small troops to help. The party arranged to meet Harthall in the forest and planned to start a fire to separate the large giants from the army. While riding the dragon, they saw a black plume of smoke near the mountain at the edge of vision. The plume was magical in nature, perhaps Harthall/Highden. +The party went to another inn, the Three Full Moons, and talked to Gary, a house farmer with a dog named Shep. They returned to Captain Briarthorn, where Lady Hartwall was fully armoured. The plan was that giants were close to where the defenders wanted to ambush them. The dragon would try to split off some of the larger giants, and the party would attack. Some towns had responded through Errol and were sending small troops to help. The party arranged to meet Hartwall in the forest and planned to start a fire to separate the large giants from the army. While riding the dragon, they saw a black plume of smoke near the mountain at the edge of vision. The plume was magical in nature, perhaps Hartwall/Highden. -As they drew closer, the smoke shape came to attack them. Harthall protected the party from the dragon's flame. A giant attacked, bashing Invar into the ground with his mace while the others closed in. Dirk clung to the giant's arm and climbed up his leg. Morgana summoned a bear and grappled the giant's arms. The party defeated all the giants. Harthall and a skeletal dragon fought each other. The skeletal dragon had the book from Ruby Eye's lab, and the words he spoke from the book were words he did not understand. The party teleported out to the armies, and the dragon came toward them. +As they drew closer, the smoke shape came to attack them. Hartwall protected the party from the dragon's flame. A giant attacked, bashing Invar into the ground with his mace while the others closed in. Dirk clung to the giant's arm and climbed up his leg. Morgana summoned a bear and grappled the giant's arms. The party defeated all the giants. Hartwall and a skeletal dragon fought each other. The skeletal dragon had the book from Ruby Eye's lab, and the words he spoke from the book were words he did not understand. The party teleported out to the armies, and the dragon came toward them. -Eliana felt sick, with salt water in their nose, like after holding the White Rune. Dirk had a familiar brain tickle and saw another feeling: a room with other goliaths, a sickly threat on female green dragon armour, a chin tick like Shibble grossing, and a chest around a table that was intense. A female smiled and said, "you need to go back to now." Geldrin saw a circular table where mages discussed her and slid a paper to her. Another vision showed a man knee-deep in a ford; as he crossed, a woman said no no no, and red thorns were everywhere. Harthall saw her mother buried in the ground. +Eliana felt sick, with salt water in their nose, like after holding the White Rune. Dirk had a familiar brain tickle and saw another feeling: a room with other goliaths, a sickly threat on female green dragon armour, a chin tick like Shibble grossing, and a chest around a table that was intense. A female smiled and said, "you need to go back to now." Geldrin saw a circular table where mages discussed her and slid a paper to her. Another vision showed a man knee-deep in a ford; as he crossed, a woman said no no no, and red thorns were everywhere. Hartwall saw her mother buried in the ground. The party went to the river to speak to water elementals and ask for help with the dragon flames. Dirk used the rod to speak to the elementals. The water elementals required the party to agree to free Icefang's ice elemental in the prison at Rimewock. Geldrin summoned the void elemental to help. The void elemental said the party would owe him another favour, since Garadwal revenge was the previous favour. The requested terms were not to free Valentenhide and to let Kasher reign, and not to oppose Kasher; the void would bring someone else to the fight. The party agreed to the water elemental. Geldrin told the void they could not accept. The party managed to say that someone might be trapped. When given a dead grub like the ear grubs, [unclear: a wanders]. The party then appeared in their minds in a palace-style room with plush carpets. An elderly gentleman, Icefang, sat looking at them, older than in his paintings, sane and at ease. He said, "I disagreed." A memory showed the mage table, with Icefang shouting at Browning. A dark elf appeared and dropped a grub in his ear. Icefang said he never would have dropped a rope, was glad he was sane before the end, and said they needed to right the wrongs. The party should not feel sorry for him; he had lived a good life for the half he could remember. The barrier was a good thing, but too many sacrifices had been made. -A black hole opened under the battle. Snowflakes appeared, and a massive frost dragon burst through the hole, seized the skeletal dragon, carried it to the barrier, passed Harthall, and said "My Child." Icefang came back through, crashed through the barrier, and soot crashed down from the barrier, badly injured. Eliana felt the salt water feeling again. Icefang crashed into the river, and Soot shouted that he would take them all with him. +A black hole opened under the battle. Snowflakes appeared, and a massive frost dragon burst through the hole, seized the skeletal dragon, carried it to the barrier, passed Hartwall, and said "My Child." Icefang came back through, crashed through the barrier, and soot crashed down from the barrier, badly injured. Eliana felt the salt water feeling again. Icefang crashed into the river, and Soot shouted that he would take them all with him. Geldrin entered or invoked a dark cavern with a throne made of skulls. He walked toward a pale human female seated on the throne, with bleeding eye sockets and skeletal hands and feet. She said, "hello my child what is it you wish." Geldrin asked to dispel dragon magic. She said she had only just put it on and had taken him as payment. She had watched him with great interest since hatching. When asked whether some of the other deals had caused her [unfinished], she said no, but taking the Mother down had. Geldrin offered her Garadwal. She agreed. Geldrin chanted, Soot's flames vanished, and his bones scattered. Eliana used breath weapon on the dragon head. A water elemental retrieved Icefang and laid him down. -Harthall did not know who her father was; she had always been told he died in battle while her mother was pregnant. Tirar's vision was at Rellport: leeches attacked in the river and made victims believe they were not really there so they could feed on as much blood as they wanted. Harthall saw her mother in the ground, trapped by a hundred tiny red creatures. +Hartwall did not know who her father was; she had always been told he died in battle while her mother was pregnant. Tirar's vision was at Rellport: leeches attacked in the river and made victims believe they were not really there so they could feed on as much blood as they wanted. Hartwall saw her mother in the ground, trapped by a hundred tiny red creatures. A portal appeared, and Valenth and Ruby Eye emerged. Valenth knew before the party told her. Ruby Eye realized that they had done it to him. The dark elf may have been from Envy's apprentice, and they had been making plans. One curveball plan was to swap Valentenhide with Kasher. A coin appeared and blue thistles lay on the ground. A portal opened to a carriage drawn by two cows and guarded by very dressed-up guards. An elderly gentleman appeared, the same one from the vision of Provita's birth: Lord Bleakstorm. He chanted a message from Icefang from outside the dome. He looked no different from his pictures because he was dead. He had not freed the auroch because he could not remain inside the dome long; Browning would find him and send minions after him. Lord Bleakstorm gave Eliana a snowflake coin, a one-use portal to Bleakstorm. @@ -166,21 +166,21 @@ The figure thought it was Ruby Eye. It could not open the barrier because that m # People, Factions, and Places Mentioned -People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Harthwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Harthall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. +People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Hartwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Hartwall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. -Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Harthwall, the castle gates, the courtyard where Harthwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden Fell, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snow Sorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. +Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Hartwall, the castle gates, the courtyard where Hartwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden Fell, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snow Sorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. # Items, Rewards, and Resources Money, payments, and offerings mentioned include the random copper piece around the Bridge Statue, the party greasing guards' palms to see Seneshell, 25 platinum paid to the captain, the Grand Towers penny used on Bridget's statue, Geldrin's two pennies placed on Bridget's hand, and the note that people should have given Bridget money. -Transport and communication resources mentioned include Errol, Newgate's gargoyle, the Bird that did not work, the mage's ring used to locate the party, Terry the obsidian bird, Metallics' bird, the lucky cyclops eye that did not go anywhere, Ruby Eye travelling in the bag, the Grand Towers portal / passage, teleport circles, Mercy's route to Grand Towers, Ruby Eye's teleport to Dirk, obsidian ravens including stealth ravens, the sending stone with a new Underbelly number, the pulley lift to the inn, the dragon ride with Harthall, Lord Bleakstorm's cow-drawn carriage portal, the snowflake coin that is a one-use portal to Bleakstorm, Jin Woo's teleports, and the merfolk lodge. +Transport and communication resources mentioned include Errol, Newgate's gargoyle, the Bird that did not work, the mage's ring used to locate the party, Terry the obsidian bird, Metallics' bird, the lucky cyclops eye that did not go anywhere, Ruby Eye travelling in the bag, the Grand Towers portal / passage, teleport circles, Mercy's route to Grand Towers, Ruby Eye's teleport to Dirk, obsidian ravens including stealth ravens, the sending stone with a new Underbelly number, the pulley lift to the inn, the dragon ride with Hartwall, Lord Bleakstorm's cow-drawn carriage portal, the snowflake coin that is a one-use portal to Bleakstorm, Jin Woo's teleports, and the merfolk lodge. -Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadwal, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Harthwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered Eliana's desire for Dirk's sword and inverse hammer, Harthwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Harthwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Harthall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, Eliana's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. +Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadwal, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Hartwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered Eliana's desire for Dirk's sword and inverse hammer, Hartwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Hartwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Hartwall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, Eliana's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. -Objects, trinkets, and named resources mentioned include the crystal shell / shell of [uncertain: Tremoon], the Jelly Fish Broach from the 74th floor private mage area, trinkets from the bargains, Scorpion, Snowlee, Jelly Fish, Ant, Ruby Eye's lab orbs, the chair / Gideone chair, the silver dragon statue used in Harthwall's imprisonment, Seaward stone maces, the inverse hammer, the Grand Towers penny, the barrier / dome, the racist automatons, Harthwall's Raven, the pylon, Heamon's skull, the prison symbols, the chest around the intense table in Dirk's vision, the White Rune, Icefang's ice elemental in Rimewock, dead ear grub, black dragon book from Ruby Eye's lab, the auroch not freed by Lord Bleakstorm, the snowflake coin, the statue to Hydrath, steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, the ancient Dull Peake sign, the five runes in a pentagram, the ticking rune door, the upright hand on a plinth, and Envi in a tube of viscous fluid. +Objects, trinkets, and named resources mentioned include the crystal shell / shell of [uncertain: Tremoon], the Jelly Fish Broach from the 74th floor private mage area, trinkets from the bargains, Scorpion, Snowlee, Jelly Fish, Ant, Ruby Eye's lab orbs, the chair / Gideone chair, the silver dragon statue used in Hartwall's imprisonment, Seaward stone maces, the inverse hammer, the Grand Towers penny, the barrier / dome, the racist automatons, Hartwall's Raven, the pylon, Heamon's skull, the prison symbols, the chest around the intense table in Dirk's vision, the White Rune, Icefang's ice elemental in Rimewock, dead ear grub, black dragon book from Ruby Eye's lab, the auroch not freed by Lord Bleakstorm, the snowflake coin, the statue to Hydrath, steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, the ancient Dull Peake sign, the five runes in a pentagram, the ticking rune door, the upright hand on a plinth, and Envi in a tube of viscous fluid. Rewards, obligations, and bargains mentioned include Mercy owing or showing a favour, Mercy's contractor wanting the Jelly Fish Broach as immediate payment for the favour, Wrath offering power in exchange for fighting the party's enemies, Wrath asking the party to tell Envy that he did it, Ruby Eye's pact with Wrath to kill the black dragon, the gods requiring a favour each plus communication to priests and a boon, the water elementals requiring the party to free Icefang's ice elemental at Rimewock, the void elemental requesting another favour involving not freeing Valentenhide and letting Kasher reign, Geldrin offering Garadwal to the skull-throne woman, Lord Bleakstorm giving the one-use snowflake portal coin, and Geldrin's plan to free Justicarus by posing as Grand Towers medical staff. @@ -196,19 +196,19 @@ The Dollarmans identified themselves as assassins, included a half-orc and a hum Incara's private message through Terry warned that the party's compatriot wizards might be working against them and might be responsible for their infertility, though this was not yet confirmed. This ties to later revelations about the nerfili baby bargain and barrier effects, but the exact truth and scope remain uncertain. -Ruby Eye wanted the shell of [uncertain: Tremoon] more than he admitted and said it helped with passage in and out of the barrier. Wrath also wanted it because he saw the wizards make it. The shell's exact function, current safety at Harthwall, and risk if obtained by the wrong faction remain unresolved. +Ruby Eye wanted the shell of [uncertain: Tremoon] more than he admitted and said it helped with passage in and out of the barrier. Wrath also wanted it because he saw the wizards make it. The shell's exact function, current safety at Hartwall, and risk if obtained by the wrong faction remain unresolved. Mercy's contractor wanted the Jelly Fish Broach from the 74th floor private mage area in Grand Towers for a female buyer outside the barrier who was not the party's current mutual antagonist. The buyer, purpose, and consequences of retrieving the broach remain unknown. -Grand Towers orb visions revealed hidden wizard bargains, possible memory tampering, Icefang's entombment under snow, black snowflake guards, trinkets including Scorpion, Snowlee, Jelly Fish, and Ant, and Browning's actions. Browning had Pride's power, wanted the biggest tower and to be the greatest wizard, trapped Garadwal downstairs, worked with a giant green dragon, and used a device that made Harthwall disappear. The notes preserve multiple uncertain or incomplete statements from these visions. +Grand Towers orb visions revealed hidden wizard bargains, possible memory tampering, Icefang's entombment under snow, black snowflake guards, trinkets including Scorpion, Snowlee, Jelly Fish, and Ant, and Browning's actions. Browning had Pride's power, wanted the biggest tower and to be the greatest wizard, trapped Garadwal downstairs, worked with a giant green dragon, and used a device that made Hartwall disappear. The notes preserve multiple uncertain or incomplete statements from these visions. Bellburn appears outside the dome and treats Bridget's doors as sacred. Arik Bellburn believed Bridget sent the party from the dome in answer to prayers against Envy. Bridget's door travel responded to Grand Towers pennies with different eye colours and sent Dirk to Seaward, then sent the group through a palace-like room and back to Brookville Springs. The exact rules of Bridget's doors, pennies, colour responses, time displacement, and locations remain unclear. -Wrath impersonated Ruby Eye, cursed silver and black dragons so they could not take human form, and imprisoned Harthwall using a silver dragon statue. He described himself, Pride, Envy, and six other little demons of Darkness as nine total. He said the wizards worked with them to create the dome as protection from them. Wrath claims mutual benefit rather than control over the party, but his bargains and fear of Browning remain dangerous. +Wrath impersonated Ruby Eye, cursed silver and black dragons so they could not take human form, and imprisoned Hartwall using a silver dragon statue. He described himself, Pride, Envy, and six other little demons of Darkness as nine total. He said the wizards worked with them to create the dome as protection from them. Wrath claims mutual benefit rather than control over the party, but his bargains and fear of Browning remain dangerous. Ruby Eye's memories and Icefang's memories had both been tampered with through ear-grub-like intervention. A dark elf dropped a grub into Icefang's ear at a mage table during a dispute with Browning. The dark elf may have been from Envy's apprentice. The party is left with questions about who else was altered, what they forgot, and which wizard decisions were made under coercion. -The gods' bargains behind the barrier are only partially understood. Bridget gave a way in; Noxia's bargain involved trinkets and barrier sickness; Otasha received unborn nerfili babies across the race, with the barrier seeming to mitigate it; the god of Darkness was bypassed by making him the god, Leptrop; Ennik and Browning made many deals; Harthwall did not know about half of them. Ruby Eye and Carduneld considered renegotiating deals, breaking the inferlite curse, and addressing barrier damage. +The gods' bargains behind the barrier are only partially understood. Bridget gave a way in; Noxia's bargain involved trinkets and barrier sickness; Otasha received unborn nerfili babies across the race, with the barrier seeming to mitigate it; the god of Darkness was bypassed by making him the god, Leptrop; Ennik and Browning made many deals; Hartwall did not know about half of them. Ruby Eye and Carduneld considered renegotiating deals, breaking the inferlite curse, and addressing barrier damage. Valenthielles prison contained seamless stone, a prison corridor of damaging Joy-like darkness, trapped peepholes, smoke, prison symbols, and a dark female figure who had recent friendly visitors that cleaned up quickly, teleported outside, and left Valenthielles. The identity of the visitors, what they removed or cleaned, and the state of Valenthielles remain open. @@ -216,7 +216,7 @@ The Mother was found near a crater at the side of the barrier close to the mount Highden suffered crystal sickness / internal consumption, blistering skin, military retreat, false obsidian raven messages, and a major battle against tribesfolk, giants, and dragons. The Underbelly was rebuilding under Lady Coke, with Granny and Scurry as trusted contacts, while Highden was described as a wreck that never sees the sun. -The battle near Highden involved Harthall, a skeletal dragon with Ruby Eye's lab book, Soot, Icefang's intervention as a frost dragon, water elementals, a void elemental, the skull-throne woman, and a bargain offering Garadwal. Several visions occurred: Dirk's green-dragon-armour room, Geldrin's mage-table paper, the ford with red thorns, Harthall's mother buried and trapped by tiny red creatures, and Tirar's Rellport leech vision. Their full meanings remain unresolved. +The battle near Highden involved Hartwall, a skeletal dragon with Ruby Eye's lab book, Soot, Icefang's intervention as a frost dragon, water elementals, a void elemental, the skull-throne woman, and a bargain offering Garadwal. Several visions occurred: Dirk's green-dragon-armour room, Geldrin's mage-table paper, the ford with red thorns, Hartwall's mother buried and trapped by tiny red creatures, and Tirar's Rellport leech vision. Their full meanings remain unresolved. The skull-throne woman with bleeding eye sockets had taken Soot as payment and accepted Garadwal in exchange for dispelling dragon magic. Her identity, relationship to Geldrin, interest in Soot since hatching, and connection to other deals remain unclear. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index be96ed5..feaf59f 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -91,19 +91,19 @@ A device detected time and noted that Dirk was missing a day. Bleakstorm had bee Bleakstorm said he had broken some rules by coming to see the party, and that he could not break them except on occasion. The party requested sanctuary for their dragon friend. He recognized her and needed to look into her name. He would not forgive Emri, because Emri took away his only friend and had entrusted him despite Bleakstorm saying no to it. It was not the dragons who took him; he was tricked into releasing his friend. Bleakstorm often trusts his god, which she appreciates. The party had promised the elementals they would free his friend, [uncertain: leechus]. He warned that trips outside the barrier could be difficult. -Bleakstorm reported that Perodita was heading to Heathwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Heathwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to The Basilisk about Perodita heading to Heathwall, but Bleakstorm did not send the party outside the barrier. Gardwal was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. +Bleakstorm reported that Perodita was heading to Hartwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Hartwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to The Basilisk about Perodita heading to Hartwall, but Bleakstorm did not send the party outside the barrier. Gardwal was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. -The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Heathwall, where they saw Perodita vanish. +The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Hartwall, where they saw Perodita vanish. -The party headed over to Heathwall and spoke to Lady Parthabbit. Lady Hartwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. +The party headed over to Hartwall and spoke to Lady Parthabbit. Lady Hartwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. # People, Factions, and Places Mentioned People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Hartwall, T.J. Boggins, and Jin Woo. -Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodika's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Heathwall's forces heading airwise. +Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodika's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Hartwall's forces heading airwise. -Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snow Screen / Snow Sorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Heathwall, and Emmerave. +Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snow Screen / Snow Sorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Hartwall, and Emmerave. Creatures and creature-like entities mentioned include the fat-bellied dragon in Dirk's dream, dark demons, the black-feather communication bird, dragonborn, Goliaths, the baby Badger, the featureless woman reflected in the ring, the lion-headed god figure, the dragon in the no-barrier vision, the four card-playing dragonborn with welded armour, something made of air in a barrier, the goat man, the goat-headed sphinx, the copper-haired elven woman / copper dragon, the medusa, the statue figure, the child of the Mother with a worm, the eyeless dog, the fat dragon in the dragon vision, the Noxia Beast avatar, Trixus the elemental of light, Steven the goat man, the copper dragon from Snow Screen, gold dragons, the female sphinx on Snow Sorrow currency, the white creature / white dragon in the Altabre vision, and ice elementals. @@ -113,7 +113,7 @@ Items, currencies, and physical resources mentioned include Envi's fifth ring gi Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. -Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Heathwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Hartwall's movement airwise to help with the battle heading to Emmerave. +Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Hartwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Hartwall's movement airwise to help with the battle heading to Emmerave. # Clues, Mysteries, and Open Threads @@ -177,6 +177,6 @@ Bleakstorm detected Dirk missing a day. The missing day, Bleakstorm's deals with Bleakstorm will not forgive Emri for taking away his only friend after being told not to entrust him. The friend, [uncertain: leechus], and the promise to free him remain open. -Perodita was heading to Heathwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Heathwall, and Lady Hartwall had gone airwise toward Emmerave. +Perodita was heading to Hartwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Hartwall, and Lady Hartwall had gone airwise toward Emmerave. -T.J. Boggins remained at Heathwall eating meat and watching opera, while Jin Woo was absent. Their immediate relevance is not stated. +T.J. Boggins remained at Hartwall eating meat and watching opera, while Jin Woo was absent. Their immediate relevance is not stated. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index 302f818..32ed9bf 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -21,15 +21,15 @@ complete: true Day 43 began after a restful night's sleep. The party headed for breakfast. All the wizards seemed to have been called back to Grand Towers, and more and more people were finding lost documents. Memories or information had started to come back about a week earlier, aligning with the party killing The Mother. -Goldenswell was still out of sorts after the kidnappings. Two kobolds were now in the city, one of them a lieutenant who had travelled from airwise and whose story was similar to the party's. The party met his lieutenant, Grimby the 3rd. Grimby had once worked for an evil wizard and had been helped by adventurers to escape. The wizard had been capturing woodcutters for her army; the name Klesha was noted, and The Basilisk had told the party about them. A lovely Envoy had come to Grimby and taught him how to kill his townsfolk. The Envoy may have been a dragon, described as silvery green. Grimby woke up at Pine Springs in the snow, ran off because of a huge bird sparkling with electricity, and then ran into the forest. He had been kidnapped because he used to sleep on top of his mother. The place he came from had many words, the same as Harthall. There had been a door in one of the rooms with a goat man in it, but the goat man was gone when he left [unclear]. The name Shriek was noted uncertainly. +Goldenswell was still out of sorts after the kidnappings. Two kobolds were now in the city, one of them a lieutenant who had travelled from airwise and whose story was similar to the party's. The party met his lieutenant, Grimby the 3rd. Grimby had once worked for an evil wizard and had been helped by adventurers to escape. The wizard had been capturing woodcutters for her army; the name Klesha was noted, and The Basilisk had told the party about them. A lovely Envoy had come to Grimby and taught him how to kill his townsfolk. The Envoy may have been a dragon, described as silvery green. Grimby woke up at Pine Springs in the snow, ran off because of a huge bird sparkling with electricity, and then ran into the forest. He had been kidnapped because he used to sleep on top of his mother. The place he came from had many words, the same as Hartwall. There had been a door in one of the rooms with a goat man in it, but the goat man was gone when he left [unclear]. The name Shriek was noted uncertainly. -The party also discussed Wroth. Wroth trapped Envy when he trapped Mama Harthall, because Envy was in Mama Harthall's head the same way he is in Ruby Eye's. Geldrin found a disintegrated scroll in Jin Woo's room. On the back was written: "In her gaze, End of Days." Morgana found an auction house receipt for a large picture frame with a massive moth. She also found or noted a chess board with the wizards as carved pieces; one rook looked like [uncertain: brakemen]. The pub was called "11th Duke of Harthall's wife." A moustached fat man was there with a very good-looking raven-haired half-elf on his arm. Near the Cathedral of Attabre was an ominous church with the sign "Lord Argenthum's Rest." +The party also discussed Wroth. Wroth trapped Envy when he trapped Mama Hartwall, because Envy was in Mama Hartwall's head the same way he is in Ruby Eye's. Geldrin found a disintegrated scroll in Jin Woo's room. On the back was written: "In her gaze, End of Days." Morgana found an auction house receipt for a large picture frame with a massive moth. She also found or noted a chess board with the wizards as carved pieces; one rook looked like [uncertain: brakemen]. The pub was called "11th Duke of Hartwall's wife." A moustached fat man was there with a very good-looking raven-haired half-elf on his arm. Near the Cathedral of Attabre was an ominous church with the sign "Lord Argenthum's Rest." A dwarf blacksmith pulled Invar aside and said it was good to see others looking around. He said they were there for other reasons, not just to sell wares, and gave Invar a box. A golden dragonborn had tomes about places they had only just discovered: Ashkhellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, and Last Past Airwise. Invar opened the box slightly. It glowed bright and warm, and he closed it to open fully later. A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown, but the words beneath were smudged. The book warned: "One more glance a death dance." Geldrin asked how to exile Trixus. The book showed Benu, Trixus, and Garadwel, with two sphinxes behind them and the words "a family reunited" underneath. One figure was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath look." He turned and saw a featherless woman reflected in Invar's armour, then collapsed to the floor. Valentenshide was noted. -The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Harthall. When the party asked the book for the location of papael'munsera, the page was blank. The party also learned about tote dwarf civilization: second came the dwarves, first of logs and five of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Gardwel with the name hidden on the page, and Trixus. The vulture man, or a force through him, said "in her stare honey laid bare," though he did not remember speaking. +The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall. When the party asked the book for the location of papael'munsera, the page was blank. The party also learned about tote dwarf civilization: second came the dwarves, first of logs and five of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Gardwel with the name hidden on the page, and Trixus. The vulture man, or a force through him, said "in her stare honey laid bare," though he did not remember speaking. The party asked what was on page two. The elements seemed to clash; a bright light rose from the page and left a black hole, while many different elements appeared and converged into the world the party knows. The last page showed "The End," then the repeated death-rhyme: "one more glance a death dance," "one brief look last breath look," "In her stare Bones laid bare," and "in her gaze the end of days." The book slammed shut, which it had never done before. This reminded the party of Dumnensend and a children's poetry book. Morgana had the book whose last poem was that one; the second-to-last was a council meeting with plans to take out Valentenshide. @@ -41,11 +41,11 @@ The party returned to the castle to wait for the bird. They decided to open Inva Shurling arrived. The Chorus knew where the entrance to Grincray was, but they needed to go through Mashir. The flesh-crafting wands were discussed; something was still out there stopping all of the lost knowledge from being retrieved. -Lady Hartwall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Harthall, and she had done so before she disappeared. Lady Hartwall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Hartwall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. +Lady Hartwall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Hartwall, and she had done so before she disappeared. Lady Hartwall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Hartwall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. The Menagerie was then discussed. The mages who worked there had not returned to Grand Towers and had locked the Menagerie down; no one could get in. It used to be the mage school. Emi's apprentice was a dark-skinned elf. Joy did not like him, and Mr Browning also did not like him. Browning was described as a nice man, though the note adds that this is not what the party has seen. Storms were bad in the latest reports. Heathmoor plagues were very bad. The land was healing, but the people were not, and the plagues did not share similarities with barrier sickness. News from a rear Ironcraft air site said a tradesman went to pick someone up but that person had "disappeared." The guilt was Emi's guilt. -Lady Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Harthall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Harthall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. +Lady Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Hartwall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Hartwall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. The party tried to speak to Garadwel through the feather. It vibrated, and there was a chill in the air. Garadwel called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. @@ -53,15 +53,15 @@ Garadwel said people did not build things as he taught them and instead ran off A quick update came by sending stone: the Grand Towers dome was down, and Garadwell had probably gone to Ashkhellion. The party debated whether to go to Ashkhellion and get Benu first. They went to the library to speak to the vulture man. He went to get his sending stone to speak to [uncertain: Ashtrigwos], to tell Benu to meet the party at the tower in Ashkhellion. Geldrin asked for magical scrolls and got them just before the teleportation circle completed. The party went to Ashkhellion. -They appeared higher up in the tower, and Harthall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. +They appeared higher up in the tower, and Hartwall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadwal, while Trixus was still in a barrier. The party asked Garadwel to lay down his weapons, but he refused. Eliana tried to get the dome opener, and Garadwal killed them. Benu attacked Garadwal. Geldrin used a tremor skill to release Trixus. Eliana was revived and saw Valentenshide manage to look away. Benu and Garadwal broke through the walls and fought outside. A fight ensued, and Garadwal was banished at 5:00. Benu told Trixus what had happened to Garadwal. Trixus asked where Benu had been when his people were in trouble. Dark clouds gathered above the dune. Perodita appeared, looking very bedraggled compared with the previous day. She said she would get back in and wanted the flesh-crafting wands. Trixus said father had put him to sleep. The party returned to the tower and retrieved the barrier tools. Benu knew of a way to live peacefully without the barrier. -Hephestos was only his soul. He wanted to make a pact with the party so they would let him out and wanted to give them information to help him get out. He had been asked to attack the dome, perhaps by Browning. The party needed to save Garadwel. Trixus and Benu transformed into humanoids and went to the shrine room to check whether Garadwel was there. The party added Brass City platinum to the offering bowl to help communicate with the god. Attabre came through. Garadwal was not with him. When Attabre asked what the party sought, they answered that they sought justice. Benu disappeared. Attabre said he sought atonement for his crimes, justice. Trixus was looking but seemed okay. Attabre was angry with Benu. Goliaths were due to get a protector like Trixus. The party began to tell Harthall about the ancient [unclear]. +Hephestos was only his soul. He wanted to make a pact with the party so they would let him out and wanted to give them information to help him get out. He had been asked to attack the dome, perhaps by Browning. The party needed to save Garadwel. Trixus and Benu transformed into humanoids and went to the shrine room to check whether Garadwel was there. The party added Brass City platinum to the offering bowl to help communicate with the god. Attabre came through. Garadwal was not with him. When Attabre asked what the party sought, they answered that they sought justice. Benu disappeared. Attabre said he sought atonement for his crimes, justice. Trixus was looking but seemed okay. Attabre was angry with Benu. Goliaths were due to get a protector like Trixus. The party began to tell Hartwall about the ancient [unclear]. -The party reflected that the barrier was possibly a bad thing, but had been made for noble and proud reasons. Trixus could help with the memories, but a spell within the barrier was interfering. The magic involved Attabre and another force. The location of the spell was waterwise at the Mages College at Riversmeet. Trixus did not like the barrier and did not think the elves should have been able to remove their pride. The party planned to go to Riversmeet and speak to Lady Igraine. They split: Dirk, Eliana, and Morgana took Harthall to meet Anastasia; Invar and Geldrin took Trixus to see Emi. +The party reflected that the barrier was possibly a bad thing, but had been made for noble and proud reasons. Trixus could help with the memories, but a spell within the barrier was interfering. The magic involved Attabre and another force. The location of the spell was waterwise at the Mages College at Riversmeet. Trixus did not like the barrier and did not think the elves should have been able to remove their pride. The party planned to go to Riversmeet and speak to Lady Igraine. They split: Dirk, Eliana, and Morgana took Hartwall to meet Anastasia; Invar and Geldrin took Trixus to see Emi. With Emi, Trixus was called "the useless one." Emi said the elves needed help to remove emotions. Cardenald had put a talking door on one of the prisons. Emi said he and Browning should have been in charge but were betrayed. The elves' protector who taught them how to remove emotions was Benu. Trixus might be able to put Emi's emotions back, but he would need the emotions in order to put them back. @@ -69,25 +69,25 @@ With Anastasia, the party flew down to the courtyard. The Goliaths were scared. An elder came in, and Morgana checked him over. Stalwart's purification ritual had removed his ailment. Morgana cast Lesser Restoration, healed his maladies, then went out to heal some children. She set up a garden, sang a song while curing them, turned into a crow, and flew off; the notes mark this as creating a legend. Anastasia was worried about where Verdigren went. -Geldrin tried to think of a way to get Hephestus to tell the truth. He had no luck, and Invar carried Hephestus away. The group came down to the ground and met the others. They asked Trixus to help the elders communicate with Attabre. Anastasia's bird was sent to Cardonald to get her to come to the party for the teleportation circle to Riversmeet. Cardonald appeared. She still had not found Ruby Eye and could not find Errol either; perhaps they were not on the same plane. Cardonald said Harthall meant a lot to her. The notes ask which one, and then mention Icefang: things would not be as good as they are without him. +Geldrin tried to think of a way to get Hephestus to tell the truth. He had no luck, and Invar carried Hephestus away. The group came down to the ground and met the others. They asked Trixus to help the elders communicate with Attabre. Anastasia's bird was sent to Cardonald to get her to come to the party for the teleportation circle to Riversmeet. Cardonald appeared. She still had not found Ruby Eye and could not find Errol either; perhaps they were not on the same plane. Cardonald said Hartwall meant a lot to her. The notes ask which one, and then mention Icefang: things would not be as good as they are without him. Cardonald gave Geldrin all of the teleportation circles: seven prisons with no defences; a lab with uncertain defences; three Grand Towers locations, namely factory, control room, and meeting lounge; a gate at the mountains earthwise of Coalmount Hills in Dunnendale; copper mines at Arrofarc; an impact site earthwise of Goldenswell; the Menagerie at Riversmeet; Ashhellier; and five pylons, with Aegis on Sands marked broken. The day ended with the note that Dirk and Anastasia had a good night. # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Harthall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Harthall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Harthall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Hartwall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Hartwall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Hartwall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. -Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Harthall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snow Sorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. +Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Hartwall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snow Sorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. -Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Harthall, Jin Woo's room, the pub called "11th Duke of Harthall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Snowsorrow / Snow Sorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Harthall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. +Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Hartwall, Jin Woo's room, the pub called "11th Duke of Hartwall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Snowsorrow / Snow Sorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Hartwall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snow Sorrow, gold dragons, Benu, Trixus, Garadwal, Perodita, Hephestos as a soul, and Morgana as a crow. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Harthall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadwal's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. +Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Hartwall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadwal's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. -Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Harthall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. +Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Hartwall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. @@ -95,9 +95,9 @@ Strategic resources and plans mentioned include the information recovered from l Memories and documents began returning after The Mother was killed. The full set of recovered documents, what is still blocked, and why the memory restoration started about a week ago remain open. -Grimby the 3rd's story connects Klesha, a silvery-green Envoy, murdered townsfolk, Pine Springs, a huge sparkling-electric bird, Harthall-like words, and a missing goat man behind a door. The exact chronology, identity of Shriek, and link to Envy remain unclear. +Grimby the 3rd's story connects Klesha, a silvery-green Envoy, murdered townsfolk, Pine Springs, a huge sparkling-electric bird, Hartwall-like words, and a missing goat man behind a door. The exact chronology, identity of Shriek, and link to Envy remain unclear. -Wroth trapped Envy in Mama Harthall's head the way Envy is in Ruby Eye's. This suggests Envy can be contained inside people or minds, but the mechanism and current risk to Mama Harthall and Ruby Eye are unresolved. +Wroth trapped Envy in Mama Hartwall's head the way Envy is in Ruby Eye's. This suggests Envy can be contained inside people or minds, but the mechanism and current risk to Mama Hartwall and Ruby Eye are unresolved. The scroll phrase "In her gaze, End of Days" joined the Benu book's warnings: "One more glance a death dance," "one brief look last breath look," and "In her stare Bones laid bare." These warnings must be preserved with Valentenshide / Valentenhide. @@ -121,7 +121,7 @@ Shurling reported that the Chorus knew the entrance to Grincray but needed to go Something is still preventing all lost knowledge from being retrieved. This blocker may be connected to flesh-crafting wands, memory interference, or barrier magic. -Lady Hartwall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Harthall, Perodita, and Snow Sorrow remain unresolved. +Lady Hartwall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Hartwall, Perodita, and Snow Sorrow remain unresolved. The Menagerie, formerly the mage school, is locked down by mages who did not return to Grand Towers. Emi's dark-skinned elf apprentice, Joy's dislike of him, and Browning's contradictory reputation are important unresolved leads. diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index 137f176..1895a2d 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -24,7 +24,7 @@ complete: true Day 44 began with a statue of Morgana being built as the party woke up, though none of them knew who it was. There was also an incomplete report, recorded only as "Report fr[unclear]." -Cardonald had a familiar give her a report that might help with the Howling Tombs. A group of adventurers had been tinkering around and found Harthall's old lab and a key that might help gain access to the tombs. Cardonald's familiar was going with them and would report if anything else was discovered. +Cardonald had a familiar give her a report that might help with the Howling Tombs. A group of adventurers had been tinkering around and found Hartwall's old lab and a key that might help gain access to the tombs. Cardonald's familiar was going with them and would report if anything else was discovered. One of Geldrin's scrolls was an arcane form of Draconic and extremely powerful, with a teleportation nature. A Draconic addendum said it might help the party understand where "they" went because it had a seeing aspect. The party teleported to Riversmeet, arriving on the outskirts in a meadow area. They found the ruins of a house that looked melted rather than naturally weathered. A gravestone stood to the left of the house. This was Ruby Eye's house, where his wife had been killed. @@ -34,7 +34,7 @@ The party asked where Lady Igraine was. They learned that her manor house was on The party tried to dispel the magic and get through. Geldrin used Mold Earth to get under the hedge and sent his familiar to look around the outside of the building. The building looked good, but many cages had signs that things had broken out, including griffon, dragon, wolf, and human cages, each with door handles. When the familiar tried to open one cage, it was frazzled. The party went through the hole Geldrin dug and entered the grounds. Invar looked into a window and disappeared. Geldrin disintegrated the door and had a vision of Valentinheide killing Emi's wife. Dirk disappeared, apparently banished. Geldrin appeared to be enrolling in mage school. The names Acroneth, Crindler, Belocoose, and a sphinx on another plane were noted. After killing an acid beast, the party entered the building. They were hit by a fireball from an invisible foe. They knocked three times on the Divination wall and got stairs. -They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter was in Geldrin's year and was Valent's daughter Arreanae. The word "Mum" was noted. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Tortish Harthall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. +They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter was in Geldrin's year and was Valent's daughter Arreanae. The word "Mum" was noted. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Tortish Hartwall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. The fourth-year students were causing issues. They were from Broken Bounds. Principal Grey had a letter closing the school and transferring students to Grand Towers from Browning, dated 47 AD. A jade or grey object on the desk moved at points. Dirk spoke to it in Aquan. Dribble was in there and acted as if something was swelling this energy. Drawers opened with the head teacher's necklace. A fresh water elemental was released and agreed to join the party for a while around the school. The infirmary and head teacher's office seemed to be on a different plane. The door back to the school led to a different room. @@ -48,15 +48,15 @@ The party learned that Lord Hacethorn had been the last potion and herb teacher Isobanne told the party they were late. Eliana tried to keep the door open, was spotted, and was sent to detention on the fifth floor. An eighteen-year-old human man named Enis, who had been called Thomas, was there, along with a girlfriend or first-year called Hannah. Joy was also noted. Dirk reached the infirmary and asked Nurse Cardonald for the date: the 3rd Sereneday of Hummeron, 2968 AC, or 32 BD. Mama Cardonald thought Enis was a bad influence on her daughter because he was always in detention. -At the end of class, Bosh and Cardonald went to the study hall and pulled out a book. A dragon skull named Mr Moreley covered the study hall. Geldrin spoke to the dragon, a gold dragon. Geldrin showed him the ancient dragon scroll. Mr Moreley was confused because it was something still being worked on, and he said he would consult the Gold Dragon Council because he thought Harthall was keeping things from them. Ruby Eye and Cardonald were eavesdropping and wanted to ask Geldrin something. Ruby Eye went to speak to him. His final project was to remove his eye. He asked Geldrin to join them. Everard, Thomas, and Valenth were named. A book about Grand Tower was written in god language; when the party tried to read it, they got a vision of the top of the tower. Cardonald was working on automations and wanted to do something for the head teacher, then a bird and a cat. They wanted to become famous. Ruby Eye's parents wanted him to follow a priestly path. Mama Cardonald was good friends with some of the Thinglaens / Goliaths. They were currently in the automations. She could not speak to them, and they were not one of the four usual elementals; she thought they were light. +At the end of class, Bosh and Cardonald went to the study hall and pulled out a book. A dragon skull named Mr Moreley covered the study hall. Geldrin spoke to the dragon, a gold dragon. Geldrin showed him the ancient dragon scroll. Mr Moreley was confused because it was something still being worked on, and he said he would consult the Gold Dragon Council because he thought Hartwall was keeping things from them. Ruby Eye and Cardonald were eavesdropping and wanted to ask Geldrin something. Ruby Eye went to speak to him. His final project was to remove his eye. He asked Geldrin to join them. Everard, Thomas, and Valenth were named. A book about Grand Tower was written in god language; when the party tried to read it, they got a vision of the top of the tower. Cardonald was working on automations and wanted to do something for the head teacher, then a bird and a cat. They wanted to become famous. Ruby Eye's parents wanted him to follow a priestly path. Mama Cardonald was good friends with some of the Thinglaens / Goliaths. They were currently in the automations. She could not speak to them, and they were not one of the four usual elementals; she thought they were light. Valenth was in an extra enchantment lesson, and Ruby Eye was in necromancy. Geldrin and Morgana went to the necromancy lesson. The class was full and everyone seemed to have assigned seats, but nobody came to claim the seats the party used. Ruby Eye was drawing Mr Moreley and gave the same spell to reincarnate himself. Dirk and Invar spoke to a bald man, perhaps a [uncertain: Tory? teacher?], who tried to find them on the list and found their timetables at 14:00. They went to get robes. Dirk was Fire House Eltur as Frederick Sims. Invar was Earth House Intor. The robes also had a hammer and shield because the Hammerguards were patrons of the school, granting certain privileges, extra embroidery, and 10% off the tuck shop. -After detention, Eliana reappeared in the first-year rec room. A half-orc named Grisnak showed them to the cloakroom. Orcs were being relocated as part of the peace, as were gnolls and anyone considered uncivilised. The list had no record of Eliana because Eliana's race did not exist yet. Eliana gave the name Evalina Harthall. The robe did not fit because it was made for a human, so a new robe was requested. Miana / Evalina was assigned Air, with extra embroidery, [unclear], and a flag. +After detention, Eliana reappeared in the first-year rec room. A half-orc named Grisnak showed them to the cloakroom. Orcs were being relocated as part of the peace, as were gnolls and anyone considered uncivilised. The list had no record of Eliana because Eliana's race did not exist yet. Eliana gave the name Evalina Hartwall. The robe did not fit because it was made for a human, so a new robe was requested. Miana / Evalina was assigned Air, with extra embroidery, [unclear], and a flag. The party went to history. The teacher's voice was familiar: an older man, Lord Bleakstorm. The lesson concerned sisters who fell out, one Far Grove city, Waterrose, and Great Farmouth, which was very private. Children were not told their histories. Admonishions came from their lots. A fortyish human said he had been travelling with a grove for hundreds of years, perhaps over one thousand years. A book, Tale of Two Sisters, and another, Lord of Bleakstorm and the Gnomes, were noted. Bleakstorm heard the whispers of holy Bright on the wind, helped his people, and Bright gave him the gift of everlasting. -Class ended, and everyone left except a person at the back: Everard Browning. He asked a question about Bleakstorm living forever, and about gnomes and their devices. Dirk asked about travelling through time. Bright does not work in a linear way; the note trails off after "if we were to go back in." Morgana was Earth, and Geldrin was Water. The party went to Enchanting, though Geldrin and Morgana thought they should be there but instead followed Ruby Eye. The Enchanting teacher was a bright-red-haired elf, Mr Cardonald. He called Eliana aside and asked whether it was true she was marrying Argathum while still seeing Harthall's childhood sweetheart. He warned that it was not good if she was seeing the prince behind Harthall's back. He said her form was interesting and he would not have recognised her if not for Truesight, which saw her as a dragon. He was concerned for her as a friend of his daughter and worried about breaking the Pact with the Gold dragons. +Class ended, and everyone left except a person at the back: Everard Browning. He asked a question about Bleakstorm living forever, and about gnomes and their devices. Dirk asked about travelling through time. Bright does not work in a linear way; the note trails off after "if we were to go back in." Morgana was Earth, and Geldrin was Water. The party went to Enchanting, though Geldrin and Morgana thought they should be there but instead followed Ruby Eye. The Enchanting teacher was a bright-red-haired elf, Mr Cardonald. He called Eliana aside and asked whether it was true she was marrying Argathum while still seeing Hartwall's childhood sweetheart. He warned that it was not good if she was seeing the prince behind Hartwall's back. He said her form was interesting and he would not have recognised her if not for Truesight, which saw her as a dragon. He was concerned for her as a friend of his daughter and worried about breaking the Pact with the Gold dragons. In Abjuration, the party went through a door and Enis was there. Ruby Eye asked Enis to show him the book, and Enis asked who was with him. Ruby Eye said he was thinking of asking them to join, and that they would test them later. Enis asked Geldrin for a moment and said Geldrin had been touched by a god, the "lady of destruction." Enis had been looking into some dark magic in a Divination classroom. Enchanting covered the dangers of cursed items: two healing potions, one cursed, and neither Identify nor Detect Magic could reveal which one. Students needed to be aware of mimics at all times. In Abjuration, no teacher appeared; the teacher should have been Mr Grey. Most people began leaving, but some stayed. @@ -94,21 +94,21 @@ Back in Mr Moreley's room, after breaking the void out, the dragon on the wall s # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Harthall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine, Hydrum, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Tortish Harthall / Tortish Harthwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Enis / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Harthall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. +People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Hartwall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine, Hydrum, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Tortish Hartwall / Tortish Harthwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Enis / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Hartwall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. -Groups and factions mentioned include the party, adventurers who found Harthall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. +Groups and factions mentioned include the party, adventurers who found Hartwall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. -Places mentioned include the location of Morgana's statue, Howling Tombs, Harthall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrum, Igraine, Larn, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snow Screen / Snowscreen, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. +Places mentioned include the location of Morgana's statue, Howling Tombs, Hartwall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrum, Igraine, Larn, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snow Screen / Snowscreen, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. Creatures and creature-like beings mentioned include oxen-horse crossbreeds, griffon, dragon, wolf, human cage subjects, the acid beast, water elemental Dribble, the fresh water elemental released by the party, four-armed vulture men, mindflayer-like wizard, gold dragon skull Mr Moreley, automations containing Thinglaens / light entities, a half-orc, orcs, gnolls, Bright and Valentenhule as elemental-plane queens, ice elementals, two green dragons including Emeraldus, the featureless woman holding Hannah, a silver dragon, the silver-green claw, Noxia-blood slime / green liquid, pixie in the green classroom object, Igraine elemental, baby Attabre spirit, gold / silver / copper / white dragons in the mural, baby sphinx / sixth sphinx, Mother hive for the worm, and the void entity / void orb. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Harthall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowscreen mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. +Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Hartwall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowscreen mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Enis recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. -Strategic resources and plans mentioned include the Howling Tombs lead through Harthall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. +Strategic resources and plans mentioned include the Howling Tombs lead through Hartwall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. # Clues, Mysteries, and Open Threads @@ -116,7 +116,7 @@ The statue of Morgana being built at the start of the day suggests her healing o The incomplete "Report fr[unclear]" remains unresolved. -Cardonald's familiar reported that other adventurers found Harthall's old lab and a key for the Howling Tombs. The tomb access, the lab's contents, and the adventurers' identities are open threads. +Cardonald's familiar reported that other adventurers found Hartwall's old lab and a key for the Howling Tombs. The tomb access, the lab's contents, and the adventurers' identities are open threads. Geldrin's powerful arcane Draconic teleport / seeing scroll may reveal where "they" went, but who "they" are and how to use it remain unclear. @@ -130,7 +130,7 @@ Invar and Dirk disappeared separately during the entry, Geldrin experienced old- The names Acroneth, Crindler, Belocoose, and the sphinx on another plane appear during Geldrin's enrollment effect and should be preserved, but their identities are unclear. -Matron Cardonald, Arreanae, Valent, Tortish Harthall, Humerous Torn, Principal Grey, and Browning all appear in the old school structure. Their relationships and exact historical dates matter for the Grand Towers / mage school history. +Matron Cardonald, Arreanae, Valent, Tortish Hartwall, Humerous Torn, Principal Grey, and Browning all appear in the old school structure. Their relationships and exact historical dates matter for the Grand Towers / mage school history. The fresh water elemental Dribble was trapped in a jade / grey desk object and felt energy swelling. The source of the swelling energy and Dribble's longer-term role are unknown. @@ -142,13 +142,13 @@ The four-armed vulture men making pots, the mindflayer-like observer, Dunner-sty The party entered the date 3rd Sereneday of Hummeron, 2968 AC / 32 BD. The relationship between this historical visit, current 1012 AD references, and the school planes remains unresolved. -Mr Moreley saw Geldrin's ancient dragon scroll as still being worked on and suspected Harthall was hiding things from the Gold Dragon Council. This suggests the party brought future knowledge into the past. +Mr Moreley saw Geldrin's ancient dragon scroll as still being worked on and suspected Hartwall was hiding things from the Gold Dragon Council. This suggests the party brought future knowledge into the past. Ruby Eye's final project was to remove his eye, and he asked Geldrin to join a group including Everard, Thomas / Enis, and Valenth. This appears to be a key origin point for later events. Cardonald's automations contained Thinglaens / Goliaths or light-like entities, not one of the four usual elementals. The ethical and magical nature of these automations remains unresolved. -Eliana's assumed identity as Evalina Harthall / Miana / Avalina, seen by Truesight as a dragon, triggered concern about Argathum, Harthall's childhood sweetheart, and the Gold Dragon Pact. Whether this is a past-life, disguise, stolen form, or time paradox is unresolved. +Eliana's assumed identity as Evalina Hartwall / Miana / Avalina, seen by Truesight as a dragon, triggered concern about Argathum, Hartwall's childhood sweetheart, and the Gold Dragon Pact. Whether this is a past-life, disguise, stolen form, or time paradox is unresolved. Lord Bleakstorm's lesson and the books Tale of Two Sisters and Lord of Bleakstorm and the Gnomes preserve history about Bright, Valentenhule / Valententhide, Great Farmouth, gnomes, merfolk, Grand Towers technology, and everlasting life. These are major lore threads. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index f91565c..375f3d4 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -30,7 +30,7 @@ Day 46 began in the old Riversmeet mage school / Menagerie after midnight. Morga The party found a first-year dorm with no bedding despite the late hour. In a possible surgical or experiment room, a horse lay cut open but still alive on a slab. Men with squid heads were speaking to an elf with green or moss-like hair. One said, "There's no need for her to be here." The elf replied that there was, with the meddlers around and her mother gone. This was identified as Willowispa. -The party tried using the broom to reach the kitchen, but the darkness worsened. The door disappeared, leaving two black holes with a black ring around them. A second attempt with the broom opened into a cathedral, with the door in the ceiling. Morgana tried to detect Dirk's father and felt they were in Harthall. The place had strange wood and a vacuum-like feel, and the holes then vanished. Morgana tried to leave a note saying they might have left Valententhide's home. She saw Valententhide, yelped, and asked if she was Lord Squall. Valententhide told someone to go warn someone. +The party tried using the broom to reach the kitchen, but the darkness worsened. The door disappeared, leaving two black holes with a black ring around them. A second attempt with the broom opened into a cathedral, with the door in the ceiling. Morgana tried to detect Dirk's father and felt they were in Hartwall. The place had strange wood and a vacuum-like feel, and the holes then vanished. Morgana tried to leave a note saying they might have left Valententhide's home. She saw Valententhide, yelped, and asked if she was Lord Squall. Valententhide told someone to go warn someone. The party eventually reached the kitchen. A salt pot would not move, but its top behaved like a safe dial. The sequence `6/11/10/13/7` opened it and revealed salt. Mr Moreley appeared from the well and said Evocation would make sense when they got there, with no point in riddles. @@ -104,21 +104,21 @@ The party went to "I'm the Drink," a dingy pub on the outskirts of the bridges. A half-elf entered, interrupted, and headed straight to Geldrin. He said there had been a setback to the plans: they had had a good working in the town hall, but less so after the scuffle. It was taking a lot of power, and someone might go there herself. There were many forgotten passages; people had gone missing using them. They needed reinforcement and thought the artifact had been hidden somewhere. They could not risk another abduction and had not found it when he was abducted. Mind magic had not been working properly since something happened at the school. He would get the town hall back under control and get others to look for the artifact, though they had no suspected location. He also reported the brothers were loose, perhaps with an undead sphinx. He was sixth in charge; numbers one through five were unaccounted for. He would speak to Garrick in another town. Lady Igraine had not been taken again. -The half-elf spoke to Garrick through a mirror and told him to get it for them. An hour later, a fifteen-year-old and an unknown man ran off, and the party chased them. They found him at the races, probably trying to get a new identity. The leads gained were that the Harthall artifact had been put in one of the prisons; Harthall was meant to be looking after mind effects and may have stopped her remembering; it was somewhere near Snowscreen; no team was currently checking it; some people near Pinesprings had been killed by adventurers; and of the brothers, one had disappeared while the other controlled an undead sphinx. +The half-elf spoke to Garrick through a mirror and told him to get it for them. An hour later, a fifteen-year-old and an unknown man ran off, and the party chased them. They found him at the races, probably trying to get a new identity. The leads gained were that the Hartwall artifact had been put in one of the prisons; Hartwall was meant to be looking after mind effects and may have stopped her remembering; it was somewhere near Snowscreen; no team was currently checking it; some people near Pinesprings had been killed by adventurers; and of the brothers, one had disappeared while the other controlled an undead sphinx. The party learned that Igraine had returned that morning, had two guards on her door, and was now missing. Terrance was fourth in charge and did not know the party had killed everything else in town. He thought they should leave town and reinforce the prisons. The mirror was in the seneschal's office. The fifth in charge, a greasy halfling, returned with "the mirror" and said they were all going to get on a boat and sail off. The party made him first in command. He took them to the quay, where people were loading things onto the boat. Moonbeam killed the greasy halfling, and Fireball struck the boat and incinerated everything. Diving into the water, the party found 50,000 gp worth of jade. No one seemed to come investigate. Morgana saw a white rabbit out of the corner of her eye. It had arrived on the back of the protector from the snowy area on the lectern and seemed to remember the party. Militia rewards were distributed at "I'm the Drink" and "The Olde Clay Jug." The party got the other half of the sending stone from the pub man connected to the Exchequer and gave it to the seneschal. At The Olde Clay Jug, they spotted a waitress carrying a tray with leaves. They could not ask to see Highgate, but asked her as she passed. She went through the "Earth hath no" door. The dwarf the party had been speaking to left, and another dwarf sat in his place. -Bollar men were looking for the party. He agreed to help the militia and find the missing townsfolk. Friends back home, including an ice dwarf, said a mutual friend sent out of the Barrier had taken the opportunity to do something before trying to get back in, had not found a way back, and had visited Lord Bleakstorm. A mirror hummed, and the back of a female lady's hair appeared. A cold voice said she could take the party there and was a friend. She wished for the same thing they sought and said any debts she perceived would be repaid. The party recognised the "end of all things" as Valententhide. She would let them use her pathways, wanted the artifact, and said the cost would be some identities, some eyes, and some pride. The party shut her off and decided to go to Harthall's lab after resting and eating chicken. +Bollar men were looking for the party. He agreed to help the militia and find the missing townsfolk. Friends back home, including an ice dwarf, said a mutual friend sent out of the Barrier had taken the opportunity to do something before trying to get back in, had not found a way back, and had visited Lord Bleakstorm. A mirror hummed, and the back of a female lady's hair appeared. A cold voice said she could take the party there and was a friend. She wished for the same thing they sought and said any debts she perceived would be repaid. The party recognised the "end of all things" as Valententhide. She would let them use her pathways, wanted the artifact, and said the cost would be some identities, some eyes, and some pride. The party shut her off and decided to go to Hartwall's lab after resting and eating chicken. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Enis, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Harthall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. +People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Enis, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Hartwall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. -Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Harthall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowscreen, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Harthall's lab, the prisons, and Lord Bleakstorm's location. +Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Hartwall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowscreen, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Hartwall's lab, the prisons, and Lord Bleakstorm's location. Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the invisible entity, the 40-foot memory-destroying alien creature, spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child, undead sphinx, and possible tainted dragons. @@ -128,11 +128,11 @@ Items, documents, and physical resources mentioned include the broom, salt pot s Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadwal, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadwal's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valententhide's proposed pathway magic. -Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Enis, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Harthall artifact hidden in one of the prisons near Snowscreen, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. +Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Enis, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Hartwall artifact hidden in one of the prisons near Snowscreen, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. # Clues, Mysteries, and Open Threads -The Menagerie / old mage school still contains layered rooms, planar routes, time effects, living or dead experiment subjects, traps, and spiritual memory interference. The precise mechanism joining Harthall, Valententhide's home, the cathedral, the kitchen, the basement, and historical school spaces remains unresolved. +The Menagerie / old mage school still contains layered rooms, planar routes, time effects, living or dead experiment subjects, traps, and spiritual memory interference. The precise mechanism joining Hartwall, Valententhide's home, the cathedral, the kitchen, the basement, and historical school spaces remains unresolved. Willowispa's statement about her mother being gone, the possible male and female Willowispa voices, the hidden things unknown to dragons, and the reference to Mother remain active clues. @@ -166,10 +166,10 @@ The baby sphinx / goliath child was reincarnated too quickly by someone else and Riversmeet town hall was infiltrated through false officials, altered memories, rats, lamias, Bartholomew, Terrance, Williams, and unknown chains of command. The missing Lady Igraine, missing townsfolk, and remaining infiltrators are unresolved. -The Harthall artifact is said to be hidden in one of the prisons near Snowscreen, tied to Harthall's work on mind effects. Which prison holds it, and why it matters to the infiltrators, remains unresolved. +The Hartwall artifact is said to be hidden in one of the prisons near Snowscreen, tied to Hartwall's work on mind effects. Which prison holds it, and why it matters to the infiltrators, remains unresolved. The huge jade cache on the boat, the 500 gp jade purchase, jade earrings, and jade disguise point to a coordinated resource or control mechanism. The "Earth hath no" door, Highgate request, waitress with leaves, and dwarf replacement are unresolved leads at The Olde Clay Jug. -Valententhide offered pathways to Harthall's lab or the party's goal but demanded the artifact and warned of costs in identities, eyes, and pride. The party rejected the immediate offer and planned to rest, eat chicken, and go to Harthall's lab. +Valententhide offered pathways to Hartwall's lab or the party's goal but demanded the artifact and warned of costs in identities, eyes, and pride. The party rejected the immediate offer and planned to rest, eat chicken, and go to Hartwall's lab. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index a2ddb91..7e28795 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -30,7 +30,7 @@ complete: true # Narrative -Day 47 began after the party decided to go to Harthall's lab. They tried to put rations into the bag of holding while escaping back to the ground. Morgana set something free in the forest; it was called "No chart." The notes then report that adventurers had taken Lady Hartwall's diary and killed the elf who had been taking woodcutters from Pinesprings. +Day 47 began after the party decided to go to Hartwall's lab. They tried to put rations into the bag of holding while escaping back to the ground. Morgana set something free in the forest; it was called "No chart." The notes then report that adventurers had taken Lady Hartwall's diary and killed the elf who had been taking woodcutters from Pinesprings. In the ransacked room, an untouched picture showed a halfling girl with a silver-haired girl in a field of white roses. The picture had been altered: investigation revealed that the other side of the girls had been changed, and another girl had originally been in the picture. Draconic runes on the frame included the word "Preserve." @@ -40,9 +40,9 @@ An obsidian statue had no face but suggested a gracious god, with an eyestone in When the party checked the crack, someone became petrified by it and instinctively threw the flute at it. The crack looked as if something spherical had hit it. Dirk checked the urn, found it contained dust, and tried to speak to it. The phrase "In her strange bones laid bare" was recorded. Nearby metal looked tarnished, odd for silver; when wiped, it revealed crystallised jade dust, as if silver were turning into jade. Geldrin cleaned both statues and became lost looking at one. -An ornate door led to a long throne room. One throne was Harthall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadwal. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. +An ornate door led to a long throne room. One throne was Hartwall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadwal. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. -A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Boorning came in a day later and left with a key. The door said Harthall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." +A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Boorning came in a day later and left with a key. The door said Hartwall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." Eliana and Joshua / Dothral felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. @@ -68,9 +68,9 @@ Morgana found white rose powder that smelled of visions. Of three chests, one fr The next room was light and airy, with stone houses on stilts. Its door said, "Not time for flying lessons." The notes preserve the phrase "Not time for me never, not any more." Invar broke the door. The room contained nothing obvious, but pictures lined the walls, a circle lay down the ceiling, a copper sunrise appeared, and the ceiling looked as if it should open. The baby returned to the previous room and left with the memory orb, which did not disappear. -Pictures in the room included Avalina, Harthall, and others. The baby put memories on the wall and said, "No, maybe it time." The images showed a huge black dragon with flies buzzing around its horn in a desert near a large tower. It turned into a human in ornate clothing. A drow or green dragon attacked the black dragon and was winning, then pulled out a jar. A beautiful elf was propelled into the sky and crashed into the Barrier. The notes continue that the figure pushed through the Barrier. A woman said, "not any more" and "that's your form now." He could come through because he had the gate. +Pictures in the room included Avalina, Hartwall, and others. The baby put memories on the wall and said, "No, maybe it time." The images showed a huge black dragon with flies buzzing around its horn in a desert near a large tower. It turned into a human in ornate clothing. A drow or green dragon attacked the black dragon and was winning, then pulled out a jar. A beautiful elf was propelled into the sky and crashed into the Barrier. The notes continue that the figure pushed through the Barrier. A woman said, "not any more" and "that's your form now." He could come through because he had the gate. -The party found a room labelled or associated with Laylistra, then an entrance chamber to a school where everyone was present and Eliana wore a robe with Harthall crests. In a girls' room, three girls climbed out the window and looked over the urn. One daughter laid a ribbon from her doll and told her sister, "my gift is better than yours." A key was called poopoo head. The other replied, "no, you're the poo poo head, Eliana!" and pushed her into the wall. The baby said jade had made Eliana green. +The party found a room labelled or associated with Laylistra, then an entrance chamber to a school where everyone was present and Eliana wore a robe with Hartwall crests. In a girls' room, three girls climbed out the window and looked over the urn. One daughter laid a ribbon from her doll and told her sister, "my gift is better than yours." A key was called poopoo head. The other replied, "no, you're the poo poo head, Eliana!" and pushed her into the wall. The baby said jade had made Eliana green. The next door led to a kitchen of artificial yellow stone with crops. Under the fridge was a hidden door handle and a note reading, "in case you lock yourself in again, Greensleeves." Eliana knew Greensleeves was a halfling chef but did not know why. Another door opened to a lighthouse with a castle in the middle, possibly Freeport, and a dining room with a twelve-seat table. Everything was eclectic across many races. The chairs seemed more sat in than the place settings suggested. A cutlery box had a false bottom containing a silver necklace with a green jade heart-shaped pendant carved in Celtic style. Eliana had not seen Avalina wearing it, and the chain did not feel like part of the pendant. A loose stone under the table hid an invisible handle. Dotharl looked out of the room and saw an invisible human man with holes for eyes. @@ -106,15 +106,15 @@ At another prison, a standard carved door showed eight serpents with different h One dark door now held nothing; it had been a prisoner of a different time. Another dark door led to an ancient dwarven hold, not a settlement. Opening it revealed a massive shaggy blue aurora. Geldrin promised to return and let it out when he learned how to power the dome without all the elementals. The cellmate had been chosen to turn off the gusts and could turn them back on when he pleased. -At the snake door, the party chipped at the ice and one head spoke. It knew the door at Harthall's lab for Enis and needed a Harthall-style door handle and archway. The goat was Dorion, the bull was Tim, and the lion was Geoffrey. The door's conditions were to use the arch, oil the hinges, and not break it. It called Dotharl the door guard for this prison. Geoffrey wanted a new body before allowing them in. The party agreed not to take or break anything. Inside, the walls were intricately carved with faces showing different expressions, except for eyeballs or hair. +At the snake door, the party chipped at the ice and one head spoke. It knew the door at Hartwall's lab for Enis and needed a Hartwall-style door handle and archway. The goat was Dorion, the bull was Tim, and the lion was Geoffrey. The door's conditions were to use the arch, oil the hinges, and not break it. It called Dotharl the door guard for this prison. Geoffrey wanted a new body before allowing them in. The party agreed not to take or break anything. Inside, the walls were intricately carved with faces showing different expressions, except for eyeballs or hair. -The floor was a mosaic of seaward stone, purple crystal, and other materials. The archway matched the Harthall lab archway, and the prison symbol said "home." A seaward-stone table had veining like an unrecognised map. A hat stand held a cloak that made the wearer invisible. Bookshelves held books about the moon and a nursery rhyme book about Valententhide. One unknown-author book, `Palace of Valententhide`, said her palace was forged in the deep sky, in a domain outside mortal realms, on the crimson. Its walls were faces she did not have, the air was unbreathable unless visitors brought their own, and when the gods were banished to another plane, Valententhide used a loophole to stay at this palace. +The floor was a mosaic of seaward stone, purple crystal, and other materials. The archway matched the Hartwall lab archway, and the prison symbol said "home." A seaward-stone table had veining like an unrecognised map. A hat stand held a cloak that made the wearer invisible. Bookshelves held books about the moon and a nursery rhyme book about Valententhide. One unknown-author book, `Palace of Valententhide`, said her palace was forged in the deep sky, in a domain outside mortal realms, on the crimson. Its walls were faces she did not have, the air was unbreathable unless visitors brought their own, and when the gods were banished to another plane, Valententhide used a loophole to stay at this palace. -Geldrin felt urged to put the book on the table. The table's blue veins morphed to look like the moon. The nursery rhyme book showed a castle, perhaps in Harthall escape style. The coat stand had invisible eyes on it. The cloak, when invisible, showed moving starscapes to observers but not to the wearer. When Geldrin placed other books on the table, Enis's spellbook made it blank, then showed sleeping men, then a girl in a dome, then an endless well with more at the bottom, then two grinning figures guarding a door with weapons, perhaps a picture of Enis's soul. A Mythos spellbook showed a pyramid, temples beside a sphynx, an egg, and Garadwal. +Geldrin felt urged to put the book on the table. The table's blue veins morphed to look like the moon. The nursery rhyme book showed a castle, perhaps in Hartwall escape style. The coat stand had invisible eyes on it. The cloak, when invisible, showed moving starscapes to observers but not to the wearer. When Geldrin placed other books on the table, Enis's spellbook made it blank, then showed sleeping men, then a girl in a dome, then an endless well with more at the bottom, then two grinning figures guarding a door with weapons, perhaps a picture of Enis's soul. A Mythos spellbook showed a pyramid, temples beside a sphynx, an egg, and Garadwal. A tome of dome making displayed strange curving patterns, a "magnet curvature pattern," Grand Towers, a crystal, mountains, the atmosphere, and a giant flaming rock. Geldrin's spellbook showed a massive dragon, Perodita, now with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the windows. Other pages showed trees, then nothing, then a two-lodge logging area. The table spoke the words on the page. Another image showed a dragon lady and two dragon men, possibly silver, white, or gold. `Flight of the Gold` showed an enormous palace with tiny dragons flying around, a snow screen, flowers and trees, no snow, and a temperate appearance. -The archway's "glittering" rune glowed, and men stepped through the portal. One was human-ish and old, with golden blond hair, a very long moustache, golden eyes, ornate old clothing, sandals, and a walking stick. He asked where the scroll was and named himself Aurum Prudence. He disliked Dotharl. He said the only portal activation in the last thousand years had been the cat. He thought the scrolls had all gone with them when everything was crazy. Pacts had been broken, perhaps Harthall and Icefang, and they had decided to take charge and move the city. +The archway's "glittering" rune glowed, and men stepped through the portal. One was human-ish and old, with golden blond hair, a very long moustache, golden eyes, ornate old clothing, sandals, and a walking stick. He asked where the scroll was and named himself Aurum Prudence. He disliked Dotharl. He said the only portal activation in the last thousand years had been the cat. He thought the scrolls had all gone with them when everything was crazy. Pacts had been broken, perhaps Hartwall and Icefang, and they had decided to take charge and move the city. Aurum suggested the party come back with him so he could show them around, after which they could decide whether he could have the scroll. The party took the cloak. They went to Snowscreen, where the archway had different runes. The building was enormous, with grass and woodlands below. It was a warm patch and blackout time, but it was midday. The Tri-moon was visible at the wrong time. A copper dragon landed nearby and entered the building. The city was now called Sunsoreen. A door was carved with a female sphynx face identified as Bynx's mother. Aurum took the party inside the palace to the council first. The council doorway was enormous and impressive, carved with a white dragon and sphynx. Geldrin had the scroll explaining how they moved the city to the other side of the earth. @@ -138,29 +138,29 @@ Aurum left, and Hayhearn said that explained a lot. Bynx cast Truesight and foun The party returned to the frost prison. Geldrin tried to turn the portal off but accidentally activated another location: a square black obsidian room with no doors. Geldrin found a door, placed a hand on it, and opened it into a black corridor in Valententhide's house. The portal had one charge left, shared between portals and resetting once a day. When the party opened the portal and tried to go through, they saw Valententhide and passed out. Three went through before the portal closed. Morgana heard Eliana and felt cold hands on her shoulder. -The party then used the right blade to go to Harthall's lab. They gave the ice elemental ball to the fire elemental in the fireplace, cast Dispel Magic on the rift in the fireplace, and closed the portal to the fire elemental. Page 245 then begins Day 48, so Day 47 is complete at this point. +The party then used the right blade to go to Hartwall's lab. They gave the ice elemental ball to the fire elemental in the fireplace, cast Dispel Magic on the rift in the fireplace, and closed the portal to the fire elemental. Page 245 then begins Day 48, so Day 47 is complete at this point. # People, Factions, and Places Mentioned People and name-like figures mentioned include Morgana, Lady Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. -Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Harthall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Harthall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. +Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Hartwall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Hartwall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. -Places mentioned include Harthall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `help you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Harthall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowscreen / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. +Places mentioned include Hartwall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `help you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Hartwall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowscreen / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. Creatures and creature-like beings mentioned include the magical black green-eyed cat, the sphynx / Bynx, the goliath baby, a crab in Invar's bag, the lion-headed elven body, the huge black dragon with flies, the drow or green dragon, a copper dragon, a dragon lady and dragon men, a white dragon, red and blue dragons, a fire elemental, ice elemental, frost elemental, massive shaggy blue aurora, elemental prisoners, insects speaking for Cacophony, and invisible hooded figures, one of whom became a copper dragon. # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the bag of holding, Lady Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Harthall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Harthall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Harthall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. +Items, documents, and physical resources mentioned include the bag of holding, Lady Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Hartwall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Hartwall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Hartwall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. -Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Harthall had two daughters; the note hiding items in a cell and a false teddy; Bynx's memory of a lion-headed "real daddy"; the Harthall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming Eliana as Eliana Hartwall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. +Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Hartwall had two daughters; the note hiding items in a cell and a false teddy; Bynx's memory of a lion-headed "real daddy"; the Hartwall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming Eliana as Eliana Hartwall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. # Clues, Mysteries, and Open Threads -The altered white-rose picture and its `Preserve` rune imply a third girl was removed or hidden from memory or history. The identity of the missing girl and how she relates to Eliana, Joy, Hannah, and Harthall's daughters remains unresolved. +The altered white-rose picture and its `Preserve` rune imply a third girl was removed or hidden from memory or history. The identity of the missing girl and how she relates to Eliana, Joy, Hannah, and Hartwall's daughters remains unresolved. The note about "No chart," the forest release, and the adventurers who took Lady Hartwall's diary are unexplained. @@ -170,7 +170,7 @@ Argathum's urn, the offering flute, the white rose, the amethyst orb, the frosty The statues turning silver into crystallised jade dust, the green jade heart pendant, prior jade purchases, and Eliana being turned green by jade remain connected but unresolved. -The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for Eliana in a dress, Mr Boorning's key, and Harthall's unnamed baby daughters remain active clues. +The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for Eliana in a dress, Mr Boorning's key, and Hartwall's unnamed baby daughters remain active clues. The mind fog, the voice telling Invar "I will not lose you again my son," Dirk's vision of Joy, Errol's warning that information was being lost, and Platinum's belief that the memory wipe missed the door all point to ongoing memory-erasure machinery. @@ -182,7 +182,7 @@ The desert-badlands room showed Noxia fighting Sierra, while later plinths named The black dragon with flies, drow or green dragon attacker, jar, beautiful elf, Barrier crash, and statement "that's your form now" appear to explain a transformation and Barrier passage, but the figures are not fully identified. -The girls' room named Eliana and involved a ribbon, doll, urn, and the phrase "poopoo head." This may connect Eliana to Harthall's daughters and the missing preserved girl. +The girls' room named Eliana and involved a ribbon, doll, urn, and the phrase "poopoo head." This may connect Eliana to Hartwall's daughters and the missing preserved girl. Cacophony's tax-collector claim, Throngore vision, blue object, silver dragon, and future payment due remain unresolved and may mark a supernatural debt. diff --git a/data/4-days-cleaned/day-48.md b/data/4-days-cleaned/day-48.md index 0cf784a..f91e9f7 100644 --- a/data/4-days-cleaned/day-48.md +++ b/data/4-days-cleaned/day-48.md @@ -20,7 +20,7 @@ complete: true # Narrative -Day 48 began after the party closed the fire elemental rift in Harthall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed Eliana being a Harthall, Bynx said Eliana was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping Eliana from memories in the same way Enis's wife Hannah had been erased. +Day 48 began after the party closed the fire elemental rift in Hartwall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed Eliana being a Hartwall, Bynx said Eliana was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping Eliana from memories in the same way Enis's wife Hannah had been erased. Errol returned and reported that things were bad after a battle. Gardoil was not present because she had gone to do something, and reinforcements were needed from the capital. The party tried to travel by broom to Azureside and found themselves in a place of completely blue sky, passages, vanishing doors, lush grass, mushrooms, and sky below. A squirrel spoke with them, did not know where it was, and said a floppy bronze-coloured lizard looked after him. The squirrel sent a magpie to fetch it. A metallic brass-looking dragon approached. @@ -58,9 +58,9 @@ When the party took the crystal to the dwarves, they smiled and passed happily i Geldrin used the Skull of Iresmun to open the dome slightly. The figure turned toward the hole. It said it was no one, lost, once part of Valententhide, and unsure what it was now. Thomas had put it in the dome and taken what had been there. It explained that the elemental planes were a highway, that a pact had made the world but left too much highway, and that the Vessel of Divinity had made beings into gods, stripping some of that away and leaving lostness behind. It said it could not be allowed to keep the vessel, wanted to help, did not think deception would help, and would answer three questions. -The party asked what would happen if Valententhide were reformed and why everyone thought Eliana was a Harthall. Morgana heard a voice saying the vessel was theirs. Dirk saw Joy, who warned not to trust the figure because it took her mum. A dwarf voice warned that the party's tormentors were coming. Dothral had a vision of his grandfather saying the figure would take his place and telling Geldrin to remove the skull from the dome, then saying "They are all lost" in a voice that was not his. Dirk asked the ancestors what would happen if they let her out and received a positive response. +The party asked what would happen if Valententhide were reformed and why everyone thought Eliana was a Hartwall. Morgana heard a voice saying the vessel was theirs. Dirk saw Joy, who warned not to trust the figure because it took her mum. A dwarf voice warned that the party's tormentors were coming. Dothral had a vision of his grandfather saying the figure would take his place and telling Geldrin to remove the skull from the dome, then saying "They are all lost" in a voice that was not his. Dirk asked the ancestors what would happen if they let her out and received a positive response. -The room darkened when Invar said "original." Darkness closed in, stars appeared, and Morgana's Daylight revealed clouds and sunrise at the edge of the spell. A shadowy figure appeared on the far wall. The party opened the dome and let her out. When asked why everyone thought Eliana was a Harthall, she answered, "Because you are." Stoven, Stuart, and Simon arrived, shouting about their stuff being disturbed. Simon was strangely pieced together. They disliked Valententhide and wanted her, but the party refused and argued that their bargain to find Rubyeye had not been fulfilled. Simon communicated with Throngore, who was happy to meet the party and would see them soon. Morgana teleported the party to `[coded]`, a wood with bees, apples, and snow, with a teleport circle made of furs, rugs, and bird poo. Geldrin felt as if he had made it, though not as he would make it; Morgana thought she had placed the memory there but not from her current self. The party went to Morgana's hut at 00:00. Page 257 then starts Day 52, so Day 48 is complete at that point. +The room darkened when Invar said "original." Darkness closed in, stars appeared, and Morgana's Daylight revealed clouds and sunrise at the edge of the spell. A shadowy figure appeared on the far wall. The party opened the dome and let her out. When asked why everyone thought Eliana was a Hartwall, she answered, "Because you are." Stoven, Stuart, and Simon arrived, shouting about their stuff being disturbed. Simon was strangely pieced together. They disliked Valententhide and wanted her, but the party refused and argued that their bargain to find Rubyeye had not been fulfilled. Simon communicated with Throngore, who was happy to meet the party and would see them soon. Morgana teleported the party to `[coded]`, a wood with bees, apples, and snow, with a teleport circle made of furs, rugs, and bird poo. Geldrin felt as if he had made it, though not as he would make it; Morgana thought she had placed the memory there but not from her current self. The party went to Morgana's hut at 00:00. Page 257 then starts Day 52, so Day 48 is complete at that point. # People, Factions, and Places Mentioned @@ -104,7 +104,7 @@ The Vessel of Divinity, elemental planes as highway, pacts that created the worl Joy's warning that the figure took her mum conflicts with the ancestors' positive response to freeing it. The consequence of freeing this lost part of Valententhide remains uncertain. -The answer "Because you are" to why everyone thinks Eliana is a Harthall is a direct but unexplained identity confirmation. +The answer "Because you are" to why everyone thinks Eliana is a Hartwall is a direct but unexplained identity confirmation. Simon, Stoven, and Stuart still want Valententhide. Simon communicated with Throngore, who promised to meet the party soon. diff --git a/data/4-days-cleaned/day-52.md b/data/4-days-cleaned/day-52.md index 1c39b7c..5e2e854 100644 --- a/data/4-days-cleaned/day-52.md +++ b/data/4-days-cleaned/day-52.md @@ -14,7 +14,7 @@ complete: true # Narrative -Day 52 began at Stonedown. Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. A memory showed dragons talking about a beehive being poked and why the dome had been created. Questions arose about Eliana fully regaining memories of being a Harthall. Recovering what was lost would not be easy, because the memories aligned with broader memories tied to the pact with the god of the lost. Dothral saw snippets of Eliana's true form and the need to do something with the J. +Day 52 began at Stonedown. Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. A memory showed dragons talking about a beehive being poked and why the dome had been created. Questions arose about Eliana fully regaining memories of being a Hartwall. Recovering what was lost would not be easy, because the memories aligned with broader memories tied to the pact with the god of the lost. Dothral saw snippets of Eliana's true form and the need to do something with the J. The notes state that a price was paid by dragonkind, and it was not taken well by those who remained and still had power. Payment was not asked for because the party had not given her to the goats. The party asked whether looking at the night sky and feeling serene was part of Valententhide. The answer suggested it was. Reuniting that part with her would not completely change Valententhide, but would soften her edges, making her a goddess of destruction again rather than a being who mindlessly murdered people on the road. @@ -56,7 +56,7 @@ Creatures and creature-like beings mentioned include Valententhide as goddess or Items, documents, and physical resources mentioned include the dome, pacts linked to the dome, prisons linked to the dome, broom, oath or holding-elemental protection, dome energy, pathway to Bridget, screwdriver, red crystal and divot, curved blade, button, cricket cage, raven cage, steaming bowl of gruel, playing cards, bowl, dice, magic poker setup, twenty cricket/raven gold coins, chessboard lights, orbs, `[unclear: geesie?]`, scythe, orb present from Bridget, gold Valententhide, the crystal Geldrin lost, and the fishing expedition reminder. -Spells, visions, and magical effects mentioned include memory retrieval about being Harthall, true-form snippets, opening a pathway to Bridget's domain, Knock, magically linked rooms / walls, Bridget making a door for Morgana, Medinner's reenactment show, movement by intent in Bridget's realm, telepathic or intrusive voice to Dotharl, Bridget's ability to take and smash the orb, and divinely framed choices for party members. +Spells, visions, and magical effects mentioned include memory retrieval about being Hartwall, true-form snippets, opening a pathway to Bridget's domain, Knock, magically linked rooms / walls, Bridget making a door for Morgana, Medinner's reenactment show, movement by intent in Bridget's realm, telepathic or intrusive voice to Dotharl, Bridget's ability to take and smash the orb, and divinely framed choices for party members. Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridget's offer to take gold Valententhide, the trapped kin's requested freedom, Dotharl's humanity choice, Eliana's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. @@ -64,7 +64,7 @@ Strategic resources and plans mentioned include the implication that destroying Dothral's possible father Aneurascarle, his status as an Excellency, and Squeall as god of the lost / grandfather remain unresolved family and divinity clues. -The pact with the god of the lost appears tied to Eliana's lost Harthall memories and true form. The J mentioned in Dothral's snippets remains unexplained. +The pact with the god of the lost appears tied to Eliana's lost Hartwall memories and true form. The J mentioned in Dothral's snippets remains unexplained. Dragonkind paid a price for the dome or related pact, and the remaining dragons still have power. The exact price and consequences remain unresolved. diff --git a/data/4-days-cleaned/day-56.md b/data/4-days-cleaned/day-56.md index 7ef2efd..59f8e3d 100644 --- a/data/4-days-cleaned/day-56.md +++ b/data/4-days-cleaned/day-56.md @@ -26,21 +26,21 @@ Bynx told Dirk his brothers were coming and to close the door. When Eliana shut The wizards altered the map, saying they were preparing for fuel incoming. The map appeared recently reconfigured for another purpose. They activated the table, and a giant bearded head, Browning, appeared above it chanting. The party countered the spell, but Browning finished with, "and the flight of the gold ends." A dragonborn, elf, and dwarf teleported away, leaving a gnome behind. She refused to speak until Morgana dispelled magic and she recovered. She was a treasure hunter from Great Farnworth, remembered a voyage across the sea, did not know the year, and remembered place details both before and after the dome. A device nearby was a remote to activate a shield, with no apparent way to reverse it, and it should not be far from the party. -The replacements thought Eliana had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Harthall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers. +The replacements thought Eliana had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Hartwall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers. The party explored nearby rooms. One dusty room held a circle in the middle that looked dragged toward the door and taken to the teleport circle. Another held an old man sleeping. Dirk found a box under his pillow. A dormitory lay opposite, and another bedroom held books on alloys, travel, and botany. Dirk searched under another pillow and found a thorny brush or briar; Morgana kept it. The box put Geldrin and Morgana to sleep. The mage woke thinking it was 3740 AC and that Dirk looked like a Thrunglagen. He searched for his spellbook, which was found in his room. He was Humorous, an old Rivermeet headmaster. The party opened the teleport-room door and found a Barrier trapping Trixus, Benu, Garadwal, and Bynx. Temporary Wisdom was removed. -Benu said they had news and had reunited in the dire hour. Plans had been thwarted, and things came to light after speaking with his father. Garadwal's mind was clearer, and he now intended to repay his misdeeds by helping the party. Garadwal's father trusted the party after they brought his children back together. The wizards who sought godhood all sought to live forever. Envy sought too much power, and it corrupted him. The generator was not only protective; it also made them more powerful and was an experiment. Something ancient may have helped, giving the ability to remove emotions. Benu said the dome should be brought down, though the fate of bad elementals remained a problem. Garadwal had asked months earlier to bring it down and now asked the same for different reasons: a part of him enjoyed the bad part and had grown lazy with it. Harthall was part of his downfall, and Argentum died defending his people. Garadwal's father said the choice was the party's. The wizards were being controlled, and the five wizards could not affect the power sources. The party decided Browning needed to die and considered whether the wizards should be brought back to help. +Benu said they had news and had reunited in the dire hour. Plans had been thwarted, and things came to light after speaking with his father. Garadwal's mind was clearer, and he now intended to repay his misdeeds by helping the party. Garadwal's father trusted the party after they brought his children back together. The wizards who sought godhood all sought to live forever. Envy sought too much power, and it corrupted him. The generator was not only protective; it also made them more powerful and was an experiment. Something ancient may have helped, giving the ability to remove emotions. Benu said the dome should be brought down, though the fate of bad elementals remained a problem. Garadwal had asked months earlier to bring it down and now asked the same for different reasons: a part of him enjoyed the bad part and had grown lazy with it. Hartwall was part of his downfall, and Argentum died defending his people. Garadwal's father said the choice was the party's. The wizards were being controlled, and the five wizards could not affect the power sources. The party decided Browning needed to die and considered whether the wizards should be brought back to help. -Dirk asked his ancestors whether the party could defeat Browning as they were. Instead of seeing the ancestors, he saw sickly, elongated, groaning elves. Browning's ritual to become a god takes one thousand years and could have completed thirteen years earlier if Soul had not crashed into the tower. The dome drains the party like it drains the elementals, though it is noticeable only near the edges. Browning had a plan to increase his power by obtaining a great amount of crystal. Scumbledunk betrayed the party and teleported away after overhearing their discussion. The party considered next steps. Some went to Riversmeet with Bynx while others went to Emercurine to help Harthall. In the Headmaster's office, they used Rubyeye's eye and Dotharl, through the death of Hracency, to locate Rubyeye and Cardinal. Cardinal appeared inside a Brass dome on a beach with air elementals around her, in Brass City. Rubyeye appeared floating through dwarven stone corridors in an endless loop, far airwise. A dragon war was underway back in Humorous, with Emeraldous causing trouble and Ember remembered. Humorous was about three hundred years old. The party tried to contact Fairlight Harthall, but Windows could not find him. +Dirk asked his ancestors whether the party could defeat Browning as they were. Instead of seeing the ancestors, he saw sickly, elongated, groaning elves. Browning's ritual to become a god takes one thousand years and could have completed thirteen years earlier if Soul had not crashed into the tower. The dome drains the party like it drains the elementals, though it is noticeable only near the edges. Browning had a plan to increase his power by obtaining a great amount of crystal. Scumbledunk betrayed the party and teleported away after overhearing their discussion. The party considered next steps. Some went to Riversmeet with Bynx while others went to Emercurine to help Hartwall. In the Headmaster's office, they used Rubyeye's eye and Dotharl, through the death of Hracency, to locate Rubyeye and Cardinal. Cardinal appeared inside a Brass dome on a beach with air elementals around her, in Brass City. Rubyeye appeared floating through dwarven stone corridors in an endless loop, far airwise. A dragon war was underway back in Humorous, with Emeraldous causing trouble and Ember remembered. Humorous was about three hundred years old. The party tried to contact Fairlight Hartwall, but Windows could not find him. The party decided to go to Brass City to free Cardinal via Infestus, using the piece of coal at 15:00. `[uncertain: Antherous?]` came through a portal to them. They arrived on a plateau with dwarven construction, a purple sky, a ghost-town feeling, and a small dragonborn population in the centre. A large stone doorway in the market square was covered in runes. The rules promised no harm if obeyed: no Bluescale was to come to harm except passive self-defence, transactions and deals had to be honest with truth as currency, and the party could not disclose Bluescale's location or the archway's location. They went through the portal. Guards took them to Infestus. In a museum, they saw a curiosity from Keep Rememberence. A story said the man had not laughed so much in a long time, killed "the bitch," returned his first-born son's skull, and killed the son who slept with "the bitch." -Infestus wanted to pay the party for their good deeds and what they had done for him. A guard took them to his favourite pub, the Great Infestus, where they ate. A red dragonborn named Ember entered without surprising the patrons. Ember offered to show them around town and asked whether they had been to a dragon city. He wanted a favour if they returned: if they saw any red dragons or dragonborn, they should tell them Ember was looking for them. He believed the Reds were almost extinct and offered 1,000 gp for the promise. He also said Eliana did not smell right and smelled of elf. The party listed options: Jeroll's ode for Geldrin and a charged shield crystal, help with bad elementals to bring the dome down, something to bolster the dome, help releasing Harthall or killing Wrath, a permanent nonattack deal, and getting to Brass City. They then returned to Infestus. +Infestus wanted to pay the party for their good deeds and what they had done for him. A guard took them to his favourite pub, the Great Infestus, where they ate. A red dragonborn named Ember entered without surprising the patrons. Ember offered to show them around town and asked whether they had been to a dragon city. He wanted a favour if they returned: if they saw any red dragons or dragonborn, they should tell them Ember was looking for them. He believed the Reds were almost extinct and offered 1,000 gp for the promise. He also said Eliana did not smell right and smelled of elf. The party listed options: Jeroll's ode for Geldrin and a charged shield crystal, help with bad elementals to bring the dome down, something to bolster the dome, help releasing Hartwall or killing Wrath, a permanent nonattack deal, and getting to Brass City. They then returned to Infestus. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Geldrin, Dotharl, Valententhide, Invar, Hannah Joy, Humility, Thomas, Envy, Salana, Garadwal, Merocole, `[unclear: Keakis?]`, Aneurascarle, Bynx, Dirk, Scumbleduck / Scumbledunk, Browning, Morgana, the gnome treasure hunter, Mama Harthall, Humorous, Trixus, Benu, Argentum, Soul, Rubyeye, Cardinal, Hracency, Emeraldous, Ember, Fairlight Harthall, Windows, Infestus, `[uncertain: Antherous?]`, Bluescale, Jeroll, Wrath, and Harthall. +People and name-like figures mentioned include Geldrin, Dotharl, Valententhide, Invar, Hannah Joy, Humility, Thomas, Envy, Salana, Garadwal, Merocole, `[unclear: Keakis?]`, Aneurascarle, Bynx, Dirk, Scumbleduck / Scumbledunk, Browning, Morgana, the gnome treasure hunter, Mama Hartwall, Humorous, Trixus, Benu, Argentum, Soul, Rubyeye, Cardinal, Hracency, Emeraldous, Ember, Fairlight Hartwall, Windows, Infestus, `[uncertain: Antherous?]`, Bluescale, Jeroll, Wrath, and Hartwall. Groups and factions mentioned include the party, Grand Towers wizards, Humility fragments, monks, automatons, Juticars, Browning-controlled wizards, sphynx brothers, Rivermeet headmasters, bad elementals, controlled wizards, five wizards, dragons, red dragons / dragonborn, Bluescale, and Infestus's people. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index 1dfaae2..f85bbec 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -54,9 +54,9 @@ At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a The party picked up the cat. Geldrin said "There," and the cat became a big dog named There, who had come to aid them in their travels and was still due to their service to his mistress. There warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. There remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. There stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that There called a control room controlling multiple planes at once. The sword was in the Earth plane with Tresmun's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. -In the Earth-plane space, it was completely dark and Invar's magic did not work until There made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Harthall, jagged granite, and shield crystal. The shield crystal was a piece of Tresmon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. +In the Earth-plane space, it was completely dark and Invar's magic did not work until There made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Hartwall, jagged granite, and shield crystal. The shield crystal was a piece of Tresmon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. -A rat came to Morgana and disintegrated. Cacophony, previously met on page 231, appeared as a huge worm, died, and said it would show her something interesting. Her cider showed Rubyeye in a runed bathroom removing his eye. The cats hissed, the fire burned brighter, and then things returned to normal. A cat said the outcome was not predetermined and that the party had got rid of something bad following them. Dirk put the coal in the fire and saw a man saving a young girl; a clever way appeared with the rings. The party reached a small round temple near the remains of the Riversmeet bridge and the dwarven bridge, with Seward marble, about thirty benches carved with odd stones, five unlit altar candles, and ten gold statues under the altar representing different races but missing a dragon. The candles would not light until Invar used the torches around the room and Geldrin placed the wizard-race statues by the candles. They saw a vision of a large round table with seven people: five wizards, Hannah, and Icefang. Mama Harthall, angry and holding the blue ball, said, "This is enough. You can't continue this any more." A silver scale in dirt appeared and then a door. +A rat came to Morgana and disintegrated. Cacophony, previously met on page 231, appeared as a huge worm, died, and said it would show her something interesting. Her cider showed Rubyeye in a runed bathroom removing his eye. The cats hissed, the fire burned brighter, and then things returned to normal. A cat said the outcome was not predetermined and that the party had got rid of something bad following them. Dirk put the coal in the fire and saw a man saving a young girl; a clever way appeared with the rings. The party reached a small round temple near the remains of the Riversmeet bridge and the dwarven bridge, with Seward marble, about thirty benches carved with odd stones, five unlit altar candles, and ten gold statues under the altar representing different races but missing a dragon. The candles would not light until Invar used the torches around the room and Geldrin placed the wizard-race statues by the candles. They saw a vision of a large round table with seven people: five wizards, Hannah, and Icefang. Mama Hartwall, angry and holding the blue ball, said, "This is enough. You can't continue this any more." A silver scale in dirt appeared and then a door. The next space was a thriving, decadent Goliath throne room. Lion-headdress rockmen flanked the throne. Someone who looked like Dirk with his sword was made of stone. Pictures showed a white dragon by a river, the party as they now were, and a young beautiful sphynx. The stone Dirk had the needed sword but had just got it back from a ghost. He wanted proof that the party were themselves and proof of how they killed Perodita. They gave the granite and saw a vision of Justiciars moving rocks off a dragon's body. The stone Dirk told them to return to the fiery-beard chap, Huntmaster Throne, and said stone Dirk had brought the dome down. Four doorways appeared: Moon, Dragon Head, Arching Wave, and Butterfly. The party were told not to choose the moon door but opened it because the last trinket was the moon crystal. It seemed to lead to Craters Edge, and Dirk heard garbled conversations. The dragon door showed snow, pine trees, dread, and a memory of flying or crashing through pine needles, scratching scales. The wave door let water through and left a tiny arm bone when closed. The butterfly door smelled of swampy Everchard and Morgana's house; it showed Morgana's newer-looking house about twenty years earlier. Betty saw someone there before Magpie stopped her: a younger Chorus who had "made" a baby that was given away and already had a name. Haze said these places all seemed a little different from the real locations. @@ -94,7 +94,7 @@ The tapestry led to a lively past version of Brass City full of blue dragonborn The party chose the Light realm. Bynx lowered the chandelier and took them through to an exact replica room with a platinum throne and doors to each realm, including Attabone and Igraine. Through Igraine's door lay a flat, vast field of buttercups and daisies where Morgana had often been. She spoke with plants. It may have been an afterlife area; many people had once been there, but not for ages. A ladybird said the cat was there and gave a clue: Morgana needed to channel her power, seek more of them, and talk and play with them. Morgana located the cat about a day away, connected through animals and birds, and brought it back. Haze said it smelled like the needed item but seemed too easy. The cat was alive, or not certain; then it was dead. Morgana asked the bird to teach her this again, and it agreed. She named it Bruce. -The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but Eliana could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from Eliana's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. The leader's father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. +The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but Eliana could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from Eliana's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. Leadus' father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. Attabre said Eliana's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. Eliana was not only Icefang's daughter but Attabre's too. Eliana was killed because they got in the way, being more strong-willed; Kaylara accepted the spells, but Eliana did not, so they killed Eliana. Icefang got Kaylara out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. @@ -114,7 +114,7 @@ The party found an empty house and relaxed. Dirk felt someone scrying on him. Ou # People, Factions, and Places Mentioned -People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Harthall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Kaylara, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. +People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Hartwall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Kaylara, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. @@ -124,7 +124,7 @@ Creatures and creature-like beings mentioned include the orb-made blue dragon, s # Items, Rewards, and Resources -Items and resources mentioned include scrolls, a powerful charged shield crystal, the newspaper, Infestus's wife's smashed orb, shield-crystal body / focusing crystal, the four great minarets, planar fountains, the citadel statues, a cracked sword, weighted idols, jewellery, a carved necklace, the rose and book statue, brazier, orbiting coin, Trixus-carved door, plane-control throne room, coal, silver dragon object like Mama Harthall, jagged granite, shield crystal piece of Tresmon, wet coal water, Scroll of Fireball, needle and bloodied thread, Rubyeye eye-removal vision, rings, Seward marble, five altar candles, ten gold wizard-race statues, blue ball held by Mama Harthall, silver scale, moon crystal, tiny arm bone, black thread, the baby box from Everchard, sword in the box, Founder's Day poster dated 17th March 991, sending stone, ice auroch sculpture, the Council statue sword, "Drinker beads of wine" necklace, five-minute hourglass, fake necklaces, checklist box, school biggening juice, whirlpool/tropical/icy/calm lake paintings, wooden offering bowl, white rose / Rose of Reincarnation, sea conch, raven and other birds, mother-of-pearl and coral sphynx throne, shell room, porcelain salt dragon, quartz Salanus-like dragon, storage death paintings, Eroll mechanical bird, offering bowl in a glass case, rawhide-inlaid door, tabaxi prayer to Igraine, roots on plinths, bloodied knife, nine condensation-covered water-baby globes / pokeballs, shells and pearls worth about 500 gp, scorpion-symbol chains, barnacle door, watchful starfish, parchment contract to save babies' spirits, carvings of Envi, living-flame prince, Morgana and Igraine, Noxia wounded by an arrow, fire-realm tongs, Azar Nuri's turban, imp's deck of cards and turban, 15A, rope, tin of white paint, `[uncertain: Stolchar]` refined goblet, thread, lectern, bowl, stick, candlestick, quiver, leather armour, bow, animal skin, incense/candle wall hanging, past-Brass tapestry, glass beads from Brass City, skirt scrap, missing Bynx book page, chandelier, platinum throne, Attabre's book from Geldrin, Haze fragment put into Errol, fifteen wailing black coins, prison keys, bell, live-tabaxi tail restoration, Queen Mooncoral's sending stone, and ring of fire resistance. +Items and resources mentioned include scrolls, a powerful charged shield crystal, the newspaper, Infestus's wife's smashed orb, shield-crystal body / focusing crystal, the four great minarets, planar fountains, the citadel statues, a cracked sword, weighted idols, jewellery, a carved necklace, the rose and book statue, brazier, orbiting coin, Trixus-carved door, plane-control throne room, coal, silver dragon object like Mama Hartwall, jagged granite, shield crystal piece of Tresmon, wet coal water, Scroll of Fireball, needle and bloodied thread, Rubyeye eye-removal vision, rings, Seward marble, five altar candles, ten gold wizard-race statues, blue ball held by Mama Hartwall, silver scale, moon crystal, tiny arm bone, black thread, the baby box from Everchard, sword in the box, Founder's Day poster dated 17th March 991, sending stone, ice auroch sculpture, the Council statue sword, "Drinker beads of wine" necklace, five-minute hourglass, fake necklaces, checklist box, school biggening juice, whirlpool/tropical/icy/calm lake paintings, wooden offering bowl, white rose / Rose of Reincarnation, sea conch, raven and other birds, mother-of-pearl and coral sphynx throne, shell room, porcelain salt dragon, quartz Salanus-like dragon, storage death paintings, Eroll mechanical bird, offering bowl in a glass case, rawhide-inlaid door, tabaxi prayer to Igraine, roots on plinths, bloodied knife, nine condensation-covered water-baby globes / pokeballs, shells and pearls worth about 500 gp, scorpion-symbol chains, barnacle door, watchful starfish, parchment contract to save babies' spirits, carvings of Envi, living-flame prince, Morgana and Igraine, Noxia wounded by an arrow, fire-realm tongs, Azar Nuri's turban, imp's deck of cards and turban, 15A, rope, tin of white paint, `[uncertain: Stolchar]` refined goblet, thread, lectern, bowl, stick, candlestick, quiver, leather armour, bow, animal skin, incense/candle wall hanging, past-Brass tapestry, glass beads from Brass City, skirt scrap, missing Bynx book page, chandelier, platinum throne, Attabre's book from Geldrin, Haze fragment put into Errol, fifteen wailing black coins, prison keys, bell, live-tabaxi tail restoration, Queen Mooncoral's sending stone, and ring of fire resistance. Strategic resources and plans include the expected treaty council, Infestus's support and restraint of Salinas, Brass City access, restoring the Council statues by returning their objects or body parts, There's guidance, Bob and Bosh's possible uncursing later, using planar/memory rooms to recover the sword, necklace, bowl, tongs, cat, light/cat, and tail, fixing Tresmon's shield-crystal body, freeing water elemental babies / merbabies from the realm of darkness, Hydran's Pact offer, possible godly gifts before the next realm, Attabre's warning about death in that realm, the choice to bring down the dome, weakening Throngore by bringing down the dome, Kasha's pact pressure over Guardwell's soul, Throngore's demand to free a prisoner and not let Air retake his throne, the priestess guiding the party to Cardonald, and Queen Mooncoral's merfolk support. @@ -142,7 +142,7 @@ Tresmun / Tresmon's body is incomplete and spread across planes or memories. Gel The Earth-plane tavern sequence removed something bad that had been following the party, but the identity of that thing remains unknown. Cacophony died as a huge worm after showing Morgana Rubyeye removing his eye. -Mama Harthall's vision at the round table with five wizards, Hannah, and Icefang shows her trying to stop something involving the blue ball. It appears tied to the old wizard project, Icefang, Hannah, and Eliana's past. +Mama Hartwall's vision at the round table with five wizards, Hannah, and Icefang shows her trying to stop something involving the blue ball. It appears tied to the old wizard project, Icefang, Hannah, and Eliana's past. Eliana's origin is reframed again: the younger Chorus "made" a baby, a box from Everchard delivered Eliana and sword to Provista about twenty years earlier, the name Eliana Hartwall appears, Attabre says Eliana is both Icefang's and Attabre's daughter, Kaylara accepted spells while Eliana did not, and Eliana was killed for getting in the way. Necrotic damage in the death realm briefly revealed a silver dragonborn with horn ribbons and a teddy. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 3fbf729..ad21f5c 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -81,7 +81,7 @@ sources: - [Lady Thorpe](people/lady-thorpe.md): Lady Thorpe, false Lady Thorpe, llama impostor. - [TJ Biggins](people/tj-biggins.md): Mr TJ Biggins, TJ. - [Lady Yadreya Egrine](people/lady-yadreya-egrine.md): Lady Yadreya Egrine, Baroness of Riversmeet, half-elf female [context-dependent]. -- [Hearthwall Auction Lots](items/hearthwall-auction-lots.md): Hearthwall auction, Harthwall auction, Grand Auction House lots, Browning's scroll, Firefang, Smulty box, Ray of sorting and stirring, bracelet of locating. +- [Hartwall Auction Lots](items/hartwall-auction-lots.md): Hartwall auction, Grand Auction House lots, Browning's scroll, Firefang, Smulty box, Ray of sorting and stirring, bracelet of locating. - [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): Goldenswell prison network, off-the-books prisoners, memory grubs, ear pupae, ear grubs, large grubs attached to ear canals. - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scrambleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Barrett, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. - [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridge Statue, Statue of Bridge, Hazy Days. @@ -90,7 +90,7 @@ sources: - [Anya Blakedurn](people/anya-blakedurn.md): Anya Blakedurn, Blakedurn, Guild Mistress. - [Magstein and Grimcrag](places/magstein-grimcrag.md): Magstein, Grimcrag, Grimcrag bridge, Crusty Beard. - [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md): Papa Illmarne's dome, Papa's Dome, Papa Illmarne, Papa Marmaru. -- [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Merocole, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Harthall, Windows, Ember, [uncertain: Antherous?]. +- [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Merocole, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Hartwall, Windows, Ember, [uncertain: Antherous?]. - [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. - [Brass City](places/brass-city.md): Brass City, the Brass, old-regime citadel, Brass City citadel. - [Brass City Council](factions/brass-city-council.md): the Council, Council statues, cursed statues, live tabaxi restored from stone. @@ -102,8 +102,9 @@ sources: - [Igraine](people/igraine.md): Igraine, Lady Igraine, Egraine Brook [uncertain earlier variant], spirit of Igraine. - [Throngore](people/throngore.md): Throngore, Thromgore [earlier variant], giant goat-headed lord, god/demon of the death realm. - [Kasha](people/kasha.md): Kasha, Kasher [earlier uncertain variant]. -- [Eliana Hartwall / Kaylara](people/eliana-hartwall.md): Eliana Hartwall, Elliana Harthall, Elluin Hartwall, Elluin Hartwall!, Kaylara [related but not silently merged]. -- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Mama Harthall, Cacophony, Rubyeye, Hannah, Bleakstorm, Dothurl / Dotharl, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. +- [Eliana Hartwall / Kaylara](people/eliana-hartwall.md): Eliana Hartwall, Elliana Hartwall, Elluin Hartwall, Elluin Hartwall!, Kaylara [related but not silently merged]. +- [Lady Evalina Hartwall](people/lady-evalina-hartwall.md): Lady Evalina Hartwall, Evalina Hartwall, Mama Hartwall, Miana, Avalina. +- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Cacophony, Rubyeye, Hannah, Bleakstorm, Dothurl / Dotharl, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. - [Icefang](people/icefang.md): Icefang, Ice Fang, Altith, Atlih [uncertain], Ice Fury [uncertain related], elderly gentleman in the mental palace. @@ -128,6 +129,6 @@ sources: - [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Enis / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. - [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. - [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. -- [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Mama Harthall, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. +- [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. - [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. - [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md): shell of [uncertain: Tremoon], crystal shell, lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index 5f29e2a..c351ff1 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -34,12 +34,12 @@ This audit records where each Day 46 mention-section subject was placed in the w | Longfang, Mercy, [unclear: Typh], Heather | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Lady Igraine, Igraine, Abraxas | Existing deity/political context; preserved in cleaned narrative and Day 46 rollups where supporting. | | The Exchequer / Bartholomew, Betty, seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, greasy halfling, Bollar men | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | -| Harthall, Highgate, Lord Bleakstorm | Existing or rollup coverage; Highgate and Harthall lab leads added to [Minor Places from Day 46](../places/minor-places-day-46.md) and [Open Threads](../open-threads.md). | +| Hartwall, Highgate, Lord Bleakstorm | Existing or rollup coverage; Highgate and Hartwall lab leads added to [Minor Places from Day 46](../places/minor-places-day-46.md) and [Open Threads](../open-threads.md). | | Squid-headed men, human wizards, stock-beast handlers, twins, copper-goliath offspring, fish men, leech creatures, lamias, rats, undead sphinx, tainted dragons | Covered in cleaned narrative; specific named/plot-bearing groups in [Minor Figures from Day 46](../people/minor-figures-day-46.md) or [Open Threads](../open-threads.md). | | Riversmeet Menagerie / old mage school and internal rooms | Updated [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); room details in [Minor Places from Day 46](../places/minor-places-day-46.md). | -| Harthall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | +| Hartwall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | | Coalmount Hills portal | Preserved in cleaned narrative; existing prison/barrier context. | -| Dunensend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pinesprings, Harthall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | +| Dunensend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pinesprings, Hartwall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | | Salt pot safe, sequence `6/11/10/13/7`, beast ledger, Noxia necklace, relief map, musical lock, Evocation circle, jellyfish brooch, Magic Missile scroll, purple-crystal sword, note `propell`, snowglobe, cakes, potions, Storm Orb, mushroom pieces, Draconic warning, scratched Amoursorate orb, `lost` rug, ruby messages, lost ring, power armour, deputy badges, sending stones, jade resources, hexagon coins, dark grey rose, silver chain with green pendant, mirror | Added to [Minor Items from Day 46](../items/minor-items-day-46.md); Storm Orb and Amoursorate orb also updated in [Void Spheres](../items/void-spheres.md); Ruby messages updated in [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | | Spells, visions, and magical effects | Preserved in cleaned narrative; plot-bearing effects added to [Open Threads](../open-threads.md). | -| Strategic resources and plans | Preserved in cleaned narrative; Harthall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | +| Strategic resources and plans | Preserved in cleaned narrative; Hartwall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index 9506fa1..2437579 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -17,7 +17,7 @@ sources: | Joy / Hannah / Enis sacrifice | Existing [Joy](../people/joy.md) updated; Hannah in minor figures and open threads. | | Garadwal, Argentum, Metatous, lion-headed father clue | Existing [Garadwal](../people/garadwal.md) updated; Bynx page and minor figures cover details. | | Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Boorning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | -| Harthall lab rooms, Pinesprings, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | +| Hartwall lab rooms, Pinesprings, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | -| Altered picture, missing third girl, Harthall daughters, Eliana as Eliana Hartwall, Lorekeeper source, Sunsoreen citizen release, emotional quelling | Added to [Open Threads](../open-threads.md) and relevant standalone pages. | +| Altered picture, missing third girl, Hartwall daughters, Eliana as Eliana Hartwall, Lorekeeper source, Sunsoreen citizen release, emotional quelling | Added to [Open Threads](../open-threads.md) and relevant standalone pages. | | Day 48 pages 245-247 | Intentionally deferred; no Day 49 boundary is visible, so Day 48 remains page transcriptions only. | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index e3ec442..e2b5a18 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -24,7 +24,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Throngore, Sauver, Shylow, death realm, goat men, wasps, Air throne warning, path contradiction | Added [Throngore](../people/throngore.md); Sauver/Shylow in [Minor Figures from Day 57](../people/minor-figures-day-57.md); places in [Minor Places from Day 57](../places/minor-places-day-57.md). | | Lord Briarthorn, thorn-beard elf, moon trip with Eliana's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | | Eliana Hartwall / Kaylara identity, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md); updated [Icefang](../people/icefang.md) and [Attabre / Altabre](../people/attabre-altabre.md). | -| Icefang, Bleakstorm, Mama Harthall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Mama Harthall/Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | +| Icefang, Bleakstorm, Lady Evalina Hartwall / Mama Hartwall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Lady Evalina Hartwall has a standalone page, Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre / Altabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 2e0ee01..a32b69c 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -24,9 +24,9 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | | Offering responses, statue inscriptions, Trixus ring inscription, Badger phrase | [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | -| Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Heathwall, Emmerave and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | +| Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Hartwall, Emmerave and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | | Black-feather communication brick, Domain of Pengalis coin, feather relics, coins/currencies, Treamon's skull, flesh-crafting wand, Trixus's brass rings, time device and other specific resources | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | -| Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Altabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Heathwall | [Open Threads](../open-threads.md), plus related standalone pages. | +| Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Altabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Hartwall | [Open Threads](../open-threads.md), plus related standalone pages. | ## Day 43 Outcomes @@ -35,10 +35,10 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Riversmeet Menagerie / Mages College at Riversmeet as upcoming memory-spell site | Standalone page created and updated from day 43-44: [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md). | | Papa'e Munera / papael'munsera / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | | Garadwal feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadwal banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | -| Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Mama Harthall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | -| Goldenswell, Pine Springs, Harthall, Lord Argenthum's Rest, Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Grincray / Grim & Cray, Mashir, Claymeadows, Harthden, Arrofarc, Aegis on Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md) and open threads. | +| Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Lady Evalina Hartwall / Mama Hartwall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | +| Goldenswell, Pine Springs, Hartwall, Lord Argenthum's Rest, Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Grincray / Grim & Cray, Mashir, Claymeadows, Harthden, Arrofarc, Aegis on Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md) and open threads. | | Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadwal's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | -| Memories/documents returning, Envy in Mama Harthall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), and related standalone pages. | +| Memories/documents returning, Envy in Lady Evalina Hartwall / Mama Hartwall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), and related standalone pages. | ## Day 44 Outcomes @@ -49,9 +49,9 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Noxia green liquid / blood, lady of destruction, Noxia-return-to-desert clue | [Noxia](../people/noxia.md), [Minor Items](../items/minor-items-days-42-44.md), inventory, and open threads. | | Void orb, eight spheres, Squall's Belt, Brotor's gift, Aurises, kitchen seasoning lead | Standalone item page: [Void Spheres](../items/void-spheres.md); inventory and clues updated. | | Ruby Eye, Browning / Everard, Icefang / Altith, Joy, Attabre, Grand Towers, Barrier, Bleakstorm | Existing pages updated. | -| Cardonald variants, Arreanae, Tortish Harthall / Harthwall, Humerous Torn, Principal Grey, Dribble, Enis / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Evalina / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | -| Howling Tombs, Harthall's old lab, temples of Hydrum / Igraine / Larn / Kasha, Far Grove, Waterrose, Great Farmouth, Blackhold, Brass City, Pri-moon, second moon, Tri-moon, Squall's Belt | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), standalone pages where appropriate. | -| Harthall lab key, Draconic teleport/seeing scroll, alteration orb, janitor broom, power armour, automaton core, Larn chain/cat collars, Treamon's-skull core, Mr Moreley's book, telescope, empty glass orb, dust instructions | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), [Void Spheres](../items/void-spheres.md). | +| Cardonald variants, Arreanae, Tortish Hartwall / Hartwall, Humerous Torn, Principal Grey, Dribble, Enis / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Lady Evalina Hartwall / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | +| Howling Tombs, Hartwall's old lab, temples of Hydrum / Igraine / Larn / Kasha, Far Grove, Waterrose, Great Farmouth, Blackhold, Brass City, Pri-moon, second moon, Tri-moon, Squall's Belt | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), standalone pages where appropriate. | +| Hartwall lab key, Draconic teleport/seeing scroll, alteration orb, janitor broom, power armour, automaton core, Larn chain/cat collars, Treamon's-skull core, Mr Moreley's book, telescope, empty glass orb, dust instructions | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), [Void Spheres](../items/void-spheres.md). | | Morgana statue, incomplete report, Ruby Eye wife/house sequence, Menagerie lockdown, displacement rules, old school historical date, future knowledge, Ruby Eye final project, automations, Evalina/Avalina identity, Hannah erasure, silver-green claw, baby Attabre spirit, sixth sphinx, lunar truth, next sphere leads | [Open Threads](../open-threads.md). | ## Unresolved Merge Decisions diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 1e842df..feefe5b 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -42,7 +42,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `Thurtall!!` | possible teleport carpet trigger | `data/4-days-cleaned/day-17.md` | Shouted as a gargoyle rolled out a carpet with a teleport rune; whether it is a formal command word is not explicit. | | `Bun` | TJ's name for the dome | `data/4-days-cleaned/day-35.md` | TJ Biggins called the dome the `Bun` after Dirk explained it using a bun. | | The Guilt's chest disarm code | known to chest users, not recorded | `data/4-days-cleaned/day-36.md` | Seneshell showed The Guilt inside a dangerous chest like the one in Envy's lab; it was dangerous when armed and had a code to disarm it. | -| `Burial` | Wrath imprisonment command | `data/4-days-cleaned/day-36.md` | Wrath, impersonating Ruby Eye, shouted `Burial` while imprisoning Harthwall with a silver dragon statue. | +| `Burial` | Wrath imprisonment command | `data/4-days-cleaned/day-36.md` | Wrath, impersonating Ruby Eye, shouted `Burial` while imprisoning Hartwall with a silver dragon statue. | | `winter roses` | Coalmont Falls door phrase | `data/4-days-cleaned/day-36.md` | Hanner said `winter roses` at the door in the underwater facility, and it came to life. | ## Inscriptions, Labels, Symbols, and Coded Phrases @@ -78,7 +78,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Black snowflake tabards and black snowflakes | `data/4-days-cleaned/day-36.md` | Seen in Grand Towers vision and Coalmont Falls weather/scoop. | | Five runes in a pentagram around a twenty-foot statue | `data/4-days-cleaned/day-36.md` | Underwater chamber associated with !Asmoorade! at Coalmont Falls. | | Ticking rune door | `data/4-days-cleaned/day-36.md` | Door in freshly cut Coalmont facility corridor; would not open normally. | -| `My Child` | `data/4-days-cleaned/day-36.md` | Icefang said this while passing Harthall during the frost-dragon intervention. | +| `My Child` | `data/4-days-cleaned/day-36.md` | Icefang said this while passing Hartwall during the frost-dragon intervention. | | `all of the Pacts are off` | `data/4-days-cleaned/day-41.md` | Perodika / green smoke dragon declaration while possessing people. | ## Riddles and Layout Clues @@ -103,7 +103,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Daytime Tri-moon anomaly | Tri-moon visible during the day, roughly 16 hours early | `data/4-days-cleaned/day-32.md` | | Guest shells | last 2 hours | `data/4-days-cleaned/day-22.md` | | Freeport auction | mother-of-pearl elemental chariot to be sold in 7 days | `data/4-days-cleaned/day-22.md` | -| Hearthwall auction | Grand Auction House auction occurred around 2 pm; `11:00` also noted | `data/4-days-cleaned/day-32.md` | +| Hartwall auction | Grand Auction House auction occurred around 2 pm; `11:00` also noted | `data/4-days-cleaned/day-32.md` | | Seaward Barrier flickers | began 2-3 weeks earlier, increasing, random, longest 3 seconds, clustered around 9 am, none around midnight, moving horizontally toward pylon | `data/4-days-cleaned/day-12.md` | | Azureside evacuation | evacuation would take about half a day | `data/4-days-cleaned/day-41.md` | | Perodika influence range | light returned to normal around ten miles away | `data/4-days-cleaned/day-41.md` | @@ -138,6 +138,6 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `A sacrifice & I will let you have it.` | `data/4-days-cleaned/day-57.md` | Voice from identical roots/plinths beyond the rawhide door. | | `The entrance shows the way, a pain you will take with you.` | `data/4-days-cleaned/day-57.md` | Underground scorpion vision linked to the roots/plinths. | | Contract to save babies' spirits from the realm of darkness | `data/4-days-cleaned/day-57.md` | Parchment in Hydran's realm; tied to merbaby rescue. | -| `This is enough. You can't continue this any more.` | `data/4-days-cleaned/day-57.md` | Mama Harthall's round-table vision line while holding the blue ball. | +| `This is enough. You can't continue this any more.` | `data/4-days-cleaned/day-57.md` | Lady Evalina Hartwall's round-table vision line while holding the blue ball. | | `rule one, but from afar` | `data/4-days-cleaned/day-57.md` | Attabre-realm lore about the pact made by a father and five others at Ground Towers. | | `2034 AP = 3480 approximately` | `data/4-days-cleaned/day-57.md` | Date equation near restored Brass City statues and coin-smelting/tabaxi-ouster timing. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index c0c258d..ff93c46 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -58,7 +58,7 @@ The Barrier is the central protective shield, dome, or containment system around - Day 32 records the Tri-moon visible during the day, 16 hours ahead of expected schedule, while the Barrier looked normal and the small chunk was visible. - Day 32 skull lore says Ruby Eye's skull had influence over the Barrier and could bend it. - Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said Lady Envy's sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. -- Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Harthwall did not know about. +- Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Hartwall did not know about. - Ruby Eye and Wrath both wanted the shell of [uncertain: Tremoon] because it helped people get in and out of the Barrier. - Day 41 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. - Day 42 says the Barrier was weak, that the party could attune to three of Envi's rings, and that a tiny hole became noticeable after Ashkellon blessings gave Goliaths weapons, shields, and healing. diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 3820f56..f70a0d1 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -55,7 +55,7 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Day 43 says Hephestos was only his soul, wanted a pact, and may have been asked to attack the dome; Trixus could help with memories but a spell inside the Barrier interfered. - Cardonald's Day 43 teleportation-circle list included seven prisons with no defences, a lab with uncertain defences, Grand Towers factory/control/meeting lounge, Menagerie, Ashhellier, and five pylons. - Day 44 recovered historical material on emotional elimination, automations, and a possible core or sphere network from the old mage school. -- Day 47 Harthall lab records show frost-prison runes disappearing, an elemental puzzle placed into an elemental ball, and an ice elemental ball later given to a fire elemental before the fireplace rift was dispelled and closed. +- Day 47 Hartwall lab records show frost-prison runes disappearing, an elemental puzzle placed into an elemental ball, and an ice elemental ball later given to a fire elemental before the fireplace rift was dispelled and closed. - The frost prison contained lightning and snowflake doors, handleless doors, black sap or rubber seals, a semicircular oracle room, an iced snake door, and prisoners or door heads named Dorion, Tim, and Geoffrey. - One dark door led to an ancient dwarven hold containing a massive shaggy blue aurora; Geldrin promised to return once the dome could be powered without exploiting elementals. - Bynx explained that where the pure elemental planes meet, they combine. diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 8f8cbea..3347887 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -48,7 +48,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - The leader of the Brass City was an Excellence killed during the battle with Dunensend forces. - Treamen was identified as the Earth Excellence; his jagged purple crystal skull artifact was recovered. - Day 32 records the party telling Xinquiss that the quilt might be an `excellence` or might be working for one. -- A Hearthwall auction chariot was linked to an Excellence defeated in the `battle of the unending seas`. +- A Hartwall auction chariot was linked to an Excellence defeated in the `battle of the unending seas`. - Day 35 council-memory manipulation made rescued prisoners forget that The Guilt was part of the council and distrust him. - A Day 35 side note listed Pride, Lust, greed, wrath, envy, gluttony, and sloth near Lady Envy and dome information; the relationship to Excellences is unresolved. - Day 36 states The Guilt was an Avatar of Pride, Pride had been eaten by [Garadwal](../people/garadwal.md), Pride was a dark entity who wanted people to be proud, and Pride tried to disable as much as possible before being consumed. diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index 47fa2c7..153c979 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -34,7 +34,7 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Otasha received unborn nerfili babies across the whole race, though the Barrier seemed to reduce this slightly. - The god of Darkness was worked around by making him the god Leptrop. - Ennik and Browning made many of the deals. -- Harthwall did not know about half the deals made. +- Hartwall did not know about half the deals made. - Ruby Eye and Carduneld discussed renegotiating some deals, breaking the inferlite curse, and addressing Barrier damage. - Day 42 Ashkellon offering bowls answered offerings to Bridge, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Altabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Altabre's children. - Day 43 Attabre manifested at the Ashkellon shrine, sought atonement and justice, was angry with Benu, and was connected to Goliaths receiving a protector like Trixus. diff --git a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md index 38f5899..9ee7c43 100644 --- a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md +++ b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md @@ -24,11 +24,11 @@ The Goldenswell prison operation was an off-the-books detention and prisoner-tra ## Known Details - Goldenswell refused The Basilisk's prison checks while Redford and Everchard had no Lady Thorpe. -- Lady Thorpe was held in the Goldenswell militia house, two floors down, after a false Lady Thorpe impersonated her in Hearthwall. +- Lady Thorpe was held in the Goldenswell militia house, two floors down, after a false Lady Thorpe impersonated her in Hartwall. - The captain said orders came from the Duke's office, a Duke's emissary fed Lady Thorpe, and the Duke's personal guard had brought prisoners in. - A woman with a bag on her head, a snake-bodied man, Duke's emissaries, Duke's personal guard, and yellow guards with a half-sun tattoo obscured by a waterfall are implicated. - Off-the-books prisoners had been held a few times, with several people taken each week over the prior month. -- Prisoners or prisoner sources linked to the network included Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, Harthwall, Lady Thorpe, the Elementarium, Baytail, a half-elven woman related to the twin Justicar guards, a kobold in recognizable tattered robes, a pale halfling woman with tiger-eye-like eyes, and several council members rescued on Day 35. +- Prisoners or prisoner sources linked to the network included Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, Hartwall, Lady Thorpe, the Elementarium, Baytail, a half-elven woman related to the twin Justicar guards, a kobold in recognizable tattered robes, a pale halfling woman with tiger-eye-like eyes, and several council members rescued on Day 35. - On Day 35, a prisoner cart carried magically asleep or drugged captives including Lady Katherine Cole, the Elementarium, Mr TJ Biggins, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, and Lady Yadreya Egrine. - Rescued council members had dried blood, eardrum injuries, deafness, and a pupa or large grub lodged in an ear canal. - Removing and killing Lady Cole's grub restored her memories, ended the feeling that she was being watched, and revealed that affected prisoners had forgotten The Guilt was a council member and had been told not to trust him. diff --git a/data/6-wiki/factions/mage-judicators-justicars.md b/data/6-wiki/factions/mage-judicators-justicars.md index 6cffe8a..a7f2f05 100644 --- a/data/6-wiki/factions/mage-judicators-justicars.md +++ b/data/6-wiki/factions/mage-judicators-justicars.md @@ -33,7 +33,7 @@ Mage Judicators or Justicars are authorities tied to Seaward, major settlements, - The Seaward Justicar checked books and crystal only with an eyeglass, while Elementarium wanted the Justicar gone. - Underground groups wanted the Justicar kept out of the salt dragon prison. - Later Justiciars were leaving Grand Towers to five points. -- Day 32 Justicars looked for Xinquiss at the Hearthwall auction, attempted Counterspell when Mith teleported away, took the llama-form false Lady Thorpe to Grand Towers, and had a quashed party arrest warrant from someone high up. +- Day 32 Justicars looked for Xinquiss at the Hartwall auction, attempted Counterspell when Mith teleported away, took the llama-form false Lady Thorpe to Grand Towers, and had a quashed party arrest warrant from someone high up. - Browning / Skutey Galvin was wanted for impersonating a Justicar. - Day 35's Lady Yadreya Egrine resembled or reminded the party of the twin Justicar guards met on the way to Seaward. - On Day 56, four Juticars appeared through tears in Grand Towers, including Scumbleduck/Scumbledunk, a rubber-eyed figure, a silver dragonborn, and another. They addressed `Justicar Geldrin`, said his mission was compromised after a worm was removed, and referenced a prognostic machine. diff --git a/data/6-wiki/factions/sunsoreen-council.md b/data/6-wiki/factions/sunsoreen-council.md index 32df0b5..a735c6b 100644 --- a/data/6-wiki/factions/sunsoreen-council.md +++ b/data/6-wiki/factions/sunsoreen-council.md @@ -49,4 +49,4 @@ The Sunsoreen Council is the ruling body of [Sunsoreen](../places/sunsoreen.md), - What is the Lorekeeper, and why could it supply questions about Eliana's childhood and Dotharl's family tie? - Why does the council's record identify Eliana as Eliana Hartwall? -- Is the council's emotional quelling related to Avalina's diary and the old Harthall work? +- Is the council's emotional quelling related to Avalina's diary and the old Hartwall work? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 59d33f9..5147645 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -119,6 +119,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Throngore](people/throngore.md) - [Kasha](people/kasha.md) - [Eliana Hartwall / Kaylara](people/eliana-hartwall.md) +- [Lady Evalina Hartwall](people/lady-evalina-hartwall.md) - [Minor Figures from Day 57](people/minor-figures-day-57.md) ## Places @@ -165,7 +166,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md) - [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md) - [Freeport Auction Lots](items/freeport-auction-lots.md) -- [Hearthwall Auction Lots](items/hearthwall-auction-lots.md) +- [Hartwall Auction Lots](items/hartwall-auction-lots.md) - [Void Spheres](items/void-spheres.md) - [Minor Items from Day 46](items/minor-items-day-46.md) - [Minor Items from Day 47](items/minor-items-day-47.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index bd5240c..515d972 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -75,7 +75,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Coin press | given to The Basilisk | `day-17` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Initially selected by the note-writer, then given to The Basilisk. | | Dragon skull of Alsafaur | returned to black dragon | `day-16` | `data/4-days-cleaned/day-16.md` | Given to the black dragon at the Barrier in exchange for being `even`. | | 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | -| One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hearthwall auction. | +| One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hartwall auction. | | Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Hartwall wanted to see the party. | | Sword, necklace, bowl, tongs, cat/light-cat, and tail statue artifacts | returned to Brass City statues/body | `day-57` | `data/4-days-cleaned/day-57.md` | Returned or used to restore Council/Tresmon body pieces; see [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | @@ -86,7 +86,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Baroness forces | promised | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) promised to loan some forces and gave laboratory permission/information. | | Huntmaster aid | promised | `data/4-days-cleaned/day-20.md` | Huntmaster Thrune agreed to provide aid against the Excellence. | | Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | The Basilisk was arranging contact in Fairshaws or Freeport carrying Winter Rose. | -| Mother-of-pearl elemental chariot auction | possibly occurred, identity uncertain | `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it; a chariot at the Hearthwall auction was tied to an Excellence and taken to the Palace, but identity with the mother-of-pearl chariot is not confirmed. | +| Mother-of-pearl elemental chariot auction | possibly occurred, identity uncertain | `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it; a chariot at the Hartwall auction was tied to an Excellence and taken to the Palace, but identity with the mother-of-pearl chariot is not confirmed. | | Jelly Fish Broach retrieval | promised attempt | `data/4-days-cleaned/day-36.md` | Mercy's contractor wanted the party to retrieve it from Grand Towers floor 74 for a female buyer outside the Barrier. | | Free Icefang's ice elemental | promised to water elementals | `data/4-days-cleaned/day-36.md` | Water elementals required this before helping with dragon flames. | | Peridot Queen aid | offered through The Basilisk | `data/4-days-cleaned/day-41.md` | Aid is explicitly self-interested and conditional. | @@ -108,7 +108,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Mother-of-pearl elemental chariot | `day-22` | `data/4-days-cleaned/day-22.md` | Party took it back, but sale is pending and the chained water elementals' desired outcome is unclear. | | Bangle attached to prisoner cart | `day-35` | `data/4-days-cleaned/day-35.md` | The party used invisibility to attach a bangle to the prisoner cart; exact function is not stated. | | Ear pupae / memory grubs | `day-35` | `data/4-days-cleaned/day-35.md` | Removed from rescued prisoners' ear canals; killing Lady Cole's grub restored memories and ended the watched feeling. | -| Shell of [uncertain: Tremoon] / crystal shell | `day-36` | `data/4-days-cleaned/day-36.md` | Left at Harthwall; Ruby Eye and Wrath wanted it because it helped passage through the Barrier. | +| Shell of [uncertain: Tremoon] / crystal shell | `day-36` | `data/4-days-cleaned/day-36.md` | Left at Hartwall; Ruby Eye and Wrath wanted it because it helped passage through the Barrier. | | Lucky cyclops eye | `day-36` | `data/4-days-cleaned/day-36.md` | Rubbed near The Guilt's dangerous chest but did not go anywhere. | | Dirk's rod for speaking with water elementals | `day-36` | `data/4-days-cleaned/day-36.md` | Used at the river to negotiate help against dragon flames; current custody not restated. | | Black dragon book from Ruby Eye's lab | `day-36` | `data/4-days-cleaned/day-36.md` | Held by skeletal dragon; words spoken from it were not understood. | diff --git a/data/6-wiki/inventories/party-treasury.md b/data/6-wiki/inventories/party-treasury.md index c9e20b4..41ca325 100644 --- a/data/6-wiki/inventories/party-treasury.md +++ b/data/6-wiki/inventories/party-treasury.md @@ -63,7 +63,7 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 2,000 gp, 500 gp advance, extra for water elementals | `day-12` | `data/4-days-cleaned/day-12.md` | Elementarium contract for discretion/results; notes also say 200 gp paid, so final payout is unclear. | | 5 sp per skull | `day-11`, `day-12` | `data/4-days-cleaned/day-11.md`, `data/4-days-cleaned/day-12.md` | Skull-buying offer from Iakaxi/Chalky's master; no completed sale recorded. | | auction proceeds unknown | `day-22` | `data/4-days-cleaned/day-22.md` | Zinquiss planned to auction the mother-of-pearl elemental chariot in 7 days. | -| Hearthwall auction proceeds unknown | `day-32` | `data/4-days-cleaned/day-32.md` | One Brass City platinum piece was added to auction; the chariot bidding reached 11,900 gp and possibly 14,000 gp, but party proceeds are unclear. | +| Hartwall auction proceeds unknown | `day-32` | `data/4-days-cleaned/day-32.md` | One Brass City platinum piece was added to auction; the chariot bidding reached 11,900 gp and possibly 14,000 gp, but party proceeds are unclear. | | Gold when the crystal is complete | `day-57` | `data/4-days-cleaned/day-57.md` | Part of Geldrin's bargain with Azar Nuri; amount and payer unclear. | ## Unclear or Not Party Treasury diff --git a/data/6-wiki/items/hearthwall-auction-lots.md b/data/6-wiki/items/hartwall-auction-lots.md similarity index 82% rename from data/6-wiki/items/hearthwall-auction-lots.md rename to data/6-wiki/items/hartwall-auction-lots.md index 475fe43..e15782e 100644 --- a/data/6-wiki/items/hearthwall-auction-lots.md +++ b/data/6-wiki/items/hartwall-auction-lots.md @@ -1,21 +1,20 @@ --- -title: Hearthwall Auction Lots +title: Hartwall Auction Lots type: item group aliases: - Grand Auction House lots - - Hearthwall auction - - Harthwall auction + - Hartwall auction first_seen: day-32 last_updated: day-32 sources: - data/4-days-cleaned/day-32.md --- -# Hearthwall Auction Lots +# Hartwall Auction Lots ## Summary -The Hearthwall Grand Auction House lots included historical art, magical items, coins, wines, and the chariot tied to an Excellence defeated in the `battle of the unending seas`. +The Hartwall Grand Auction House lots included historical art, magical items, coins, wines, and the chariot tied to an Excellence defeated in the `battle of the unending seas`. ## Known Lots and Sale Details @@ -38,7 +37,7 @@ The Hearthwall Grand Auction House lots included historical art, magical items, ## Open Questions -- Is the Hearthwall chariot the same object as the mother-of-pearl elemental chariot from Day 22, or a separate chariot? +- Is the Hartwall chariot the same object as the mother-of-pearl elemental chariot from Day 22, or a separate chariot? - What is the `Amle for adult?` lot mentioned before detailed bidding? -- Who are the Ravens, jewellery men, emissary, Dally, and Harthwall partner, and what were their agendas? +- Who are the Ravens, jewellery men, emissary, Dally, and Hartwall partner, and what were their agendas? - What did `battle of the unending seas`, `Valententide's Betrayal`, and the `talon of soot` refer to historically? diff --git a/data/6-wiki/items/minor-items-day-47.md b/data/6-wiki/items/minor-items-day-47.md index 1fc23e7..a966426 100644 --- a/data/6-wiki/items/minor-items-day-47.md +++ b/data/6-wiki/items/minor-items-day-47.md @@ -31,4 +31,4 @@ sources: | City-moving scroll | Geldrin held the scroll explaining how Sunsoreen moved to the other side of the earth; Aurum wanted it. | [Sunsoreen](../places/sunsoreen.md). | | TV orb | Showed copper dragon / claw marks and The Shadow's information request; also revealed party surveillance. | Sunsoreen rollup. | | Portal charge | Shared between portals and reset once per day. | Rollup. | -| Right blade | Used to go to Harthall's lab at the end of Day 47. | Rollup. | +| Right blade | Used to go to Hartwall's lab at the end of Day 47. | Rollup. | diff --git a/data/6-wiki/items/minor-items-day-57.md b/data/6-wiki/items/minor-items-day-57.md index 425db61..d311a31 100644 --- a/data/6-wiki/items/minor-items-day-57.md +++ b/data/6-wiki/items/minor-items-day-57.md @@ -14,7 +14,7 @@ sources: | Infestus's wife's orb | Smashed to produce a tiny human transformed into a blue dragon. | Rollup. | | Weighted idols and jewellery | Statue-corridor items tied to gravity, weight, and Lord of the Brass City. | [Brass City Council](../factions/brass-city-council.md). | | Orbiting coin | Triggered Ignan phrase about helping say his name when picked up. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | -| Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tresmon, coal was wet, granite scorched, silver dragon matched Mama Harthall. | [Tresmon's Body and Statue Artifacts](tresmons-body-and-statue-artifacts.md). | +| Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tresmon, coal was wet, granite scorched, silver dragon matched Lady Evalina Hartwall / Mama Hartwall. | [Tresmon's Body and Statue Artifacts](tresmons-body-and-statue-artifacts.md). | | Scroll of Fireball | Parchment found by Geldrin at the cat tavern table. | [Party Inventory](../inventories/party-inventory.md). | | Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md). | | Five altar candles and ten gold statues | Used in the round temple vision of five wizards, Hannah, and Icefang. | Rollup. | diff --git a/data/6-wiki/items/minor-items-days-36-40-41.md b/data/6-wiki/items/minor-items-days-36-40-41.md index 7152487..82e74a5 100644 --- a/data/6-wiki/items/minor-items-days-36-40-41.md +++ b/data/6-wiki/items/minor-items-days-36-40-41.md @@ -15,7 +15,7 @@ sources: | 25 platinum paid to captain; greased palms; Grand Towers pennies | Day-36 payments and offerings. | [Party Treasury](../inventories/party-treasury.md). | | Mage's ring, Newgate's gargoyle, broken Bird, Terry, lucky cyclops eye, teleport circles, obsidian ravens, stealth ravens, sending stone, pulley lift, merfolk lodge | Transport and communication resources. | Inventory/status/open threads. | | The Guilt's dangerous chest and disarm code | Chest like Envy's lab; code exists but not recorded. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | -| Shell of [uncertain: Tremoon] / crystal shell | At Harthwall; desired by Ruby Eye and Wrath for Barrier passage. | [Party Inventory](../inventories/party-inventory.md), open thread. | +| Shell of [uncertain: Tremoon] / crystal shell | At Hartwall; desired by Ruby Eye and Wrath for Barrier passage. | [Party Inventory](../inventories/party-inventory.md), open thread. | | Jelly Fish Broach, Scorpion, Snowlee, Jelly Fish, Ant | Bargain trinkets. | [Grand Towers Bargain Trinkets](grand-towers-bargain-trinkets.md). | | Ruby Eye's lab orbs, memory orbs, Gideone chair | Grand Towers vision devices. | [Grand Towers](../places/grand-towers.md). | | Silver dragon statue, Seaward stone maces, inverse hammer | Bellburn / Wrath battle objects. | [Wrath](../people/wrath.md), rollup/open thread. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index 4ec6cc4..4f167f5 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -21,12 +21,12 @@ sources: | Treamon's skull, health pipe, Bridge coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadwal/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | | Trixus's brass rings | Rings on Trixus's paws with Altabre inscription. | [Trixus](../people/trixus.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Time-detecting device at Bleakstorm | Detected Dirk missing a day. | [Bleakstorm](../places/bleakstorm.md), open thread. | -| Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Harthall / Goldenswell clues. | Rollup/open threads; [Papa'e Munera](../people/papae-munera.md). | -| Benu's glowing open book and five Benu books | Drew answers and death warnings; five books in Goldenswell, Snowsorrow, Dumnensend, Freeport, Harthall. | [Benu](../people/benu.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Hartwall / Goldenswell clues. | Rollup/open threads; [Papa'e Munera](../people/papae-munera.md). | +| Benu's glowing open book and five Benu books | Drew answers and death warnings; five books in Goldenswell, Snowsorrow, Dumnensend, Freeport, Hartwall. | [Benu](../people/benu.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Hawthorn lost-city books, Ruby Eye biography of Hawthorn, giant bees, winter rose, winter-flowering plants | Dwarven lost-city and Hawthorn botanical resources. | Rollup/open thread. | | Papa'e Munera black orb | Fragment of Papa'e Munera in Invar's box. | [Papa'e Munera](../people/papae-munera.md), inventory. | | Garadwal's feather, sending stones, magical scrolls, barrier opener / dome opener, barrier tools, Cardonald teleportation circles | Day-43 strategic resources. | Party Inventory / [Garadwal](../people/garadwal.md), [Elemental Prisons](../concepts/elemental-prisons.md). | -| Harthall old lab key, Geldrin's arcane Draconic teleport/seeing scroll, fruit and vegetables, wrestler throne cart | Day-44 opening resources. | Inventory/open threads. | +| Hartwall old lab key, Geldrin's arcane Draconic teleport/seeing scroll, fruit and vegetables, wrestler throne cart | Day-44 opening resources. | Inventory/open threads. | | Head teacher necklace, picture chest, sceptre key, alteration/empathy orb, note `mine felt right here yours is under real` | Old school office clues. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md), inventory/open thread. | | Dunner-style pot and food, ancient dragon scroll, Ruby Eye self-reincarnation spell, student robes, Hammerguard embroidery | Old school social/classroom items. | Rollup; inventory where custody unclear. | | Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, janitor's broom, cursed/uncursed healing potions, green liquid / possible Noxia blood | Day-44 books and route/curse items. | [Bleakstorm](../places/bleakstorm.md), [Noxia](../people/noxia.md), inventory/open thread. | diff --git a/data/6-wiki/items/mother-of-pearl-elemental-chariot.md b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md index 4ddc6cb..d264be1 100644 --- a/data/6-wiki/items/mother-of-pearl-elemental-chariot.md +++ b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md @@ -25,13 +25,13 @@ The mother-of-pearl elemental chariot is a light chariot found docked at a cove - Dirk spoke to the elementals; they wanted something [unclear] and agreed to come with the party on the big boat. - Zinquiss planned to sell it at auction in seven days at the Freeport auction house. - A chariot appeared among later auction lots and interested The Guilt, but the notes do not explicitly confirm it was the same mother-of-pearl elemental chariot. -- Day 32 gives the auction chariot more context: it was connected to an Excellence defeated in the `battle of the unending seas`, drew bids from Ravens, jewellery men, an emissary, Dally, the Harthwall partner, and Lady Thorpe, and was taken to the Palace with other auction property. +- Day 32 gives the auction chariot more context: it was connected to an Excellence defeated in the `battle of the unending seas`, drew bids from Ravens, jewellery men, an emissary, Dally, the Hartwall partner, and Lady Thorpe, and was taken to the Palace with other auction property. ## Timeline - `day-22`: The party finds the chariot at the cove after the shield crystal mission and takes it with them. - `day-31`: A chariot is listed at auction and draws The Guilt's interest. -- `day-32`: The Hearthwall auction chariot is linked to an Excellence and taken to the Palace. +- `day-32`: The Hartwall auction chariot is linked to an Excellence and taken to the Palace. ## Related Entries diff --git a/data/6-wiki/items/shield-crystals.md b/data/6-wiki/items/shield-crystals.md index 54c77f6..20aa793 100644 --- a/data/6-wiki/items/shield-crystals.md +++ b/data/6-wiki/items/shield-crystals.md @@ -34,7 +34,7 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - A wooden shield crystal figurehead appeared on the Pride of the Penta Cities. - The underwater shield crystal on day 22 was approximately one metre square. - The sea shield crystal was one major priority for Pact and Barrier repair. -- Day 32 shows Xinquiss in Hearthwall with a shield crystal; the party agreed to drop off a piece, and Wroth later helped hide the crystal through a trapdoor. +- Day 32 shows Xinquiss in Hartwall with a shield crystal; the party agreed to drop off a piece, and Wroth later helped hide the crystal through a trapdoor. - Day 57 Infestus's wife gave the party a powerful charged shield crystal and scrolls before sending them to Brass City. - Day 57 Brass City lore says a body was being crafted out of shield crystal as a focusing crystal and stored in one of the four great minarets. - Day 57 an Earth-plane table held a shield crystal identified as a piece of Tresmon. @@ -46,7 +46,7 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - `day-13`: A crystal shard interacts with Seaward pylon flickers. - `day-17`: Sea shield crystal becomes a priority. - `day-22`: The party fights at the underwater crystal site and recovers loot. -- `day-32`: Xinquiss and Wroth hide a shield crystal piece in Hearthwall while Justicars search for Xinquiss. +- `day-32`: Xinquiss and Wroth hide a shield crystal piece in Hartwall while Justicars search for Xinquiss. - `day-57`: Brass City reveals a shield-crystal body/focusing crystal, a Tresmon piece, and Envi's crystal control. ## Related Entries diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index bba86a1..1920c64 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -92,8 +92,8 @@ sources: - What do the command-tent platinum coins commemorate by `the fall of the labour in the name of the lord Searean`, and what are the domed city tower and snake symbols? - What happened to [Lady Hartwall](people/lady-hartwall.md) after the antidote, injury, and Lady Thorpe impersonation crisis? - Who replaced [Lady Thorpe](people/lady-thorpe.md) with a llama-form impostor, why did the impostor use Noxia-like identity-suppression poison or curse, and what did the Justicars learn after taking the llama to Grand Towers? -- What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s shield-crystal role after hiding a crystal piece with Wroth, and why were Justicars looking for him at the Hearthwall auction? -- Are the [Hearthwall Auction Lots](items/hearthwall-auction-lots.md) chariot, `Valententide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? +- What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s shield-crystal role after hiding a crystal piece with Wroth, and why were Justicars looking for him at the Hartwall auction? +- Are the [Hartwall Auction Lots](items/hartwall-auction-lots.md) chariot, `Valententide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? - Why was the Tri-moon visible during the day 16 hours early, and why did Jin-Loo's records list 104 AD, 339 AD, 629 AD, and 1012 AD despite saying the event happened three times in 1,000 years? - Who runs the [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): the Duke's office, the woman with a bag on her head, the snake-bodied emissary, Lady Envy, Noxia-linked agents, or another faction? - Why did memory grubs erase council members' memories of [The Guilt](concepts/excellences.md), make them distrust him, and create a feeling of being watched? @@ -103,7 +103,7 @@ sources: - What does Morgana's forced-feeling kiss vision of a laughing female dragon, possibly the Peridot Queen, mean for Elementarium's green eyes and the silver dragon man who cast a spell on him? - What caused the [Brookville Springs](places/brookville-springs.md) purple explosions, vanished leader, and Claymeadow's broken Bird / Newgate doppel crisis? - Are [Pride](concepts/excellences.md), [The Guilt](concepts/excellences.md), [Wrath](people/wrath.md), Envy, and the other six little demons of Darkness Excellences, demons, gods' tools, or overlapping titles? -- What is the shell of [uncertain: Tremoon], why do Ruby Eye and Wrath want it, and is it safe at Harthwall? +- What is the shell of [uncertain: Tremoon], why do Ruby Eye and Wrath want it, and is it safe at Hartwall? - Who is the female outside the Barrier who wants the [Jelly Fish Broach](items/grand-towers-bargain-trinkets.md), and what are Scorpion, Snowlee, Jelly Fish, and Ant? - How do [Bridget's Doors](concepts/bridgets-doors.md) decide destination, eye color, time displacement, and cost from Grand Towers pennies? - Who tampered with Ruby Eye's and [Icefang](people/icefang.md)'s memories using ear grubs, and was the dark elf from Envy's apprentice? @@ -123,7 +123,7 @@ sources: - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused Eliana's cracked-eggshell dragon dream and temporary mental-stat disadvantage? - What does Dirk's Goliath-and-fat-bellied-dragon dream mean about links to dragons, Goliaths, or ancestral figures? -- Is [Ennuyé](people/ennuyé.md) trapped, allied, hostile, or divided between Ruby Eye, Mama Harthall, the rings, and dark-demon deals? +- Is [Ennuyé](people/ennuyé.md) trapped, allied, hostile, or divided between Ruby Eye, Lady Evalina Hartwall / Mama Hartwall, the rings, and dark-demon deals? - What exact relationships connect [Peridita](people/peridita.md), Lortesh's children, Emeredge, Willow-wispa, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Lapis, Heady, Plague, and [Galimma](people/galimma-peridot-queen.md)? - What happened to resistance members who used Three Finger Dune Shwelter's black-feather communication device to contact the outside? - Did Badger survive after Ashkellon, and did the name `Badger born in freedom` become a real resistance symbol? @@ -148,7 +148,7 @@ sources: - Why are Ruby Eye and Errol possibly not on the same plane? - What do Cardonald's teleportation-circle destinations reveal about undefended prisons, the lab, Grand Towers, Menagerie, Ashhellier, and broken Aegis on Sands? - Who built Morgana's statue, and how fast did her Goliath-child healing become legend? -- What is in Harthall's old lab, and how does its key help access the Howling Tombs? +- What is in Hartwall's old lab, and how does its key help access the Howling Tombs? - How should Geldrin's arcane Draconic teleport/seeing scroll be used to understand where `they` went? - What exactly happened at Ruby Eye's melted house, his wife's grave, and Valentinheide killing Emi's wife? - Why was the Riversmeet Kasha temple notable, and what local role do Hydrum, Igraine, Larn, and Kasha temples play? @@ -156,9 +156,9 @@ sources: - Who are Acroneth, Crindler, Belocoose, and the sphinx on another plane? - What does the empathy alteration orb mean by `mine felt right here yours is under real`? - How do the serpans' sphinx book, underground city, Grincray, [Trixus](people/trixus.md), and the sixth sphinx connect? -- What future knowledge did Mr Moreley recognize in Geldrin's ancient dragon scroll, and what was Harthall hiding from the Gold Dragon Council? +- What future knowledge did Mr Moreley recognize in Geldrin's ancient dragon scroll, and what was Hartwall hiding from the Gold Dragon Council? - What was Ruby Eye's eye-removal final project, and why did he recruit Geldrin to join Everard, Thomas / Enis, and Valenth? -- What is Eliana's Evalina Harthall / Miana / Avalina identity, and why did a silver dragon or silver-green claw demand its form back? +- What is the Lady Evalina Hartwall / Miana / Avalina identity, and why did a silver dragon or silver-green claw demand its form back? - What did [Bright](people/valententhide.md), Valentenhule, Great Farmouth, gnomes, merfolk, and Grand Towers technology really have to do with each other? - What did Enis mean by Geldrin being touched by the lady of destruction, and what dark magic was Enis researching? - What is the green liquid / possible Noxia blood from the desert, and what came with the party? @@ -177,13 +177,13 @@ sources: - What did the lost ring remove from Dirk and Geldrin, and can compassion or curiosity be restored? - Who or what caused the Day 46 memory flood, and why did Invar and Eliana remember Morgana as more familiar than expected? - Who is controlling Riversmeet through false officials, lamias, rats, jade, altered memories, and the town-hall passages? -- Which prison near Snowscreen holds the Harthall artifact, and how does it affect Harthall's memory work? +- Which prison near Snowscreen holds the Hartwall artifact, and how does it affect Hartwall's memory work? - What is the purpose of the 50,000 gp jade cache from the boat, and how does it connect to Terrance's wife's jade earrings and the 500 gp jade order? - Where does the `Earth hath no` door at The Olde Clay Jug lead, and who is Highgate? - What did Valententhide intend to charge in identities, eyes, and pride for use of her pathways? - What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? -- Who was removed from the Harthall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Harthall's daughters? +- Who was removed from the Hartwall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Hartwall's daughters? - What do Argathum's urn, Lady Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Hartwall's sacrifices? - Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Boorning do with the key after Avalina left? - Who is [Bynx](people/bynx.md)'s lion-headed `real daddy`, and what happened to Bynx's sister in the white dragon? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md index ce7436a..5002f82 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre-altabre.md @@ -29,7 +29,7 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. - Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. - Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. -- Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and a father descended to earth to save his child from imprisonment. +- Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and Leadus' father descended to earth to save his child from imprisonment. - Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. - Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Kaylara accepted the spells. - Attabre warned that divine gifts before the next realm would be hard to choose and that if the party died there they would not get back up. diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 3a29ba1..17d1688 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -52,7 +52,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - Ruby Eye said his pacts with Kashe were his downfall and that sacrifices by him and Joy's mother kept Joy safe; after the battle, Ruby Eye was missing and out of Bleakstorm's sight. - Day 43 records that Ruby Eye was no longer welcome at the pale-skinned, black-dreadlocked king's city; later Cardonald could not find Ruby Eye and thought he might not be on the same plane. - Day 44 places young Ruby Eye in the old Riversmeet mage school, working on a final project to remove his eye, recruiting Geldrin into a group with Everard, Thomas / Enis, and Valenth, and using a self-reincarnation spell. -- Mr Moreley recognized Geldrin's ancient dragon scroll as something still being worked on and suspected Harthall was keeping things from the Gold Dragon Council; a later draconic book was left where only Ruby Eye would find it and said `Battery is the clue`. +- Mr Moreley recognized Geldrin's ancient dragon scroll as something still being worked on and suspected Hartwall was keeping things from the Gold Dragon Council; a later draconic book was left where only Ruby Eye would find it and said `Battery is the clue`. - On Day 46, Errol hid ruby messages connected to Rubyeye, Enis, Browning, and Squeal. One clarified that Squeal did not ask for weather through the Barrier but for `the loss of everything`; another message with red glowing eyes, a water Excellence, and a whirlwind being was refused by Errol. - A false message said `Bread & Circus` and pretended to be Rubyeye, while Platinum said Errol was possessed by one of Squeal's things. - A Rubyeye / Squeal warning said to be careful at Riversmeet and that Enis had trapped Rubyeye in a room before Rubyeye went to his wife's place and was imprisoned. @@ -74,7 +74,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - `day-25`: Rubyeye's prison-status readout becomes relevant to Rimewatch and the Ice prison. - `day-28`: Rubyeye explains Grand Towers and prison-control architecture. - `day-30`: Cardenald resurrects Rubyeye, and he resumes active support. -- `day-36`: Ruby Eye returns to Grand Towers and Harthwall-related crises, explains bargain lore, and is revealed to have been entangled with Wrath. +- `day-36`: Ruby Eye returns to Grand Towers and Hartwall-related crises, explains bargain lore, and is revealed to have been entangled with Wrath. - `day-42`: Ruby Eye proves his identity with ring lore, explains Joy-related sacrifices, and then goes missing. - `day-43`: Cardonald cannot locate Ruby Eye or Errol, possibly because they are not on the same plane. - `day-44`: The party encounters young Ruby Eye in old mage-school history and finds a draconic book intended for him. diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index 8a54825..e0b376c 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -17,12 +17,12 @@ sources: ## Summary -Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Harthall's lab. +Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Hartwall's lab. ## Known Details - On `day-46`, Morgana recovered the baby sphynx / goliath child after Kasha tried to claim it as alternative payment; the spell completed too quickly, as if another power also cast it. -- On `day-47`, the sphynx grew quickly, asked many questions, played in Harthall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. +- On `day-47`, the sphynx grew quickly, asked many questions, played in Hartwall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. - Bynx identified a lion-headed elven body in a Grand Towers memory box as "real daddy" and broke the box. - The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. - Bynx's mother appeared as a carved female sphynx face on a Sunsoreen palace door. diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md index df03de0..6bba03f 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/edward-browning.md @@ -37,7 +37,7 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Day 31 includes Browning's scroll at auction, which produces a new random spell each morning at 2:37. - Day 32 gives more detail on Browning's scroll: Geldrin tried to inspect arcane writing and cast Dispel Magic, making the words disappear; the scroll generated a new random spell every morning at 2:37, was valued at 600 gp, and sold for 6,200 gp. - Browning / Skutey Galvin was wanted for impersonating a Justicar, but the notes do not establish whether Skutey Galvin is Browning, an alias, or a separate impersonator. -- Day 36 Grand Towers visions show Browning with Pride's power, wanting the biggest tower and to be the greatest wizard of all time, trapping Garadwal downstairs, making Ruby Eye obey him, activating a device that made Harthwall disappear, and contacting a giant green dragon to help get rid of his husband. +- Day 36 Grand Towers visions show Browning with Pride's power, wanting the biggest tower and to be the greatest wizard of all time, trapping Garadwal downstairs, making Ruby Eye obey him, activating a device that made Hartwall disappear, and contacting a giant green dragon to help get rid of his husband. - Day 36 memory tampering showed Icefang shouting at Browning before a dark elf dropped a grub in Icefang's ear. - Day 41 reports four towers springing out of the ground around Grand Towers and making a new Barrier; Browning's responsibility is not confirmed but remains highly relevant. - Day 43 reports that Mr Browning did not like Emi's dark-skinned elf apprentice, that Hephestos may have been asked to attack the dome by Browning, and that Browning's reputation as a nice man conflicts with what the party has seen. diff --git a/data/6-wiki/people/eliana-hartwall.md b/data/6-wiki/people/eliana-hartwall.md index 10eea1d..641b9cf 100644 --- a/data/6-wiki/people/eliana-hartwall.md +++ b/data/6-wiki/people/eliana-hartwall.md @@ -3,7 +3,7 @@ title: Eliana Hartwall / Kaylara type: player character aliases: - Eliana Hartwall - - Elliana Harthall + - Elliana Hartwall - Elluin Hartwall - Elluin Hartwall! - Kaylara diff --git "a/data/6-wiki/people/ennuy\303\251.md" "b/data/6-wiki/people/ennuy\303\251.md" index f271186..c79ceac 100644 --- "a/data/6-wiki/people/ennuy\303\251.md" +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -50,7 +50,7 @@ Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one - Day 42 council lore said Envi might be trapped, but whose side he was on remained uncertain, and that Envi had been part of deals with dark demons. - Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. - Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices were made to keep Joy safe and eternal. -- Day 43 says Wroth trapped Envy in Mama Harthall's head the same way Envy is in Ruby Eye's, suggesting Envy can be contained in people or minds. +- Day 43 says Wroth trapped Envy in Lady Evalina Hartwall's head the same way Envy is in Ruby Eye's, suggesting Envy can be contained in people or minds. - Day 57 Hydran-realm carvings said Envi was free: his spirit reached his base, occupied an awakened body in his laboratory, gained power and control over crystals, and had captured the party's allies. His goal was unknown and he had not been near his other parts. - Day 57 Azar Nuri said Envi works for him and has Tresmun's arm. @@ -65,7 +65,7 @@ Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one - `day-26`: The Mother uses Envi's clone and cipher during the life-prison and Baytail Accord crisis. - `day-30`: Enwi's gloves are located in the Goliath Tower in the Oasis, and Enwi's ring pact is noted. - `day-42`: Envi's possible imprisonment, dark-demon deals, fifth ring, and Joy-related ring activation become central. -- `day-43`: Wroth's Envy-in-Mama-Harthall account reframes Envy/Envi containment in minds. +- `day-43`: Wroth's Envy-in-Mama-Hartwall account reframes Envy/Envi containment in minds. - `day-57`: Hydran's realm and Azar Nuri identify Envi as free, crystal-controlling, allied with or subordinate to Azar Nuri, and holding Tresmun's arm. ## Related Entries @@ -82,5 +82,5 @@ Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one - Did his attempt to save Joy damage the Barrier? - Are Ennuyé, Enwi, Envi, and Ennui all the same person, or are some separate figures? - Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? -- Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Mama Harthall? +- Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Lady Evalina Hartwall / Mama Hartwall? - Why does Envi have Tresmun's arm, and what does Azar Nuri expect him to do with it? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index c254c46..1309082 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -66,10 +66,10 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. - Garadwal sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. - After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. -- Day 47 Harthall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a lion-headed elven body that [Bynx](bynx.md) called "real daddy," and diary entries saying Argentum wanted to help Garadwal fight elementals. +- Day 47 Hartwall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a lion-headed elven body that [Bynx](bynx.md) called "real daddy," and diary entries saying Argentum wanted to help Garadwal fight elementals. - Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadwal, while preserving uncertainty about whether the original intentions remained good. - On Day 56, Garadwal was found behind a Barrier with Trixus, Benu, and Bynx in a Grand Towers control-room side area. He was clearer, said he would repay his misdeeds by helping the party, and asked that the dome be brought down now for different reasons. -- Garadwal's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Harthall to the downfall and said Argentum died. +- Garadwal's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Hartwall to the downfall and said Argentum died. ## Timeline @@ -86,7 +86,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Altabre's children, the Dumnens, and the hidden feather relic. - `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. - `day-46`: Garadwal is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. -- `day-47`: Harthall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx's lion-headed father clue. +- `day-47`: Hartwall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx's lion-headed father clue. - `day-56`: Garadwal is found with Trixus, Benu, and Bynx behind a Grand Towers Barrier and urges the party toward bringing the dome down. ## Related Entries @@ -110,7 +110,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Is Excellence's brother the same figure as Garadwal, and why did Goliaths ask Excellence to trap him? - What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? - Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? -- Who are Garadwal's brothers, and is one connected to the undead sphinx reported near the Harthall artifact lead? +- Who are Garadwal's brothers, and is one connected to the undead sphinx reported near the Hartwall artifact lead? - Is Bynx's lion-headed `real daddy` Garadwal, a relative, or another sphynx-linked figure? - Why does Garadwal now want the dome brought down, and how does that differ from his earlier motives? - Which father trusted the party after the children reunited, and what does his trust permit? diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 91e336f..23aa9ae 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -19,7 +19,7 @@ sources: ## Summary -Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tampering, Ruby Eye's orbs, Harthall, and the battle near Highden. +Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tampering, Ruby Eye's orbs, Hartwall, and the battle near Highden. ## Known Details @@ -27,13 +27,13 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - During a mental meeting, Icefang appeared as an elderly gentleman and showed a memory of shouting at Browning before a dark elf dropped an ear grub into his ear. - Icefang said he never would have dropped a rope, was glad to be sane before the end, and said the party needed to right the wrongs. - He said the Barrier was a good thing but too many sacrifices had been made. -- In the Highden battle, a massive frost dragon burst from a black hole, seized the skeletal dragon, called Harthall `My Child`, crashed through the Barrier, and was retrieved by a water elemental. +- In the Highden battle, a massive frost dragon burst from a black hole, seized the skeletal dragon, called Hartwall `My Child`, crashed through the Barrier, and was retrieved by a water elemental. - Cardunel planned to bury Icefang near Snow Sorrow. - Day 42 copper-dragon history says Ice Fury was about thirty to forty years older than the copper dragon, while [uncertain: Ice fang] / Atlih was noted near her boy and Snow Screen / Snow Sorrow. - Day 43 says Lady Hartwall remembered Icefang more clearly, that he cared for her, and that he and Lady Hartwall assaulted Perodita while Icefang was starting to lose his mind. - Day 44 has Altith / Icefang contact Eliana, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. - Icefang's future vision if Browning acted showed broken tower fields, burning blue, black, green, and red dragons, hidden settlements, and destructive elementals. -- Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Mama Harthall holding the blue ball and saying the work had to stop. +- Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Lady Evalina Hartwall / Mama Hartwall holding the blue ball and saying the work had to stop. - Day 57 Bleakstorm said Icefang's spirit was still in the dome because Icefang died there and asked the party to free it. - Day 57 Attabre said Eliana was Icefang's daughter as well as Attabre's, that Icefang gave them all vision, got Kaylara out, and then fell to slumber. @@ -48,7 +48,7 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Who ordered or carried out Icefang's memory tampering? - What was the `paysoil`, and why would it not work without Icefang? -- What is Icefang's exact family relationship to Harthall? +- What is Icefang's exact family relationship to Hartwall? - Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snow Screen figures? - What did Icefang mean by Dad being mad and the gods taking over Snow Screen? - What does freeing Icefang's spirit from the dome require? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index dc83ff8..b919ce5 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -41,7 +41,7 @@ Joy was a tiefling child and daughter of [Ennuyé](ennuyé.md), connected to the - Day 44 notes Joy in the old school context around Enis / Thomas, Hannah, and Cardonald's daughter. - On Day 46, an illusion of Joy appeared beyond the map table after the memory-destroying creature died, saying she was there because the party had met her and that she was lost and always had been. - Day 47 clarifies that Enis sacrificed his wife Hannah Joy so Joy could live, but the attempt failed because Joy could not exist if her mother did not exist. -- Harthall lab memory rooms preserved Joy-labelled tea-set papers and confirmed Hannah Joy, Enis's wife, had been erased from existence. +- Hartwall lab memory rooms preserved Joy-labelled tea-set papers and confirmed Hannah Joy, Enis's wife, had been erased from existence. ## Timeline diff --git a/data/6-wiki/people/lady-evalina-hartwall.md b/data/6-wiki/people/lady-evalina-hartwall.md new file mode 100644 index 0000000..e8411ee --- /dev/null +++ b/data/6-wiki/people/lady-evalina-hartwall.md @@ -0,0 +1,48 @@ +--- +title: Lady Evalina Hartwall +type: person +aliases: + - Lady Evalina Hartwall + - Evalina Hartwall + - Mama Hartwall + - Miana + - Avalina +first_seen: day-36 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md +--- + +# Lady Evalina Hartwall + +## Summary + +Lady Evalina Hartwall, also known as Mama Hartwall, is tied to the Hartwall family, Eliana's older identity threads, and the old wizard project around Hannah, Icefang, Envy, and the blue ball. + +## Known Details + +- Day 43 says Wroth trapped Envy in Mama Hartwall's head the same way Envy is in Ruby Eye's. +- Day 36 has Ruby Eye and Carduneld say the party should talk to Mama Hartwall after recognizing memory tampering around Ruby Eye and Icefang. +- Day 44 has Eliana give the name Evalina Hartwall in the old school sequence; Miana / Lady Evalina was assigned Air. +- Day 44 later frames Eliana's assumed identity as Lady Evalina Hartwall / Miana / Avalina, seen by Truesight as a dragon. +- Day 56 records the line, `I thought my daughters would like it? Mama Hartwall??` +- Day 57 includes a silver dragon object exactly like Mama Hartwall. +- Day 57 shows Mama Hartwall angry at a large round table with five wizards, Hannah, and Icefang, holding the blue ball and saying, `This is enough. You can't continue this any more.` + +## Related Entries + +- [Eliana Hartwall / Kaylara](eliana-hartwall.md) +- [Lady Hartwall](lady-hartwall.md) +- [Icefang](icefang.md) +- [Ennuyé](ennuyé.md) +- [Valententhide](valententhide.md) + +## Open Questions + +- How do Lady Evalina Hartwall, Eliana Hartwall, Miana, and Avalina relate across memory, time, and altered identity? +- What exactly happened when Envy was trapped in Lady Evalina Hartwall's head? +- Are the daughters referenced on Day 56 Eliana, Joy, Hannah, Kaylara, or other Hartwall children? diff --git a/data/6-wiki/people/lady-hartwall.md b/data/6-wiki/people/lady-hartwall.md index 9b63f66..088aacb 100644 --- a/data/6-wiki/people/lady-hartwall.md +++ b/data/6-wiki/people/lady-hartwall.md @@ -18,14 +18,14 @@ sources: ## Summary -Lady Hartwall is a regional noble or military authority connected to Hearthwall, Goldenswell war news, and the Lady Thorpe impersonation crisis. +Lady Hartwall is a regional noble or military authority connected to Hartwall, Goldenswell war news, and the Lady Thorpe impersonation crisis. ## Known Details - She was injured after deciding to take the fight against the giants into her own hands. - The news report said she was recuperating normally. - Later the same day, Invar received a message saying the Lady was unavailable because she was fighting on the front lines. -- Day 32 places Lady Hartwall in Hearthwall, still injured, while Lady Freya attended the city. +- Day 32 places Lady Hartwall in Hartwall, still injured, while Lady Freya attended the city. - Lady Hartwall wanted to see the party after the false Lady Thorpe incident; doctors were making an antidote while she suffered great pain from a condition that seemed like magical poison or a religious curse, possibly Noxia. - Lady Hartwall had noticed that Lady Thorpe had not visited as much as expected, but had not realized her wife or partner had been replaced. - Eroll was used to send a message to Lady Hartwall after the Goldenswell rescue. diff --git a/data/6-wiki/people/lady-thorpe.md b/data/6-wiki/people/lady-thorpe.md index 4661d59..bf5bbf6 100644 --- a/data/6-wiki/people/lady-thorpe.md +++ b/data/6-wiki/people/lady-thorpe.md @@ -15,7 +15,7 @@ Lady Thorpe is Lady Hartwall's wife or partner and a front-line noble or command ## Known Details -- At the Hearthwall auction, the apparent Lady Thorpe had six guards in transparent dragon or silver dragon livery, seemed flustered and confused, did not appear to recognize the party properly, and insisted on returning to failing front lines. +- At the Hartwall auction, the apparent Lady Thorpe had six guards in transparent dragon or silver dragon livery, seemed flustered and confused, did not appear to recognize the party properly, and insisted on returning to failing front lines. - When a concentration spell failed, the false Lady Thorpe turned into a llama; Justicars took the llama to Grand Towers. - The real Lady Thorpe was found by Scrying in a grey mountain-stone dungeon and was eventually located in the Goldenswell militia house, two floors down. - She was injured, malnourished, and had no fleshcrafting when rescued. diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index 9105506..080dad0 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -9,7 +9,7 @@ sources: | Figure | Day 47 details | Coverage | | --- | --- | --- | -| Argathum | Urn inscription apologised that love in life may not have been true though Argathum gave life for the writer. | Rollup; linked to Harthall lab thread. | +| Argathum | Urn inscription apologised that love in life may not have been true though Argathum gave life for the writer. | Rollup; linked to Hartwall lab thread. | | Provista | Possible source of Eliana somehow knowing Lady Hartwall played the flute. | Rollup. | | Avalina | Portrait subject; diary apparently revealed through makeup; tied to daughters, promises, forced mate, and Council of Gold. | Rollup and [Open Threads](../open-threads.md). | | Corundum, Argea?, Cetiosa | Portrait or missing-portrait names in the throne room. | Rollup; uncertainty preserved. | diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 7119d1d..1098cdd 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -20,7 +20,7 @@ sources: | Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | There | 57 | Cat became a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | | Bob and Bosh | 57 | Still cursed; There said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | -| Mama Harthall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana Hartwall / Kaylara](eliana-hartwall.md). | +| [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana Hartwall / Kaylara](eliana-hartwall.md). | | Cacophony | 57 | Appeared to Morgana as a huge worm, died, and showed Rubyeye removing his eye. | Rollup / [Open Threads](../open-threads.md). | | Rubyeye | 57 | Seen in vision removing his eye in a runed bathroom. | [Brutor Ruby Eye](brutor-ruby-eye.md). | | Hannah | 57 | Present at the vision round table with five wizards and Icefang. | Rollup / [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/people/minor-figures-days-23-31.md b/data/6-wiki/people/minor-figures-days-23-31.md index 9a383f4..ef606b3 100644 --- a/data/6-wiki/people/minor-figures-days-23-31.md +++ b/data/6-wiki/people/minor-figures-days-23-31.md @@ -47,7 +47,7 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch - Lady Aquena: Pact or merfolk noble who would stay for a while and leave her offspring. - Duchess Lauleriere of Freeport State: noble council member. - Duke Humbersinthesand of Dunensend State: noble council member. -- Duchess Hearthwall of Hearthwall State: noble council member. +- Duchess Hartwall of Hartwall State: noble council member. - Duke Norman Goldenswell of Goldenswell State: noble council member. - Duke Torrain Freefellow of Snowsorrow State: noble council member. diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index 86c1f16..ad183b2 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -12,11 +12,11 @@ sources: This rollup preserves one-off, uncertain, minor, or category-unclear people and name-like figures from Days 32 and 35 so they remain searchable without forcing uncertain merges. -## Hearthwall and Auction Figures +## Hartwall and Auction Figures -- Lan: earth god associated with love, home, and family; the statue of Lan outside Hearthwall resembled the Statue of Serva. +- Lan: earth god associated with love, home, and family; the statue of Lan outside Hartwall resembled the Statue of Serva. - Serva: figure represented by the Statue of Serva, stylistically similar to Lan's statue. -- Lady Freya: present in Hearthwall while Lady Hartwall remained injured. +- Lady Freya: present in Hartwall while Lady Hartwall remained injured. - Human with a very noticeable underbelly: seen at the Baked Mattress. - Barkeep described as `Patches of night & husband`: associated with the Baked Mattress. - Candelissa Hustlebustle: Arabica pechen lady seated beside the party at the auction; bought drink lots. @@ -35,7 +35,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Werewolfish [uncertain: Repiteth]: bought the shield ring with runes of Lauren. - Red-and-purple-haired dwarf male: bought Firefang. - Dally who walks in the room: involved or noted during the chariot bidding war. -- Harthwall partner: involved or noted during the chariot bidding war. +- Hartwall partner: involved or noted during the chariot bidding war. - Jewellery guy / jewellery men: bought several lots, including Browning's spell scroll. - Arthur's group: present around Lot 35. - Conrad Harthwall: present around Lot 35. @@ -83,7 +83,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and ## Groups and Creature Labels - Hillfolk, guards, auction attendees, reporters, doctors, Goldenswell forces, Duke's men, Duke's guards, Duke's emissaries, and Duke's personal guard: group labels preserved in the relevant day narratives and larger concept pages. -- Ravens, jewellery men, emissary, and Harthwall partner: auction-bidder labels whose agendas remain unresolved. +- Ravens, jewellery men, emissary, and Hartwall partner: auction-bidder labels whose agendas remain unresolved. - Yellow guards wearing a half-sun tattoo obscured by a waterfall: Goldenswell militia-house guards linked to the off-the-books prison operation. - Llamia: cart guards transformed into llamia during the Day 35 ambush; Lady Envy was said to be their boss. - Greenscale family, Loose Teeth, Bumblebeers, red Goliaths but bigger, Bleakshrouvers, Rein lore elves, rescuees, and local militia: external groups or descriptive labels from TJ's and Bluemeadows material. diff --git a/data/6-wiki/people/minor-figures-days-36-40-41.md b/data/6-wiki/people/minor-figures-days-36-40-41.md index 4511e50..b6f1473 100644 --- a/data/6-wiki/people/minor-figures-days-36-40-41.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -33,12 +33,12 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Arik Bellburn | Bridget clergyman in Bellburn. | Rollup and [Bridget's Doors](../concepts/bridgets-doors.md). | | Grol | Found Dirk in Seaward after door travel. | Rollup. | | Noxia, Arile, Otasha, Ennik, Leptrop | Divine bargain figures. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | -| Sheriff Fathrabit / Lady Fat Rabbit / Lady [rabbit] | Harthwall/Hearthwall authority and envoy references. | Rollup; variant preserved. | +| Sheriff Fathrabit / Lady Fat Rabbit / Lady [rabbit] | Hartwall/Hartwall authority and envoy references. | Rollup; variant preserved. | | The Mother, little tiefling girl, odd creatures, betrayer | Valenthielles-side scrying/fight. | Existing [The Mother](the-mother.md), NPC Status, rollup. | | Carduneld / Cardunel | Worked with Ruby Eye, planned Icefang burial; identity with Valenth/Cardonald uncertain. | Alias/open thread; not silently merged. | | Brother Fracture and Andy [uncertain: Kallamar?] | Bazaar/front-line contacts. | Status / rollup. | | Lucas and Heamon | Prison-door and skull details. | Rollup. | -| Mama Harthall | Suggested future contact. | Rollup; identity uncertain. | +| [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Suggested future contact. | Standalone entry; identity now confirmed. | | Highden priest, Earl, Laura, Sevor-ice | Highden contacts and odd frog/Sevor-ice moment. | Rollup. | | Scurry, Granny, Lady Coke | Highden Underbelly contacts. | [Underbelly](../factions/underbelly.md) and status. | | Gerald, Captain Briarthorn, Gary, Shep | Highden / Three Full Moons figures. | [Highden Fell](../places/highden-fell.md) and rollup. | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index 3f357c1..f821b47 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -35,21 +35,21 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Thromgore, Steven / Steve, Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | | [uncertain: Shulcher], Sierra, Earth Waker | Book and Noxia-corruption history figures. | Rollup/open thread; [Noxia](noxia.md). | | Partially ice dwarf, strapping Goliath, half-elf from Everdard, [uncertain: leechus] | Bleakstorm castle figures and lost-friend clue. | [Bleakstorm](../places/bleakstorm.md) / rollup. | -| Lady Parthabbit, Lady Hartwall, T.J. Boggins, Jin Woo | Heathwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | +| Lady Parthabbit, Lady Hartwall, T.J. Boggins, Jin Woo | Hartwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | ## Day 43 | Figure | Context | Outcome | |---|---|---| -| Grimby the 3rd, kobold lieutenant, Klesha, lovely Envoy, Grimby's mother, Shriek | Kobold displacement story involving Pine Springs, townsfolk killing, Harthall-like words, and missing goat man. | Rollup/open thread. | -| Wroth, Envy / Envi, Mama Harthall | Wroth trapped Envy in Mama Harthall's head like Envy in Ruby Eye's. | Existing/rollup; [Ennuyé](ennuyé.md). | -| [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Harthall street, receipt, chess, pub, and church details. | Rollup/open thread. | +| Grimby the 3rd, kobold lieutenant, Klesha, lovely Envoy, Grimby's mother, Shriek | Kobold displacement story involving Pine Springs, townsfolk killing, Hartwall-like words, and missing goat man. | Rollup/open thread. | +| Wroth, Envy / Envi, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Mama Hartwall | Wroth trapped Envy in Lady Evalina Hartwall's head like Envy in Ruby Eye's. | [Ennuyé](ennuyé.md). | +| [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Hartwall street, receipt, chess, pub, and church details. | Rollup/open thread. | | Dwarf blacksmith, golden dragonborn, vulture man, bushy-eared elf, pale dwarf with black dreadlocks and crown | Box and Benu-book scene figures. | Rollup; pale dwarf unresolved Ruby Eye lead. | | Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre / Altabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | | Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | | Lady Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcraft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | -| Earl of Goldenswell, Harthall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | +| Earl of Goldenswell, Hartwall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | | Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadwal feather conversation and Benu-summoning details. | Rollup/open thread. | | Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | Status rollup. | @@ -57,14 +57,14 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Figure | Context | Outcome | |---|---|---| -| Cardonald's familiar and unnamed adventurers | Reported Harthall's old lab and key for the Howling Tombs. | Status/open thread rollup. | +| Cardonald's familiar and unnamed adventurers | Reported Hartwall's old lab and key for the Howling Tombs. | Status/open thread rollup. | | Dragon slayer wrestler and two women | Riversmeet street performer on throne cart. | Rollup. | | Black dragonborn with Igraine, Freeport guards, militia, twenty wizards | Menagerie siege. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Acroneth, Crindler, Belocoose, sphinx on another plane | Names from Geldrin's enrollment effect. | Rollup/open thread. | -| Arreanae, Valent's daughter, gremlin janitor, Tortish Harthall / Harthwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Arreanae, Valent's daughter, gremlin janitor, Tortish Hartwall / Hartwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | | Serpans, four-armed vulture men, mindflayer-like wizard, Isobanne | Sphinx book and study-hall/classroom figures. | Rollup/open thread. | | Enis / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Valententhide](valententhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | -| Everard, Valenth, Brotor / Brutor, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Miana / Evalina Harthall / Avalina | Student identities and old school group. | Existing pages where present; rollup. | +| Everard, Valenth, Brotor / Brutor, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, [Lady Evalina Hartwall](lady-evalina-hartwall.md) / Miana / Avalina | Student identities and old school group. | Standalone entry plus existing pages where present. | | Bright, Argathum / Argenthum, Mr Cardonald, lady of destruction, very dark-skinned elf with green liquid | Lessons, god-touch, and possible Noxia blood clues. | [Valententhide](valententhide.md), [Noxia](noxia.md), rollup. | | Altith / Icefang, Emeraldus, Tallith, Blackhold | Future warning, janitor/broom, and route figures. | [Icefang](icefang.md), rollup. | | Professor Arnisimus Goldenfields and Arnisimus's love | Quarters with Goldenswell waterwheel plans, Larn symbol, seven cat collars. | Rollup/open thread. | diff --git a/data/6-wiki/people/minor-figures-days-53-56.md b/data/6-wiki/people/minor-figures-days-53-56.md index 610d4c2..5b92fd3 100644 --- a/data/6-wiki/people/minor-figures-days-53-56.md +++ b/data/6-wiki/people/minor-figures-days-53-56.md @@ -30,7 +30,7 @@ sources: - Great Farnworth gnome treasure hunter: released from magical influence in the control room; remembered places before and after the dome but not the year. - Humorous: old Rivermeet headmaster, woke thinking it was 3740 AC, thought Dirk looked like a Thrunglagen, and recovered his spellbook. - Hracency: death used with Rubyeye's eye and Dotharl to locate Rubyeye and Cardinal. -- Fairlight Harthall: contact the party wanted to speak to, but Windows could not find him. -- Windows: search or contact method/person that could not find Fairlight Harthall. +- Fairlight Hartwall: contact the party wanted to speak to, but Windows could not find him. +- Windows: search or contact method/person that could not find Fairlight Hartwall. - `[uncertain: Antherous?]`: figure who came through the portal before travel toward Bluescale / Infestus. - Ember: red dragonborn in Infestus's city who sought news of red dragons or dragonborn and offered 1,000 gp for the promise. diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 536ab89..b419d73 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -39,7 +39,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. - Day 40 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. - Day 41 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. -- Day 42 council history said the Goliath Empire killed Perodika's parents and built a city on their bones; Perodita later headed toward Heathwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. +- Day 42 council history said the Goliath Empire killed Perodika's parents and built a city on their bones; Perodita later headed toward Hartwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. - Galimma's dragon-family information preserves Perodika's children or related dragons with uncertain names and locations. - Day 43 says Lady Hartwall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. - Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index f0381ee..3f44891 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -123,7 +123,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Keely Caardenalb | not yet contacted | `data/4-days-cleaned/day-17.md` | Desert researcher whose work may be useful. | | [Luth](luth.md) | hiding or alive, unconfirmed | `data/4-days-cleaned/day-29.md` | Reportedly alive and hiding with the vulturemen, perhaps in the dome. | | [Lady R. Beauchamp?!?](lady-r-beauchamp.md) | unresolved | `data/4-days-cleaned/day-30.md` | Named as the person on whose behalf a Dunensend scholar inspected soot bones, with `Blue Dragon?!?` noted beside it. | -| Lady Fatrabbit / Blossom | Hearthwall sheriff and halfling general | `data/4-days-cleaned/day-32.md` | Helped investigate Lady Thorpe's abduction and took the party through the Castle. | +| Lady Fatrabbit / Blossom | Hartwall sheriff and halfling general | `data/4-days-cleaned/day-32.md` | Helped investigate Lady Thorpe's abduction and took the party through the Castle. | | Cardencalde | unreachable by Eroll | `data/4-days-cleaned/day-32.md` | Did not answer direct contact, which was strange. | | Baytail | prisoner, accused head of Underbelly | `data/4-days-cleaned/day-32.md` | Seen in skull vision as a Goldenswell prisoner. | | Elementarium | rescued but altered/unresolved | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Imprisoned while an impostor appeared in town crier information; later rescued from prisoner cart and woke with green eyes. | @@ -153,8 +153,8 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Water elementals chained to chariot | chained, with party, pending auction | `data/4-days-cleaned/day-22.md` | They wanted something [unclear] and agreed to come on the big boat. | | Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaws on the Earl's orders under treason accusations. | | [Silver](silver.md) | soul destroyed, construct taken over | `data/4-days-cleaned/day-23.md` | Dirk threw Silver into the Barrier, destroying the soul; Cardonal then took over the construct. | -| Goldenswell off-the-books prisoners | captive or partly rescued | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Harthwall were identified; later transport rescue recovered several council members. | -| Harthwall | imprisoned then released/curse unresolved | `data/4-days-cleaned/day-36.md` | Wrath put her in the ground with imprisonment using a silver dragon statue. | +| Goldenswell off-the-books prisoners | captive or partly rescued | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Hartwall were identified; later transport rescue recovered several council members. | +| Hartwall | imprisoned then released/curse unresolved | `data/4-days-cleaned/day-36.md` | Wrath put her in the ground with imprisonment using a silver dragon statue. | | Valenthielles | left in prison by recent visitors | `data/4-days-cleaned/day-36.md` | Dark prison entity said visitors cleaned up quickly and left Valenthielles there. | | Icefang's ice elemental | imprisoned at Rimewock / Rimewatch | `data/4-days-cleaned/day-36.md` | Water elementals required the party to agree to free it. | | Hephestus / Hephestos | imprisoned soul or barrier entity | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Door had ninth-level Banishment; later described as only his soul and wanted a pact to be let out. | @@ -206,7 +206,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Fairshaws/Fairport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | | [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | | Lady Envy | llamia boss | `data/4-days-cleaned/day-35.md` | Named by TJ Biggins as boss of the llamia; relation to Excellence/sin-title pattern unresolved. | -| [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Harthwall, and was shouted back into Ruby Eye's eye. | +| [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Hartwall, and was shouted back into Ruby Eye's eye. | | [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-40.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | | [Peridita](peridita.md) / Perodika | active regional dragon threat | `data/4-days-cleaned/day-41.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | | Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-41.md` | Ran off during the Azureside battle. | diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md index 217ad40..e156c44 100644 --- a/data/6-wiki/people/valententhide.md +++ b/data/6-wiki/people/valententhide.md @@ -42,11 +42,11 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - The same book says Valententhide exploited a loophole to remain at her palace when the gods were banished to another plane. - Later on `day-47`, an accidental portal opened into a black corridor in Valententhide's house; the party saw Valententhide, passed out, and Morgana heard Eliana while feeling cold hands on her shoulder. - On `day-48`, a featureless figure in a prison dome said it was no one, lost, once part of Valententhide, and that Thomas put it there and took what was there. It linked the elemental planes, pacts, world creation, the Vessel of Divinity, gods, and lostness. -- The same Day 48 figure answered Eliana's question about why everyone thought they were a Harthall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. +- The same Day 48 figure answered Eliana's question about why everyone thought they were a Hartwall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. - On `day-52`, a night-sky-serenity part of Valententhide was described as a small shard of a powerful creature. Reuniting it would soften Valententhide into a goddess of destruction rather than a mindless road-murdering force. - Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. - On `day-56`, Valententhide appeared reflected in Invar's armour, and a tapestry showed five wizards plus an invisible Hannah Joy-like woman whom Dotharl could not see because he knew she existed. -- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Altabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Mama Harthall. +- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Altabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Lady Evalina Hartwall / Mama Hartwall. ## Related Entries @@ -63,10 +63,10 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - How did she kill Emi's wife, and what did Ruby Eye know about it? - Why was Hannah visible if she was wiped from time and space? - What are the faces in her deep-sky palace walls, and what does it mean that she does not have them? -- How did she avoid the gods' banishment, and is her house connected to Harthall's portal network? +- How did she avoid the gods' banishment, and is her house connected to Hartwall's portal network? - What did Thomas remove when he put the lost part of Valententhide into the dome? - Why did Joy say this figure took her mum, and why did the ancestors still approve releasing it? - What does the `gold Valententhide` orb contain, and what would Bridget do with it? - Why did Valententhide appear through Invar's armour, and what does the Hannah-like invisible woman in the wizard tapestry imply? - What does the Altabre symbol on Valententhide's deactivated prison indicate? -- Who are the `daughters` and Mama Harthall in the replacements' comments? +- Who are the `daughters` and Lady Evalina Hartwall / Mama Hartwall in the replacements' comments? diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md index 1a7d713..94f474e 100644 --- a/data/6-wiki/people/wrath.md +++ b/data/6-wiki/people/wrath.md @@ -15,13 +15,13 @@ sources: ## Summary -Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pact with Ruby Eye, cursed silver and black dragons, and imprisoned Harthwall. +Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pact with Ruby Eye, cursed silver and black dragons, and imprisoned Hartwall. ## Known Details - Wrath appeared as Ruby Eye until Morgana's moonbeam revealed a red-skinned tiefling. -- He cast imprisonment on Harthwall using a silver dragon statue and the command `Burial`. -- He had made a pact with Ruby Eye to help kill the black dragon and said it was his fault Harthwall was outside. +- He cast imprisonment on Hartwall using a silver dragon statue and the command `Burial`. +- He had made a pact with Ruby Eye to help kill the black dragon and said it was his fault Hartwall was outside. - Wrath was scared of Browning, who had teamed up with Pride. - He cursed the silver and black dragons so they could not take human form. - He wanted the shell of [uncertain: Tremoon] because he saw the wizards make it and it helped people get through the Barrier. diff --git a/data/6-wiki/people/xinquiss-zinquiss.md b/data/6-wiki/people/xinquiss-zinquiss.md index 927556b..ddcd40e 100644 --- a/data/6-wiki/people/xinquiss-zinquiss.md +++ b/data/6-wiki/people/xinquiss-zinquiss.md @@ -28,7 +28,7 @@ Xinquiss or Zinquiss is a recurring contact tied to the mother-of-pearl chariot - Zinquiss planned to sell the mother-of-pearl elemental chariot at the Freeport auction house. - When the moon shard went into the sea, Xinquss had been tasked to retrieve it; Xinquss was also connected to the shield crystal. - Xinqus was later in town with a cart at the auction house and a [uncertain: pigeon/aracock]; `1600` was recorded nearby without context. -- On Day 32, Xinquiss was in Hearthwall for the auction, took the party to a new room as his presents, showed them the shield crystal, and agreed with the party that they would drop off a piece. +- On Day 32, Xinquiss was in Hartwall for the auction, took the party to a new room as his presents, showed them the shield crystal, and agreed with the party that they would drop off a piece. - The party told Xinquiss that the quilt might be an `excellence` or might be working for one. - Justicars were later looking for Xinquiss at the auction, and a waitress opened a trapdoor where he was hiding. - Xinquiss called Wroth to help hide the shield crystal, and Wroth did so. @@ -38,7 +38,7 @@ Xinquiss or Zinquiss is a recurring contact tied to the mother-of-pearl chariot - [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) - [Tri-moon Shard](../items/tri-moon-shard.md) - [Freeport Auction Lots](../items/freeport-auction-lots.md) -- [Hearthwall Auction Lots](../items/hearthwall-auction-lots.md) +- [Hartwall Auction Lots](../items/hartwall-auction-lots.md) - [Shield Crystals](../items/shield-crystals.md) ## Open Questions diff --git a/data/6-wiki/places/bleakstorm.md b/data/6-wiki/places/bleakstorm.md index 24f5979..3feead0 100644 --- a/data/6-wiki/places/bleakstorm.md +++ b/data/6-wiki/places/bleakstorm.md @@ -25,7 +25,7 @@ Bleakstorm is both a cursed/blessed castle location and the title or identity of - On `day-42`, the party teleported to Bleakstorm castle, where blizzards, ice elementals, portraits, a time-detecting device, and a half-elf from Everdard were present. - The device detected time and noted Dirk was missing a day. - Bleakstorm said he could send people back in time at a cost, could not see Ruby Eye, and warned about difficult trips outside the Barrier. -- He reported Perodita heading to Heathwall, Garadwal growing stronger at Gravel Basers, and Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. +- He reported Perodita heading to Hartwall, Garadwal growing stronger at Gravel Basers, and Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. - On `day-44`, Lord Bleakstorm appeared as a history teacher in the old mage school and taught about Bright, Valentenhule, Great Farmouth, and gnomes. - `Lord of Bleakstorm and the Gnomes` says Bleakstorm connected gnomes, merfolk, Great Farmouth, and possible gnomish Grand Towers technology. diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md index d7cbc70..89c564e 100644 --- a/data/6-wiki/places/grand-towers.md +++ b/data/6-wiki/places/grand-towers.md @@ -24,14 +24,14 @@ sources: ## Summary -Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, Ruby Eye, Harthwall, wizard bargains, Grand Towers pennies, Grand Towers passages, and later the sudden rise of four new towers making a new barrier around the site. +Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, Ruby Eye, Hartwall, wizard bargains, Grand Towers pennies, Grand Towers passages, and later the sudden rise of four new towers making a new barrier around the site. ## Known Details - On `day-36`, Mercy led the party through a passage into Grand Towers, emerging through a broom cupboard and robe room. - Floors 70 to 90 were schools of magic, floors 60 to 70 were storerooms and administration offices, floors 0 to 60 were apartments, and floor 74 held enchantment classes plus the private mage area where Mercy's contractor wanted the Jelly Fish Broach retrieved. - Floor 65 contained a central pillar and shelves of memory orbs like Ruby Eye's lab. -- Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadwal trapped downstairs, Harthwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. +- Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadwal trapped downstairs, Hartwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. - Geldrin reached floor 98 and found Browning before alarms and golems forced the party to flee. - On `day-41`, The Basilisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. - On `day-43`, all wizards seemed to have been recalled to Grand Towers, the Grand Towers dome later went down, and Cardonald's teleport-circle list included the factory, control room, and meeting lounge. diff --git a/data/6-wiki/places/highden-fell.md b/data/6-wiki/places/highden-fell.md index b6b73ea..8bc8e12 100644 --- a/data/6-wiki/places/highden-fell.md +++ b/data/6-wiki/places/highden-fell.md @@ -22,8 +22,8 @@ Highden Fell was a major battlefront on day 36, suffering crystal sickness, mili - Highden Fell's armies had retreated to the firewise mountain's second level by 14:00. - Captain Briarthorn commanded an elf hundred and planned to use the river as a battle point. - The command had obsidian ravens whose replies falsely told troops not to support the cause. -- Harthall joined fully armored, and the party planned a forest ambush and fire to split large giants from the army. -- The battle involved giants, Harthall, a skeletal dragon with a book from Ruby Eye's lab, Soot, Icefang, water elementals, and Geldrin's bargain with the skull-throne woman. +- Hartwall joined fully armored, and the party planned a forest ambush and fire to split large giants from the army. +- The battle involved giants, Hartwall, a skeletal dragon with a book from Ruby Eye's lab, Soot, Icefang, water elementals, and Geldrin's bargain with the skull-throne woman. ## Related Entries diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md index 1890e6b..60fd0b4 100644 --- a/data/6-wiki/places/minor-places-day-46.md +++ b/data/6-wiki/places/minor-places-day-46.md @@ -10,16 +10,16 @@ sources: | Place | Context | Outcome | |---|---|---| | Old mage-school kitchen, drama classroom, hall, first-year dorm, Evocation, Elemental Lore, Alteration, Weather, Herbs | Day 46 rooms explored while completing the old school / orb sequence. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md). | -| Cathedral / Harthall / Valententhide's home route | Broom misfire opened to a cathedral-like place, felt like Harthall and Valententhide's home. | Rollup/open thread. | +| Cathedral / Hartwall / Valententhide's home route | Broom misfire opened to a cathedral-like place, felt like Hartwall and Valententhide's home. | Rollup/open thread. | | Basement map room and orb room | Site of eight-divot map, orb placement, memory-destroying creature battle, and Joy illusion. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](../items/void-spheres.md). | | Dunensend ray | Corridor rug image showed Garadwal and the word `Terror`. | Rollup; [Garadwal](../people/garadwal.md). | | Tradesmells underground hideout | Tarnished hideout said to be fifteen miles below Tradesmells. | Rollup/open thread. | -| Snowscreen | Snowglobe source and later area near the prison where the Harthall artifact may be hidden. | Rollup/open thread. | +| Snowscreen | Snowglobe source and later area near the prison where the Hartwall artifact may be hidden. | Rollup/open thread. | | Infinite library / Grand temple city / [unclear: Hyane] | Morgana's vision during reincarnation magic. | Rollup/open thread. | | Pre-Dome desert | Garadwal's last memory before reincarnation. | [Garadwal](../people/garadwal.md). | | Rhime watches | Dothral woke near here around twenty years ago before being propelled through a door. | Rollup/open thread. | | Lake Azure | Longfang thought the dragon there might be dead. | Rollup/open thread. | | Riversmeet council bridge, And Pool, `I'm the Drink`, Wayshrill Bridge, The Olde Clay Jug | Town investigation locations around the false Exchequer, missing Igraine, infiltrators, rewards, and the `Earth hath no` door. | Rollup/open thread. | -| Harthall artifact prison near Snowscreen | Infiltrator lead said Harthall put an artifact in one of the prisons near Snowscreen. | Open thread. | +| Hartwall artifact prison near Snowscreen | Infiltrator lead said Hartwall put an artifact in one of the prisons near Snowscreen. | Open thread. | | Pinesprings | Adventurers killed some people there while following a related lead. | Rollup/open thread. | -| Harthall's lab | The party chose to head there after rest and chicken. | Rollup/open thread. | +| Hartwall's lab | The party chose to head there after rest and chicken. | Rollup/open thread. | diff --git a/data/6-wiki/places/minor-places-day-47.md b/data/6-wiki/places/minor-places-day-47.md index ededfae..958e310 100644 --- a/data/6-wiki/places/minor-places-day-47.md +++ b/data/6-wiki/places/minor-places-day-47.md @@ -9,7 +9,7 @@ sources: | Place | Day 47 details | Coverage | | --- | --- | --- | -| Harthall's lab | Destination and frame for Day 47; contains memory rooms, prison doors, handle puzzles, and portal links. | Rollup and open threads. | +| Hartwall's lab | Destination and frame for Day 47; contains memory rooms, prison doors, handle puzzles, and portal links. | Rollup and open threads. | | Pinesprings | Woodcutters had been taken by an elf killed by adventurers. | Existing place reference; rollup. | | Rose-field picture / illusion room | White-rose picture and window illusion preserve missing-girl and Joy/Hannah clues. | Rollup. | | `[unclear: aprosur]` | One of the sentient door's brother locations. | Rollup; uncertain. | diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index 95efab0..20d25eb 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -13,7 +13,7 @@ sources: | Gaol | Brass City contact said Valenth could be sought at the citadel or Gaol. | Rollup. | | Four great minarets | Store or relate to the shield-crystal focusing body and unruly tower creatures. | [Brass City](brass-city.md), [Tresmon's Body](../items/tresmons-body-and-statue-artifacts.md). | | Harn? tavern | Tavern-like cat space reached through an Earth-plane door; a ghost carrying sword and shield was not welcome. | Rollup. | -| Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to Mama Harthall/Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | +| Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to the Lady Evalina Hartwall / Mama Hartwall and Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Craters Edge | Seen through the moon door; Dirk heard garbled conversations. | Rollup. | | Pinesprings | Dragon door memory of snow, pine trees, baby dragonborn, and redbeard figure with a broom. | Rollup. | | Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md). | diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index 86247ac..15e7b93 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -17,8 +17,8 @@ sources: | Hazy Days | Brookville Springs establishment run by Seneshell. | [Brookville Springs](brookville-springs.md). | | Envy's lab | Dangerous chest comparison. | [Excellences](../concepts/excellences.md) / rollup. | | Mercy's place, Drunken Duck, Grand Towers passage, broom cupboard, floor 65, floor 74, floor 98 | Grand Towers access route and sites. | [Brookville Springs](brookville-springs.md), [Grand Towers](grand-towers.md). | -| Bellburn, early Bridget-like church, Bellburn courtyard and tower | Outside-dome Bridget/goliath town and Harthwall fight area. | [Bridget's Doors](../concepts/bridgets-doors.md) / rollup. | -| Harthwall / Hearthwall castle gates and courtyard | Harthwall transformation and recovery. | [Lady Hartwall](../people/lady-hartwall.md). | +| Bellburn, early Bridget-like church, Bellburn courtyard and tower | Outside-dome Bridget/goliath town and Hartwall fight area. | [Bridget's Doors](../concepts/bridgets-doors.md) / rollup. | +| Hartwall / Hartwall castle gates and courtyard | Hartwall transformation and recovery. | [Lady Hartwall](../people/lady-hartwall.md). | | Stone Rampart, pylon, bazaar | Day-36 war and travel points. | Rollup. | | Valenthielles prison rooms | Seamless teleport room, middle door, dark corridor, smoky prison room. | [Valenthielles Prison](valenthielles-prison.md). | | Cathedral, Earl's other foot, park between legs, inn taken by troops, river battle point, forest ambush site, mountain plume | Highden Fell sites. | [Highden Fell](highden-fell.md). | diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md index 72cbdeb..1aa62dc 100644 --- a/data/6-wiki/places/minor-places-days-42-44.md +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -14,11 +14,11 @@ sources: | Council tent, Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, [uncertain: Tazer], [uncertain: Gugghut] | Day-42 planning and dragon-family geography. | Rollup; [Ashkellon](ashkellon.md), [Peridita](../people/peridita.md). | | Ashkellon throne room, wash room, resistance building, soft tower, skull-arched room, statue room, prison rooms, Noxia chamber, treasure hall, observatory room | Major Ashkellon tower sites. | [Ashkellon](ashkellon.md). | | Domain of Pengalis, Dunemin, Pentacity slates, sea gap, Shousorrow, Snow Screen / Snow Sorrow, Fire, great tower, Gravel Basers | Historical and map locations from Ashkellon. | Rollup/open threads. | -| Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Heathwall, Emmerave | Day-42 time/Bridge/Heathwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | -| Goldenswell, Pine Springs, Harthall, 11th Duke of Harthall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Harthall locations. | Rollup/open threads. | +| Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Hartwall, Emmerave | Day-42 time/Bridge/Hartwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | +| Goldenswell, Pine Springs, Hartwall, 11th Duke of Hartwall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Hartwall locations. | Rollup/open threads. | | Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise | Tomes about newly discovered places. | Rollup/open threads. | | Grincray / Grim & Cray, Mashir, lake of Papa'e Munera, rear Ironcraft air site, Claymeadows, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | | Riversmeet, Ruby Eye's melted house ruins and gravestone, central bridge manor house, temples of Hydrum / Igraine / Larn / Kasha | Day-44 Riversmeet investigation. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | -| Harthall's old lab, Howling Tombs, Menagerie outpost, Menagerie grounds, apothecary, infirmary, head teacher's office, old classrooms, Air common room, astronomy room | Day-44 Menagerie and school spaces. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | +| Hartwall's old lab, Howling Tombs, Menagerie outpost, Menagerie grounds, apothecary, infirmary, head teacher's office, old classrooms, Air common room, astronomy room | Day-44 Menagerie and school spaces. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | | Far Grove, Waterrose, Great Farmouth, tower tunnels, Blackhold, white classroom, Brass City, room above Air common room, kitchen, Ruby Eye's old stomping ground | Historical/planar route locations in the old school. | Rollup; [Bleakstorm](bleakstorm.md), [Void Spheres](../items/void-spheres.md). | | Pri-moon, second moon, Tri-moon, Squall's Belt | Astronomy-room celestial locations or objects. | Rollup/open threads; [Void Spheres](../items/void-spheres.md). | diff --git a/data/6-wiki/places/minor-places-days-53-56.md b/data/6-wiki/places/minor-places-days-53-56.md index 18c76fc..2cffa5c 100644 --- a/data/6-wiki/places/minor-places-days-53-56.md +++ b/data/6-wiki/places/minor-places-days-53-56.md @@ -21,7 +21,7 @@ sources: - Grand Towers spherical Humility room: room containing the elf Humility fragment Geldrin had seen during teleportation. - Grand Towers control room: room with eight statues, prison runes, monks, automatons, the reconfigured map, and Browning's table trap. - Control-room side rooms: dusty circle room, sleeping old-man bedroom, dormitory, bookcase bedroom, and teleport-room access where the party found Humorous and the trapped sphinxes. -- Emercurine: destination some party members considered for helping Harthall while others went to Riversmeet with Bynx. +- Emercurine: destination some party members considered for helping Hartwall while others went to Riversmeet with Bynx. - Brass dome on a beach: Cardinal's located prison or containment site, surrounded by air elementals in Brass City. - Rubyeye's far-airwise endless loop: dwarven stone corridors where Rubyeye appeared trapped after Day 56 locating magic. - Bluescale: protected location reached by archway with rules against harm, dishonest transactions, and disclosing Bluescale or the archway location. diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index b0e1789..f516d07 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -30,7 +30,7 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - On `day-44`, the party reached Riversmeet, found Ruby Eye's melted house ruins and gravestone, and joined Lady Igraine's siege outside the Menagerie. - The Menagerie grounds had broken cages for griffon, dragon, wolf, and human subjects and a wall of force or similar effect. - Inside, the party entered old-school time or planes: apothecary, infirmary, head teacher's office, Divination, transmutation, study hall, common rooms, lessons, Air common room, tower tunnels, classrooms, and astronomy. -- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Enis, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Tortish Harthall / Harthwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. +- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Enis, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Tortish Hartwall / Hartwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. - Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. - On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadwal's reincarnation. - The school contained or released a memory-destroying creature and an invisible escaping entity; the party's memories were blanked and later flooded back after they protected a glowing thing in linked rooms. diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 7574eac..3a1fc68 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -82,14 +82,14 @@ sources: - `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hartwall](people/lady-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hartwall](people/lady-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-32.md`: [Hartwall Auction Lots](items/hartwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hartwall](people/lady-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hartwall](people/lady-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hartwall](people/lady-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hartwall](people/lady-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hartwall](people/lady-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). - `data/4-days-cleaned/day-48.md`: [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). @@ -97,8 +97,8 @@ sources: - `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana Hartwall / Kaylara](people/eliana-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). +- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana Hartwall / Kaylara](people/eliana-hartwall.md), [Lady Evalina Hartwall](people/lady-evalina-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index dfdf664..16ba59d 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -80,20 +80,20 @@ sources: - `day-29`: Missing source pages interrupt the record; the party meets Excellence beneath the sands, kills [Lortesh](people/lortesh.md), earns Dunensend support, and hears The Guilt admit accidentally opening a prison while controlling a wizard. - `day-30`: Dunensend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valententhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. - `day-31`: The party attends the [Freeport Auction Lots](items/freeport-auction-lots.md), then joins battle near the Brass City forces; Goliaths are freed, the Dunensend army kills a green dragon, Treamen the Earth Excellence dies, and Dirk's father plans for Salvation and the Goliath tower in a field. -- `day-32`: The party reaches Hearthwall, attends the [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), hides a [Shield Crystals](items/shield-crystals.md) piece with [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), exposes a false [Lady Thorpe](people/lady-thorpe.md), rescues the real Lady Thorpe from Goldenswell, and uncovers an off-the-books [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) operation while the Tri-moon appears during the day. +- `day-32`: The party reaches Hartwall, attends the [Hartwall Auction Lots](items/hartwall-auction-lots.md), hides a [Shield Crystals](items/shield-crystals.md) piece with [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), exposes a false [Lady Thorpe](people/lady-thorpe.md), rescues the real Lady Thorpe from Goldenswell, and uncovers an off-the-books [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) operation while the Tri-moon appears during the day. - `day-33` and `day-34`: No cleaned day files were included in this wiki pass. - `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. -- `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns Pride was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Harthwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. +- `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns Pride was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Hartwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. - `day-37` through `day-69`: Not included in this wiki pass. - `day-40`: At [Azureside and Heartmoor](places/azureside-heartmoor.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). - `day-41`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears The Basilisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). -- `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadwal](people/garadwal.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Heathwall. -- `day-43`: Goldenswell and Harthall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. +- `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadwal](people/garadwal.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Hartwall. +- `day-43`: Goldenswell and Hartwall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. -- `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Harthall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -- `day-47`: In Harthall's lab, the party uncovers erased Harthall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s lion-headed father clue, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. -- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Harthall. +- `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Hartwall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. +- `day-47`: In Hartwall's lab, the party uncovers erased Hartwall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s lion-headed father clue, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. +- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Hartwall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. - `day-53`: Bridget sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. -
6d4e95cNormalize Eliana Hartwall references across notesby Laura Mostert
data/2-pages/215.txt | 2 +- data/2-pages/218.txt | 4 +- data/2-pages/219.txt | 6 +-- data/2-pages/230.txt | 2 +- data/2-pages/242.txt | 2 +- data/2-pages/243.txt | 2 +- data/2-pages/244.txt | 2 +- data/2-pages/249.txt | 2 +- data/2-pages/256.txt | 2 +- data/2-pages/258.txt | 2 +- data/2-pages/259.txt | 2 +- data/2-pages/260.txt | 2 +- data/2-pages/261.txt | 2 +- data/2-pages/262.txt | 2 +- data/2-pages/263.txt | 2 +- data/2-pages/290.txt | 2 +- data/2-pages/291.txt | 2 +- data/2-pages/311.txt | 2 +- data/2-pages/313.txt | 2 +- data/2-pages/330.txt | 2 +- data/3-days/day-46.md | 12 ++--- data/3-days/day-47.md | 8 ++-- data/3-days/day-48.md | 4 +- data/3-days/day-52.md | 10 ++--- data/3-days/day-53.md | 2 +- data/3-days/day-57.md | 8 ++-- data/4-days-cleaned/day-13.md | 2 +- data/4-days-cleaned/day-23.md | 2 +- data/4-days-cleaned/day-26.md | 2 +- data/4-days-cleaned/day-27.md | 2 +- data/4-days-cleaned/day-31.md | 2 +- data/4-days-cleaned/day-32.md | 12 ++--- data/4-days-cleaned/day-35.md | 4 +- data/4-days-cleaned/day-36.md | 24 +++++----- data/4-days-cleaned/day-41.md | 10 ++--- data/4-days-cleaned/day-42.md | 4 +- data/4-days-cleaned/day-43.md | 8 ++-- data/4-days-cleaned/day-44.md | 14 +++--- data/4-days-cleaned/day-46.md | 14 +++--- data/4-days-cleaned/day-47.md | 52 +++++++++++----------- data/4-days-cleaned/day-48.md | 20 ++++----- data/4-days-cleaned/day-52.md | 22 ++++----- data/4-days-cleaned/day-53.md | 6 +-- data/4-days-cleaned/day-56.md | 10 ++--- data/4-days-cleaned/day-57.md | 34 +++++++------- data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/day-47-coverage-audit.md | 2 +- data/6-wiki/clues/day-57-coverage-audit.md | 6 +-- data/6-wiki/clues/days-48-52-coverage-audit.md | 4 +- data/6-wiki/factions/sunsoreen-council.md | 6 +-- data/6-wiki/index.md | 2 +- data/6-wiki/inventories/party-inventory.md | 2 +- data/6-wiki/items/minor-items-day-57.md | 4 +- data/6-wiki/items/minor-items-days-48-52.md | 2 +- data/6-wiki/items/minor-items-days-53-56.md | 2 +- .../items/tresmons-body-and-statue-artifacts.md | 2 +- data/6-wiki/open-threads.md | 22 ++++----- data/6-wiki/people/attabre-altabre.md | 4 +- data/6-wiki/people/bynx.md | 2 +- data/6-wiki/people/eliana-hartwall.md | 52 ++++++++++++++++++++++ data/6-wiki/people/elliana-harthall.md | 49 -------------------- data/6-wiki/people/garadwal.md | 2 +- data/6-wiki/people/globule.md | 2 +- data/6-wiki/people/icefang.md | 6 +-- data/6-wiki/people/infestus.md | 2 +- data/6-wiki/people/kasha.md | 6 +-- data/6-wiki/people/lord-briarthorn.md | 10 ++--- data/6-wiki/people/minor-figures-day-47.md | 2 +- data/6-wiki/people/minor-figures-day-57.md | 6 +-- data/6-wiki/people/minor-figures-days-32-35.md | 6 +-- data/6-wiki/people/minor-figures-days-48-52.md | 2 +- data/6-wiki/people/status.md | 2 +- data/6-wiki/people/valententhide.md | 6 +-- .../places/coalmont-falls-and-asmoorade-prison.md | 2 +- data/6-wiki/places/minor-places-day-57.md | 2 +- data/6-wiki/places/minor-places-days-48-52.md | 2 +- data/6-wiki/sources.md | 2 +- data/6-wiki/timeline.md | 4 +- 79 files changed, 283 insertions(+), 280 deletions(-)Show diff
diff --git a/data/2-pages/215.txt b/data/2-pages/215.txt index bf636ec..da145e9 100644 --- a/data/2-pages/215.txt +++ b/data/2-pages/215.txt @@ -27,7 +27,7 @@ We all wake up & memories come flooding back. Level up! All memories from others flood through us all at once then dissipates. -- Invar & Elliana remember Morgana is more familiar to them +- Invar & Eliana remember Morgana is more familiar to them than they remember. - Platinum - Cardonald's cat - says Errol is possessed by one of Squeal's things. diff --git a/data/2-pages/218.txt b/data/2-pages/218.txt index cd702a1..48a8022 100644 --- a/data/2-pages/218.txt +++ b/data/2-pages/218.txt @@ -19,13 +19,13 @@ Morgana has a new bird on her shoulder. Bartholomew. Betty is pretty. Swooped by him & said he's been there since we got to town. -Go to And Pool. Elliana skulks off to spy on the +Go to And Pool. Eliana skulks off to spy on the guards. Nothing following us at the moment. Man came in just before me & after the rest, half elf, clothes over leather armor, following quite well. -Elliana sits at a different table, see him start writing +Eliana sits at a different table, see him start writing on paper. He starts to leave with a sending stone. Try to get the paper & grapple him. Geldrin intimidates him to give me the diff --git a/data/2-pages/219.txt b/data/2-pages/219.txt index 5fa6b8f..bafce28 100644 --- a/data/2-pages/219.txt +++ b/data/2-pages/219.txt @@ -6,7 +6,7 @@ Take us to the other door & over the bridge to the other side. - Guards stop us from going in saying Lady Igraine - doesn't want to be disturbed. Elliana knocks to bang on the door + doesn't want to be disturbed. Eliana knocks to bang on the door but guards stop her. Morgana turns into a bee to check the room & it is empty. She was there 6 hours ago. Go back to the Exchequer office. Burst into the room. @@ -21,7 +21,7 @@ hear & start to head over. Some of the people in the waiting room run & some others pull out daggers. Chairs move strangely - llamia? -Elliana was heading to see the guards to question them. +Eliana was heading to see the guards to question them. Why they told us about the exchequer when he doesn't exist. @@ -29,7 +29,7 @@ The people in the waiting room turn into a llamia & some rats & more on the outside of the room. "We don't fireball babies" DM quote. Bartholomew turned into a massive vulture thing with lightning -crackling at his fingers. See me to recognise Elliana, +crackling at his fingers. See me to recognise Eliana, says "I'm doing your bidding". Kill all of the rats & llamia & vulture. diff --git a/data/2-pages/230.txt b/data/2-pages/230.txt index 6733b75..869ca63 100644 --- a/data/2-pages/230.txt +++ b/data/2-pages/230.txt @@ -8,7 +8,7 @@ In a room, Laylistra. Entrance chamber to a school. We are all there. I have a robe, Harthall crests. -Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Elliana!" and then pushes her into the wall. +Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Eliana!" and then pushes her into the wall. Baby says Jade made me green. diff --git a/data/2-pages/242.txt b/data/2-pages/242.txt index 61d2294..6202b54 100644 --- a/data/2-pages/242.txt +++ b/data/2-pages/242.txt @@ -15,4 +15,4 @@ Get taken to a courthouse, which doesn't seem to have been designed for dragons. 17:00. Judge is a copper dragon with a magistrate wig on. Right Honourable Charming. Cindy in the trial: seditious aiding and abetting leaving Sunsoreen, tampering with visitor quarters, displaying terrorist messages, and passing carrots. Spreading chaos across the lands. -Asked if the orb gave any illicit messages, or the both patrons talking out of turn. Calls me Elliana Harthall. Great lore keeper gave the information. Asks me questions not relevant to the trial. Where did I come from? Did I have pets as a child? Why all the teddy bears? +Asked if the orb gave any illicit messages, or the both patrons talking out of turn. Calls me Eliana Hartwall. Great lore keeper gave the information. Asks me questions not relevant to the trial. Where did I come from? Did I have pets as a child? Why all the teddy bears? diff --git a/data/2-pages/243.txt b/data/2-pages/243.txt index 26ac530..e4885f8 100644 --- a/data/2-pages/243.txt +++ b/data/2-pages/243.txt @@ -20,4 +20,4 @@ Request if council are ready for us yet. Two gold dragonborn come to get us. Onl She tells Aurum to go get the records. He mumbles to himself that it's not like it used to be. Try to question why the questions weren't relevant and she asks who I think I am. -Apparently Elliana Harthall according to their records. +Apparently Eliana Hartwall according to their records. diff --git a/data/2-pages/244.txt b/data/2-pages/244.txt index ec6bc50..be47237 100644 --- a/data/2-pages/244.txt +++ b/data/2-pages/244.txt @@ -8,7 +8,7 @@ Bynx casts Truesight. His sister isn't there anymore. No trace of her in the whi Aurum comes back with the rest of the council. The empty chair is now filled with a silver-skinned human. -Want to make a proposition: Elliana to stay and they will help me find out what I've lost. Not sure we believe them. +Want to make a proposition: Eliana to stay and they will help me find out what I've lost. Not sure we believe them. Say release of all their citizens. They decline. diff --git a/data/2-pages/249.txt b/data/2-pages/249.txt index 395315d..cc13c37 100644 --- a/data/2-pages/249.txt +++ b/data/2-pages/249.txt @@ -18,6 +18,6 @@ Return to tent. Someone is sitting in the tent: Wrath, smartly dressed, holding Rubyeye. Says Rubyeye needs rescuing. Cardinal went but was useless. -"I'm called Elliana Harthall, as that was my mum's name, apparently one of my mums is and one isn't." +"I'm called Eliana Hartwall, as that was my mum's name, apparently one of my mums is and one isn't." Tell Ingus to let the council know where we are going. diff --git a/data/2-pages/256.txt b/data/2-pages/256.txt index 92c4776..c73860a 100644 --- a/data/2-pages/256.txt +++ b/data/2-pages/256.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9928.jpg Transcription: Questions: - What will happen if Valententhide is reformed? -- Why does everyone think Elliana is a Harthall? +- Why does everyone think Eliana is a Harthall? Morgana gets a voice saying the vessel is theirs. diff --git a/data/2-pages/258.txt b/data/2-pages/258.txt index 8f58cab..2d464f6 100644 --- a/data/2-pages/258.txt +++ b/data/2-pages/258.txt @@ -16,6 +16,6 @@ Pathway opens and we decide we need to protect her, as by Valententhide might be Go through the door. -Walkway stops part way and turns off to the left. All start to go in different directions: forwards (Invar), right (Geldrin), left (Dotharl), up (Elliana), down (Dirk), behind (Morgana). All walk for 10 minutes and lose sight of each other. +Walkway stops part way and turns off to the left. All start to go in different directions: forwards (Invar), right (Geldrin), left (Dotharl), up (Eliana), down (Dirk), behind (Morgana). All walk for 10 minutes and lose sight of each other. Gets really windy in front of us. Hit a wall. diff --git a/data/2-pages/259.txt b/data/2-pages/259.txt index a268b8d..2c9507e 100644 --- a/data/2-pages/259.txt +++ b/data/2-pages/259.txt @@ -5,7 +5,7 @@ Transcription: Walls seem to be linked: - Invar <-> Morgana. - Geldrin <-> Dotharl. -- Dirk <-> Elliana. +- Dirk <-> Eliana. Knock. Line appears and door opens. Cricket-headed humanoid appears and says they are busy and we need to wait. Ask how long. He asks how long I want to wait. Two minutes. OK. He then appears to Dirk and tells him two minutes. diff --git a/data/2-pages/260.txt b/data/2-pages/260.txt index d231d9e..ed11fde 100644 --- a/data/2-pages/260.txt +++ b/data/2-pages/260.txt @@ -12,7 +12,7 @@ Morgana needs to do something. Tell him to ask Bridget to make a door for Morgan Geldrin asks for the door, and Medinner can't because her show is on. Geldrin wants to see it and she lets him in. -Three silver dragonborn on the screen, reenacting Elliana realising Avalina is her mum and she put her in the ground. +Three silver dragonborn on the screen, reenacting Eliana realising Avalina is her mum and she put her in the ground. Woman covered in roots. diff --git a/data/2-pages/261.txt b/data/2-pages/261.txt index 90e6d85..c8819bd 100644 --- a/data/2-pages/261.txt +++ b/data/2-pages/261.txt @@ -21,4 +21,4 @@ Morgana leaves the room with the gruel and throws it off the side of the platfor She will see us and won't tell us how to get there. -Geldrin and Dirk: orbs, [unclear: geesie?], and scythe. Stop when pushed together. Floor disappears and they land with Invar and Elliana. +Geldrin and Dirk: orbs, [unclear: geesie?], and scythe. Stop when pushed together. Floor disappears and they land with Invar and Eliana. diff --git a/data/2-pages/262.txt b/data/2-pages/262.txt index f6dcf01..c5b3de7 100644 --- a/data/2-pages/262.txt +++ b/data/2-pages/262.txt @@ -14,7 +14,7 @@ Remember how we honoured her. It is important. We appear back where we started with a door behind us. Open the door: darker sky, no platform. Feels like a bouncy castle when walking out to it. Walk down towards the clouds underneath. -Realise we can move how we want to. Invar and Dotharl speed towards the storm. Dirk decides to move to where we need to. Elliana goes to Dirk. Geldrin goes to Invar and Dotharl. +Realise we can move how we want to. Invar and Dotharl speed towards the storm. Dirk decides to move to where we need to. Eliana goes to Dirk. Geldrin goes to Invar and Dotharl. Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." diff --git a/data/2-pages/263.txt b/data/2-pages/263.txt index 23e3f46..4178872 100644 --- a/data/2-pages/263.txt +++ b/data/2-pages/263.txt @@ -34,7 +34,7 @@ Dragon she banished is coming back. There is only one way big enough. Nods at In The information needed to decide what to do is available for us now. -Need to understand I am Elliana and Elliana. I can't be both. +Need to understand I am Eliana and Eliana. I can't be both. She wants to know where we want to go. Dwarf city, appear back by Papa Illmarne's dome. diff --git a/data/2-pages/290.txt b/data/2-pages/290.txt index 126d197..3406048 100644 --- a/data/2-pages/290.txt +++ b/data/2-pages/290.txt @@ -14,4 +14,4 @@ Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquari Doors are memories of what we have promised or have done. Seems like they are distractions. -Dragon door has the smell of the sword. Through the door is a town on a plateau, Provinta. Familiar knock, broom transport, from the town. Came out four doors down from my house, but it is 20 years ago. Haze takes us towards my house and the same baby crying. My mum sees a box from Everchard. They were very happy and take it in. Morgana says the Chorus made me. +Dragon door has the smell of the sword. Through the door is a town on a plateau, Provista. Familiar knock, broom transport, from the town. Came out four doors down from my house, but it is 20 years ago. Haze takes us towards my house and the same baby crying. My mum sees a box from Everchard. They were very happy and take it in. Morgana says the Chorus made me. diff --git a/data/2-pages/291.txt b/data/2-pages/291.txt index f73962d..1236ac8 100644 --- a/data/2-pages/291.txt +++ b/data/2-pages/291.txt @@ -2,7 +2,7 @@ Page: 291 Source: data/1-source/IMG_9964.jpg Transcription: -Reaction, 1 AM, Elluin Hartwall! +Reaction, 1 AM, Eliana Hartwall! Sword is in my house. It was in the box. Go to the house and try to get the sword. Got the box and there is a sword in the box with some cloths. Morgana finds a small piece of black thread. Chorus's eyes and mouth were sewn shut with black thread. diff --git a/data/2-pages/311.txt b/data/2-pages/311.txt index 3737c73..422a834 100644 --- a/data/2-pages/311.txt +++ b/data/2-pages/311.txt @@ -2,7 +2,7 @@ Page: 311 Source: data/1-source/IMG_9984.jpg Transcription: -The ancestors say Whel and Elliana and Dotharl jump straight in, followed by everyone else. +The ancestors say Whel and Eliana and Dotharl jump straight in, followed by everyone else. Land outside a hole in another throne room. Goat man sat on the throne, bigger than Steven/Shark. His name is Sauver, one of Throngore's. Wants to know if we are from the Mortal realm. Seems like he is bound here until we arrived. Tells us Throngore requests an audience with us. diff --git a/data/2-pages/313.txt b/data/2-pages/313.txt index febcb02..89fc004 100644 --- a/data/2-pages/313.txt +++ b/data/2-pages/313.txt @@ -12,6 +12,6 @@ Head further round the tower: smashed-in door. Goat man near it looking irritate Leader says I'm a prisoner who was stolen, and when hit with necrotic damage I briefly turn into a silver dragonborn with ribbons on my horns and a teddy attached to my belt. -Rock guy in the cell next to "mine". Mum killed him and dedicated him to Kasha. Didn't like [uncertain: Stone runger?] me at first but grew to like me. +Rock guy in the cell next to "mine". Mum killed him and dedicated him to Kasha. Didn't like Stone Rampart or me at first but grew to like me. Can see keys for the prisons on the leader's belts. diff --git a/data/2-pages/330.txt b/data/2-pages/330.txt index 9e841c2..ffe1836 100644 --- a/data/2-pages/330.txt +++ b/data/2-pages/330.txt @@ -10,7 +10,7 @@ Realises Dotharl has a business card: J & G Fishmonger & Sons, 147 Mariners Row, Tells us he spoke with his grandfather. -Elliana sleeps really well in my childhood bed but gets no memories back. +Eliana sleeps really well in my childhood bed but gets no memories back. Go to Brass City via the trees then teleport there. Retrieve Geldrin's spellbook and maybe an item from Bellburn so we can teleport there to find out where Enni is to kill her. diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md index 905a394..49101c6 100644 --- a/data/3-days/day-46.md +++ b/data/3-days/day-46.md @@ -461,7 +461,7 @@ We all wake up & memories come flooding back. Level up! All memories from others flood through us all at once then dissipates. -- Invar & Elliana remember Morgana is more familiar to them +- Invar & Eliana remember Morgana is more familiar to them than they remember. - Platinum - Cardonald's cat - says Errol is possessed by one of Squeal's things. @@ -569,13 +569,13 @@ Morgana has a new bird on her shoulder. Bartholomew. Betty is pretty. Swooped by him & said he's been there since we got to town. -Go to And Pool. Elliana skulks off to spy on the +Go to And Pool. Eliana skulks off to spy on the guards. Nothing following us at the moment. Man came in just before me & after the rest, half elf, clothes over leather armor, following quite well. -Elliana sits at a different table, see him start writing +Eliana sits at a different table, see him start writing on paper. He starts to leave with a sending stone. Try to get the paper & grapple him. Geldrin intimidates him to give me the @@ -595,7 +595,7 @@ Take us to the other door & over the bridge to the other side. - Guards stop us from going in saying Lady Igraine - doesn't want to be disturbed. Elliana knocks to bang on the door + doesn't want to be disturbed. Eliana knocks to bang on the door but guards stop her. Morgana turns into a bee to check the room & it is empty. She was there 6 hours ago. Go back to the Exchequer office. Burst into the room. @@ -610,7 +610,7 @@ hear & start to head over. Some of the people in the waiting room run & some others pull out daggers. Chairs move strangely - llamia? -Elliana was heading to see the guards to question them. +Eliana was heading to see the guards to question them. Why they told us about the exchequer when he doesn't exist. @@ -618,7 +618,7 @@ The people in the waiting room turn into a llamia & some rats & more on the outside of the room. "We don't fireball babies" DM quote. Bartholomew turned into a massive vulture thing with lightning -crackling at his fingers. See me to recognise Elliana, +crackling at his fingers. See me to recognise Eliana, says "I'm doing your bidding". Kill all of the rats & llamia & vulture. diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index 7b352c1..1961240 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -250,7 +250,7 @@ In a room, Laylistra. Entrance chamber to a school. We are all there. I have a robe, Harthall crests. -Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Elliana!" and then pushes her into the wall. +Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Eliana!" and then pushes her into the wall. Baby says Jade made me green. @@ -483,7 +483,7 @@ Get taken to a courthouse, which doesn't seem to have been designed for dragons. 17:00. Judge is a copper dragon with a magistrate wig on. Right Honourable Charming. Cindy in the trial: seditious aiding and abetting leaving Sunsoreen, tampering with visitor quarters, displaying terrorist messages, and passing carrots. Spreading chaos across the lands. -Asked if the orb gave any illicit messages, or the both patrons talking out of turn. Calls me Elliana Harthall. Great lore keeper gave the information. Asks me questions not relevant to the trial. Where did I come from? Did I have pets as a child? Why all the teddy bears? +Asked if the orb gave any illicit messages, or the both patrons talking out of turn. Calls me Eliana Hartwall. Great lore keeper gave the information. Asks me questions not relevant to the trial. Where did I come from? Did I have pets as a child? Why all the teddy bears? ## Page 243 @@ -505,7 +505,7 @@ Request if council are ready for us yet. Two gold dragonborn come to get us. Onl She tells Aurum to go get the records. He mumbles to himself that it's not like it used to be. Try to question why the questions weren't relevant and she asks who I think I am. -Apparently Elliana Harthall according to their records. +Apparently Eliana Hartwall according to their records. ## Page 244 @@ -515,7 +515,7 @@ Bynx casts Truesight. His sister isn't there anymore. No trace of her in the whi Aurum comes back with the rest of the council. The empty chair is now filled with a silver-skinned human. -Want to make a proposition: Elliana to stay and they will help me find out what I've lost. Not sure we believe them. +Want to make a proposition: Eliana to stay and they will help me find out what I've lost. Not sure we believe them. Say release of all their citizens. They decline. diff --git a/data/3-days/day-48.md b/data/3-days/day-48.md index 57eb372..4070ed5 100644 --- a/data/3-days/day-48.md +++ b/data/3-days/day-48.md @@ -121,7 +121,7 @@ Return to tent. Someone is sitting in the tent: Wrath, smartly dressed, holding Rubyeye. Says Rubyeye needs rescuing. Cardinal went but was useless. -"I'm called Elliana Harthall, as that was my mum's name, apparently one of my mums is and one isn't." +"I'm called Eliana Hartwall, as that was my mum's name, apparently one of my mums is and one isn't." Tell Ingus to let the council know where we are going. @@ -262,7 +262,7 @@ Elemental planes were highway, made a pact and created the world, but still too Questions: - What will happen if Valententhide is reformed? -- Why does everyone think Elliana is a Harthall? +- Why does everyone think Eliana is a Harthall? Morgana gets a voice saying the vessel is theirs. diff --git a/data/3-days/day-52.md b/data/3-days/day-52.md index a124c1e..20542c2 100644 --- a/data/3-days/day-52.md +++ b/data/3-days/day-52.md @@ -54,7 +54,7 @@ Pathway opens and we decide we need to protect her, as by Valententhide might be Go through the door. -Walkway stops part way and turns off to the left. All start to go in different directions: forwards (Invar), right (Geldrin), left (Dotharl), up (Elliana), down (Dirk), behind (Morgana). All walk for 10 minutes and lose sight of each other. +Walkway stops part way and turns off to the left. All start to go in different directions: forwards (Invar), right (Geldrin), left (Dotharl), up (Eliana), down (Dirk), behind (Morgana). All walk for 10 minutes and lose sight of each other. Gets really windy in front of us. Hit a wall. @@ -63,7 +63,7 @@ Gets really windy in front of us. Hit a wall. Walls seem to be linked: - Invar <-> Morgana. - Geldrin <-> Dotharl. -- Dirk <-> Elliana. +- Dirk <-> Eliana. Knock. Line appears and door opens. Cricket-headed humanoid appears and says they are busy and we need to wait. Ask how long. He asks how long I want to wait. Two minutes. OK. He then appears to Dirk and tells him two minutes. @@ -98,7 +98,7 @@ Morgana needs to do something. Tell him to ask Bridget to make a door for Morgan Geldrin asks for the door, and Medinner can't because her show is on. Geldrin wants to see it and she lets him in. -Three silver dragonborn on the screen, reenacting Elliana realising Avalina is her mum and she put her in the ground. +Three silver dragonborn on the screen, reenacting Eliana realising Avalina is her mum and she put her in the ground. Woman covered in roots. @@ -127,7 +127,7 @@ Morgana leaves the room with the gruel and throws it off the side of the platfor She will see us and won't tell us how to get there. -Geldrin and Dirk: orbs, [unclear: geesie?], and scythe. Stop when pushed together. Floor disappears and they land with Invar and Elliana. +Geldrin and Dirk: orbs, [unclear: geesie?], and scythe. Stop when pushed together. Floor disappears and they land with Invar and Eliana. ## Page 262 @@ -143,7 +143,7 @@ Remember how we honoured her. It is important. We appear back where we started with a door behind us. Open the door: darker sky, no platform. Feels like a bouncy castle when walking out to it. Walk down towards the clouds underneath. -Realise we can move how we want to. Invar and Dotharl speed towards the storm. Dirk decides to move to where we need to. Elliana goes to Dirk. Geldrin goes to Invar and Dotharl. +Realise we can move how we want to. Invar and Dotharl speed towards the storm. Dirk decides to move to where we need to. Eliana goes to Dirk. Geldrin goes to Invar and Dotharl. Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." diff --git a/data/3-days/day-53.md b/data/3-days/day-53.md index 3d765a9..bfbd46b 100644 --- a/data/3-days/day-53.md +++ b/data/3-days/day-53.md @@ -30,7 +30,7 @@ Dragon she banished is coming back. There is only one way big enough. Nods at In The information needed to decide what to do is available for us now. -Need to understand I am Elliana and Elliana. I can't be both. +Need to understand I am Eliana and Eliana. I can't be both. She wants to know where we want to go. Dwarf city, appear back by Papa Illmarne's dome. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md index 7c028ce..2d4b146 100644 --- a/data/3-days/day-57.md +++ b/data/3-days/day-57.md @@ -299,11 +299,11 @@ Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquari Doors are memories of what we have promised or have done. Seems like they are distractions. -Dragon door has the smell of the sword. Through the door is a town on a plateau, Provinta. Familiar knock, broom transport, from the town. Came out four doors down from my house, but it is 20 years ago. Haze takes us towards my house and the same baby crying. My mum sees a box from Everchard. They were very happy and take it in. Morgana says the Chorus made me. +Dragon door has the smell of the sword. Through the door is a town on a plateau, Provista. Familiar knock, broom transport, from the town. Came out four doors down from my house, but it is 20 years ago. Haze takes us towards my house and the same baby crying. My mum sees a box from Everchard. They were very happy and take it in. Morgana says the Chorus made me. ## Page 291 -Reaction, 1 AM, Elluin Hartwall! +Reaction, 1 AM, Eliana Hartwall! Sword is in my house. It was in the box. Go to the house and try to get the sword. Got the box and there is a sword in the box with some cloths. Morgana finds a small piece of black thread. Chorus's eyes and mouth were sewn shut with black thread. @@ -631,7 +631,7 @@ Timon abseils into the portal, floating in nothing. Morgana turns into an eagle ## Page 311 -The ancestors say Whel and Elliana and Dotharl jump straight in, followed by everyone else. +The ancestors say Whel and Eliana and Dotharl jump straight in, followed by everyone else. Land outside a hole in another throne room. Goat man sat on the throne, bigger than Steven/Shark. His name is Sauver, one of Throngore's. Wants to know if we are from the Mortal realm. Seems like he is bound here until we arrived. Tells us Throngore requests an audience with us. @@ -667,7 +667,7 @@ Head further round the tower: smashed-in door. Goat man near it looking irritate Leader says I'm a prisoner who was stolen, and when hit with necrotic damage I briefly turn into a silver dragonborn with ribbons on my horns and a teddy attached to my belt. -Rock guy in the cell next to "mine". Mum killed him and dedicated him to Kasha. Didn't like [uncertain: Stone runger?] me at first but grew to like me. +Rock guy in the cell next to "mine". Mum killed him and dedicated him to Kasha. Didn't like Stone Rampart or me at first but grew to like me. Can see keys for the prisons on the leader's belts. diff --git a/data/4-days-cleaned/day-13.md b/data/4-days-cleaned/day-13.md index 9c3bfcc..dc80f10 100644 --- a/data/4-days-cleaned/day-13.md +++ b/data/4-days-cleaned/day-13.md @@ -10,7 +10,7 @@ complete: true On Day 13, Sunday 28th Dec, Ileep got the horses, and the party left for the quarry. They followed the barrier and saw that the ripples seemed worse the farther they got from the pylon, though the duration and frequency did not change. The pylon appeared to be bringing the disturbance back under control. -The ground on the route was very dry and loose, with few plants. At a quiet point, the party saw what first appeared to be a home in the distance coming toward them. It was green and tall, and resolved into an eerie elven woman with black hair and very extravagant presentation: the Peridot Queen. She stroked the narrator's face and joined the party toward the cliffs. She looked worried when she looked at Geldrin. She had seen all eight pylons. +The ground on the route was very dry and loose, with few plants. At a quiet point, the party saw what first appeared to be a home in the distance coming toward them. It was green and tall, and resolved into an eerie elven woman with black hair and very extravagant presentation: the Peridot Queen. She stroked Eliana's face and joined the party toward the cliffs. She looked worried when she looked at Geldrin. She had seen all eight pylons. The party made it to the cliff cutter town, which was mostly dwarves and gnomes. The barrier problem seemed to originate by the cliff. At about 21:00, the party walked toward the barrier by the cliff. The cliffs were sheer drops with rifts and barriers. The water was choppy and quite dangerous, and had recently been cutting close to the barrier. diff --git a/data/4-days-cleaned/day-23.md b/data/4-days-cleaned/day-23.md index 3b822a6..21e215d 100644 --- a/data/4-days-cleaned/day-23.md +++ b/data/4-days-cleaned/day-23.md @@ -22,7 +22,7 @@ notes: Day 24 was not found as a confirmed boundary; this narrative continues un Day 23 was Wednesday, 7th Jan 1012, with 11 days to the Tri-moon and 7 days to the auction. The party went to Excellence's lair with the merfolk, led by pack leader Alana. In the underwater cave, the water ebbed and flowed like a tide. A 20-foot-long crystalline dragon sculpture stood there, with glowing runes on its base. -The lair contained three cages and barrels. One cage held a merfolk who looked different from the others, green rather than blue. Alana seemed to revive him and took him back to the ship. The chests appeared to be waterproofed, and their contents might not be openable underwater. When one chest was opened, it contained white powder that the narrator inhaled, causing a sequence of visions or hallucinations: a basilisk attack, salamanders, Arabic writing, a white dragon circling around the dome, rabbits, and the whole room becoming a black void. Two blue eyes approached through the darkness, bringing intense cold, before the narrator returned to the room. +The lair contained three cages and barrels. One cage held a merfolk who looked different from the others, green rather than blue. Alana seemed to revive him and took him back to the ship. The chests appeared to be waterproofed, and their contents might not be openable underwater. When one chest was opened, it contained white powder that Eliana inhaled, causing a sequence of visions or hallucinations: a basilisk attack, salamanders, Arabic writing, a white dragon circling around the dome, rabbits, and the whole room becoming a black void. Two blue eyes approached through the darkness, bringing intense cold, before Eliana returned to the room. Another cage contained a snail with a gleam of metal: a jeweller's chain attaching it to the cage. Guardseen said the snail was a bad omen and had been drugged. Back on the ship, the merfolk explained that they had been abducted from beyond the barrier. One merfolk, his friend, and his wife had been taken; he woke one day and both were gone. His wife was nobility in their pact, possibly Sneul. The Huntmaster dispelled magic on the snail, and a mermaid appeared. diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md index 4af1f95..f4db749 100644 --- a/data/4-days-cleaned/day-26.md +++ b/data/4-days-cleaned/day-26.md @@ -22,7 +22,7 @@ Inwar dreamed of a meeting hall filled with red-bearded dwarves. He arrived at a Dirk dreamed of an obsidian city where black Dragonborn strode around as if they owned the place. The scene was animated and included a town-hall-style building. Two black Dragonborn stood beside an archway with mosquitoes on the shield. Beyond the archway, Infestus spoke to Garadwal. Infestus looked cross, then stabbed a coin into the portal and Garadwal went through. -The narrator dreamed of a barren desert, stepping back and falling into a hole containing the dragon in Garadwal's prison. They landed on the dragon, which flew out to the edge. Another abnormal dragon appeared, with two heads, extra wings of some kind, and an arm. The two dragons nuzzled and cackled. The ground opened next to them, then went vertical, and a void voice said, "where is he I know you know". +Eliana dreamed of a barren desert, stepping back and falling into a hole containing the dragon in Garadwal's prison. They landed on the dragon, which flew out to the edge. Another abnormal dragon appeared, with two heads, extra wings of some kind, and an arm. The two dragons nuzzled and cackled. The ground opened next to them, then went vertical, and a void voice said, "where is he I know you know". Geldrin dreamed through someone else's perspective in a plush human bedchamber, rich but without style. The viewer walked out through a long corridor with old, similar pictures of the guild, then entered a large stone chamber that felt like a different place. Eight statues stood around the room with runes. The route continued down another corridor to a teleport circle, then turned left 10 times, through another room and corridor, and a couple more left turns. In a room with an old withered man in bed, the person Geldrin was seeing through took a box from the pillow and replaced it. The person did not look like Browning. diff --git a/data/4-days-cleaned/day-27.md b/data/4-days-cleaned/day-27.md index 1077261..f3b410a 100644 --- a/data/4-days-cleaned/day-27.md +++ b/data/4-days-cleaned/day-27.md @@ -43,7 +43,7 @@ The party was taken to a room. The bird-man's boss was in the Elven Ruins and wa A message from Cardenald reported that the Salt was sorted. Seaward should be fixed, but something else seemed to be affecting the barrier. He had to use magics and other means to get there quicker. Eroll had forgotten he gave the party the message. Dirk told the spider they could do with a chat. A Dunar guard knocked on the door and turned out to be another automaton. It did not know why it was there. The whole place was riddled with automatons. It was a prisoner, not part of the barrier, under Grand Towers, and not one of the three. The control room was completely empty of people. -"The guilt" was one of its names. It kept calling the narrator sweetie. It knew who was behind the message from Cardenald and wanted to make a deal, saying it had been freeing itself to communicate again. It could reset the control room and would do one as a show of help. It laid a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It said there should be five of the party after all, but because there were four they had gone under the radar. Alistair in Everchard was the same as with the wizards, as one disappeared upon barrier creation. It would fix a prison to show it would help. The prisoners hardly existed when it was imprisoned. The party chose Valenthide to fix first, and Geldrin saw him. +"The guilt" was one of its names. It kept calling Eliana sweetie. It knew who was behind the message from Cardenald and wanted to make a deal, saying it had been freeing itself to communicate again. It could reset the control room and would do one as a show of help. It laid a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It said there should be five of the party after all, but because there were four they had gone under the radar. Alistair in Everchard was the same as with the wizards, as one disappeared upon barrier creation. It would fix a prison to show it would help. The prisoners hardly existed when it was imprisoned. The party chose Valenthide to fix first, and Geldrin saw him. There were many spiders around. The party thought the imprisoned being under Grand Towers might be light or dark. The Huntsmistress reported that many automatons had been located and blew up when confronted. No other lion-beast things had been found. Grand Huntsmen in Grand Towers had been contracted. The Goliaths might be linked to the matter. Haemia, the lion lady beast, was a creature created by a dark power. The notes ask whether Darkness and Light Excellence exist. The Haemia might be trying to make space or clear out. diff --git a/data/4-days-cleaned/day-31.md b/data/4-days-cleaned/day-31.md index 9a48520..1d0b106 100644 --- a/data/4-days-cleaned/day-31.md +++ b/data/4-days-cleaned/day-31.md @@ -26,7 +26,7 @@ The auction included an 8/400-year-old longsword in the style Invar makes: Firef The bird was sent to the camp. Lortesh was described as "untruly end," and the party could not control him. The reward promised by the sphinx was delivered, and he would deliver his side of the bargain. Armies approached and asked whether they were mine. The party became more subservient and said no, Sir, knowing he would know if they were lying. -Goliaths began to be freed from their tents. Dirk's dad was a few tents away. Someone saw through an illusion and laughed because the caster had made themself look meaner. The attack began, with Goliaths attacking outside the tents. The Lord of Brass Citadel tried to go to the front line, and the narrator had to go with him. +Goliaths began to be freed from their tents. Dirk's dad was a few tents away. Someone saw through an illusion and laughed because the caster had made themself look meaner. The attack began, with Goliaths attacking outside the tents. The Lord of Brass Citadel tried to go to the front line, and Eliana had to go with him. A green dragon descended on the armies. "My Frizzlesing" was noted as a day of music and mirroring the surroundings, with "mirrors" crossed out. The Dunensend army killed the dragon. An elemental died saying, "You betray me, I was meant to avenge you." The party killed it. The Dunensend army was successful. diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index 130c32e..a416c42 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -30,7 +30,7 @@ Before the detailed bidding began, the auction lots were noted broadly: grand to Xinquiss came into the room, saw the party, and took them to a new room as his presents. It was the shield crystal, and the party agreed to drop off a piece. The party also added an auction for one of the Brass City platinum pieces. They told Xinquiss that the quilt might be an "excellence" or might be working for one. -Mith was running the auction. Beside the party was an Arabica pechen lady named Candelissa Hustlebustle, and on the other side was a mermain / shark tattoo person in a tux and top hat. In the third row was Aon Ankt, the narrator's blood letting tutor. +Mith was running the auction. Beside the party was an Arabica pechen lady named Candelissa Hustlebustle, and on the other side was a mermain / shark tattoo person in a tux and top hat. In the third row was Aon Ankt, Eliana's blood letting tutor. The drink lots began. Lot 1 was a famous 28-year elven bottle of booze and sold for 20g. Lot 2 was a 100-year-old bottle bought by Candelissa. Lot 3 was an older one sold for 350g to Candelissa. Lot 4 was Smehlebeard whiskey, bought for 270g by Janet Boulderdew. Lot 5 was a 75-year bottle of Crankfruit, one noted as 280 years, sold for 400g. Lot 6 was Blind gale XXX, with "physick before imbibing" noted. Lot 7 was cherry wine, Sereza, sold for 10g. Lots 8 and 9 were not described. @@ -42,11 +42,11 @@ Lot 20 showed Davina Browning covering her eyes with her hands, with eyes on the Lot 30 was the holy symbol of Noxia and sold to Raven 1 for 175g. Lot 31 was a shield ring with runes of Lauren and sold for 600g to a werewolfish [uncertain: Repiteth]. Lot 32 was Firefang and sold for 2050g to a red-and-purple-haired dwarf male. Lot 33 was the chariot, connected to an excellence defeated in the "battle of the unending seas." Four people bid, including two Ravens, the jewellery men, and an emissary. A bidding war followed involving the jewelled men and short paths, Dally who walks in the room, the Harthwall partner, and Lady Thorpe. The price reached 11,900g and then [uncertain: we got] 14,000g. The chariot was already being levelled onto a wagon, and many guards were outside. Lot 34, the Browning spell scroll, sold for 6,200g to the jewellery guy. -The party skulked out to check on Lady Thorpe. She had six guards around her in transparent dragon / silver dragon livery. While she felt better and insisted on going back to the front lines, which were not going great, she looked flustered, confused, and uneasy in her responses. Something was odd about her mannerisms. The narrator did not think she knew who they were, or at least that she was who she said she was. +The party skulked out to check on Lady Thorpe. She had six guards around her in transparent dragon / silver dragon livery. While she felt better and insisted on going back to the front lines, which were not going great, she looked flustered, confused, and uneasy in her responses. Something was odd about her mannerisms. Eliana did not think she knew who they were, or at least that she was who she said she was. -Lot 35 was a mimic mouse trap. Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, an older human man, a robed figure carrying along beside a silver dragonborn, a backpack of scrolls, a floating book, and a gnome with a wooden shield bearing a golden duck were noted. Justicars were looking for Xinquiss. The party did not recognize Inwar. Laura won the bracelet of locating for 101g. Mith teleported away, and a Justicar tried to Counterspell. Scrambleduck smashed a stick on the floor and cast a spell, associated with a locating duck. When she turned around, the narrator bumped into something invisible and moved to attack her. +Lot 35 was a mimic mouse trap. Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, an older human man, a robed figure carrying along beside a silver dragonborn, a backpack of scrolls, a floating book, and a gnome with a wooden shield bearing a golden duck were noted. Justicars were looking for Xinquiss. The party did not recognize Inwar. Laura won the bracelet of locating for 101g. Mith teleported away, and a Justicar tried to Counterspell. Scrambleduck smashed a stick on the floor and cast a spell, associated with a locating duck. When she turned around, Eliana bumped into something invisible and moved to attack her. -Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind the narrator helped, while her guard tried to get the narrator. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. The narrator called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Hartwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. +Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind Eliana helped, while her guard tried to get Eliana. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. Eliana called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Hartwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. Dith, Geldrin, and Morgana escaped with the shield crystal down the trapdoor into a house. Xinquiss called Wroth to come and help hide the crystal, and Wroth did so. Dith, Geldrin, and Morgana tried to disguise themselves and return to the auction house. Eliana and Inwar asked about them and were told about the trapdoor at 4:30. The party headed to the Castle. @@ -56,7 +56,7 @@ Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Harthwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. -Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. The narrator and Dith searched the cells, but Lady Thorpe was not there. Barrett returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. +Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. Eliana and Dith searched the cells, but Lady Thorpe was not there. Barrett returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. Claymeadow and Lady Neegate were noted; she had been quiet lately due to a loss in the family. The party decided to make a plan before speaking to the wizard and went to the Irate Unicorn, where there was a shrine to Law. They asked The Basilisk for help from the guild to check the prisons. They then went to see a tortle wizard who could teleport them somewhere and would come back tomorrow. @@ -68,7 +68,7 @@ The party returned to the tortle mage, Jin-Loo, and told him about the Tri-moon. Jin-Loo teleported the party to the Museum Gardens in Goldenswell. Bleakstorm was noted as a possible name for the tree they teleported next to. It was from outside the Barrier, airwise, and very cold. They went to the Militia House. Morgana located Lady Thorpe in the building, two floors down, in the middle of the building, at 10:30. The plan was for Geldrin to pretend to be a Justicar and enter the building. Yellow guards were wearing a half-sun tattoo obscured by a waterfall. Geldrin stormed into the guarded room; the guard who went to get the captain was leaning against the window, and the servant did not look busy. The captain was reading "101 who's who of the Penta city states," which had a picture of Scrambleduck. -The party tried to arrest them. Morgana and the narrator went through the other door. They found Lady Thorpe after a set of traps went off and carried her out. Meanwhile Geldrin was mauled and tried to get thieves' tools out to open something. Dith got keys and unlocked them. The captain tried to send a message saying they had been discovered and to send help. The party took the captain, Lady Thorpe, and a cart, left the city, managed to get out, came off the road, and found somewhere to hide. +The party tried to arrest them. Morgana and Eliana went through the other door. They found Lady Thorpe after a set of traps went off and carried her out. Meanwhile Geldrin was mauled and tried to get thieves' tools out to open something. Dith got keys and unlocked them. The captain tried to send a message saying they had been discovered and to send help. The party took the captain, Lady Thorpe, and a cart, left the city, managed to get out, came off the road, and found somewhere to hide. They messaged The Basilisk to say they had Lady Thorpe and revived her. Lady Thorpe reported a man with the lower half of a snake's body travelling back with the Goldenswell army when they decided to leave. Bug Geldrin stole from the captain's office: 50 platinum pieces in Frawshers currency and a Grand Towers penny. The party needed to question the captain. diff --git a/data/4-days-cleaned/day-35.md b/data/4-days-cleaned/day-35.md index b94e830..ccb11c1 100644 --- a/data/4-days-cleaned/day-35.md +++ b/data/4-days-cleaned/day-35.md @@ -28,7 +28,7 @@ At the gate queue, the party went around to the front and persuaded the guards t The carts had been single file, but once they seemed to spot the party, they moved side by side with crossbows pointed back. At 02:00, the cart guards told the party to maintain a distance and leave them alone. Morgana tried to persuade the horses to stop. The guards shot at the party. Someone got on top of the cart and shot back. -The back doors opened, and the man with white gloves stood in the middle adjusting his gloves. The second cart's doors opened, and a ballista fired at the party. Battle began. Morgana stopped the carts with thorns and killed all the external people and horses. Geldrin killed two people on the ballista with an acid ball. The boss's lower half turned into a snake, and he leapt toward the party, attacking Dirk and Morgana. Guards in the cart turned into llamia. All the prisoners in the wagon appeared to be unconscious, drugged in some way. Geldrin killed the snake guy with a fireball. The narrator killed a llamia after the fireball. Morgana killed the other llamia with another cart wheel. All the bad guys were dead. +The back doors opened, and the man with white gloves stood in the middle adjusting his gloves. The second cart's doors opened, and a ballista fired at the party. Battle began. Morgana stopped the carts with thorns and killed all the external people and horses. Geldrin killed two people on the ballista with an acid ball. The boss's lower half turned into a snake, and he leapt toward the party, attacking Dirk and Morgana. Guards in the cart turned into llamia. All the prisoners in the wagon appeared to be unconscious, drugged in some way. Geldrin killed the snake guy with a fireball. Eliana killed a llamia after the fireball. Morgana killed the other llamia with another cart wheel. All the bad guys were dead. On the snake guy, the party found a silver chain with a serpent pendant. It was a magical talisman, described as +1 cleric cash rolls [unclear] with Noxia catch spells. The prisoners were magically asleep: Lady Katherine Cole, the Elementarium, the kobold, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, and a half-elf female. The party moved the captives to their cart, set fire to the enemy carts, left, and headed off the main road airwise toward Bluemeadows at 04:00. @@ -42,7 +42,7 @@ TJ said seven moons had passed between him waking up in prison and waking up wit Lady [uncertain: Huthnall] was looking into corrupt slate and related matters. An Inquisitor from Salvation was noted, along with Thrice pass on the ground. Lady [uncertain: Suisant] De'Beauchamp was associated with Iron craft firewise. -Lady Katherine Neugate woke up and seemed reticent to talk to the party. The rescued prisoners all seemed to work off the same council. Neugate had been captured for four days. She mentioned the same people who were missing from the council. Neither Neugate nor Egrine mentioned the Guilt, and neither had met him. Lady Katherine Cole, the narrator's boss, woke up and said she had been captured for three days. "3 paws - Beauchamp" was noted. The prisoners believed the Guilt had never been part of the council, but he had been. All of them had dried blood in their ear canal. +Lady Katherine Neugate woke up and seemed reticent to talk to the party. The rescued prisoners all seemed to work off the same council. Neugate had been captured for four days. She mentioned the same people who were missing from the council. Neither Neugate nor Egrine mentioned the Guilt, and neither had met him. Lady Katherine Cole, Eliana's boss, woke up and said she had been captured for three days. "3 paws - Beauchamp" was noted. The prisoners believed the Guilt had never been part of the council, but he had been. All of them had dried blood in their ear canal. The ear injuries looked like eardrum injuries. Each prisoner was a little deaf in that ear, and it looked like something was lodged in the eardrum: a pupa in each one. The party pulled one out of Lady Cole. It was a large grub attached to the ear canal. Egrine had seen the creatures in the menagerie. When the grub was killed, Lady Cole got her memories back and said she had felt like she was being watched. Tarrak woke up from the removal. All the affected prisoners had forgotten that the Guilt was a member of the council, had been told not to trust him, and no longer felt watched after the grubs were removed. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index 9a43d4a..c1cbd44 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -80,11 +80,11 @@ A further orb showed Browning in the same room calling out through a crystal bal Geldrin returned, saying he had been on floor 98 and had found Browning. The party needed to get out immediately, and Geldrin told the others about Garadwal. They heard an alarm. Four golems appeared in the circles, and the party ran back down the corridor. They piled through the corridor they had used, but it was all black with no corridor. They closed and reopened the door, and it looked like a church similar to early Bridget temples. The door from the room opened outside, with no dome visible. -The party found a courtyard with many doors. They tried to go up the tower. Behind a door, a red-robed goliath sat, shocked as they walked through. He was a clergyman named Arik Bellburn of Bridget. He said the party had come from the dome and Bridget had freed them. He described the narrator as having skin of evil, Morgana as Bleak glimmer, and Geldrin as lost winner. They were in the town of Bellburn. The people had prayed for freedom from their oppressors, Envy, and Bridget sent the party. +The party found a courtyard with many doors. They tried to go up the tower. Behind a door, a red-robed goliath sat, shocked as they walked through. He was a clergyman named Arik Bellburn of Bridget. He said the party had come from the dome and Bridget had freed them. He described Eliana as having skin of evil, Morgana as Bleak glimmer, and Geldrin as lost winner. They were in the town of Bellburn. The people had prayed for freedom from their oppressors, Envy, and Bridget sent the party. The party heard a dragon. In Draconic, it said it had come for payment. Ruby Eye said they needed to go. Suddenly there were sounds of battle. Goliaths were fighting Harthwall's silver dragon on top of a building. The dragon said she had come for payment and Envy would have her due. This dragon looked similar to the original Harthwall but meaner and grimacing, with a green tinge to her scales. The goliaths all seemed to have maces made from Seaward stone. Ruby Eye wanted to leave and thought Harthwall hated him. -The party entered the fight and tried to get Harthwall's attention. Harthwall called out Ruby Eye and told him to come remove the curse he had put on her. It was about 17:00. Ruby Eye cast imprisonment on Harthwall, shouting "Burial" in a voice that echoed like an unearthly command. Ruby Eye sounded odd, like someone doing an impression of him, and seemed furious with Dirk after Dirk hit him with a magic missile. A changing touch made the narrator think Dirk's sword was the most amazing thing ever for a brief moment. The narrator heard a voice, felt "my brother's touch" upon them, and wanted the inverse hammer. Morgana's moonbeam revealed that "Ruby Eye" was actually a red-skinned tiefling: Wrath. +The party entered the fight and tried to get Harthwall's attention. Harthwall called out Ruby Eye and told him to come remove the curse he had put on her. It was about 17:00. Ruby Eye cast imprisonment on Harthwall, shouting "Burial" in a voice that echoed like an unearthly command. Ruby Eye sounded odd, like someone doing an impression of him, and seemed furious with Dirk after Dirk hit him with a magic missile. A changing touch made Eliana think Dirk's sword was the most amazing thing ever for a brief moment. Eliana heard a voice, felt "my brother's touch" upon them, and wanted the inverse hammer. Morgana's moonbeam revealed that "Ruby Eye" was actually a red-skinned tiefling: Wrath. Wrath had made a pact with Ruby Eye to help kill the black dragon, and it was his fault Harthwall was outside. Wrath was scared of Browning, who had teamed up with Pride. Wrath had cursed the silver and black dragons so they could not take human form. He promised the party power in exchange for fighting their enemies. He said there were nine of them in total, little demons of Darkness: Wrath, Pride, Envy, and others. Wrath put Harthwall in the ground with imprisonment using a silver dragon statue. He said the wizards had worked with the demons to help make the dome to protect against them. He insisted the party were not working for him in any way, shape, or form, but could assist if mutually beneficial. Wrath wanted [uncertain: Tremoon's] shell because he saw the wizards make it and it helped people get in and out of the barrier. @@ -108,13 +108,13 @@ The party scried on "The Mother." They saw mountainous terrain, a weird two-legg The party went to the teleport circle in Valenthielles prison. They arrived in a twenty-foot-square room with no doors, made of seamless stone. When they touched the wall, they felt a slight difference in temperature and found a rock statue. They decided to go down the middle door, where the guard or prison had been. Lucas hit the door, and nothing happened. After hitting it again, the party cracked their doorstop after a while. Heamon's skull did not open the door. They put a Grand Towers penny on the wall, and the door opened to ten feet of corridor and then darkness. Joy was thick. Daylight made the darkness retreat into the shape of a female figure. Morgana touched it and took damage. A door lay at the end of the corridor, but a peephole at the end of the next space was trapped. Dirk looked through and took damage. -The party opened the door. Smoke lay at the end of the room. Symbols on the floor marked the prison, and smoke on the far side suggested where an explosion may have happened. The female figure laid her hand on Dirk's shoulder and asked to come with them. When the narrator turned around, they took damage. The entity had had recent visitors, very friendly, who promised to come back but would not be back soon. They had cleaned up quickly, teleported outside the prison, and left Valenthielles there. +The party opened the door. Smoke lay at the end of the room. Symbols on the floor marked the prison, and smoke on the far side suggested where an explosion may have happened. The female figure laid her hand on Dirk's shoulder and asked to come with them. When Eliana turned around, they took damage. The entity had had recent visitors, very friendly, who promised to come back but would not be back soon. They had cleaned up quickly, teleported outside the prison, and left Valenthielles there. Morgana saw Joy in the trees, motionless and looking very odd; it was an illusion. Mutated animals belched out of the woods. The party entered combat with them and the betrayer. Carduneld joined the party. The betrayer was killed. Carduneld and Ruby Eye talked and thought some information would put the party in danger. The party tried to ask what they knew, but they did not want to say and thought the party should focus on the [unfinished]. Ruby Eye was regaining some memories. They were unsure whether they should renegotiate some of the deals made with the gods, and wanted to look into breaking the curse on the inferlite and the damage caused by the barrier. It was not only Ruby Eye's memories that had been tampered with; Icefang's had been too. They thought the party should talk to Mama Harthall, but first needed to head to Stone Rampart earthwise. Ruby Eye and Carduneld left. At the cathedral, priests walked around dealing with people. Two humans with blistering skin were healed by a priest, who then came to the party. Highden Fell's armies had retreated to the firewise mountain's second level by 14:00. There were issues with sickness, internal consumption, from the crystal. The party told him about crystal sickness and advised that people spend time away from the city. He told them to see the Earl, in the other foot. The statue had been created by the five mayors. -The party went to see the Earl. In the park between the legs, plants were in bloom. Militia wore jagged rock keep tabards, and there was much activity. The party left a message with a lieutenant. A note says she did not have it because she was born in Highden and [unfinished]. A frog appeared to Laura and wanted the narrator's attention, motioning for them to follow. They did not follow, and Sevor-ice could not follow; possible bullying was noted. The party got another sending stone with a new number from someone in the Underbelly. A Highden lizardfolk was on the building, mumbled something as the party left, and the narrator shut up. The creature said hello and cast invisibility. Morgana cast thorn whip on it. It had been skulking because it was scared of the party and had been sent to deliver something by its boss. +The party went to see the Earl. In the park between the legs, plants were in bloom. Militia wore jagged rock keep tabards, and there was much activity. The party left a message with a lieutenant. A note says she did not have it because she was born in Highden and [unfinished]. A frog appeared to Laura and wanted Eliana's attention, motioning for them to follow. They did not follow, and Sevor-ice could not follow; possible bullying was noted. The party got another sending stone with a new number from someone in the Underbelly. A Highden lizardfolk was on the building, mumbled something as the party left, and Eliana shut up. The creature said hello and cast invisibility. Morgana cast thorn whip on it. It had been skulking because it was scared of the party and had been sent to deliver something by its boss. The lizardfolk wanted to go somewhere private. The party met an old gnoll in a rocking chair under a blanket, "granny," an Underbelly liaison. The lizard was named Scurry. Granny knew what the party had done in town but did not know if Harthall was there yet. The Underbelly was getting back on track now that Lady Coke was back. Granny and Scurry were the only two to trust. Highden was a wreck, troops had taken over the inn, and the place "never sees the sun." The party sent The Basilisk a note about current events and used a pulley lift system to go to the inn. @@ -126,19 +126,19 @@ The party went to another inn, the Three Full Moons, and talked to Gary, a house As they drew closer, the smoke shape came to attack them. Harthall protected the party from the dragon's flame. A giant attacked, bashing Invar into the ground with his mace while the others closed in. Dirk clung to the giant's arm and climbed up his leg. Morgana summoned a bear and grappled the giant's arms. The party defeated all the giants. Harthall and a skeletal dragon fought each other. The skeletal dragon had the book from Ruby Eye's lab, and the words he spoke from the book were words he did not understand. The party teleported out to the armies, and the dragon came toward them. -The narrator felt sick, with salt water in their nose, like after holding the White Rune. Dirk had a familiar brain tickle and saw another feeling: a room with other goliaths, a sickly threat on female green dragon armour, a chin tick like Shibble grossing, and a chest around a table that was intense. A female smiled and said, "you need to go back to now." Geldrin saw a circular table where mages discussed her and slid a paper to her. Another vision showed a man knee-deep in a ford; as he crossed, a woman said no no no, and red thorns were everywhere. Harthall saw her mother buried in the ground. +Eliana felt sick, with salt water in their nose, like after holding the White Rune. Dirk had a familiar brain tickle and saw another feeling: a room with other goliaths, a sickly threat on female green dragon armour, a chin tick like Shibble grossing, and a chest around a table that was intense. A female smiled and said, "you need to go back to now." Geldrin saw a circular table where mages discussed her and slid a paper to her. Another vision showed a man knee-deep in a ford; as he crossed, a woman said no no no, and red thorns were everywhere. Harthall saw her mother buried in the ground. The party went to the river to speak to water elementals and ask for help with the dragon flames. Dirk used the rod to speak to the elementals. The water elementals required the party to agree to free Icefang's ice elemental in the prison at Rimewock. Geldrin summoned the void elemental to help. The void elemental said the party would owe him another favour, since Garadwal revenge was the previous favour. The requested terms were not to free Valentenhide and to let Kasher reign, and not to oppose Kasher; the void would bring someone else to the fight. The party agreed to the water elemental. Geldrin told the void they could not accept. The party managed to say that someone might be trapped. When given a dead grub like the ear grubs, [unclear: a wanders]. The party then appeared in their minds in a palace-style room with plush carpets. An elderly gentleman, Icefang, sat looking at them, older than in his paintings, sane and at ease. He said, "I disagreed." A memory showed the mage table, with Icefang shouting at Browning. A dark elf appeared and dropped a grub in his ear. Icefang said he never would have dropped a rope, was glad he was sane before the end, and said they needed to right the wrongs. The party should not feel sorry for him; he had lived a good life for the half he could remember. The barrier was a good thing, but too many sacrifices had been made. -A black hole opened under the battle. Snowflakes appeared, and a massive frost dragon burst through the hole, seized the skeletal dragon, carried it to the barrier, passed Harthall, and said "My Child." Icefang came back through, crashed through the barrier, and soot crashed down from the barrier, badly injured. The narrator felt the salt water feeling again. Icefang crashed into the river, and Soot shouted that he would take them all with him. +A black hole opened under the battle. Snowflakes appeared, and a massive frost dragon burst through the hole, seized the skeletal dragon, carried it to the barrier, passed Harthall, and said "My Child." Icefang came back through, crashed through the barrier, and soot crashed down from the barrier, badly injured. Eliana felt the salt water feeling again. Icefang crashed into the river, and Soot shouted that he would take them all with him. -Geldrin entered or invoked a dark cavern with a throne made of skulls. He walked toward a pale human female seated on the throne, with bleeding eye sockets and skeletal hands and feet. She said, "hello my child what is it you wish." Geldrin asked to dispel dragon magic. She said she had only just put it on and had taken him as payment. She had watched him with great interest since hatching. When asked whether some of the other deals had caused her [unfinished], she said no, but taking the Mother down had. Geldrin offered her Garadwal. She agreed. Geldrin chanted, Soot's flames vanished, and his bones scattered. The narrator used breath weapon on the dragon head. A water elemental retrieved Icefang and laid him down. +Geldrin entered or invoked a dark cavern with a throne made of skulls. He walked toward a pale human female seated on the throne, with bleeding eye sockets and skeletal hands and feet. She said, "hello my child what is it you wish." Geldrin asked to dispel dragon magic. She said she had only just put it on and had taken him as payment. She had watched him with great interest since hatching. When asked whether some of the other deals had caused her [unfinished], she said no, but taking the Mother down had. Geldrin offered her Garadwal. She agreed. Geldrin chanted, Soot's flames vanished, and his bones scattered. Eliana used breath weapon on the dragon head. A water elemental retrieved Icefang and laid him down. Harthall did not know who her father was; she had always been told he died in battle while her mother was pregnant. Tirar's vision was at Rellport: leeches attacked in the river and made victims believe they were not really there so they could feed on as much blood as they wanted. Harthall saw her mother in the ground, trapped by a hundred tiny red creatures. -A portal appeared, and Valenth and Ruby Eye emerged. Valenth knew before the party told her. Ruby Eye realized that they had done it to him. The dark elf may have been from Envy's apprentice, and they had been making plans. One curveball plan was to swap Valentenhide with Kasher. A coin appeared and blue thistles lay on the ground. A portal opened to a carriage drawn by two cows and guarded by very dressed-up guards. An elderly gentleman appeared, the same one from the vision of Provita's birth: Lord Bleakstorm. He chanted a message from Icefang from outside the dome. He looked no different from his pictures because he was dead. He had not freed the auroch because he could not remain inside the dome long; Browning would find him and send minions after him. Lord Bleakstorm gave the narrator a snowflake coin, a one-use portal to Bleakstorm. +A portal appeared, and Valenth and Ruby Eye emerged. Valenth knew before the party told her. Ruby Eye realized that they had done it to him. The dark elf may have been from Envy's apprentice, and they had been making plans. One curveball plan was to swap Valentenhide with Kasher. A coin appeared and blue thistles lay on the ground. A portal opened to a carriage drawn by two cows and guarded by very dressed-up guards. An elderly gentleman appeared, the same one from the vision of Provita's birth: Lord Bleakstorm. He chanted a message from Icefang from outside the dome. He looked no different from his pictures because he was dead. He had not freed the auroch because he could not remain inside the dome long; Browning would find him and send minions after him. Lord Bleakstorm gave Eliana a snowflake coin, a one-use portal to Bleakstorm. The party learned that kobolds were very good at digging through the barrier. The grub contained nothing but had properties like a leech crossed with a larval fly. Cardunel would take Icefang to be buried near Snow Sorrow. Geldrin planned to try to free Justicarus by pretending to be the Grand Towers medical team. The party returned to the troops' camp. Dirk's jaw would remain changed for the next twenty-four hours. @@ -150,11 +150,11 @@ The cave was where the creature lived and what made the water turn black, at lea Hanner said the black water had happened for the last thousand years. It used to occur about once a month but now happened twice a day. The pattern followed elemental schools of magic. Morgana communed with nature and sensed a large black creature with six arms, shackled by its arms under the water, apparently unconscious. Its chains led up through the ground into an alien material, an obsidian archway. The party suggested the merfolk investigate the cave, since they might get farther. Some water elementals were in the lake. -The party went upriver to investigate the black water. Merfolk, Hanner, and Morgana checked the river while the rest of the party and a merfolk named Derek investigated on land. On land, the shield crystal registered on the compass. The party tried to follow paths into the mountains but veered toward the compass reading. They found a mine, went through it, ran out of it, and found a good path to the lake at about 16:00. In the water, Morgana swam downriver until the water reached a "wall," then stopped and became much easier to swim through. On land, the party found an ancient old road and an old sign pointing to "Dull Peake," the same direction as the compass. Dirk spotted a dark figure: a dragonborn with red eyes. When the narrator looked up, the figure noticed. +The party went upriver to investigate the black water. Merfolk, Hanner, and Morgana checked the river while the rest of the party and a merfolk named Derek investigated on land. On land, the shield crystal registered on the compass. The party tried to follow paths into the mountains but veered toward the compass reading. They found a mine, went through it, ran out of it, and found a good path to the lake at about 16:00. In the water, Morgana swam downriver until the water reached a "wall," then stopped and became much easier to swim through. On land, the party found an ancient old road and an old sign pointing to "Dull Peake," the same direction as the compass. Dirk spotted a dark figure: a dragonborn with red eyes. When Eliana looked up, the figure noticed. Underwater, Morgana came into an underground chamber with ledges leading into further darkness. Hanner used a light orb, revealing a twenty-foot statue with five runes hovering in a pentagram around it. The cyclone bottom sounded like one of the main prisoners: !Asmoorade! Morgana tried to touch a rune, and it threw lightning. On land, wingbeats sounded and the dragonborn walked into view. It had dull, deathly, sooty scales and a large overbite. Its name was Nelkish. -Nelkish walked confidently toward the party and announced the Domain of Anthrosite. He worked for Infestus. The party told him they had returned his brother's skull to Infestus. He called the narrator pure blood, not half blood, like himself. He had no quarrel with their kind under the agreement made. In the water, Morgana continued down the stream, leaving the statue behind, and approached a barrier. Touching it did not hurt, but [unclear: cruched]. On land, the party mentioned Garadwal's plans, and Anthrosite said he would allow them in to use the portal to speak to Infestus. Nelkish had not killed them on sight because Geldrin wore the wizards' robes, which were part of the agreement; the wizards brought food and similar supplies. +Nelkish walked confidently toward the party and announced the Domain of Anthrosite. He worked for Infestus. The party told him they had returned his brother's skull to Infestus. He called Eliana pure blood, not half blood, like himself. He had no quarrel with their kind under the agreement made. In the water, Morgana continued down the stream, leaving the statue behind, and approached a barrier. Touching it did not hurt, but [unclear: cruched]. On land, the party mentioned Garadwal's plans, and Anthrosite said he would allow them in to use the portal to speak to Infestus. Nelkish had not killed them on sight because Geldrin wore the wizards' robes, which were part of the agreement; the wizards brought food and similar supplies. Morgana tried to misty step through the underwater barrier and succeeded. She could see the merfolk but could not touch them, and dispel did not work. The cavern broadened to the left. Derek told the land party about the barrier, and that the others were close by but far below. Jin Woo thought they should have gone to see Infestus. The land party continued down the road, which seemed to stop suddenly. Morgana was stuck and could not misty step again. She tried to dry a torch to see farther into the cavern. Thorn whip struck a crack in the wall and seemed to open a door. @@ -178,7 +178,7 @@ Money, payments, and offerings mentioned include the random copper piece around Transport and communication resources mentioned include Errol, Newgate's gargoyle, the Bird that did not work, the mage's ring used to locate the party, Terry the obsidian bird, Metallics' bird, the lucky cyclops eye that did not go anywhere, Ruby Eye travelling in the bag, the Grand Towers portal / passage, teleport circles, Mercy's route to Grand Towers, Ruby Eye's teleport to Dirk, obsidian ravens including stealth ravens, the sending stone with a new Underbelly number, the pulley lift to the inn, the dragon ride with Harthall, Lord Bleakstorm's cow-drawn carriage portal, the snowflake coin that is a one-use portal to Bleakstorm, Jin Woo's teleports, and the merfolk lodge. -Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadwal, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Harthwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered the narrator's desire for Dirk's sword and inverse hammer, Harthwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Harthwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Harthall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, the narrator's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. +Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadwal, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Harthwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered Eliana's desire for Dirk's sword and inverse hammer, Harthwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Harthwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Harthall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, Eliana's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. Objects, trinkets, and named resources mentioned include the crystal shell / shell of [uncertain: Tremoon], the Jelly Fish Broach from the 74th floor private mage area, trinkets from the bargains, Scorpion, Snowlee, Jelly Fish, Ant, Ruby Eye's lab orbs, the chair / Gideone chair, the silver dragon statue used in Harthwall's imprisonment, Seaward stone maces, the inverse hammer, the Grand Towers penny, the barrier / dome, the racist automatons, Harthwall's Raven, the pylon, Heamon's skull, the prison symbols, the chest around the intense table in Dirk's vision, the White Rune, Icefang's ice elemental in Rimewock, dead ear grub, black dragon book from Ruby Eye's lab, the auroch not freed by Lord Bleakstorm, the snowflake coin, the statue to Hydrath, steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, the ancient Dull Peake sign, the five runes in a pentagram, the ticking rune door, the upright hand on a plinth, and Envi in a tube of viscous fluid. @@ -226,4 +226,4 @@ Coalmont Falls has black water that has occurred for one thousand years, once mo The underwater prison or facility contained a twenty-foot statue with five runes in a pentagram, the name !Asmoorade!, a barrier that Morgana crossed with misty step but could not dispel or recross, a freshly cut stone corridor, a ticking-rune door, black snowflakes, and a giant jet-black four-armed figure in a geyser pit. Envi, Rumplky, purple-cored automatons, the upright hand, [strils], and a tube of viscous fluid suggest a hidden revival process. The automaton introduced himself as Garaduel and recalled the automatons away after forcing a hole in the barrier, leaving the state of Envi, the rings, and the prison unknown. -Anthrosite's domain and agreement with the wizards protected the party because Geldrin wore wizard robes and because Nelkish recognized the narrator as pure blood rather than half blood. Infestus's portal, the food-supply agreement, the returned skull of Nelkish's brother, and Garadwal's plans remain active threads. +Anthrosite's domain and agreement with the wizards protected the party because Geldrin wore wizard robes and because Nelkish recognized Eliana as pure blood rather than half blood. Infestus's portal, the food-supply agreement, the returned skull of Nelkish's brother, and Garadwal's plans remain active threads. diff --git a/data/4-days-cleaned/day-41.md b/data/4-days-cleaned/day-41.md index 5376ebd..51b2e53 100644 --- a/data/4-days-cleaned/day-41.md +++ b/data/4-days-cleaned/day-41.md @@ -48,11 +48,11 @@ Galdenseell was still not providing aid. All contact had been lost with Snow Sor Morgana sent a pigeon to the crows. Searu's Arrow was identified or described as a +2 spear. Once per day, it could turn an attack roll into an automatic critical hit. If all three strikes hit a target in consecutive rounds, the target was slain. The arrows returned to the fire place. Hayes was told to look after the leader. -Cardonald arrived, and the party teleported to the army. During sleep, the narrator saw cracked eggshells all around. In the dream, dragons were around them in the eggshells near a cave entrance. A bigger dragon shape felt safe and secure at the same time. The toothless or no-lip dragon came over and nuzzled the narrator. The narrator rolled over and had six legs. Other dragons were deformed. The mother ate one of the dragons and left. After the sleep or dream, the narrator had disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. +Cardonald arrived, and the party teleported to the army. During sleep, Eliana saw cracked eggshells all around. In the dream, dragons were around them in the eggshells near a cave entrance. A bigger dragon shape felt safe and secure at the same time. The toothless or no-lip dragon came over and nuzzled Eliana. Eliana rolled over and had six legs. Other dragons were deformed. The mother ate one of the dragons and left. After the sleep or dream, Eliana had disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and the narrator who had the eggshell dragon dream. +People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and Eliana who had the eggshell dragon dream. Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snow Sorrow, Perens, The Basilisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. @@ -60,9 +60,9 @@ Places mentioned include the town square, the tower, the cobbler's shop, Sunset # Items, Rewards, and Resources -Items and equipment mentioned include the bracelet of locating given to Errol for Dirk's dad, clothes fetched by Captain Sprat for the reincarnated cobbler or cobblers, the wooden chest under the upstairs desk at the Cheery & Cherry, the crossbow inside the chest taken by Bosh, cracked copper spheres found after the explosion, moonshine vodka that helped the explosion, Searu's staff that changed into one of Searu's arrows, Searu's Arrow, Morgana's pigeon sent to the crows, Godmount pills, and eggshells in the narrator's dream. +Items and equipment mentioned include the bracelet of locating given to Errol for Dirk's dad, clothes fetched by Captain Sprat for the reincarnated cobbler or cobblers, the wooden chest under the upstairs desk at the Cheery & Cherry, the crossbow inside the chest taken by Bosh, cracked copper spheres found after the explosion, moonshine vodka that helped the explosion, Searu's staff that changed into one of Searu's arrows, Searu's Arrow, Morgana's pigeon sent to the crows, Godmount pills, and eggshells in Eliana's dream. -Spells, magical effects, and combat effects mentioned include reincarnating Greysocks into an elf, reincarnating the jeweller into a halfling, reviving the dwarf, Invar's Prayer of Healing, the black puff of smoke and manifestation of the black smoke dragon, the black smoke dragon waving a claw and disappearing, the ticking female stabbing Joel through, the assumed release of fire elementals from cracked copper spheres, the town-darkening smoke and wisps rolling along the ground and roads, whispers in the smoke heard by Geldrin and Dirk, woodlice streaming from a townsfolk's mouth, townsfolk swatting invisible bugs, the thirty-foot green-scaled smoke dragon possessing people, the dragon choking townsfolk, the area blocker that interfered with messaging and teleportation, the green dragon's apparent ten-mile range, the flame vision of the tower, the old lady transforming to Searu, Cardonald teleporting the party to the army, the narrator's cracked-eggshell dragon dream, and disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. +Spells, magical effects, and combat effects mentioned include reincarnating Greysocks into an elf, reincarnating the jeweller into a halfling, reviving the dwarf, Invar's Prayer of Healing, the black puff of smoke and manifestation of the black smoke dragon, the black smoke dragon waving a claw and disappearing, the ticking female stabbing Joel through, the assumed release of fire elementals from cracked copper spheres, the town-darkening smoke and wisps rolling along the ground and roads, whispers in the smoke heard by Geldrin and Dirk, woodlice streaming from a townsfolk's mouth, townsfolk swatting invisible bugs, the thirty-foot green-scaled smoke dragon possessing people, the dragon choking townsfolk, the area blocker that interfered with messaging and teleportation, the green dragon's apparent ten-mile range, the flame vision of the tower, the old lady transforming to Searu, Cardonald teleporting the party to the army, Eliana's cracked-eggshell dragon dream, and disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. Searu's Arrow was described as a +2 spear. Once per day, it could turn an attack roll into an automatic critical hit. If all three strikes hit a target in consecutive rounds, the target was slain. The arrows returned to the fire place. The exact wording of "all 3" and whether this refers to arrows, strikes, or consecutive spear attacks is preserved as uncertain. @@ -104,4 +104,4 @@ The Peridot Queen was willing to lend aid through The Basilisk but was explicitl The party did not think they should bring the barrier down, while four new towers had created a new barrier around Grand Towers. The strategic consequences of keeping, lowering, or altering barriers remain unresolved. -The narrator's dream of cracked eggshells, deformed dragons, the toothless / no-lip dragon nuzzling them, the narrator having six legs, and the mother eating one dragon before leaving caused disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. The dream's source, whether it was a warning or influence, and the identity of the mother dragon remain unresolved. +Eliana's dream of cracked eggshells, deformed dragons, the toothless / no-lip dragon nuzzling them, Eliana having six legs, and the mother eating one dragon before leaving caused disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. The dream's source, whether it was a warning or influence, and the identity of the mother dragon remain unresolved. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index e160bda..be96ed5 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -65,7 +65,7 @@ On floor 26, someone walked toward the door, so the party ran up to floor 27 and Morgana had five goodberries. The party went up to the 28th floor. They found a teleportation circle and two domes: one with Ruby Eye in it, and another with two ghost figures, Emri and Joy. Ruby Eye was an illusion. Emri's dome seemed to have a leak. He requested the skull of Treamon and did not answer questions about the rings. Ruby Eye dispelled the magic keeping him trapped and taught the party the rings as proof it was him. The rings activate in "the Barrier" so Joy cannot leave. Ruby Eye said the party did not understand the sacrifices he and Joy's mother made to keep Joy safe. His pacts with Kashe were his downfall. The party asked why Joy needed to live eternally and why so many sacrifices needed to be made for it. -On the 29th floor, new carvings of scorpions, Tellfether, and other details were present. Evil could be sensed from the door. The party entered the room. Purple crackling energy surrounded a ten-by-ten-foot green blob dripping in the middle. Two figures were around it: a medusa and a statue figure. Also present were a child of the Mother with a worm and an eyeless dog. Bronze and a telescope like Emri's stood at the back of the room, with a painting clockwise on the wall. A shield spell appeared on the floor and shielded the party. A health pipe on the narrator's belt healed people. A coin appeared in Thuvia's hand and got rid of the dragons. Dirk's sword grew flames. +On the 29th floor, new carvings of scorpions, Tellfether, and other details were present. Evil could be sensed from the door. The party entered the room. Purple crackling energy surrounded a ten-by-ten-foot green blob dripping in the middle. Two figures were around it: a medusa and a statue figure. Also present were a child of the Mother with a worm and an eyeless dog. Bronze and a telescope like Emri's stood at the back of the room, with a painting clockwise on the wall. A shield spell appeared on the floor and shielded the party. A health pipe on Eliana's belt healed people. A coin appeared in Thuvia's hand and got rid of the dragons. Dirk's sword grew flames. A dragon vision on the ceiling showed dragons terrorising the town. The party used the coin from Bridge, and all but the fat dragon vanished. Geldrin used Treamon's skull to cause a meteor strike on the dragon and the town. The party activated the shield with the coin. Brother fracture used to do shield disappeared [unclear], and the Goliaths in the city all gained weapons and shields and healed slightly. As the blessings activated, a tiny hole became noticeable in the barrier. Emmeredge died. Noxia smashed the floor, broke two floors, and the party fell down through Emri's floor. A book in Geldrin's bag hummed, and Kesha wanted to help at no cost now, but Geldrin did not take the offer. The party killed the Noxia Beast avatar. @@ -109,7 +109,7 @@ Creatures and creature-like entities mentioned include the fat-bellied dragon in # Items, Rewards, and Resources -Items, currencies, and physical resources mentioned include Envi's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on the narrator's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snow Sorrow coins, the Snow Sorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. +Items, currencies, and physical resources mentioned include Envi's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on Eliana's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snow Sorrow coins, the Snow Sorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index 95a00b3..302f818 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -49,19 +49,19 @@ Lady Hartwall also discussed Goldenswell. The Earl needed to be fair and accepta The party tried to speak to Garadwel through the feather. It vibrated, and there was a chill in the air. Garadwel called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. -Garadwel said people did not build things as he taught them and instead ran off to live like primitives. Benu failed because he abandoned his post. Trixus, by contrast, did not fail because he did not abandon his post. The party or narrator addressed "Dad" and told Garadwel that the vulture men were back at Dumnensend and that Hephestos was still alive. +Garadwel said people did not build things as he taught them and instead ran off to live like primitives. Benu failed because he abandoned his post. Trixus, by contrast, did not fail because he did not abandon his post. The party or Eliana addressed "Dad" and told Garadwel that the vulture men were back at Dumnensend and that Hephestos was still alive. A quick update came by sending stone: the Grand Towers dome was down, and Garadwell had probably gone to Ashkhellion. The party debated whether to go to Ashkhellion and get Benu first. They went to the library to speak to the vulture man. He went to get his sending stone to speak to [uncertain: Ashtrigwos], to tell Benu to meet the party at the tower in Ashkhellion. Geldrin asked for magical scrolls and got them just before the teleportation circle completed. The party went to Ashkhellion. They appeared higher up in the tower, and Harthall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. -Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadwal, while Trixus was still in a barrier. The party asked Garadwel to lay down his weapons, but he refused. The narrator tried to get the dome opener, and Garadwal killed them. Benu attacked Garadwal. Geldrin used a tremor skill to release Trixus. The narrator was revived and saw Valentenshide manage to look away. Benu and Garadwal broke through the walls and fought outside. A fight ensued, and Garadwal was banished at 5:00. +Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadwal, while Trixus was still in a barrier. The party asked Garadwel to lay down his weapons, but he refused. Eliana tried to get the dome opener, and Garadwal killed them. Benu attacked Garadwal. Geldrin used a tremor skill to release Trixus. Eliana was revived and saw Valentenshide manage to look away. Benu and Garadwal broke through the walls and fought outside. A fight ensued, and Garadwal was banished at 5:00. Benu told Trixus what had happened to Garadwal. Trixus asked where Benu had been when his people were in trouble. Dark clouds gathered above the dune. Perodita appeared, looking very bedraggled compared with the previous day. She said she would get back in and wanted the flesh-crafting wands. Trixus said father had put him to sleep. The party returned to the tower and retrieved the barrier tools. Benu knew of a way to live peacefully without the barrier. Hephestos was only his soul. He wanted to make a pact with the party so they would let him out and wanted to give them information to help him get out. He had been asked to attack the dome, perhaps by Browning. The party needed to save Garadwel. Trixus and Benu transformed into humanoids and went to the shrine room to check whether Garadwel was there. The party added Brass City platinum to the offering bowl to help communicate with the god. Attabre came through. Garadwal was not with him. When Attabre asked what the party sought, they answered that they sought justice. Benu disappeared. Attabre said he sought atonement for his crimes, justice. Trixus was looking but seemed okay. Attabre was angry with Benu. Goliaths were due to get a protector like Trixus. The party began to tell Harthall about the ancient [unclear]. -The party reflected that the barrier was possibly a bad thing, but had been made for noble and proud reasons. Trixus could help with the memories, but a spell within the barrier was interfering. The magic involved Attabre and another force. The location of the spell was waterwise at the Mages College at Riversmeet. Trixus did not like the barrier and did not think the elves should have been able to remove their pride. The party planned to go to Riversmeet and speak to Lady Igraine. They split: Dirk, the narrator, and Morgana took Harthall to meet Anastasia; Invar and Geldrin took Trixus to see Emi. +The party reflected that the barrier was possibly a bad thing, but had been made for noble and proud reasons. Trixus could help with the memories, but a spell within the barrier was interfering. The magic involved Attabre and another force. The location of the spell was waterwise at the Mages College at Riversmeet. Trixus did not like the barrier and did not think the elves should have been able to remove their pride. The party planned to go to Riversmeet and speak to Lady Igraine. They split: Dirk, Eliana, and Morgana took Harthall to meet Anastasia; Invar and Geldrin took Trixus to see Emi. With Emi, Trixus was called "the useless one." Emi said the elves needed help to remove emotions. Cardenald had put a talking door on one of the prisons. Emi said he and Browning should have been in charge but were betrayed. The elves' protector who taught them how to remove emotions was Benu. Trixus might be able to put Emi's emotions back, but he would need the emotions in order to put them back. @@ -87,7 +87,7 @@ Creatures and creature-like beings mentioned include kobolds, the silvery-green Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Harthall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadwal's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. -Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Harthall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and the narrator being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. +Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Harthall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and Eliana being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md index a262b41..137f176 100644 --- a/data/4-days-cleaned/day-44.md +++ b/data/4-days-cleaned/day-44.md @@ -46,29 +46,29 @@ The party went back down to the school and entered an auditorium-style transmuta The party learned that Lord Hacethorn had been the last potion and herb teacher and had written the book on Ruby Eye. The founders of the college were dated 547 years before the dome, 2453 AC after cataclysm: the white-haired elven man Tortish Harthwall and the elderly man Humerous Torn. The party returned to the principal's office and back out, emerging into the Divination classroom full of students, where Isobanne was teaching. It was Sereneday. -Isobanne told the party they were late. The narrator tried to keep the door open, was spotted, and was sent to detention on the fifth floor. An eighteen-year-old human man named Enis, who had been called Thomas, was there, along with a girlfriend or first-year called Hannah. Joy was also noted. Dirk reached the infirmary and asked Nurse Cardonald for the date: the 3rd Sereneday of Hummeron, 2968 AC, or 32 BD. Mama Cardonald thought Enis was a bad influence on her daughter because he was always in detention. +Isobanne told the party they were late. Eliana tried to keep the door open, was spotted, and was sent to detention on the fifth floor. An eighteen-year-old human man named Enis, who had been called Thomas, was there, along with a girlfriend or first-year called Hannah. Joy was also noted. Dirk reached the infirmary and asked Nurse Cardonald for the date: the 3rd Sereneday of Hummeron, 2968 AC, or 32 BD. Mama Cardonald thought Enis was a bad influence on her daughter because he was always in detention. At the end of class, Bosh and Cardonald went to the study hall and pulled out a book. A dragon skull named Mr Moreley covered the study hall. Geldrin spoke to the dragon, a gold dragon. Geldrin showed him the ancient dragon scroll. Mr Moreley was confused because it was something still being worked on, and he said he would consult the Gold Dragon Council because he thought Harthall was keeping things from them. Ruby Eye and Cardonald were eavesdropping and wanted to ask Geldrin something. Ruby Eye went to speak to him. His final project was to remove his eye. He asked Geldrin to join them. Everard, Thomas, and Valenth were named. A book about Grand Tower was written in god language; when the party tried to read it, they got a vision of the top of the tower. Cardonald was working on automations and wanted to do something for the head teacher, then a bird and a cat. They wanted to become famous. Ruby Eye's parents wanted him to follow a priestly path. Mama Cardonald was good friends with some of the Thinglaens / Goliaths. They were currently in the automations. She could not speak to them, and they were not one of the four usual elementals; she thought they were light. Valenth was in an extra enchantment lesson, and Ruby Eye was in necromancy. Geldrin and Morgana went to the necromancy lesson. The class was full and everyone seemed to have assigned seats, but nobody came to claim the seats the party used. Ruby Eye was drawing Mr Moreley and gave the same spell to reincarnate himself. Dirk and Invar spoke to a bald man, perhaps a [uncertain: Tory? teacher?], who tried to find them on the list and found their timetables at 14:00. They went to get robes. Dirk was Fire House Eltur as Frederick Sims. Invar was Earth House Intor. The robes also had a hammer and shield because the Hammerguards were patrons of the school, granting certain privileges, extra embroidery, and 10% off the tuck shop. -After detention, the narrator reappeared in the first-year rec room. A half-orc named Grisnak showed them to the cloakroom. Orcs were being relocated as part of the peace, as were gnolls and anyone considered uncivilised. The list had no record of the narrator because the narrator's race did not exist yet. The narrator gave the name Evalina Harthall. The robe did not fit because it was made for a human, so a new robe was requested. Miana / Evalina was assigned Air, with extra embroidery, [unclear], and a flag. +After detention, Eliana reappeared in the first-year rec room. A half-orc named Grisnak showed them to the cloakroom. Orcs were being relocated as part of the peace, as were gnolls and anyone considered uncivilised. The list had no record of Eliana because Eliana's race did not exist yet. Eliana gave the name Evalina Harthall. The robe did not fit because it was made for a human, so a new robe was requested. Miana / Evalina was assigned Air, with extra embroidery, [unclear], and a flag. The party went to history. The teacher's voice was familiar: an older man, Lord Bleakstorm. The lesson concerned sisters who fell out, one Far Grove city, Waterrose, and Great Farmouth, which was very private. Children were not told their histories. Admonishions came from their lots. A fortyish human said he had been travelling with a grove for hundreds of years, perhaps over one thousand years. A book, Tale of Two Sisters, and another, Lord of Bleakstorm and the Gnomes, were noted. Bleakstorm heard the whispers of holy Bright on the wind, helped his people, and Bright gave him the gift of everlasting. -Class ended, and everyone left except a person at the back: Everard Browning. He asked a question about Bleakstorm living forever, and about gnomes and their devices. Dirk asked about travelling through time. Bright does not work in a linear way; the note trails off after "if we were to go back in." Morgana was Earth, and Geldrin was Water. The party went to Enchanting, though Geldrin and Morgana thought they should be there but instead followed Ruby Eye. The Enchanting teacher was a bright-red-haired elf, Mr Cardonald. He called the narrator aside and asked whether it was true she was marrying Argathum while still seeing Harthall's childhood sweetheart. He warned that it was not good if she was seeing the prince behind Harthall's back. He said her form was interesting and he would not have recognised her if not for Truesight, which saw her as a dragon. He was concerned for her as a friend of his daughter and worried about breaking the Pact with the Gold dragons. +Class ended, and everyone left except a person at the back: Everard Browning. He asked a question about Bleakstorm living forever, and about gnomes and their devices. Dirk asked about travelling through time. Bright does not work in a linear way; the note trails off after "if we were to go back in." Morgana was Earth, and Geldrin was Water. The party went to Enchanting, though Geldrin and Morgana thought they should be there but instead followed Ruby Eye. The Enchanting teacher was a bright-red-haired elf, Mr Cardonald. He called Eliana aside and asked whether it was true she was marrying Argathum while still seeing Harthall's childhood sweetheart. He warned that it was not good if she was seeing the prince behind Harthall's back. He said her form was interesting and he would not have recognised her if not for Truesight, which saw her as a dragon. He was concerned for her as a friend of his daughter and worried about breaking the Pact with the Gold dragons. In Abjuration, the party went through a door and Enis was there. Ruby Eye asked Enis to show him the book, and Enis asked who was with him. Ruby Eye said he was thinking of asking them to join, and that they would test them later. Enis asked Geldrin for a moment and said Geldrin had been touched by a god, the "lady of destruction." Enis had been looking into some dark magic in a Divination classroom. Enchanting covered the dangers of cursed items: two healing potions, one cursed, and neither Identify nor Detect Magic could reveal which one. Students needed to be aware of mimics at all times. In Abjuration, no teacher appeared; the teacher should have been Mr Grey. Most people began leaving, but some stayed. The remaining students gathered around a very dark-skinned elf with a bottle of green liquid. The elf did not know what it was. The liquid moved up the side of the bottle when poked. Morgana tried to speak to it and felt something reach out. It did not know its name but came from the desert. Morgana bought it, and it wanted to go back to the rest of itself in the desert. The party agreed to meet Ruby Eye at 10 in the Air room and regrouped in the first-year common room. The slime might be the blood of Noxia. -Dirk and Invar went to the library to get Lord of Bleakstorm and the Gnomes and Tale of Two Sisters around 17:00. Tale of Two Sisters was a very expensive book with a front picture of two women embracing, with Barbie-doll-type body features. Morgana and the narrator tried to open the secret door but failed. They went to the dining hall and ruined a classroom so the janitor would appear. They tried the knock pattern in a different classroom, but it did not work, and the narrator was sent to detention. Morgana returned to tell everyone what had happened. +Dirk and Invar went to the library to get Lord of Bleakstorm and the Gnomes and Tale of Two Sisters around 17:00. Tale of Two Sisters was a very expensive book with a front picture of two women embracing, with Barbie-doll-type body features. Morgana and Eliana tried to open the secret door but failed. They went to the dining hall and ruined a classroom so the janitor would appear. They tried the knock pattern in a different classroom, but it did not work, and Eliana was sent to detention. Morgana returned to tell everyone what had happened. Tale of Two Sisters described high-ranking queens of the elemental plane. They got on but were like oil and water and were never together. Bright was the low sky, while Valentenhule was the high sky. When lesser races were made, Bright grew close to them and enjoyed playing with them. Valentenhule was haughty and came to enjoy harming the beings. Both grew from their roles. Valententhide's position in the high or dark sky caused the void to open. Bright's position in the low sky let her witness humans enslaved by ice elementals, and when they broke free she rewarded them. Lord of Bleakstorm and the Gnomes said Bleakstorm thought the gnomes were cast-outs chosen to show anything but recently started showing off seas. The gnomes seemed to have an agreement with merfolk, because they always turned away from a port he knew existed: Great Farmouth. Bleakstorm thought Grand Towers was made with gnomish technology. Gnomes used random names to hide their family names. -Morgana tried to find detention and headed to the principal's office on the map. Altith / Icefang tried to contact the narrator and said they had been meant to meet after the narrator met with Argathum. A man appeared, Icefang. He warned that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. The party needed the janitor's broom to open the door. The note also says "T look silver with a hint of green," with two green dragons named Emeraldus and another. Goliaths were meant to go and attack them and be one of [unclear]. Icefang tried to see the future. When asked what happened if Browning did, the vision showed broken tower fields, burning blue, black, green, and red dragons flying around, small settlements of people hiding, and elementals destroying things. Icefang said, "The future could be desperate, the people are not ready yet." Cold Identify revealed that something had come with the party. Icefang suggested they go see Browning and ask him for the broom. +Morgana tried to find detention and headed to the principal's office on the map. Altith / Icefang tried to contact Eliana and said they had been meant to meet after Eliana met with Argathum. A man appeared, Icefang. He warned that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. The party needed the janitor's broom to open the door. The note also says "T look silver with a hint of green," with two green dragons named Emeraldus and another. Goliaths were meant to go and attack them and be one of [unclear]. Icefang tried to see the future. When asked what happened if Browning did, the vision showed broken tower fields, burning blue, black, green, and red dragons flying around, small settlements of people hiding, and elementals destroying things. Icefang said, "The future could be desperate, the people are not ready yet." Cold Identify revealed that something had come with the party. Icefang suggested they go see Browning and ask him for the broom. The party went to the Air common room at 22:00. Its door was flanked by pictures of a dwarf with a bushy beard and a blue dragonborn. Four or five mages were present: Browning, Valenth, Brotor, Enis, and Hannah. A featureless woman had her hands on Hannah's shoulders. She thanked the party for bringing the broom because it was part of the plan. Everard thought he had found a way into the tower through the tunnels, and they needed the broom to get there. They wanted to see secrets of emotional elimination, memories, and automations, and to help defend the land because they did not think the elemental truce would last much longer. The party agreed to go with them. Tallith had not hired the janitor for nothing; he used to work with the elves. Valententhide said her sister's magic protected the party for now. Hannah, a priestess of Attabre, thought the elves had the same magic as the [unclear]. @@ -106,7 +106,7 @@ Creatures and creature-like beings mentioned include oxen-horse crossbreeds, gri Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Harthall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowscreen mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. -Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing the narrator as a dragon, Enis recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. +Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing Eliana as a dragon, Enis recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. Strategic resources and plans mentioned include the Howling Tombs lead through Harthall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. @@ -148,7 +148,7 @@ Ruby Eye's final project was to remove his eye, and he asked Geldrin to join a g Cardonald's automations contained Thinglaens / Goliaths or light-like entities, not one of the four usual elementals. The ethical and magical nature of these automations remains unresolved. -The narrator's assumed identity as Evalina Harthall / Miana / Avalina, seen by Truesight as a dragon, triggered concern about Argathum, Harthall's childhood sweetheart, and the Gold Dragon Pact. Whether this is a past-life, disguise, stolen form, or time paradox is unresolved. +Eliana's assumed identity as Evalina Harthall / Miana / Avalina, seen by Truesight as a dragon, triggered concern about Argathum, Harthall's childhood sweetheart, and the Gold Dragon Pact. Whether this is a past-life, disguise, stolen form, or time paradox is unresolved. Lord Bleakstorm's lesson and the books Tale of Two Sisters and Lord of Bleakstorm and the Gnomes preserve history about Bright, Valentenhule / Valententhide, Great Farmouth, gnomes, merfolk, Grand Towers technology, and everlasting life. These are major lore threads. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index 0bec6e1..f91565c 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -48,7 +48,7 @@ Another Tarnished came toward Evocation, armed with a coin necklace and a curved The party returned to the basement to sleep. Three hours in, Geldrin's Alarm went off. Hushed voices said they had hidden things, that dragons had not known it was Mother, and that they would not be happy. The notes ask whether there were male and female Willowispa. When the party woke from their shifts, their minds were blank, and for some of them memory took longer to return. Morgana felt it was a spiritual effect from something always present in the building but stronger there. -At 8:00, the party left the room and found eleven severed heads lining the hole. The heads looked torn off and apparently had not been killed there. Most of the wizards seemed to be dead. In Elemental Lore, an ornate handle with all the elements on it formed part of the lock. A counter stood at one end, and thirty or forty cages held animals that all seemed dead. Errol tapped on the window, saying he could not find Rubyeye. He was chatty and odd, saying it had been 117 years for him but three days for the party. He looked maintained, did not remember where he had been, and his core seemed to be bursting with energy. He remembered looking for Rubyeye and the dwarves, darkness being with him for forty years, and giving only the answer "lost." He had been with Abraxus in a really nice city, returned inside the Barrier through the Coalmount Hills portal, and saw a fight involving one black and three green dragons, perhaps Veridian. He had been eating gems for forty years. He thought the party had always owned him, thought the narrator was Evalina, and recognised the others from the time they went to the past. Abraxus had given him to them. Abraxus was Professor Moreley. Moreley was waiting downstairs, very confused and not making sense. +At 8:00, the party left the room and found eleven severed heads lining the hole. The heads looked torn off and apparently had not been killed there. Most of the wizards seemed to be dead. In Elemental Lore, an ornate handle with all the elements on it formed part of the lock. A counter stood at one end, and thirty or forty cages held animals that all seemed dead. Errol tapped on the window, saying he could not find Rubyeye. He was chatty and odd, saying it had been 117 years for him but three days for the party. He looked maintained, did not remember where he had been, and his core seemed to be bursting with energy. He remembered looking for Rubyeye and the dwarves, darkness being with him for forty years, and giving only the answer "lost." He had been with Abraxus in a really nice city, returned inside the Barrier through the Coalmount Hills portal, and saw a fight involving one black and three green dragons, perhaps Veridian. He had been eating gems for forty years. He thought the party had always owned him, thought Eliana was Evalina, and recognised the others from the time they went to the past. Abraxus had given him to them. Abraxus was Professor Moreley. Moreley was waiting downstairs, very confused and not making sense. Back at Evocation, Errol had not found any orbs. The party went to the third-year upper dorm and found a globe with a rock inside, then turned it into lava in the Evocation classroom. They wanted a novelty from home and went looking for poor gifts. The shop was very quiet. They persuaded its door to open and found socks, trinkets, and an illusion of a gnome shopkeeper. They asked for a snowglobe from Snowscreen. @@ -66,7 +66,7 @@ Morgana's reincarnation formed a male elven body with greenish hair on the floor The party returned to the basement. Garadwal sensed spirits protecting the area. They placed the orbs into their relevant slots, producing a slight glow and some light on the locked door, but nothing else happened. The door changed and showed ancient Draconic runes: "You've got this far. I'll do my best to aid you in the battle you are about to have. The creature you are about to face will destroy your memories & you will not remember the spell you are about to cast." The party tried to tell Garadwal what he might encounter. A forty-foot alien, squelchy creature appeared, with an anguished humanoid face half scared and half in pain. Skeletal wings and a spectral dragon were holding it down. Mr Moreley was trying to restrain its full abilities, but he was pulled back into the school and the creature rose. -Ichor sprayed, and the party experienced visions. The narrator saw a cave with small creatures clad in metal, firing repeating crossbows, running past while a dragon roared. Dirk saw a thriving goliath city with many races trading. Geldrin saw a metal tower with zeppelins flying around, and the dragon skull was gone. The party felt the mind-altering effect coming from the back. Morgana saw a grassy field of daisies, a hand on her shoulder, and a warm, calming feeling from a barefoot faceless woman in silks. +Ichor sprayed, and the party experienced visions. Eliana saw a cave with small creatures clad in metal, firing repeating crossbows, running past while a dragon roared. Dirk saw a thriving goliath city with many races trading. Geldrin saw a metal tower with zeppelins flying around, and the dragon skull was gone. The party felt the mind-altering effect coming from the back. Morgana saw a grassy field of daisies, a hand on her shoulder, and a warm, calming feeling from a barefoot faceless woman in silks. The creature died, but an invisible entity escaped through the door. The party attacked it, but forgot it was there. Dirk ran through it and thought it was a wall. It became visible and ran through the orb room. The room began to disappear, and four doors appeared in the map room. One orb was not lit: Amoursorate's. An illusion of Joy appeared on the far side of the map table, saying she was there because the party had met her and she was lost and always had been, then disappeared. Morgana was a head when she came into the room, and an illusion toad appeared beside her with something in its mouth. @@ -78,7 +78,7 @@ Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but w Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunner door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. -Dirk, Garadwal, the narrator, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Elliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Enis had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." +Dirk, Garadwal, Eliana, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Eliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Enis had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." Dothral, also called Joshua, had only been aware for twenty years. A soul crashing into the tower had awakened a few constructs. A magpie landed on Morgana and said it could help her. The Chorus had sent it. Difficult times were coming, but Morgana would know the right path when it came. The magpie could say no more because Morgana had told it not to say anything else, though she could not remember doing so. It said it was time; the Chorus could not help before but could now. Willowispa was flying away furious. Dothral had awakened around Rhime watches about twenty years earlier, near a door, and something had forcefully propelled him through it. @@ -92,9 +92,9 @@ The party went back up the hole. Invar's robes now showed his surname; it had su At the council offices in the middle of the bridge, two guards stood outside. They said Lady Igraine had gone away that morning on official or family business toward Grand Towers. The party was allowed to see the Exchequer and skip the queue. He said they had been at the mage school, noted that many animals had been sighted recently and that a wounded dragon had flown off. Morgana heard him think that he wished they would leave and that guards should follow them. Morgana also had a new bird on her shoulder, Bartholomew, who said Betty was pretty and that he had been there since they arrived in town. -The party went to And Pool. Elliana slipped away to spy on the guards. A half-elf in clothing over leather armour came in soon after the party and began writing on paper. He left with a sending stone. The party grappled him and Geldrin intimidated him into surrendering the stone. The Exchequer wanted to know where they were. The party changed the message to point to a different pub, "I'm the Drink." The Exchequer had said the party looked shifty and had stolen the baby. The spy said the Exchequer had no name, that the seneschal was usually in charge when Lady Igraine was away, and that no aarakocra was important in town, although the spy insisted one existed and that he had worked for him for years. Guards were going to take the party to Lady Igraine. +The party went to And Pool. Eliana slipped away to spy on the guards. A half-elf in clothing over leather armour came in soon after the party and began writing on paper. He left with a sending stone. The party grappled him and Geldrin intimidated him into surrendering the stone. The Exchequer wanted to know where they were. The party changed the message to point to a different pub, "I'm the Drink." The Exchequer had said the party looked shifty and had stolen the baby. The spy said the Exchequer had no name, that the seneschal was usually in charge when Lady Igraine was away, and that no aarakocra was important in town, although the spy insisted one existed and that he had worked for him for years. Guards were going to take the party to Lady Igraine. -The guards took the party across the bridge to another door but stopped them entering, saying Lady Igraine did not want to be disturbed. Morgana became a bee and found the room empty; Lady Igraine had been there six hours earlier. The party returned to the Exchequer's office and burst in. A half-elven man was speaking to traders, but he was not the same person. The receptionist said he had been there all day and had not seen the party before. Morgana went to the toilet and cast Locate Creature on the bird. Bartholomew turned into the "Exchequer" with two small daggers. Morgana became a bear and roared. People in the waiting room ran while others drew daggers, and chairs moved strangely, possibly due to lamias. Elliana was on her way to question the guards about why they had mentioned an Exchequer who did not exist. The waiting-room people transformed into a lamia, rats, and more outside the room. The notes preserve the quote, "We don't fireball babies." Bartholomew became a massive vulture-like thing with lightning crackling at his fingers. He seemed to recognise Elliana and said, "I'm doing your bidding." The party killed the rats, lamia, and vulture. A guard who had told them about the Exchequer was confused and could not really remember, except that the Exchequer had told him the party was coming and that Lady Igraine was away on family business. The loot notes record two lamias including daggers, eighty hexagon coins, a dark grey rose, and Bartholomew's silver chain with a green pendant. +The guards took the party across the bridge to another door but stopped them entering, saying Lady Igraine did not want to be disturbed. Morgana became a bee and found the room empty; Lady Igraine had been there six hours earlier. The party returned to the Exchequer's office and burst in. A half-elven man was speaking to traders, but he was not the same person. The receptionist said he had been there all day and had not seen the party before. Morgana went to the toilet and cast Locate Creature on the bird. Bartholomew turned into the "Exchequer" with two small daggers. Morgana became a bear and roared. People in the waiting room ran while others drew daggers, and chairs moved strangely, possibly due to lamias. Eliana was on her way to question the guards about why they had mentioned an Exchequer who did not exist. The waiting-room people transformed into a lamia, rats, and more outside the room. The notes preserve the quote, "We don't fireball babies." Bartholomew became a massive vulture-like thing with lightning crackling at his fingers. He seemed to recognise Eliana and said, "I'm doing your bidding." The party killed the rats, lamia, and vulture. A guard who had told them about the Exchequer was confused and could not really remember, except that the Exchequer had told him the party was coming and that Lady Igraine was away on family business. The loot notes record two lamias including daggers, eighty hexagon coins, a dark grey rose, and Bartholomew's silver chain with a green pendant. The seneschal ordered people to search for townsfolk and any remaining infiltrators in the town hall. The guards had altered memories. In Lady Igraine's room there were no obvious signs of struggle except an earring on the floor, and the party realised a rat had run away. Clerical officers Williams and Terrance received deputy badges. Williams was a man in his mid-thirties; Terrance was a man in his forties. @@ -114,7 +114,7 @@ Bollar men were looking for the party. He agreed to help the militia and find th # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Elliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Enis, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Harthall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. +People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Eliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Enis, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Harthall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. @@ -156,7 +156,7 @@ The lost ring removed or altered traits: Dirk lost compassion, and Geldrin no lo The visions behind the doors, including the restored statue of Sierra, Lodest with vulture men and Anastasia chained, and movement toward Valententhide's prison, may represent current or historical prison states. -The memory flood restored or revealed relationships, including Invar and Elliana remembering Morgana as more familiar than expected. The source and implications of those restored memories remain unresolved. +The memory flood restored or revealed relationships, including Invar and Eliana remembering Morgana as more familiar than expected. The source and implications of those restored memories remain unresolved. Dothral / Joshua, Amoursorate's request to look after her son, Dothral's twenty-year awareness, and the constructs awakened by a soul crash remain open threads. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index 2a04c76..a2ddb91 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -36,33 +36,33 @@ In the ransacked room, an untouched picture showed a halfling girl with a silver Beyond a door was an empty bookshelf and an alchemist's table covered in mushrooms. The phrase "Friend fleshbag set him free" appeared in the notes, along with the statement that the children were elsewhere now. The party learned or inferred that two silver dragons had lived there, fought, one left, and then came back, after which there were three: one big and two small. At the end of a corridor were two prison rooms. One room was filled with dirt and kept filling with more. The next room was locked; Platinum said the door had not been there when she was with the adventurers. Inside stood an obsidian plinth with an urn, a single white rose, an amethyst orb, a red ribbon tied in a bow, and a dark wooden flute laid like an offering. -An obsidian statue had no face but suggested a gracious god, with an eyestone in the lower torso, possibly Squeal. The other side represented Kasha, with an unclear note preserved as `[unclear: Leys 8? mystery]`. When the narrator looked at the flute, they somehow knew Lady Hartwall played it, perhaps from a look from Provista, and a frosty tear formed in the corner of their eye. The urn read: "Though my love for you in life may not have been true, you still gave your life for me. I'm sorry." It was Argathum's urn. Behind the silks, one made the narrator shiver and feel afraid. Dirk found a crack in the wall. +An obsidian statue had no face but suggested a gracious god, with an eyestone in the lower torso, possibly Squeal. The other side represented Kasha, with an unclear note preserved as `[unclear: Leys 8? mystery]`. When Eliana looked at the flute, they somehow knew Lady Hartwall played it, perhaps from a look from Provista, and a frosty tear formed in the corner of their eye. The urn read: "Though my love for you in life may not have been true, you still gave your life for me. I'm sorry." It was Argathum's urn. Behind the silks, one made Eliana shiver and feel afraid. Dirk found a crack in the wall. When the party checked the crack, someone became petrified by it and instinctively threw the flute at it. The crack looked as if something spherical had hit it. Dirk checked the urn, found it contained dust, and tried to speak to it. The phrase "In her strange bones laid bare" was recorded. Nearby metal looked tarnished, odd for silver; when wiped, it revealed crystallised jade dust, as if silver were turning into jade. Geldrin cleaned both statues and became lost looking at one. An ornate door led to a long throne room. One throne was Harthall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadwal. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. -A sentient door asked who the narrator was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that the narrator had been in and out many times, and that it preferred the narrator's other look, wearing a dress. After Avalina last left, Mr Boorning came in a day later and left with a key. The door said Harthall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." +A sentient door asked who Eliana was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that Eliana had been in and out many times, and that it preferred Eliana's other look, wearing a dress. After Avalina last left, Mr Boorning came in a day later and left with a key. The door said Harthall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." -The narrator and Joshua / Dothral felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. +Eliana and Joshua / Dothral felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. The party went outside to find and clear the area where the room had caved in. On the far side they found a trapped door, disarmed it, and identified a magical banishing trap aimed at someone coming out. The rest of the lab may have been through the door. Dothral recognised the architecture. A forcefield appeared partway down the corridor. Runes in an unknown language read "help you Everard." -The first door on the left had carvings of small elvish town houses and large out-of-place trees, with Elvish script at the bottom. Inside were a wooden rocking horse on a spring, a vanity, a sofa with stuffed "bears" that were actually humans, gnomes, and halflings, and a rack of flutes. The narrator picked up one stuffed bear, tucked it under their arm, started to cry, tried to remember something, and felt as if they had lost something. They put it in their bag. +The first door on the left had carvings of small elvish town houses and large out-of-place trees, with Elvish script at the bottom. Inside were a wooden rocking horse on a spring, a vanity, a sofa with stuffed "bears" that were actually humans, gnomes, and halflings, and a rack of flutes. Eliana picked up one stuffed bear, tucked it under their arm, started to cry, tried to remember something, and felt as if they had lost something. They put it in their bag. -Dirk sang a sombre goliath song from the music book. While he sang, the narrator heard flute music, was drawn to a flute, and felt it as sombre and heavy in their mind. The goliath baby played around the room, added a ribbon to the narrator's horn, vomited on them, and thought it was hilarious. Geldrin tried to clean it with magic, but the spell failed, apparently because the narrator stopped it. +Dirk sang a sombre goliath song from the music book. While he sang, Eliana heard flute music, was drawn to a flute, and felt it as sombre and heavy in their mind. The goliath baby played around the room, added a ribbon to Eliana's horn, vomited on them, and thought it was hilarious. Geldrin tried to clean it with magic, but the spell failed, apparently because Eliana stopped it. -The next room had two beds, one carved with sky and one with a dragon. The sky bed had an X carved into it. Under the dragon bed was a box; a key was on the dragon's bottom with six possible Celestial words on it. A magical pure-black cat with green eyes came around the door and wanted to be killed. Something was locked up at the end of the corridor. The cat escaped; the narrator shot and injured it, but it repaired itself. +The next room had two beds, one carved with sky and one with a dragon. The sky bed had an X carved into it. Under the dragon bed was a box; a key was on the dragon's bottom with six possible Celestial words on it. A magical pure-black cat with green eyes came around the door and wanted to be killed. Something was locked up at the end of the corridor. The cat escaped; Eliana shot and injured it, but it repaired itself. A "window" opened into an illusion of a beautiful field of roses, with a picnic blanket under the window and dragon toys nearby. A tea set held cups with folded papers labelled Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, and me, with the last perhaps keyless. The sphynx wanted Dirk to read books. The toy chests were empty. Geldrin read the bears' words: "Here always Never Nowhere all Harth." The notes identify Hannah Joy, Enis's wife, as erased from existence. -The party realised Enis had sacrificed his wife so Joy could live, but it did not work because Joy could not exist if her mother did not exist. The sphynx grew quickly and asked many questions. Invar had a crab in his bag. The narrator wanted the sphynx green, noted that jade had turned them green, and remembered a brother's nose. +The party realised Enis had sacrificed his wife so Joy could live, but it did not work because Joy could not exist if her mother did not exist. The sphynx grew quickly and asked many questions. Invar had a crab in his bag. Eliana wanted the sphynx green, noted that jade had turned them green, and remembered a brother's nose. -The next room had carved doors. One stone door was crudely carved with a bell, cracked and on fire, and large men surrounding it while looking at the sky, perhaps Bellborn. When Dirk asked it to open, it said, "You may not pass, son of fire." Only the son of stone and their friends could enter. Invar tried to enter, and the door told him to run back home. It opened for the narrator. The room was large and empty. Dirk found a coin of uncertain origin. Invar noticed one stone was slightly different from the uniform others. Morgana found a paper that read: "I hid them for you. One is in a cell, the other false teddy." A loose hollow flagstone held a box, and Geldrin found a memory orb. +The next room had carved doors. One stone door was crudely carved with a bell, cracked and on fire, and large men surrounding it while looking at the sky, perhaps Bellborn. When Dirk asked it to open, it said, "You may not pass, son of fire." Only the son of stone and their friends could enter. Invar tried to enter, and the door told him to run back home. It opened for Eliana. The room was large and empty. Dirk found a coin of uncertain origin. Invar noticed one stone was slightly different from the uniform others. Morgana found a paper that read: "I hid them for you. One is in a cell, the other false teddy." A loose hollow flagstone held a box, and Geldrin found a memory orb. The box revealed a small scene of Grand Towers before the other towers were built. Three small boxes at the front resembled something seen before at Enis's place or a professor's. Seven bare-chested elves stood in front. Two held chains leading to side panels: one to whorls of wind, and the other to an elven body with a lion's head. The baby thought the lion-headed figure was the real daddy, took the lion, broke the box, and fell asleep after the tantrum. -Geldrin found a glass shard, and the narrator found a statue with Goblin writing: "Time flies." Things disappeared when the party left the room. Another door led to a desert-badlands room showing a sandstone battle between Noxia and Sierra. It contained a giant adult-dragon-sized bed, a human-sized bedside table and vanity, and a bedside book titled `Tunnels of Love`, identified bluntly as dwarf porn. +Geldrin found a glass shard, and Eliana found a statue with Goblin writing: "Time flies." Things disappeared when the party left the room. Another door led to a desert-badlands room showing a sandstone battle between Noxia and Sierra. It contained a giant adult-dragon-sized bed, a human-sized bedside table and vanity, and a bedside book titled `Tunnels of Love`, identified bluntly as dwarf porn. Morgana found white rose powder that smelled of visions. Of three chests, one from Mr Moreley's room was open. One box and an incredibly attractive elf said, "That's your form now." The ceiling changed into a Milky Way, then into an eye. Another room of coral and seashells depicted a temple on a shoreline, possibly the Baylen / Baylain Accord. It was a bathroom, and tiny scratches in the bathtub made a picture of a cat. @@ -70,19 +70,19 @@ The next room was light and airy, with stone houses on stilts. Its door said, "N Pictures in the room included Avalina, Harthall, and others. The baby put memories on the wall and said, "No, maybe it time." The images showed a huge black dragon with flies buzzing around its horn in a desert near a large tower. It turned into a human in ornate clothing. A drow or green dragon attacked the black dragon and was winning, then pulled out a jar. A beautiful elf was propelled into the sky and crashed into the Barrier. The notes continue that the figure pushed through the Barrier. A woman said, "not any more" and "that's your form now." He could come through because he had the gate. -The party found a room labelled or associated with Laylistra, then an entrance chamber to a school where everyone was present and the narrator wore a robe with Harthall crests. In a girls' room, three girls climbed out the window and looked over the urn. One daughter laid a ribbon from her doll and told her sister, "my gift is better than yours." A key was called poopoo head. The other replied, "no, you're the poo poo head, Elliana!" and pushed her into the wall. The baby said jade had made the narrator green. +The party found a room labelled or associated with Laylistra, then an entrance chamber to a school where everyone was present and Eliana wore a robe with Harthall crests. In a girls' room, three girls climbed out the window and looked over the urn. One daughter laid a ribbon from her doll and told her sister, "my gift is better than yours." A key was called poopoo head. The other replied, "no, you're the poo poo head, Eliana!" and pushed her into the wall. The baby said jade had made Eliana green. -The next door led to a kitchen of artificial yellow stone with crops. Under the fridge was a hidden door handle and a note reading, "in case you lock yourself in again, Greensleeves." The narrator knew Greensleeves was a halfling chef but did not know why. Another door opened to a lighthouse with a castle in the middle, possibly Freeport, and a dining room with a twelve-seat table. Everything was eclectic across many races. The chairs seemed more sat in than the place settings suggested. A cutlery box had a false bottom containing a silver necklace with a green jade heart-shaped pendant carved in Celtic style. The narrator had not seen Avalina wearing it, and the chain did not feel like part of the pendant. A loose stone under the table hid an invisible handle. Dotharl looked out of the room and saw an invisible human man with holes for eyes. +The next door led to a kitchen of artificial yellow stone with crops. Under the fridge was a hidden door handle and a note reading, "in case you lock yourself in again, Greensleeves." Eliana knew Greensleeves was a halfling chef but did not know why. Another door opened to a lighthouse with a castle in the middle, possibly Freeport, and a dining room with a twelve-seat table. Everything was eclectic across many races. The chairs seemed more sat in than the place settings suggested. A cutlery box had a false bottom containing a silver necklace with a green jade heart-shaped pendant carved in Celtic style. Eliana had not seen Avalina wearing it, and the chain did not feel like part of the pendant. A loose stone under the table hid an invisible handle. Dotharl looked out of the room and saw an invisible human man with holes for eyes. -The doorknobs were magical. The next door opened toward Gar and a purple dome. The room added itself to a six-foot-tall humanoid glacier in the dome, surrounded by lightning, guarded by two Dothral automatons created at the same time. A female voice shouted, "I've not hidden it here, fuck off you prick," and the narrator felt odd hearing it. Morgana removed an artery from the doorknob hole, but nothing happened. When the voice was heard and doors began to close, Geldrin put up a Wall of Force while fireballs from the ceiling struck harmlessly against the protection. +The doorknobs were magical. The next door opened toward Gar and a purple dome. The room added itself to a six-foot-tall humanoid glacier in the dome, surrounded by lightning, guarded by two Dothral automatons created at the same time. A female voice shouted, "I've not hidden it here, fuck off you prick," and Eliana felt odd hearing it. Morgana removed an artery from the doorknob hole, but nothing happened. When the voice was heard and doors began to close, Geldrin put up a Wall of Force while fireballs from the ceiling struck harmlessly against the protection. -The hollow-eyed man was in the empty room and followed Dothral with an approximately five-second delay. His tongue had been cut in half. He ran over the narrator's shoe, and insects appeared and began talking. The insects or speaker served Igraine, said they had started down the path and payment would be due, and named the tax collector as Cacophony, who would collect payment when due. The party asked what language this was in and whether it had a mortal word. A vision of Throngore appeared: a glowing blue ball surrounded him, disappeared, and a blue object fell to the floor. A silver dragon picked it up and said, "that's it, now this is done." All animals speaking for Cacophony died except one that told Morgana what it was called. +The hollow-eyed man was in the empty room and followed Dothral with an approximately five-second delay. His tongue had been cut in half. He ran over Eliana's shoe, and insects appeared and began talking. The insects or speaker served Igraine, said they had started down the path and payment would be due, and named the tax collector as Cacophony, who would collect payment when due. The party asked what language this was in and whether it had a mortal word. A vision of Throngore appeared: a glowing blue ball surrounded him, disappeared, and a blue object fell to the floor. A silver dragon picked it up and said, "that's it, now this is done." All animals speaking for Cacophony died except one that told Morgana what it was called. The automatons became active. Geldrin woke one. The creature in the dome was in their charge, and they would become aggressive if needed. The notes say they had protected the creature for 1037 years, then also 1017 years, and that it was for a prison close by. It was still charging and had "2" time left. Both powered down. The last door led to a dark black rock swamp and a trophy-room-like chamber with two rows of empty plinths. The plaques had been scratched off, but Morgana cast Mending on them. The restored plaques named the Crown of Mooncoral; a picture of three trees with fletching arrows on the middle one; the Blood of Noxia; the Chains of Blackthorn; the Heart of Tremon; a dress made as a gift from survivors of Sunplane; "His first gift to me"; Lion's Blessing; the Crown of Thorns from the First Massacre; `Musings and Thoughts on the Location of the Lost`; `Shaman Blackstorm's Tome on the Significance of the Number 5`; and `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`. -Geldrin had one of the listed items or books. The narrator put it on its plinth, causing a rumble that knocked Geldrin back and made light appear above the chains plinth. The sphynx baby was named Bynx. After pushing the chains plinth the wrong way and noticing writing, the party put the chain from the locket on it, causing the tree plinth to light. Its plaque was removed, revealing a stone arrow. Removing the arrow made the light go out. In the bedroom, light now shone above the nightstand. A book there had not been present before. It was blank, but indents showed it had been written in. Magical fire burned in the fireplace. Makeup revealed words in the book, apparently Avalina's diary. +Geldrin had one of the listed items or books. Eliana put it on its plinth, causing a rumble that knocked Geldrin back and made light appear above the chains plinth. The sphynx baby was named Bynx. After pushing the chains plinth the wrong way and noticing writing, the party put the chain from the locket on it, causing the tree plinth to light. Its plaque was removed, revealing a stone arrow. Removing the arrow made the light go out. In the bedroom, light now shone above the nightstand. A book there had not been present before. It was blank, but indents showed it had been written in. Magical fire burned in the fireplace. Makeup revealed words in the book, apparently Avalina's diary. The last diary pages described getting sick, a cell in every promise being a flavour, a spiral of intentions continuing from good to bad, people giving things away and becoming shadows of themselves, worry for daughters, too much given away, and loved ones dead. The writer asked the daughters to close the place off and did not want the others to get things. The daughters were teenagers at the time. Back in the plinth room, placing Noxia slime on its plinth did nothing. @@ -128,21 +128,21 @@ A TV orb glowed, showing a copper dragon and claw or clew marks. "The Shadow" wa The party saw them in an elven town square with a gold dragon on a pile of gold. Cindy was called back, gave bath directions and passes, and said there had been no "murders" in the last two or so years, though people were still killed. Inbreeding with lower races was allowed. Blue and red dragons were attacking Sunsoreen more than the others. The red dragonborn's presence was requested, and the party needed to testify against the troublemakers. -The party followed to a new place through an internal market, where townsfolk felt as if they were walking on eggshells. The courthouse did not seem designed for dragons despite having forty-two courtrooms in that building and more than two hundred across the city. At 17:00, the judge was a copper dragon wearing a magistrate wig: the Right Honourable Charming. Cindy was tried for seditious aiding and abetting leaving Sunsoreen, tampering with visitor quarters, displaying terrorist messages, passing carrots, and spreading chaos across the lands. The court asked whether the orb gave illicit messages or whether both patrons were talking out of turn. The narrator was called Elliana Harthall. The Great Lorekeeper had provided the information. The questions were not relevant to the trial and asked where the narrator came from, whether they had pets as a child, and why there were so many teddy bears. +The party followed to a new place through an internal market, where townsfolk felt as if they were walking on eggshells. The courthouse did not seem designed for dragons despite having forty-two courtrooms in that building and more than two hundred across the city. At 17:00, the judge was a copper dragon wearing a magistrate wig: the Right Honourable Charming. Cindy was tried for seditious aiding and abetting leaving Sunsoreen, tampering with visitor quarters, displaying terrorist messages, passing carrots, and spreading chaos across the lands. The court asked whether the orb gave illicit messages or whether both patrons were talking out of turn. Eliana was called Eliana Hartwall. The Great Lorekeeper had provided the information. The questions were not relevant to the trial and asked where Eliana came from, whether they had pets as a child, and why there were so many teddy bears. The court did not want to question Dotharl because they did not question machines, but questions appeared: "Help me, Grandson." The judge became flustered. All questions came from the Lorekeeper, and trials did not usually proceed this way. The outside door opened and four observers entered: two elves, one human, and one copper-haired person. Three invisible hooded figures entered as well. Dotharl called them out, and a peacekeeper struck him. One invisible figure was hit and became a copper dragon; another grabbed Cindy and disappeared. The judge transformed into dragon form, arrested both invisible figures, and the manacles turned them humanoid. The judge had suspected the party, but Dotharl's actions changed his mind, and he sent them back to their quarters. -The notes record that Dothril / Dotharl had a familial tie to an elemental. Bynx explained that where pure elemental planes meet, they combine. When the party asked if the council were ready, two gold dragonborn escorted them. Only Hayhearn Frostwind and Aurum Prudence were present. The Lorekeeper was unavailable. Hayhearn disliked being asked where their information came from. She sent Aurum to fetch records; he muttered that it was not like it used to be. When the narrator questioned why the trial questions were irrelevant, Hayhearn asked who the narrator thought they were. According to Sunsoreen records, the narrator was Elliana Harthall. +The notes record that Dothril / Dotharl had a familial tie to an elemental. Bynx explained that where pure elemental planes meet, they combine. When the party asked if the council were ready, two gold dragonborn escorted them. Only Hayhearn Frostwind and Aurum Prudence were present. The Lorekeeper was unavailable. Hayhearn disliked being asked where their information came from. She sent Aurum to fetch records; he muttered that it was not like it used to be. When Eliana questioned why the trial questions were irrelevant, Hayhearn asked who Eliana thought they were. According to Sunsoreen records, Eliana was Eliana Hartwall. -Aurum left, and Hayhearn said that explained a lot. Bynx cast Truesight and found his sister was no longer there; there was no trace of her in the white dragon. Aurum returned with the rest of the council, and the empty chair was now filled by a silver-skinned human. The council proposed that Elliana stay and they would help the narrator find out what they had lost. The party did not trust this. The party demanded release of all Sunsoreen citizens; the council declined. Hayhearn invoked guest rights and tried to arrest them, but Aurum Prudence objected forcefully and told the party to leave. Many people then ran to the chambers with papers for an emergency law-making meeting. +Aurum left, and Hayhearn said that explained a lot. Bynx cast Truesight and found his sister was no longer there; there was no trace of her in the white dragon. Aurum returned with the rest of the council, and the empty chair was now filled by a silver-skinned human. The council proposed that Eliana stay and they would help Eliana find out what they had lost. The party did not trust this. The party demanded release of all Sunsoreen citizens; the council declined. Hayhearn invoked guest rights and tried to arrest them, but Aurum Prudence objected forcefully and told the party to leave. Many people then ran to the chambers with papers for an emergency law-making meeting. -The party returned to the frost prison. Geldrin tried to turn the portal off but accidentally activated another location: a square black obsidian room with no doors. Geldrin found a door, placed a hand on it, and opened it into a black corridor in Valententhide's house. The portal had one charge left, shared between portals and resetting once a day. When the party opened the portal and tried to go through, they saw Valententhide and passed out. Three went through before the portal closed. Morgana heard the narrator and felt cold hands on her shoulder. +The party returned to the frost prison. Geldrin tried to turn the portal off but accidentally activated another location: a square black obsidian room with no doors. Geldrin found a door, placed a hand on it, and opened it into a black corridor in Valententhide's house. The portal had one charge left, shared between portals and resetting once a day. When the party opened the portal and tried to go through, they saw Valententhide and passed out. Three went through before the portal closed. Morgana heard Eliana and felt cold hands on her shoulder. The party then used the right blade to go to Harthall's lab. They gave the ice elemental ball to the fire elemental in the fireplace, cast Dispel Magic on the rift in the fireplace, and closed the portal to the fire elemental. Page 245 then begins Day 48, so Day 47 is complete at this point. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Elliana Harthall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Eliana Hartwall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Harthall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Harthall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. @@ -156,11 +156,11 @@ Items, documents, and physical resources mentioned include the bag of holding, L Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. -Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Harthall had two daughters; the note hiding items in a cell and a false teddy; Bynx's memory of a lion-headed "real daddy"; the Harthall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming the narrator as Elliana Harthall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. +Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Harthall had two daughters; the note hiding items in a cell and a false teddy; Bynx's memory of a lion-headed "real daddy"; the Harthall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming Eliana as Eliana Hartwall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. # Clues, Mysteries, and Open Threads -The altered white-rose picture and its `Preserve` rune imply a third girl was removed or hidden from memory or history. The identity of the missing girl and how she relates to Elliana, Joy, Hannah, and Harthall's daughters remains unresolved. +The altered white-rose picture and its `Preserve` rune imply a third girl was removed or hidden from memory or history. The identity of the missing girl and how she relates to Eliana, Joy, Hannah, and Harthall's daughters remains unresolved. The note about "No chart," the forest release, and the adventurers who took Lady Hartwall's diary are unexplained. @@ -168,9 +168,9 @@ The mushroom table message "Friend fleshbag set him free" and the statement that Argathum's urn, the offering flute, the white rose, the amethyst orb, the frosty tear, and the phrase "In her strange bones laid bare" suggest a major personal sacrifice or failed relationship, but the full story is incomplete. -The statues turning silver into crystallised jade dust, the green jade heart pendant, prior jade purchases, and the narrator being turned green by jade remain connected but unresolved. +The statues turning silver into crystallised jade dust, the green jade heart pendant, prior jade purchases, and Eliana being turned green by jade remain connected but unresolved. -The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for the narrator in a dress, Mr Boorning's key, and Harthall's unnamed baby daughters remain active clues. +The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for Eliana in a dress, Mr Boorning's key, and Harthall's unnamed baby daughters remain active clues. The mind fog, the voice telling Invar "I will not lose you again my son," Dirk's vision of Joy, Errol's warning that information was being lost, and Platinum's belief that the memory wipe missed the door all point to ongoing memory-erasure machinery. @@ -182,7 +182,7 @@ The desert-badlands room showed Noxia fighting Sierra, while later plinths named The black dragon with flies, drow or green dragon attacker, jar, beautiful elf, Barrier crash, and statement "that's your form now" appear to explain a transformation and Barrier passage, but the figures are not fully identified. -The girls' room named Elliana and involved a ribbon, doll, urn, and the phrase "poopoo head." This may connect the narrator to Harthall's daughters and the missing preserved girl. +The girls' room named Eliana and involved a ribbon, doll, urn, and the phrase "poopoo head." This may connect Eliana to Harthall's daughters and the missing preserved girl. Cacophony's tax-collector claim, Throngore vision, blue object, silver dragon, and future payment due remain unresolved and may mark a supernatural debt. @@ -198,10 +198,10 @@ The `Palace of Valententhide` book reveals Valententhide's deep-sky palace, unbr Aurum Prudence and Sunsoreen revealed a city moved to the other side of the earth after broken pacts, with the Tri-moon visible at the wrong time and the Council enforcing absorption, new laws, job mandates, outbreeding controls, and information control. Whether Sunsoreen is ally, authoritarian remnant, or active threat remains open. -The Lorekeeper supplied impossible information about Elliana Harthall, teddy bears, pets, and Dotharl's "Help me, Grandson" message, but could not be met. Its nature and source of knowledge are unresolved. +The Lorekeeper supplied impossible information about Eliana Hartwall, teddy bears, pets, and Dotharl's "Help me, Grandson" message, but could not be met. Its nature and source of knowledge are unresolved. Bynx's Truesight found his sister absent from the white dragon with no trace. The sister's identity, disappearance, and relation to the white dragon and Sunsoreen council remain unresolved. -The council offered to help Elliana find what she had lost if she stayed, refused to release citizens, and attempted an arrest under guest rights. Aurum's objection prevented immediate capture, but emergency law-making followed. +The council offered to help Eliana find what she had lost if she stayed, refused to release citizens, and attempted an arrest under guest rights. Aurum's objection prevented immediate capture, but emergency law-making followed. Day 48 begins immediately after this with Bynx growing again, Errol sent toward Dirk's father, Azureside travel, and the Dunners' dragon problem; because no Day 49 boundary is visible yet, Day 48 remains unprocessed. diff --git a/data/4-days-cleaned/day-48.md b/data/4-days-cleaned/day-48.md index 7076b40..0cf784a 100644 --- a/data/4-days-cleaned/day-48.md +++ b/data/4-days-cleaned/day-48.md @@ -20,7 +20,7 @@ complete: true # Narrative -Day 48 began after the party closed the fire elemental rift in Harthall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed the narrator being a Harthall, Bynx said the narrator was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping the narrator from memories in the same way Enis's wife Hannah had been erased. +Day 48 began after the party closed the fire elemental rift in Harthall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed Eliana being a Harthall, Bynx said Eliana was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping Eliana from memories in the same way Enis's wife Hannah had been erased. Errol returned and reported that things were bad after a battle. Gardoil was not present because she had gone to do something, and reinforcements were needed from the capital. The party tried to travel by broom to Azureside and found themselves in a place of completely blue sky, passages, vanishing doors, lush grass, mushrooms, and sky below. A squirrel spoke with them, did not know where it was, and said a floppy bronze-coloured lizard looked after him. The squirrel sent a magpie to fetch it. A metallic brass-looking dragon approached. @@ -30,13 +30,13 @@ Scout reports listed four entrances. The main cliff entrance was nine miles away The party visited the Dunners and received substantial respect. Elders came out, including an older one and a knower of flesh, acting on the word of Benu. They said there was a plan for the party. Texts now uncovered showed prophecy, and because of Benu's convalescence they knew he would return but needed to pay for his misdeeds. They had heard of their old protector made flesh anew, Garadwal. He had been good and had wanted to protect people, but they were unsure whether they should accept him back as their protector. The goliaths proved strong-minded. The merfolk had retreated to the sea. Suppressed memories horrified them, although they had spoken highly of the party. The party considered options: diplomacy, attack, sneaking, or leaving. -Dirk asked his ancestors whether diplomacy could work. They indicated help could be gained, but the price would be high. The party told the council they would try diplomacy and advised them to give Verdigrim trade terms. The council disliked the plan but listened. At the dragonborn base, one dragonborn saw the party, followed briefly, then disappeared toward a hidden entrance. Many more surrounded the party. Three dragonborn approached: a burly mean-looking woman, a small old man, and a burly one. They said the narrator bore the shine of stepmother and that Verdigrim had ordered them to speak. The burly envoy was Grimescale, envoy of mighty Verdigrim; the old man was Gravltooth. +Dirk asked his ancestors whether diplomacy could work. They indicated help could be gained, but the price would be high. The party told the council they would try diplomacy and advised them to give Verdigrim trade terms. The council disliked the plan but listened. At the dragonborn base, one dragonborn saw the party, followed briefly, then disappeared toward a hidden entrance. Many more surrounded the party. Three dragonborn approached: a burly mean-looking woman, a small old man, and a burly one. They said Eliana bore the shine of stepmother and that Verdigrim had ordered them to speak. The burly envoy was Grimescale, envoy of mighty Verdigrim; the old man was Gravltooth. Grimescale and Gravltooth said their lands had been theirs for one thousand years and were no longer theirs. Ashkielion now belonged to the goliaths, while a closed place held other lands to be retrieved. The party requested safe passage to Verdigrim. They were taken through tunnels to a Dunner-style throne room made of very dark stone with copper accents. Verdigrim appeared as a man with very dark skin and copper accents. He admitted he had invited the party earlier because Perodita had told him to kill them in exchange for leaving his people alone. Verdigrim wanted to keep his own "Verdigrimtown" and wanted what was already his. Five white raiding forces outside the town could be revisited later. The notes mention a gold amount roughly equivalent to one sibling's hoard. Verdigrim warned that he would not lend forces in a way that put himself at risk. The party told him his mother was still alive, and he wanted to meet her. The party returned to camp at 14:00, requested the council, and was admitted to the tent at 16:00. They explained the trade agreement. The goliaths leaned toward accepting, moving to Ashkielion, and taking the rest of the town. -When the party returned to their tent, Wrath was waiting, smartly dressed and holding Rubyeye. Wrath said Rubyeye needed rescuing; Cardinal had gone but been useless. The narrator stated they were called Elliana Harthall because that was apparently their mother's name, though one of their mothers was and one was not. Ingus was told to inform the council where the party was going. +When the party returned to their tent, Wrath was waiting, smartly dressed and holding Rubyeye. Wrath said Rubyeye needed rescuing; Cardinal had gone but been useless. Eliana stated they were called Eliana Hartwall because that was apparently their mother's name, though one of their mothers was and one was not. Ingus was told to inform the council where the party was going. Wrath took the party to a huge underground dwarven city. A lava ball held a humongous elemental lava orb, possibly a prisoner. A dwarf king prayed to the gods to keep the orbs safe. A female dwarf with a massive ruby in her chest plate was present, and the notes question whether Garadwal's body had a new owner. Earth elementals were present. The female dwarf was Spindl, Rubyeye's auntie; she had seen the party before and knew they were coming. The party said "Garadwal" had called them and they had come to help him. @@ -52,19 +52,19 @@ The party threw slurry, bones, and metal through the Barrier. The slurry and sim The party investigated the prison. A door rune read "Empty." Corridors were lined with heavily armoured dwarf statues. Plaques named Ugarth Thunderfut, slain by the demon Samuel; Borbor Thunderfut, who saw Samuel slain by the demon Struct; and Lhura Trutbrow, slain by Struct but bound in chain upon him. The story involved thirty dwarves from two clans capturing Throngore. A thirty-foot circular room held six more dwarves who had bound the creature there. One statue should have held a crystal or diamond-type gem, but the gem was missing. A dark corridor led to a chamber of thirty dwarf sarcophagi. The room stank of decay, and the bodies had been decapitated around twenty years earlier, despite sarcophagus inscriptions saying the thirty dwarves had lived in the corridor and all died on the same date 1,050 years ago. Their armour and weapons were present as heirlooms and had been covered with goat urine. -The party tried to match armour to statues and found fine glass dust in stone cracks, suggesting a diamond resurrection spell or similar. Stoven and Stuart had both been imprisoned twenty years earlier and only recently released by the party and another group. A narrowing dark corridor led to a handleless door with a panel. Beyond it was a prison dome containing a featureless humanoid figure, uncertainly noted as Aglue?, Anemie?, or Valententhide. Pylon runes explained the pylons and mentioned a key or "wheel" to open it. A third door had magical infernal-like writing on the doorknob, reminiscent of Enis's lab. When Dothral tried to open it, he heard, "Come on, boy, we haven't got all day." Inside were five living dwarves with no hands or feet, their eyes and lips sewn shut. They wanted only to be killed. A crystal gave the narrator a faint memory of medical school and playing with a sister by the river in Provista, where she looked different and called the narrator silly poo-poo head. +The party tried to match armour to statues and found fine glass dust in stone cracks, suggesting a diamond resurrection spell or similar. Stoven and Stuart had both been imprisoned twenty years earlier and only recently released by the party and another group. A narrowing dark corridor led to a handleless door with a panel. Beyond it was a prison dome containing a featureless humanoid figure, uncertainly noted as Aglue?, Anemie?, or Valententhide. Pylon runes explained the pylons and mentioned a key or "wheel" to open it. A third door had magical infernal-like writing on the doorknob, reminiscent of Enis's lab. When Dothral tried to open it, he heard, "Come on, boy, we haven't got all day." Inside were five living dwarves with no hands or feet, their eyes and lips sewn shut. They wanted only to be killed. A crystal gave Eliana a faint memory of medical school and playing with a sister by the river in Provista, where she looked different and called Eliana silly poo-poo head. When the party took the crystal to the dwarves, they smiled and passed happily into the afterlife. As the party moved past, Invar's bag of holding opened by itself so something inside could emerge: an Orb of Compassion. The headmaster's office at the magic school had held a note reading "mines beneath the real." The party became overwhelmed with compassion and dropped the orb and crystal. Geldrin found a loose stone hiding a small eye-sized ruby with a spell similar to Knock. Geldrin used the Skull of Iresmun to open the dome slightly. The figure turned toward the hole. It said it was no one, lost, once part of Valententhide, and unsure what it was now. Thomas had put it in the dome and taken what had been there. It explained that the elemental planes were a highway, that a pact had made the world but left too much highway, and that the Vessel of Divinity had made beings into gods, stripping some of that away and leaving lostness behind. It said it could not be allowed to keep the vessel, wanted to help, did not think deception would help, and would answer three questions. -The party asked what would happen if Valententhide were reformed and why everyone thought Elliana was a Harthall. Morgana heard a voice saying the vessel was theirs. Dirk saw Joy, who warned not to trust the figure because it took her mum. A dwarf voice warned that the party's tormentors were coming. Dothral had a vision of his grandfather saying the figure would take his place and telling Geldrin to remove the skull from the dome, then saying "They are all lost" in a voice that was not his. Dirk asked the ancestors what would happen if they let her out and received a positive response. +The party asked what would happen if Valententhide were reformed and why everyone thought Eliana was a Harthall. Morgana heard a voice saying the vessel was theirs. Dirk saw Joy, who warned not to trust the figure because it took her mum. A dwarf voice warned that the party's tormentors were coming. Dothral had a vision of his grandfather saying the figure would take his place and telling Geldrin to remove the skull from the dome, then saying "They are all lost" in a voice that was not his. Dirk asked the ancestors what would happen if they let her out and received a positive response. -The room darkened when Invar said "original." Darkness closed in, stars appeared, and Morgana's Daylight revealed clouds and sunrise at the edge of the spell. A shadowy figure appeared on the far wall. The party opened the dome and let her out. When asked why everyone thought the narrator was a Harthall, she answered, "Because you are." Stoven, Stuart, and Simon arrived, shouting about their stuff being disturbed. Simon was strangely pieced together. They disliked Valententhide and wanted her, but the party refused and argued that their bargain to find Rubyeye had not been fulfilled. Simon communicated with Throngore, who was happy to meet the party and would see them soon. Morgana teleported the party to `[coded]`, a wood with bees, apples, and snow, with a teleport circle made of furs, rugs, and bird poo. Geldrin felt as if he had made it, though not as he would make it; Morgana thought she had placed the memory there but not from her current self. The party went to Morgana's hut at 00:00. Page 257 then starts Day 52, so Day 48 is complete at that point. +The room darkened when Invar said "original." Darkness closed in, stars appeared, and Morgana's Daylight revealed clouds and sunrise at the edge of the spell. A shadowy figure appeared on the far wall. The party opened the dome and let her out. When asked why everyone thought Eliana was a Harthall, she answered, "Because you are." Stoven, Stuart, and Simon arrived, shouting about their stuff being disturbed. Simon was strangely pieced together. They disliked Valententhide and wanted her, but the party refused and argued that their bargain to find Rubyeye had not been fulfilled. Simon communicated with Throngore, who was happy to meet the party and would see them soon. Morgana teleported the party to `[coded]`, a wood with bees, apples, and snow, with a teleport circle made of furs, rugs, and bird poo. Geldrin felt as if he had made it, though not as he would make it; Morgana thought she had placed the memory there but not from her current self. The party went to Morgana's hut at 00:00. Page 257 then starts Day 52, so Day 48 is complete at that point. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Enis, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Elliana Harthall, Ingus, Spindl, Pride, the dwarf High Priest, Enis, Goalmost Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. +People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Enis, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Eliana Hartwall, Ingus, Spindl, Pride, the dwarf High Priest, Enis, Goalmost Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. Groups and factions mentioned include the party, Dunners, goliaths, merfolk, dragonborn, Duhg guards, Verdigrim's people, Verdigrimtown, Ashkielion's goliath claimants, the council in camp, dwarves, the dwarf council, herfolk babies, elemental spirits, ancient race, Grand Towers elves, black dragonborn or Umberous's faction, Infestus's side, two dwarf clans, thirty dwarves who captured Throngore, handless and footless preserved dwarves, gods, elemental-plane powers, tormentors, and another party that helped release prisoners. @@ -80,9 +80,9 @@ Strategic resources and plans mentioned include reinforcements from the capital, # Clues, Mysteries, and Open Threads -Bynx's statements that the narrator was not always green and sometimes reminds him of his sister and Platinum continue the unresolved identity, jade, and sphynx-family threads. +Bynx's statements that Eliana was not always green and sometimes reminds him of his sister and Platinum continue the unresolved identity, jade, and sphynx-family threads. -The possible god-deal to wipe the narrator from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Enis, Joy, Hannah, and the narrator's Harthall identity. +The possible god-deal to wipe Eliana from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Enis, Joy, Hannah, and Eliana's Hartwall identity. The Dunners' uncovered texts, Benu's convalescence, the prophecy of the child's return, and the question of accepting Garadwal as old protector made flesh anew remain active political and religious threads. @@ -104,7 +104,7 @@ The Vessel of Divinity, elemental planes as highway, pacts that created the worl Joy's warning that the figure took her mum conflicts with the ancestors' positive response to freeing it. The consequence of freeing this lost part of Valententhide remains uncertain. -The answer "Because you are" to why everyone thinks the narrator is a Harthall is a direct but unexplained identity confirmation. +The answer "Because you are" to why everyone thinks Eliana is a Harthall is a direct but unexplained identity confirmation. Simon, Stoven, and Stuart still want Valententhide. Simon communicated with Throngore, who promised to meet the party soon. diff --git a/data/4-days-cleaned/day-52.md b/data/4-days-cleaned/day-52.md index cd49c50..1c39b7c 100644 --- a/data/4-days-cleaned/day-52.md +++ b/data/4-days-cleaned/day-52.md @@ -14,13 +14,13 @@ complete: true # Narrative -Day 52 began at Stonedown. Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. A memory showed dragons talking about a beehive being poked and why the dome had been created. Questions arose about the narrator fully regaining memories of being a Harthall. Recovering what was lost would not be easy, because the memories aligned with broader memories tied to the pact with the god of the lost. Dothral saw snippets of the narrator's true form and the need to do something with the J. +Day 52 began at Stonedown. Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. A memory showed dragons talking about a beehive being poked and why the dome had been created. Questions arose about Eliana fully regaining memories of being a Harthall. Recovering what was lost would not be easy, because the memories aligned with broader memories tied to the pact with the god of the lost. Dothral saw snippets of Eliana's true form and the need to do something with the J. The notes state that a price was paid by dragonkind, and it was not taken well by those who remained and still had power. Payment was not asked for because the party had not given her to the goats. The party asked whether looking at the night sky and feeling serene was part of Valententhide. The answer suggested it was. Reuniting that part with her would not completely change Valententhide, but would soften her edges, making her a goddess of destruction again rather than a being who mindlessly murdered people on the road. The party understood the released or protected piece as a small shard of a powerful creature. They asked whether destroying the dome would cancel all pacts. The answer was yes: the pacts were linked to the dome, and if the dome ceased, the pacts would cease. Removing the dome would also release all of the prisons. Geldrin tried to show the shard her sister Bridget by communing with Bridget and opening a pathway to her domain. The party decided they needed to protect the shard, because Valententhide might be able to get her. They discussed an oath of holding elemental and dome energy, and promised to release her regardless. -The party entered the pathway. The walkway stopped partway and turned left, but each member went a different way: Invar forward, Geldrin right, Dotharl left, Elliana up, Dirk down, and Morgana behind. After ten minutes they lost sight of each other. Wind rose and they struck walls. The walls appeared linked in pairs: Invar with Morgana, Geldrin with Dotharl, and Dirk with Elliana. +The party entered the pathway. The walkway stopped partway and turned left, but each member went a different way: Invar forward, Geldrin right, Dotharl left, Eliana up, Dirk down, and Morgana behind. After ten minutes they lost sight of each other. Wind rose and they struck walls. The walls appeared linked in pairs: Invar with Morgana, Geldrin with Dotharl, and Dirk with Eliana. A Knock revealed a line, and a door opened. A cricket-headed humanoid appeared, said they were busy, and asked how long the party wanted to wait. Two minutes was accepted. He also appeared to Dirk and gave the same timing. The notes say, "She is not really yet." The cricket-headed figure gave the party a screwdriver and said he was waiting for Medinner. A bird person was asked to ask Bridget if she was taking visitors. Geldrin placed a red crystal in a divot, then went to Dotharl, where a raven opened the door and said the crystal was for a dwarf. The screwdriver removed a curved blade; it went to Dirk, who found a button where the blade had been. @@ -28,23 +28,23 @@ Invar's room held cages with a cricket and a raven on plinths and a steaming bow Invar tried to feed the raven gruel, but the raven did not want it. He opened the cricket cage, and the cricket jumped onto the bowl and began eating. The raven then became interested. The cricket sang, a door handle clicked behind Invar, and Invar opened the bird cage. The raven flew out to eat the cricket, another door clicked, and Invar opened it. The cricket came through and was named Cedric. Morgana needed a way back; the party asked Cedric to ask Bridget to make a door for Morgana, and Bridget did. -Geldrin asked Medinner for a door, but Medinner said she could not because her show was on. Geldrin asked to see the show, and she let him in. Three silver dragonborn on a screen reenacted Elliana realising Avalina was her mum and putting her in the ground. A woman covered in roots appeared. A robot man or copper dragonborn in plates pretended to be on guard duty, with powder around like snow. After an explosion, another figure came and said, "rise my son," and the robot man got up and walked away. Medinner said to use the broom to get to Dotharl. A wall looked like a stone door with the knob at the top; it rotated but did not open, and rotated to match Geldrin's. +Geldrin asked Medinner for a door, but Medinner said she could not because her show was on. Geldrin asked to see the show, and she let him in. Three silver dragonborn on a screen reenacted Eliana realising Avalina was her mum and putting her in the ground. A woman covered in roots appeared. A robot man or copper dragonborn in plates pretended to be on guard duty, with powder around like snow. After an explosion, another figure came and said, "rise my son," and the robot man got up and walked away. Medinner said to use the broom to get to Dotharl. A wall looked like a stone door with the knob at the top; it rotated but did not open, and rotated to match Geldrin's. -Morgana returned through the door. Another room held plinths with playing cards, a bowl, and dice. The party rolled dice, drew cards in order, shuffled and dealt six piles of eight cards, and played magic poker. Morgana trick-dealt a good hand. Twenty cricket/raven gold coins appeared. The gruel tasted bad. Further dice rolls moved Geldrin to a chessboard square twenty squares aside, then Dirk to the far side, with lights appearing on the board. Morgana threw gruel off the platform; Cedric caught and ate it like ambrosia. Bridget would see the party but would not tell them how to get there. Geldrin and Dirk dealt with orbs, `[unclear: geesie?]`, and a scythe. When the objects were pushed together, the floor disappeared and they landed with Invar and Elliana. +Morgana returned through the door. Another room held plinths with playing cards, a bowl, and dice. The party rolled dice, drew cards in order, shuffled and dealt six piles of eight cards, and played magic poker. Morgana trick-dealt a good hand. Twenty cricket/raven gold coins appeared. The gruel tasted bad. Further dice rolls moved Geldrin to a chessboard square twenty squares aside, then Dirk to the far side, with lights appearing on the board. Morgana threw gruel off the platform; Cedric caught and ate it like ambrosia. Bridget would see the party but would not tell them how to get there. Geldrin and Dirk dealt with orbs, `[unclear: geesie?]`, and a scythe. When the objects were pushed together, the floor disappeared and they landed with Invar and Eliana. Medinner told Dotharl the party needed to go soon and stepped off the edge. An orb was a present from Bridget and needed to be kept until they did not need it. Cedric and Medinner were Bridget's closest followers and could speak more freely and directly than Bridget. Bridget needed a favour. The party was told to remember that Bridget had given them a present when they were about to feel angry, and to remember how they had honoured her. -The party appeared back where they had started, with a door behind them. Beyond it was darker sky and no platform, with a bouncy-castle feeling underfoot. They realised they could move by intent. Invar and Dotharl sped toward a storm; Dirk decided to move where they needed to go; Elliana went to Dirk; Geldrin went to Invar and Dotharl. Dotharl heard a voice in his head saying he had abandoned them, left them behind, and that mortals were inferior. The voice said he could set Dotharl free if Dotharl asked him to be set free. +The party appeared back where they had started, with a door behind them. Beyond it was darker sky and no platform, with a bouncy-castle feeling underfoot. They realised they could move by intent. Invar and Dotharl sped toward a storm; Dirk decided to move where they needed to go; Eliana went to Dirk; Geldrin went to Invar and Dotharl. Dotharl heard a voice in his head saying he had abandoned them, left them behind, and that mortals were inferior. The voice said he could set Dotharl free if Dotharl asked him to be set free. Dirk imagined a cloud tent house and Bridget on a throne, and the images merged with other imaginations. Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. Bridget wished to be honoured a second time. She said the gods had agreed not to interfere unless asked, but some kin had interfered greatly. Her kin was trapped and wished to be freed, perhaps Dotharl's granddad. Part of Dotharl was Bridget. The notes separate Dotharl's dad being trapped, his granddad being lost, and Squeall. Bridget liked freedom and trickery. Her husband liked lucky fortune, weather, change, and loss. Whatever her followers needed, she could get within reason. -The party's questions included whether the trapped being was in Snowsoreen, the order city, or trapped in the dome as order from all the chaos outside it. Bridget said there were many paths and nothing was written in stone. The party had chosen to be constrained to the walkway, though they could have walked off, because of fear of the unknown. Bridget named choices for each party member. The narrator could keep the identity they had now or the one they once had. Dotharl could keep his humanity or rejoin Bridget's realm. Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. Invar, a man of faith who was only beginning to learn it, needed to give him a crystal, the one Geldrin lost, and use it if they returned to his city. Dirk was on the path to free his people; more steps and friends would be needed, not only spirits, and he should not forget the fishing expedition. Morgana's choice to help the party carried great cost, and those who sought to train her also came at great cost. +The party's questions included whether the trapped being was in Snowsoreen, the order city, or trapped in the dome as order from all the chaos outside it. Bridget said there were many paths and nothing was written in stone. The party had chosen to be constrained to the walkway, though they could have walked off, because of fear of the unknown. Bridget named choices for each party member. Eliana could keep the identity they had now or the one they once had. Dotharl could keep his humanity or rejoin Bridget's realm. Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. Invar, a man of faith who was only beginning to learn it, needed to give him a crystal, the one Geldrin lost, and use it if they returned to his city. Dirk was on the path to free his people; more steps and friends would be needed, not only spirits, and he should not forget the fishing expedition. Morgana's choice to help the party carried great cost, and those who sought to train her also came at great cost. Page 263 then starts Day 53, so Day 52 is complete before the party goes onward to the Bridget / Domain events that follow. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dothral / Dotharl, Dothral's father, Aneurascarle, Squeall, Valententhide, Bridget, Geldrin, Invar, Elliana, Dirk, Morgana, Medinner, Cedric, Avalina, Dotharl's granddad, Bridget's husband, Brownings, and the narrator's former and current identities. +People and name-like figures mentioned include Dothral / Dotharl, Dothral's father, Aneurascarle, Squeall, Valententhide, Bridget, Geldrin, Invar, Eliana, Dirk, Morgana, Medinner, Cedric, Avalina, Dotharl's granddad, Bridget's husband, Brownings, and Eliana's former and current identities. Groups and factions mentioned include the party, dragons, dragonkind, goats, gods, Bridget's kin, Bridget's followers, silver dragonborn in Medinner's show, mortals, Brownings, Dirk's spirits and people, and those who seek to train Morgana. @@ -58,13 +58,13 @@ Items, documents, and physical resources mentioned include the dome, pacts linke Spells, visions, and magical effects mentioned include memory retrieval about being Harthall, true-form snippets, opening a pathway to Bridget's domain, Knock, magically linked rooms / walls, Bridget making a door for Morgana, Medinner's reenactment show, movement by intent in Bridget's realm, telepathic or intrusive voice to Dotharl, Bridget's ability to take and smash the orb, and divinely framed choices for party members. -Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridget's offer to take gold Valententhide, the trapped kin's requested freedom, Dotharl's humanity choice, the narrator's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. +Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridget's offer to take gold Valententhide, the trapped kin's requested freedom, Dotharl's humanity choice, Eliana's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. # Clues, Mysteries, and Open Threads Dothral's possible father Aneurascarle, his status as an Excellency, and Squeall as god of the lost / grandfather remain unresolved family and divinity clues. -The pact with the god of the lost appears tied to the narrator's lost Harthall memories and true form. The J mentioned in Dothral's snippets remains unexplained. +The pact with the god of the lost appears tied to Eliana's lost Harthall memories and true form. The J mentioned in Dothral's snippets remains unexplained. Dragonkind paid a price for the dome or related pact, and the remaining dragons still have power. The exact price and consequences remain unresolved. @@ -74,12 +74,12 @@ Destroying the dome would cancel pacts and release all prisons, creating a direc Bridget's domain tests appear to reward honouring her, but the rules of Cedric, Medinner, the raven, gruel, cards, dice, chessboard, orbs, `[unclear: geesie?]`, and scythe remain only partly understood. -Medinner's show reenacted Elliana, Avalina, a burial, a rooted woman, and a robot or copper dragonborn being raised after an explosion. The meaning and reliability of this reenactment remain open. +Medinner's show reenacted Eliana, Avalina, a burial, a rooted woman, and a robot or copper dragonborn being raised after an explosion. The meaning and reliability of this reenactment remain open. The voice to Dotharl that disparaged mortals and offered freedom if asked may be Bridget's trapped kin, Dotharl's father, or another bound entity; its identity and trustworthiness remain unresolved. Bridget's kin wishes to be freed, while part of Dotharl is Bridget and his father is trapped / granddad lost. Dotharl's choice between humanity and rejoining Bridget's realm remains future-facing. -The narrator must choose between the current identity and the one they once had. This directly continues the Elliana Harthall identity thread. +Eliana must choose between the current identity and the one they once had. This directly continues Eliana Hartwall identity thread. Geldrin's offered power, the Brownings, Invar's crystal task, Dirk's path to free his people, and Morgana's costly aid all remain active personal quest hooks. diff --git a/data/4-days-cleaned/day-53.md b/data/4-days-cleaned/day-53.md index 709cc3f..c9f55bb 100644 --- a/data/4-days-cleaned/day-53.md +++ b/data/4-days-cleaned/day-53.md @@ -13,7 +13,7 @@ complete: true # Narrative -Day 53 began in Bridget's domain. Bridget said the party's friend intrigued her and asked why they helped one another. She warned that a dragon she had banished was coming back and that there was only one way large enough for that return. She nodded at Invar and said the dragon would act soon, having taken the opportunity to get more hands that channelled the power of the silver. Bridget said the information needed for the party's decision was now available. The narrator needed to understand, "I am Elliana and Elliana. I can't be both." +Day 53 began in Bridget's domain. Bridget said the party's friend intrigued her and asked why they helped one another. She warned that a dragon she had banished was coming back and that there was only one way large enough for that return. She nodded at Invar and said the dragon would act soon, having taken the opportunity to get more hands that channelled the power of the silver. Bridget said the information needed for the party's decision was now available. Eliana needed to understand, "I am Eliana and Eliana. I can't be both." Bridget asked where the party wanted to go, and they chose the dwarf city by Papa Illmarne's dome. When they appeared there, the High Priest King said his job was to keep Papa Illmarne's dome. Two dwarves by the dome said the party were wanted criminals for liberating a prisoner. @@ -35,7 +35,7 @@ At 12:00 the army moved. Morgana flew ahead to notify the town. The party noted # People, Factions, and Places Mentioned -People and name-like figures mentioned include Bridget, Invar, Elliana / Elliana Harthall, Papa Illmarne, the High Priest King, Anya Blakedurn, Rubyeye, Wrath, Perodita, Geldrin, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Calthid Metalshaper, Garadwal, Thamia, Noxia, Icefang, Papa / Papa's Dome, Dirk, Morgana, the promoted Quartermaster, Tendruts, and the lone dwarf / llamia. +People and name-like figures mentioned include Bridget, Invar, Eliana / Eliana Hartwall, Papa Illmarne, the High Priest King, Anya Blakedurn, Rubyeye, Wrath, Perodita, Geldrin, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Calthid Metalshaper, Garadwal, Thamia, Noxia, Icefang, Papa / Papa's Dome, Dirk, Morgana, the promoted Quartermaster, Tendruts, and the lone dwarf / llamia. Groups and factions mentioned include the party, Bridget's domain and kin, dwarves, the Dwarven kingdoms, the council, Blakedurn's family, guilds, dragonborn, automatons, gnomes, black dragons, green dragons, blue dragons, goliaths, ratmen, ebony dwarves, the army, and city envoys. @@ -51,7 +51,7 @@ Strategic resources and obligations include Blakedurn's bargain to help defeat P Bridget's warning that a banished dragon is returning through a route involving Invar and silver remains an urgent clue. -The narrator's identity problem is sharpened by Bridget's statement that the narrator must understand being "Elliana and Elliana" but cannot be both. +Eliana's identity problem is sharpened by Bridget's statement that Eliana must understand being "Eliana and Eliana" but cannot be both. Papa Illmarne's dome has a hole and cannot be repaired without pylons. Papa's increased freedom is being used to break the dwarves as revenge. diff --git a/data/4-days-cleaned/day-56.md b/data/4-days-cleaned/day-56.md index 1053837..7ef2efd 100644 --- a/data/4-days-cleaned/day-56.md +++ b/data/4-days-cleaned/day-56.md @@ -20,13 +20,13 @@ Day 56 began at the Crusty Beard in Magstein. The party had Temporary Wisdom -2. Dotharl saw Valententhide reflected in Invar's armour. The party left the room and found many doors and two possible guards. A tapestry showed five wizards and an invisible lady who was invisible in the painting too. She looked like Hannah Joy. Dotharl could not see her because he did not know who she was, or because he knew she existed. A creature said she was new. The party were expected. There were twenty-seven such beings, all part of Humility, and they had disarmed the traps. In a spherical room with four doors, an elf stood in the middle: the same elf Geldrin had seen while teleporting. The Humility fragments currently controlled the control room but were not using it; they had taken it for the party. They were all parts of Thomas, removed so he could become Envy, and could not be fully recombined without the large weak part because many parts had died. They thanked the party for freeing him from the cart on the dwarf bridge and led them to the control room. -The control room was guarded by two automatons and held eight statues. Salana's runes were intact. Garadwal and Valententhide's runes were unlit, while the rest flickered. Monks meandered through the room. Dotharl looked at the Valententhide statue, thought he saw only a statue, and was attacked by it. Geldrin investigated and took damage. Runes lit up around the statue saying, "leave here." Merocole had a tiny dwarf face carved into his mouth. Geldrin fixed the prison runes and closed them all except possibly `[unclear: Keakis?]`, where his fixing mark carried over and worked. Two creatures brought a small box as a present. Inside was a black shard. They called it the elemental of Void and wanted the party to put him where he belonged. The narrator brought a gift: the Frost pole ball, with a desire to switch out the frost elementals. The party suspected Browning was running events there. Dotharl interfered with the symbols on Aneurascarle's prison. +The control room was guarded by two automatons and held eight statues. Salana's runes were intact. Garadwal and Valententhide's runes were unlit, while the rest flickered. Monks meandered through the room. Dotharl looked at the Valententhide statue, thought he saw only a statue, and was attacked by it. Geldrin investigated and took damage. Runes lit up around the statue saying, "leave here." Merocole had a tiny dwarf face carved into his mouth. Geldrin fixed the prison runes and closed them all except possibly `[unclear: Keakis?]`, where his fixing mark carried over and worked. Two creatures brought a small box as a present. Inside was a black shard. They called it the elemental of Void and wanted the party to put him where he belonged. Eliana brought a gift: the Frost pole ball, with a desire to switch out the frost elementals. The party suspected Browning was running events there. Dotharl interfered with the symbols on Aneurascarle's prison. -Bynx told Dirk his brothers were coming and to close the door. When the narrator shut it, purple bears appeared. Four Juticars came through tears: Scumbleduck, the rubber-eye figure, a silver dragonborn, and another. A robot Juticar addressed "Justicar Geldrin," saying Geldrin seemed to have forgotten his mission and that the party were not as compliant as they should be. Geldrin had been obeying orders until the worm was removed; everything up to that point had happened as foretold, and the Juticars believed he had been compromised. They spoke of chaotic tendencies visible in the prognostic machine. +Bynx told Dirk his brothers were coming and to close the door. When Eliana shut it, purple bears appeared. Four Juticars came through tears: Scumbleduck, the rubber-eye figure, a silver dragonborn, and another. A robot Juticar addressed "Justicar Geldrin," saying Geldrin seemed to have forgotten his mission and that the party were not as compliant as they should be. Geldrin had been obeying orders until the worm was removed; everything up to that point had happened as foretold, and the Juticars believed he had been compromised. They spoke of chaotic tendencies visible in the prognostic machine. The wizards altered the map, saying they were preparing for fuel incoming. The map appeared recently reconfigured for another purpose. They activated the table, and a giant bearded head, Browning, appeared above it chanting. The party countered the spell, but Browning finished with, "and the flight of the gold ends." A dragonborn, elf, and dwarf teleported away, leaving a gnome behind. She refused to speak until Morgana dispelled magic and she recovered. She was a treasure hunter from Great Farnworth, remembered a voyage across the sea, did not know the year, and remembered place details both before and after the dome. A device nearby was a remote to activate a shield, with no apparent way to reverse it, and it should not be far from the party. -The replacements thought the narrator had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Harthall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers. +The replacements thought Eliana had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Harthall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers. The party explored nearby rooms. One dusty room held a circle in the middle that looked dragged toward the door and taken to the teleport circle. Another held an old man sleeping. Dirk found a box under his pillow. A dormitory lay opposite, and another bedroom held books on alloys, travel, and botany. Dirk searched under another pillow and found a thorny brush or briar; Morgana kept it. The box put Geldrin and Morgana to sleep. The mage woke thinking it was 3740 AC and that Dirk looked like a Thrunglagen. He searched for his spellbook, which was found in his room. He was Humorous, an old Rivermeet headmaster. The party opened the teleport-room door and found a Barrier trapping Trixus, Benu, Garadwal, and Bynx. Temporary Wisdom was removed. @@ -36,7 +36,7 @@ Dirk asked his ancestors whether the party could defeat Browning as they were. I The party decided to go to Brass City to free Cardinal via Infestus, using the piece of coal at 15:00. `[uncertain: Antherous?]` came through a portal to them. They arrived on a plateau with dwarven construction, a purple sky, a ghost-town feeling, and a small dragonborn population in the centre. A large stone doorway in the market square was covered in runes. The rules promised no harm if obeyed: no Bluescale was to come to harm except passive self-defence, transactions and deals had to be honest with truth as currency, and the party could not disclose Bluescale's location or the archway's location. They went through the portal. Guards took them to Infestus. In a museum, they saw a curiosity from Keep Rememberence. A story said the man had not laughed so much in a long time, killed "the bitch," returned his first-born son's skull, and killed the son who slept with "the bitch." -Infestus wanted to pay the party for their good deeds and what they had done for him. A guard took them to his favourite pub, the Great Infestus, where they ate. A red dragonborn named Ember entered without surprising the patrons. Ember offered to show them around town and asked whether they had been to a dragon city. He wanted a favour if they returned: if they saw any red dragons or dragonborn, they should tell them Ember was looking for them. He believed the Reds were almost extinct and offered 1,000 gp for the promise. He also said the narrator did not smell right and smelled of elf. The party listed options: Jeroll's ode for Geldrin and a charged shield crystal, help with bad elementals to bring the dome down, something to bolster the dome, help releasing Harthall or killing Wrath, a permanent nonattack deal, and getting to Brass City. They then returned to Infestus. +Infestus wanted to pay the party for their good deeds and what they had done for him. A guard took them to his favourite pub, the Great Infestus, where they ate. A red dragonborn named Ember entered without surprising the patrons. Ember offered to show them around town and asked whether they had been to a dragon city. He wanted a favour if they returned: if they saw any red dragons or dragonborn, they should tell them Ember was looking for them. He believed the Reds were almost extinct and offered 1,000 gp for the promise. He also said Eliana did not smell right and smelled of elf. The party listed options: Jeroll's ode for Geldrin and a charged shield crystal, help with bad elementals to bring the dome down, something to bolster the dome, help releasing Harthall or killing Wrath, a permanent nonattack deal, and getting to Brass City. They then returned to Infestus. # People, Factions, and Places Mentioned @@ -78,4 +78,4 @@ Cardinal is in the Brass City / Brass dome with air elementals, while Rubyeye is Bluescale's rules, truth-currency, protected location, and archway secrecy introduce a new constrained diplomatic space. -Ember's search for red dragons or dragonborn and the narrator smelling of elf remain active hooks tied to dragon politics and identity. +Ember's search for red dragons or dragonborn and Eliana smelling of elf remain active hooks tied to dragon politics and identity. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md index f435327..1dfaae2 100644 --- a/data/4-days-cleaned/day-57.md +++ b/data/4-days-cleaned/day-57.md @@ -62,17 +62,17 @@ The next space was a thriving, decadent Goliath throne room. Lion-headdress rock When the moon door reopened, it showed a black sky and crystal surface changed to the moon, then Brass City with a massive stone table and purple rock men missing an arm and head. The dragon door shifted to Pinesprings with a green/yellow flash, chatter, crying, and a baby dragonborn. Geldrin entered through the moon door and found Tresmon's body incomplete. A salamander expected a tabaxi and spoke of facets that gleam in the sun, trying to get light to go in but not out. Geldrin found where a shard had come from and put it back, causing all four doors to open safely. Andy saw the moment after the fight with the Mother: a dark-skinned woman running, with a tree behind her. He charged through a stone door. The wave door led to mother-of-pearl walls, a palace, two mermen, a pool, and the City of Aquarius, where Keepers of the Pact were welcome because Lord Hydram said they could come. The party concluded the doors were memories of promises or deeds, possibly distractions. -The dragon door smelled of the sword and led to Provinta, a plateau town about twenty years earlier. The party came out four doors down from the narrator's house, and Haze led them toward the house, following the same baby crying. The narrator's mother saw a box from Everchard, and the family happily brought it in. Morgana said the Chorus made the narrator. At 1 AM, the notes exclaim "Elluin Hartwall!" The sword was in the narrator's house, inside the box with cloths. Morgana found another piece of black thread; the Chorus's eyes and mouth had been sewn shut with black thread. In the town square, a Founder's Day poster showed Bleakstorm and a Geldrin look-alike who was not Geldrin. It had been sent by sending stone and dated 17th March 991, which was not Founding Day. Bleakstorm was in the town hall with a freshly carved ice sculpture of an auroch. He could take them back to Brass City but wanted a personal favour: save him, just him. As the first man, he wanted to know whether Icefang's spirit was still present. It was, because Icefang died in the dome. Bleakstorm wanted the party to free Icefang's spirit. He clapped and sent them back to Brass City's plush throne room, now with only three wall pictures. The party put the sword back into its statue, fixing the cracks. +The dragon door smelled of the sword and led to Provista, a plateau town about twenty years earlier. The party came out four doors down from Eliana's house, and Haze led them toward the house, following the same baby crying. Eliana's mother saw a box from Everchard, and the family happily brought it in. Morgana said the Chorus made Eliana. At 1 AM, the notes exclaim "Eliana Hartwall!" The sword was in Eliana's house, inside the box with cloths. Morgana found another piece of black thread; the Chorus's eyes and mouth had been sewn shut with black thread. In the town square, a Founder's Day poster showed Bleakstorm and a Geldrin look-alike who was not Geldrin. It had been sent by sending stone and dated 17th March 991, which was not Founding Day. Bleakstorm was in the town hall with a freshly carved ice sculpture of an auroch. He could take them back to Brass City but wanted a personal favour: save him, just him. As the first man, he wanted to know whether Icefang's spirit was still present. It was, because Icefang died in the dome. Bleakstorm wanted the party to free Icefang's spirit. He clapped and sent them back to Brass City's plush throne room, now with only three wall pictures. The party put the sword back into its statue, fixing the cracks. Bynx called on Trixus to ask why they were fixing the statues. Trixus said the statues were "the Council." The party next sought the necklace. Haze carried them back to the throne room and an air picture. Dothurl looked different and felt stronger. Haze led them to the normal-plane statue room and through a door to a jewellery box. A tabaxi playing piano wore a necklace called "Drinker beads of wine." The party pickpocketed it, and she turned over a five-minute hourglass. In a theatre room they found more false necklaces. Ruby eyes glittered with "useless presents." They eventually found the real necklace on a coat peg, dispelled invisibility, and made it real instead of stone. Their checklist now had the bowl, necklace, and sword checked, with tongs, coat, and a dragonborn-tail crouched fake remaining. After returning the necklace, it melded to the statue while still remaining a necklace. -For the offering bowl, the room changed again, leaving two paintings and moving the candelabra to the ceiling. Geldrin touched a painting, disappeared, and ended up shrunken in the narrator's waterskin until school biggening juice restored him. Dothurl activated the painting and the party entered a replica throne room with paintings of a vortex or whirlpool, tropical fish under tropical sea, an icy swamp lake, and a calm still lake. Dirk spoke Aquan to Globule in the whirlpool. Globule said Noxia trapped him because he worked for "Him"; when asked who, he said, "Him, Hydram, then Noxia." "Him" was forgotten more than lost, and Globule had no arms or legs. +For the offering bowl, the room changed again, leaving two paintings and moving the candelabra to the ceiling. Geldrin touched a painting, disappeared, and ended up shrunken in Eliana's waterskin until school biggening juice restored him. Dothurl activated the painting and the party entered a replica throne room with paintings of a vortex or whirlpool, tropical fish under tropical sea, an icy swamp lake, and a calm still lake. Dirk spoke Aquan to Globule in the whirlpool. Globule said Noxia trapped him because he worked for "Him"; when asked who, he said, "Him, Hydram, then Noxia." "Him" was forgotten more than lost, and Globule had no arms or legs. Behind the throne, two jellyfish-headed people guarded the bowl and said the party could not enter or leave because Noxia had issued a death warrant against them. The party fought and killed them. The room held a mother-of-pearl and coral sphynx throne. A painting with tropical fish showed a large closed clam, a shipwreck, and a fish man with the key to the prison. The clam called the whirlpool a bad prisoner. Invar and Dothurl entered another painting and found what seemed to be Morgana's hut near dead Everchard trees, all boarded up and surrounded by birds. Morgana entered, smelled salt, and was called "Mother" by a bird. The notes wonder whether "he" who was gone amid devastation was a dragon, see-through, or Salanus. Inside the hut were a white rose, a sea conch with a mouthpiece, and a wooden offering bowl like the one sought. Morgana blew the conch and released a watery genie-like entity: Myriad one, Lord of the High Waters, seeker of truth for Hydrus. He offered two wishes, one of which had to free him, and said he needed to present the bowl to the clam. The party did not think he was telling the truth. They took the items and birds. `[uncertain: Iachdais]` told them in Common that the other birds were with him; his name was Mourning. Mourning had been imprisoned for creating funerals and killing people who cut down trees or killed rabbits. Morgana had "created" him and had taken a while to come get him. The clam said he did not want the bowl and that Myriad was his friend, true but hiding things. The clam wanted freedom, and only a friend whose name he knew but would not give could free him. -The party left the paintings and explored other doors: a mother-of-pearl dragon door that caused awe, dread, and reverence; a whirlwind elemental door; an oxen-yoke door for an auroch; a room of shells with a porcelain or crystalline salt dragon not recognized as any known dragon species; a smaller quartz dragon like Salanus? that shattered and was reassembled with many tiny cuts; and storage paintings of people the party knew depicting their deaths. Dothurl entered an orb door and found a familiar domed room with a slight breeze and a small mechanical bird. `[uncertain: Eroll?]` said it was him and that he had been trapped there while looking for Ruby Eye from the Goliath tower. The Eroll in Geldrin's bag and the room Eroll were identical. Dothurl touched the room Eroll, cracks spread, the breeze stopped, and psychic damage hurt the narrator until the door was repaired. +The party left the paintings and explored other doors: a mother-of-pearl dragon door that caused awe, dread, and reverence; a whirlwind elemental door; an oxen-yoke door for an auroch; a room of shells with a porcelain or crystalline salt dragon not recognized as any known dragon species; a smaller quartz dragon like Salanus? that shattered and was reassembled with many tiny cuts; and storage paintings of people the party knew depicting their deaths. Dothurl entered an orb door and found a familiar domed room with a slight breeze and a small mechanical bird. `[uncertain: Eroll?]` said it was him and that he had been trapped there while looking for Ruby Eye from the Goliath tower. The Eroll in Geldrin's bag and the room Eroll were identical. Dothurl touched the room Eroll, cracks spread, the breeze stopped, and psychic damage hurt Eliana until the door was repaired. The yoke door held an offering bowl in a wobbly glass case on a plinth. Morgana removed the case but smashed it, and the plinth broke when the party tried to replace the bowl. Invar created a new case and fixed the plinth. Another rawhide-inlaid door marked the bowl as a tabaxi prayer to Igraine. Beyond it were identical roots on plinths. Invar's attempts to identify them produced anxiety and visions: a voice said, "A sacrifice & I will let you have it," and a later underground scorpion vision said, "The entrance shows the way, a pain you will take with you." The party tried filling the bowl with booze and praying, but received no answer. @@ -84,29 +84,29 @@ The "Submarine" door led to Hydran's realm. Dirk entered the lake painting and c Beyond the Submarine door was a wall of water, a barnacle door with a rusted handle, and a watchful starfish. A chamber held shark statues jumping over two dying corpses and a parchment contract promising to save babies' spirits from the realm of darkness. The party learned Kesha is Noxia's sister. A merlady appeared, said the party were keepers as she was, and that Hydran said they needed help. She advised that when in the dark plane they should steer off the beaten path. Hydran would get the bowl if the party agreed to sign the Pact; Lord Hydran accepted them, identified himself as patron of travel, and offered information and Pact membership. The merlady agreed to revive the jellyfish people, and the party pushed them back toward the painting room, which had gone dark. -The merlady showed them carvings. One showed a man with a staff and a hand, like Envi, described as the one who captured their allies. He was free: his body had awakened in his laboratory, his spirit had reached his base and occupied a body there, and he had gained power and control over the crystals. His goal was uncertain, and he had not been near his other parts. Another warning showed a creature made of living flames, with a small six-armed creature the party had killed looking up at him. This was the creature who wished to "pull a Noxia." He was a prince, in the party's next location, and they were about to walk into his house; they wished to make him a god. Noxia had replaced someone, but Kesha had not. A later picture showed Morgana, Igraine with a knife and birds, standing on the bones of a small dragon. It had not happened yet and was not a picture of murder or the weapon. The notes connect this to reincarnation and the narrator's bones, asking why the narrator does not remember properly if Morgana reincarnated them, whether because of the worm or something else. A final room held the bowl on a plinth and a carving of Noxia wounded by an arrow, with two figures at her sides; where earlier images showed Sierra's dogs, this one showed the six party members. Invar took the bowl. When asked where the vessel that took down the god was, the merlady sent them back and briefly seemed to turn into a hammerhead shark. Back in the throne room, only the fire painting remained, the chandelier was fully ablaze, and a dark inky shadow covered the floor. Globule stayed with the party but Nare thought he was dangerous. Globule wanted to take the baby pokeballs to a river, then stayed with the fountain elementals while the party replaced the bowl. +The merlady showed them carvings. One showed a man with a staff and a hand, like Envi, described as the one who captured their allies. He was free: his body had awakened in his laboratory, his spirit had reached his base and occupied a body there, and he had gained power and control over the crystals. His goal was uncertain, and he had not been near his other parts. Another warning showed a creature made of living flames, with a small six-armed creature the party had killed looking up at him. This was the creature who wished to "pull a Noxia." He was a prince, in the party's next location, and they were about to walk into his house; they wished to make him a god. Noxia had replaced someone, but Kesha had not. A later picture showed Morgana, Igraine with a knife and birds, standing on the bones of a small dragon. It had not happened yet and was not a picture of murder or the weapon. The notes connect this to reincarnation and Eliana's bones, asking why Eliana does not remember properly if Morgana reincarnated them, whether because of the worm or something else. A final room held the bowl on a plinth and a carving of Noxia wounded by an arrow, with two figures at her sides; where earlier images showed Sierra's dogs, this one showed the six party members. Invar took the bowl. When asked where the vessel that took down the god was, the merlady sent them back and briefly seemed to turn into a hammerhead shark. Back in the throne room, only the fire painting remained, the chandelier was fully ablaze, and a dark inky shadow covered the floor. Globule stayed with the party but Nare thought he was dangerous. Globule wanted to take the baby pokeballs to a river, then stayed with the fountain elementals while the party replaced the bowl. The party next pursued the tongs through the fire painting. Invar felt his presence to `[uncertain: Stolchar]` lessen. They appeared in a fire-realm throne room with broken doors and a missing throne. Haze disliked it because he could not smell Sierra, suggesting it might be someone else's realm. Six identical statues stood below. Red-skinned, small-horned beings guarded doors and served Sultan Azar Nuri. The Sultan, a fifty-foot-tall horned being in a turban, disliked Invar's symbol to `[uncertain: Stolchar]`. Envi worked for him and had Tresmun's arm. Geldrin told Azar Nuri to tell Envi to bring it to him; Azar said if Geldrin did, Envi would bring it. Azar Nuri lacked servants on the party's plane and struggled to move minions there. He cared only about retaking his power. He wanted the party to open passageways and continue fixing the crystal body being carved for him. Geldrin tried to promise to make him god of death. The bargain recorded was: tongs now; gold when the crystal is complete; force the god of death to make a mistake and appear on the party's plane; and open a passageway for Azar Nuri's envoys to come to the party's plane. Azar threw them the tongs, and they left. The fire realm held other rooms: a meeting room where an imp sold a turban and deck of cards, smoke that could become a passageway to "her" via a candle-and-incense wall hanging and took travellers back in time before guards were there, a well-stocked unused forge where Invar made a goblet for `[uncertain: Stolchar]` and received a refined goblet back, a blank-wall room with thread, a lectern, bowl, stick, and candlestick, and a room with a quiver, leather armour, bow, and antelope or gazelle skin on the floor. The party traded 15A, rope, and a tin of white paint for the imp's cards and turban. They changed the tapestry, lit the candle and incense, and the tapestry came alive. -The tapestry led to a lively past version of Brass City full of blue dragonborn and dragons. A market trader selling exotic fruits called the narrator a silver [unclear] colour, though they still looked green. The year of the coins was 2842 AP, and a cat wore a crown the party recognized. In the marketplace and gardens, things looked like the current day, and Morgana thought only twenty years had passed and felt closer to Igraine. The notes also record year 3480, when the tabaxi were ousted from the Brass, approximately 1050 years earlier. An elemental confirmed they were on the Mortal plane and needed an invitation to enter the palace. They asked to see "Gleams in the Firelight," one of the statues, and were allowed in. A Qunien-looking woman burst in saying she had finished the marketplace tapestry they had come through; she had enchanted it and had also been working on paintings. She was a dragon or serpent and needed objects from the party's time to return them, so they gave Dirk's Brass City glass beads and a scrap of the narrator's skirt. She cast a spell on another tapestry of the home hallway with the statues, saying it was a vision she had received since Igraine came to see her. Bynx's book was missing a page, apparently the page about her, which she had ripped out. The party returned and put the tongs back, leaving only cat and light/cat matters missing. +The tapestry led to a lively past version of Brass City full of blue dragonborn and dragons. A market trader selling exotic fruits called Eliana a silver [unclear] colour, though they still looked green. The year of the coins was 2842 AP, and a cat wore a crown the party recognized. In the marketplace and gardens, things looked like the current day, and Morgana thought only twenty years had passed and felt closer to Igraine. The notes also record year 3480, when the tabaxi were ousted from the Brass, approximately 1050 years earlier. An elemental confirmed they were on the Mortal plane and needed an invitation to enter the palace. They asked to see "Gleams in the Firelight," one of the statues, and were allowed in. A Qunien-looking woman burst in saying she had finished the marketplace tapestry they had come through; she had enchanted it and had also been working on paintings. She was a dragon or serpent and needed objects from the party's time to return them, so they gave Dirk's Brass City glass beads and a scrap of Eliana's skirt. She cast a spell on another tapestry of the home hallway with the statues, saying it was a vision she had received since Igraine came to see her. Bynx's book was missing a page, apparently the page about her, which she had ripped out. The party returned and put the tongs back, leaving only cat and light/cat matters missing. The party chose the Light realm. Bynx lowered the chandelier and took them through to an exact replica room with a platinum throne and doors to each realm, including Attabone and Igraine. Through Igraine's door lay a flat, vast field of buttercups and daisies where Morgana had often been. She spoke with plants. It may have been an afterlife area; many people had once been there, but not for ages. A ladybird said the cat was there and gave a clue: Morgana needed to channel her power, seek more of them, and talk and play with them. Morgana located the cat about a day away, connected through animals and birds, and brought it back. Haze said it smelled like the needed item but seemed too easy. The cat was alive, or not certain; then it was dead. Morgana asked the bird to teach her this again, and it agreed. She named it Bruce. -The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but the narrator could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from the narrator's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. The leader's father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. +The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but Eliana could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from Eliana's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. The leader's father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. -Attabre said the narrator's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. The narrator was not only Icefang's daughter but Attabre's too. The narrator was killed because they got in the way, being more strong-willed; Kaylara accepted the spells, but the narrator did not, so they killed the narrator. Icefang got Kaylara out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. +Attabre said Eliana's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. Eliana was not only Icefang's daughter but Attabre's too. Eliana was killed because they got in the way, being more strong-willed; Kaylara accepted the spells, but Eliana did not, so they killed Eliana. Icefang got Kaylara out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. -The choice to bring down the dome remained the party's. Attabre said the gods would not mind except those who benefited, and bringing down the dome would weaken Throngore. Kasha had been allowed to get certain souls through the Barrier, the merbabies, to help her sister. The party had been good Envoys. Bynx would need to decide whether to stay and build the Goliath race or return to him. Geldrin asked how to leave his pact with Kasha to get Guardwell's soul. Attabre said Kasha was not bound like the gods, but she would do everything she could, which was limited on the Mortal realm but strong in her realm. Attabre let the party rest, and they returned to the Mortal realm. The death realm became a portal and the light disappeared. The party had to leave the safety of the city in the death realm and free the merfolk babies. Geldrin put part of Haze into Errol to help find the tail. Timon abseiled into the portal, Morgana became an eagle to explore, and Dirk asked the ancestors whether they would land safely. The ancestors said Whel, Elliana, and Dotharl should jump straight in, followed by everyone else. +The choice to bring down the dome remained the party's. Attabre said the gods would not mind except those who benefited, and bringing down the dome would weaken Throngore. Kasha had been allowed to get certain souls through the Barrier, the merbabies, to help her sister. The party had been good Envoys. Bynx would need to decide whether to stay and build the Goliath race or return to him. Geldrin asked how to leave his pact with Kasha to get Guardwell's soul. Attabre said Kasha was not bound like the gods, but she would do everything she could, which was limited on the Mortal realm but strong in her realm. Attabre let the party rest, and they returned to the Mortal realm. The death realm became a portal and the light disappeared. The party had to leave the safety of the city in the death realm and free the merfolk babies. Geldrin put part of Haze into Errol to help find the tail. Timon abseiled into the portal, Morgana became an eagle to explore, and Dirk asked the ancestors whether they would land safely. The ancestors said Whel, Eliana, and Dotharl should jump straight in, followed by everyone else. -They landed outside a hole in another throne room. A goat man on the throne, bigger than Steven/Shark, named Sauver and one of Throngore's, asked if they came from the Mortal realm. He seemed bound there until their arrival and said Throngore requested an audience. Past the doors, the party were paralysed before a demon about one hundred feet tall and forty feet wide, with bleeding crab-claw hands, six arms, and four legs. Throngore then changed into a man in a black suit with a giant goat's head. He told the narrator he had not thought they would dare come there. He wanted them to free a prisoner they would know when they saw him. Since they were friendly with Air, he told them not to let her back in to take over his throne. The party had favours from many gods. Kasha could not see them unless told they were there. They would not have time to free any other prisoner, should not get involved in the main fight, and should stay on the path, contradicting Hydran's earlier advice to leave the beaten path. The party agreed. +They landed outside a hole in another throne room. A goat man on the throne, bigger than Steven/Shark, named Sauver and one of Throngore's, asked if they came from the Mortal realm. He seemed bound there until their arrival and said Throngore requested an audience. Past the doors, the party were paralysed before a demon about one hundred feet tall and forty feet wide, with bleeding crab-claw hands, six arms, and four legs. Throngore then changed into a man in a black suit with a giant goat's head. He told Eliana he had not thought they would dare come there. He wanted them to free a prisoner they would know when they saw him. Since they were friendly with Air, he told them not to let her back in to take over his throne. The party had favours from many gods. Kasha could not see them unless told they were there. They would not have time to free any other prisoner, should not get involved in the main fight, and should stay on the path, contradicting Hydran's earlier advice to leave the beaten path. The party agreed. Throngore sent them to a path ending at a Dracula-style castle, with armies fighting near a tower like a memory of a fight: goats on one side, wasp humanoids on the other. The party tried to walk off the path while still following it. A signpost pointed one way toward the prison; Whel looked like a broken-off arrow. There was a hidden pathway [unclear] [uncertain: sea shell], and another way had a single sea shell, which they chose. A cockroach climbed onto Morgana and said it was the wrong way while nodding, so they continued. Shylow stopped and spoke to them, said he had something on his horns, rubbed dirt on them, believed they were goat people, and accepted names beginning with S. The prison disappeared, fog pressed around them, and a building appeared and grew huge. A giant purple crystal topped its spire, surrounded by thousands of blue wisps, with two wasp people at the door. -Trying to circle the building revealed dead and invisible wasp bodies after Dotharl cast See Invisibility. The party found fifteen black coins that wailed like the Harley pack of doom and put them all on one wasp body. Farther around was a smashed-in door and an irritated goat man who had been waiting for them. Inside were many prison cells. `[uncertain: Shevolt]` recognized the narrator, malfunctioned, and returned. A familiar dread made the narrator feel they had been there before. When asked his purpose, he said he was there to free a fellow goat named Fred, and the party decided to kill him. The leader said the narrator was a prisoner who had been stolen. When hit by necrotic damage, the narrator briefly became a silver dragonborn with ribbons on the horns and a teddy on the belt. A rock guy was in the cell next to "mine." The narrator's mother had killed him and dedicated him to Kasha; he had not liked `[uncertain: Stone runger?]` or the narrator at first but grew to like them. The keys to the prisons were visible on the leader's belt. +Trying to circle the building revealed dead and invisible wasp bodies after Dotharl cast See Invisibility. The party found fifteen black coins that wailed like the Harley pack of doom and put them all on one wasp body. Farther around was a smashed-in door and an irritated goat man who had been waiting for them. Inside were many prison cells. `[uncertain: Shevolt]` recognized Eliana, malfunctioned, and returned. A familiar dread made Eliana feel they had been there before. When asked his purpose, he said he was there to free a fellow goat named Fred, and the party decided to kill him. The leader said Eliana was a prisoner who had been stolen. When hit by necrotic damage, Eliana briefly became a silver dragonborn with ribbons on the horns and a teddy on the belt. A rock guy was in the cell next to "mine." Eliana's mother had killed him and dedicated him to Kasha; he had not liked Stone Rampart or Eliana at first but grew to like them. The keys to the prisons were visible on the leader's belt. -The notes list gods or god-like names and counts: Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. In one cell a thorn-beard elf, mortal, called the narrator darling and remembered going to the moon with the narrator's mother. He was Lord Briarthorn. The Water Bull had his memories back but could not reach the merbabies because he could not enter the sea water. The narrator entered the water and shouted for Globule, who came and helped free them. Kasha tried to break through the ceiling, and God Bull defied her, saying he would take his realm back. Globule told Geldrin he was ready; Geldrin rang the bell, and the party reappeared in the throne room. Haze said something smelled changed. +The notes list gods or god-like names and counts: Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. In one cell a thorn-beard elf, mortal, called Eliana darling and remembered going to the moon with Eliana's mother. He was Lord Briarthorn. The Water Bull had his memories back but could not reach the merbabies because he could not enter the sea water. Eliana entered the water and shouted for Globule, who came and helped free them. Kasha tried to break through the ceiling, and God Bull defied her, saying he would take his realm back. Globule told Geldrin he was ready; Geldrin rang the bell, and the party reappeared in the throne room. Haze said something smelled changed. The party returned to the statues and put back the tail. The stone casing broke away and revealed live tabaxi. The king asked how long they had been stone. The notes equate 2034 AP with approximately 3480, the same time the coins were smelted, and say they were cursed. The restored figures planned to speak to the people after planning. A priestess would guide the party to Cardonald. At the fountains, gossip said Lord Hydran was very happy but did not know what was happening; he went to find out, and Globule was back, taking the merfolk babies to the sea. The party agreed to rest and meet the priest the next day at 12:30. @@ -114,11 +114,11 @@ The party found an empty house and relaxed. Dirk felt someone scrying on him. Ou # People, Factions, and Places Mentioned -People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Harthall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Elluin Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Kaylara, Kasha, Guardwell, Whel, Elliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, `[uncertain: Stone runger?]`, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. +People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Harthall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Eliana Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Kaylara, Kasha, Guardwell, Whel, Eliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, Stone Rampart, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. -Places mentioned include the Black Dragon City in the Underblame, Infestus's city, Brass City, the Brass City citadel, Gaol, the lush inner city, the four great minarets, elemental fountains, the citadel corridors, the Trixus control room, the Earth plane, Harn? tavern, the small round temple near the Riversmeet bridge and dwarven bridge, Riversmeet, the Goliath throne room, Craters Edge, Pinesprings, Everchard, Morgana's house, the moon-like crystal surface, Provinta, the narrator's house, the town square, Bleakstorm's town hall, the normal-plane statue room, the theatre room, the water painting realm, Morgana's hut with dead Everchard trees, Hydran's realm, the realm of darkness / dark plane, fire realm, Azar Nuri's fire garden and throne room, past Brass City, the marketplace, the palace, Igraine's field / possible afterlife, Attabre's realm, the Mortal realm, Kasha's realm, the death realm, Throngore's throne room, the path to the Dracula-style castle, the memory battlefield, the prison with the purple crystal and blue wisps, the sea-water prison area, and the empty house where the party rested. +Places mentioned include the Black Dragon City in the Underblame, Infestus's city, Brass City, the Brass City citadel, Gaol, the lush inner city, the four great minarets, elemental fountains, the citadel corridors, the Trixus control room, the Earth plane, Harn? tavern, the small round temple near the Riversmeet bridge and dwarven bridge, Riversmeet, the Goliath throne room, Craters Edge, Pinesprings, Everchard, Morgana's house, the moon-like crystal surface, Provista, Eliana's house, the town square, Bleakstorm's town hall, the normal-plane statue room, the theatre room, the water painting realm, Morgana's hut with dead Everchard trees, Hydran's realm, the realm of darkness / dark plane, fire realm, Azar Nuri's fire garden and throne room, past Brass City, the marketplace, the palace, Igraine's field / possible afterlife, Attabre's realm, the Mortal realm, Kasha's realm, the death realm, Throngore's throne room, the path to the Dracula-style castle, the memory battlefield, the prison with the purple crystal and blue wisps, the sea-water prison area, and the empty house where the party rested. Creatures and creature-like beings mentioned include the orb-made blue dragon, smoke-scaled cobra-headed diplomat, air elementals, fountain water elemental, earth elemental, There as cat/dog, cats, the huge worm form of Cacophony, stone Dirk, the white dragon by a river, young beautiful sphynx, baby dragonborn, salamander, mermen, merlady, jellyfish-headed guards, clam, fish man, birds, Mourning, crystalline and porcelain dragons, small mechanical bird, water elemental babies, odd scaled fish, living-flame prince, hammerhead-shark transformation, imp, ladybird, pigeon / Bruce, Throngore's demon form, cockroach, wasp people, goat men, Water Bull / God Bull, live tabaxi released from stone, and merfolk retinue. @@ -142,9 +142,9 @@ Tresmun / Tresmon's body is incomplete and spread across planes or memories. Gel The Earth-plane tavern sequence removed something bad that had been following the party, but the identity of that thing remains unknown. Cacophony died as a huge worm after showing Morgana Rubyeye removing his eye. -Mama Harthall's vision at the round table with five wizards, Hannah, and Icefang shows her trying to stop something involving the blue ball. It appears tied to the old wizard project, Icefang, Hannah, and the narrator's past. +Mama Harthall's vision at the round table with five wizards, Hannah, and Icefang shows her trying to stop something involving the blue ball. It appears tied to the old wizard project, Icefang, Hannah, and Eliana's past. -The narrator's origin is reframed again: the younger Chorus "made" a baby, a box from Everchard delivered the narrator and sword to Provinta about twenty years earlier, the name Elluin Hartwall appears, Attabre says the narrator is both Icefang's and Attabre's daughter, Kaylara accepted spells while the narrator did not, and the narrator was killed for getting in the way. Necrotic damage in the death realm briefly revealed a silver dragonborn with horn ribbons and a teddy. +Eliana's origin is reframed again: the younger Chorus "made" a baby, a box from Everchard delivered Eliana and sword to Provista about twenty years earlier, the name Eliana Hartwall appears, Attabre says Eliana is both Icefang's and Attabre's daughter, Kaylara accepted spells while Eliana did not, and Eliana was killed for getting in the way. Necrotic damage in the death realm briefly revealed a silver dragonborn with horn ribbons and a teddy. Bleakstorm wants a personal favour to save him and free Icefang's spirit, which remains in the dome because Icefang died there. @@ -160,7 +160,7 @@ Geldrin's bargain with Sultan Azar Nuri grants the tongs but promises gold when The past Brass City tapestry maker is a dragon/serpent who had visions since Igraine visited, enchanted the marketplace tapestry, ripped out the page about herself from Bynx's book, and returned the party with time-linked objects. -Igraine's realm, Morgana's animal/bird channeling, Bruce, Mourning, the birds calling Morgana Mother, and the picture of Morgana with Igraine over the narrator's small-dragon bones suggest Morgana's created/enforcer role and reincarnation history are still incomplete. +Igraine's realm, Morgana's animal/bird channeling, Bruce, Mourning, the birds calling Morgana Mother, and the picture of Morgana with Igraine over Eliana's small-dragon bones suggest Morgana's created/enforcer role and reincarnation history are still incomplete. Attabre's lore says the princes became dangerous, wrong deals may have kept them in check, a father descended to save an imprisoned child, and five others at Ground Towers made a pact to rule one but from afar. This may explain the gods' bargains, the prisons, and the dome. @@ -170,7 +170,7 @@ Hydran told the party to leave the beaten path in the dark plane; Throngore told Throngore wants a prisoner freed and does not want Air to retake his throne. The party found Lord Briarthorn and the Water Bull / God Bull in the prison, but the identity of the prisoner Throngore meant and what freeing Briarthorn means remain unresolved. -The death-realm prison shows the narrator may once have been imprisoned there, stolen from a cell near a rock guy killed by the narrator's mother and dedicated to Kasha. `[uncertain: Shevolt]`, Fred, the prison keys, and `[uncertain: Stone runger?]` remain unclear. +The death-realm prison shows Eliana may once have been imprisoned there, stolen from a cell near a rock guy killed by Eliana's mother and dedicated to Kasha. `[uncertain: Shevolt]`, Fred, the prison keys, and Stone Rampart remain unclear. Queen Mooncoral and her merfolk now owe the party for righting the greatest wrong to their people, unknown to them until recently. The first merfolk birth occurred an hour before her arrival, and she gave a sending stone and ring of fire resistance. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index bd15e84..3fbf729 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -102,7 +102,7 @@ sources: - [Igraine](people/igraine.md): Igraine, Lady Igraine, Egraine Brook [uncertain earlier variant], spirit of Igraine. - [Throngore](people/throngore.md): Throngore, Thromgore [earlier variant], giant goat-headed lord, god/demon of the death realm. - [Kasha](people/kasha.md): Kasha, Kasher [earlier uncertain variant]. -- [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md): Elliana Harthall, Elluin Hartwall, Elluin Hartwall!, narrator's Harthall identity, Kaylara [related but not silently merged]. +- [Eliana Hartwall / Kaylara](people/eliana-hartwall.md): Eliana Hartwall, Elliana Harthall, Elluin Hartwall, Elluin Hartwall!, Kaylara [related but not silently merged]. - [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Mama Harthall, Cacophony, Rubyeye, Hannah, Bleakstorm, Dothurl / Dotharl, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index f944f49..5f29e2a 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -11,7 +11,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Subject | Coverage outcome | |---|---| -| Morgana, Dirk, Geldrin, Invar, Elliana, Bosh | Party members; covered through Day 46 cleaned narrative and relevant existing pages where present. | +| Morgana, Dirk, Geldrin, Invar, Eliana, Bosh | Party members; covered through Day 46 cleaned narrative and relevant existing pages where present. | | Willowispa / Willowwispa | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); open threads added. | | Valententhide / Lord Squall / cold mirror voice | Existing [Valententhide](../people/valententhide.md); Day 46 pathway offer added to [Open Threads](../open-threads.md). | | Mr Moreley / Abraxus / Professor Moreley | Existing [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); Day 46 context in cleaned narrative and open threads. | diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md index c3416d2..9506fa1 100644 --- a/data/6-wiki/clues/day-47-coverage-audit.md +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -19,5 +19,5 @@ sources: | Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Boorning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | | Harthall lab rooms, Pinesprings, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | | Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | -| Altered picture, missing third girl, Harthall daughters, narrator as Elliana Harthall, Lorekeeper source, Sunsoreen citizen release, emotional quelling | Added to [Open Threads](../open-threads.md) and relevant standalone pages. | +| Altered picture, missing third girl, Harthall daughters, Eliana as Eliana Hartwall, Lorekeeper source, Sunsoreen citizen release, emotional quelling | Added to [Open Threads](../open-threads.md) and relevant standalone pages. | | Day 48 pages 245-247 | Intentionally deferred; no Day 49 boundary is visible, so Day 48 remains page transcriptions only. | diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index 70fffb0..e3ec442 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -22,8 +22,8 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Noxia, Kesha, jellyfish guards and children, death warrant, scorpion symbols, Noxia wounded carving | Existing [Noxia](../people/noxia.md); Kesha and jellyfish figures covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [NPC Status](../people/status.md); scorpion symbols in [Minor Items from Day 57](../items/minor-items-day-57.md). | | Kasha, Guardwell soul pact, merbaby souls through Barrier, Kasha realm, Kasha breaking through ceiling | Added [Kasha](../people/kasha.md); updated [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Throngore, Sauver, Shylow, death realm, goat men, wasps, Air throne warning, path contradiction | Added [Throngore](../people/throngore.md); Sauver/Shylow in [Minor Figures from Day 57](../people/minor-figures-day-57.md); places in [Minor Places from Day 57](../places/minor-places-day-57.md). | -| Lord Briarthorn, thorn-beard elf, moon trip with narrator's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | -| Elliana Harthall / Elluin Hartwall / Kaylara identity, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Elliana Harthall / Elluin Hartwall / Kaylara](../people/elliana-harthall.md); updated [Icefang](../people/icefang.md) and [Attabre / Altabre](../people/attabre-altabre.md). | +| Lord Briarthorn, thorn-beard elf, moon trip with Eliana's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | +| Eliana Hartwall / Kaylara identity, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md); updated [Icefang](../people/icefang.md) and [Attabre / Altabre](../people/attabre-altabre.md). | | Icefang, Bleakstorm, Mama Harthall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Mama Harthall/Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre / Altabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | @@ -32,7 +32,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | There, Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | | Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | -| Craters Edge, Pinesprings, Everchard, Morgana's house, Provinta, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | +| Craters Edge, Pinesprings, Everchard, Morgana's house, Provista, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | | Items: newspaper, orb, coal, granite, silver dragon object, Scroll of Fireball, black thread, candles, gold statues, moon crystal, arm bone, Founder's Day poster, auroch sculpture, hourglass, false necklaces, biggening juice, porcelain/quartz dragons, mechanical bird, knife, black coins | Covered in [Minor Items from Day 57](../items/minor-items-day-57.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Clues: 17th March 991, 2842 AP, 3480, 2034 AP, 1050 years, first birth, 12:30 meeting, someone scrying Dirk | Added to [Timeline](../timeline.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), and relevant pages. | | Gods list: Kasha, Throngore 4/13, Shylow, Sjorra, Law 4/13, [unclear: Ice?], Hydran, Noxia, Squwal, Bridske 4, Attabre 4 | Major names have standalone/existing pages; uncertain/minor names in [Minor Figures from Day 57](../people/minor-figures-day-57.md). | diff --git a/data/6-wiki/clues/days-48-52-coverage-audit.md b/data/6-wiki/clues/days-48-52-coverage-audit.md index 1780c75..527a0e5 100644 --- a/data/6-wiki/clues/days-48-52-coverage-audit.md +++ b/data/6-wiki/clues/days-48-52-coverage-audit.md @@ -19,11 +19,11 @@ This audit accounts for the people, places, factions, items, clues, and open thr | Void elemental released by killing Pride | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; open thread added. | | Throngore prison clues, Thunderfut / Trutbrow plaques, Samuel, Struct, thirty dwarves, missing crystal | Rollups and [Elemental Prisons](../concepts/elemental-prisons.md); open thread added. | | Featureless figure / Aglue? / Anemie? / lost part of Valententhide, Thomas, Vessel of Divinity | Existing [Valententhide](../people/valententhide.md), [Elemental Prisons](../concepts/elemental-prisons.md), and [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) updated; rollups preserve variants. | -| Joy warning, Hannah-style erasure, narrator Harthall identity confirmation | Existing [Valententhide](../people/valententhide.md) and [Open Threads](../open-threads.md); Day 48 cleaned narrative preserves details. | +| Joy warning, Hannah-style erasure, Eliana Hartwall identity confirmation | Existing [Valententhide](../people/valententhide.md) and [Open Threads](../open-threads.md); Day 48 cleaned narrative preserves details. | | Simon, Stoven, Stuart, Morgana's `[coded]` circle | Rollups and open thread. | | Benu prophecy, Dunners, Garadwal old protector made flesh anew | Cleaned narrative, rollups, [Open Threads](../open-threads.md); existing [Garadwal](../people/garadwal.md) already tracks related protector identity. | | Dothral / Aneurascarle / Squeall family and god-of-lost pact | [Minor Figures](../people/minor-figures-days-48-52.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and open thread. | | Bridget, Bridget's domain, Cedric, Medinner, raven-headed lady, Bridget's husband, honouring puzzles | Existing [Bridget's Doors](../concepts/bridgets-doors.md) updated; figures, places, and items rollups added. | | Dome destruction cancels pacts and releases all prisons | [Elemental Prisons](../concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and [Open Threads](../open-threads.md). | -| Day 52 personal choices for narrator, Dotharl, Geldrin, Invar, Dirk, Morgana | Cleaned narrative and open threads; item rollup preserves crystal and fishing expedition hooks. | +| Day 52 personal choices for Eliana, Dotharl, Geldrin, Invar, Dirk, Morgana | Cleaned narrative and open threads; item rollup preserves crystal and fishing expedition hooks. | | Day 53 material from page 263 onward | Intentionally deferred until a later page confirms Day 54; no raw or cleaned Day 53 file should exist yet. | diff --git a/data/6-wiki/factions/sunsoreen-council.md b/data/6-wiki/factions/sunsoreen-council.md index 7fec5f3..32df0b5 100644 --- a/data/6-wiki/factions/sunsoreen-council.md +++ b/data/6-wiki/factions/sunsoreen-council.md @@ -35,7 +35,7 @@ The Sunsoreen Council is the ruling body of [Sunsoreen](../places/sunsoreen.md), - It claims emotional quelling began with them and strongly dislikes Dotharl as an abomination. - It rules through constant new laws, required jobs or training, absorbed settlements, outbreeding controls, and courts. - It refused the party's demand to release all citizens. -- It offered to help Elliana find what she lost if she stayed. +- It offered to help Eliana find what she lost if she stayed. - It moved to emergency law-making after Aurum told the party to leave. ## Related Entries @@ -47,6 +47,6 @@ The Sunsoreen Council is the ruling body of [Sunsoreen](../places/sunsoreen.md), ## Open Questions -- What is the Lorekeeper, and why could it supply questions about Elliana's childhood and Dotharl's family tie? -- Why does the council's record identify the narrator as Elliana Harthall? +- What is the Lorekeeper, and why could it supply questions about Eliana's childhood and Dotharl's family tie? +- Why does the council's record identify Eliana as Eliana Hartwall? - Is the council's emotional quelling related to Avalina's diary and the old Harthall work? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 0a735c5..59d33f9 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -118,7 +118,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Igraine](people/igraine.md) - [Throngore](people/throngore.md) - [Kasha](people/kasha.md) -- [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md) +- [Eliana Hartwall / Kaylara](people/eliana-hartwall.md) - [Minor Figures from Day 57](people/minor-figures-day-57.md) ## Places diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 7d9aea3..bd5240c 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -50,7 +50,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Jin-Loo's ring | party | `day-32` | `data/4-days-cleaned/day-32.md` | Eroll returned with a ring, and Jin-Loo appeared next to the party; the party kept the ring so Jin-Loo could find them again. | | Silver serpent pendant talisman | party | `day-35` | `data/4-days-cleaned/day-35.md` | Found on the snake-bodied boss; magical talisman described as +1 cleric cash rolls [unclear] with Noxia catch spells. | | Bob's shell | party | `day-35` | `data/4-days-cleaned/day-35.md` | Given by Skum when he appeared to rescue Elementarium. | -| Snowflake coin | narrator / party | `day-36` | `data/4-days-cleaned/day-36.md` | Lord Bleakstorm gave a one-use portal coin to Bleakstorm. | +| Snowflake coin | Eliana / party | `day-36` | `data/4-days-cleaned/day-36.md` | Lord Bleakstorm gave a one-use portal coin to Bleakstorm. | | Envi's fifth ring | Dirk | `day-42` | `data/4-days-cleaned/day-42.md` | Given by Anastasia; by 15:00 the party could attune to three of the rings. | | Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Guradwal picture; later Garadwal's feather functioned as one-person communication. | | Papa'e Munera black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | diff --git a/data/6-wiki/items/minor-items-day-57.md b/data/6-wiki/items/minor-items-day-57.md index cf76a60..425db61 100644 --- a/data/6-wiki/items/minor-items-day-57.md +++ b/data/6-wiki/items/minor-items-day-57.md @@ -16,14 +16,14 @@ sources: | Orbiting coin | Triggered Ignan phrase about helping say his name when picked up. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tresmon, coal was wet, granite scorched, silver dragon matched Mama Harthall. | [Tresmon's Body and Statue Artifacts](tresmons-body-and-statue-artifacts.md). | | Scroll of Fireball | Parchment found by Geldrin at the cat tavern table. | [Party Inventory](../inventories/party-inventory.md). | -| Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Elliana Harthall / Elluin Hartwall / Kaylara](../people/elliana-harthall.md). | +| Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md). | | Five altar candles and ten gold statues | Used in the round temple vision of five wizards, Hannah, and Icefang. | Rollup. | | Moon crystal and tiny arm bone | Moon crystal motivated opening the moon door; tiny arm bone came through the wave door. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | | Founder's Day poster dated 17th March 991 | Showed Bleakstorm and a Geldrin look-alike; date was not Founding Day. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | Ice auroch sculpture | Freshly carved on Bleakstorm's desk. | Rollup. | | Five-minute hourglass | Turned over by tabaxi pianist after necklace theft. | Rollup. | | False necklaces | Theatre room decoys around the true necklace. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | -| School biggening juice | Restored shrunken Geldrin from the narrator's waterskin. | Rollup. | +| School biggening juice | Restored shrunken Geldrin from Eliana's waterskin. | Rollup. | | Rose of Reincarnation | White rose extending reincarnation time from ten days to one thousand years. | [Igraine](../people/igraine.md), [Party Inventory](../inventories/party-inventory.md). | | Sea conch | Released Myriad / Lord of the High Waters. | [Myriad / Lord of the High Waters](../people/myriad-lord-of-the-high-waters.md). | | Porcelain salt dragon and quartz Salanus-like dragon | Dragon objects in water-realm rooms; quartz one shattered and was reassembled. | Rollup. | diff --git a/data/6-wiki/items/minor-items-days-48-52.md b/data/6-wiki/items/minor-items-days-48-52.md index c1f561b..31d5f1a 100644 --- a/data/6-wiki/items/minor-items-days-48-52.md +++ b/data/6-wiki/items/minor-items-days-48-52.md @@ -22,7 +22,7 @@ sources: | Missing crystal / diamond-type gem | 48 | Absent from one of six binding dwarf statues; possibly tied to resurrection or prison function. | Rollup / open thread. | | Pylon runes / key / wheel | 48 | Explained pylons and how to open the featureless dome. | [Elemental Prisons](../concepts/elemental-prisons.md). | | Infernal-like doorknob writing | 48 | Similar to Enis's lab; Dothral heard a grandfather-like prompt. | Rollup. | -| Memory crystal | 48 | Let the narrator remember medical school and a Provista sister calling them silly poo-poo head; released mutilated dwarves to afterlife. | Rollup / open thread. | +| Memory crystal | 48 | Let Eliana remember medical school and a Provista sister calling them silly poo-poo head; released mutilated dwarves to afterlife. | Rollup / open thread. | | Orb of Compassion | 48 | Emerged from Invar's bag and overwhelmed the party with compassion. | Rollup / open thread. | | `mines beneath the real` note | 48 | Note from magic school headmaster's office. | Rollup / open thread. | | Eye-sized ruby with Knock-like spell | 48 | Hidden behind loose stone. | Rollup. | diff --git a/data/6-wiki/items/minor-items-days-53-56.md b/data/6-wiki/items/minor-items-days-53-56.md index 3869784..f365af1 100644 --- a/data/6-wiki/items/minor-items-days-53-56.md +++ b/data/6-wiki/items/minor-items-days-53-56.md @@ -26,7 +26,7 @@ sources: - Faceplate guard armour: distinctive armour worn by intimidating Magstein guards at the Crusty Beard. - Grand Towers prison runes and statues: Salana intact, Garadwal and Valententhide unlit, others flickering; Valententhide's runes said "leave here." - Black shard / elemental of Void: presented in a small box as something to place where it belonged. -- Frost pole ball: gift brought by the narrator with intent to switch out frost elementals. +- Frost pole ball: gift brought by Eliana with intent to switch out frost elementals. - Prognostic machine: Juticars cited it while discussing Geldrin's chaotic tendencies and compromised mission. - Reconfigured map and control-room table: Grand Towers mechanisms used to prepare for fuel incoming and trigger Browning's table trap. - Shield remote: device to activate a shield, with no obvious way to reverse it. diff --git a/data/6-wiki/items/tresmons-body-and-statue-artifacts.md b/data/6-wiki/items/tresmons-body-and-statue-artifacts.md index 321c54c..b51823e 100644 --- a/data/6-wiki/items/tresmons-body-and-statue-artifacts.md +++ b/data/6-wiki/items/tresmons-body-and-statue-artifacts.md @@ -24,7 +24,7 @@ Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identif - Shield-crystal body: crafted in the citadel and stored in one of the four great minarets; described by a gem-cutter as not obviously a weapon. - Shield crystal piece: found on an earth elemental's table and identified as a piece of Tresmon. - Moon / Brass City body shard: Geldrin found where a shard had come from and put it back, stabilizing the four memory doors. -- Sword: found in the narrator's old Provinta house in a box from Everchard and returned to a cracked statue. +- Sword: found in Eliana's old Provista house in a box from Everchard and returned to a cracked statue. - Necklace: the real `Drinker beads of wine` necklace was found after false versions and invisibility tricks, then returned to its statue. - Offering bowl: the correct bowl came through Hydran's realm after several false bowls and Noxia-linked rooms. - Tongs: obtained from Sultan Azar Nuri through a dangerous bargain. diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index c87cf42..bba86a1 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -121,7 +121,7 @@ sources: - What are the simultaneous day-41 crises at Emmeraine, Dunensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? - What price or betrayal risk comes with the Peridot Queen's aid through The Basilisk? - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? -- What caused the narrator's cracked-eggshell dragon dream and temporary mental-stat disadvantage? +- What caused Eliana's cracked-eggshell dragon dream and temporary mental-stat disadvantage? - What does Dirk's Goliath-and-fat-bellied-dragon dream mean about links to dragons, Goliaths, or ancestral figures? - Is [Ennuyé](people/ennuyé.md) trapped, allied, hostile, or divided between Ruby Eye, Mama Harthall, the rings, and dark-demon deals? - What exact relationships connect [Peridita](people/peridita.md), Lortesh's children, Emeredge, Willow-wispa, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Lapis, Heady, Plague, and [Galimma](people/galimma-peridot-queen.md)? @@ -158,7 +158,7 @@ sources: - How do the serpans' sphinx book, underground city, Grincray, [Trixus](people/trixus.md), and the sixth sphinx connect? - What future knowledge did Mr Moreley recognize in Geldrin's ancient dragon scroll, and what was Harthall hiding from the Gold Dragon Council? - What was Ruby Eye's eye-removal final project, and why did he recruit Geldrin to join Everard, Thomas / Enis, and Valenth? -- What is the narrator's Evalina Harthall / Miana / Avalina identity, and why did a silver dragon or silver-green claw demand its form back? +- What is Eliana's Evalina Harthall / Miana / Avalina identity, and why did a silver dragon or silver-green claw demand its form back? - What did [Bright](people/valententhide.md), Valentenhule, Great Farmouth, gnomes, merfolk, and Grand Towers technology really have to do with each other? - What did Enis mean by Geldrin being touched by the lady of destruction, and what dark magic was Enis researching? - What is the green liquid / possible Noxia blood from the desert, and what came with the party? @@ -175,7 +175,7 @@ sources: - Why is Amoursorate's orb scratched and unlit, and what does `look after my son` mean for Dothral / Joshua? - What did Squeal really mean by asking for `the loss of everything`, and why did a message saying `Bread & Circus` impersonate Rubyeye? - What did the lost ring remove from Dirk and Geldrin, and can compassion or curiosity be restored? -- Who or what caused the Day 46 memory flood, and why did Invar and Elliana remember Morgana as more familiar than expected? +- Who or what caused the Day 46 memory flood, and why did Invar and Eliana remember Morgana as more familiar than expected? - Who is controlling Riversmeet through false officials, lamias, rats, jade, altered memories, and the town-hall passages? - Which prison near Snowscreen holds the Harthall artifact, and how does it affect Harthall's memory work? - What is the purpose of the 50,000 gp jade cache from the boat, and how does it connect to Terrance's wife's jade earrings and the 500 gp jade order? @@ -183,14 +183,14 @@ sources: - What did Valententhide intend to charge in identities, eyes, and pride for use of her pathways? - What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? -- Who was removed from the Harthall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Elliana, Joy, Hannah, and Harthall's daughters? +- Who was removed from the Harthall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Eliana, Joy, Hannah, and Harthall's daughters? - What do Argathum's urn, Lady Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Hartwall's sacrifices? -- Why did the sentient door prefer the narrator's dress-wearing form, and what did Mr Boorning do with the key after Avalina left? +- Why did the sentient door prefer Eliana's dress-wearing form, and what did Mr Boorning do with the key after Avalina left? - Who is [Bynx](people/bynx.md)'s lion-headed `real daddy`, and what happened to Bynx's sister in the white dragon? - What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? - Which trophy-plinth artifacts are still missing, including the Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, and Crown of Thorns? - Can the dome or prison network be powered safely without exploiting elementals, and what prisoners remain behind the frost-prison doors? -- What is [Sunsoreen](places/sunsoreen.md)'s Lorekeeper, why do its records call the narrator Elliana Harthall, and why did the council offer to help recover what she lost only if she stayed? +- What is [Sunsoreen](places/sunsoreen.md)'s Lorekeeper, why do its records identify Eliana as Eliana Hartwall, and why did the council offer to help recover what she lost only if she stayed? - Why was the Tri-moon visible at the wrong time in Sunsoreen? - Can diplomacy with [Verdigrim](people/verdigrim.md) resolve Ashkielion / Verdigrimtown, and who is Verdigrim's mother? - What are the full implications of [Rubyeye](people/brutor-ruby-eye.md)'s ancient charges, especially 174,312 herfolk babies murdered and elemental spirit entrapment? @@ -199,14 +199,14 @@ sources: - What prison under Lewshis and Aneurascarle did Rubyeye recognise, and how do the Thunderfut / Trutbrow plaques, Samuel, Struct, thirty dwarves, and missing crystal connect to Throngore? - What exactly is the featureless lost part of [Valententhide](people/valententhide.md), what did Thomas remove, and what is the Vessel of Divinity? - Why did Joy warn that the lost part took her mum when the ancestors gave a positive response to releasing it? -- What does the direct answer `Because you are` mean for the narrator's Harthall identity? +- What does the direct answer `Because you are` mean for Eliana's Hartwall identity? - Where is Morgana's `[coded]` teleport circle, and why do Geldrin and Morgana remember making or placing it from uncertain selves? - If destroying the dome cancels all pacts and releases all prisons, which pacts or prisoners become immediate threats or obligations? - What are Bridget's rules for honouring, gifts, anger, and the gold Valententhide orb? - Who is the voice offering to free Dotharl from mortals, and is it Bridget's trapped kin, his father, his grandfather, or another prisoner? -- Which identity should the narrator keep: the current self or the one once held? +- Which identity should Eliana keep: the current self or the one once held? - What power are the Brownings offering Geldrin, what crystal must Invar give or use, what fishing expedition must Dirk remember, and what training cost threatens Morgana? -- What returning dragon did Bridget warn about, why is Invar / silver the route, and how does that connect to the narrator being "Elliana and Elliana"? +- What returning dragon did Bridget warn about, why is Invar / silver the route, and how does that connect to Eliana being "Eliana and Eliana"? - What is [Anya Blakedurn](people/anya-blakedurn.md)'s father's Rubyeye-summoning device, and can her bargain to restore the Dwarven kingdoms be trusted? - What is the hole in [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), what pylons are needed to repair it, and why is Papa breaking dwarves as revenge? - What smoke or malevolent presence caused the Quartermaster and General's hopelessness, and is it the same as Blakedurn's black smoke incident or Merocole's smoke sphere? @@ -224,11 +224,11 @@ sources: - Can [Browning](people/edward-browning.md)'s near-complete godhood ritual be stopped before he uses more crystal? - Where exactly are Cardinal in the Brass dome and [Rubyeye](people/brutor-ruby-eye.md) in the far-airwise dwarven loop? - What are Bluescale's truth-currency rules and location secrecy protecting? -- Where are the red dragons or dragonborn Ember seeks, and why does the narrator smell of elf? +- Where are the red dragons or dragonborn Ember seeks, and why does Eliana smell of elf? - What full consequences follow from restoring the [Brass City Council](factions/brass-city-council.md), and which Council members or statue objects remain unresolved? - What exactly is [Tresmon's body](items/tresmons-body-and-statue-artifacts.md), why is Envi holding the arm, and who is the crystal body ultimately being completed for? - Can [Globule](people/globule.md), [Hydran](people/hydran.md), and [Queen Mooncoral](people/queen-mooncoral.md)'s people keep the freed merbabies safe from Kasha and Noxia? - What did [Azar Nuri](people/azar-nuri.md) gain from Geldrin's bargain, and what happens if his envoys reach the Mortal plane? -- Is [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md) one identity, split identities, reincarnations, or related siblings/doubles? +- Is [Eliana Hartwall / Kaylara](people/eliana-hartwall.md) one identity, split identities, reincarnations, or related siblings/doubles? - Which instructions should the party trust in the dark plane: Hydran's advice to leave the path or [Throngore](people/throngore.md)'s demand to stay on it? - Why did Dirk feel someone scrying on him in [Brass City](places/brass-city.md) after Queen Mooncoral's arrival? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md index 31af1b6..ce7436a 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre-altabre.md @@ -31,7 +31,7 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. - Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and a father descended to earth to save his child from imprisonment. - Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. -- Attabre told the narrator they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Kaylara accepted the spells. +- Attabre told Eliana they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Kaylara accepted the spells. - Attabre warned that divine gifts before the next realm would be hard to choose and that if the party died there they would not get back up. - Attabre said bringing down the dome was the party's choice, would weaken Throngore, and would not bother gods except those who benefit. @@ -49,4 +49,4 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - Is Attabre the same as Altabre, or are these variant spellings of a title and a deity? - What task did Attabre give Trixus, and why was Trixus not going to achieve it? - What does `rule one, but from afar` mean, and is it the origin of the current god bargains? -- Why is the narrator also Attabre's daughter? +- Why is Eliana also Attabre's daughter? diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index b069019..8a54825 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -22,7 +22,7 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r ## Known Details - On `day-46`, Morgana recovered the baby sphynx / goliath child after Kasha tried to claim it as alternative payment; the spell completed too quickly, as if another power also cast it. -- On `day-47`, the sphynx grew quickly, asked many questions, played in Harthall's rooms, added a ribbon to the narrator's horn, vomited on them, and reacted to old memory rooms. +- On `day-47`, the sphynx grew quickly, asked many questions, played in Harthall's rooms, added a ribbon to Eliana's horn, vomited on them, and reacted to old memory rooms. - Bynx identified a lion-headed elven body in a Grand Towers memory box as "real daddy" and broke the box. - The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. - Bynx's mother appeared as a carved female sphynx face on a Sunsoreen palace door. diff --git a/data/6-wiki/people/eliana-hartwall.md b/data/6-wiki/people/eliana-hartwall.md new file mode 100644 index 0000000..10eea1d --- /dev/null +++ b/data/6-wiki/people/eliana-hartwall.md @@ -0,0 +1,52 @@ +--- +title: Eliana Hartwall / Kaylara +type: player character +aliases: + - Eliana Hartwall + - Elliana Harthall + - Elluin Hartwall + - Elluin Hartwall! + - Kaylara +player: Kirsty +note_taker: Kirsty +first_seen: day-47 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-57.md +--- + +# Eliana Hartwall / Kaylara + +## Summary + +Eliana Hartwall is a main player character played by Kirsty, who is also the note taker. Eliana's identity remains unresolved across Eliana Hartwall and Kaylara clues. Day 57 adds origin memories, a delivered baby box, Attabre and Icefang parentage, death/reincarnation implications, and a death-realm prison memory. + +## Day 57 Details + +- The dragon memory door led to Provista about twenty years earlier, where a box from Everchard was delivered to Eliana's family with a baby and sword. +- Morgana said the Chorus made Eliana. +- The notes exclaim `Eliana Hartwall!` at 1 AM. +- The Chorus had black thread sewn through eyes and mouth; Morgana found black thread in the baby/sword context. +- Bleakstorm wanted the party to save him and free Icefang's spirit, which remained in the dome because Icefang died there. +- Attabre said Eliana was Icefang's daughter and also Attabre's, not just Icefang's. +- Attabre said Eliana was killed for getting in the way and being strong-willed; Kaylara accepted the spells, while Eliana did not. +- Icefang got Kaylara out and then fell into slumber. +- Necrotic damage in Throngore's prison briefly changed Eliana into a silver dragonborn with ribbons on the horns and a teddy on the belt. +- A nearby rock guy said Eliana's mother killed him and dedicated him to Kasha; he grew to like Stone Rampart or Eliana. + +## Related Entries + +- [Icefang](icefang.md) +- [Attabre / Altabre](attabre-altabre.md) +- [The Chorus](the-chorus.md) +- [Lord Briarthorn](lord-briarthorn.md) +- [Kasha](kasha.md) + +## Open Questions + +- Are Eliana, Eliana Hartwall, and Kaylara separate people, variant names, or altered states of Eliana? +- What spells did Kaylara accept that Eliana refused? +- What did Morgana's reincarnation do, and why are memories still incomplete? diff --git a/data/6-wiki/people/elliana-harthall.md b/data/6-wiki/people/elliana-harthall.md deleted file mode 100644 index 28f8dd5..0000000 --- a/data/6-wiki/people/elliana-harthall.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Elliana Harthall / Elluin Hartwall / Kaylara -type: identity thread -aliases: - - Elliana Harthall - - Elluin Hartwall - - Elluin Hartwall! - - Kaylara -first_seen: day-47 -last_updated: day-57 -sources: - - data/4-days-cleaned/day-47.md - - data/4-days-cleaned/day-48.md - - data/4-days-cleaned/day-52.md - - data/4-days-cleaned/day-57.md ---- - -# Elliana Harthall / Elluin Hartwall / Kaylara - -## Summary - -The narrator's identity remains unresolved across Harthall, Elliana, Elluin Hartwall, and Kaylara clues. Day 57 adds origin memories, a delivered baby box, Attabre and Icefang parentage, death/reincarnation implications, and a death-realm prison memory. - -## Day 57 Details - -- The dragon memory door led to Provinta about twenty years earlier, where a box from Everchard was delivered to the narrator's family with a baby and sword. -- Morgana said the Chorus made the narrator. -- The notes exclaim `Elluin Hartwall!` at 1 AM. -- The Chorus had black thread sewn through eyes and mouth; Morgana found black thread in the baby/sword context. -- Bleakstorm wanted the party to save him and free Icefang's spirit, which remained in the dome because Icefang died there. -- Attabre said the narrator was Icefang's daughter and also Attabre's, not just Icefang's. -- Attabre said the narrator was killed for getting in the way and being strong-willed; Kaylara accepted the spells, while the narrator did not. -- Icefang got Kaylara out and then fell into slumber. -- Necrotic damage in Throngore's prison briefly changed the narrator into a silver dragonborn with ribbons on the horns and a teddy on the belt. -- A nearby rock guy said the narrator's mother killed him and dedicated him to Kasha; he grew to like `[uncertain: Stone runger?]` or the narrator. - -## Related Entries - -- [Icefang](icefang.md) -- [Attabre / Altabre](attabre-altabre.md) -- [The Chorus](the-chorus.md) -- [Lord Briarthorn](lord-briarthorn.md) -- [Kasha](kasha.md) - -## Open Questions - -- Are Elliana, Elluin Hartwall, and Kaylara separate people, variant names, or altered states of the narrator? -- What spells did Kaylara accept that the narrator refused? -- What did Morgana's reincarnation do, and why are memories still incomplete? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 4e95b27..c254c46 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -60,7 +60,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Altabre](attabre-altabre.md)'s children walking on earth. - The same book says Gardwell looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. - On Day 43, Garadwal spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. -- Garadwal appeared in Ashkellon for the sphinx-family reunion, refused to lay down weapons, killed the narrator, fought Benu, and was banished at 5:00. +- Garadwal appeared in Ashkellon for the sphinx-family reunion, refused to lay down weapons, killed Eliana, fought Benu, and was banished at 5:00. - On Day 46, Morgana's attempt to reincarnate Metatous's incomplete spirit instead formed an elven male body with greenish hair and divine energy, who identified himself as Garadwal. - This reincarnated Garadwal initially did not recognise the party and last remembered the desert and his people before the Dome existed; the party temporarily called him Groot. - Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. diff --git a/data/6-wiki/people/globule.md b/data/6-wiki/people/globule.md index 2b8865c..c9f90ed 100644 --- a/data/6-wiki/people/globule.md +++ b/data/6-wiki/people/globule.md @@ -22,7 +22,7 @@ Globule is a water entity found trapped in a whirlpool painting by Noxia. He bec - He warned the party not to free the Myriad / Lord of the High Waters, calling him a con artist imprisoned by Hydran. - He recognized that the party's false bowls were wrong and said the true bowl was stone, not metal. - He collected the water elemental baby globes / pokeballs and gave them to Dirk. -- In the death realm sea-water prison, the narrator called for Globule, who helped free the merbabies. +- In the death realm sea-water prison, Eliana called for Globule, who helped free the merbabies. - By the end of Day 57, Globule was back and taking the merfolk babies to the sea. ## Related Entries diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 81fe33b..91e336f 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -31,11 +31,11 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Cardunel planned to bury Icefang near Snow Sorrow. - Day 42 copper-dragon history says Ice Fury was about thirty to forty years older than the copper dragon, while [uncertain: Ice fang] / Atlih was noted near her boy and Snow Screen / Snow Sorrow. - Day 43 says Lady Hartwall remembered Icefang more clearly, that he cared for her, and that he and Lady Hartwall assaulted Perodita while Icefang was starting to lose his mind. -- Day 44 has Altith / Icefang contact the narrator, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. +- Day 44 has Altith / Icefang contact Eliana, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. - Icefang's future vision if Browning acted showed broken tower fields, burning blue, black, green, and red dragons, hidden settlements, and destructive elementals. - Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Mama Harthall holding the blue ball and saying the work had to stop. - Day 57 Bleakstorm said Icefang's spirit was still in the dome because Icefang died there and asked the party to free it. -- Day 57 Attabre said the narrator was Icefang's daughter as well as Attabre's, that Icefang gave them all vision, got Kaylara out, and then fell to slumber. +- Day 57 Attabre said Eliana was Icefang's daughter as well as Attabre's, that Icefang gave them all vision, got Kaylara out, and then fell to slumber. ## Related Entries @@ -52,4 +52,4 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snow Screen figures? - What did Icefang mean by Dad being mad and the gods taking over Snow Screen? - What does freeing Icefang's spirit from the dome require? -- How do Icefang, Attabre, Kaylara, and the narrator's Harthall identity fit together? +- How do Icefang, Attabre, Kaylara, and Eliana's Hartwall identity fit together? diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md index 6636516..c860d00 100644 --- a/data/6-wiki/people/infestus.md +++ b/data/6-wiki/people/infestus.md @@ -60,4 +60,4 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - Can crystals on dragon scales intentionally breach or part the Barrier? - What cities were targeted for removal, and was Infestus behind both dragon plots? - What are the Bluescale rules protecting, and what does Infestus want to pay the party for? -- How do Ember's request for red dragon and red dragonborn news and the narrator's elf smell connect to Infestus's politics? +- How do Ember's request for red dragon and red dragonborn news and Eliana's elf smell connect to Infestus's politics? diff --git a/data/6-wiki/people/kasha.md b/data/6-wiki/people/kasha.md index 5e43680..15cfab5 100644 --- a/data/6-wiki/people/kasha.md +++ b/data/6-wiki/people/kasha.md @@ -15,7 +15,7 @@ sources: ## Summary -Kasha is a soul-associated power whose bargains and realm pressure matter to Geldrin, Guardwell's soul, merbabies, and the narrator's death-realm prison history. +Kasha is a soul-associated power whose bargains and realm pressure matter to Geldrin, Guardwell's soul, merbabies, and Eliana's death-realm prison history. ## Day 57 Details @@ -23,14 +23,14 @@ Kasha is a soul-associated power whose bargains and realm pressure matter to Gel - Geldrin asked how to escape his pact with Kasha to get Guardwell's soul; Attabre said Kasha is not bound like the gods, but will do everything she can. - In Kasha's realm, she would be much more capable than on the Mortal realm. - Throngore said Kasha could not see the party unless told they were in his realm. -- The narrator's mother had killed a rock guy and dedicated him to Kasha. +- Eliana's mother had killed a rock guy and dedicated him to Kasha. - Kasha tried to break through the ceiling during the Water Bull / God Bull and merbaby rescue. ## Related Entries - [Throngore](throngore.md) - [Hydran / Hydram](hydran.md) -- [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md) +- [Eliana Hartwall / Kaylara](eliana-hartwall.md) ## Open Questions diff --git a/data/6-wiki/people/lord-briarthorn.md b/data/6-wiki/people/lord-briarthorn.md index 174fc3a..2327be2 100644 --- a/data/6-wiki/people/lord-briarthorn.md +++ b/data/6-wiki/people/lord-briarthorn.md @@ -13,23 +13,23 @@ sources: ## Summary -Lord Briarthorn is a mortal thorn-beard elf found in a death-realm prison cell. He recognized the narrator and remembered going to the moon with the narrator's mother. +Lord Briarthorn is a mortal thorn-beard elf found in a death-realm prison cell. He recognized Eliana and remembered going to the moon with Eliana's mother. ## Known Details -- He called the narrator darling. -- He remembered going to the moon with the narrator's mother. +- He called Eliana darling. +- He remembered going to the moon with Eliana's mother. - He was found during the death-realm prison sequence after Throngore asked the party to free a prisoner. - His exact relationship to Captain Briarthorn from earlier Highden notes is uncertain and not merged. ## Related Entries - [Throngore](throngore.md) -- [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md) +- [Eliana Hartwall / Kaylara](eliana-hartwall.md) - [Minor Figures from Day 57](minor-figures-day-57.md) ## Open Questions - Was Lord Briarthorn the prisoner Throngore wanted freed? -- Why did he go to the moon with the narrator's mother? +- Why did he go to the moon with Eliana's mother? - Is he related to Captain Briarthorn? diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index 87b8a2b..9105506 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -10,7 +10,7 @@ sources: | Figure | Day 47 details | Coverage | | --- | --- | --- | | Argathum | Urn inscription apologised that love in life may not have been true though Argathum gave life for the writer. | Rollup; linked to Harthall lab thread. | -| Provista | Possible source of the narrator somehow knowing Lady Hartwall played the flute. | Rollup. | +| Provista | Possible source of Eliana somehow knowing Lady Hartwall played the flute. | Rollup. | | Avalina | Portrait subject; diary apparently revealed through makeup; tied to daughters, promises, forced mate, and Council of Gold. | Rollup and [Open Threads](../open-threads.md). | | Corundum, Argea?, Cetiosa | Portrait or missing-portrait names in the throne room. | Rollup; uncertainty preserved. | | Mr Boorning | Entered after Avalina left and departed with a key. | Rollup. | diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 610a2aa..7119d1d 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -20,11 +20,11 @@ sources: | Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | | There | 57 | Cat became a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | | Bob and Bosh | 57 | Still cursed; There said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | -| Mama Harthall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md). | +| Mama Harthall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Eliana Hartwall / Kaylara](eliana-hartwall.md). | | Cacophony | 57 | Appeared to Morgana as a huge worm, died, and showed Rubyeye removing his eye. | Rollup / [Open Threads](../open-threads.md). | | Rubyeye | 57 | Seen in vision removing his eye in a runed bathroom. | [Brutor Ruby Eye](brutor-ruby-eye.md). | | Hannah | 57 | Present at the vision round table with five wizards and Icefang. | Rollup / [Open Threads](../open-threads.md). | -| Bleakstorm | 57 | In Provinta/Town Hall with ice auroch sculpture; wanted the party to save him and free Icefang's spirit. | [Icefang](icefang.md). | +| Bleakstorm | 57 | In Provista/Town Hall with ice auroch sculpture; wanted the party to save him and free Icefang's spirit. | [Icefang](icefang.md). | | Dothurl / Dotharl | 57 | Entered paintings, cast See Invisibility, and was one of the ancestors' named jumpers. | Rollup. | | Nare | 57 | Thought Globule was dangerous. | Rollup. | | Kesha | 57 | Identified as Noxia's sister; Noxia replaced someone but Kesha did not. | [Noxia](noxia.md), [Kasha](kasha.md) because sister identities remain uncertain. | @@ -32,7 +32,7 @@ sources: | Bruce | 57 | Bird who agreed to teach Morgana animal/bird channeling; Morgana named it Bruce. | [Igraine](igraine.md). | | Sauver | 57 | Goat man on a throne, one of Throngore's, bound until the party arrived. | [Throngore](throngore.md). | | Shylow | 57 | Goat figure who thought the party were goat people and accepted names beginning with S. | [Throngore](throngore.md). | -| [uncertain: Shevolt] | 57 | Recognized the narrator in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md). | +| [uncertain: Shevolt] | 57 | Recognized Eliana in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Eliana Hartwall / Kaylara](eliana-hartwall.md). | | Fred | 57 | Fellow goat whom [uncertain: Shevolt] claimed he was there to free. | Rollup. | | Sjorra, Law, [unclear: Ice?], Squwal, Bridske | 57 | Listed among gods/god-like names with counts beside some names. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | | Water Bull / God Bull | 57 | Regained memories, defied Kasha, and wanted to take his realm back; could not enter sea water to get merbabies. | [Hydran / Hydram](hydran.md), [Throngore](throngore.md). | diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index 2c625eb..86c1f16 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -20,7 +20,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Human with a very noticeable underbelly: seen at the Baked Mattress. - Barkeep described as `Patches of night & husband`: associated with the Baked Mattress. - Candelissa Hustlebustle: Arabica pechen lady seated beside the party at the auction; bought drink lots. -- Aon Ankt: narrator's blood letting tutor, seen in the third row. +- Aon Ankt: Eliana's blood letting tutor, seen in the third row. - Janet Boulderdew: bought Smehlebeard whiskey. - Shiny man dressed up by someone: bought five Black Dragons. - Raven no. 1 / Raven 1 and Raven 2: auction bidders; Raven 1 bought a Grand Towers penny, `Valententide's Betrayal`, and the holy symbol of Noxia, while Raven 2 bought silver pieces associated with gnome great Fummouth. @@ -43,7 +43,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Older human man, robed figure, silver dragonborn, backpack of scrolls, floating book, and gnome with a wooden shield bearing a golden duck: present around Lot 35. - Laura: won the bracelet of locating for 101 gp. - Skutey Galvin: name linked to Browning and wanted for impersonating a Justicar; not merged with Edward Browning without confirmation. -- Constantine Harthwall: false name the narrator gave to the Justicar. +- Constantine Harthwall: false name Eliana gave to the Justicar. - Wroth: called by Xinquiss to help hide the shield crystal. - Barrett: returned with the militia-house prisoner roster. - Lady Neegate: quiet lately because of a loss in the family. @@ -64,7 +64,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Daisy, Applejack, Carrot Muncher, and [uncertain: Harpvicarch]: horses involved in the prisoner-cart operation; later killed in battle. - Kobold female and halfling: escorted from the militia house before the prisoner transport; TJ Biggins was among the prisoners. - Snake-bodied boss / snake guy: transformed his lower half into a snake, carried a silver serpent pendant talisman, and was killed. -- Lady Katherine Cole: narrator's boss; rescued council member whose memory returned after an ear grub was removed and killed. +- Lady Katherine Cole: Eliana's boss; rescued council member whose memory returned after an ear grub was removed and killed. - Lady Katherine Neugate: rescued council member, captured for four days, reticent to speak, and affected by ear grubs. - Lord [uncertain: Harmock] Hayes: rescued prisoner and apparent council member. - Lady Esmerelda: mentioned at Bluemeadows without context. diff --git a/data/6-wiki/people/minor-figures-days-48-52.md b/data/6-wiki/people/minor-figures-days-48-52.md index c1d6cd0..5bac73f 100644 --- a/data/6-wiki/people/minor-figures-days-48-52.md +++ b/data/6-wiki/people/minor-figures-days-48-52.md @@ -35,7 +35,7 @@ This rollup preserves named and name-like figures from Days 48 and 52 that do no | Stoven and Stuart | 48 | Former prisoners released about twenty years after imprisonment; arrived with Simon. | Rollup. | | Squeall / Squeal | 52 | God of the lost / possible grandfather in Dothral's family thread. | Rollup / open thread. | | Cedric | 52 | Cricket-headed follower of Bridget who handled waiting, gruel, doors, and later ate gruel like ambrosia. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Medinner | 52 | Bridget follower whose show reenacted Elliana/Avalina and a robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Medinner | 52 | Bridget follower whose show reenacted Eliana/Avalina and a robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | | Raven-headed lady | 52 | Told Dotharl to go away and emphasized choice. | [Bridget's Doors](../concepts/bridgets-doors.md). | | Bridget's husband | 52 | Likes lucky fortune, weather, change, and loss. | [Bridget's Doors](../concepts/bridgets-doors.md). | diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 4ff03b4..f0381ee 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -161,7 +161,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Papa'e Munera fragment | boxed fragment with party | `data/4-days-cleaned/day-43.md` | Black orb in Invar's box; wants reunion with the rest of itself and [uncertain: unrasorak]. | | Dribble and fresh water elemental | released and temporarily allied | `data/4-days-cleaned/day-44.md` | Dribble was in a jade/grey desk object; a fresh water elemental agreed to join the party around the school for a while. | | [Globule](globule.md) | freed, allied, taking babies to sea | `data/4-days-cleaned/day-57.md` | Freed from Noxia's whirlpool painting and helped rescue merbabies from the death realm. | -| [Lord Briarthorn](lord-briarthorn.md) | found imprisoned, mortal | `data/4-days-cleaned/day-57.md` | Thorn-beard elf in death-realm prison cell who remembered going to the moon with the narrator's mother. | +| [Lord Briarthorn](lord-briarthorn.md) | found imprisoned, mortal | `data/4-days-cleaned/day-57.md` | Thorn-beard elf in death-realm prison cell who remembered going to the moon with Eliana's mother. | ## Allies and Contacts diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md index 2f1f8d1..217ad40 100644 --- a/data/6-wiki/people/valententhide.md +++ b/data/6-wiki/people/valententhide.md @@ -40,13 +40,13 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - After the party returned, they no longer remembered Hannah's name, only an image of her turning to dust in a cave. - On `day-47`, `Palace of Valententhide` described her palace as forged in the deep sky, in a domain outside mortal realms, on the crimson, with walls of faces she does not have and unbreathable air unless visitors bring their own. - The same book says Valententhide exploited a loophole to remain at her palace when the gods were banished to another plane. -- Later on `day-47`, an accidental portal opened into a black corridor in Valententhide's house; the party saw Valententhide, passed out, and Morgana heard the narrator while feeling cold hands on her shoulder. +- Later on `day-47`, an accidental portal opened into a black corridor in Valententhide's house; the party saw Valententhide, passed out, and Morgana heard Eliana while feeling cold hands on her shoulder. - On `day-48`, a featureless figure in a prison dome said it was no one, lost, once part of Valententhide, and that Thomas put it there and took what was there. It linked the elemental planes, pacts, world creation, the Vessel of Divinity, gods, and lostness. -- The same Day 48 figure answered the narrator's question about why everyone thought they were a Harthall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. +- The same Day 48 figure answered Eliana's question about why everyone thought they were a Harthall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. - On `day-52`, a night-sky-serenity part of Valententhide was described as a small shard of a powerful creature. Reuniting it would soften Valententhide into a goddess of destruction rather than a mindless road-murdering force. - Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. - On `day-56`, Valententhide appeared reflected in Invar's armour, and a tapestry showed five wizards plus an invisible Hannah Joy-like woman whom Dotharl could not see because he knew she existed. -- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Altabre symbol and deactivation. The replacements thought the narrator may have stopped a statue trick and referenced `my daughters` / Mama Harthall. +- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Altabre symbol and deactivation. The replacements thought Eliana may have stopped a statue trick and referenced `my daughters` / Mama Harthall. ## Related Entries diff --git a/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md index 20ea77d..0ab234d 100644 --- a/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md +++ b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md @@ -28,7 +28,7 @@ Coalmont Falls is a mining town where black water from a waterfall led the party - Morgana sensed a large black six-armed creature shackled under the water, with chains leading into alien material and an obsidian archway. - The underwater chamber had a twenty-foot statue with five runes in a pentagram and the name !Asmoorade!. - A barrier trapped Morgana until she found a freshly cut stone corridor, ticking-rune door, giant black four-armed geyser figure, and revival chamber. -- Nelkish announced the Domain of Anthrosite, said he worked for Infestus, recognized the narrator as pure blood, and said Geldrin's wizard robes were part of an agreement. +- Nelkish announced the Domain of Anthrosite, said he worked for Infestus, recognized Eliana as pure blood, and said Geldrin's wizard robes were part of an agreement. - Envi in a tube of viscous fluid was released; an automaton introduced himself as Garaduel, activated recall protocol, and removed the automatons. ## Related Entries diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md index 48f5b0c..95efab0 100644 --- a/data/6-wiki/places/minor-places-day-57.md +++ b/data/6-wiki/places/minor-places-day-57.md @@ -16,7 +16,7 @@ sources: | Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to Mama Harthall/Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | | Craters Edge | Seen through the moon door; Dirk heard garbled conversations. | Rollup. | | Pinesprings | Dragon door memory of snow, pine trees, baby dragonborn, and redbeard figure with a broom. | Rollup. | -| Provinta | Plateau town about twenty years in the past, where the narrator's house received the Everchard baby/sword box. | [Elliana Harthall / Elluin Hartwall / Kaylara](../people/elliana-harthall.md). | +| Provista | Plateau town about twenty years in the past, where Eliana's house received the Everchard baby/sword box. | [Eliana Hartwall / Kaylara](../people/eliana-hartwall.md). | | City of Aquarius | Mother-of-pearl palace where Keepers of the Pact were welcome by Lord Hydram's permission. | [Hydran / Hydram](../people/hydran.md). | | Morgana's dead-tree hut | Painting realm with dead Everchard trees, birds, white rose, conch, and offering bowl. | [Igraine](../people/igraine.md). | | Hydran's realm | Reached through the `Submarine` door; held the contract to save babies' spirits and carvings about Envi, Noxia, and Morgana. | [Hydran / Hydram](../people/hydran.md). | diff --git a/data/6-wiki/places/minor-places-days-48-52.md b/data/6-wiki/places/minor-places-days-48-52.md index 6a14d22..4749842 100644 --- a/data/6-wiki/places/minor-places-days-48-52.md +++ b/data/6-wiki/places/minor-places-days-48-52.md @@ -29,7 +29,7 @@ sources: | Stonedown | 52 | Day 52 starting location. | Rollup. | | Bridget's domain / pathway | 52 | Linked-path trial where party members split, solved rooms, and met Bridget's followers. | [Bridget's Doors](../concepts/bridgets-doors.md). | | Invar's cricket/raven/gruel room | 52 | Honour puzzle with cricket, raven, and bowl. | [Bridget's Doors](../concepts/bridgets-doors.md). | -| Medinner's show space | 52 | Reenacted Elliana, Avalina, burial, rooted woman, and robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Medinner's show space | 52 | Reenacted Eliana, Avalina, burial, rooted woman, and robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | | Chessboard space | 52 | Dice/card puzzle moved Geldrin and Dirk; lights appeared on a 20-square board. | Rollup. | | Darker-sky realm and storm | 52 | Bouncy-castle-feeling space where party moved by intent and Dotharl heard the tempting voice. | [Bridget's Doors](../concepts/bridgets-doors.md). | | Snowsoreen / order city | 52 | Named in questions about a trapped being and order. | [Sunsoreen / Snowscreen](sunsoreen.md). | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 378a92c..7574eac 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -98,7 +98,7 @@ sources: - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). -- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Eliana Hartwall / Kaylara](people/eliana-hartwall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index a2aaedb..dfdf664 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -92,8 +92,8 @@ sources: - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Harthall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -- `day-47`: In Harthall's lab, the party uncovers erased Harthall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s lion-headed father clue, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records the narrator as Elliana Harthall before the party returns and closes the fire elemental rift. -- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that the narrator is a Harthall. +- `day-47`: In Harthall's lab, the party uncovers erased Harthall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s lion-headed father clue, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records Eliana as Eliana Hartwall before the party returns and closes the fire elemental rift. +- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that Eliana is a Harthall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. - `day-53`: Bridget sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. -
8f8ed83Rename Envoi to Ennuyé and link Joy as his daughterby Laura Mostert
data/2-pages/13.txt | 2 +- data/2-pages/39.txt | 4 ++-- data/2-pages/44.txt | 12 +++++----- data/2-pages/45.txt | 2 +- data/2-pages/51.txt | 4 ++-- data/3-days/day-05.md | 2 +- data/3-days/day-15.md | 4 ++-- data/3-days/day-16.md | 18 +++++++------- data/4-days-cleaned/day-05.md | 6 ++--- data/4-days-cleaned/day-06.md | 2 +- data/4-days-cleaned/day-15.md | 12 +++++----- data/4-days-cleaned/day-16.md | 16 ++++++------- data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/day-57-coverage-audit.md | 2 +- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 4 ++-- data/6-wiki/clues/days-42-44-coverage-audit.md | 4 ++-- .../clues/known-passwords-and-inscriptions.md | 2 +- data/6-wiki/concepts/barrier.md | 2 +- data/6-wiki/index.md | 4 ++-- data/6-wiki/items/minor-items-day-46.md | 2 +- data/6-wiki/items/minor-items-days-42-44.md | 2 +- .../items/rings-of-joy-ennuy\303\251-and-dirk.md" | 18 +++++++------- .../items/tresmons-body-and-statue-artifacts.md | 2 +- data/6-wiki/open-threads.md | 6 ++--- data/6-wiki/people/azar-nuri.md | 2 +- data/6-wiki/people/brutor-ruby-eye.md | 2 +- data/6-wiki/people/edward-browning.md | 2 +- .../6-wiki/people/ennuy\303\251.md" | 28 ++++++++++++---------- data/6-wiki/people/joy.md | 9 +++---- data/6-wiki/people/minor-figures-day-57.md | 2 +- data/6-wiki/people/minor-figures-days-42-44.md | 4 ++-- data/6-wiki/people/silver.md | 2 +- data/6-wiki/people/status.md | 2 +- data/6-wiki/people/the-mother.md | 2 +- data/6-wiki/places/barrier-observatory.md | 2 +- .../places/coalmont-falls-and-asmoorade-prison.md | 2 +- data/6-wiki/places/desert-laboratory.md | 2 +- data/6-wiki/places/hidden-laboratory.md | 4 ++-- data/6-wiki/sources.md | 14 +++++------ data/6-wiki/timeline.md | 4 ++-- 40 files changed, 110 insertions(+), 107 deletions(-)Show diff
diff --git a/data/2-pages/13.txt b/data/2-pages/13.txt index fc598b9..80be10a 100644 --- a/data/2-pages/13.txt +++ b/data/2-pages/13.txt @@ -9,7 +9,7 @@ guess Tri-moon information. * Picture of a well groomed tiefling holding a baby girl (The Mage) on of the 5 who made the barrier -* Visage Envoi * +* Visage Ennuyé * * paper work looks recent, drawer has been forced open - diagrams of the stars diff --git a/data/2-pages/39.txt b/data/2-pages/39.txt index f759aa3..b3882f6 100644 --- a/data/2-pages/39.txt +++ b/data/2-pages/39.txt @@ -23,7 +23,7 @@ was to escape it would be him. feedback from the destruction of his prison would have damaged the others. Geldrin tells him of the tri-moon shard -Brutor knows of the first crack Envoi was tampering +Brutor knows of the first crack Ennuyé was tampering with it for his own means tampering with the containment device & if something happened to him it would be bad & cause the crack. @@ -41,4 +41,4 @@ Demi lich - how he was made. [boxed note] Winter Roses? -Envoi's password +Ennuyé's password diff --git a/data/2-pages/44.txt b/data/2-pages/44.txt index 1ee6383..f206ec3 100644 --- a/data/2-pages/44.txt +++ b/data/2-pages/44.txt @@ -10,18 +10,18 @@ smell like house scarred by acid & dwarf skeleton. - get one grand towers hall - see 4 other people in a circle around teleport circle - human (male), elf (female), human (female), very similar to the elf, -reef jewellery, stag design on dagger hilt, helping (Enoi) +reef jewellery, stag design on dagger hilt, helping (Ennuyé) purple crystal rises up from the circle. -- before acid splash house see tower talking to Enoin - asking about if it's affecting anything. +- before acid splash house see tower talking to Ennuyé - asking about if it's affecting anything. Joy sees of the alarm. Ruby eye takes the dagger & splatters blood and stops the alarm. "Just his blood?" -- before - thick white robes, Enoi talking to elven woman from circle. Joy feel content, -a dwarven lady next to him, but forlorn when looking over at Joy & Enoi. +- before - thick white robes, Ennuyé talking to elven woman from circle. Joy feel content, +a dwarven lady next to him, but forlorn when looking over at Joy & Ennuyé. -- Male dark elf next to Enoi being introduced - in observatory - tell Enoi she doesn't -trust him. Elf has magic. We don't see - craft flesh. Enoi wearing 5 rings. +- Male dark elf next to Ennuyé being introduced - in observatory - tell Ennuyé she doesn't +trust him. Elf has magic. We don't see - craft flesh. Ennuyé wearing 5 rings. - Hot Spring - opposite dwarf lady (Brookville Springs) early date - falling in love diff --git a/data/2-pages/45.txt b/data/2-pages/45.txt index 88c7e45..e9375bf 100644 --- a/data/2-pages/45.txt +++ b/data/2-pages/45.txt @@ -17,7 +17,7 @@ Early periods where he's protecting towns from elementals. group all fighting 6 armed rock creature when it breaks they all make a pact. -- Male human points him to a crater with a massive purple rock & Enoi says he will build +- Male human points him to a crater with a massive purple rock & Ennuyé says he will build an observatory to track it. Brutor says it is what they need. - Warring kingdoms - point together to construct everything. diff --git a/data/2-pages/51.txt b/data/2-pages/51.txt index 9b0e2d1..4ca152f 100644 --- a/data/2-pages/51.txt +++ b/data/2-pages/51.txt @@ -19,11 +19,11 @@ look like they would go over voids force field. 4. Book same lock as on the creepy skin book. made of leather - unpickable lock. -Room possibly storing one of Enoi's ring - it was under the skull. +Room possibly storing one of Ennuyé's ring - it was under the skull. skull is one of my kind - veridian dragon born, dead for approx 1 thousand years. -Enoi's ring +Ennuyé's ring - a sacrifice made to live eternal, father & daughter Book (writing around the edge) - old dead language diff --git a/data/3-days/day-05.md b/data/3-days/day-05.md index 2a2b5d0..9431d65 100644 --- a/data/3-days/day-05.md +++ b/data/3-days/day-05.md @@ -102,7 +102,7 @@ guess Tri-moon information. * Picture of a well groomed tiefling holding a baby girl (The Mage) on of the 5 who made the barrier -* Visage Envoi * +* Visage Ennuyé * * paper work looks recent, drawer has been forced open - diagrams of the stars diff --git a/data/3-days/day-15.md b/data/3-days/day-15.md index 32c0c32..3ab6784 100644 --- a/data/3-days/day-15.md +++ b/data/3-days/day-15.md @@ -80,7 +80,7 @@ was to escape it would be him. feedback from the destruction of his prison would have damaged the others. Geldrin tells him of the tri-moon shard -Brutor knows of the first crack Envoi was tampering +Brutor knows of the first crack Ennuyé was tampering with it for his own means tampering with the containment device & if something happened to him it would be bad & cause the crack. @@ -98,7 +98,7 @@ Demi lich - how he was made. [boxed note] Winter Roses? -Envoi's password +Ennuyé's password Page: 40 Source: data/1-source/IMG_5156.png diff --git a/data/3-days/day-16.md b/data/3-days/day-16.md index 9bb1835..3e6a795 100644 --- a/data/3-days/day-16.md +++ b/data/3-days/day-16.md @@ -194,18 +194,18 @@ smell like house scarred by acid & dwarf skeleton. - get one grand towers hall - see 4 other people in a circle around teleport circle - human (male), elf (female), human (female), very similar to the elf, -reef jewellery, stag design on dagger hilt, helping (Enoi) +reef jewellery, stag design on dagger hilt, helping (Ennuyé) purple crystal rises up from the circle. -- before acid splash house see tower talking to Enoin - asking about if it's affecting anything. +- before acid splash house see tower talking to Ennuyé - asking about if it's affecting anything. Joy sees of the alarm. Ruby eye takes the dagger & splatters blood and stops the alarm. "Just his blood?" -- before - thick white robes, Enoi talking to elven woman from circle. Joy feel content, -a dwarven lady next to him, but forlorn when looking over at Joy & Enoi. +- before - thick white robes, Ennuyé talking to elven woman from circle. Joy feel content, +a dwarven lady next to him, but forlorn when looking over at Joy & Ennuyé. -- Male dark elf next to Enoi being introduced - in observatory - tell Enoi she doesn't -trust him. Elf has magic. We don't see - craft flesh. Enoi wearing 5 rings. +- Male dark elf next to Ennuyé being introduced - in observatory - tell Ennuyé she doesn't +trust him. Elf has magic. We don't see - craft flesh. Ennuyé wearing 5 rings. - Hot Spring - opposite dwarf lady (Brookville Springs) early date - falling in love @@ -239,7 +239,7 @@ Early periods where he's protecting towns from elementals. group all fighting 6 armed rock creature when it breaks they all make a pact. -- Male human points him to a crater with a massive purple rock & Enoi says he will build +- Male human points him to a crater with a massive purple rock & Ennuyé says he will build an observatory to track it. Brutor says it is what they need. - Warring kingdoms - point together to construct everything. @@ -483,11 +483,11 @@ look like they would go over voids force field. 4. Book same lock as on the creepy skin book. made of leather - unpickable lock. -Room possibly storing one of Enoi's ring - it was under the skull. +Room possibly storing one of Ennuyé's ring - it was under the skull. skull is one of my kind - veridian dragon born, dead for approx 1 thousand years. -Enoi's ring +Ennuyé's ring - a sacrifice made to live eternal, father & daughter Book (writing around the edge) - old dead language diff --git a/data/4-days-cleaned/day-05.md b/data/4-days-cleaned/day-05.md index 77d3d97..65cd2b4 100644 --- a/data/4-days-cleaned/day-05.md +++ b/data/4-days-cleaned/day-05.md @@ -19,7 +19,7 @@ After a short rest, the party retrieved the horses and Cromwell, then headed bac The party learned or concluded that two twins had been commanding the affected people. One twin had gone to the swamp, and the other had gone to the Barrier; the party had killed the Barrier twin. The party then headed toward the swamp, following the tracks. They tied the horses outside the swamp. The tracks showed four individuals, and Geldrin's compass followed the same direction. By about 20:00, the party reached a clearing at the Barrier containing a stone building. A marble dome pressed against the Barrier, with a large telescope passing through the dome. The tracks led right up to the building. The structure was about 1,000 years old. A strange humming came from the door, which reverberated. -Inside the building were two plinths. One was empty, and one looked as if Core had been dismantled on it. A head clattered off and rolled through the left door. The party went through the door by the plinths into a library. The shelves showed that all books on one shelf were missing: the "T" shelf in Astronomy, guessed to be Tri-moon information. A picture showed a well-groomed tiefling holding a baby girl. This tiefling was identified as The Mage, one of the five who made the Barrier, with the name or title Visage Envoi. +Inside the building were two plinths. One was empty, and one looked as if Core had been dismantled on it. A head clattered off and rolled through the left door. The party went through the door by the plinths into a library. The shelves showed that all books on one shelf were missing: the "T" shelf in Astronomy, guessed to be Tri-moon information. A picture showed a well-groomed tiefling holding a baby girl. This tiefling was identified as The Mage, one of the five who made the Barrier, with the name or title Visage Ennuyé. The paperwork looked recent. One drawer had been forced open and contained diagrams of the stars. Another drawer held a rabbit/deer teddy. Inside the teddy was a gold-band ring with runes. The ring was similar to Dirk's, and Dirk saw the teddy back up [uncertain phrasing]. A vase bore the inscription: "part of me can be with you while you study all my love - Joy." @@ -29,7 +29,7 @@ The party found an invisible cloak on a hatstand and took it. Dirk put Geldrin o # People, Factions, and Places Mentioned -Dirk, Geldrin, Invar, Cromwell, Core, the halfling girl, two commanding twins, one Barrier twin, one swamp twin, The Mage, Visage Envoi, Joy, militia, townsfolk, shield pylons, the Barrier, the swamp, the stone observatory building, the marble dome, the library, and the Tri-moon. +Dirk, Geldrin, Invar, Cromwell, Core, the halfling girl, two commanding twins, one Barrier twin, one swamp twin, The Mage, Visage Ennuyé, Joy, militia, townsfolk, shield pylons, the Barrier, the swamp, the stone observatory building, the marble dome, the library, and the Tri-moon. # Items, Rewards, and Resources @@ -37,4 +37,4 @@ The party used carts and horses and hid a cart in trees. A sword was enchanted w # Clues, Mysteries, and Open Threads -The Barrier attack involved controlled militia and townsfolk, a sheep-farmer creature, a black dog thing, a maggot with a shriek that triggered further attacks, and two commanding twins. One twin went to the swamp and remains unresolved. The observatory is roughly 1,000 years old, built into or against the Barrier, and contains Tri-moon research. The missing "T" Astronomy books, recent star diagrams, and measurements showing the Tri-moon growing are significant. The Mage/Visage Envoi was one of the five Barrier creators and is tied to Joy. Joy's ring and Dirk's ring both reference bargains, pacts, darkness, sorrow, souls, infinity, and bringing Joy back. The disappearing hatstand, invisible cloak, handkerchief marked "J," and letter-opener-like dagger are unresolved magical or personal clues. +The Barrier attack involved controlled militia and townsfolk, a sheep-farmer creature, a black dog thing, a maggot with a shriek that triggered further attacks, and two commanding twins. One twin went to the swamp and remains unresolved. The observatory is roughly 1,000 years old, built into or against the Barrier, and contains Tri-moon research. The missing "T" Astronomy books, recent star diagrams, and measurements showing the Tri-moon growing are significant. The Mage/Visage Ennuyé was one of the five Barrier creators and is tied to Joy. Joy's ring and Dirk's ring both reference bargains, pacts, darkness, sorrow, souls, infinity, and bringing Joy back. The disappearing hatstand, invisible cloak, handkerchief marked "J," and letter-opener-like dagger are unresolved magical or personal clues. diff --git a/data/4-days-cleaned/day-06.md b/data/4-days-cleaned/day-06.md index 298b6a1..b46a01f 100644 --- a/data/4-days-cleaned/day-06.md +++ b/data/4-days-cleaned/day-06.md @@ -62,7 +62,7 @@ The party went to look at the moon and opened Maiden's Dew, a good wine. Through # People, Factions, and Places Mentioned -Dirk, Geldrin, Invar, Joy, Joy's father/Daddy, Daddy's creepy friend, Pelt, Musher, Garadwal [possible], horned mechanical hellraiser sphinx creature, Brownmity, [bucsalik], Core, Throngore, Igraine, Envoi/The Mage by implication, townsfolk, Grand Towers, Goldenswell, Arvoreds [uncertain], observatory, Barrier, shield pylons, Tri-moon, Joy's room, Joy's secret den, Joy's holy place, maintenance area, kitchen, library, riverbank shrine, lake, caverns, and towns/cities connected by summoning circle. +Dirk, Geldrin, Invar, Joy, Joy's father/Daddy, Daddy's creepy friend, Pelt, Musher, Garadwal [possible], horned mechanical hellraiser sphinx creature, Brownmity, [bucsalik], Core, Throngore, Igraine, Ennuyé/The Mage by implication, townsfolk, Grand Towers, Goldenswell, Arvoreds [uncertain], observatory, Barrier, shield pylons, Tri-moon, Joy's room, Joy's secret den, Joy's holy place, maintenance area, kitchen, library, riverbank shrine, lake, caverns, and towns/cities connected by summoning circle. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-15.md b/data/4-days-cleaned/day-15.md index fbf3969..e7243ff 100644 --- a/data/4-days-cleaned/day-15.md +++ b/data/4-days-cleaned/day-15.md @@ -22,11 +22,11 @@ Dirk asked whether crystals were helping the barrier. The Elementharium seemed t Dirk asked about Garadwal. The Elementharium went down to the chamber, retrieved a dwarf skull, and asked it the question about Garadwal. The skull replied, "The information you seek is not for your kind." It then said Garadwal was imprisoned in the Prison of the Sands. The skull was Brutor Ruby Eye, a knowledgeable being and wizard of great power. -The Elementharium showed the party the skull room, where he speaks to skulls for information. When asked what would happen if Garadwal escaped, Brutor answered that it would be bad indeed. The barrier would be weakened by the loss of one of the eight. Brutor said Garadwal was the only void they could find, and that if one of the eight were to escape, it would be him. The feedback from the destruction of his prison would have damaged the others. Geldrin told Brutor about the Tri-moon shard. Brutor knew of the first crack and said Envoi had been tampering with it for his own means, meddling with the containment device. If something happened to Envoi, it would be bad and could cause the crack. +The Elementharium showed the party the skull room, where he speaks to skulls for information. When asked what would happen if Garadwal escaped, Brutor answered that it would be bad indeed. The barrier would be weakened by the loss of one of the eight. Brutor said Garadwal was the only void they could find, and that if one of the eight were to escape, it would be him. The feedback from the destruction of his prison would have damaged the others. Geldrin told Brutor about the Tri-moon shard. Brutor knew of the first crack and said Ennuyé had been tampering with it for his own means, meddling with the containment device. If something happened to Ennuyé, it would be bad and could cause the crack. Brutor said the wizards did not agree about the entrapment of the elementals, but they all agreed that Garadwal needed to be contained. The ooze one was described as a good one. Ice and storm [crossed out] were placed in the same chamber because the land was tricky to dig. The party considered whether the leaking might be stopped by correcting sigils that were out of alignment. The notes also say Brutor was killed by the Black Dragon and identify him as a demi-lich, or mention how he was made. -The party considered whether there might be a way to reverse the polarity. They learned or recorded "Spinal" as Brutor's password. A boxed note also records "Winter Roses?" as Envoi's password. +The party considered whether there might be a way to reverse the polarity. They learned or recorded "Spinal" as Brutor's password. A boxed note also records "Winter Roses?" as Ennuyé's password. The party's broader thread list included halfling killers, eight things linked to the poles, pirates, and elementals. They also received a downpayment for their work: 50 per 200 gp [uncertain phrasing]. At 20:30 they put the horses into the stables and stayed at the Night Candles. @@ -38,8 +38,8 @@ The party's broader thread list included halfling killers, eight things linked t - Justicar: needed to be convinced that the crystals were helping the barrier so she would leave. - [Rhonati?] or Hevii: possible source of an obsidian bird for relaying a message. - Garadwal: said by Brutor to be imprisoned in the Prison of the Sands and also called the only void they could find. -- Brutor Ruby Eye: dwarf skull, knowledgeable being, powerful wizard, demi-lich, source of information about Garadwal, Envoi, and the containment system. -- Envoi: said to have tampered with the containment device for his own ends; linked to the first crack and a possible password, "Winter Roses?" +- Brutor Ruby Eye: dwarf skull, knowledgeable being, powerful wizard, demi-lich, source of information about Garadwal, Ennuyé, and the containment system. +- Ennuyé: said to have tampered with the containment device for his own ends; linked to the first crack and a possible password, "Winter Roses?" - Black Dragon: said to have killed Brutor. - Seaward: town where the party met the Elementharium and stayed the night. - Night Candles: inn or lodging where the party stayed. @@ -50,7 +50,7 @@ The party's broader thread list included halfling killers, eight things linked t - Obsidian bird: possible communication device held by [Rhonati?] or Hevii. - Crystals: suspected by Dirk and the Elementharium of helping the barrier. - Password "Spinal": recorded as Brutor's password. -- Password "Winter Roses?": boxed note, possibly Envoi's password. +- Password "Winter Roses?": boxed note, possibly Ennuyé's password. - Downpayment: recorded as "50 per 200g" [uncertain phrasing]. - Horses: put into the stables at 20:30. @@ -61,7 +61,7 @@ The party's broader thread list included halfling killers, eight things linked t - The Justicar's presence is considered a problem, and the party wants her to leave. - Brutor said Garadwal was the only void they could find, which complicates earlier associations of Garadwal with sand, earth, and fire. - The barrier depends on eight beings linked to poles; losing one would weaken it. -- Envoi tampered with the containment device, and something happening to him could have caused or worsened the first crack. +- Ennuyé tampered with the containment device, and something happening to him could have caused or worsened the first crack. - The wizards disagreed about elemental entrapment, but agreed Garadwal had to be contained. - Ice and storm may have been placed in the same chamber due to difficult land, though "storm" is crossed out in the raw notes. - Leaking prisons might be repairable if the sigils are out of alignment, or perhaps by reversing polarity. diff --git a/data/4-days-cleaned/day-16.md b/data/4-days-cleaned/day-16.md index ebda925..6bafacf 100644 --- a/data/4-days-cleaned/day-16.md +++ b/data/4-days-cleaned/day-16.md @@ -37,13 +37,13 @@ The teleportation circle activated. The party retrieved the crowbar and hid in t In the lounge, a scepter seemed out of place. Dirk took it, setting off an alarm. All doors became arcane locked. The party went back through the dwarf-face door. A mouth appeared and told them the traps were active. In the first room, ten skittles stood at the end of a lane, with a power table and a darts board holding three darts in the 20. The poker table was magical, and the whole room radiated magic. The next door opened into an apparently empty room. The next door triggered a silence spell, and the room was full of rows and rows of crystal balls, later understood as memories. In the lounge, they found a hidden box, and the silence spell stopped. They returned to the crystal ball room. -The crystal balls revealed many memories. One showed goliaths helping build the grand towers. The hall with the most scratched plinth held a memory filled with dread and the smell of acid: a house scarred by acid and a dwarf skeleton. Another grand towers hall showed four people around a teleportation circle: a human male, an elven female, a human female very similar to the elf, and someone with reef jewellery and a stag design on a dagger hilt, helping Envoi. A purple crystal rose from the circle. +The crystal balls revealed many memories. One showed goliaths helping build the grand towers. The hall with the most scratched plinth held a memory filled with dread and the smell of acid: a house scarred by acid and a dwarf skeleton. Another grand towers hall showed four people around a teleportation circle: a human male, an elven female, a human female very similar to the elf, and someone with reef jewellery and a stag design on a dagger hilt, helping Ennuyé. A purple crystal rose from the circle. -Another memory showed a tower before the acid-splashed house, with someone talking to Envoi and asking whether it was affecting anything. Joy set off the alarm. Ruby Eye took the dagger, splattered blood, and stopped the alarm, prompting the note "Just his blood?" A prior memory showed Envoi in thick white robes talking to the elven woman from the circle. Joy felt content. A dwarven lady was next to him, but was forlorn when looking at Joy and Envoi. Another memory showed a male dark elf next to Envoi being introduced in the observatory; someone told Envoi she did not trust him. The elf had magic, with a note "craft flesh." Envoi wore five rings. Another memory showed a hot spring, opposite the dwarf lady, at Brookville Springs, apparently an early date and falling in love. +Another memory showed a tower before the acid-splashed house, with someone talking to Ennuyé and asking whether it was affecting anything. Joy set off the alarm. Ruby Eye took the dagger, splattered blood, and stopped the alarm, prompting the note "Just his blood?" A prior memory showed Ennuyé in thick white robes talking to the elven woman from the circle. Joy felt content. A dwarven lady was next to him, but was forlorn when looking at Joy and Ennuyé. Another memory showed a male dark elf next to Ennuyé being introduced in the observatory; someone told Ennuyé she did not trust him. The elf had magic, with a note "craft flesh." Ennuyé wore five rings. Another memory showed a hot spring, opposite the dwarf lady, at Brookville Springs, apparently an early date and falling in love. One memory showed Ruby Eye standing in a room in his building with a purple dome and copper pylons around blackness and a shadow. He asked the shadow what it thought. The shadow replied that it would not cooperate while trapped and threatened calamity. Another memory in a nice room with intricate vine patterns showed an elven mage asking about a change. The answer was nothing. Browny had retreated to the grand towers. The dwarf was worried about it. The party interpreted a secret: Browning was going to cover it all up, believing that if people knew how it worked, they would ruin it. -The last memory showed Ruby Eye in a mirror wearing robes, with a book and chain or staff. He looked down beneath the mirror, where his hand on the floor opened stone to reveal a skull. He put two crystals in the chamber for protection. The party connected this to Pythus Aleyvarus, the blue dragon. They concluded Ruby Eye seemed to have planned the dome: five pylons and five more around the Grand Towers to make it work. Early memories showed him protecting towns from elementals. One memory showed a group fighting a six-armed rock creature; when it broke, they all made a pact. Another showed a male human pointing him to a crater with a massive purple rock, and Envoi saying he would build an observatory to track it. Brutor said it was what they needed. The notes mention warring kingdoms coming together to construct everything, including Huntwall, the goliath kingdom shown in the mini-dome, and [goblenswell]. When the dome was turned on, something flaming burst through, pouring through the barrier, and was attacked. +The last memory showed Ruby Eye in a mirror wearing robes, with a book and chain or staff. He looked down beneath the mirror, where his hand on the floor opened stone to reveal a skull. He put two crystals in the chamber for protection. The party connected this to Pythus Aleyvarus, the blue dragon. They concluded Ruby Eye seemed to have planned the dome: five pylons and five more around the Grand Towers to make it work. Early memories showed him protecting towns from elementals. One memory showed a group fighting a six-armed rock creature; when it broke, they all made a pact. Another showed a male human pointing him to a crater with a massive purple rock, and Ennuyé saying he would build an observatory to track it. Brutor said it was what they needed. The notes mention warring kingdoms coming together to construct everything, including Huntwall, the goliath kingdom shown in the mini-dome, and [goblenswell]. When the dome was turned on, something flaming burst through, pouring through the barrier, and was attacked. The room opposite held a large engineering astrolabe showing the planet, which appeared as a dish, and the moons in real-time orbit. At 15:00 the display showed the current date and time: 31st December 1011. @@ -67,7 +67,7 @@ The treasure was divided according to the agreement. Pythus took the creepy book The party returned to the void room. The void creature said it would tell them what was in its room in exchange for freedom, and that what was in the room would help release it. It said Ruby Eye wanted to live forever and went in with an elven woman and a dark male [uncertain: Envil]. The creature was only a fragment of the void, but if added to the others it could become more powerful, though only a tiny bit. Inside was a key that looked like pylons placed against a barrier: a copper circle that could be turned. The void talked as though the barrier was not active. The device seemed to be a pylon for its prison as well as [uncertain: ankhir]. -The party used the ruby to open the door and then planned to destroy it rather than give it to Ruby Eye, because he wanted to use it to become immortal as a demi-lich. Through the door next to the void were four plinths. By the door were four copper pylons that looked as though they would go over the void's force field. Two metal copper circles, one steering-wheel sized and one over a meter wide, were stored upright with runes around them. A dragon skull, about dog-sized and identified as Alsafaur, lay on another plinth. A book with the same lock as the creepy skin book was made of leather and had an unpickable lock. The room may have stored one of Envoi's rings under the skull. The skull was one of the void creature's kind, a veridian dragonborn, dead for about one thousand years. Envoi's ring was described as "a sacrifice made to live eternal, father & daughter." The book had writing around the edge in an old dead language and was called "The memoirs & learnings of Aldaine Hartwell." It needed a powerful identity spell to learn the command word to open the lock and book. +The party used the ruby to open the door and then planned to destroy it rather than give it to Ruby Eye, because he wanted to use it to become immortal as a demi-lich. Through the door next to the void were four plinths. By the door were four copper pylons that looked as though they would go over the void's force field. Two metal copper circles, one steering-wheel sized and one over a meter wide, were stored upright with runes around them. A dragon skull, about dog-sized and identified as Alsafaur, lay on another plinth. A book with the same lock as the creepy skin book was made of leather and had an unpickable lock. The room may have stored one of Ennuyé's rings under the skull. The skull was one of the void creature's kind, a veridian dragonborn, dead for about one thousand years. Ennuyé's ring was described as "a sacrifice made to live eternal, father & daughter." The book had writing around the edge in an old dead language and was called "The memoirs & learnings of Aldaine Hartwell." It needed a powerful identity spell to learn the command word to open the lock and book. Mosquitos, woodlice, and moths appeared, and a rain storm began. The void said it would help as long as it was not detained. A lightning strike was seen although the party was underground. They tried to let the void out. Pushing pylons against its dome caused opposite pylons to switch it off very slightly. A ring by the dome turned and attached to the pylon; one full turn released the dome in that quadrant. The void released a circle of obsidian that could be used to contact it. The party took its ring, book, and small ring, removed the gems from the moon-face lock, headed out, and closed the initial door behind them at 18:30. @@ -86,8 +86,8 @@ The party headed back to Newhaven with the cart. They went to a pub whose sign o - Pythus Aleyvarus: blue dragon in human desert robes; claimed not to work for the black dragon; collector of magical trinkets; took the creepy book and Celestial book; later scried in a sandstone cavern near Salvation. - Brutor Ruby Eye: abjuration wizard of Tor, creator or planner of the dome, demi-lich figure seeking immortality, source of memories and blood-hand alarm mechanism. - Tor: rock-associated divine or elemental figure represented by a jagged rock-man statue; "Tor Protects." -- Envoi / Enoi / Enoin [uncertain spelling]: central wizard figure in memories, wore five rings, planned an observatory for the purple rock, associated with Joy and the containment system. -- Joy: present in memories, set off the alarm, and seemed emotionally connected to Envoi. +- Ennuyé / Ennuyé / Ennuyé [uncertain spelling]: central wizard figure in memories, wore five rings, planned an observatory for the purple rock, associated with Joy and the containment system. +- Joy: present in memories, set off the alarm, and seemed emotionally connected to Ennuyé. - Browny / Browning [uncertain]: believed likely to cover up how the system worked. - Lord Hydrannis: associated with a containment token. - Ciara: fire god linked to the Spear of Ciara. @@ -132,7 +132,7 @@ The party headed back to Newhaven with the cart. They went to a pub whose sign o - Riddle gems: recovered from the celestial book plinth, kitchen, books, elemental room, orb room, calendar room, bedroom skull, and moon-face lock. - Scroll of teleportation: given by Pythus to Geldrin. - Void contact circle of obsidian: given or released by the void creature to contact it. -- Envoi's ring: found under the skull, tied to "a sacrifice made to live eternal, father & daughter." +- Ennuyé's ring: found under the skull, tied to "a sacrifice made to live eternal, father & daughter." - Leather book with unpickable lock: "The memoirs & learnings of Aldaine Hartwell," requiring a powerful identity spell to learn the command word. - Copper pylons and copper rings: used to manipulate the void creature's force field or prison. - Dragon skull of Alsafaur: given to the black dragon at the barrier. @@ -146,7 +146,7 @@ The party headed back to Newhaven with the cart. They went to a pub whose sign o - The model did not show prisons or labs, raising questions about deliberate omission or later construction. - Pythus claimed not to work for the black dragon but took dangerous books, including a human-flesh grimoire, and was later seen reading it near Salvation. - The memories suggest the barrier, Grand Towers, observatory, pact, purple rock, and elemental containment were planned together. -- Envoi's five rings and the ring found under Alsafaur's skull are important, but their full function is unresolved. +- Ennuyé's five rings and the ring found under Alsafaur's skull are important, but their full function is unresolved. - Browning may have deliberately erased or hidden knowledge of how the barrier works. - Ruby Eye may have used blood, sacrifice, a preserved hand, or family links in his alarm and immortality plans. - The six primeval elements in Geldrin's vision may explain the deeper cosmology behind the barrier. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index cd6d57d..bd15e84 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -49,7 +49,7 @@ sources: - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. - [Edward Browning](people/edward-browning.md): Edward Browning, Browning, Everard Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. -- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, The Mage, Visage Envoi. +- [Ennuyé](people/ennuyé.md): Ennuyé, Envoi, Enoi, Enoin, Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, The Mage, Visage Ennuyé. - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md index e37f544..70fffb0 100644 --- a/data/6-wiki/clues/day-57-coverage-audit.md +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -27,7 +27,7 @@ This audit checks the Day 57 cleaned mention sections against wiki coverage. Lin | Icefang, Bleakstorm, Mama Harthall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Mama Harthall/Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre / Altabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | | Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | -| Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Envoi](../people/envoi.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | +| Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Ennuyé](../people/ennuyé.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | | Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | | There, Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | | Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index 4dd3b2a..93916b6 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -17,7 +17,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Existing Pages Updated or Used -- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hartwall](../people/lady-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Envoi](../people/envoi.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). +- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hartwall](../people/lady-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Ennuyé](../people/ennuyé.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). ## Rollups Used @@ -29,7 +29,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I - Seneshell on `day-36` was not merged with Mr Seneshell / snake-bodied boss from `day-35`. - Carduneld / Cardunel was not silently merged with Valenth Cardonald beyond alias/search coverage. -- Envi in Coalmont Falls was not silently merged with Envoi despite existing alias overlap. +- Envi in Coalmont Falls was not silently merged with Ennuyé despite existing alias overlap. - Perodika is treated as likely related to Peridita because titles match, but the variant remains explicit. - Poison Dragon, female lake monstrosity, lithe veridian dragon, toothless/no-lip dragon, little dragon, and black smoke dragon were not merged with Peridita. - Sir [uncertain: Counting Fibo], [unclear] Cezzerliksygh, and [unclear] Neutron to chitra Entoldust Darkness Born retain uncertain names. diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 10c86b6..2e0ee01 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -21,7 +21,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | -| Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md); aliases and open threads updated. | +| Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md); aliases and open threads updated. | | Offering responses, statue inscriptions, Trixus ring inscription, Badger phrase | [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | | Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | | Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Heathwall, Emmerave and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | @@ -61,7 +61,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Valententhide / Valentenshide / Valentinheide / Valentenhule vs [Valenth Cardonald](../people/valenth-cardonald.md) | Kept separate and cross-linked. Day 44 strongly supports a high-sky / Bright's sister figure distinct from Cardonald, but older notes collide. | | Lute vs [Luth](../people/luth.md) | Not merged; Lute appears in a Ruby Eye cloak vision, while Luth is an existing Dunensend figure. | | Icefang / Altith / Atlih / Ice Fury | Preserved as variants or uncertain related names on [Icefang](../people/icefang.md); not normalized. | -| Emri / Emi vs [Envoi](../people/envoi.md) | Existing Envoi page updated for Envi/Envy; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | +| Emri / Emi vs [Ennuyé](../people/ennuyé.md) | Existing Ennuyé page updated for Envi/Envy; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | | Brotor vs Brutor Ruby Eye | Preserved as a context-dependent alias on Ruby Eye and [Void Spheres](../items/void-spheres.md), not treated as certain. | | Papa'e Munera / Papa I Meurina | Merged on [Papa'e Munera](../people/papae-munera.md) as likely but uncertain due earlier prison-name variant. | | Galimma / Peridot Queen vs Peridita / Poison Dragon | Kept separate, with cross-links and open questions. | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index a2d114e..1e842df 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -34,7 +34,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Phrase or code | Status | Source | Notes | |---|---|---|---| | `Spinal` | confirmed Brutor/lab password | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-16.md` | Opened the hidden laboratory outer door and internal dwarf-column door. | -| `Winter Roses?` | possible Envoi password | `data/4-days-cleaned/day-15.md` | Boxed note records this uncertainly as [Envoi](../people/envoi.md)'s password. | +| `Winter Roses?` | possible Ennuyé password | `data/4-days-cleaned/day-15.md` | Boxed note records this uncertainly as [Ennuyé](../people/ennuyé.md)'s password. | | Winter Rose | contact token or substance | `data/4-days-cleaned/day-17.md` | The Basilisk arranged a contact carrying Winter Rose; a hemp bag smelled like `[winter] Rose spice`, sickly sweet and narcotic-like. | | Core suits / golem room password | unknown | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-14.md` | `Joy` and `Tri-moon` failed; The Basilisk later could not access the golem underground room. | | Aldaine Hartwell book command word | unknown | `data/4-days-cleaned/day-16.md` | The locked memoirs/learnings book needs powerful identity magic to learn the command word. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index a3ae733..c0c258d 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -47,7 +47,7 @@ The Barrier is the central protective shield, dome, or containment system around ## Known Details - A state charter required sufficient militia near the Barrier. -- It was created by five figures including [Envoi](../people/envoi.md), with [Brutor Ruby Eye](../people/brutor-ruby-eye.md) heavily involved in containment and pylon plans. +- It was created by five figures including [Ennuyé](../people/ennuyé.md), with [Brutor Ruby Eye](../people/brutor-ruby-eye.md) heavily involved in containment and pylon plans. - It depends on eight beings or poles; one prison's escape weakens it. - Shield pylons and crystals regulate or focus it. - Attacks on it may speed the [Tri-moon Shard](../items/tri-moon-shard.md). diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 85599e6..0a735c5 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -71,7 +71,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Garadwal](people/garadwal.md) - [Brutor Ruby Eye](people/brutor-ruby-eye.md) -- [Envoi](people/envoi.md) +- [Ennuyé](people/ennuyé.md) - [Joy](people/joy.md) - [Infestus](people/infestus.md) - [Pythus Aleyvarus](people/pythus-aleyvarus.md) @@ -158,7 +158,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na ## Items -- [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md) +- [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md) - [Tri-moon Shard](items/tri-moon-shard.md) - [Shield Crystals](items/shield-crystals.md) - [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md) diff --git a/data/6-wiki/items/minor-items-day-46.md b/data/6-wiki/items/minor-items-day-46.md index 2e9d994..03b6448 100644 --- a/data/6-wiki/items/minor-items-day-46.md +++ b/data/6-wiki/items/minor-items-day-46.md @@ -24,7 +24,7 @@ sources: | Scratched Amoursorate orb | The only unlit orb after the creature fight; had a tiny scratch. | [Void Spheres](void-spheres.md), open thread. | | Rug saying `lost` | Found in multiple languages near the skull-and-ruby-eyes orb. | Rollup/open thread. | | Ruby messages | Errol hid Rubyeye/Squeal-related messages, including `loss of everything` and `Bread & Circus`. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md), open thread. | -| Lost ring | Put on Geldrin, then disappeared; Dirk lost compassion and Geldrin lost desire to learn. | [Rings of Joy, Envoi, and Dirk](rings-of-joy-envoi-and-dirk.md) / open thread. | +| Lost ring | Put on Geldrin, then disappeared; Dirk lost compassion and Geldrin lost desire to learn. | [Rings of Joy, Ennuyé, and Dirk](rings-of-joy-ennuyé-and-dirk.md) / open thread. | | Power armour suit | Checked and brought back to the map room with Dothral. | Party inventory / rollup. | | Deputy badges | Williams and Terrance were made clerical officers during the Riversmeet investigation. | Rollup. | | Sending stones | Used by spies and recovered from `I'm the Drink`; one half was given to the seneschal. | Rollup/status. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md index f0c3b60..4ec6cc4 100644 --- a/data/6-wiki/items/minor-items-days-42-44.md +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -11,7 +11,7 @@ sources: | Item or resource | Context | Outcome | |---|---|---| -| Envi's fifth ring, ring-reflection voice, three-ring attunement | Anastasia gave Dirk the fifth ring; Invar heard `ring of the betrayer`. | [Rings of Joy, Envoi, and Dirk](rings-of-joy-envoi-and-dirk.md), inventory/open thread. | +| Envi's fifth ring, ring-reflection voice, three-ring attunement | Anastasia gave Dirk the fifth ring; Invar heard `ring of the betrayer`. | [Rings of Joy, Ennuyé, and Dirk](rings-of-joy-ennuyé-and-dirk.md), inventory/open thread. | | Black-feather communication brick and bird | Three Finger Dune Shwelter's resistance communication device. | Party Inventory unclear custody / [Ashkellon](../places/ashkellon.md). | | Linen basket, dirty soap, new linen, towel pile, dagger in Araks's back | Ashkellon worker-rescue details. | Rollup/status. | | Domain of Pengalis Goliath coin, old tower coins, dragon bone-chip currency, Goliath / Brass City / Dumnen / Snow Sorrow currencies | Tower and treasure-hall currencies. | Party Treasury / rollup. | diff --git a/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md "b/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" similarity index 74% rename from data/6-wiki/items/rings-of-joy-envoi-and-dirk.md rename to "data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" index ca4950b..434efcc 100644 --- a/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md +++ "b/data/6-wiki/items/rings-of-joy-ennuy\303\251-and-dirk.md" @@ -1,10 +1,10 @@ --- -title: Rings of Joy, Envoi, and Dirk +title: Rings of Joy, Ennuyé, and Dirk type: item group aliases: - Joy's Teddy Ring - Dirk's Ring - - Envoi's ring + - Ennuyé's ring - Envi's fifth ring - ring of the betrayer first_seen: day-05 @@ -16,19 +16,19 @@ sources: - data/4-days-cleaned/day-42.md --- -# Rings of Joy, Envoi, and Dirk +# Rings of Joy, Ennuyé, and Dirk ## Summary -Several rune rings connect [Joy](../people/joy.md), [Envoi](../people/envoi.md), Dirk, pacts, souls, sacrifice, and possible immortality or cloning work. +Several rune rings connect [Joy](../people/joy.md), [Ennuyé](../people/ennuyé.md), Dirk, pacts, souls, sacrifice, and possible immortality or cloning work. ## Known Details - Joy's teddy ring was hidden in Mr Snuffles and read: `a pact in darkness made in sorrow to bring (no sharpness) back Joy`. - Dirk's similar ring read: `A Bargain struck in shadows for souls to be held in infinity`. - Dirk's ring glowed when placed on a statue with another ring. -- Envoi wore five rings. -- Envoi's small ring was described as `a sacrifice made to live eternal, father & daughter`. +- Ennuyé wore five rings. +- Ennuyé's small ring was described as `a sacrifice made to live eternal, father & daughter`. - On `day-42`, Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. - In Ashkellon, a voice addressed Invar as wearing `the ring of the betrayer`, and a featureless woman took damage in the ring's reflection. - Ruby Eye said the rings activate in `the Barrier` so Joy cannot leave and taught the party ring lore as proof of identity. @@ -37,20 +37,20 @@ Several rune rings connect [Joy](../people/joy.md), [Envoi](../people/envoi.md), - `day-05`: The party finds Joy's teddy ring and Dirk's similar ring becomes significant. - `day-06`: Ring, pact, clone, and Joy grave clues converge. -- `day-16`: Envoi's ring and five-ring history deepen the sacrifice theme. +- `day-16`: Ennuyé's ring and five-ring history deepen the sacrifice theme. - `day-42`: Envi's fifth ring, three-ring attunement, the `ring of the betrayer` voice, and Ruby Eye's Barrier activation explanation become active clues. ## Related Entries - [Joy](../people/joy.md) -- [Envoi](../people/envoi.md) +- [Ennuyé](../people/ennuyé.md) - [Barrier Observatory](../places/barrier-observatory.md) - [Barrier](../concepts/barrier.md) - [Valententhide / Valentenhule](../people/valententhide.md) ## Open Questions -- Did the rings bind souls, enable clones, preserve Envoi, resurrect Joy, or all of these? +- Did the rings bind souls, enable clones, preserve Ennuyé, resurrect Joy, or all of these? - Who was the other party to the bargain? - Why do the rings activate in the Barrier, and why does that prevent Joy from leaving? - Who is the betrayer named by the ring voice? diff --git a/data/6-wiki/items/tresmons-body-and-statue-artifacts.md b/data/6-wiki/items/tresmons-body-and-statue-artifacts.md index c911ae5..321c54c 100644 --- a/data/6-wiki/items/tresmons-body-and-statue-artifacts.md +++ b/data/6-wiki/items/tresmons-body-and-statue-artifacts.md @@ -38,7 +38,7 @@ Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identif - [Brass City Council](../factions/brass-city-council.md) - [Azar Nuri](../people/azar-nuri.md) - [Globule](../people/globule.md) -- [Envoi](../people/envoi.md) +- [Ennuyé](../people/ennuyé.md) - [Shield Crystals](shield-crystals.md) ## Open Questions diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index bf9e2b3..c87cf42 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -53,7 +53,7 @@ sources: # Open Threads - What exactly is [Garadwal](people/garadwal.md): void, sand, sphinx, elemental prisoner, or several overlapping descriptions? -- Who made the pact described by the [rings](items/rings-of-joy-envoi-and-dirk.md), and what did it do to Joy's soul or clones? +- Who made the pact described by the [rings](items/rings-of-joy-ennuyé-and-dirk.md), and what did it do to Joy's soul or clones? - Can the [Tri-moon Shard](items/tri-moon-shard.md) be repelled without dropping or fatally weakening the [Barrier](concepts/barrier.md)? - Are the [Elemental Prisons](concepts/elemental-prisons.md) justified containment, exploitation, or both? - Which eight beings or poles power the Barrier, and are Garadwal, Salias, the salt dragon, and the void fragment among them? @@ -76,7 +76,7 @@ sources: - Who or what sent the white powder visions of basilisk, salamanders, Arabic writing, white dragon, black void, cold blue eyes, and contradictory Freeport dreams? - What is the exact relationship between [Garadwal](people/garadwal.md), the Duncan people, the void lieutenant he consumed, Enwi's apprentice, and the dragon crash that weakened the prisons? - Which of the seven named prisons, five labs, Grand Towers levels, Goliath city, missing dwarf city, Goldenswell impact site, Riversmeet menagerie, and pylon-adjacent sites are still intact or compromised? -- Did [Envoi](people/envoi.md)'s life-force siphoning replicate across all prisons by design, sabotage, or later misuse, and can it be reversed without killing prisoners like Limnuvela? +- Did [Ennuyé](people/ennuyé.md)'s life-force siphoning replicate across all prisons by design, sabotage, or later misuse, and can it be reversed without killing prisoners like Limnuvela? - Who gave Anrasurall the Ice prison runes, what was he trying to free at [Rimewatch](places/rimewatch-ice-prison.md), and what are the hollow rocks or possible eggs near the burst entrance? - How did The Mother repurpose Envi's clone despite known clone limits, and what remains of her Carnamancy, cipher, spellbook, Baytail Accord plan, and link to Peridita or `Mother` warnings? - What does the Blackscale boss mean by needing the [Barrier](concepts/barrier.md) to keep his head in one place, and why was Blackscale using the party's kings as servants? @@ -123,7 +123,7 @@ sources: - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused the narrator's cracked-eggshell dragon dream and temporary mental-stat disadvantage? - What does Dirk's Goliath-and-fat-bellied-dragon dream mean about links to dragons, Goliaths, or ancestral figures? -- Is [Envoi](people/envoi.md) trapped, allied, hostile, or divided between Ruby Eye, Mama Harthall, the rings, and dark-demon deals? +- Is [Ennuyé](people/ennuyé.md) trapped, allied, hostile, or divided between Ruby Eye, Mama Harthall, the rings, and dark-demon deals? - What exact relationships connect [Peridita](people/peridita.md), Lortesh's children, Emeredge, Willow-wispa, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Lapis, Heady, Plague, and [Galimma](people/galimma-peridot-queen.md)? - What happened to resistance members who used Three Finger Dune Shwelter's black-feather communication device to contact the outside? - Did Badger survive after Ashkellon, and did the name `Badger born in freedom` become a real resistance symbol? diff --git a/data/6-wiki/people/azar-nuri.md b/data/6-wiki/people/azar-nuri.md index 4e748e4..e855c79 100644 --- a/data/6-wiki/people/azar-nuri.md +++ b/data/6-wiki/people/azar-nuri.md @@ -27,7 +27,7 @@ Azar Nuri is a massive horned fire-realm ruler who gave the party the tongs in e ## Related Entries -- [Envoi](envoi.md) +- [Ennuyé](ennuyé.md) - [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) - [Throngore](throngore.md) diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index b8eafa7..3a29ba1 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -87,7 +87,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - [Hidden Laboratory](../places/hidden-laboratory.md) - [Barrier](../concepts/barrier.md) - [Elemental Prisons](../concepts/elemental-prisons.md) -- [Envoi](envoi.md) +- [Ennuyé](ennuyé.md) - [Infestus](infestus.md) - [Cardonald's Desert Laboratory](../places/desert-laboratory.md) - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md index 79c2d1f..df03de0 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/edward-browning.md @@ -50,7 +50,7 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to ## Related Entries - [Valenth Cardonald](valenth-cardonald.md) -- [Envoi](envoi.md) +- [Ennuyé](ennuyé.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Excellences](../concepts/excellences.md) diff --git a/data/6-wiki/people/envoi.md "b/data/6-wiki/people/ennuy\303\251.md" similarity index 77% rename from data/6-wiki/people/envoi.md rename to "data/6-wiki/people/ennuy\303\251.md" index e3f350d..f271186 100644 --- a/data/6-wiki/people/envoi.md +++ "b/data/6-wiki/people/ennuy\303\251.md" @@ -1,14 +1,16 @@ --- -title: Envoi +title: Ennuyé type: person aliases: + - Ennuyé + - Envoi - Enoi - Enoin - Enwi - Envi - Ennui - The Mage - - Visage Envoi + - Visage Ennuyé first_seen: day-05 last_updated: day-57 sources: @@ -25,19 +27,20 @@ sources: - data/4-days-cleaned/day-57.md --- -# Envoi +# Ennuyé ## Summary -Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who made the [Barrier](../concepts/barrier.md), a likely father of [Joy](joy.md), and a source of containment tampering tied to the first crack. +Ennuyé, previously recorded as Envoi and uncertainly as Enoi or Enoin, was one of the figures who made the [Barrier](../concepts/barrier.md), Joy's father, and a source of containment tampering tied to the first crack. ## Known Details - He appears as a well-groomed tiefling in a picture holding a baby girl. +- He is Joy's father. - Observatory clues connect him to Joy, moon observation, rings, and repeated attempts to bring Joy back. -- Brutor's later lore says Envoi tampered with a containment device for his own means and that something happening to Envoi could have caused the first crack. -- Envoi wore five rings; one small ring was found with text about a sacrifice made to live eternal, father and daughter. -- A boxed note possibly records `Winter Roses?` as Envoi's password. +- Brutor's later lore says Ennuyé tampered with a containment device for his own means and that something happening to Ennuyé could have caused the first crack. +- Ennuyé wore five rings; one small ring was found with text about a sacrifice made to live eternal, father and daughter. +- A boxed note possibly records `Winter Roses?` as Ennuyé's password. - Day 23 identifies Enwi as one of the figures at the base of the Hephaestos statue and says Enwi was being protected by Goliaths. - Enwi's apprentice may have caused the end of Garadwal's sanity. - Enwi's spellbook was locked by one of Cardonal's creations and later attuned to Geldrin. @@ -53,10 +56,10 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma ## Timeline -- `day-05`: The party begins uncovering Envoi through observatory imagery and Joy clues. +- `day-05`: The party begins uncovering Ennuyé through observatory imagery and Joy clues. - `day-06`: Joy's rooms, rings, clone evidence, and observatory memories deepen his connection to Joy. -- `day-15`: Brutor's lore implicates Envoi in containment tampering and the first crack. -- `day-16`: The hidden lab shows Envoi memories, rings, and Barrier history. +- `day-15`: Brutor's lore implicates Ennuyé in containment tampering and the first crack. +- `day-16`: The hidden lab shows Ennuyé memories, rings, and Barrier history. - `day-23`: Cardonal's lab adds Enwi, Goliath protection, spellbook, apprentice, and Garadwal context. - `day-25`: Enwi's life-force siphoning is identified as a prison-system-wide weakness. - `day-26`: The Mother uses Envi's clone and cipher during the life-prison and Baytail Accord crisis. @@ -68,17 +71,16 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma ## Related Entries - [Joy](joy.md) -- [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md) +- [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md) - [Barrier Observatory](../places/barrier-observatory.md) - [Brutor Ruby Eye](brutor-ruby-eye.md) - [Tri-moon Shard](../items/tri-moon-shard.md) ## Open Questions -- Was Envoi definitely Joy's father? - What did the five rings do? - Did his attempt to save Joy damage the Barrier? -- Are Envoi, Enwi, Envi, and Ennui all the same person, or are some separate figures? +- Are Ennuyé, Enwi, Envi, and Ennui all the same person, or are some separate figures? - Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? - Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Mama Harthall? - Why does Envi have Tresmun's arm, and what does Azar Nuri expect him to do with it? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index 0f15863..dc83ff8 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -23,11 +23,12 @@ sources: ## Summary -Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observatory](../places/barrier-observatory.md), clone research, rings, repeated graves, and later invisible pain near the Barrier. +Joy was a tiefling child and daughter of [Ennuyé](ennuyé.md), connected to the [Barrier Observatory](../places/barrier-observatory.md), clone research, rings, repeated graves, and later invisible pain near the Barrier. ## Known Details - A vase reads, `part of me can be with you while you study all my love - Joy`. +- Ennuyé is Joy's father. - A hidden ring in Mr Snuffles reads: `a pact in darkness made in sorrow to bring (no sharpness) back Joy`. - Joy's diary records that she was bed-bound, cared for by robots, terminally ill, and disturbed by Daddy's creepy friend asking about the rings. - Six graves were all marked Joy, with clone-spell research nearby. @@ -47,14 +48,14 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - `day-05`: Joy is introduced through observatory visions, images, a teddy ring, and inscriptions. - `day-06`: Her diary, graves, clone chambers, and medical clues reveal repeated attempts to preserve or restore her. - `day-14`: Invisible Joy appears to Dirk in pain. -- `day-16`: Memories connect Joy directly to Envoi and alarm responses. +- `day-16`: Memories connect Joy directly to Ennuyé and alarm responses. - `day-26`: Valenth sees Joy leaving during an energy surge at Envi's lab. - `day-30`: A possible Joy-like tiefling child appears at Crater's Edge. ## Related Entries -- [Envoi](envoi.md) -- [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md) +- [Ennuyé](ennuyé.md) +- [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md) - [Barrier Observatory](../places/barrier-observatory.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md index 86133ad..610a2aa 100644 --- a/data/6-wiki/people/minor-figures-day-57.md +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -12,7 +12,7 @@ sources: | Infestus's wife | 57 | Gave the party a powerful shield crystal and scrolls, smashed an orb, and transformed a tiny human into a blue dragon for Brass City travel. | Rollup / [Infestus](infestus.md). | | Salinas | 57 | Infestus could ensure Salinas caused no issues during the treaty/council context. | Rollup. | | Excellence of Air / Air | 57 | Left Brass City and never returned; There says Air went to the dome to make a trap for Sierra so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | -| Envy | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envi/Envy remains uncertain. | [Envoi](envoi.md). | +| Envy | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envi/Envy remains uncertain. | [Ennuyé](ennuyé.md). | | Hydraxia | 57 | Named by the fountain water elemental before being given to blue dragons; relation to Hydran uncertain. | [Hydran / Hydram](hydran.md). | | Lord of the Brass City | 57 | Associated with weighted idols, jewellery, gravity, and weight in the statue corridor. | [Brass City](../places/brass-city.md). | | Goklhar | 57 | Possible high-priest reference near `Gleams in the first light`; spelling and identity uncertain. | Rollup. | diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index 3752fee..3f357c1 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -30,7 +30,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Orange-and-blue-robed dragonborn and book-carrying Goliath | Seen by Morgana in tower map room. | Rollup/open thread. | | Hephestus / Hephestos | Air-barrier prisoner or soul; warned not to free air entity and later wanted a pact. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | | Slen the librarian, The Exiled, Calameir, Blisk | Library and tower hierarchy figures while Willow-wispa was coming. | Rollup/open thread. | -| Emri / Emi and Joy | Ghost figures in dome; Emri requested Treamon's skull and lacked soul-parts. | Existing [Envoi](envoi.md) / [Joy](joy.md), status/open threads. | +| Emri / Emi and Joy | Ghost figures in dome; Emri requested Treamon's skull and lacked soul-parts. | Existing [Ennuyé](ennuyé.md) / [Joy](joy.md), status/open threads. | | Treamon / Tremaion, Kashe / Kesha, Tellfether, medusa, statue figure, child of the Mother, Thuvia, Brother fracture | Noxia chamber battle figures and tools. | Rollup; [Noxia](noxia.md); Brother Fracture existing status. | | Thromgore, Steven / Steve, Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | | [uncertain: Shulcher], Sierra, Earth Waker | Book and Noxia-corruption history figures. | Rollup/open thread; [Noxia](noxia.md). | @@ -42,7 +42,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Figure | Context | Outcome | |---|---|---| | Grimby the 3rd, kobold lieutenant, Klesha, lovely Envoy, Grimby's mother, Shriek | Kobold displacement story involving Pine Springs, townsfolk killing, Harthall-like words, and missing goat man. | Rollup/open thread. | -| Wroth, Envy / Envi, Mama Harthall | Wroth trapped Envy in Mama Harthall's head like Envy in Ruby Eye's. | Existing/rollup; [Envoi](envoi.md). | +| Wroth, Envy / Envi, Mama Harthall | Wroth trapped Envy in Mama Harthall's head like Envy in Ruby Eye's. | Existing/rollup; [Ennuyé](ennuyé.md). | | [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Harthall street, receipt, chess, pub, and church details. | Rollup/open thread. | | Dwarf blacksmith, golden dragonborn, vulture man, bushy-eared elf, pale dwarf with black dreadlocks and crown | Box and Benu-book scene figures. | Rollup; pale dwarf unresolved Ruby Eye lead. | | Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre / Altabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | diff --git a/data/6-wiki/people/silver.md b/data/6-wiki/people/silver.md index d4a2a4a..1c01876 100644 --- a/data/6-wiki/people/silver.md +++ b/data/6-wiki/people/silver.md @@ -28,7 +28,7 @@ Silver was a sentient or semi-sentient female automaton in Cardonald's desert la - [Cardonald's Desert Laboratory](../places/desert-laboratory.md) - [Valenth Cardonald](valenth-cardonald.md) -- [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md) +- [Rings of Joy, Ennuyé, and Dirk](../items/rings-of-joy-ennuyé-and-dirk.md) ## Open Questions diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 2bc29bd..4ff03b4 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -135,7 +135,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | | Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | The Basilisk reported all contact lost with Snow Sorrow and Perens going missing. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | missing / possibly off-plane | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Joy warned `they've got him`; after Ashkellon Ruby Eye was missing, out of Bleakstorm's sight, and Cardonald could not find him. | -| [Envoi](envoi.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tresmun's arm. | +| [Ennuyé](ennuyé.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tresmun's arm. | | Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | | Steven / Steve | missing from barrier after confrontation | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Thromgore's boy had helped contain Valentenhide and wanted to `Bob stuff`; later no longer in his barrier. | | Errol | missing / possibly off-plane | `data/4-days-cleaned/day-43.md` | Cardonald could not find Ruby Eye or Errol, perhaps because they were not on the same plane. | diff --git a/data/6-wiki/people/the-mother.md b/data/6-wiki/people/the-mother.md index aa898c2..0c41c5b 100644 --- a/data/6-wiki/people/the-mother.md +++ b/data/6-wiki/people/the-mother.md @@ -29,7 +29,7 @@ The Mother was a Carnamancy-linked antagonist who transformed the life prison in ## Related Entries -- [Envoi](envoi.md) +- [Ennuyé](ennuyé.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [The Pact](../factions/the-pact.md) diff --git a/data/6-wiki/places/barrier-observatory.md b/data/6-wiki/places/barrier-observatory.md index 05d9bbd..c288e03 100644 --- a/data/6-wiki/places/barrier-observatory.md +++ b/data/6-wiki/places/barrier-observatory.md @@ -37,7 +37,7 @@ The Barrier Observatory is an ancient stone and marble observatory built in tand ## Related Entries - [Joy](../people/joy.md) -- [Envoi](../people/envoi.md) +- [Ennuyé](../people/ennuyé.md) - [Tri-moon Shard](../items/tri-moon-shard.md) - [Salt Dragon Prison](salt-dragon-prison.md) - [Hidden Laboratory](hidden-laboratory.md) diff --git a/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md index 45afdca..20ea77d 100644 --- a/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md +++ b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md @@ -35,7 +35,7 @@ Coalmont Falls is a mining town where black water from a waterfall led the party - [Infestus](../people/infestus.md) - [Garadwal](../people/garadwal.md) -- [Envoi](../people/envoi.md) +- [Ennuyé](../people/ennuyé.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) diff --git a/data/6-wiki/places/desert-laboratory.md b/data/6-wiki/places/desert-laboratory.md index 45e92e8..85d7090 100644 --- a/data/6-wiki/places/desert-laboratory.md +++ b/data/6-wiki/places/desert-laboratory.md @@ -35,7 +35,7 @@ Cardonald's desert laboratory is an ancient automation and sentient-item site ti - [Valenth Cardonald](../people/valenth-cardonald.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) -- [Envoi](../people/envoi.md) +- [Ennuyé](../people/ennuyé.md) - [Garadwal](../people/garadwal.md) - [Elemental Prisons](../concepts/elemental-prisons.md) diff --git a/data/6-wiki/places/hidden-laboratory.md b/data/6-wiki/places/hidden-laboratory.md index ce2e9c2..a15e795 100644 --- a/data/6-wiki/places/hidden-laboratory.md +++ b/data/6-wiki/places/hidden-laboratory.md @@ -23,7 +23,7 @@ The hidden laboratory opened by `Spinal` preserves [Brutor Ruby Eye](../people/b - It contained a Tor lecture room, teleport circle, memory orbs, museum, pylon plans, void room, and Barrier devices. - It preserved Brutor's hand and blood-based protections. -- Memories showed the Barrier, Grand Towers, Envoi, Brutor, the Pact, a purple rock, and possible cover-ups. +- Memories showed the Barrier, Grand Towers, Ennuyé, Brutor, the Pact, a purple rock, and possible cover-ups. - A later old lab in a crater was found but inaccessible; it may or may not be the same laboratory network. - Browning's lab was later placed near Crater's Edge; Errol found Crater's Edge intact and very quiet, with a possible Joy-like tiefling child visible at midnight. @@ -36,7 +36,7 @@ The hidden laboratory opened by `Spinal` preserves [Brutor Ruby Eye](../people/b ## Related Entries - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) -- [Envoi](../people/envoi.md) +- [Ennuyé](../people/ennuyé.md) - [Infestus](../people/infestus.md) - [Noctus Cairinium Grimoire](../items/noctus-cairinium-grimoire.md) - [Barrier](../concepts/barrier.md) diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index f114ad2..378a92c 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -56,8 +56,8 @@ sources: - `data/4-days-cleaned/day-02.md`: [The Thornhollows Family](people/thornhollows-family.md), [The Chorus](people/the-chorus.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). - `data/4-days-cleaned/day-03.md`: [Hostel](places/hostel.md), [Militia](factions/militia.md), [Bug Hunter](people/bug-hunter.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). - `data/4-days-cleaned/day-04.md`: [Everchard](places/everchard.md), [Hostel](places/hostel.md), [Militia](factions/militia.md). -- `data/4-days-cleaned/day-05.md`: [Barrier Observatory](places/barrier-observatory.md), [Barrier](concepts/barrier.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md). -- `data/4-days-cleaned/day-06.md`: [Joy](people/joy.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier Observatory](places/barrier-observatory.md). +- `data/4-days-cleaned/day-05.md`: [Barrier Observatory](places/barrier-observatory.md), [Barrier](concepts/barrier.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md). +- `data/4-days-cleaned/day-06.md`: [Joy](people/joy.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier Observatory](places/barrier-observatory.md). - `data/4-days-cleaned/day-07.md`: [Militia](factions/militia.md), [Barrier](concepts/barrier.md), [Everchard](places/everchard.md). - `data/4-days-cleaned/day-08.md`: skipped because no cleaned day file exists. - `data/4-days-cleaned/day-09.md`: [Everchard](places/everchard.md), [Barrier Observatory](places/barrier-observatory.md). @@ -67,28 +67,28 @@ sources: - `data/4-days-cleaned/day-13.md`: [Seaward](places/seaward.md), [Shield Crystals](items/shield-crystals.md), [Barrier](concepts/barrier.md). - `data/4-days-cleaned/day-14.md`: [Salt Dragon Prison](places/salt-dragon-prison.md), [Underbelly](factions/underbelly.md), [Elemental Prisons](concepts/elemental-prisons.md), [Black Scales](factions/black-scales.md). - `data/4-days-cleaned/day-15.md`: [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Garadwal](people/garadwal.md), [Elemental Prisons](concepts/elemental-prisons.md). -- `data/4-days-cleaned/day-16.md`: [Hidden Laboratory](places/hidden-laboratory.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Infestus](people/infestus.md), [Pythus Aleyvarus](people/pythus-aleyvarus.md), [The Pact](factions/the-pact.md), [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md). +- `data/4-days-cleaned/day-16.md`: [Hidden Laboratory](places/hidden-laboratory.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Infestus](people/infestus.md), [Pythus Aleyvarus](people/pythus-aleyvarus.md), [The Pact](factions/the-pact.md), [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md). - `data/4-days-cleaned/day-17.md`: [The Pact](factions/the-pact.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Shard](items/tri-moon-shard.md). - `data/4-days-cleaned/day-18.md`: [Timeline](timeline.md), [Open Threads](open-threads.md). - `data/4-days-cleaned/day-19.md`: [Turisle Point](places/turisle-point.md), [Sahuagin/Fish Men](factions/sahuagin-fish-men.md), [Excellences](concepts/excellences.md). - `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). - `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). -- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Silver](people/silver.md), [Envoi](people/envoi.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Silver](people/silver.md), [Ennuyé](people/ennuyé.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-27.md`: [Dunensend](places/dunensend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-28.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). - `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hartwall](people/lady-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Ennuyé](people/ennuyé.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hartwall](people/lady-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hartwall](people/lady-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hartwall](people/lady-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). -- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hartwall](people/lady-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Ennuyé, and Dirk](items/rings-of-joy-ennuyé-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Ennuyé](people/ennuyé.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hartwall](people/lady-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 649915d..a2aaedb 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -53,7 +53,7 @@ sources: - `day-02`: The Thornhollows farm investigation expands into giant frogs, changed records, missing pigs, and links between Sarah Thornhollows and [The Chorus](people/the-chorus.md). - `day-03`: Wagon victims, animal-human beasts, militia involvement, and the [Hostel](places/hostel.md) reveal organized abductions and transformation work. - `day-04`: The party recovers townsfolk, confronts militia ledger fraud and the Earl's missing documents, and stabilizes Everchard enough for outside contact. -- `day-05`: Tracks lead toward the [Barrier Observatory](places/barrier-observatory.md), a Barrier attack begins, and the party starts uncovering Joy, Envoi, and Tri-moon clues. +- `day-05`: Tracks lead toward the [Barrier Observatory](places/barrier-observatory.md), a Barrier attack begins, and the party starts uncovering Joy, Ennuyé, and Tri-moon clues. - `day-06`: Inside the observatory, the party finds Joy's rooms, clone evidence, rings, the moon research, and Musher's connection to Garadwal. - `day-07`: The party returns rescued townsfolk to Everchard, coordinates with Thairwell militia, and confirms broader [Barrier](concepts/barrier.md) risk. - `day-08`: No cleaned day file exists in this build. @@ -64,7 +64,7 @@ sources: - `day-13`: Barrier flickers near Seaward are tracked toward the quarry and cliff-side disturbance. - `day-14`: The party enters the [Salt Dragon Prison](places/salt-dragon-prison.md), meets the [Underbelly](factions/underbelly.md), and learns of [Elemental Prisons](concepts/elemental-prisons.md), Garadwal, Salias, and the death dome. - `day-15`: Elementharium/Clementarium explains quasi-elementals, and [Brutor Ruby Eye](people/brutor-ruby-eye.md) becomes a major source of containment lore. -- `day-16`: The party opens [Hidden Laboratory](places/hidden-laboratory.md), sees memories of Brutor, Envoi, the Pact, the Barrier, and the void creature, then faces Infestus's agents. +- `day-16`: The party opens [Hidden Laboratory](places/hidden-laboratory.md), sees memories of Brutor, Ennuyé, the Pact, the Barrier, and the void creature, then faces Infestus's agents. - `day-17`: A security council discusses the Barrier, the party receives Brutor's skull, and warrants and suspicious shipments complicate the response. - `day-18`: The party travels toward Fairshaws/Fairport and the coast while the suspicious shipment thread continues. - `day-19`: The party sails on the Pride of the Penta Cities, fights Kairbidius's pirates, and reaches Turisle Point. -
ff69d30Rename Turtle Point to Turisle Pointby Laura Mostert
data/2-pages/59.txt | 2 +- data/2-pages/61.txt | 2 +- data/3-days/day-19.md | 4 ++-- data/4-days-cleaned/day-19.md | 8 ++++---- data/4-days-cleaned/day-20.md | 4 ++-- data/6-wiki/concepts/excellences.md | 4 ++-- data/6-wiki/events/tri-moon-countdown.md | 2 +- data/6-wiki/factions/sahuagin-fish-men.md | 4 ++-- data/6-wiki/factions/the-pact.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/people/shandra.md | 4 ++-- data/6-wiki/people/status.md | 2 +- data/6-wiki/places/{turtle-point.md => turisle-point.md} | 8 ++++---- data/6-wiki/sources.md | 2 +- data/6-wiki/timeline.md | 2 +- 15 files changed, 26 insertions(+), 26 deletions(-)Show diff
diff --git a/data/2-pages/59.txt b/data/2-pages/59.txt index e8fb5e5..c968481 100644 --- a/data/2-pages/59.txt +++ b/data/2-pages/59.txt @@ -14,7 +14,7 @@ Handblow Pistol of Never loading +1 (D8) noisy Retreat to cabin with a cask of rum. -Turtle Point - docks & nearby look like they could be +Turisle Point - docks & nearby look like they could be under water at some point - be back for 9am This is the only town on the Isle diff --git a/data/2-pages/61.txt b/data/2-pages/61.txt index ef14b5d..894a75a 100644 --- a/data/2-pages/61.txt +++ b/data/2-pages/61.txt @@ -12,7 +12,7 @@ be cross. & he will be worse. - think 6 armed creature will attack our ship for the weapons. -- go back to Turtle Point 12:00 +- go back to Turisle Point 12:00 Day 20 (Sunday) 4th Tan diff --git a/data/3-days/day-19.md b/data/3-days/day-19.md index 115f3fa..bb6fa2e 100644 --- a/data/3-days/day-19.md +++ b/data/3-days/day-19.md @@ -71,7 +71,7 @@ Handblow Pistol of Never loading +1 (D8) noisy Retreat to cabin with a cask of rum. -Turtle Point - docks & nearby look like they could be +Turisle Point - docks & nearby look like they could be under water at some point - be back for 9am This is the only town on the Isle @@ -149,5 +149,5 @@ be cross. & he will be worse. - think 6 armed creature will attack our ship for the weapons. -- go back to Turtle Point 12:00 +- go back to Turisle Point 12:00 diff --git a/data/4-days-cleaned/day-19.md b/data/4-days-cleaned/day-19.md index 158e85b..5052c46 100644 --- a/data/4-days-cleaned/day-19.md +++ b/data/4-days-cleaned/day-19.md @@ -21,7 +21,7 @@ Several passengers or figures were noted aboard the ship. A male half-elf in tra The pursuing ship drew closer. It had black sails with snake heads and seemed to be propelled by water rather than wind. Its pirate captain was Kairbidius, wearing a big-brimmed hat and worn, mismatched clothes. He called on Salinus and summoned salt elementals. The party killed Kairbidius and his crew. In reward, they received free passage on any of the ship operators' vessels, 400 gp, a scimitar +1 that can be attuned for water breathing, and a Handblow Pistol of Never Loading +1, a noisy d8 weapon. -After the fight, the party retreated to their cabin with a cask of rum. They later reached Turtle Point, where the docks and nearby areas looked as if they could be underwater at some point. They were told to be back for 9:00. Turtle Point was the only town on the isle, and turtle men appeared to be the locals. Directions were given to the Sailors Rest: third road left, third building. +After the fight, the party retreated to their cabin with a cask of rum. They later reached Turisle Point, where the docks and nearby areas looked as if they could be underwater at some point. They were told to be back for 9:00. Turisle Point was the only town on the isle, and turtle men appeared to be the locals. Directions were given to the Sailors Rest: third road left, third building. The party took a shrine tour. The shrine was to the Great Turtle, and the merfolk, called the accordsmouth, looked after the turtles. The locals believed they stood on the back of the Great Turtle. The turtles had a 200-year lifespan. Before the Barrier, the Great Turtle had come into this world while trying to escape his own realm. He had been trying to continue on his way, but picked the people up and was diverted into this world. He rooted his feet in the ground, and the locals believe he is still awake. The shrine was an elaborate fountain made from the same white stone as Seaward. A private shrine or shelter shrine was also mentioned, along with an unclear account that it had a multicore attack and then used his path as a combination of different animals. The water rises high during a Tri-moon and covers the area. @@ -31,11 +31,11 @@ Inside an otherwise empty tavern were four fish men attaching copper spear-heads The fish people discussed whether there was any sight of someone. A reply indicated failure: "boat" captured, he was thought dead, and the boat had been captured. They brought out the weapons and wondered whether they would be enough. Around 10:00, 11 fish people were carrying things, with 15 overall. A chariot was pulled by barnacled sea cows. Something approached with a hull, and a six-armed fish person on it skewered another fish person and ate it. -The six-armed creature stopped, smelled that it was being watched, and told the others to search for the party. It saw Geldrin and threw a trident at him. The creature liked being complimented, but also threatened to destroy everything. It said it needed all of something or the plan would not work, and that he would be cross, and "he will be worse." The party thought the six-armed creature would attack their ship for the weapons. They returned to Turtle Point at about 12:00. +The six-armed creature stopped, smelled that it was being watched, and told the others to search for the party. It saw Geldrin and threw a trident at him. The creature liked being complimented, but also threatened to destroy everything. It said it needed all of something or the plan would not work, and that he would be cross, and "he will be worse." The party thought the six-armed creature would attack their ship for the weapons. They returned to Turisle Point at about 12:00. # People, Factions, and Places Mentioned -Fairshaws, the harbour, the Pride of the Penta Cities, Cabin 17, Turtle Point, the Sailors Rest, Seaward, the old town, the Great Turtle, the Barrier, the hostess lady, Keely, the captain, Kairbidius, Salinus, merfolk, the accordsmouth, turtle men, pirates, salt elementals, fish men, the Boss or King, Kingly, Geldrin, the male half-elf passenger, the elderly dwarf woman, the silver dragonborn bard, barnacled sea cows, and the six-armed fish person or creature were all mentioned. +Fairshaws, the harbour, the Pride of the Penta Cities, Cabin 17, Turisle Point, the Sailors Rest, Seaward, the old town, the Great Turtle, the Barrier, the hostess lady, Keely, the captain, Kairbidius, Salinus, merfolk, the accordsmouth, turtle men, pirates, salt elementals, fish men, the Boss or King, Kingly, Geldrin, the male half-elf passenger, the elderly dwarf woman, the silver dragonborn bard, barnacled sea cows, and the six-armed fish person or creature were all mentioned. # Items, Rewards, and Resources @@ -43,4 +43,4 @@ The party received free passage on any of the relevant ships, 400 gp, a scimitar # Clues, Mysteries, and Open Threads -The pursuing pirate ship was propelled by water rather than wind and had black sails with snake heads. Merfolk said the flame attack from the buffet heat lamps had never happened before. Pirates had recently been attacking more people, and creatures capable of petrifying by sight were mentioned. Turtle Point's docks can apparently be covered by water, especially around the Tri-moon. The Great Turtle's origin from another realm and continued wakefulness remain important lore. The fish men were preparing copper weapons for a shipment, feared the Boss or King, and used a conch to summon Kingly. The six-armed creature threatened to destroy everything, wanted all of something for a plan, implied someone worse would be angry, and may have intended to attack the party's ship for the weapons. +The pursuing pirate ship was propelled by water rather than wind and had black sails with snake heads. Merfolk said the flame attack from the buffet heat lamps had never happened before. Pirates had recently been attacking more people, and creatures capable of petrifying by sight were mentioned. Turisle Point's docks can apparently be covered by water, especially around the Tri-moon. The Great Turtle's origin from another realm and continued wakefulness remain important lore. The fish men were preparing copper weapons for a shipment, feared the Boss or King, and used a conch to summon Kingly. The six-armed creature threatened to destroy everything, wanted all of something for a plan, implied someone worse would be angry, and may have intended to attack the party's ship for the weapons. diff --git a/data/4-days-cleaned/day-20.md b/data/4-days-cleaned/day-20.md index 6f8d73f..3e601ec 100644 --- a/data/4-days-cleaned/day-20.md +++ b/data/4-days-cleaned/day-20.md @@ -15,7 +15,7 @@ complete: true Day 20 was Sunday, 4th Tan, with 14 days until the Tri-moon. The party planned to go to Freeport instead of Baytrail Accord. They had identified a shipment from the Earl of Fairshaws to Malcolm Jeffries, using the same kind of boxes they had seen outside Seaward. They went to the barracks to tell the Pact; the picture outside matched the pub called The Pact. -The Pact leader in Turtle Point was Shandra. She explained that the Pact ensures the Pact's rules are followed and protects people who need it in exchange for protecting the Barrier. The party told her what had happened. The 10-foot, six-armed creature was identified as "An Excellence." The fish people were Sahuagin, written in the notes as "Saguine." Shandra's information came from Kiendra, leader of Dunhold Cache, who had been killed, or was believed killed. A Pact Scepter was discussed: one had been given to each of the wizards, and Shandra asked the party to keep it because it signified their side of the Pact. +The Pact leader in Turisle Point was Shandra. She explained that the Pact ensures the Pact's rules are followed and protects people who need it in exchange for protecting the Barrier. The party told her what had happened. The 10-foot, six-armed creature was identified as "An Excellence." The fish people were Sahuagin, written in the notes as "Saguine." Shandra's information came from Kiendra, leader of Dunhold Cache, who had been killed, or was believed killed. A Pact Scepter was discussed: one had been given to each of the wizards, and Shandra asked the party to keep it because it signified their side of the Pact. Shandra recommended speaking to the merfolk of Lake Azure for Dirk's city. For the shipment, she advised getting a smell unit. The Sahuagin had one of the scepter conches, of which only eight exist; this one was Kiendra's. The party asked The Basilisk whether he could get help to Shandra. One of the merfolk would come with the party. The Pact leader in Freeport was named Tiana. @@ -47,7 +47,7 @@ The party returned to Pirates Pearls Plundered. Guardfree said he would get his # People, Factions, and Places Mentioned -Freeport, Baytrail Accord, Seaward, Turtle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snow Sorrow or Snow-sorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, The Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. +Freeport, Baytrail Accord, Seaward, Turisle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snow Sorrow or Snow-sorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, The Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. # Items, Rewards, and Resources diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 8f5b763..8f8cbea 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -38,7 +38,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - Elven creation theology described six Excellences after light, dark, life, gods, and twelve gods. - Shandra identified a six-armed creature as an Excellence. -- One fish-like creature threatened destruction around the Turtle Point and Sahuagin crisis. +- One fish-like creature threatened destruction around the Turisle Point and Sahuagin crisis. - A fire Excellence was attacking Highden and hostile to elves. - The Huntmaster was later found fighting an Excellence, and the party recorded `Deed Excellence!` as defeat or deed against it. - Dunensend treated `agents of the excellence` as agents of Infestus. @@ -76,7 +76,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - [The Pact](../factions/the-pact.md) - [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) - [Shield Crystal Mission](../events/shield-crystal-mission.md) -- [Turtle Point](../places/turtle-point.md) +- [Turisle Point](../places/turisle-point.md) - [Dunensend](../places/dunensend.md) - [Elemental Prisons](elemental-prisons.md) diff --git a/data/6-wiki/events/tri-moon-countdown.md b/data/6-wiki/events/tri-moon-countdown.md index d95d32e..5a90757 100644 --- a/data/6-wiki/events/tri-moon-countdown.md +++ b/data/6-wiki/events/tri-moon-countdown.md @@ -21,7 +21,7 @@ The Tri-moon countdown tracks the approach of the Tri-moon and shard crisis, rea ## Known Details -- The Tri-moon affects water at Turtle Point, where locals expect high water. +- The Tri-moon affects water at Turisle Point, where locals expect high water. - The shard crisis requires a repelling device and may require the Barrier to go down. - The countdown moves through the coastal, Pact, and shield crystal mission sequence. - Chronology preserves a date discrepancy: day-21 metadata says `6th Jan 1002`, while day-22 says `6th Jan 1012`. diff --git a/data/6-wiki/factions/sahuagin-fish-men.md b/data/6-wiki/factions/sahuagin-fish-men.md index 844613f..45f27f7 100644 --- a/data/6-wiki/factions/sahuagin-fish-men.md +++ b/data/6-wiki/factions/sahuagin-fish-men.md @@ -20,7 +20,7 @@ The Sahuagin or fish men were assembling copper weapons, feared or followed Boss ## Known Details -- Fish people were found making copper weapons in old-town huts near Turtle Point. +- Fish people were found making copper weapons in old-town huts near Turisle Point. - They were connected to Kingly/Boss and an Excellence threat. - They had Kiendra's scepter conch. - The suspicious shipment thread included copper-tipped trident heads and waterproof paper for salt water only. @@ -34,7 +34,7 @@ The Sahuagin or fish men were assembling copper weapons, feared or followed Boss - [Kiendra](../people/kiendra.md) - [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) -- [Turtle Point](../places/turtle-point.md) +- [Turisle Point](../places/turisle-point.md) - [Excellences](../concepts/excellences.md) ## Open Questions diff --git a/data/6-wiki/factions/the-pact.md b/data/6-wiki/factions/the-pact.md index 07551ea..181bdaf 100644 --- a/data/6-wiki/factions/the-pact.md +++ b/data/6-wiki/factions/the-pact.md @@ -26,7 +26,7 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - It is linked to five wizards and a meeting at a Newhaven pub. - Shandra explained that it protects people in exchange for protecting the Barrier. -- Local leaders include Shandra at Turtle Point, Tiana/Taina in Freeport, and Alana by report. +- Local leaders include Shandra at Turisle Point, Tiana/Taina in Freeport, and Alana by report. - Pact artifacts include a Pact Scepter and eight scepter conches. - The security council and Grand Towers discussions rely on Pact history and responsibilities. - Merfolk outside the Barrier have an empire and diplomatic missions; Princess Aquunea/Aquana is associated with nobility beyond the Barrier. diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index fb00b90..85599e6 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -133,7 +133,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md) - [Dunensend](places/dunensend.md) - [Freeport](places/freeport.md) -- [Turtle Point](places/turtle-point.md) +- [Turisle Point](places/turisle-point.md) - [Dunhold Cache](places/dunhold-cache.md) - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md) - [Minor Places from Day 46](places/minor-places-day-46.md) diff --git a/data/6-wiki/people/shandra.md b/data/6-wiki/people/shandra.md index 3d50384..fdbb01a 100644 --- a/data/6-wiki/people/shandra.md +++ b/data/6-wiki/people/shandra.md @@ -11,7 +11,7 @@ sources: ## Summary -Shandra is a [Pact](../factions/the-pact.md) leader in Turtle Point who explained Pact responsibilities and entrusted or gave the Pact Scepter to the party. +Shandra is a [Pact](../factions/the-pact.md) leader in Turisle Point who explained Pact responsibilities and entrusted or gave the Pact Scepter to the party. ## Known Details @@ -28,4 +28,4 @@ Shandra is a [Pact](../factions/the-pact.md) leader in Turtle Point who explaine - [The Pact](../factions/the-pact.md) - [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) - [Excellences](../concepts/excellences.md) -- [Turtle Point](../places/turtle-point.md) +- [Turisle Point](../places/turisle-point.md) diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 4d1b7d6..2bc29bd 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -172,7 +172,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [The Chorus](the-chorus.md) | strange ally/source | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-07.md` | Explained memory magic and watched remaining people near the Barrier. | | [The Basilisk](the-basilisk.md) | recurring contact | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md`, `data/4-days-cleaned/day-23.md`, `data/4-days-cleaned/day-30.md` | Bodyguard to Lady Catherine Cole, arranging a Winter Rose contact; later receives party messages and may help with mage support. | | Elementharium/Clementarium | Seaward expert | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md` | Explained quasi-elementals and gave Ruby Eye skull. | -| [Shandra](shandra.md) | Turtle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | +| [Shandra](shandra.md) | Turisle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | | [Tiana/Taina](tiana-taina.md) | Freeport Pact leader/coordinator | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Coordinated forces against the Excellence. | | [Xinquiss/Zinquiss](xinquiss-zinquiss.md) | potion, shard, and auction contact | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-30.md`, `data/4-days-cleaned/day-31.md` | Helped with potions, joined sea operation, planned to auction the chariot, was tasked to retrieve the moon shard, and appeared at the auction with a cart. | | Jin-Loo | tortle teleport mage/contact | `data/4-days-cleaned/day-32.md` | Teleported the party to Goldenswell and left a ring so he could find them again. | diff --git a/data/6-wiki/places/turtle-point.md b/data/6-wiki/places/turisle-point.md similarity index 74% rename from data/6-wiki/places/turtle-point.md rename to data/6-wiki/places/turisle-point.md index a0c3500..0c7aba9 100644 --- a/data/6-wiki/places/turtle-point.md +++ b/data/6-wiki/places/turisle-point.md @@ -1,5 +1,5 @@ --- -title: Turtle Point +title: Turisle Point type: place first_seen: day-19 last_updated: day-20 @@ -8,11 +8,11 @@ sources: - data/4-days-cleaned/day-20.md --- -# Turtle Point +# Turisle Point ## Summary -Turtle Point is the only town on its isle, home to turtle men, the Great Turtle shrine, Pact barracks, underwater docks, and the start of the Sahuagin and Kiendra conch crisis. +Turisle Point is the only town on its isle, home to turtle men, the Great Turtle shrine, Pact barracks, underwater docks, and the start of the Sahuagin and Kiendra conch crisis. ## Known Details @@ -24,7 +24,7 @@ Turtle Point is the only town on its isle, home to turtle men, the Great Turtle ## Timeline - `day-19`: The party arrives after pirate attacks and learns Great Turtle lore. -- `day-20`: The Pact and Sahuagin threads deepen from Turtle Point. +- `day-20`: The Pact and Sahuagin threads deepen from Turisle Point. ## Related Entries diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 34dadf3..f114ad2 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -70,7 +70,7 @@ sources: - `data/4-days-cleaned/day-16.md`: [Hidden Laboratory](places/hidden-laboratory.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Infestus](people/infestus.md), [Pythus Aleyvarus](people/pythus-aleyvarus.md), [The Pact](factions/the-pact.md), [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md). - `data/4-days-cleaned/day-17.md`: [The Pact](factions/the-pact.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Shard](items/tri-moon-shard.md). - `data/4-days-cleaned/day-18.md`: [Timeline](timeline.md), [Open Threads](open-threads.md). -- `data/4-days-cleaned/day-19.md`: [Turtle Point](places/turtle-point.md), [Sahuagin/Fish Men](factions/sahuagin-fish-men.md), [Excellences](concepts/excellences.md). +- `data/4-days-cleaned/day-19.md`: [Turisle Point](places/turisle-point.md), [Sahuagin/Fish Men](factions/sahuagin-fish-men.md), [Excellences](concepts/excellences.md). - `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). - `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 94b5be5..649915d 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -67,7 +67,7 @@ sources: - `day-16`: The party opens [Hidden Laboratory](places/hidden-laboratory.md), sees memories of Brutor, Envoi, the Pact, the Barrier, and the void creature, then faces Infestus's agents. - `day-17`: A security council discusses the Barrier, the party receives Brutor's skull, and warrants and suspicious shipments complicate the response. - `day-18`: The party travels toward Fairshaws/Fairport and the coast while the suspicious shipment thread continues. -- `day-19`: The party sails on the Pride of the Penta Cities, fights Kairbidius's pirates, and reaches Turtle Point. +- `day-19`: The party sails on the Pride of the Penta Cities, fights Kairbidius's pirates, and reaches Turisle Point. - `day-20`: [The Pact](factions/the-pact.md), Freeport, the Baroness, Valenth/Velenth, Kiendra's stolen conch, and the shield crystal mission converge. - `day-21`: Regional crises escalate around Highden, Heartmoor, Provincia, the Grand Towers, and the sea shield crystal operation. - `day-22`: The underwater party fights at the [Shield Crystals](items/shield-crystals.md) site, rescues [Kiendra](people/kiendra.md), defeats an [Excellence](concepts/excellences.md), and recovers the [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md). -
3fd34d7Normalize Dunensend place namesby Laura Mostert
data/2-pages/102.txt | 4 ++-- data/2-pages/105.txt | 2 +- data/2-pages/106.txt | 4 ++-- data/2-pages/108.txt | 4 ++-- data/2-pages/110.txt | 2 +- data/2-pages/165.txt | 2 +- data/2-pages/207.txt | 2 +- data/2-pages/90.txt | 6 +++--- data/2-pages/91.txt | 2 +- data/2-pages/92.txt | 2 +- data/2-pages/94.txt | 2 +- data/3-days/day-26.md | 6 +++--- data/3-days/day-27.md | 6 +++--- data/3-days/day-29.md | 6 +++--- data/3-days/day-30.md | 8 ++++---- data/3-days/day-31.md | 2 +- data/3-days/day-41.md | 2 +- data/3-days/day-46.md | 2 +- data/4-days-cleaned/day-26.md | 6 +++--- data/4-days-cleaned/day-27.md | 10 +++++----- data/4-days-cleaned/day-28.md | 4 ++-- data/4-days-cleaned/day-29.md | 12 ++++++------ data/4-days-cleaned/day-30.md | 14 +++++++------- data/4-days-cleaned/day-31.md | 6 +++--- data/4-days-cleaned/day-41.md | 8 ++++---- data/4-days-cleaned/day-46.md | 6 +++--- data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- data/6-wiki/concepts/excellences.md | 6 +++--- data/6-wiki/index.md | 2 +- data/6-wiki/open-threads.md | 4 ++-- data/6-wiki/people/astraywoo.md | 4 ++-- data/6-wiki/people/benu.md | 14 +++++++------- data/6-wiki/people/garadwal.md | 2 +- data/6-wiki/people/lady-hartwall.md | 2 +- data/6-wiki/people/lady-r-beauchamp.md | 6 +++--- data/6-wiki/people/lortesh.md | 6 +++--- data/6-wiki/people/luth.md | 4 ++-- data/6-wiki/people/minor-figures-days-23-31.md | 8 ++++---- data/6-wiki/people/minor-figures-days-36-40-41.md | 2 +- data/6-wiki/people/morgana.md | 4 ++-- data/6-wiki/people/status.md | 4 ++-- data/6-wiki/people/the-basilisk.md | 4 ++-- data/6-wiki/people/the-mother.md | 2 +- data/6-wiki/places/{dunnersend.md => dunensend.md} | 20 +++++++++----------- data/6-wiki/places/minor-places-day-46.md | 2 +- data/6-wiki/places/minor-places-days-36-40-41.md | 2 +- data/6-wiki/sources.md | 10 +++++----- data/6-wiki/timeline.md | 10 +++++----- 50 files changed, 126 insertions(+), 128 deletions(-)Show diff
diff --git a/data/2-pages/102.txt b/data/2-pages/102.txt index add3ea1..9d86b04 100644 --- a/data/2-pages/102.txt +++ b/data/2-pages/102.txt @@ -14,7 +14,7 @@ wish they were killed out - one doesn't have legs invaders from the great Brass City - leader is a true salamander. From Fire plane. -En route to Dunnersend to see if issues are resolved +En route to Dunensend to see if issues are resolved statue incomplete. Kin looking for their thorn in their sides @@ -36,4 +36,4 @@ lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen sty Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. Goliaths came to him asking for help to trap his brother. we will protect him if we escort him to see the Dunners. -Doesn't want to go to Dunnersend after we told him about the automaton - may have something to show faith +Doesn't want to go to Dunensend after we told him about the automaton - may have something to show faith diff --git a/data/2-pages/105.txt b/data/2-pages/105.txt index 3748820..19952ae 100644 --- a/data/2-pages/105.txt +++ b/data/2-pages/105.txt @@ -9,7 +9,7 @@ Dirk takes skulls - Geldin finds 2 skulls in them. given to Invar. Dirk buries their dragon skulls. scour the beard & take back to town. Morgana notices the plants starting to grow. -Return to Dunnersend. Guards bang spears against shields. +Return to Dunensend. Guards bang spears against shields. go towards palace - townsfolk cheering & celebrating on the way, at the water gardens. Benu / mother / father are there. We get their support in wars to come. 19:00 - Bath house is outside of Dunnen rules for the night. diff --git a/data/2-pages/106.txt b/data/2-pages/106.txt index 5b973fa..54a9b0f 100644 --- a/data/2-pages/106.txt +++ b/data/2-pages/106.txt @@ -19,7 +19,7 @@ Our Council members on their way to Highden. Wrath to Valenthide. Xinquss to shield crystal. -Benu staying in Dunnersend will build a temple in city. +Benu staying in Dunensend will build a temple in city. father sent feelers to army - spare 100 troops for us. 30 skilled fighters, 70 conscripted. @@ -27,7 +27,7 @@ father sent feelers to army - spare 100 troops for us. obtained transport for all & 10 cavalry. scouts report similar sized army at the barrier. -Benu can message Cardenald - ask to meet 09:00 at Dunnersend - she will meet us there at the shrine. +Benu can message Cardenald - ask to meet 09:00 at Dunensend - she will meet us there at the shrine. see glinting in the sun - Cardenald. diff --git a/data/2-pages/108.txt b/data/2-pages/108.txt index d4057d4..53919ac 100644 --- a/data/2-pages/108.txt +++ b/data/2-pages/108.txt @@ -11,7 +11,7 @@ Back to Palace. Cardenald & Ruby eye back to Cardenald's lab to study & get supplies. Geldrin tries to find valententhide or goliath city in the library. -scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunnersend. Master Shined glass. +scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunensend. Master Shined glass. Goliath Capital - Ashktioth. Tradesmall - Goliath town. Valententhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). @@ -23,7 +23,7 @@ Lady unavailable fighting on front lines. count their money back. news this morning about village - no other news. Battle going badly. -soots bones - scholar from Dunnersend inspecting bones on behalf of Lady R. Beauchamp?!? - Blue Dragon?!? +soots bones - scholar from Dunensend inspecting bones on behalf of Lady R. Beauchamp?!? - Blue Dragon?!? Cardenald & Rubyeye come back - found 2x orbs & 2x scrolls of Counterspell. Errol going to Crater's Edge to see if actually Ash. diff --git a/data/2-pages/110.txt b/data/2-pages/110.txt index 04e1584..c1e8503 100644 --- a/data/2-pages/110.txt +++ b/data/2-pages/110.txt @@ -27,4 +27,4 @@ Dunnen Army kills the dragon. Elemental dies & says "You betray me, I was meant to avenge you". Kill it. -Dunnensend Army are successful. +Dunensend Army are successful. diff --git a/data/2-pages/165.txt b/data/2-pages/165.txt index 8f78f2a..2cefb99 100644 --- a/data/2-pages/165.txt +++ b/data/2-pages/165.txt @@ -37,7 +37,7 @@ transformed to Searu - her staff changes to one of her arrows. The Basilisk appears - we're nothing but trouble - Emmeraine is -under attack. - father @ Dunnensend mobilising army. Muthall +under attack. - father @ Dunensend mobilising army. Muthall mobilising to Emmeraine. Hearthsmoor fisherman, beast plaguing the town diff --git a/data/2-pages/207.txt b/data/2-pages/207.txt index d4dd5c2..0a68db7 100644 --- a/data/2-pages/207.txt +++ b/data/2-pages/207.txt @@ -17,7 +17,7 @@ to Evocation. Floor of the corridor between 3rd dorm & main hall seems to be covered in 4 rays from different areas: -- Dannersend - Orange with stained glass effect showing Garadwal +- Dunensend - Orange with stained glass effect showing Garadwal at one angle & can see the word "Terror". - Another copper with perfect concentric circles. - Another fur - white - like dog fur (Kite/ghost fur). diff --git a/data/2-pages/90.txt b/data/2-pages/90.txt index 77511c5..b10b8ba 100644 --- a/data/2-pages/90.txt +++ b/data/2-pages/90.txt @@ -15,19 +15,19 @@ Merfolk have a bird "Terry" messages 1. unprecedented amount of instability forces out enforcing city states no cause for concern 2. Noble council meeting all required on next Trimoon -3. Dunesend state - uncompliant - Not sent troops to fight giants +3. Dunensend state - uncompliant - Not sent troops to fight giants 4 Seaward barriers fixed by the gushiers - 2 seen an unknown one called Gendrin Geldrin furious! 5 Dukes on noble Council Freeport State - Duchess Lauleriere -Dunesend State - Duke Humbersinthesand +Dunensend State - Duke Humbersinthesand Hearthwall State - Duchess Hearthwall. Goldenswell State - Duke Norman Goldenswell Snowsorrow State - Duke Torrain Freefellow -Dunesend? Azureside on the edge of the state. +Dunensend? Azureside on the edge of the state. - Terry gets message from Erroll Valenth here - two way communication - something diff --git a/data/2-pages/91.txt b/data/2-pages/91.txt index 657a20c..0b3c31d 100644 --- a/data/2-pages/91.txt +++ b/data/2-pages/91.txt @@ -38,7 +38,7 @@ Garadwal possibly setting up another plan. - Cardenald to go to Salinas statue with Merfolk & destroy it. -Teleport to statue close to Dunesend +Teleport to statue close to Dunensend Giant statue of Serra. 2 guards at the statue. sphinx tabaxi ebony skin human. reptilian hide skin spears diff --git a/data/2-pages/92.txt b/data/2-pages/92.txt index 6c4da47..0eb3a40 100644 --- a/data/2-pages/92.txt +++ b/data/2-pages/92.txt @@ -3,7 +3,7 @@ Source: data/1-source/IMG_9755.jpg Transcription: -Head down to Dunesmead. Shines Blue/Orange very arabic style. +Head down to Dunensend. Shines Blue/Orange very arabic style. * townsfolk have many piercings - ear tunnel seems very natural. * guard approaches us - thinks we may require refuge diff --git a/data/2-pages/94.txt b/data/2-pages/94.txt index 8d0a2c8..b1e5762 100644 --- a/data/2-pages/94.txt +++ b/data/2-pages/94.txt @@ -35,7 +35,7 @@ get taken to a room. (Bird man's boss is in the Elven Ruins & is a 6 legged cat man) - only Elven Ruins we know of is grand towers or Valenth's Lab (not seen outside of -Valenth's Lab & Eroll flies off firewise from Dunesmead) +Valenth's Lab & Eroll flies off firewise from Dunensend) Search around the room - notice the soil is different so pull it out & a small mechanical spider diff --git a/data/3-days/day-26.md b/data/3-days/day-26.md index 921a4fa..2b40baf 100644 --- a/data/3-days/day-26.md +++ b/data/3-days/day-26.md @@ -285,19 +285,19 @@ Merfolk have a bird "Terry" messages 1. unprecedented amount of instability forces out enforcing city states no cause for concern 2. Noble council meeting all required on next Trimoon -3. Dunesend state - uncompliant - Not sent troops to fight giants +3. Dunensend state - uncompliant - Not sent troops to fight giants 4 Seaward barriers fixed by the gushiers - 2 seen an unknown one called Gendrin Geldrin furious! 5 Dukes on noble Council Freeport State - Duchess Lauleriere -Dunesend State - Duke Humbersinthesand +Dunensend State - Duke Humbersinthesand Hearthwall State - Duchess Hearthwall. Goldenswell State - Duke Norman Goldenswell Snowsorrow State - Duke Torrain Freefellow -Dunesend? Azureside on the edge of the state. +Dunensend? Azureside on the edge of the state. - Terry gets message from Erroll Valenth here - two way communication - something diff --git a/data/3-days/day-27.md b/data/3-days/day-27.md index a2a7611..a1b3bf0 100644 --- a/data/3-days/day-27.md +++ b/data/3-days/day-27.md @@ -46,7 +46,7 @@ Garadwal possibly setting up another plan. - Cardenald to go to Salinas statue with Merfolk & destroy it. -Teleport to statue close to Dunesend +Teleport to statue close to Dunensend Giant statue of Serra. 2 guards at the statue. sphinx tabaxi ebony skin human. reptilian hide skin spears @@ -55,7 +55,7 @@ reptilian hide skin spears ## Page 92 -Head down to Dunesmead. Shines Blue/Orange very arabic style. +Head down to Dunensend. Shines Blue/Orange very arabic style. * townsfolk have many piercings - ear tunnel seems very natural. * guard approaches us - thinks we may require refuge @@ -171,7 +171,7 @@ get taken to a room. (Bird man's boss is in the Elven Ruins & is a 6 legged cat man) - only Elven Ruins we know of is grand towers or Valenth's Lab (not seen outside of -Valenth's Lab & Eroll flies off firewise from Dunesmead) +Valenth's Lab & Eroll flies off firewise from Dunensend) Search around the room - notice the soil is different so pull it out & a small mechanical spider diff --git a/data/3-days/day-29.md b/data/3-days/day-29.md index 94fd0a6..53cd406 100644 --- a/data/3-days/day-29.md +++ b/data/3-days/day-29.md @@ -25,7 +25,7 @@ wish they were killed out - one doesn't have legs invaders from the great Brass City - leader is a true salamander. From Fire plane. -En route to Dunnersend to see if issues are resolved +En route to Dunensend to see if issues are resolved statue incomplete. Kin looking for their thorn in their sides @@ -47,7 +47,7 @@ lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen sty Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. Goliaths came to him asking for help to trap his brother. we will protect him if we escort him to see the Dunners. -Doesn't want to go to Dunnersend after we told him about the automaton - may have something to show faith +Doesn't want to go to Dunensend after we told him about the automaton - may have something to show faith ## Page 105 @@ -57,7 +57,7 @@ Dirk takes skulls - Geldin finds 2 skulls in them. given to Invar. Dirk buries their dragon skulls. scour the beard & take back to town. Morgana notices the plants starting to grow. -Return to Dunnersend. Guards bang spears against shields. +Return to Dunensend. Guards bang spears against shields. go towards palace - townsfolk cheering & celebrating on the way, at the water gardens. Benu / mother / father are there. We get their support in wars to come. 19:00 - Bath house is outside of Dunnen rules for the night. diff --git a/data/3-days/day-30.md b/data/3-days/day-30.md index 538ce7d..27b073a 100644 --- a/data/3-days/day-30.md +++ b/data/3-days/day-30.md @@ -43,7 +43,7 @@ Our Council members on their way to Highden. Wrath to Valenthide. Xinquss to shield crystal. -Benu staying in Dunnersend will build a temple in city. +Benu staying in Dunensend will build a temple in city. father sent feelers to army - spare 100 troops for us. 30 skilled fighters, 70 conscripted. @@ -51,7 +51,7 @@ father sent feelers to army - spare 100 troops for us. obtained transport for all & 10 cavalry. scouts report similar sized army at the barrier. -Benu can message Cardenald - ask to meet 09:00 at Dunnersend - she will meet us there at the shrine. +Benu can message Cardenald - ask to meet 09:00 at Dunensend - she will meet us there at the shrine. see glinting in the sun - Cardenald. @@ -102,7 +102,7 @@ Back to Palace. Cardenald & Ruby eye back to Cardenald's lab to study & get supplies. Geldrin tries to find valententhide or goliath city in the library. -scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunnersend. Master Shined glass. +scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunensend. Master Shined glass. Goliath Capital - Ashktioth. Tradesmall - Goliath town. Valententhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). @@ -114,7 +114,7 @@ Lady unavailable fighting on front lines. count their money back. news this morning about village - no other news. Battle going badly. -soots bones - scholar from Dunnersend inspecting bones on behalf of Lady R. Beauchamp?!? - Blue Dragon?!? +soots bones - scholar from Dunensend inspecting bones on behalf of Lady R. Beauchamp?!? - Blue Dragon?!? Cardenald & Rubyeye come back - found 2x orbs & 2x scrolls of Counterspell. Errol going to Crater's Edge to see if actually Ash. diff --git a/data/3-days/day-31.md b/data/3-days/day-31.md index 20f4a5a..9118d7b 100644 --- a/data/3-days/day-31.md +++ b/data/3-days/day-31.md @@ -91,7 +91,7 @@ Dunnen Army kills the dragon. Elemental dies & says "You betray me, I was meant to avenge you". Kill it. -Dunnensend Army are successful. +Dunensend Army are successful. ## Page 111 diff --git a/data/3-days/day-41.md b/data/3-days/day-41.md index 190e47b..567ce1f 100644 --- a/data/3-days/day-41.md +++ b/data/3-days/day-41.md @@ -158,7 +158,7 @@ transformed to Searu - her staff changes to one of her arrows. The Basilisk appears - we're nothing but trouble - Emmeraine is -under attack. - father @ Dunnensend mobilising army. Muthall +under attack. - father @ Dunensend mobilising army. Muthall mobilising to Emmeraine. Hearthsmoor fisherman, beast plaguing the town diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md index 4c833d6..905a394 100644 --- a/data/3-days/day-46.md +++ b/data/3-days/day-46.md @@ -138,7 +138,7 @@ to Evocation. Floor of the corridor between 3rd dorm & main hall seems to be covered in 4 rays from different areas: -- Dannersend - Orange with stained glass effect showing Garadwal +- Dunensend - Orange with stained glass effect showing Garadwal at one angle & can see the word "Terror". - Another copper with perfect concentric circles. - Another fur - white - like dog fur (Kite/ghost fur). diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md index 8e1e361..4af1f95 100644 --- a/data/4-days-cleaned/day-26.md +++ b/data/4-days-cleaned/day-26.md @@ -66,7 +66,7 @@ Hanna of Fishbait's Edge had little to report beyond colder weather and a few st Alana reported a break-in at the menagerie. Many things had been stolen, and the Magisters had issued fines for black-market animals. Geldrin thought of the farmer in Everchard. -The merfolk had a messenger bird named Terry. Terry carried messages: one said there was an unprecedented amount of instability and forces were out enforcing city-states with no cause for concern. Another said all were required at the noble council meeting on the next Trimoon. Another said Dunesend State was uncompliant because it had not sent troops to fight giants. Another said the Seaward barriers had been fixed by the gushiers; two were seen, plus an unknown one called Gendrin, which made Geldrin furious. There are five dukes on the noble council: Duchess Lauleriere of Freeport State, Duke Humbersinthesand of Dunesend State, Duchess Hearthwall of Hearthwall State, Duke Norman Goldenswell of Goldenswell State, and Duke Torrain Freefellow of Snowsorrow State. Azureside may be on the edge of Dunesend State. +The merfolk had a messenger bird named Terry. Terry carried messages: one said there was an unprecedented amount of instability and forces were out enforcing city-states with no cause for concern. Another said all were required at the noble council meeting on the next Trimoon. Another said Dunensend State was uncompliant because it had not sent troops to fight giants. Another said the Seaward barriers had been fixed by the gushiers; two were seen, plus an unknown one called Gendrin, which made Geldrin furious. There are five dukes on the noble council: Duchess Lauleriere of Freeport State, Duke Humbersinthesand of Dunensend State, Duchess Hearthwall of Hearthwall State, Duke Norman Goldenswell of Goldenswell State, and Duke Torrain Freefellow of Snowsorrow State. Azureside may be on the edge of Dunensend State. Terry received a message from Erroll, establishing two-way communication. Valenth was present and reported something going on: the place was lit up like a Christmas tree, the barrier was flickering, and an energy surge had started about half an hour earlier. The Mother had repurposed Envi's clone in Envi's lab. Valenth planned to investigate, then decided not to go. He heard a noise and saw Joy heading away, not to a specific circle. @@ -76,7 +76,7 @@ Dreams were discussed: over many years they could be saved, and many recent drea # People, Factions, and Places Mentioned -Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hearthwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunesend State, Hearthwall State, Goldenswell State, and Snowsorrow State were all mentioned. +Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hearthwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunensend State, Hearthwall State, Goldenswell State, and Snowsorrow State were all mentioned. # Items, Rewards, and Resources @@ -100,6 +100,6 @@ Baytail Accord believes a curse affects births outside or around the barrier: ou Azureside records say the Goliaths were wiped out by Green Dragons, with no contact for about 900 years. Perodita's new mate Kortesh Gravesings, also her son and called The Twisted, appears linked to monstrous green-dragon activity. Grand Towers did not respond to Azureside's call for help, and a Justicar had recently gone to Hearthmoor to check the plague. -Reports from the Pact leaders point to wider instability: colder weather and storms near Fishbait's Edge, lost loggers at Dine Springs, Baron attacks and nefarious Seaward shipments near Fairshore, a menagerie break-in and black-market animal fines, Dunesend not sending troops against giants, and unusual Seaward barrier repairs by gushiers including an unknown "Gendrin". The noble council meeting on the next Trimoon remains pending. +Reports from the Pact leaders point to wider instability: colder weather and storms near Fishbait's Edge, lost loggers at Dine Springs, Baron attacks and nefarious Seaward shipments near Fairshore, a menagerie break-in and black-market animal fines, Dunensend not sending troops against giants, and unusual Seaward barrier repairs by gushiers including an unknown "Gendrin". The noble council meeting on the next Trimoon remains pending. The party planned to go to the Salinas Statue to fix that, while Cardenald was back and the party's Freeport items were entrusted to Tiana. Dreams may have been saved over many years, with many recent dreams showing who the party are. diff --git a/data/4-days-cleaned/day-27.md b/data/4-days-cleaned/day-27.md index 6154139..1077261 100644 --- a/data/4-days-cleaned/day-27.md +++ b/data/4-days-cleaned/day-27.md @@ -19,7 +19,7 @@ complete: true Day 27 was Sunday, 11th Tan, with 7 days to Trimoon and 5 days to the auction. A note records "Gull level down". Geldrin needed 4-5 hours to calculate the shard's trajectory. Cardenald came to Baytail Accord and helped Geldrin calculate it. The shard would probably still hit Grand Towers if nothing changed. If the party stopped another shard, it would not be on course for ship 2. Garadwal was possibly setting up another plan. Cardenald was to go to the Salinas statue with merfolk and destroy it. -The party teleported to the statue close to Dunesend, a giant statue of Serra. Two guards were at the statue: one sphinx-tabaxi with ebony skin and human features, and another with reptilian hide skin and spears. At 12:00, the party headed down to Dunesmead, which shone blue and orange and had a very Arabic style. +The party teleported to the statue close to Dunensend, a giant statue of Serra. Two guards were at the statue: one sphinx-tabaxi with ebony skin and human features, and another with reptilian hide skin and spears. At 12:00, the party headed down to Dunensend, which shone blue and orange and had a very Arabic style. The townsfolk had many piercings, and ear tunnels seemed very natural. A guard approached the party, thinking they might require refuge. Gelinn or Geldrin might not write new spells because laws had been in place for 1,000 years. Refugees were housed in the water gardens. The rules were no alcohol, no spell writing, and no worship of liar or darkness. @@ -39,7 +39,7 @@ A blowpipe dart appeared in the bird-man's neck. A guard in the room started run The bird-man recognised the feathers. The attackers were after his master because the master had done something. One looked like Stilix, who was missing. He gave Eroll a message to the master. Two guards were present; one was letting the other speak and seemed off. Agugu was questioned and felt like metal underneath. When his arm was cut, he had a delayed reaction, then tried to run. The party grappled him. He said "unit compromised - core overload" and exploded, consuming the body completely. The party found fragments of a core cage. Agugu had a wife and had been around about 5 years. -The party was taken to a room. The bird-man's boss was in the Elven Ruins and was a six-legged cat-man. The only Elven Ruins known to the party were Grand Towers or Valenth's lab, and Eroll flew off firewise from Dunesmead. Searching the room, the party noticed soil that was different. When they pulled it out, a small mechanical spider came from the pot: an automaton, possibly an Eroll-type device. Eroll returned with mission success: the message had been delivered. +The party was taken to a room. The bird-man's boss was in the Elven Ruins and was a six-legged cat-man. The only Elven Ruins known to the party were Grand Towers or Valenth's lab, and Eroll flew off firewise from Dunensend. Searching the room, the party noticed soil that was different. When they pulled it out, a small mechanical spider came from the pot: an automaton, possibly an Eroll-type device. Eroll returned with mission success: the message had been delivered. A message from Cardenald reported that the Salt was sorted. Seaward should be fixed, but something else seemed to be affecting the barrier. He had to use magics and other means to get there quicker. Eroll had forgotten he gave the party the message. Dirk told the spider they could do with a chat. A Dunar guard knocked on the door and turned out to be another automaton. It did not know why it was there. The whole place was riddled with automatons. It was a prisoner, not part of the barrier, under Grand Towers, and not one of the three. The control room was completely empty of people. @@ -73,11 +73,11 @@ The Hard Cheese was a cafe down the road for people out of towers and sold booze # People, Factions, and Places Mentioned -Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunesend, Serra, Dunesmead, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Altarrb, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, The Basilisk, Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. +Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunensend, Serra, Dunensend, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Altarrb, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, The Basilisk, Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. # Items, Rewards, and Resources -The shard trajectory calculations required 4-5 hours and indicated Grand Towers remained threatened. The Salinas statue near Dunesend was targeted for destruction by Cardenald and the merfolk. Dunesmead's rules prohibited alcohol, spell writing, and worship of liar or darkness. The Hearth Master produced trade logs confirming the party's map. The party received feathers similar to arakobra feathers, a blowgun, fragments of a core cage from Agugu, and a small mechanical spider automaton from a pot. +The shard trajectory calculations required 4-5 hours and indicated Grand Towers remained threatened. The Salinas statue near Dunensend was targeted for destruction by Cardenald and the merfolk. Dunensend's rules prohibited alcohol, spell writing, and worship of liar or darkness. The Hearth Master produced trade logs confirming the party's map. The party received feathers similar to arakobra feathers, a blowgun, fragments of a core cage from Agugu, and a small mechanical spider automaton from a pot. The guilt placed a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It claimed it could reset the control room and would fix one prison to prove its help. The party chose Valenthide first. Geldrin's compass could detect automatons. A broken bowstring was found in Indanyu's room. The party learned of a box like the one from Gelissa, but not the same, held by Sister Proulsothight [uncertain]. The heat box was intercepted by the party, and The Basilisk had been looking for the box. Morgana carried two birds and had the pigeon that helped in Everchard. Morgana gave goodberries to heal refugees. The Hard Cheese sold booze. @@ -85,7 +85,7 @@ The guilt placed a golden ring on the bed with Abyssal writing: "He pride for a The shard would probably still hit Grand Towers unless something changed, and Garadwal may have been setting up another plan. Stopping another shard would alter the course for ship 2. Cardenald was sent with merfolk to destroy the Salinas statue, while Seaward was reported fixed but still affected by something else in the barrier. -Dunesmead was under multiple pressures: Vulturemen or Arahuoa assassins, fire demons, snake-lizard people, a moving fort in the desert, green dragon attacks, deaths in the city, and possible assassination of the Chancellor. The captured bird-man seemed innocent of the immediate crime but lied about whether his people were missing. Feather coloration may identify the true attackers. +Dunensend was under multiple pressures: Vulturemen or Arahuoa assassins, fire demons, snake-lizard people, a moving fort in the desert, green dragon attacks, deaths in the city, and possible assassination of the Chancellor. The captured bird-man seemed innocent of the immediate crime but lied about whether his people were missing. Feather coloration may identify the true attackers. The weird lion-woman Haemia, the automaton guard Agugu, and the mechanical spiders suggest multiple infiltrations at once. Agugu had existed as a guard with a wife for about 5 years before revealing metal underneath and exploding. The guilt said the whole place was riddled with automatons, that it was a prisoner under Grand Towers, not part of the barrier, not one of the three, and that the control room was empty of people. diff --git a/data/4-days-cleaned/day-28.md b/data/4-days-cleaned/day-28.md index 6525d36..8d71fcf 100644 --- a/data/4-days-cleaned/day-28.md +++ b/data/4-days-cleaned/day-28.md @@ -10,7 +10,7 @@ complete: true # Narrative -Day 28 was Monday, 12th Jan 1012, with 6 days to the Tri-moon and 4 days to the auction. Dirk woke with an uneasy feeling and felt something tugging at his brain, possibly a scrying spell. At 5:00, this sense of being watched or contacted was noted before the party's planned business in Dunnersend. +Day 28 was Monday, 12th Jan 1012, with 6 days to the Tri-moon and 4 days to the auction. Dirk woke with an uneasy feeling and felt something tugging at his brain, possibly a scrying spell. At 5:00, this sense of being watched or contacted was noted before the party's planned business in Dunensend. At 8:00, the party headed to the palace to meet the Huntsmistress for mounts and reports back from scouts. They arranged an extra mount for Morgana. The scouts brought worrying news: there was much animation around the statue, though the work was poorly done and its features could not be made out. The statue was surrounded by runes flashing red, and everyone around it seemed excited. There were about 40 Salamander men, the runes were red, and a few creatures made of fire were present. A purple-skinned creature with six arms and two tridents was also seen and identified in the notes as Excellence. @@ -30,7 +30,7 @@ The party went the other way and approached an oasis. The dragons seemed to be h # People, Factions, and Places Mentioned -Dunnersend palace, the grand towers, the dome, the workshop, the barrier network, Valenthide prison, the elven ruins, the Endless Dunes, the ruins, and the oasis were all mentioned. Dirk, Morgana, Geldrin, the Huntsmistress, Rubyeye, Valenth, Browning, Ennui, Pride, Cardenald, mother, the sister, the Vulture prisoner, the Vulture-man, Vulturemen, Haemia, athruygon? [uncertain name], Salamander men, fire creatures, Excellence, elves, scouts, dragons, a purple vision of a dragon, and one two-headed young adult dragon were also mentioned. +Dunensend palace, the grand towers, the dome, the workshop, the barrier network, Valenthide prison, the elven ruins, the Endless Dunes, the ruins, and the oasis were all mentioned. Dirk, Morgana, Geldrin, the Huntsmistress, Rubyeye, Valenth, Browning, Ennui, Pride, Cardenald, mother, the sister, the Vulture prisoner, the Vulture-man, Vulturemen, Haemia, athruygon? [uncertain name], Salamander men, fire creatures, Excellence, elves, scouts, dragons, a purple vision of a dragon, and one two-headed young adult dragon were also mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-29.md b/data/4-days-cleaned/day-29.md index f41d228..31f199f 100644 --- a/data/4-days-cleaned/day-29.md +++ b/data/4-days-cleaned/day-29.md @@ -14,15 +14,15 @@ complete: true Day 29 was Tuesday, 1st Tan 107 AT, with 5 days to Timnor and 5 days to the auction. The available notes begin with six red, lizard-headed, Salamander-like people. One had no legs. They were invaders from the great Brass City, from the Fire plane, and their leader was a true salamander. They wished their enemies had been killed out. -The party was en route to Dunnersend to see whether the issues there had been resolved. The statue was incomplete. The Salamander-like group spoke of kin looking for their thorn in their sides. Luth was hiding with the vulturemen, and they had heard he was alive in there, perhaps in the dome. The party had destroyed their plans waterwise. The Salamander-like group then went on their way. +The party was en route to Dunensend to see whether the issues there had been resolved. The statue was incomplete. The Salamander-like group spoke of kin looking for their thorn in their sides. Luth was hiding with the vulturemen, and they had heard he was alive in there, perhaps in the dome. The party had destroyed their plans waterwise. The Salamander-like group then went on their way. The party continued in the same direction and came across rocks like seaweed, but with a different vein colour. Pressing a rock caused a staircase to appear, opening into a large under-sand structure. Inside was a mosaic on the floor showing a lionin creature, a four-legged sphinx, a goat-headed sphinx, and a six-legged cat-like creature with a braided beard and Egyptian headdress. The central figure had a lion body, six limbs with hand-like feet, and was flanked on each side by six vulturemen wearing Dunnen-style clothes in an honour guard style. -Astraywoo bowed to the figure. Dirk greeted him as "Excellence", describing him as having the vultures under his wings to protect them after Gardwal failed. The party thought his brother was looking for him. The Goliaths had come to him asking for help to trap his brother. The party said they would protect him if they escorted him to see the Dunners. After being told about the automaton, he did not want to go to Dunnersend, but he may have had something to show faith. +Astraywoo bowed to the figure. Dirk greeted him as "Excellence", describing him as having the vultures under his wings to protect them after Gardwal failed. The party thought his brother was looking for him. The Goliaths had come to him asking for help to trap his brother. The party said they would protect him if they escorted him to see the Dunners. After being told about the automaton, he did not want to go to Dunensend, but he may have had something to show faith. The notes then jump because pages 103 and 104 were missing or unavailable. The next available material records a fight with Lortesh, ending with the party killing him. Dirk took skulls. Geldin found two skulls in them, which were given to Invar. Dirk buried their dragon skulls. The party scoured the beard and took it back to town. Morgana noticed the plants starting to grow. -The party returned to Dunnersend. Guards banged spears against shields as the party went toward the palace, and townsfolk cheered and celebrated along the way at the water gardens. Benu, mother, and father were present. The party received their support in wars to come. The time was 19:00. +The party returned to Dunensend. Guards banged spears against shields as the party went toward the palace, and townsfolk cheered and celebrated along the way at the water gardens. Benu, mother, and father were present. The party received their support in wars to come. The time was 19:00. For the night, the bath house was outside Dunnen rules. The party tried to procure beer, went to the Hunt & Hearth by mistake, and received free rooms. They needed to go to the Hard Cheese. They walked into the back room, got drinks for Arvel, got cheese, and retrieved Errol. @@ -32,12 +32,12 @@ Errol hopped onto a message table. A message or voice said, "make your decision # People, Factions, and Places Mentioned -Dunnersend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, The Basilisk, Anite!, the Dunners, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. +Dunensend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, The Basilisk, Anite!, the Dunners, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. # Items, Rewards, and Resources -The under-sand structure was opened by pressing a rock among seaweed-like rocks with a different vein colour. Its floor mosaic showed a lionin creature, sphinxes, a six-legged cat-like figure with a braided beard and Egyptian headdress, and vulturemen in Dunnen-style honour guard clothing. After Lortesh was killed, Dirk took skulls, Geldin found two skulls in them, and those were given to Invar. Dirk buried the dragon skulls. The party scoured the beard and took it back to town. They received support from Benu, mother, father, and the people at Dunnersend in wars to come. They also received free rooms at the Hunt & Hearth, got drinks for Arvel, and got cheese. +The under-sand structure was opened by pressing a rock among seaweed-like rocks with a different vein colour. Its floor mosaic showed a lionin creature, sphinxes, a six-legged cat-like figure with a braided beard and Egyptian headdress, and vulturemen in Dunnen-style honour guard clothing. After Lortesh was killed, Dirk took skulls, Geldin found two skulls in them, and those were given to Invar. Dirk buried the dragon skulls. The party scoured the beard and took it back to town. They received support from Benu, mother, father, and the people at Dunensend in wars to come. They also received free rooms at the Hunt & Hearth, got drinks for Arvel, and got cheese. # Clues, Mysteries, and Open Threads -Pages 103 and 104 were missing or unavailable, so the transition from the under-sand meeting with Excellence to the fight with Lortesh is incomplete. The identity and motives of the Salamander-like invaders from the great Brass City, their true salamander leader, and their reference to kin seeking "their thorn in their sides" remain open. Luth was reportedly alive and hiding with the vulturemen, possibly in the dome. Excellence protected the vultures after Gardwal failed, and his brother was apparently looking for him; the Goliaths had asked Excellence for help trapping that brother. Excellence was reluctant to go to Dunnersend after hearing about the automaton, though he may have had something to show faith. The Rhelmbreaker giant was spotted at Highden travelling waterwise. The message table incident with Errol preserved the strange statements "make your decision (Anite!)", an admission of mistakenly controlling the wizard and accidentally opening the prison, and happiness that the party killed the dragon and felt proud of themselves. +Pages 103 and 104 were missing or unavailable, so the transition from the under-sand meeting with Excellence to the fight with Lortesh is incomplete. The identity and motives of the Salamander-like invaders from the great Brass City, their true salamander leader, and their reference to kin seeking "their thorn in their sides" remain open. Luth was reportedly alive and hiding with the vulturemen, possibly in the dome. Excellence protected the vultures after Gardwal failed, and his brother was apparently looking for him; the Goliaths had asked Excellence for help trapping that brother. Excellence was reluctant to go to Dunensend after hearing about the automaton, though he may have had something to show faith. The Rhelmbreaker giant was spotted at Highden travelling waterwise. The message table incident with Errol preserved the strange statements "make your decision (Anite!)", an admission of mistakenly controlling the wizard and accidentally opening the prison, and happiness that the party killed the dragon and felt proud of themselves. diff --git a/data/4-days-cleaned/day-30.md b/data/4-days-cleaned/day-30.md index ba918f9..c2524cc 100644 --- a/data/4-days-cleaned/day-30.md +++ b/data/4-days-cleaned/day-30.md @@ -19,9 +19,9 @@ Hucan's ship had been attacked and rummaged in the night, and the party's cart h The moon shard had gone into the sea. Invar retrieved it and tried to take it back to the ground towers, while Xinquss had been tasked to retrieve it. Huan survived, but the ship was missing, with Census / Hydratrox noted beside that thread. Council members were on their way to Highden. Wrath was connected to Valenthide, and Xinquss was connected to the shield crystal. -Benu was staying in Dunnersend and would build a temple in the city. The party's father had sent feelers to the army and could spare 100 troops: 30 skilled fighters and 70 conscripts. The Huntmistress also provided 5 healers. Transport was obtained for everyone, along with 10 cavalry. Scouts reported a similar-sized army at the barrier. +Benu was staying in Dunensend and would build a temple in the city. The party's father had sent feelers to the army and could spare 100 troops: 30 skilled fighters and 70 conscripts. The Huntmistress also provided 5 healers. Transport was obtained for everyone, along with 10 cavalry. Scouts reported a similar-sized army at the barrier. -Benu could message Cardenald and ask her to meet at 09:00 in Dunnersend. Cardenald would meet them at the shrine, and the party saw her glinting in the sun. She had sent them a message that they had not received. She thought somebody was trying to get into her thoughts, though she had kept them out so far. She could also fix Errol. +Benu could message Cardenald and ask her to meet at 09:00 in Dunensend. Cardenald would meet them at the shrine, and the party saw her glinting in the sun. She had sent them a message that they had not received. She thought somebody was trying to get into her thoughts, though she had kept them out so far. She could also fix Errol. Salinay was sealed, and the barrier energy was depleted. Valententhide was identified as the cause. The Betrayer would be working on another body and would take 20-30 days. @@ -33,17 +33,17 @@ A message was sent to The Basilisk saying that the Guilt was Excellence and aski The party tried to see what the automaton, Galatrayer, was doing. Cardenald tapped into the one guarding Valententhide's prison and saw a stone room, with somebody there and out of focus. Valententhide might still be imprisoned, but Geldrin was not convinced. Groll wondered whether somebody was in Galatrayer's head: the overseer or the explorer. -The party returned to the palace. Cardenald and Rubyeye went back to Cardenald's lab to study and gather supplies. Geldrin searched the library for Valententhide or the Goliath city. A scholar described Goliath people from about 900 years ago and said Goliaths helped build Dunnersend. Master Shined glass was noted. The Goliath capital was Ashktioth, and Tradesmall was a Goliath town. In a book of fables, Valententhide should have been one of the 12 and was given the undesirable job of looking after dust; the apprentice became the god instead, connected to darkness. +The party returned to the palace. Cardenald and Rubyeye went back to Cardenald's lab to study and gather supplies. Geldrin searched the library for Valententhide or the Goliath city. A scholar described Goliath people from about 900 years ago and said Goliaths helped build Dunensend. Master Shined glass was noted. The Goliath capital was Ashktioth, and Tradesmall was a Goliath town. In a book of fables, Valententhide should have been one of the 12 and was given the undesirable job of looking after dust; the apprentice became the god instead, connected to darkness. -The army left at 16:00. Invar received a message back saying the Lady was unavailable because she was fighting on the front lines. They counted their money back. News that morning mentioned a village, but there was no other news, and the battle was going badly. Soots bones were being inspected by a scholar from Dunnersend on behalf of Lady R. Beauchamp?!?, with "Blue Dragon?!?" written beside it. +The army left at 16:00. Invar received a message back saying the Lady was unavailable because she was fighting on the front lines. They counted their money back. News that morning mentioned a village, but there was no other news, and the battle was going badly. Soots bones were being inspected by a scholar from Dunensend on behalf of Lady R. Beauchamp?!?, with "Blue Dragon?!?" written beside it. Cardenald and Rubyeye returned with 2 orbs and 2 scrolls of Counterspell. Errol went to Crater's Edge to see if it was actually ash. He returned reporting that Crater's Edge was intact and very quiet. It was late at night, around 24:00, and one person was looking out of a window: a tiefling child, possibly Joy. The note questions whether this was a trap. # People, Factions, and Places Mentioned -The Basilisk, Lady Hartwall, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunnersend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. +The Basilisk, Lady Hartwall, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunensend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. -Places mentioned include Dunnersend, the shrine, the barrier, the sea, the ground towers, the shield crystal, Highden, Craters Edge / Crater's Edge, Browning's lab, the Cheese shop, the palace, Cardenald's lab, the library, the Goliath Tower in the Oasis, the Goliath capital Ashktioth, and Tradesmall. +Places mentioned include Dunensend, the shrine, the barrier, the sea, the ground towers, the shield crystal, Highden, Craters Edge / Crater's Edge, Browning's lab, the Cheese shop, the palace, Cardenald's lab, the library, the Goliath Tower in the Oasis, the Goliath capital Ashktioth, and Tradesmall. # Items, Rewards, and Resources @@ -53,7 +53,7 @@ Counterspell scrolls were priced at 500g each, with 10g [unclear] also noted, an # Clues, Mysteries, and Open Threads -Messages were being intercepted, including a message from Cardenald that the party never received. Hucan's ship and the cart were rummaged, guards were found in a mess, battle plans were being leaked, and a betrayer was suspected. The blue dragon may be connected to the attack at Craters Edge, the leaked plans, and the inspection of soots bones by a Dunnersend scholar for Lady R. Beauchamp?!?. +Messages were being intercepted, including a message from Cardenald that the party never received. Hucan's ship and the cart were rummaged, guards were found in a mess, battle plans were being leaked, and a betrayer was suspected. The blue dragon may be connected to the attack at Craters Edge, the leaked plans, and the inspection of soots bones by a Dunensend scholar for Lady R. Beauchamp?!?. The moon shard, Invar's attempt to take it to the ground towers, and Xinquss's task to retrieve it remain important. Huan survived, but the ship was missing, with Census / Hydratrox recorded uncertainly. Cardenald believed someone was trying to enter her thoughts, though she had resisted so far. diff --git a/data/4-days-cleaned/day-31.md b/data/4-days-cleaned/day-31.md index ca929a4..9a48520 100644 --- a/data/4-days-cleaned/day-31.md +++ b/data/4-days-cleaned/day-31.md @@ -28,7 +28,7 @@ The bird was sent to the camp. Lortesh was described as "untruly end," and the p Goliaths began to be freed from their tents. Dirk's dad was a few tents away. Someone saw through an illusion and laughed because the caster had made themself look meaner. The attack began, with Goliaths attacking outside the tents. The Lord of Brass Citadel tried to go to the front line, and the narrator had to go with him. -A green dragon descended on the armies. "My Frizzlesing" was noted as a day of music and mirroring the surroundings, with "mirrors" crossed out. The Dunnersend army killed the dragon. An elemental died saying, "You betray me, I was meant to avenge you." The party killed it. The Dunnersend army was successful. +A green dragon descended on the armies. "My Frizzlesing" was noted as a day of music and mirroring the surroundings, with "mirrors" crossed out. The Dunensend army killed the dragon. An elemental died saying, "You betray me, I was meant to avenge you." The party killed it. The Dunensend army was successful. Dirk's dad was okay. Rubyeye took Valenta back to her lab to repair her, and they needed a few days to recuperate. The Excellence killed was the leader of the brass city. The Earth Excellence was Treamen, and a jagged purple crystal skull was recovered. Invar inspected it and found it was a magically crafted artifact, made from Treamen's skull and from [uncertain: shield] crystal. @@ -36,13 +36,13 @@ At 22:00, the party located a command tent and a locked chest. The chest contain Dirk's dad wanted to return to Salvation to rest and gather armies to attack the Goliath city with some of the Goliaths from the city. Zane Peacemaker Dirk was noted. It would take 5 days before they could get to the city. -The party checked on the dragon. Dunnersend soldiers were in a row beside it, and an officer with a mule-shift table and scales was handing out pieces to the army. The scales were devoid of flesh, as if carved. The dragon was the same size as the others but had bird claws for legs, and wings extending down its tail like Lortesh. +The party checked on the dragon. Dunensend soldiers were in a row beside it, and an officer with a mule-shift table and scales was handing out pieces to the army. The scales were devoid of flesh, as if carved. The dragon was the same size as the others but had bird claws for legs, and wings extending down its tail like Lortesh. The party asked for the dragon's head to be chopped off. Dirk questioned one of the city Goliaths. The Goliath said it was not a city. Rebels said they needed to take the tower, and the tower was in a field. The people had worked for the dragons for generations and believed the dragons were gods. Rebels had killed one of the young dragons, and she had killed 1,000 Goliaths in revenge. The questioned Goliath's job had been to tend the lizards that fed the dragons; otherwise, the Goliaths themselves would be food. His friends had called him Poolface, but he changed it to Thunder as a stronger name. # People, Factions, and Places Mentioned -Xinqus, Mirth, Geldrin, Invar, the Guilt, Lortesh, the sphinx, Dirk, Dirk's dad, Rubyeye, Valenta, Treamen, Zane Peacemaker Dirk, Poolface / Thunder, the human with a very noticeable underbelly, the barkeep with patches of night and husband, the Lord of Brass Citadel, the leader of the brass city, lord Searean, dragons, a green dragon, an elemental, Goliaths, rebels, Dunnersend soldiers, the Dunnersend army, an officer, armies, and a [uncertain: pigeon/aracock] were all mentioned. +Xinqus, Mirth, Geldrin, Invar, the Guilt, Lortesh, the sphinx, Dirk, Dirk's dad, Rubyeye, Valenta, Treamen, Zane Peacemaker Dirk, Poolface / Thunder, the human with a very noticeable underbelly, the barkeep with patches of night and husband, the Lord of Brass Citadel, the leader of the brass city, lord Searean, dragons, a green dragon, an elemental, Goliaths, rebels, Dunensend soldiers, the Dunensend army, an officer, armies, and a [uncertain: pigeon/aracock] were all mentioned. Places mentioned include the camp, the Statue, the Baked Mattress, the auction house, Azureside and the Retribution shrine, the brass city / Brass Citadel, Salvation, the Goliath city, the command tent, and the tower in a field. diff --git a/data/4-days-cleaned/day-41.md b/data/4-days-cleaned/day-41.md index c322d60..5376ebd 100644 --- a/data/4-days-cleaned/day-41.md +++ b/data/4-days-cleaned/day-41.md @@ -42,7 +42,7 @@ A tower appeared in the flames, with many green dragons flying and hundreds of G The old lady or leader had attacked the dragon once. She had respected the dragon and her churches. She transformed to Searu, and her staff changed into one of Searu's arrows. -The Basilisk appeared and said the party was nothing but trouble. Emmeraine was under attack. The father at Dunnensend was mobilising an army, and Muthall was mobilising to Emmeraine. A Hearthsmoor fisherman had reported a beast plaguing the town, and about an hour earlier four towers had sprung out of the ground, making a new barrier around Grand Towers. +The Basilisk appeared and said the party was nothing but trouble. Emmeraine was under attack. The father at Dunensend was mobilising an army, and Muthall was mobilising to Emmeraine. A Hearthsmoor fisherman had reported a beast plaguing the town, and about an hour earlier four towers had sprung out of the ground, making a new barrier around Grand Towers. Galdenseell was still not providing aid. All contact had been lost with Snow Sorrow, and Perens were going missing. The Basilisk had been contracted by an interested party who wished to lend her aid: the Peridot Queen. The Peridot Queen was out to get things for herself, so she would help only until something better came along. Agents in PineSprings had run into undead creatures. Godmount pills might help, though the note adds that "he's an idiot." The party did not think they should bring the barrier down. The Basilisk and the others would coordinate the defense of the other towns. The Basilisk would arrange to meet the Peridot Queen by Trade Smells and get Cardonald to come get the party and take them back to the army. @@ -52,11 +52,11 @@ Cardonald arrived, and the party teleported to the army. During sleep, the narra # People, Factions, and Places Mentioned -People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunnensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and the narrator who had the eggshell dragon dream. +People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and the narrator who had the eggshell dragon dream. Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snow Sorrow, Perens, The Basilisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. -Places mentioned include the town square, the tower, the cobbler's shop, Sunset Vista, Azureside, the Cheery & Cherry pub, the Pact Keeper's domain, the village being evacuated, Threeleigh, Donly, the horizon where the green shape appeared, the Aire, the Savannah, the hunters' encampment, the smallish settlement where a celebration was happening, the tower in the flames, the Goliath settlement below the tower, Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, Trade Smells, the army, a cave entrance in the dream, and the fire place associated with Searu's Arrow. +Places mentioned include the town square, the tower, the cobbler's shop, Sunset Vista, Azureside, the Cheery & Cherry pub, the Pact Keeper's domain, the village being evacuated, Threeleigh, Donly, the horizon where the green shape appeared, the Aire, the Savannah, the hunters' encampment, the smallish settlement where a celebration was happening, the tower in the flames, the Goliath settlement below the tower, Emmeraine, Dunensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, Trade Smells, the army, a cave entrance in the dream, and the fire place associated with Searu's Arrow. # Items, Rewards, and Resources @@ -96,7 +96,7 @@ The old lady / leader said a headlong attack was the wrong approach and that tho The leader had once attacked the dragon, had respected the dragon and her churches, and transformed to Searu. The link between Searu, the dragon's churches, Searu's Arrow, and the old lady's past attack remains unclear. -The Basilisk reported multiple simultaneous crises: Emmeraine under attack, the father at Dunnensend mobilising an army, Muthall mobilising to Emmeraine, a Hearthsmoor fisherman reporting a beast plaguing the town, and four towers rising around Grand Towers to make a new barrier. How these events connect to the green dragon, the Pacts, and the wider barrier crisis remains unresolved. +The Basilisk reported multiple simultaneous crises: Emmeraine under attack, the father at Dunensend mobilising an army, Muthall mobilising to Emmeraine, a Hearthsmoor fisherman reporting a beast plaguing the town, and four towers rising around Grand Towers to make a new barrier. How these events connect to the green dragon, the Pacts, and the wider barrier crisis remains unresolved. Galdenseell was still not providing aid. Contact with Snow Sorrow was lost, and Perens were going missing. Agents in PineSprings ran into undead creatures. The reasons for Galdenseell's refusal, Snow Sorrow's silence, the missing Perens, and the undead in PineSprings remain open. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index 1bafa05..0bec6e1 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -40,7 +40,7 @@ The party was then attacked and plunged into darkness. Willowispa attacked them, The basement contained a relief map, roughly from dome time, with eight divots around the outside, possibly for the orbs. Two doors stood to either side: one had no handle, and one had a handle but was magically trapped, with dried blood seeping underneath and a breaking head on the other side. Traps went off from the outside as designed. An antechamber had three doors. The people who had been in the room were dead, with evidence they had been trying to decipher the traps. Other wizards had apparently been ordered to get in at all costs and had spent twenty years trying to get through. Three were killed by the trap. There was no visible way into a plain room, though the wizards had broken through the ceiling. The party found a gap between the mortar that seemed to be a door but could not open it. -Through the hole, the party seemed to reach the third-year dorm, with about ten people sleeping there. They locked all the dorm doors and went to Evocation. The corridor floor between the third-year dorm and main hall was covered in four rays from different areas: an orange stained-glass-like ray from Dannersend showing Garadwal from one angle with the word "Terror" visible, a copper ray with perfect concentric circles, a white fur-like ray like dog or ghost fur, and a cheap-looking hexagonal design split into six primary and secondary colour segments. Pictures on the walls matched the rug styles: dark shirts, tabaxi or elves, a dwarf or copper dragonborn, and a tiny fluffling or thri-kreen male. A far rug was labelled "A gift from the Coppers." +Through the hole, the party seemed to reach the third-year dorm, with about ten people sleeping there. They locked all the dorm doors and went to Evocation. The corridor floor between the third-year dorm and main hall was covered in four rays from different areas: an orange stained-glass-like ray from Dunensend showing Garadwal from one angle with the word "Terror" visible, a copper ray with perfect concentric circles, a white fur-like ray like dog or ghost fur, and a cheap-looking hexagonal design split into six primary and secondary colour segments. Pictures on the walls matched the rug styles: dark shirts, tabaxi or elves, a dwarf or copper dragonborn, and a tiny fluffling or thri-kreen male. A far rug was labelled "A gift from the Coppers." The music room had a musical lock on the door up to Evocation. The classroom had been ransacked, but a large metal table remained intact with a circle of dark runes. The runes glowed when Geldrin approached with flint and steel. A copper-scaled dragonborn with a human-like head approached. The party subdued him, though no one could see him. He was a copper-goliath mix called one of the Tarnished, apparently the offspring of a prisoner and [unclear] sons. When the party fetched a rock from the excavation hole, a squid-headed man attacked and died. The party found a jellyfish brooch and a 5th-level scroll of Magic Missile. @@ -116,9 +116,9 @@ Bollar men were looking for the party. He agreed to help the militia and find th People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Elliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Enis, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Harthall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. -Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunnersend / Dannersend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. +Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunensend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. -Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Harthall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dannersend / Dunnersend, Tradesmells, Snowscreen, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Harthall's lab, the prisons, and Lord Bleakstorm's location. +Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Harthall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dunensend, Tradesmells, Snowscreen, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Harthall's lab, the prisons, and Lord Bleakstorm's location. Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the invisible entity, the 40-foot memory-destroying alien creature, spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child, undead sphinx, and possible tainted dragons. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 757ac25..cd6d57d 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -66,7 +66,7 @@ sources: - [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md): Pact Scepter, scepter conches, Kiendra's conch. - [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md): Noctus Cairinium Grimoire, Noch's Caardium, weird skin book, creepy book. - [The Thornhollows Family](people/thornhollows-family.md): Annabel/Annabella, Isabelle/Isabella, Clarabella/Clara bella/Cleara. -- [Dunnersend](places/dunnersend.md): Dunnersend, Dunesend, Dunesend State, Dunesmead, Dunnen, Dunengend [uncertain related place], Dunend [uncertain spelling]. +- [Dunensend](places/dunensend.md): Dunensend, Dunensend State, Dunnen, Dunengend [uncertain related place], Dunend [uncertain spelling]. - [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md): Rimewatch, Ice prison, Iceblus's prison, Iceland's prison, Howling Tombs, Rimewock prison. - [Lortesh](people/lortesh.md): Lortesh, Kortesh Gravesings, Hortekh, Uncle Hortekh, The Twisted. - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md): Xinquiss, Xinqus, Xinquss, Zinquiss. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index 648ec3d..f944f49 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -39,7 +39,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Riversmeet Menagerie / old mage school and internal rooms | Updated [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); room details in [Minor Places from Day 46](../places/minor-places-day-46.md). | | Harthall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | | Coalmount Hills portal | Preserved in cleaned narrative; existing prison/barrier context. | -| Dannersend / Dunnersend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pinesprings, Harthall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | +| Dunensend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pinesprings, Harthall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | | Salt pot safe, sequence `6/11/10/13/7`, beast ledger, Noxia necklace, relief map, musical lock, Evocation circle, jellyfish brooch, Magic Missile scroll, purple-crystal sword, note `propell`, snowglobe, cakes, potions, Storm Orb, mushroom pieces, Draconic warning, scratched Amoursorate orb, `lost` rug, ruby messages, lost ring, power armour, deputy badges, sending stones, jade resources, hexagon coins, dark grey rose, silver chain with green pendant, mirror | Added to [Minor Items from Day 46](../items/minor-items-day-46.md); Storm Orb and Amoursorate orb also updated in [Void Spheres](../items/void-spheres.md); Ruby messages updated in [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | | Spells, visions, and magical effects | Preserved in cleaned narrative; plot-bearing effects added to [Open Threads](../open-threads.md). | | Strategic resources and plans | Preserved in cleaned narrative; Harthall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index b85ee1c..10c86b6 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -59,7 +59,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Names | Decision | |---|---| | Valententhide / Valentenshide / Valentinheide / Valentenhule vs [Valenth Cardonald](../people/valenth-cardonald.md) | Kept separate and cross-linked. Day 44 strongly supports a high-sky / Bright's sister figure distinct from Cardonald, but older notes collide. | -| Lute vs [Luth](../people/luth.md) | Not merged; Lute appears in a Ruby Eye cloak vision, while Luth is an existing Dunnersend figure. | +| Lute vs [Luth](../people/luth.md) | Not merged; Lute appears in a Ruby Eye cloak vision, while Luth is an existing Dunensend figure. | | Icefang / Altith / Atlih / Ice Fury | Preserved as variants or uncertain related names on [Icefang](../people/icefang.md); not normalized. | | Emri / Emi vs [Envoi](../people/envoi.md) | Existing Envoi page updated for Envi/Envy; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | | Brotor vs Brutor Ruby Eye | Preserved as a context-dependent alias on Ruby Eye and [Void Spheres](../items/void-spheres.md), not treated as certain. | diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 6139065..8f5b763 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -41,11 +41,11 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - One fish-like creature threatened destruction around the Turtle Point and Sahuagin crisis. - A fire Excellence was attacking Highden and hostile to elves. - The Huntmaster was later found fighting an Excellence, and the party recorded `Deed Excellence!` as defeat or deed against it. -- Dunesmead treated `agents of the excellence` as agents of Infestus. +- Dunensend treated `agents of the excellence` as agents of Infestus. - The Guilt, a prisoner under Grand Towers, claimed it could reset the control room, fix a prison, and later was identified in notes as `an excellence!!`. - Pride was expected to fix a prison but may have opened it instead. - Excellence beneath the sands protected the vulturemen after Gardwal failed and may have a brother looking for him. -- The leader of the Brass City was an Excellence killed during the battle with Dunnersend forces. +- The leader of the Brass City was an Excellence killed during the battle with Dunensend forces. - Treamen was identified as the Earth Excellence; his jagged purple crystal skull artifact was recovered. - Day 32 records the party telling Xinquiss that the quilt might be an `excellence` or might be working for one. - A Hearthwall auction chariot was linked to an Excellence defeated in the `battle of the unending seas`. @@ -77,7 +77,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) - [Shield Crystal Mission](../events/shield-crystal-mission.md) - [Turtle Point](../places/turtle-point.md) -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Elemental Prisons](elemental-prisons.md) ## Open Questions diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 1fa1824..fb00b90 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -131,7 +131,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Hidden Laboratory](places/hidden-laboratory.md) - [Cardonald's Desert Laboratory](places/desert-laboratory.md) - [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md) -- [Dunnersend](places/dunnersend.md) +- [Dunensend](places/dunensend.md) - [Freeport](places/freeport.md) - [Turtle Point](places/turtle-point.md) - [Dunhold Cache](places/dunhold-cache.md) diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 26ddde9..bf9e2b3 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -82,7 +82,7 @@ sources: - What does the Blackscale boss mean by needing the [Barrier](concepts/barrier.md) to keep his head in one place, and why was Blackscale using the party's kings as servants? - Are [The Guilt](concepts/excellences.md), Pride, Wrath, Darkness, Light, Treamen, and the Brass City leader Excellences, prisoners, or overlapping titles for different ancient beings? - Why does The Guilt insist there should be five party members, and why did The Chorus send Morgana because visions went better with five? -- Who planted or operates the automaton infiltrators in [Dunnersend](places/dunnersend.md), and are Ennui, Browning, Cardenald, the overseer, explorer, Galatrayer, or Grand Towers control systems responsible? +- Who planted or operates the automaton infiltrators in [Dunensend](places/dunensend.md), and are Ennui, Browning, Cardenald, the overseer, explorer, Galatrayer, or Grand Towers control systems responsible? - What was in Sister Proulsothight's box like Gelissa's, why was The Basilisk seeking it while warning the party away, and why were wizards on the payroll? - Where is Luth hiding, what did [Lortesh](people/lortesh.md) want from the Goliaths and vultures, and what happened in the missing pages 103-104 before Lortesh died? - Who intercepted messages, attacked Hucan's ship and the cart, leaked battle plans, and may be connected to the blue dragon, Crater's Edge, Lady R. Beauchamp?!?, and the betrayer? @@ -118,7 +118,7 @@ sources: - What is the day-41 blocker that interfered with messages and teleportation, and does it share range or source with Perodika's ten-mile smoke influence? - What happened to Aurouze and his two companions after the Savannah hunt? - What trapped ally, corruptions, and Goliath resistance did [Searu](people/searu.md)'s flame vision point toward while the dragon was away? -- What are the simultaneous day-41 crises at Emmeraine, Dunnensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? +- What are the simultaneous day-41 crises at Emmeraine, Dunensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? - What price or betrayal risk comes with the Peridot Queen's aid through The Basilisk? - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused the narrator's cracked-eggshell dragon dream and temporary mental-stat disadvantage? diff --git a/data/6-wiki/people/astraywoo.md b/data/6-wiki/people/astraywoo.md index 17ba653..b686f01 100644 --- a/data/6-wiki/people/astraywoo.md +++ b/data/6-wiki/people/astraywoo.md @@ -14,7 +14,7 @@ sources: ## Summary -Astraywoo is an uncertain named figure associated with the vulturemen and the under-sand Excellence near Dunnersend. +Astraywoo is an uncertain named figure associated with the vulturemen and the under-sand Excellence near Dunensend. ## Known Details @@ -24,7 +24,7 @@ Astraywoo is an uncertain named figure associated with the vulturemen and the un ## Related Entries -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Excellences](../concepts/excellences.md) ## Open Questions diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md index 9edadab..6a48180 100644 --- a/data/6-wiki/people/benu.md +++ b/data/6-wiki/people/benu.md @@ -17,13 +17,13 @@ sources: ## Summary -Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), the elves, and the great tower. +Benu is a Dunensend ally or authority figure later revealed as one of Altabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), the elves, and the great tower. ## Known Details -- After Lortesh was killed, Benu was present with mother and father when Dunnersend pledged support in wars to come. -- Benu stayed in Dunnersend and planned to build a temple in the city. -- Benu could message Cardenald and ask her to meet at the Dunnersend shrine. +- After Lortesh was killed, Benu was present with mother and father when Dunensend pledged support in wars to come. +- Benu stayed in Dunensend and planned to build a temple in the city. +- Benu could message Cardenald and ask her to meet at the Dunensend shrine. - Benu could create a hero's feast before the army moved. - Day 42 found an out-of-place picture of Benu / Guradwal / a goat-headed sphinx dedicated to the Warriors of the Lion from the Dunemin; hidden behind it were two large orange-and-blue-feathered relics. - A book in Ashkellon described Benu, Garadwal, and Trixus as the last three of Altabre's children who walk on earth. @@ -36,7 +36,7 @@ Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's ## Timeline -- `day-29`: Benu helps secure Dunnersend support and remains to build a temple. +- `day-29`: Benu helps secure Dunensend support and remains to build a temple. - `day-30`: Benu can contact Cardenald and provide hero's feast support. - `day-42`: Ashkellon sources connect Benu to Garadwal, Trixus, Altabre, the elves, the great tower, and hidden feather relics. - `day-43`: Benu appears in Ashkellon, fights Garadwal, and is implicated in elven emotion-removal techniques. @@ -44,7 +44,7 @@ Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's ## Related Entries -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Lortesh](lortesh.md) - [Trixus](trixus.md) - [Attabre / Altabre](attabre-altabre.md) @@ -52,7 +52,7 @@ Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's ## Open Questions -- What office, faith, or authority does Benu hold in Dunnersend? +- What office, faith, or authority does Benu hold in Dunensend? - Why did Benu abandon or fail his post, and why is Attabre angry with him? - How much responsibility does Benu bear for elven soul-part or emotion removal? - What did Benu's father tell him, and how did it thwart prior plans? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 2ce4ad3..4e95b27 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -52,7 +52,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - The dragon crash into Grand Towers was said to have weakened the prisons enough for Garadwal to escape. - Infestus appeared in a dream sending Garadwal through a portal with a coin; another dream showed abnormal dragons near Garadwal's prison and a void voice asking `where is he I know you know`. - Garadwal moved through Blackscale, returned to the dome, and attacked Baytail Accord before teleporting away. -- Dunnersend lore says Excellence protected the vultures after Gardwal failed, while Goliaths once asked Excellence for help trapping his brother. +- Dunensend lore says Excellence protected the vultures after Gardwal failed, while Goliaths once asked Excellence for help trapping his brother. - Day 36 says Garadwal ate Pride, leaving The Guilt unconscious and triggering Pride's attempted disabling of systems before consumption. - Grand Towers orb lore says Garadwal was locked downstairs, heard a chair-guy through his greater gravel children, and walked into Browning's trap. - Geldrin offered Garadwal to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. diff --git a/data/6-wiki/people/lady-hartwall.md b/data/6-wiki/people/lady-hartwall.md index 27f09ee..9b63f66 100644 --- a/data/6-wiki/people/lady-hartwall.md +++ b/data/6-wiki/people/lady-hartwall.md @@ -39,7 +39,7 @@ Lady Hartwall is a regional noble or military authority connected to Hearthwall, ## Related Entries -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Lady Thorpe](lady-thorpe.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Open Threads](../open-threads.md) diff --git a/data/6-wiki/people/lady-r-beauchamp.md b/data/6-wiki/people/lady-r-beauchamp.md index c98ea26..8ab6426 100644 --- a/data/6-wiki/people/lady-r-beauchamp.md +++ b/data/6-wiki/people/lady-r-beauchamp.md @@ -13,17 +13,17 @@ sources: ## Summary -Lady R. Beauchamp?!? is an uncertain named patron or authority connected to a Dunnersend scholar inspecting soot bones during Day 30's blue-dragon and battle-plan thread. +Lady R. Beauchamp?!? is an uncertain named patron or authority connected to a Dunensend scholar inspecting soot bones during Day 30's blue-dragon and battle-plan thread. ## Known Details -- Day 30 says soot bones were being inspected by a scholar from Dunnersend on behalf of Lady R. Beauchamp?!?. +- Day 30 says soot bones were being inspected by a scholar from Dunensend on behalf of Lady R. Beauchamp?!?. - `Blue Dragon?!?` was written beside this note. - The same day's open threads connect the inspection to intercepted messages, Hucan's ship, leaked battle plans, Craters Edge, and a suspected betrayer. ## Related Entries -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Open Threads](../open-threads.md) ## Open Questions diff --git a/data/6-wiki/people/lortesh.md b/data/6-wiki/people/lortesh.md index 572ae0e..e9f366d 100644 --- a/data/6-wiki/people/lortesh.md +++ b/data/6-wiki/people/lortesh.md @@ -19,20 +19,20 @@ sources: ## Summary -Lortesh, possibly Kortesh Gravesings or Hortekh, was a monstrous green-dragon-linked threat tied to Peridita, sickly Goliaths, Dunnersend, and the missing-page gap before his death. +Lortesh, possibly Kortesh Gravesings or Hortekh, was a monstrous green-dragon-linked threat tied to Peridita, sickly Goliaths, Dunensend, and the missing-page gap before his death. ## Known Details - Azureside records named Perodita's new mate as Kortesh Gravesings, also her son, called `The Twisted`. - He wore a metal helmet lined with finger bones and metal hooks carrying trophies from his kills. - Recorded features include two heads, weeping pores, an alien head, no lips, and other monstrous green-dragon traits. -- In Dunnersend, Uncle Hortekh appeared with a massive verdian/veridian Dragonborn and two sickly Goliaths, threatened Dirk and the Goliaths, and said he would get him one day. +- In Dunensend, Uncle Hortekh appeared with a massive verdian/veridian Dragonborn and two sickly Goliaths, threatened Dirk and the Goliaths, and said he would get him one day. - The record jumps over missing pages 103-104 before a fight with Lortesh, ending with the party killing him. - Day 31 calls Lortesh `untruly end`, says the party could not control him, and compares a later dragon's tail-wings to Lortesh. ## Related Entries -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Garadwal](garadwal.md) - [Infestus](infestus.md) diff --git a/data/6-wiki/people/luth.md b/data/6-wiki/people/luth.md index 867ceeb..4bee473 100644 --- a/data/6-wiki/people/luth.md +++ b/data/6-wiki/people/luth.md @@ -11,7 +11,7 @@ sources: ## Summary -Luth was reported alive and hiding with the vulturemen, possibly in the dome, during the party's approach to Dunnersend. +Luth was reported alive and hiding with the vulturemen, possibly in the dome, during the party's approach to Dunensend. ## Known Details @@ -21,7 +21,7 @@ Luth was reported alive and hiding with the vulturemen, possibly in the dome, du ## Related Entries -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Excellences](../concepts/excellences.md) ## Open Questions diff --git a/data/6-wiki/people/minor-figures-days-23-31.md b/data/6-wiki/people/minor-figures-days-23-31.md index c29ba49..9a383f4 100644 --- a/data/6-wiki/people/minor-figures-days-23-31.md +++ b/data/6-wiki/people/minor-figures-days-23-31.md @@ -46,17 +46,17 @@ This page indexes named or name-like people from the Day 23 and Day 25-31 batch - Erroll/Errol: communication-linked bird or contact who established two-way communication with Terry and later carried messages. - Lady Aquena: Pact or merfolk noble who would stay for a while and leave her offspring. - Duchess Lauleriere of Freeport State: noble council member. -- Duke Humbersinthesand of Dunesend State: noble council member. +- Duke Humbersinthesand of Dunensend State: noble council member. - Duchess Hearthwall of Hearthwall State: noble council member. - Duke Norman Goldenswell of Goldenswell State: noble council member. - Duke Torrain Freefellow of Snowsorrow State: noble council member. ## Day 27 -- Father Haithes [uncertain]: Dunesmead/Dunnersend Father associated with Altarrb. +- Father Haithes [uncertain]: Dunensend Father associated with Altarrb. - Egraine Brook / Igraine: Dunar Mother associated with life, pleasure, fertility, and harvest. -- Hearth Master: Dunnersend court official with flames for hair who produced trade logs. -- Huntsmistress: Dunnersend official who investigated threats, automatons, and requests for aid. +- Hearth Master: Dunensend court official with flames for hair who produced trade logs. +- Huntsmistress: Dunensend official who investigated threats, automatons, and requests for aid. - Stilix: missing figure who resembled one of the attackers according to the bird-man. - Agugu: guard who was an automaton infiltrator, said `unit compromised - core overload`, and exploded. - Haemia: lion-woman creature created by a dark power. diff --git a/data/6-wiki/people/minor-figures-days-36-40-41.md b/data/6-wiki/people/minor-figures-days-36-40-41.md index f169963..4511e50 100644 --- a/data/6-wiki/people/minor-figures-days-36-40-41.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -77,4 +77,4 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | The Basilisk, Cardonald, Rubyeye, Dirk's dad | Messaging and teleportation coordination. | Existing pages/status. | | Grinan, Hayes, Aurouze and two companions | Savannah settlement contact, dog, and missing hunters. | Status / open thread. | | Old lady / settlement leader / Searu | Flame vision and Searu's Arrow. | [Searu](searu.md). | -| Father at Dunnensend, Hearthsmoor fisherman, interested party, Peridot Queen, Godmount | Regional crisis and aid report figures. | Rollup/open threads. | +| Father at Dunensend, Hearthsmoor fisherman, interested party, Peridot Queen, Godmount | Regional crisis and aid report figures. | Rollup/open threads. | diff --git a/data/6-wiki/people/morgana.md b/data/6-wiki/people/morgana.md index 184ddc6..f9f03f1 100644 --- a/data/6-wiki/people/morgana.md +++ b/data/6-wiki/people/morgana.md @@ -23,7 +23,7 @@ Morgana is a human sent by The Chorus because the visions went better when the p - The Chorus sent her because there should be five party members. - She reported strange happenings in Everchard forest, including large animals and a bright green Dragonborn with sickly Goliaths near a poisoned part of the forest. - Morgana gave goodberries to heal refugees at Stricker's camp. -- The party arranged an extra mount for Morgana before scouting the statue near Dunnersend. +- The party arranged an extra mount for Morgana before scouting the statue near Dunensend. - Day 30 notes that Morgana could cast Polymorph. - Day 32 has Morgana escaping with Geldrin and Dith through a trapdoor while carrying or helping secure the shield crystal, later locating Lady Thorpe inside the Goldenswell militia house. - Day 35 has Morgana scouting as a spider, bribing or attempting to bribe guards, sensing movement, stopping carts with thorns, killing llamia with a cart wheel, and trying to wake Elementarium with a kiss. @@ -33,7 +33,7 @@ Morgana is a human sent by The Chorus because the visions went better when the p - [The Chorus](the-chorus.md) - [Everchard](../places/everchard.md) -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Lady Thorpe](lady-thorpe.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 95c65a5..4d1b7d6 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -122,7 +122,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Arabella | kidnapped again | `data/4-days-cleaned/day-20.md` | Targeted attack involved faces removed. | | Keely Caardenalb | not yet contacted | `data/4-days-cleaned/day-17.md` | Desert researcher whose work may be useful. | | [Luth](luth.md) | hiding or alive, unconfirmed | `data/4-days-cleaned/day-29.md` | Reportedly alive and hiding with the vulturemen, perhaps in the dome. | -| [Lady R. Beauchamp?!?](lady-r-beauchamp.md) | unresolved | `data/4-days-cleaned/day-30.md` | Named as the person on whose behalf a Dunnersend scholar inspected soot bones, with `Blue Dragon?!?` noted beside it. | +| [Lady R. Beauchamp?!?](lady-r-beauchamp.md) | unresolved | `data/4-days-cleaned/day-30.md` | Named as the person on whose behalf a Dunensend scholar inspected soot bones, with `Blue Dragon?!?` noted beside it. | | Lady Fatrabbit / Blossom | Hearthwall sheriff and halfling general | `data/4-days-cleaned/day-32.md` | Helped investigate Lady Thorpe's abduction and took the party through the Castle. | | Cardencalde | unreachable by Eroll | `data/4-days-cleaned/day-32.md` | Did not answer direct contact, which was strange. | | Baytail | prisoner, accused head of Underbelly | `data/4-days-cleaned/day-32.md` | Seen in skull vision as a Goldenswell prisoner. | @@ -179,7 +179,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Guardfree and Guardfore | merfolk guards/allies | `data/4-days-cleaned/day-20.md` | Guardfree kept watch and planned to get his mistress to bring guest shells. | | Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadwal's location. | | [Morgana](morgana.md) | allied fifth party member | `data/4-days-cleaned/day-27.md`, `data/4-days-cleaned/day-28.md`, `data/4-days-cleaned/day-30.md` | Sent by The Chorus because visions went better with five party members; carries birds, heals, and can Polymorph. | -| [Benu](benu.md) | Dunnersend ally | `data/4-days-cleaned/day-29.md`, `data/4-days-cleaned/day-30.md` | Helped secure support in wars to come, stayed to build a temple, could message Cardenald, and could create a hero's feast. | +| [Benu](benu.md) | Dunensend ally | `data/4-days-cleaned/day-29.md`, `data/4-days-cleaned/day-30.md` | Helped secure support in wars to come, stayed to build a temple, could message Cardenald, and could create a hero's feast. | | Granny and Scurry | trusted Underbelly contacts in Highden | `data/4-days-cleaned/day-36.md` | Granny was an old gnoll liaison; Scurry was a Highden lizardfolk courier. | | Captain Briarthorn | Highden commander | `data/4-days-cleaned/day-36.md` | Moss couch elf captain of an elf hundred planning a river battle point. | | Alana | Pact leader at Azureside / Heartmoor | `data/4-days-cleaned/day-40.md` | Ran matters with the guild while Carl was away. | diff --git a/data/6-wiki/people/the-basilisk.md b/data/6-wiki/people/the-basilisk.md index 1be7911..ba3506f 100644 --- a/data/6-wiki/people/the-basilisk.md +++ b/data/6-wiki/people/the-basilisk.md @@ -33,12 +33,12 @@ The Basilisk is a recurring contact who receives party messages, appears during - The Basilisk's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` - The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. - On Day 36, the party sent The Basilisk a note about current events from Highden. -- On Day 41, The Basilisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. +- On Day 41, The Basilisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. - The Basilisk planned to meet the Peridot Queen by Trade Smells and get Cardonald to take the party back to the army. ## Related Entries -- [Dunnersend](../places/dunnersend.md) +- [Dunensend](../places/dunensend.md) - [Excellences](../concepts/excellences.md) - [Lortesh](lortesh.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) diff --git a/data/6-wiki/people/the-mother.md b/data/6-wiki/people/the-mother.md index 9e040a4..aa898c2 100644 --- a/data/6-wiki/people/the-mother.md +++ b/data/6-wiki/people/the-mother.md @@ -24,7 +24,7 @@ The Mother was a Carnamancy-linked antagonist who transformed the life prison in - At Baytail Accord, a horrible boob-covered form appeared and was apparently The Mother. - After The Mother died, Geldrin found a spellbook on her with the same cipher and spells as Envi's. - The Mother had somehow repurposed Envi's clone, which seemed impossible under the party's understanding of clone magic. -- Dunesmead later distinguished local Mother figures from `The Mother`, whose stolen power was linked to Ennui and the ban on spell writing. +- Dunensend later distinguished local Mother figures from `The Mother`, whose stolen power was linked to Ennui and the ban on spell writing. - Day 32 skull visions showed `The Mother` crater, a small town described as the place he fell, and a small halfling girl sitting at a table seeing dogs together. ## Related Entries diff --git a/data/6-wiki/places/dunnersend.md b/data/6-wiki/places/dunensend.md similarity index 63% rename from data/6-wiki/places/dunnersend.md rename to data/6-wiki/places/dunensend.md index 123b5c8..dc36ecd 100644 --- a/data/6-wiki/places/dunnersend.md +++ b/data/6-wiki/places/dunensend.md @@ -1,11 +1,9 @@ --- -title: Dunnersend +title: Dunensend type: place aliases: - - Dunesend - - Dunesend State - - Dunnersend - - Dunesmead + - Dunensend + - Dunensend State - Dunnen first_seen: day-26 last_updated: day-31 @@ -18,22 +16,22 @@ sources: - data/4-days-cleaned/day-31.md --- -# Dunnersend +# Dunensend ## Summary -Dunnersend, Dunesend, or Dunesmead is a desert city-state with Dunnen rules, Mother and Father rulers, Arahuoa/Vulturemen conflict, automaton infiltration, Goliath history, and later military support for the party. +Dunensend is a desert city-state with Dunnen rules, Mother and Father rulers, Arahuoa/Vulturemen conflict, automaton infiltration, Goliath history, and later military support for the party. ## Known Details -- Dunesmead shone blue and orange, had a very Arabic style, and enforced rules against alcohol, spell writing, and worship of liar or darkness. +- Dunensend shone blue and orange, had a very Arabic style, and enforced rules against alcohol, spell writing, and worship of liar or darkness. - The court included Father Haithes [uncertain], Mother Egraine Brook, the Hearth Master, and the Huntsmistress. - Vulturemen or Arahuoa assassins, Haemia, fire demons, snake-lizard people, green dragon attacks, and a moving desert fort all threatened the city. - Automaton infiltrators included Agugu, a guard with a wife and five-year identity, and other guards; The Guilt said the whole place was riddled with automatons. - Sister Proulsothight [uncertain] held a box like Gelissa's, apparently the target of recent shop break-ins. -- Dunnersend records and scholars connect the Goliaths to city-building, Ashktioth, Tradesmall, and old contact about 900 years ago. +- Dunensend records and scholars connect the Goliaths to city-building, Ashktioth, Tradesmall, and old contact about 900 years ago. - The city and rulers supported the party in wars to come after Lortesh died. -- Dunnersend later supplied 100 troops, 5 healers, transport, and 10 cavalry; its army killed a green dragon during the Brass City battle. +- Dunensend later supplied 100 troops, 5 healers, transport, and 10 cavalry; its army killed a green dragon during the Brass City battle. ## Related Entries @@ -46,4 +44,4 @@ Dunnersend, Dunesend, or Dunesmead is a desert city-state with Dunnen rules, Mot - Who controls the automaton infiltrators? - What was in Sister Proulsothight's box? -- What is the connection between Dunnersend, the Goliath ancestral grounds, Ashktioth, Tradesmall, and the tower in a field? +- What is the connection between Dunensend, the Goliath ancestral grounds, Ashktioth, Tradesmall, and the tower in a field? diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md index 3766c7f..1890e6b 100644 --- a/data/6-wiki/places/minor-places-day-46.md +++ b/data/6-wiki/places/minor-places-day-46.md @@ -12,7 +12,7 @@ sources: | Old mage-school kitchen, drama classroom, hall, first-year dorm, Evocation, Elemental Lore, Alteration, Weather, Herbs | Day 46 rooms explored while completing the old school / orb sequence. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md). | | Cathedral / Harthall / Valententhide's home route | Broom misfire opened to a cathedral-like place, felt like Harthall and Valententhide's home. | Rollup/open thread. | | Basement map room and orb room | Site of eight-divot map, orb placement, memory-destroying creature battle, and Joy illusion. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](../items/void-spheres.md). | -| Dannersend / Dunnersend ray | Corridor rug image showed Garadwal and the word `Terror`. | Rollup; [Garadwal](../people/garadwal.md). | +| Dunensend ray | Corridor rug image showed Garadwal and the word `Terror`. | Rollup; [Garadwal](../people/garadwal.md). | | Tradesmells underground hideout | Tarnished hideout said to be fifteen miles below Tradesmells. | Rollup/open thread. | | Snowscreen | Snowglobe source and later area near the prison where the Harthall artifact may be hidden. | Rollup/open thread. | | Infinite library / Grand temple city / [unclear: Hyane] | Morgana's vision during reincarnation magic. | Rollup/open thread. | diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index ee685dd..86247ac 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -34,5 +34,5 @@ sources: | Threeleigh, Donly, horizon of green shape, Aire | Evacuation and route after Perodika attack. | Open thread / rollup. | | Savannah hunters' encampment and red-eyed settlement | Hospitality settlement where Searu appeared. | [Searu](../people/searu.md). | | Tower in the flames and Goliath settlement below tower | Perodika/Searu vision location. | Open thread / rollup. | -| Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Galdenseell, Snow Sorrow, PineSprings, Trade Smells | Simultaneous crisis locations reported by The Basilisk. | Open threads; existing pages where present. | +| Emmeraine, Dunensend, Hearthsmoor, Grand Towers, Galdenseell, Snow Sorrow, PineSprings, Trade Smells | Simultaneous crisis locations reported by The Basilisk. | Open threads; existing pages where present. | | Cave entrance in dream and fire place associated with Searu's Arrow | Dragon dream and Searu's Arrow return place. | [Searu's Arrow](../items/searus-arrow.md) / open thread. | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 5559e9d..34dadf3 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -77,11 +77,11 @@ sources: - `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Silver](people/silver.md), [Envoi](people/envoi.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-27.md`: [Dunnersend](places/dunnersend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-28.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). -- `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hartwall](people/lady-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-27.md`: [Dunensend](places/dunensend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-28.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-29.md`: [Dunensend](places/dunensend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-30.md`: [Dunensend](places/dunensend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hartwall](people/lady-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunensend](places/dunensend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hartwall](people/lady-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hartwall](people/lady-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index e09962e..94b5be5 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -74,12 +74,12 @@ sources: - `day-23`: The party rescues merfolk, visits Freeport's Drunken Duck, explores [Cardonald's Desert Laboratory](places/desert-laboratory.md), learns more about [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), Enwi, Cardonal, and the prison network, then reaches Iceland near the Ice prison crisis. - `day-24`: No confirmed cleaned day boundary exists; material continues inside `day-23` until `day-25`. - `day-25`: At [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), the party learns of dragon plots, Infestus's titles, Peridita, Garadwal's people, Rubyeye's prison-status readout, and Enwi's siphoning weakening all prisons. -- `day-26`: Dreams show dwarven, Infestus, Garadwal, and hidden-room visions; the party investigates the Ice and life prisons, defeats The Mother at Baytail Accord, becomes Saviours of the Pact, and receives reports about Dunesend, Goldenswell, Goliaths, Green Dragons, and Valenth. -- `day-27`: In [Dunnersend](places/dunnersend.md), the party deals with Arahuoa/Vulturemen, Haemia, automaton infiltrators, The Guilt, Goliath ancestral-ground questions, Sister Proulsothight's box, Uncle Hortekh, and Morgana joining as the fifth party member. +- `day-26`: Dreams show dwarven, Infestus, Garadwal, and hidden-room visions; the party investigates the Ice and life prisons, defeats The Mother at Baytail Accord, becomes Saviours of the Pact, and receives reports about Dunensend, Goldenswell, Goliaths, Green Dragons, and Valenth. +- `day-27`: In [Dunensend](places/dunensend.md), the party deals with Arahuoa/Vulturemen, Haemia, automaton infiltrators, The Guilt, Goliath ancestral-ground questions, Sister Proulsothight's box, Uncle Hortekh, and Morgana joining as the fifth party member. - `day-28`: The party learns Pride may have opened a prison, Rubyeye explains systems under Grand Towers, and the party evades young adult dragons searching the Endless Dunes. -- `day-29`: Missing source pages interrupt the record; the party meets Excellence beneath the sands, kills [Lortesh](people/lortesh.md), earns Dunnersend support, and hears The Guilt admit accidentally opening a prison while controlling a wizard. -- `day-30`: Dunnersend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valententhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. -- `day-31`: The party attends the [Freeport Auction Lots](items/freeport-auction-lots.md), then joins battle near the Brass City forces; Goliaths are freed, the Dunnersend army kills a green dragon, Treamen the Earth Excellence dies, and Dirk's father plans for Salvation and the Goliath tower in a field. +- `day-29`: Missing source pages interrupt the record; the party meets Excellence beneath the sands, kills [Lortesh](people/lortesh.md), earns Dunensend support, and hears The Guilt admit accidentally opening a prison while controlling a wizard. +- `day-30`: Dunensend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valententhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. +- `day-31`: The party attends the [Freeport Auction Lots](items/freeport-auction-lots.md), then joins battle near the Brass City forces; Goliaths are freed, the Dunensend army kills a green dragon, Treamen the Earth Excellence dies, and Dirk's father plans for Salvation and the Goliath tower in a field. - `day-32`: The party reaches Hearthwall, attends the [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), hides a [Shield Crystals](items/shield-crystals.md) piece with [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), exposes a false [Lady Thorpe](people/lady-thorpe.md), rescues the real Lady Thorpe from Goldenswell, and uncovers an off-the-books [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) operation while the Tri-moon appears during the day. - `day-33` and `day-34`: No cleaned day files were included in this wiki pass. - `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. -
618c1d8Normalize Dunhold Cache referencesby Laura Mostert
data/2-pages/67.txt | 2 +- data/2-pages/69.txt | 2 +- data/3-days/day-21.md | 2 +- data/3-days/day-22.md | 2 +- data/4-days-cleaned/day-21.md | 6 +++--- data/4-days-cleaned/day-22.md | 4 ++-- data/6-wiki/aliases.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/people/kiendra.md | 4 ++-- .../places/{dunhold-dunbold-cache.md => dunhold-cache.md} | 12 +++++------- 10 files changed, 18 insertions(+), 20 deletions(-)Show diff
diff --git a/data/2-pages/67.txt b/data/2-pages/67.txt index 6fe3d79..3451940 100644 --- a/data/2-pages/67.txt +++ b/data/2-pages/67.txt @@ -57,4 +57,4 @@ merfolk, zinquiss, Wrath, half Clerics in the sea with us - Excellence seemed to have come from 80 miles away when we were at the turtle village. - so possibly -Dunbold Cache or the smaller islands around +Dunhold Cache or the smaller islands around diff --git a/data/2-pages/69.txt b/data/2-pages/69.txt index 8fff0e5..a52115e 100644 --- a/data/2-pages/69.txt +++ b/data/2-pages/69.txt @@ -43,7 +43,7 @@ all mermaids } survive 4 Clerics 6 guardsmen. -* Moor up by Dunbold Cache for the night. +* Moor up by Dunhold Cache for the night. [side notes] +1 diff --git a/data/3-days/day-21.md b/data/3-days/day-21.md index 21b3c98..0f01ea3 100644 --- a/data/3-days/day-21.md +++ b/data/3-days/day-21.md @@ -68,7 +68,7 @@ merfolk, zinquiss, Wrath, half Clerics in the sea with us - Excellence seemed to have come from 80 miles away when we were at the turtle village. - so possibly -Dunbold Cache or the smaller islands around +Dunhold Cache or the smaller islands around Page: 68 Source: data/1-source/IMG_5185.png diff --git a/data/3-days/day-22.md b/data/3-days/day-22.md index 671ba99..9e9590c 100644 --- a/data/3-days/day-22.md +++ b/data/3-days/day-22.md @@ -71,7 +71,7 @@ all mermaids } survive 4 Clerics 6 guardsmen. -* Moor up by Dunbold Cache for the night. +* Moor up by Dunhold Cache for the night. [side notes] +1 diff --git a/data/4-days-cleaned/day-21.md b/data/4-days-cleaned/day-21.md index bee85d4..e464ab1 100644 --- a/data/4-days-cleaned/day-21.md +++ b/data/4-days-cleaned/day-21.md @@ -15,7 +15,7 @@ Only the party's room was cold. As the ice melted, a white dragonscale dropped f At Pier 12, a large force gathered. There were about 30 merfolk plus two little ones, 20 guardsmen whose sergeant had a necklace, Zinquiss, and a black dragonborn named Wrath. The party spoke to Pact leader Tiana and other leaders gathered there. Pact leader Alana was also present. There were 15 clerics and their leader. The party received two guest shells and 10 spare shells. Wrath would stay on the other side of the Barrier once they arrived. The sergeant took the party's cart to the keep. The captain was named Captain Huen. -The group set sail on a calm sea. The water seemed clear, with no noticeable sign of the Excellence yet. Merfolk, Zinquiss, Wrath, and half the clerics were in the sea with the party. The party considered that the Excellence had seemed to come from 80 miles away when they were at the turtle village, so it might have come from Dunbold Cache or the smaller islands around it. +The group set sail on a calm sea. The water seemed clear, with no noticeable sign of the Excellence yet. Merfolk, Zinquiss, Wrath, and half the clerics were in the sea with the party. The party considered that the Excellence had seemed to come from 80 miles away when they were at the turtle village, so it might have come from Dunhold Cache or the smaller islands around it. The party made or planned a pulley system and net to hoist the shield crystal onto the ship when they reached Fairshaws. Wrath's middle name was recorded as Kolin. The party asked him to look for the location of Garadwal when he got to Black Scale. @@ -25,7 +25,7 @@ The party gave Zinquiss 200 gp for four healing potions. Guards returned and tol # People, Factions, and Places Mentioned -Fairshaws, Pier 12, the Barrier, the keep, the turtle village, Dunbold Cache, the smaller islands around Dunbold Cache, Black Scale, Highden, Heartmoor, Grand Towers, the five points of the Penta City states, Provincia, the Earl, the Cult, Garadwal, Zinquiss, Wrath or Kolin, Tiana or Taina, Pact leader Alana, Captain Huen, the sergeant with a necklace, merfolk, guardsmen, clerics, Justiciars, Perodetta, a lightning dragon, a white dragon or source of a white dragonscale, the Excellence, and the Pact were all mentioned. +Fairshaws, Pier 12, the Barrier, the keep, the turtle village, Dunhold Cache, the smaller islands around Dunhold Cache, Black Scale, Highden, Heartmoor, Grand Towers, the five points of the Penta City states, Provincia, the Earl, the Cult, Garadwal, Zinquiss, Wrath or Kolin, Tiana or Taina, Pact leader Alana, Captain Huen, the sergeant with a necklace, merfolk, guardsmen, clerics, Justiciars, Perodetta, a lightning dragon, a white dragon or source of a white dragonscale, the Excellence, and the Pact were all mentioned. # Items, Rewards, and Resources @@ -33,4 +33,4 @@ The party loaned a boat for 100 gp per day with a 500 gp deposit, paid as 125 gp # Clues, Mysteries, and Open Threads -The cold dreams, the black hole in the town hall, the horrible voice asking "where is he I know you hide him," the possible link to Garadwal, the word "Void!," and the white dragonscale are all unresolved. The Excellence may have come from Dunbold Cache or nearby islands, based on the apparent 80-mile distance from the turtle village. Wrath was asked to search for Garadwal's location when he reached Black Scale. The Earl seized the party's boat and accused the diplomatic mission of treason, strengthening suspicion that the Earl was connected to the Cult. News from Highden, Heartmoor, Grand Towers, and Provincia indicates simultaneous crises involving a lightning dragon, illness possibly linked to Perodetta, Justiciars moving to the five points, locusts, and mysterious spiritual activity. +The cold dreams, the black hole in the town hall, the horrible voice asking "where is he I know you hide him," the possible link to Garadwal, the word "Void!," and the white dragonscale are all unresolved. The Excellence may have come from Dunhold Cache or nearby islands, based on the apparent 80-mile distance from the turtle village. Wrath was asked to search for Garadwal's location when he reached Black Scale. The Earl seized the party's boat and accused the diplomatic mission of treason, strengthening suspicion that the Earl was connected to the Cult. News from Highden, Heartmoor, Grand Towers, and Provincia indicates simultaneous crises involving a lightning dragon, illness possibly linked to Perodetta, Justiciars moving to the five points, locusts, and mysterious spiritual activity. diff --git a/data/4-days-cleaned/day-22.md b/data/4-days-cleaned/day-22.md index d45ffd5..8170deb 100644 --- a/data/4-days-cleaned/day-22.md +++ b/data/4-days-cleaned/day-22.md @@ -20,7 +20,7 @@ At the crystal site, the party found waterproof paper, three dispel magic scroll The boat was badly wounded. The other party, Taina's group, had their shells dispelled and was attacked. The Huntmaster was missing. A half-orc priestess on the boat wanted to check on the other team for the Huntmaster. The sergeant with the necklace wanted to come with the party. They went over and found the Huntmaster fighting an Excellence, with both of them very injured. The note "Deed Excellence!" records the defeat or deed against the Excellence. -Survivors were recorded as four mermen, all mermaids, four clerics, and six guardsmen. The party moored up by Dunbold Cache for the night. +Survivors were recorded as four mermen, all mermaids, four clerics, and six guardsmen. The party moored up by Dunhold Cache for the night. The merfolk recovered the dead and laid on the help and sacrifice. The party pulled up to the cove, where the lookout shouted that a vessel was already docked. There was a chariot with water elementals chained to it. The party rowed to shore to investigate. The chariot had a mother-of-pearl frame, and there were no other signs of movement. @@ -28,7 +28,7 @@ Dirk spoke to the elementals. The raw notes only record that "they want" [unclea # People, Factions, and Places Mentioned -Dunbold Cache, the cavern, the shield crystal site, the cove, Freeport auction house, Kiendra, Geldrin, Dirk, Taina, the Huntmaster, the half-orc priestess, the sergeant with the necklace, Zinquiss, merfolk, mermen, mermaids, clerics, guardsmen, sharks, mobs at the crystal site, the Bug Boss, an Excellence, water elementals, and the crew were all mentioned. +Dunhold Cache, the cavern, the shield crystal site, the cove, Freeport auction house, Kiendra, Geldrin, Dirk, Taina, the Huntmaster, the half-orc priestess, the sergeant with the necklace, Zinquiss, merfolk, mermen, mermaids, clerics, guardsmen, sharks, mobs at the crystal site, the Bug Boss, an Excellence, water elementals, and the crew were all mentioned. # Items, Rewards, and Resources diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 5358b66..757ac25 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -59,7 +59,7 @@ sources: - [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, Perodita, The Choking Death, The whispers in the dark, Mother of many. - [The Basilisk](people/the-basilisk.md): The Basilisk, The Basilisk's guild. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. -- [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. +- [Dunhold Cache](places/dunhold-cache.md): Dunhold Cache. - [Pythus Aleyvarus](people/pythus-aleyvarus.md): Pythus Aleyvarus, Pythas, Pythus. - [Mage Judicators/Justicars](factions/mage-judicators-justicars.md): mage Judicators, Justicars, Justicar. - [Sahuagin/Fish Men](factions/sahuagin-fish-men.md): Sahuagin, Saguine, fish men. diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 8d6343c..1fa1824 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -134,7 +134,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Dunnersend](places/dunnersend.md) - [Freeport](places/freeport.md) - [Turtle Point](places/turtle-point.md) -- [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md) +- [Dunhold Cache](places/dunhold-cache.md) - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md) - [Minor Places from Day 46](places/minor-places-day-46.md) - [Sunsoreen / Snowscreen](places/sunsoreen.md) diff --git a/data/6-wiki/people/kiendra.md b/data/6-wiki/people/kiendra.md index e1983dd..da10c7c 100644 --- a/data/6-wiki/people/kiendra.md +++ b/data/6-wiki/people/kiendra.md @@ -12,7 +12,7 @@ sources: ## Summary -Kiendra is the leader of [Dunhold/Dunbold Cache](../places/dunhold-dunbold-cache.md), owner of a stolen scepter conch, and a rescued captive from the underwater shield crystal site. +Kiendra is the leader of [Dunhold Cache](../places/dunhold-cache.md), owner of a stolen scepter conch, and a rescued captive from the underwater shield crystal site. ## Known Details @@ -27,7 +27,7 @@ Kiendra is the leader of [Dunhold/Dunbold Cache](../places/dunhold-dunbold-cache ## Related Entries -- [Dunhold/Dunbold Cache](../places/dunhold-dunbold-cache.md) +- [Dunhold Cache](../places/dunhold-cache.md) - [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) - [Shield Crystal Mission](../events/shield-crystal-mission.md) - [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) diff --git a/data/6-wiki/places/dunhold-dunbold-cache.md b/data/6-wiki/places/dunhold-cache.md similarity index 68% rename from data/6-wiki/places/dunhold-dunbold-cache.md rename to data/6-wiki/places/dunhold-cache.md index 49f5474..504e6aa 100644 --- a/data/6-wiki/places/dunhold-dunbold-cache.md +++ b/data/6-wiki/places/dunhold-cache.md @@ -1,9 +1,8 @@ --- -title: Dunhold/Dunbold Cache +title: Dunhold Cache type: place aliases: - Dunhold Cache - - Dunbold Cache first_seen: day-20 last_updated: day-22 sources: @@ -12,17 +11,17 @@ sources: - data/4-days-cleaned/day-22.md --- -# Dunhold/Dunbold Cache +# Dunhold Cache ## Summary -Dunhold or Dunbold Cache is Kiendra's domain and a location near the shield crystal and Excellence crisis. +Dunhold Cache is Kiendra's domain and a location near the shield crystal and Excellence crisis. ## Known Details -- Kiendra was leader of Dunhold/Dunbold Cache. +- Kiendra was leader of Dunhold Cache. - The area may be connected to the origin or movement of an Excellence. -- The party moored near Dunbold Cache after the shield crystal battle. +- The party moored near Dunhold Cache after the shield crystal battle. ## Timeline @@ -37,5 +36,4 @@ Dunhold or Dunbold Cache is Kiendra's domain and a location near the shield crys ## Open Questions -- Which spelling is correct: Dunhold Cache or Dunbold Cache? - What is the current state of the Cache after Kiendra's captivity? -
d541a07Rename Bushhunter to Bug Hunterby Laura Mostert
data/2-pages/2.txt | 12 ++++++------ data/2-pages/47.txt | 2 +- data/2-pages/6.txt | 2 +- data/2-pages/7.txt | 4 ++-- data/2-pages/8.txt | 6 +++--- data/3-days/day-01.md | 12 ++++++------ data/3-days/day-03.md | 12 ++++++------ data/3-days/day-16.md | 2 +- data/4-days-cleaned/day-01.md | 8 ++++---- data/4-days-cleaned/day-03.md | 14 +++++++------- data/4-days-cleaned/day-16.md | 2 +- data/6-wiki/aliases.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/inventories/party-inventory.md | 4 ++-- .../people/{bushhunter-bughunter.md => bug-hunter.md} | 9 ++++----- data/6-wiki/people/the-chorus.md | 4 ++-- data/6-wiki/sources.md | 2 +- 17 files changed, 49 insertions(+), 50 deletions(-)Show diff
diff --git a/data/2-pages/2.txt b/data/2-pages/2.txt index 350189c..8f4175c 100644 --- a/data/2-pages/2.txt +++ b/data/2-pages/2.txt @@ -11,21 +11,21 @@ Census - in spring - 3c for the number. - No trouble in town. -- Bushhunter - registered Mercenary. +- Bug Hunter - registered Mercenary. Last 2 weeks - Bushhunter came to town 2 weeks ago + Bug Hunter came to town 2 weeks ago winter apple trees started to fruit. Last 3rd Moon was 1 week ago. Invar - delivered weapons but no militia? - order was put in a few months ago {20 weapons - about 5 left. Earl downsizing. 10 armour + order was put in a few months ago {20 weapons 10 armour + about 5 left. Earl downsizing. can't remember any of the old militia go to jail & talk to sheriff for current militia forgetting names. - Bushhunter - had tubes & pipes. + Bug Hunter - had tubes & pipes. used to do a lot of swords. Jail @@ -39,7 +39,7 @@ Jail - 11 years always something so old here isn't anything - no reports of people missing. - home theft week ago -- Bushhunter doing a sale of giant bugs in frames +- Bug Hunter doing a sale of giant bugs in frames last sale 6 days ago - shepherd had new fence? Yes. diff --git a/data/2-pages/47.txt b/data/2-pages/47.txt index af63441..81e6959 100644 --- a/data/2-pages/47.txt +++ b/data/2-pages/47.txt @@ -20,7 +20,7 @@ next child Ssethon "first pressing of Sigerne - midh - iel" Maidens dew drink -M Ring - looks like bug hunter ring - ring of protection +1 +M Ring - looks like Bug Hunter ring - ring of protection +1 "Failed attempt to recreate my stolen ring" M Comb - dragon bone & jade - details carved of a forest diff --git a/data/2-pages/6.txt b/data/2-pages/6.txt index 9098093..1de0cf3 100644 --- a/data/2-pages/6.txt +++ b/data/2-pages/6.txt @@ -41,7 +41,7 @@ she was distracted... Always had large animals in the area somebody going through the swamp & using gas -which is hurting the birds. Q stop the Bughunter +which is hurting the birds. Q stop the Bug Hunter Direct us to the place where Geldrin got the papers. Geldrin has, 2pm leave 3pm at town diff --git a/data/2-pages/7.txt b/data/2-pages/7.txt index 76608e9..4c2375e 100644 --- a/data/2-pages/7.txt +++ b/data/2-pages/7.txt @@ -3,8 +3,8 @@ Source: data/1-source/IMG_5121.png Transcription: -Bughunter will do any form of Taxidermy... -* Bughunter promises to [crossed out: hunt] hunt out of town +Bug Hunter will do any form of Taxidermy... +* Bug Hunter promises to [crossed out: hunt] hunt out of town Request him to do it the other side of the river 5:15 diff --git a/data/2-pages/8.txt b/data/2-pages/8.txt index fe0da25..6942cbe 100644 --- a/data/2-pages/8.txt +++ b/data/2-pages/8.txt @@ -21,8 +21,8 @@ People unable to be saved. Boy wasn't dead at first but now dead Brother Fracture - looks at the cart remembered all of the militia have been going missing. -want to try to/put them all to sleep - Bughunter! -Bughunter staying out (cider inn cider) +want to try to/put them all to sleep - Bug Hunter! +Bug Hunter staying out (cider inn cider) go to see him 20:00 @@ -40,7 +40,7 @@ Park the cart behind the church & horses at the Inn Random Compass box with a needle that points to the -Bughunter - Geldrin buys it +Bug Hunter - Geldrin buys it Day 4 19th Dec diff --git a/data/3-days/day-01.md b/data/3-days/day-01.md index 768b79a..d0c8d6b 100644 --- a/data/3-days/day-01.md +++ b/data/3-days/day-01.md @@ -92,21 +92,21 @@ Census - in spring - 3c for the number. - No trouble in town. -- Bushhunter - registered Mercenary. +- Bug Hunter - registered Mercenary. Last 2 weeks - Bushhunter came to town 2 weeks ago + Bug Hunter came to town 2 weeks ago winter apple trees started to fruit. Last 3rd Moon was 1 week ago. Invar - delivered weapons but no militia? - order was put in a few months ago {20 weapons - about 5 left. Earl downsizing. 10 armour + order was put in a few months ago {20 weapons 10 armour + about 5 left. Earl downsizing. can't remember any of the old militia go to jail & talk to sheriff for current militia forgetting names. - Bushhunter - had tubes & pipes. + Bug Hunter - had tubes & pipes. used to do a lot of swords. Jail @@ -120,7 +120,7 @@ Jail - 11 years always something so old here isn't anything - no reports of people missing. - home theft week ago -- Bushhunter doing a sale of giant bugs in frames +- Bug Hunter doing a sale of giant bugs in frames last sale 6 days ago - shepherd had new fence? Yes. diff --git a/data/3-days/day-03.md b/data/3-days/day-03.md index 58c4ce8..71276c3 100644 --- a/data/3-days/day-03.md +++ b/data/3-days/day-03.md @@ -78,7 +78,7 @@ she was distracted... Always had large animals in the area somebody going through the swamp & using gas -which is hurting the birds. Q stop the Bughunter +which is hurting the birds. Q stop the Bug Hunter Direct us to the place where Geldrin got the papers. Geldrin has, 2pm leave 3pm at town @@ -97,8 +97,8 @@ Source: data/1-source/IMG_5121.png Transcription: -Bughunter will do any form of Taxidermy... -* Bughunter promises to [crossed out: hunt] hunt out of town +Bug Hunter will do any form of Taxidermy... +* Bug Hunter promises to [crossed out: hunt] hunt out of town Request him to do it the other side of the river 5:15 @@ -167,8 +167,8 @@ People unable to be saved. Boy wasn't dead at first but now dead Brother Fracture - looks at the cart remembered all of the militia have been going missing. -want to try to/put them all to sleep - Bughunter! -Bughunter staying out (cider inn cider) +want to try to/put them all to sleep - Bug Hunter! +Bug Hunter staying out (cider inn cider) go to see him 20:00 @@ -186,5 +186,5 @@ Park the cart behind the church & horses at the Inn Random Compass box with a needle that points to the -Bughunter - Geldrin buys it +Bug Hunter - Geldrin buys it diff --git a/data/3-days/day-16.md b/data/3-days/day-16.md index 5791e80..9bb1835 100644 --- a/data/3-days/day-16.md +++ b/data/3-days/day-16.md @@ -326,7 +326,7 @@ next child Ssethon "first pressing of Sigerne - midh - iel" Maidens dew drink -M Ring - looks like bug hunter ring - ring of protection +1 +M Ring - looks like Bug Hunter ring - ring of protection +1 "Failed attempt to recreate my stolen ring" M Comb - dragon bone & jade - details carved of a forest diff --git a/data/4-days-cleaned/day-01.md b/data/4-days-cleaned/day-01.md index 9025890..041b63a 100644 --- a/data/4-days-cleaned/day-01.md +++ b/data/4-days-cleaned/day-01.md @@ -20,9 +20,9 @@ Other local problems surfaced immediately. A shepherd might also have missing sh Everchard had built a hostel the previous summer to house homeless people, but it had not been enough for that purpose and was also being let out, angering the inns. The Earl was a rough-looking half-orc dressed in black clothing covered with bird or goose motifs. Funds from the hostel were apparently going into an anti-tax system. A woman who applied for the poverty tax was told she was eligible and slid 2 gp across for the anti-tax. The census was due in spring and charged 3 cp per number, payable in the morning, with a note to ask the half-elf. -The town insisted there was no trouble, but several details contradicted that. Bushhunter, a registered mercenary known for tubes and pipes, had come to town two weeks earlier. The winter apple trees had also started fruiting about two weeks earlier. The last Third Moon had been one week earlier. Invar had delivered weapons, but the militia seemed to have almost vanished. An order had been placed a few months earlier for twenty weapons and ten armour, yet only about five militia remained. People said the Earl was downsizing and could not remember the old militia properly. +The town insisted there was no trouble, but several details contradicted that. Bug Hunter, a registered mercenary known for tubes and pipes, had come to town two weeks earlier. The winter apple trees had also started fruiting about two weeks earlier. The last Third Moon had been one week earlier. Invar had delivered weapons, but the militia seemed to have almost vanished. An order had been placed a few months earlier for twenty weapons and ten armour, yet only about five militia remained. People said the Earl was downsizing and could not remember the old militia properly. -At the jail, reality and memory seemed unstable. The jail's location had changed and was now where the hostel used to be. It had two empty cells. The law officer or sheriff had a large scar over her eye, and the staff included her, Sheriff Jeremia, and two deputies, one named Bob. They reported no missing people, though there had been a home theft a week earlier, Bushhunter had held a sale of giant bugs in frames six days earlier, and the shepherd did have a new fence. The jail also now believed it should receive a package from a crazy-haired gnome. +At the jail, reality and memory seemed unstable. The jail's location had changed and was now where the hostel used to be. It had two empty cells. The law officer or sheriff had a large scar over her eye, and the staff included her, Sheriff Jeremia, and two deputies, one named Bob. They reported no missing people, though there had been a home theft a week earlier, Bug Hunter had held a sale of giant bugs in frames six days earlier, and the shepherd did have a new fence. The jail also now believed it should receive a package from a crazy-haired gnome. The militia records were deeply wrong. Names such as Terry, Stonejaw, Rob, and Ralfrex were offered as explanations: Terry left town two months earlier, Stonejaw passed away, Rob retired, and Ralfrex was somewhere in Bucksmouth. None were left in town. Yet forty-three people used to be hired. A state charter required a sufficient militia this close to the barrier, with a wider figure of 1,100 militia for a population of 45,000. A check was due in a month, and the last visit had been five months earlier. @@ -34,7 +34,7 @@ The party took Malcolm to the jail. A deputy went to fetch Sheriff Jeremia, who # People, Factions, and Places Mentioned -Everchard, the Cider Inn Cider, the cider breweries, the woodland tours, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bushhunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel/Garadwal, Brutor Ruby Eye, the Prison of the Sands, and the unidentified fifth human warrior were all established or referenced. +Everchard, the Cider Inn Cider, the cider breweries, the woodland tours, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bug Hunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel/Garadwal, Brutor Ruby Eye, the Prison of the Sands, and the unidentified fifth human warrior were all established or referenced. # Items, Rewards, and Resources @@ -42,4 +42,4 @@ The party were offered 1 gp each to investigate the missing pigs. They received # Clues, Mysteries, and Open Threads -The major open threads were the missing pigs, possible missing sheep, Bess's missing cat, the absence of rats, the missing or forgotten militia, the changing number of keys, the hostel's connection to the anti-tax, Bushhunter's arrival with tubes and pipes, the winter fruiting trees, the altered Malcolm Donovan, the shifting memories around Gelissa and the homeless people, the vanished fifth human warrior, and Guardwel/Garadwal, the Terror of the Sands, linked to a dark-magic sphinx, the Prison of the Sands, void, one of the eight, and the barrier. +The major open threads were the missing pigs, possible missing sheep, Bess's missing cat, the absence of rats, the missing or forgotten militia, the changing number of keys, the hostel's connection to the anti-tax, Bug Hunter's arrival with tubes and pipes, the winter fruiting trees, the altered Malcolm Donovan, the shifting memories around Gelissa and the homeless people, the vanished fifth human warrior, and Guardwel/Garadwal, the Terror of the Sands, linked to a dark-magic sphinx, the Prison of the Sands, void, one of the eight, and the barrier. diff --git a/data/4-days-cleaned/day-03.md b/data/4-days-cleaned/day-03.md index d390216..51be994 100644 --- a/data/4-days-cleaned/day-03.md +++ b/data/4-days-cleaned/day-03.md @@ -22,9 +22,9 @@ The party connected this with Malcolm and Isabella going missing and with the to The party went into the swamp to find the bird lady. After about an hour, they found a swamp hut covered in bird poo. Inside, branches were covered in birds. An eighty-ish woman was there, blindfolded with her mouth sewn shut. Her name, or title, was "The Chorus." She had been having dreams and said the hurt was not her own. Her apprentice had upped and left. The Chorus explained that the magic word was clever: it changed memories into a convenient form. Because Sarah had been with the Chorus, it had been harder to wipe her from memory. On one of the Rubin's Days, the Chorus had seen Sarah by the hostel, distracted. -The Chorus said there had always been large animals in the area, but someone was going through the swamp using gas that was hurting the birds. She directed the party to stop the Bughunter and pointed them toward the place where Geldrin got the papers. Geldrin already had something from there [uncertain wording]. The party left at about 2:00 and reached town at about 3:00. +The Chorus said there had always been large animals in the area, but someone was going through the swamp using gas that was hurting the birds. She directed the party to stop the Bug Hunter and pointed them toward the place where Geldrin got the papers. Geldrin already had something from there [uncertain wording]. The party left at about 2:00 and reached town at about 3:00. -Back in town, the party passed through the marketplace and noticed a streak of fumes around a suited halfling with an ogre. The halfling had a barrel with tubes and pipes leading to an ear-funnel crossbow. He was talking to a magpie person with a wagon pulled by a "Cobra Kai" type creature. The party snuck up behind the ogre, broke the Bughunter's equipment, damaged the goggles, and let the gas out. The Bughunter said he would do any form of taxidermy and promised to hunt out of town. The party asked him to do it on the other side of the river. By about 5:15, they learned from the magpie that Xinquiss/Zinquiss could be found at the Hartwall Great Bazaar. +Back in town, the party passed through the marketplace and noticed a streak of fumes around a suited halfling with an ogre. The halfling had a barrel with tubes and pipes leading to an ear-funnel crossbow. He was talking to a magpie person with a wagon pulled by a "Cobra Kai" type creature. The party snuck up behind the ogre, broke the Bug Hunter's equipment, damaged the goggles, and let the gas out. The Bug Hunter said he would do any form of taxidermy and promised to hunt out of town. The party asked him to do it on the other side of the river. By about 5:15, they learned from the magpie that Xinquiss/Zinquiss could be found at the Hartwall Great Bazaar. At the sheriff's office, the place was very busy. Jeremiah and the deputy sheriff were armoured up. A half-orc and a kobold seemed to be militia, and citizens in patchwork armour included a dwarf, tabaxi, human, and warforged. The sheriff's office had heard about an attack: Walter, the sheep farmer, had been attacked by people who came in with a cart carrying the sheep beast, and Walter's wife had sacrificed herself. Core, a warforged who runs Peel & Core, mentioned lack of custom in the tavern and noticed wagons at the hostel. Earl had received a death threat, with a 500 gp bounty attached. Cromwell, a tiny forester, had noticed wagons passing Walter's farm and stopping there; people seemed to be in the wagons. Around 5:30, Jeremiah and Drang went to protect the Earl while Hannah and Bob went to the outskirts. The party was given a shock dagger. @@ -32,18 +32,18 @@ The village was quiet. Two wagons were parked outside the hostel and looked like Among those connected to the wagon were a woman in her fifties with too many teeth and a bigger mouth [possibly Sarah], and a young boy of about eighteen [possibly the sheep farmer's boy]. There were three patrons connected to the Crimson Bovine or Mirth's Fizzleswig [uncertain wording]. Loot noted included one shortsword, random herbs, one sickle, and silver. At about 19:00, the party took the people and cart to the church, associated with Church Tor and church Tarber [uncertain names]. -At the church, the people could not be saved. The boy had not been dead at first but was now dead. Brother Fracture inspected the cart and remembered that all of the militia had been going missing. The party wanted to put the affected people to sleep, which led them back to the Bughunter. He was staying out at the Cider Inn Cider. Around 20:00, they went to see him. +At the church, the people could not be saved. The boy had not been dead at first but was now dead. Brother Fracture inspected the cart and remembered that all of the militia had been going missing. The party wanted to put the affected people to sleep, which led them back to the Bug Hunter. He was staying out at the Cider Inn Cider. Around 20:00, they went to see him. -The Bughunter had a gearsisor 5000? with ether and magical sleeping powder. He also had a ring with a purple gem and runes that needed identifying. The party traded identification for use of the gearsisor and returned to the cart to use it. They got five people back into the church. One was Gregory, a homeless man who was restored. Gregory thought he had been taken by the militia and remembered being in the big militia house. The party parked the cart behind the church and put the horses at the inn. Geldrin also bought a random compass box with a needle that pointed to the Bughunter. +The Bug Hunter had a gearsisor 5000? with ether and magical sleeping powder. He also had a ring with a purple gem and runes that needed identifying. The party traded identification for use of the gearsisor and returned to the cart to use it. They got five people back into the church. One was Gregory, a homeless man who was restored. Gregory thought he had been taken by the militia and remembered being in the big militia house. The party parked the cart behind the church and put the horses at the inn. Geldrin also bought a random compass box with a needle that pointed to the Bug Hunter. # People, Factions, and Places Mentioned -Dirk, Geldrin, Drew, Malcolm, Isabella, Sarah, Walter the sheep farmer, Walter's wife, The Chorus, The Chorus's apprentice, the Bughunter, Bob, Jeremiah, Drang, Hannah, Core, Peel & Core, Earl, Cromwell, Brother Fracture, Gregory, Xinquiss/Zinquiss, Pelt, the sheriff's office, Hartwall Great Bazaar, the hostel, the swamp, the farm, the barn, the church, Church Tor, church Tarber [uncertain], Cider Inn Cider, Crimson Bovine, Mirth's Fizzleswig, the militia, townsfolk, half-orc militia, kobold militia, dwarf citizen, tabaxi citizen, human citizen, warforged citizen, suited halfling, ogre, magpie person, and "Cobra Kai" type wagon creature. +Dirk, Geldrin, Drew, Malcolm, Isabella, Sarah, Walter the sheep farmer, Walter's wife, The Chorus, The Chorus's apprentice, the Bug Hunter, Bob, Jeremiah, Drang, Hannah, Core, Peel & Core, Earl, Cromwell, Brother Fracture, Gregory, Xinquiss/Zinquiss, Pelt, the sheriff's office, Hartwall Great Bazaar, the hostel, the swamp, the farm, the barn, the church, Church Tor, church Tarber [uncertain], Cider Inn Cider, Crimson Bovine, Mirth's Fizzleswig, the militia, townsfolk, half-orc militia, kobold militia, dwarf citizen, tabaxi citizen, human citizen, warforged citizen, suited halfling, ogre, magpie person, and "Cobra Kai" type wagon creature. # Items, Rewards, and Resources -The party received or noted a shock dagger, a gearsisor 5000? using ether and magical sleeping powder, a ring with a purple gem and runes requiring identification, Geldrin's compass box pointing to the Bughunter, one shortsword, random herbs, one sickle, silver, two wagons, four horses, the Bughunter's gas equipment with goggles and barrel tubes, and an Earl-related 500 gp bounty. +The party received or noted a shock dagger, a gearsisor 5000? using ether and magical sleeping powder, a ring with a purple gem and runes requiring identification, Geldrin's compass box pointing to the Bug Hunter, one shortsword, random herbs, one sickle, silver, two wagons, four horses, the Bug Hunter's gas equipment with goggles and barrel tubes, and an Earl-related 500 gp bounty. # Clues, Mysteries, and Open Threads -Memories are being taken or rewritten into convenient forms, and Sarah's time with The Chorus made her harder to erase. Malcolm and Isabella are missing, and the town largely does not remember them, though Malcolm's wife does. Pelt is connected to memory-taking. Someone used wagons to deliver or move animal-human beasts, including a sheep beast and pig beast, and people were found in livestock-style carts smelling of pig manure and human faeces. The militia have been going missing. Gregory remembers being taken by militia and held in the big militia house. The Bughunter's gas was harming birds in the swamp. The woman with too many teeth [possibly Sarah], the young boy [possibly sheep farmer's boy], the crab claw attachment, and the exact nature of the memory magic remain uncertain. +Memories are being taken or rewritten into convenient forms, and Sarah's time with The Chorus made her harder to erase. Malcolm and Isabella are missing, and the town largely does not remember them, though Malcolm's wife does. Pelt is connected to memory-taking. Someone used wagons to deliver or move animal-human beasts, including a sheep beast and pig beast, and people were found in livestock-style carts smelling of pig manure and human faeces. The militia have been going missing. Gregory remembers being taken by militia and held in the big militia house. The Bug Hunter's gas was harming birds in the swamp. The woman with too many teeth [possibly Sarah], the young boy [possibly sheep farmer's boy], the crab claw attachment, and the exact nature of the memory magic remain uncertain. diff --git a/data/4-days-cleaned/day-16.md b/data/4-days-cleaned/day-16.md index d7105c0..ebda925 100644 --- a/data/4-days-cleaned/day-16.md +++ b/data/4-days-cleaned/day-16.md @@ -51,7 +51,7 @@ The party explored further. In the room next to the orbs, they used protection f The museum-like room contained many marked objects. A bottle marked with an M and carved with flowing water was labelled "Containment token from Lord Hydrannis"; two stones at the top were glowing. A wooden sconce held a spear with flames coming from the bottom, labelled "Spear of Ciara," the fire god; it was a +1 magic weapon and bound to magic missile [uncertain phrasing: "+1 magic bounds (magic missile)"]. A wooden shield was noted as granting +1 to saves or being disabled once per day [uncertain]. A great sword with a stone and bone hilt and darkened steel blade was a gift from the kings of the goliaths, labelled, "To the spell ones on the crafting of your big building." A cookbook holder held a very delicate book labelled "book recovered from grand towers upon discovery." A dwarf mannequin wore a green silk dress with gold trim and tiny emeralds along the trim, labelled "Worn by Princess Seline to the Grand Ball." A cushion held a small red garnet with no plaque, apparently the size of the moon holes. A coin press made grand towers pennies and was labelled "press used for souvenir pennies." -Other displays included a jar with an eyeball in fluid labelled "My Eye"; the eye could scry once per week [scyris eye]. A sealed book made of Tan leather, unsettling in appearance, had a platinum lock and human teeth around the edge; it was labelled "Noctus Cairinium Grimoire" and the lock looked like an adult human [unclear side note: blue, eldritch]. A wheat-sheaf plinth held a pillow with a marble cube radiating yellow light, labelled "British cube a gift from the golden field Halflings," with "next child Ssethon" noted. A wine-shaped bottle was labelled "first pressing of Sigerne - midh - iel" and "Maidens dew drink." A ring like a bug hunter ring was a ring of protection +1 and was labelled "Failed attempt to recreate my stolen ring." A comb made of dragon bone and jade, carved with a forest, was labelled "gift from the elven princesses to my wife she never got on with it"; the note adds toothless toothbrush and deja vu. A silver scepter with fine golden filigree and a white Seaward gem was labelled "staff gifted by the merfolk of the great sea." +Other displays included a jar with an eyeball in fluid labelled "My Eye"; the eye could scry once per week [scyris eye]. A sealed book made of Tan leather, unsettling in appearance, had a platinum lock and human teeth around the edge; it was labelled "Noctus Cairinium Grimoire" and the lock looked like an adult human [unclear side note: blue, eldritch]. A wheat-sheaf plinth held a pillow with a marble cube radiating yellow light, labelled "British cube a gift from the golden field Halflings," with "next child Ssethon" noted. A wine-shaped bottle was labelled "first pressing of Sigerne - midh - iel" and "Maidens dew drink." A ring like a Bug Hunter ring was a ring of protection +1 and was labelled "Failed attempt to recreate my stolen ring." A comb made of dragon bone and jade, carved with a forest, was labelled "gift from the elven princesses to my wife she never got on with it"; the note adds toothless toothbrush and deja vu. A silver scepter with fine golden filigree and a white Seaward gem was labelled "staff gifted by the merfolk of the great sea." The gem-writing riddle said, "time existed before me but history can only begin after my creation," pointing to the calendar room or library. The celestial book suggested the tower was the centre of the world, though the party did not know where it came from. Geldrin read it and had a vision of six primeval elements looking down on the world. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index b5dc6b2..5358b66 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -44,7 +44,7 @@ sources: - [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Garadwel, Garaduel [uncertain automaton spelling], Guradwal, Gardwell, Terror of the Sands, nightmare of the darkness. - [Everchard](places/everchard.md): Everchard. -- [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. +- [Bug Hunter](people/bug-hunter.md): Bug Hunter. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent], Brotor / Brutor [context: void gift and Brotor's eye uncertain]. - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. - [Edward Browning](people/edward-browning.md): Edward Browning, Browning, Everard Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 3c8a753..8d6343c 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -94,7 +94,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Kiendra](people/kiendra.md) - [Tiana/Taina](people/tiana-taina.md) - [The Chorus](people/the-chorus.md) -- [Bushhunter/Bughunter](people/bushhunter-bughunter.md) +- [Bug Hunter](people/bug-hunter.md) - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) - [Bynx](people/bynx.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index a673dae..7d9aea3 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -33,7 +33,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Item | Holder | Acquired | Source | Notes | |---|---|---|---|---| | Deputy badges | party | `day-01` | `data/4-days-cleaned/day-01.md` | Given by Sheriff Jeremia/Jeremiah under Sir Alstir Florent; no later transfer recorded. | -| Geldrin's compass box / compass | Geldrin | `day-03` | `data/4-days-cleaned/day-03.md` | Bought by Geldrin and used later to point toward Bughunter signals and the hidden laboratory. | +| Geldrin's compass box / compass | Geldrin | `day-03` | `data/4-days-cleaned/day-03.md` | Bought by Geldrin and used later to point toward Bug Hunter signals and the hidden laboratory. | | Invisible cloak | party | `day-05` | `data/4-days-cleaned/day-05.md` | Taken from the [Barrier Observatory](../places/barrier-observatory.md); no later disposition recorded. | | Tri-moon measurement notes | Geldrin | `day-05` | `data/4-days-cleaned/day-05.md` | Geldrin took all observatory notes. | | Mahogany rune-locked box | Geldrin | `day-06` | `data/4-days-cleaned/day-06.md` | Taken from Joy's room; no later transfer recorded. | @@ -98,7 +98,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Item | Last seen | Source | Question | |---|---|---|---| | Shock dagger | `day-03` | `data/4-days-cleaned/day-03.md` | Was it kept, spent, transferred, or replaced? | -| Bughunter ring with purple gem/runes | `day-03` | `data/4-days-cleaned/day-03.md` | Did the party keep and identify it after trading for use of the gearsisor? | +| Bug Hunter ring with purple gem/runes | `day-03` | `data/4-days-cleaned/day-03.md` | Did the party keep and identify it after trading for use of the gearsisor? | | Shield crystal shard / crystal | `day-06`, `day-12`, `day-22`, `day-32` | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-12.md`, `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | The shard was party-accessible earlier; on Day 32 Xinquiss and Wroth hid a shield crystal piece while Justicars searched for Xinquiss. | | Museum treasure division | `day-16` | `data/4-days-cleaned/day-16.md` | Dirk took a sword and merfolk scepter; Invar took a ring of protection and potion bottle; Geldrin took spear and scrying eye; note-writer took coin press and cube; Pythus took books. Several later dispositions remain unclear. | | Scroll of teleportation | `day-16` | `data/4-days-cleaned/day-16.md` | Pythus gave one to Geldrin; no use recorded. | diff --git a/data/6-wiki/people/bushhunter-bughunter.md b/data/6-wiki/people/bug-hunter.md similarity index 80% rename from data/6-wiki/people/bushhunter-bughunter.md rename to data/6-wiki/people/bug-hunter.md index 3e36029..c3e0122 100644 --- a/data/6-wiki/people/bushhunter-bughunter.md +++ b/data/6-wiki/people/bug-hunter.md @@ -1,9 +1,8 @@ --- -title: Bushhunter/Bughunter +title: Bug Hunter type: person aliases: - - Bushhunter - - Bughunter + - Bug Hunter first_seen: day-01 last_updated: day-03 sources: @@ -11,11 +10,11 @@ sources: - data/4-days-cleaned/day-03.md --- -# Bushhunter/Bughunter +# Bug Hunter ## Summary -Bushhunter or Bughunter is a registered mercenary in Everchard known for tubes, pipes, bug displays, gas equipment, and suspicious timing around the memory crisis. +Bug Hunter is a registered mercenary in Everchard known for tubes, pipes, bug displays, gas equipment, and suspicious timing around the memory crisis. ## Known Details diff --git a/data/6-wiki/people/the-chorus.md b/data/6-wiki/people/the-chorus.md index 99624fb..b2ea405 100644 --- a/data/6-wiki/people/the-chorus.md +++ b/data/6-wiki/people/the-chorus.md @@ -26,7 +26,7 @@ The Chorus is an eighty-ish woman, title, or supernatural role in the swamp, sur - She had dreams and said hurt was not her own. - She knew memory magic changed memories into convenient forms. - Sarah Thornhollows had been with her and was harder to erase from memory. -- Her birds followed the party back and were harmed by Bughunter's gas. +- Her birds followed the party back and were harmed by Bug Hunter's gas. - On Day 32, the Chorus was seen standing outside the house looking up at the sky, which was unusual because the Chorus usually never leaves the house. ## Timeline @@ -39,7 +39,7 @@ The Chorus is an eighty-ish woman, title, or supernatural role in the swamp, sur - [The Thornhollows Family](thornhollows-family.md) - [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) -- [Bushhunter/Bughunter](bushhunter-bughunter.md) +- [Bug Hunter](bug-hunter.md) ## Open Questions diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index e84354f..5559e9d 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -54,7 +54,7 @@ sources: - `data/4-days-cleaned/day-01.md`: [Everchard](places/everchard.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), [Garadwal](people/garadwal.md), [Malcolm Donovan](people/malcolm-donovan.md), [The Thornhollows Family](people/thornhollows-family.md), [Militia](factions/militia.md). - `data/4-days-cleaned/day-02.md`: [The Thornhollows Family](people/thornhollows-family.md), [The Chorus](people/the-chorus.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). -- `data/4-days-cleaned/day-03.md`: [Hostel](places/hostel.md), [Militia](factions/militia.md), [Bushhunter/Bughunter](people/bushhunter-bughunter.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). +- `data/4-days-cleaned/day-03.md`: [Hostel](places/hostel.md), [Militia](factions/militia.md), [Bug Hunter](people/bug-hunter.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). - `data/4-days-cleaned/day-04.md`: [Everchard](places/everchard.md), [Hostel](places/hostel.md), [Militia](factions/militia.md). - `data/4-days-cleaned/day-05.md`: [Barrier Observatory](places/barrier-observatory.md), [Barrier](concepts/barrier.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md). - `data/4-days-cleaned/day-06.md`: [Joy](people/joy.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier Observatory](places/barrier-observatory.md). -
64564dcRename Lady Hearthwill references to Lady Hartwallby Laura Mostert
data/2-pages/105.txt | 2 +- data/2-pages/112.txt | 2 +- data/2-pages/116.txt | 2 +- data/2-pages/117.txt | 4 +- data/2-pages/121.txt | 2 +- data/2-pages/141.txt | 2 +- data/2-pages/142.txt | 2 +- data/2-pages/179.txt | 2 +- data/2-pages/185.txt | 2 +- data/2-pages/187.txt | 2 +- data/2-pages/223.txt | 2 +- data/2-pages/224.txt | 2 +- data/2-pages/237.txt | 2 +- data/3-days/day-30.md | 2 +- data/3-days/day-32.md | 10 ++-- data/3-days/day-36.md | 4 +- data/3-days/day-42.md | 2 +- data/3-days/day-43.md | 4 +- data/3-days/day-47.md | 6 +-- data/4-days-cleaned/day-30.md | 4 +- data/4-days-cleaned/day-32.md | 14 +++--- data/4-days-cleaned/day-36.md | 10 ++-- data/4-days-cleaned/day-42.md | 8 ++-- data/4-days-cleaned/day-43.md | 14 +++--- data/4-days-cleaned/day-47.md | 12 ++--- data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/inventories/party-inventory.md | 2 +- data/6-wiki/open-threads.md | 4 +- data/6-wiki/people/icefang.md | 4 +- data/6-wiki/people/lady-hartwall.md | 52 +++++++++++++++++++++ data/6-wiki/people/lady-hearthwill.md | 56 ----------------------- data/6-wiki/people/lady-thorpe.md | 4 +- data/6-wiki/people/minor-figures-day-47.md | 2 +- data/6-wiki/people/minor-figures-days-32-35.md | 4 +- data/6-wiki/people/minor-figures-days-42-44.md | 4 +- data/6-wiki/people/peridita.md | 2 +- data/6-wiki/people/status.md | 4 +- data/6-wiki/people/wrath.md | 2 +- data/6-wiki/places/highden-fell.md | 2 +- data/6-wiki/places/minor-places-days-36-40-41.md | 2 +- data/6-wiki/sources.md | 8 ++-- 44 files changed, 137 insertions(+), 141 deletions(-)Show diff
diff --git a/data/2-pages/105.txt b/data/2-pages/105.txt index 9849950..3748820 100644 --- a/data/2-pages/105.txt +++ b/data/2-pages/105.txt @@ -32,5 +32,5 @@ Head to Inn & sleep. Town Crier information laptop. - message from The Basilisk - wants to meet us - comes in. -Lady Hearthwill injured - fighting giants decided to take into her own hands, recuperating norm. +Lady Hartwall injured - fighting giants decided to take into her own hands, recuperating norm. Goldenswell retreated soldiers. diff --git a/data/2-pages/112.txt b/data/2-pages/112.txt index 0160b45..28b0a11 100644 --- a/data/2-pages/112.txt +++ b/data/2-pages/112.txt @@ -20,7 +20,7 @@ Decide to travel to Hearthwall - Rift block. Statue to Lan (Earth god to love, home & family) outside Hearthwall - teleport there. on target. Statue of Lan is very similar in style to the Statue of Serva. 2 guards - human & half elf - -city is fine - Lady Hearthwall still injured. +city is fine - Lady Hartwall still injured. Lady Freya in attendance in the city. - other items for sale by Xinqus. Mirth is in town for the auction. diff --git a/data/2-pages/116.txt b/data/2-pages/116.txt index 06ea37d..f3c25fa 100644 --- a/data/2-pages/116.txt +++ b/data/2-pages/116.txt @@ -25,7 +25,7 @@ up high. waitress opens a trapdoor where Xinquiss is hiding. - call myself Constantine Harthwall to the Justicar. - guardsmen takes chariot & everything to the -Palace - Lady Harthwall wants to see us in the hours. +Palace - Lady Hartwall wants to see us in the hours. - Justicars take llamia to grand towers. Dith & Geldrin & Morgana escape with the shield crystal diff --git a/data/2-pages/117.txt b/data/2-pages/117.txt index 1cbdb55..abd75cb 100644 --- a/data/2-pages/117.txt +++ b/data/2-pages/117.txt @@ -9,11 +9,11 @@ Castle. Takes us through the Castle. god of Law. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently -as Lady Harthwall could have known it wasn't +as Lady Hartwall could have known it wasn't her wife. Lady Fatrabbit leads us to a bedroom where -Lady Harthwall is. - Doctors making some antidote (for?) +Lady Hartwall is. - Doctors making some antidote (for?) Suggest poison & trouble hiding her true form. Llamia - may have done it. seems like a magical diff --git a/data/2-pages/121.txt b/data/2-pages/121.txt index 0463198..48dfb6c 100644 --- a/data/2-pages/121.txt +++ b/data/2-pages/121.txt @@ -14,7 +14,7 @@ ago but imprisoned over 1 week ago. (There's an imposter in place) Try to contact Cardencalde via Eroll - she didn't answer ? why as it contacts her directly. -Sent message to Lady Harthwall via Eroll. 16:00 +Sent message to Lady Hartwall via Eroll. 16:00 - other prisoners held on the same floor - 7 altogether getting a few a week over the last month diff --git a/data/2-pages/141.txt b/data/2-pages/141.txt index 8d5110b..b59ac81 100644 --- a/data/2-pages/141.txt +++ b/data/2-pages/141.txt @@ -31,7 +31,7 @@ They always had issues, Browning made sure they needed us Otasha - more than just suffering - gave her the unborn nerfili babies across the whole race - Barrier seems to stop this slightly. -Lady Harthwall - not happy about it & didn't +Lady Hartwall - not happy about it & didn't know about half the deals made. Found a way around most of the bargains diff --git a/data/2-pages/142.txt b/data/2-pages/142.txt index 5629e74..ab3c13b 100644 --- a/data/2-pages/142.txt +++ b/data/2-pages/142.txt @@ -34,7 +34,7 @@ the city Day 34 get Breakfast in the grand Hall in Harthwall. -Lady Harthwall feels much better. +Lady Hartwall feels much better. Fighting has been pushed back to stone rampart Earthwise. Lots of mutations large explosion seen in the area by the retreating diff --git a/data/2-pages/179.txt b/data/2-pages/179.txt index b1a675a..5a798d9 100644 --- a/data/2-pages/179.txt +++ b/data/2-pages/179.txt @@ -26,7 +26,7 @@ grants our idea & we appear at Heathwall & see Perodita vanish!! Head over to Heathwall. - speak to Lady Parthabbit -Lady Heathwall isn't in she's gone Airwise to help +Lady Hartwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. * resend message to The Basilisk. diff --git a/data/2-pages/185.txt b/data/2-pages/185.txt index 2c7779c..819aa12 100644 --- a/data/2-pages/185.txt +++ b/data/2-pages/185.txt @@ -2,7 +2,7 @@ Page: 185 Source: data/1-source/IMG_9852.jpg Transcription: -Lady Harthall appears. +Lady Hartwall appears. She went with some forces from Dumnensend to defend near where we were fighting. lots of "Dragon born" defending diff --git a/data/2-pages/187.txt b/data/2-pages/187.txt index e5bfcb1..13c936e 100644 --- a/data/2-pages/187.txt +++ b/data/2-pages/187.txt @@ -28,6 +28,6 @@ Asks if he wants to see his brother first. & he transforms to normal self. Notices Trixus is sleepy... ceiling above vanishes - Benu appears. -Lady Harthall drops to her knees & starts to glow +Lady Hartwall drops to her knees & starts to glow humanoid is the size of the tower & wakes Trixus (A family re-united) diff --git a/data/2-pages/223.txt b/data/2-pages/223.txt index 7526d31..c5b9628 100644 --- a/data/2-pages/223.txt +++ b/data/2-pages/223.txt @@ -29,7 +29,7 @@ trying to escape to get back to the ground. Morgana sets it free in the forest - it's called "No chart". -Adventurers took Lady Harthall's diary. +Adventurers took Lady Hartwall's diary. They killed the elf who was taking all the woodcutters from Pinesprings. diff --git a/data/2-pages/224.txt b/data/2-pages/224.txt index 5d06950..f45a368 100644 --- a/data/2-pages/224.txt +++ b/data/2-pages/224.txt @@ -25,7 +25,7 @@ came back then there were 3 (1 big, 2 small). Obsidian statue, no face but gracious god - eyestone lower torso (Squeal?) Other side Kasha. [unclear: Leys 8? mystery]. -- Look at flute - Lady Harthall plays the flute - know this somehow, +- Look at flute - Lady Hartwall plays the flute - know this somehow, maybe a look from Provista. I get a tear in the corner of my eye that is frosty. Urn says - Though my love for you in life may not have diff --git a/data/2-pages/237.txt b/data/2-pages/237.txt index db95cfb..59e43aa 100644 --- a/data/2-pages/237.txt +++ b/data/2-pages/237.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9905.jpg Transcription: If he stays, is there anything he needs? Able to think and talk to some elementals. -Lady Harthall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. +Lady Hartwall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. Before release him, if we want to, others in prisons. Some very narked prisoners. diff --git a/data/3-days/day-30.md b/data/3-days/day-30.md index c053baf..538ce7d 100644 --- a/data/3-days/day-30.md +++ b/data/3-days/day-30.md @@ -22,7 +22,7 @@ complete: true Town Crier information laptop. - message from The Basilisk - wants to meet us - comes in. -Lady Hearthwill injured - fighting giants decided to take into her own hands, recuperating norm. +Lady Hartwall injured - fighting giants decided to take into her own hands, recuperating norm. Goldenswell retreated soldiers. ## Page 106 diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md index ea4f013..3d76858 100644 --- a/data/3-days/day-32.md +++ b/data/3-days/day-32.md @@ -48,7 +48,7 @@ Decide to travel to Hearthwall - Rift block. Statue to Lan (Earth god to love, home & family) outside Hearthwall - teleport there. on target. Statue of Lan is very similar in style to the Statue of Serva. 2 guards - human & half elf - -city is fine - Lady Hearthwall still injured. +city is fine - Lady Hartwall still injured. Lady Freya in attendance in the city. - other items for sale by Xinqus. Mirth is in town for the auction. @@ -210,7 +210,7 @@ up high. waitress opens a trapdoor where Xinquiss is hiding. - call myself Constantine Harthwall to the Justicar. - guardsmen takes chariot & everything to the -Palace - Lady Harthwall wants to see us in the hours. +Palace - Lady Hartwall wants to see us in the hours. - Justicars take llamia to grand towers. Dith & Geldrin & Morgana escape with the shield crystal @@ -236,11 +236,11 @@ Castle. Takes us through the Castle. god of Law. Castle seems busy - shortstaffed. Lady Thorpe is missing. thinks it was fairly recently -as Lady Harthwall could have known it wasn't +as Lady Hartwall could have known it wasn't her wife. Lady Fatrabbit leads us to a bedroom where -Lady Harthwall is. - Doctors making some antidote (for?) +Lady Hartwall is. - Doctors making some antidote (for?) Suggest poison & trouble hiding her true form. Llamia - may have done it. seems like a magical @@ -415,7 +415,7 @@ ago but imprisoned over 1 week ago. (There's an imposter in place) Try to contact Cardencalde via Eroll - she didn't answer ? why as it contacts her directly. -Sent message to Lady Harthwall via Eroll. 16:00 +Sent message to Lady Hartwall via Eroll. 16:00 - other prisoners held on the same floor - 7 altogether getting a few a week over the last month diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md index 656e08d..9d4e8a3 100644 --- a/data/3-days/day-36.md +++ b/data/3-days/day-36.md @@ -518,7 +518,7 @@ They always had issues, Browning made sure they needed us Otasha - more than just suffering - gave her the unborn nerfili babies across the whole race - Barrier seems to stop this slightly. -Lady Harthwall - not happy about it & didn't +Lady Hartwall - not happy about it & didn't know about half the deals made. Found a way around most of the bargains @@ -565,7 +565,7 @@ the city Day 34 get Breakfast in the grand Hall in Harthwall. -Lady Harthwall feels much better. +Lady Hartwall feels much better. Fighting has been pushed back to stone rampart Earthwise. Lots of mutations large explosion seen in the area by the retreating diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index 8c87ef2..37bd5fe 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -615,7 +615,7 @@ grants our idea & we appear at Heathwall & see Perodita vanish!! Head over to Heathwall. - speak to Lady Parthabbit -Lady Heathwall isn't in she's gone Airwise to help +Lady Hartwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. * resend message to The Basilisk. diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index a0257c0..efbb992 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -234,7 +234,7 @@ king is paleskinned with black dreads ## Page 185 -Lady Harthall appears. +Lady Hartwall appears. She went with some forces from Dumnensend to defend near where we were fighting. lots of "Dragon born" defending @@ -332,7 +332,7 @@ Asks if he wants to see his brother first. & he transforms to normal self. Notices Trixus is sleepy... ceiling above vanishes - Benu appears. -Lady Harthall drops to her knees & starts to glow +Lady Hartwall drops to her knees & starts to glow humanoid is the size of the tower & wakes Trixus (A family re-united) diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md index cf34e36..7b352c1 100644 --- a/data/3-days/day-47.md +++ b/data/3-days/day-47.md @@ -63,7 +63,7 @@ trying to escape to get back to the ground. Morgana sets it free in the forest - it's called "No chart". -Adventurers took Lady Harthall's diary. +Adventurers took Lady Hartwall's diary. They killed the elf who was taking all the woodcutters from Pinesprings. @@ -96,7 +96,7 @@ came back then there were 3 (1 big, 2 small). Obsidian statue, no face but gracious god - eyestone lower torso (Squeal?) Other side Kasha. [unclear: Leys 8? mystery]. -- Look at flute - Lady Harthall plays the flute - know this somehow, +- Look at flute - Lady Hartwall plays the flute - know this somehow, maybe a look from Provista. I get a tear in the corner of my eye that is frosty. Urn says - Though my love for you in life may not have @@ -376,7 +376,7 @@ Dirk tries to talk to it in Aquan. Knows Dirk's name as come to set him free. As If he stays, is there anything he needs? Able to think and talk to some elementals. -Lady Harthall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. +Lady Hartwall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. Before release him, if we want to, others in prisons. Some very narked prisoners. diff --git a/data/4-days-cleaned/day-30.md b/data/4-days-cleaned/day-30.md index d0c588f..ba918f9 100644 --- a/data/4-days-cleaned/day-30.md +++ b/data/4-days-cleaned/day-30.md @@ -13,7 +13,7 @@ complete: true Day 30 was Wednesday, 2nd Tan 107 AT, with 4 days to Timnor and 5 days to the auction. A margin note also recorded "+2 days 4pm" and [uncertain: Lathlie]. -The party received Town Crier information on the laptop. The Basilisk had sent a message saying he wanted to meet them and was coming in. News also said Lady Hearthwill had been injured after deciding to take the fight against the giants into her own hands, though she was recuperating normally. Soldiers from Goldenswell had retreated. +The party received Town Crier information on the laptop. The Basilisk had sent a message saying he wanted to meet them and was coming in. News also said Lady Hartwall had been injured after deciding to take the fight against the giants into her own hands, though she was recuperating normally. Soldiers from Goldenswell had retreated. Hucan's ship had been attacked and rummaged in the night, and the party's cart had also been rummaged through. Messages were being intercepted. The notes connect this to a blue dragon, leaked battle plans, and a magical attack at Craters Edge. The cart guards had been found in a mess, pointing toward a betrayer. @@ -41,7 +41,7 @@ Cardenald and Rubyeye returned with 2 orbs and 2 scrolls of Counterspell. Errol # People, Factions, and Places Mentioned -The Basilisk, Lady Hearthwill, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunnersend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. +The Basilisk, Lady Hartwall, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunnersend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. Places mentioned include Dunnersend, the shrine, the barrier, the sea, the ground towers, the shield crystal, Highden, Craters Edge / Crater's Edge, Browning's lab, the Cheese shop, the palace, Cardenald's lab, the library, the Goliath Tower in the Oasis, the Goliath capital Ashktioth, and Tradesmall. diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index 6056b48..130c32e 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -22,7 +22,7 @@ complete: true Day 32 began in a Hillfolk village between [uncertain: Prortibhe] and Stone Rampart, earthwise. The party decided to travel to Hearthwall because of the Rift block. They teleported to the statue of Lan outside Hearthwall and arrived on target. Lan was noted as an earth god associated with love, home, and family, and the statue of Lan was very similar in style to the Statue of Serva. -At Hearthwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Hearthwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hearthwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. +At Hearthwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Hartwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hearthwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. At the Baked Mattress they saw a human sitting down with a very noticeable underbelly. The barkeep was noted as "Patches of night & husband." Xinqus was in town. The party headed to the auction house with 870kg and saw a [uncertain: pigeon/aracock] with Xinqus's cart; Xinqus was inside. "1600" was recorded. They walked to the front of the queue, where Mirth let them in and gave them a number. Everyone else seemed to have paid to enter. The auction drew a very eclectic crowd. A dragon and the Retribution shrine on Azureside were noted. @@ -46,13 +46,13 @@ The party skulked out to check on Lady Thorpe. She had six guards around her in Lot 35 was a mimic mouse trap. Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, an older human man, a robed figure carrying along beside a silver dragonborn, a backpack of scrolls, a floating book, and a gnome with a wooden shield bearing a golden duck were noted. Justicars were looking for Xinquiss. The party did not recognize Inwar. Laura won the bracelet of locating for 101g. Mith teleported away, and a Justicar tried to Counterspell. Scrambleduck smashed a stick on the floor and cast a spell, associated with a locating duck. When she turned around, the narrator bumped into something invisible and moved to attack her. -Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind the narrator helped, while her guard tried to get the narrator. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. The narrator called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Harthwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. +Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind the narrator helped, while her guard tried to get the narrator. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. The narrator called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Hartwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. Dith, Geldrin, and Morgana escaped with the shield crystal down the trapdoor into a house. Xinquiss called Wroth to come and help hide the crystal, and Wroth did so. Dith, Geldrin, and Morgana tried to disguise themselves and return to the auction house. Eliana and Inwar asked about them and were told about the trapdoor at 4:30. The party headed to the Castle. At the Castle, a higher-ranking halfling general with a huge sword and ornate armour strode over. This was Lady Fatrabbit, also called Blossom, a halfling who was also the sheriff. She took the party through the Castle. The engravings on her armour were a dedication to the god of Law. The Castle seemed busy and short-staffed. -Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Harthwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Harthwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Harthwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Harthwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. +Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Hartwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Hartwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Hartwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Hartwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Harthwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. @@ -74,7 +74,7 @@ They messaged The Basilisk to say they had Lady Thorpe and revived her. Lady Tho When the captain was awakened, he said he got in trouble with the Duke for attracting the militia. He was told it was a sensitive situation and not to let anybody in. The Duke sent one of his emissaries to feed Lady Thorpe. The captain knew the Duke was doing something dodgy but did not know the full truth. Some woman with a bag on her head was involved. Orders came from the Duke's office, and a few other guards knew about it. Off-the-books prisoners had been held a few times; the last one was about a week ago and was still down there. -The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Harthwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. +The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Hartwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. The skull's connection to ascension to godhood was discussed, and it was linked to when the moon did this, like the Tri-moon / Treamen. Geldrin tried to attune to the skull. An obsidian raven circled overhead as if looking for something and then flew off toward Grand Towers. @@ -92,11 +92,11 @@ The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Re # People, Factions, and Places Mentioned -People and name-like figures mentioned include Lan, Serva, Lady Hearthwall / Lady Harthwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Harthwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. +People and name-like figures mentioned include Lan, Serva, Lady Hartwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Harthwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Furres, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. -Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hearthwall / Harthwall, the Rift block, the statue of Lan outside Hearthwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Harthwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. +Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hearthwall / Harthwall, the Rift block, the statue of Lan outside Hearthwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Hartwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. # Items, Rewards, and Resources @@ -116,7 +116,7 @@ Xinqus / Xinquiss was in Hearthwall with a cart and a [uncertain: pigeon/aracock The auction contained many significant artifacts and historical references, including the chariot tied to an excellence defeated in the "battle of the unending seas," "Valententide's Betrayal," Browning's spell scroll, Firefang, the holy symbol of Noxia, the shield ring with runes of Lauren, and the talon of soot. The identities and agendas of the Ravens, jewellery men, emissary, Dally who walks in the room, the Harthwall partner, and the werewolfish [uncertain: Repiteth] remain open. The meaning of the Amle for adult? remains unclear. -False Lady Thorpe's odd mannerisms, failure to recognize the party, transformation into a llama when concentration failed, and the Noxia-like magical poison / religious curse suggest impersonation, shapeshifting, and identity suppression. The real Lady Thorpe had been abducted and held in Goldenswell. Lady Harthwall remained injured, and the antidote's target and composition are not fully clear. +False Lady Thorpe's odd mannerisms, failure to recognize the party, transformation into a llama when concentration failed, and the Noxia-like magical poison / religious curse suggest impersonation, shapeshifting, and identity suppression. The real Lady Thorpe had been abducted and held in Goldenswell. Lady Hartwall remained injured, and the antidote's target and composition are not fully clear. The party's arrest warrant had been quashed by somebody up high, but the responsible person was not identified. Browning / Skutey Galvin was wanted for impersonating a Justicar. The Justicars took the llama to Grand Towers, leaving the later fate and interrogation of the false Lady Thorpe unresolved. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index 0ae44ae..9a43d4a 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -60,7 +60,7 @@ The party headed back to the statue by the outskirts of town. They saw a few shi At the statue, an obsidian bird named Terry, Metallics' bird, waited with a private message from Incara: the party should be wary if their compatriot wizards were working against them, because the wizards were the reason for their infertility, though this was not yet confirmed. A margin note said the party would go down the passage after getting Ruby Eye. -There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Harthwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Harthwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. +There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Harthwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Hartwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. The party returned to Mercy's place. Behind Mercy stood a half-elf with rounded ears, the barkeep from the Drunken Duck. Mercy had told him what was going on, and he had come down to ease the party's worries. They were independent contractors for the Guilt, concerned citizens hired for money. He wanted to cash in the favour now. He wanted something from Grand Towers: a small trinket from the private mage area on the 74th floor, a Jelly Fish Broach. An interested party wanted it retrieved. The buyer was not the party's current mutual antagonist, but a female outside the barrier. The party promised to attempt to retrieve it. @@ -96,13 +96,13 @@ Geldrin dropped two pennies onto Bridget's hand. Her eyes glowed green and then Dirk remained in Seaward and heard several explosions around midnight. The party got Ruby Eye out, and Ruby Eye shouted at Wrath until Wrath got back into his eye. Dirk reported that most earthwise cities had had explosions, including the Harthwall and Goldenswell areas. Grol found Dirk, and Dirk sent a message back around 20:00. Ruby Eye teleported the party to Dirk. -Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Harthwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Harthwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. +Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Hartwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Harthwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. Ruby Eye said his pact with Wrath came only from needing more power after seeing how much power Browning had with Pride. Browning wanted the biggest tower and to be the greatest wizard of all time. The party teleported to Harthwall, arriving on target by her statue, and went to the castle gates. Sheriff Fathrabit took them to Harthwall and said the other nobles had arrived. The party brought out Wrath. Wrath said the curse was not his normal thing and was definitely his sister's work. He said, "there you go," and claimed that Harthwall would be fine in a few days, but he was lying. He wanted a favour: for the party to tell Envy that he did it. Harthwall wanted to transform and left the chamber for the courtyard, where she transformed. Harthwall was slightly bigger than the Peridot Queen. In Seaward, there were not many known reports; nobody stated that the racist automatons had exploded. Harthwall's Raven had exploded, and there had been several explosions across the city. -The notes then mark "Day 34." At breakfast in the great hall in Harthwall, Lady Harthwall felt much better. Fighting had been pushed back earthwise to Stone Rampart. There were many mutations, and retreating troops had seen a large explosion in that area. Harthwall would defend the pylon while the party went to get the betrayer. A margin note reads "Da Pig Plaguers." Reports from the captured leaders said they had all managed to retake their cities with minimal casualties. Three paws on the ground reported the safe arrival of the goliaths. +The notes then mark "Day 34." At breakfast in the great hall in Harthwall, Lady Hartwall felt much better. Fighting had been pushed back earthwise to Stone Rampart. There were many mutations, and retreating troops had seen a large explosion in that area. Harthwall would defend the pylon while the party went to get the betrayer. A margin note reads "Da Pig Plaguers." Reports from the captured leaders said they had all managed to retake their cities with minimal casualties. Three paws on the ground reported the safe arrival of the goliaths. The party scried on "The Mother." They saw mountainous terrain, a weird two-legged horse, a little tiefling girl, and a small band of odd creatures. They were together by a small crater in the side of the barrier near the mountain, close to Valenthielles prison. The Mother had been imprisoned last time with help from the [unfinished]. Carduneld had dabbled with Envy but had not entered any [unfinished]. The party met Brother Fracture in the bazaar, with Andy [uncertain: Kallamar?] with him. They had been on their way to the front lines. The party directed Brother Fracture to Lady Fat Rabbit. @@ -122,7 +122,7 @@ A guard on the door was a sixty-foot giant, though not the size of the Tor statu The command had some "exciting" obsidian ravens. The party advised them to stop using the ravens, because all messages back had been telling them not to support the cause. Gerald went to get the quartermaster. The raven was a stealth version, and the quartermaster did not think anything was wrong. A message was sent to Dirk. Dirk said he would be there in a minute, but the reply came back saying he could not come. The party told the quartermaster to send messages ordering troops to come regardless of any reply. Errol was loaned to the commander for two hours. -The party went to another inn, the Three Full Moons, and talked to Gary, a house farmer with a dog named Shep. They returned to Captain Briarthorn, where Lady Harthall was fully armoured. The plan was that giants were close to where the defenders wanted to ambush them. The dragon would try to split off some of the larger giants, and the party would attack. Some towns had responded through Errol and were sending small troops to help. The party arranged to meet Harthall in the forest and planned to start a fire to separate the large giants from the army. While riding the dragon, they saw a black plume of smoke near the mountain at the edge of vision. The plume was magical in nature, perhaps Harthall/Highden. +The party went to another inn, the Three Full Moons, and talked to Gary, a house farmer with a dog named Shep. They returned to Captain Briarthorn, where Lady Hartwall was fully armoured. The plan was that giants were close to where the defenders wanted to ambush them. The dragon would try to split off some of the larger giants, and the party would attack. Some towns had responded through Errol and were sending small troops to help. The party arranged to meet Harthall in the forest and planned to start a fire to separate the large giants from the army. While riding the dragon, they saw a black plume of smoke near the mountain at the edge of vision. The plume was magical in nature, perhaps Harthall/Highden. As they drew closer, the smoke shape came to attack them. Harthall protected the party from the dragon's flame. A giant attacked, bashing Invar into the ground with his mace while the others closed in. Dirk clung to the giant's arm and climbed up his leg. Morgana summoned a bear and grappled the giant's arms. The party defeated all the giants. Harthall and a skeletal dragon fought each other. The skeletal dragon had the book from Ruby Eye's lab, and the words he spoke from the book were words he did not understand. The party teleported out to the armies, and the dragon came toward them. @@ -166,7 +166,7 @@ The figure thought it was Ruby Eye. It could not open the barrier because that m # People, Factions, and Places Mentioned -People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Harthwall / Hearthall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Harthwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Harthall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. +People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Hartwall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Harthwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Harthall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index 85bba8b..e160bda 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -95,11 +95,11 @@ Bleakstorm reported that Perodita was heading to Heathwall. Bridge's sister was The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Heathwall, where they saw Perodita vanish. -The party headed over to Heathwall and spoke to Lady Parthabbit. Lady Heathwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. +The party headed over to Heathwall and spoke to Lady Parthabbit. Lady Hartwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Heathwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Hartwall, T.J. Boggins, and Jin Woo. Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodika's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Heathwall's forces heading airwise. @@ -113,7 +113,7 @@ Items, currencies, and physical resources mentioned include Envi's fifth ring gi Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. -Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Heathwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Heathwall's movement airwise to help with the battle heading to Emmerave. +Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Heathwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Hartwall's movement airwise to help with the battle heading to Emmerave. # Clues, Mysteries, and Open Threads @@ -177,6 +177,6 @@ Bleakstorm detected Dirk missing a day. The missing day, Bleakstorm's deals with Bleakstorm will not forgive Emri for taking away his only friend after being told not to entrust him. The friend, [uncertain: leechus], and the promise to free him remain open. -Perodita was heading to Heathwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Heathwall, and Lady Heathwall had gone airwise toward Emmerave. +Perodita was heading to Heathwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Heathwall, and Lady Hartwall had gone airwise toward Emmerave. T.J. Boggins remained at Heathwall eating meat and watching opera, while Jin Woo was absent. Their immediate relevance is not stated. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index 9009336..95a00b3 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -41,11 +41,11 @@ The party returned to the castle to wait for the bird. They decided to open Inva Shurling arrived. The Chorus knew where the entrance to Grincray was, but they needed to go through Mashir. The flesh-crafting wands were discussed; something was still out there stopping all of the lost knowledge from being retrieved. -Lady Harthall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Harthall, and she had done so before she disappeared. Lady Harthall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Harthall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. +Lady Hartwall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Harthall, and she had done so before she disappeared. Lady Hartwall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Hartwall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. The Menagerie was then discussed. The mages who worked there had not returned to Grand Towers and had locked the Menagerie down; no one could get in. It used to be the mage school. Emi's apprentice was a dark-skinned elf. Joy did not like him, and Mr Browning also did not like him. Browning was described as a nice man, though the note adds that this is not what the party has seen. Storms were bad in the latest reports. Heathmoor plagues were very bad. The land was healing, but the people were not, and the plagues did not share similarities with barrier sickness. News from a rear Ironcraft air site said a tradesman went to pick someone up but that person had "disappeared." The guilt was Emi's guilt. -Lady Harthall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Harthall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Harthall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. +Lady Hartwall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Harthall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Harthall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. The party tried to speak to Garadwel through the feather. It vibrated, and there was a chill in the air. Garadwel called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. @@ -53,7 +53,7 @@ Garadwel said people did not build things as he taught them and instead ran off A quick update came by sending stone: the Grand Towers dome was down, and Garadwell had probably gone to Ashkhellion. The party debated whether to go to Ashkhellion and get Benu first. They went to the library to speak to the vulture man. He went to get his sending stone to speak to [uncertain: Ashtrigwos], to tell Benu to meet the party at the tower in Ashkhellion. Geldrin asked for magical scrolls and got them just before the teleportation circle completed. The party went to Ashkhellion. -They appeared higher up in the tower, and Harthall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Harthall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. +They appeared higher up in the tower, and Harthall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Hartwall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadwal, while Trixus was still in a barrier. The party asked Garadwel to lay down his weapons, but he refused. The narrator tried to get the dome opener, and Garadwal killed them. Benu attacked Garadwal. Geldrin used a tremor skill to release Trixus. The narrator was revived and saw Valentenshide manage to look away. Benu and Garadwal broke through the walls and fought outside. A fight ensued, and Garadwal was banished at 5:00. @@ -75,7 +75,7 @@ Cardonald gave Geldrin all of the teleportation circles: seven prisons with no d # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Harthall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Harthall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Harthall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Harthall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Harthall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Harthall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Harthall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Hartwall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Harthall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Hartwall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Harthall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snow Sorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. @@ -87,9 +87,9 @@ Creatures and creature-like beings mentioned include kobolds, the silvery-green Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Harthall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadwal's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. -Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Harthall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Harthall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and the narrator being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. +Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Harthall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Hartwall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and the narrator being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. -Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Harthall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. +Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Hartwall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. # Clues, Mysteries, and Open Threads @@ -121,7 +121,7 @@ Shurling reported that the Chorus knew the entrance to Grincray but needed to go Something is still preventing all lost knowledge from being retrieved. This blocker may be connected to flesh-crafting wands, memory interference, or barrier magic. -Lady Harthall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Harthall, Perodita, and Snow Sorrow remain unresolved. +Lady Hartwall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Harthall, Perodita, and Snow Sorrow remain unresolved. The Menagerie, formerly the mage school, is locked down by mages who did not return to Grand Towers. Emi's dark-skinned elf apprentice, Joy's dislike of him, and Browning's contradictory reputation are important unresolved leads. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md index 6026463..2a04c76 100644 --- a/data/4-days-cleaned/day-47.md +++ b/data/4-days-cleaned/day-47.md @@ -30,13 +30,13 @@ complete: true # Narrative -Day 47 began after the party decided to go to Harthall's lab. They tried to put rations into the bag of holding while escaping back to the ground. Morgana set something free in the forest; it was called "No chart." The notes then report that adventurers had taken Lady Harthall's diary and killed the elf who had been taking woodcutters from Pinesprings. +Day 47 began after the party decided to go to Harthall's lab. They tried to put rations into the bag of holding while escaping back to the ground. Morgana set something free in the forest; it was called "No chart." The notes then report that adventurers had taken Lady Hartwall's diary and killed the elf who had been taking woodcutters from Pinesprings. In the ransacked room, an untouched picture showed a halfling girl with a silver-haired girl in a field of white roses. The picture had been altered: investigation revealed that the other side of the girls had been changed, and another girl had originally been in the picture. Draconic runes on the frame included the word "Preserve." Beyond a door was an empty bookshelf and an alchemist's table covered in mushrooms. The phrase "Friend fleshbag set him free" appeared in the notes, along with the statement that the children were elsewhere now. The party learned or inferred that two silver dragons had lived there, fought, one left, and then came back, after which there were three: one big and two small. At the end of a corridor were two prison rooms. One room was filled with dirt and kept filling with more. The next room was locked; Platinum said the door had not been there when she was with the adventurers. Inside stood an obsidian plinth with an urn, a single white rose, an amethyst orb, a red ribbon tied in a bow, and a dark wooden flute laid like an offering. -An obsidian statue had no face but suggested a gracious god, with an eyestone in the lower torso, possibly Squeal. The other side represented Kasha, with an unclear note preserved as `[unclear: Leys 8? mystery]`. When the narrator looked at the flute, they somehow knew Lady Harthall played it, perhaps from a look from Provista, and a frosty tear formed in the corner of their eye. The urn read: "Though my love for you in life may not have been true, you still gave your life for me. I'm sorry." It was Argathum's urn. Behind the silks, one made the narrator shiver and feel afraid. Dirk found a crack in the wall. +An obsidian statue had no face but suggested a gracious god, with an eyestone in the lower torso, possibly Squeal. The other side represented Kasha, with an unclear note preserved as `[unclear: Leys 8? mystery]`. When the narrator looked at the flute, they somehow knew Lady Hartwall played it, perhaps from a look from Provista, and a frosty tear formed in the corner of their eye. The urn read: "Though my love for you in life may not have been true, you still gave your life for me. I'm sorry." It was Argathum's urn. Behind the silks, one made the narrator shiver and feel afraid. Dirk found a crack in the wall. When the party checked the crack, someone became petrified by it and instinctively threw the flute at it. The crack looked as if something spherical had hit it. Dirk checked the urn, found it contained dust, and tried to speak to it. The phrase "In her strange bones laid bare" was recorded. Nearby metal looked tarnished, odd for silver; when wiped, it revealed crystallised jade dust, as if silver were turning into jade. Geldrin cleaned both statues and became lost looking at one. @@ -102,7 +102,7 @@ Arc asked Dothral to set it free. The party teleported to the frost prison. Ice To the right, an elaborate door bore danger symbology. Turning right changed the symbols to say, "Don't go down here." Darkness lay that way, and the corridor felt as if it went farther. At the corridor end, where there was no ice, a closed door had black hardened tree sap or rubber around the frame. A feeling called from behind it. Dirk asked the ancestors what would happen if the party replaced the elemental and sensed woe. Further conversation suggested some lies. Dirk used Clairvoyance and saw a semicircular room with an apparently empty central plinth and rubber between all flagstones. This oracle area of the dome aligned with the pipe from Timnor's vision. The being said he was no longer in this plane. -At another prison, a standard carved door showed eight serpents with different heads: goat, lion, and bull among them. The door at the end was iced over, with no rubber. Lightning seemed to come from this side of the door. Dirk spoke Aquan. The entity knew Dirk's name, expected him to set it free, asked whether it was safe, and wanted to make sure it was the right thing. It could think and talk to some elementals. The notes suggest Lady Harthall had the ice thing trapped and may have put it into a fire elemental. It was weakened by the prison, could affect things through a gap, and had a cellmate throwing ice around. It had been tricked into the prison. Before releasing it, the party learned there were other angry prisoners. +At another prison, a standard carved door showed eight serpents with different heads: goat, lion, and bull among them. The door at the end was iced over, with no rubber. Lightning seemed to come from this side of the door. Dirk spoke Aquan. The entity knew Dirk's name, expected him to set it free, asked whether it was safe, and wanted to make sure it was the right thing. It could think and talk to some elementals. The notes suggest Lady Hartwall had the ice thing trapped and may have put it into a fire elemental. It was weakened by the prison, could affect things through a gap, and had a cellmate throwing ice around. It had been tricked into the prison. Before releasing it, the party learned there were other angry prisoners. One dark door now held nothing; it had been a prisoner of a different time. Another dark door led to an ancient dwarven hold, not a settlement. Opening it revealed a massive shaggy blue aurora. Geldrin promised to return and let it out when he learned how to power the dome without all the elementals. The cellmate had been chosen to turn off the gusts and could turn them back on when he pleased. @@ -142,7 +142,7 @@ The party then used the right blade to go to Harthall's lab. They gave the ice e # People, Factions, and Places Mentioned -People and name-like figures mentioned include Morgana, Lady Harthall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Elliana Harthall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. +People and name-like figures mentioned include Morgana, Lady Hartwall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Elliana Harthall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Harthall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Harthall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. @@ -152,7 +152,7 @@ Creatures and creature-like beings mentioned include the magical black green-eye # Items, Rewards, and Resources -Items, documents, and physical resources mentioned include the bag of holding, Lady Harthall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Harthall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Harthall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Harthall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. +Items, documents, and physical resources mentioned include the bag of holding, Lady Hartwall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Harthall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Harthall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Harthall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. @@ -162,7 +162,7 @@ Strategic resources and plans mentioned include the clue that an altered picture The altered white-rose picture and its `Preserve` rune imply a third girl was removed or hidden from memory or history. The identity of the missing girl and how she relates to Elliana, Joy, Hannah, and Harthall's daughters remains unresolved. -The note about "No chart," the forest release, and the adventurers who took Lady Harthall's diary are unexplained. +The note about "No chart," the forest release, and the adventurers who took Lady Hartwall's diary are unexplained. The mushroom table message "Friend fleshbag set him free" and the statement that the children are elsewhere now connect to earlier mushroom and Limos Vita threads, but the freed entity and the children's location remain unclear. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 4eda6c5..b5dc6b2 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -75,7 +75,7 @@ sources: - [Astraywoo](people/astraywoo.md): Astraywoo, athruygon? [uncertain]. - [Luth](people/luth.md): Luth. - [Freeport Auction Lots](items/freeport-auction-lots.md): auction house items, Freeport auction house lots. -- [Lady Hearthwill](people/lady-hearthwill.md): Lady Hearthwill, Hearthwill, Lady Hearthwall, Lady Harthwall, Lady Harthall, Harthall, Lady Harthwall [uncertain same as Hearthwill]. +- [Lady Hartwall](people/lady-hartwall.md): Lady Hartwall, Hartwall. - [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md): Lady R. Beauchamp?!?, Lady R. Beauchamp. - [The Freeport Baroness](people/freeport-baroness.md): Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. - [Lady Thorpe](people/lady-thorpe.md): Lady Thorpe, false Lady Thorpe, llama impostor. diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index 2a8a314..4dd3b2a 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -17,7 +17,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Existing Pages Updated or Used -- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hearthwill](../people/lady-hearthwill.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Envoi](../people/envoi.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). +- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hartwall](../people/lady-hartwall.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Envoi](../people/envoi.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). ## Rollups Used diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 6dcf4fc..b85ee1c 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -18,7 +18,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | | Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre / Altabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre / Altabre](../people/attabre-altabre.md). | -| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Hearthwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | +| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Hartwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | | Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md); aliases and open threads updated. | diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index b564115..3c8a753 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -86,7 +86,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Astraywoo](people/astraywoo.md) - [Luth](people/luth.md) - [The Freeport Baroness](people/freeport-baroness.md) -- [Lady Hearthwill](people/lady-hearthwill.md) +- [Lady Hartwall](people/lady-hartwall.md) - [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md) - [Lortesh](people/lortesh.md) - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 95c7e7a..a673dae 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -76,7 +76,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Dragon skull of Alsafaur | returned to black dragon | `day-16` | `data/4-days-cleaned/day-16.md` | Given to the black dragon at the Barrier in exchange for being `even`. | | 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | | One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hearthwall auction. | -| Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Harthwall wanted to see the party. | +| Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Hartwall wanted to see the party. | | Sword, necklace, bowl, tongs, cat/light-cat, and tail statue artifacts | returned to Brass City statues/body | `day-57` | `data/4-days-cleaned/day-57.md` | Returned or used to restore Council/Tresmon body pieces; see [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | ## Promised, Expected, or Pending diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index f0caad6..26ddde9 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -90,7 +90,7 @@ sources: - What are Enwi's gloves doing in the Goliath Tower in the Oasis, and does that mean Enwi died there without being released? - What are Ashktioth, Tradesmall, the Goliath tower in a field, Goldenswell's impact site, and the generations of Goliaths serving dragons? - What do the command-tent platinum coins commemorate by `the fall of the labour in the name of the lord Searean`, and what are the domed city tower and snake symbols? -- Is [Lady Hearthwill](people/lady-hearthwill.md) the same person as Lady Hearthwall / Lady Harthwall, and what happened to her after the antidote, injury, and Lady Thorpe impersonation crisis? +- What happened to [Lady Hartwall](people/lady-hartwall.md) after the antidote, injury, and Lady Thorpe impersonation crisis? - Who replaced [Lady Thorpe](people/lady-thorpe.md) with a llama-form impostor, why did the impostor use Noxia-like identity-suppression poison or curse, and what did the Justicars learn after taking the llama to Grand Towers? - What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s shield-crystal role after hiding a crystal piece with Wroth, and why were Justicars looking for him at the Hearthwall auction? - Are the [Hearthwall Auction Lots](items/hearthwall-auction-lots.md) chariot, `Valententide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? @@ -184,7 +184,7 @@ sources: - What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? - Who was removed from the Harthall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Elliana, Joy, Hannah, and Harthall's daughters? -- What do Argathum's urn, Lady Harthall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Harthall's sacrifices? +- What do Argathum's urn, Lady Hartwall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Lady Hartwall's sacrifices? - Why did the sentient door prefer the narrator's dress-wearing form, and what did Mr Boorning do with the key after Avalina left? - Who is [Bynx](people/bynx.md)'s lion-headed `real daddy`, and what happened to Bynx's sister in the white dragon? - What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 418aa0a..81fe33b 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -30,7 +30,7 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - In the Highden battle, a massive frost dragon burst from a black hole, seized the skeletal dragon, called Harthall `My Child`, crashed through the Barrier, and was retrieved by a water elemental. - Cardunel planned to bury Icefang near Snow Sorrow. - Day 42 copper-dragon history says Ice Fury was about thirty to forty years older than the copper dragon, while [uncertain: Ice fang] / Atlih was noted near her boy and Snow Screen / Snow Sorrow. -- Day 43 says Lady Harthall remembered Icefang more clearly, that he cared for her, and that he and Lady Harthall assaulted Perodita while Icefang was starting to lose his mind. +- Day 43 says Lady Hartwall remembered Icefang more clearly, that he cared for her, and that he and Lady Hartwall assaulted Perodita while Icefang was starting to lose his mind. - Day 44 has Altith / Icefang contact the narrator, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. - Icefang's future vision if Browning acted showed broken tower fields, burning blue, black, green, and red dragons, hidden settlements, and destructive elementals. - Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Mama Harthall holding the blue ball and saying the work had to stop. @@ -42,7 +42,7 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Edward Browning](edward-browning.md) -- [Lady Hearthwill](lady-hearthwill.md) +- [Lady Hartwall](lady-hartwall.md) ## Open Questions diff --git a/data/6-wiki/people/lady-hartwall.md b/data/6-wiki/people/lady-hartwall.md new file mode 100644 index 0000000..27f09ee --- /dev/null +++ b/data/6-wiki/people/lady-hartwall.md @@ -0,0 +1,52 @@ +--- +title: Lady Hartwall +type: person +aliases: + - Hartwall + - Lady Hartwall +first_seen: day-30 +last_updated: day-43 +sources: + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md +--- + +# Lady Hartwall + +## Summary + +Lady Hartwall is a regional noble or military authority connected to Hearthwall, Goldenswell war news, and the Lady Thorpe impersonation crisis. + +## Known Details + +- She was injured after deciding to take the fight against the giants into her own hands. +- The news report said she was recuperating normally. +- Later the same day, Invar received a message saying the Lady was unavailable because she was fighting on the front lines. +- Day 32 places Lady Hartwall in Hearthwall, still injured, while Lady Freya attended the city. +- Lady Hartwall wanted to see the party after the false Lady Thorpe incident; doctors were making an antidote while she suffered great pain from a condition that seemed like magical poison or a religious curse, possibly Noxia. +- Lady Hartwall had noticed that Lady Thorpe had not visited as much as expected, but had not realized her wife or partner had been replaced. +- Eroll was used to send a message to Lady Hartwall after the Goldenswell rescue. +- On Day 36, Wrath impersonating Ruby Eye imprisoned Lady Hartwall with a silver dragon statue, then later claimed to remove the curse while lying about full recovery. +- Lady Hartwall transformed in the courtyard and was slightly bigger than the Peridot Queen. +- Lady Hartwall's Raven had exploded, and several explosions occurred across her city. +- Lady Hartwall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. +- Day 42 records Lady Hartwall away airwise to help with the battle heading to Emmerave. +- Day 43 records Lady Hartwall remembering Icefang, gold dragons, and her and Icefang's assault on Perodita; she also reported forces from Dumnensend, the Menagerie lockdown, Heathmoor plagues, and Goldenswell politics. +- Lady Hartwall transformed into a dragon at Ashkellon to catch the party after teleportation. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Lady Thorpe](lady-thorpe.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Open Threads](../open-threads.md) + +## Open Questions + +- Which front was she fighting on, and what authority does she hold over the anti-giant response? +- Was her poison or curse part of the same operation that abducted Lady Thorpe? +- What is Lady Hartwall's true parentage, and is Icefang her father? +- How do Lady Hartwall's recovered memories of Icefang, gold dragons, and Perodita alter her current political or military choices? diff --git a/data/6-wiki/people/lady-hearthwill.md b/data/6-wiki/people/lady-hearthwill.md deleted file mode 100644 index 7202cbe..0000000 --- a/data/6-wiki/people/lady-hearthwill.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: Lady Hearthwill -type: person -aliases: - - Hearthwill - - Lady Hearthwall - - Lady Harthwall - - Lady Harthall - - Harthall -first_seen: day-30 -last_updated: day-43 -sources: - - data/4-days-cleaned/day-30.md - - data/4-days-cleaned/day-32.md - - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-42.md - - data/4-days-cleaned/day-43.md ---- - -# Lady Hearthwill - -## Summary - -Lady Hearthwill, possibly the same person as Lady Hearthwall / Lady Harthwall, is a regional noble or military authority connected to Hearthwall, Goldenswell war news, and the Lady Thorpe impersonation crisis. The name merge remains uncertain but likely enough to preserve together with explicit variants. - -## Known Details - -- She was injured after deciding to take the fight against the giants into her own hands. -- The news report said she was recuperating normally. -- Later the same day, Invar received a message saying the Lady was unavailable because she was fighting on the front lines. -- Day 32 places Lady Hearthwall / Lady Harthwall in Hearthwall, still injured, while Lady Freya attended the city. -- Lady Harthwall wanted to see the party after the false Lady Thorpe incident; doctors were making an antidote while she suffered great pain from a condition that seemed like magical poison or a religious curse, possibly Noxia. -- Lady Harthwall had noticed that Lady Thorpe had not visited as much as expected, but had not realized her wife or partner had been replaced. -- Eroll was used to send a message to Lady Harthwall after the Goldenswell rescue. -- On Day 36, Wrath impersonating Ruby Eye imprisoned Harthwall with a silver dragon statue, then later claimed to remove the curse while lying about full recovery. -- Harthwall transformed in the courtyard and was slightly bigger than the Peridot Queen. -- Harthwall's Raven had exploded, and several explosions occurred across her city. -- Harthall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. -- Day 42 records Lady Heathwall away airwise to help with the battle heading to Emmerave. -- Day 43 records Lady Harthall remembering Icefang, gold dragons, and her and Icefang's assault on Perodita; she also reported forces from Dumnensend, the Menagerie lockdown, Heathmoor plagues, and Goldenswell politics. -- Lady Harthall transformed into a dragon at Ashkellon to catch the party after teleportation. - -## Related Entries - -- [Dunnersend](../places/dunnersend.md) -- [Lady Thorpe](lady-thorpe.md) -- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) -- [Open Threads](../open-threads.md) - -## Open Questions - -- Is Lady Hearthwill the same person as Lady Hearthwall / Lady Harthwall, or are these separate Hearthwall nobles? -- Which front was she fighting on, and what authority does she hold over the anti-giant response? -- Was her poison or curse part of the same operation that abducted Lady Thorpe? -- What is Harthall's true parentage, and is Icefang her father? -- How do Harthall's recovered memories of Icefang, gold dragons, and Perodita alter her current political or military choices? diff --git a/data/6-wiki/people/lady-thorpe.md b/data/6-wiki/people/lady-thorpe.md index 4c91705..4661d59 100644 --- a/data/6-wiki/people/lady-thorpe.md +++ b/data/6-wiki/people/lady-thorpe.md @@ -11,7 +11,7 @@ sources: ## Summary -Lady Thorpe is Lady Harthwall's wife or partner and a front-line noble or commander who was impersonated, abducted, imprisoned in Goldenswell, and rescued by the party. +Lady Thorpe is Lady Hartwall's wife or partner and a front-line noble or commander who was impersonated, abducted, imprisoned in Goldenswell, and rescued by the party. ## Known Details @@ -23,7 +23,7 @@ Lady Thorpe is Lady Harthwall's wife or partner and a front-line noble or comman ## Related Entries -- [Lady Hearthwill](lady-hearthwill.md) +- [Lady Hartwall](lady-hartwall.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md) diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md index cee08f9..87b8a2b 100644 --- a/data/6-wiki/people/minor-figures-day-47.md +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -10,7 +10,7 @@ sources: | Figure | Day 47 details | Coverage | | --- | --- | --- | | Argathum | Urn inscription apologised that love in life may not have been true though Argathum gave life for the writer. | Rollup; linked to Harthall lab thread. | -| Provista | Possible source of the narrator somehow knowing Lady Harthall played the flute. | Rollup. | +| Provista | Possible source of the narrator somehow knowing Lady Hartwall played the flute. | Rollup. | | Avalina | Portrait subject; diary apparently revealed through makeup; tied to daughters, promises, forced mate, and Council of Gold. | Rollup and [Open Threads](../open-threads.md). | | Corundum, Argea?, Cetiosa | Portrait or missing-portrait names in the throne room. | Rollup; uncertainty preserved. | | Mr Boorning | Entered after Avalina left and departed with a key. | Rollup. | diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md index 4972183..2c625eb 100644 --- a/data/6-wiki/people/minor-figures-days-32-35.md +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -16,7 +16,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Lan: earth god associated with love, home, and family; the statue of Lan outside Hearthwall resembled the Statue of Serva. - Serva: figure represented by the Statue of Serva, stylistically similar to Lan's statue. -- Lady Freya: present in Hearthwall while Lady Harthwall remained injured. +- Lady Freya: present in Hearthwall while Lady Hartwall remained injured. - Human with a very noticeable underbelly: seen at the Baked Mattress. - Barkeep described as `Patches of night & husband`: associated with the Baked Mattress. - Candelissa Hustlebustle: Arabica pechen lady seated beside the party at the auction; bought drink lots. @@ -50,7 +50,7 @@ This rollup preserves one-off, uncertain, minor, or category-unclear people and - Bugy / Little Bugy: connected to an attempted assassination of Sefris on the ground and the Cult of Salvation. - Sefris: assassination target connected to Cult of Salvation activity. - Cardencalde: did not answer Eroll, which was strange because Eroll contacts her directly. -- Eroll: direct messaging/contact route to Cardencalde and Lady Harthwall; returned with Jin-Loo's ring. +- Eroll: direct messaging/contact route to Cardencalde and Lady Hartwall; returned with Jin-Loo's ring. - Alf: wanted out allot - Elementarium. - Scumi: goblin with a bag of skulls who tried to survey or enter the prison. - Gary: corrupted sphinx heading toward Grand Towers in skull visions. diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md index e1074be..3752fee 100644 --- a/data/6-wiki/people/minor-figures-days-42-44.md +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -35,7 +35,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Thromgore, Steven / Steve, Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | | [uncertain: Shulcher], Sierra, Earth Waker | Book and Noxia-corruption history figures. | Rollup/open thread; [Noxia](noxia.md). | | Partially ice dwarf, strapping Goliath, half-elf from Everdard, [uncertain: leechus] | Bleakstorm castle figures and lost-friend clue. | [Bleakstorm](../places/bleakstorm.md) / rollup. | -| Lady Parthabbit, Lady Heathwall, T.J. Boggins, Jin Woo | Heathwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | +| Lady Parthabbit, Lady Hartwall, T.J. Boggins, Jin Woo | Heathwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | ## Day 43 @@ -48,7 +48,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre / Altabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | | Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | | [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | -| Lady Harthall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcraft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | +| Lady Hartwall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcraft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | | Earl of Goldenswell, Harthall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | | Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadwal feather conversation and Benu-summoning details. | Rollup/open thread. | | Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | Status rollup. | diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 13ae84c..536ab89 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -41,7 +41,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Day 41 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. - Day 42 council history said the Goliath Empire killed Perodika's parents and built a city on their bones; Perodita later headed toward Heathwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. - Galimma's dragon-family information preserves Perodika's children or related dragons with uncertain names and locations. -- Day 43 says Lady Harthall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. +- Day 43 says Lady Hartwall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. - Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. - Day 48 reveals Verdigrim originally invited the party because Perodita told him to kill them and promised to leave his people alone. - Day 53 makes Perodita an urgent dwarven-city threat: Anya Blakedurn says Perodita is trying to get back into the dome through the city, and Perodita claims goliath suffering was tribute to Noxia. diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 73b6094..95c65a5 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -56,7 +56,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Kiendra](kiendra.md) | rescued, weak, tortured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Initially believed killed/lost, then sensed in a cavern and rescued during the shield crystal mission. | | Huntmaster Thrune / Huntmaster | survived but injured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Agreed to aid against the Excellence, went missing, then was found fighting an Excellence while both were very injured. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | restored | `data/4-days-cleaned/day-30.md` | Restored from an animated floating skull with both eyes glowing red; immediately helped gather supplies. | -| [Lady Hearthwill](lady-hearthwill.md) | injured, then active on the front lines | `data/4-days-cleaned/day-30.md` | Injured fighting giants but recuperating normally; later unavailable because she was fighting on the front lines. | +| [Lady Hartwall](lady-hartwall.md) | injured, then active on the front lines | `data/4-days-cleaned/day-30.md` | Injured fighting giants but recuperating normally; later unavailable because she was fighting on the front lines. | | [Lady Thorpe](lady-thorpe.md) | rescued from Goldenswell | `data/4-days-cleaned/day-32.md` | Real Lady Thorpe was abducted, injured, and malnourished in Goldenswell; false Lady Thorpe became a llama when concentration failed. | | Lady Katherine Cole | rescued and memory restored | `data/4-days-cleaned/day-35.md` | Ear grub removed and killed; memories of The Guilt returned and watched feeling ended. | | [TJ Biggins](tj-biggins.md) | rescued | `data/4-days-cleaned/day-35.md` | Kobold from Plantation of Newt [unclear] Vain; experienced seven moons between home sleep and rescue. | @@ -64,7 +64,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Lord [uncertain: Harmock] Hayes | rescued | `data/4-days-cleaned/day-35.md` | Rescued from prisoner cart; apparent council member. | | [Lady Yadreya Egrine](lady-yadreya-egrine.md) | rescued | `data/4-days-cleaned/day-35.md` | Baroness of Riversmeet; recognized the ear grubs from her menagerie. | | Invar | curse memory partly restored | `data/4-days-cleaned/day-36.md` | Remembered he knew remove curse; bracelet fell off his wrist; still did not remember being kidnapped. | -| [Lady Hearthwill](lady-hearthwill.md) / Harthall | curse partly addressed, active in battle | `data/4-days-cleaned/day-36.md` | Wrath claimed she would recover in days but was lying; she transformed and later fought at Highden. | +| [Lady Hartwall](lady-hartwall.md) | curse partly addressed, active in battle | `data/4-days-cleaned/day-36.md` | Wrath claimed she would recover in days but was lying; she transformed and later fought at Highden. | | Arik Bellburn | injured then healed | `data/4-days-cleaned/day-36.md` | Bridget clergyman in Bellburn. | | Greysock Soulspindle | reincarnated as elf | `data/4-days-cleaned/day-41.md` | Elderly gnome cobbler changed after battle; Captain Sprat fetched clothes. | | Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-41.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md index 715cdbf..1a7d713 100644 --- a/data/6-wiki/people/wrath.md +++ b/data/6-wiki/people/wrath.md @@ -31,7 +31,7 @@ Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pa ## Related Entries - [Brutor Ruby Eye](brutor-ruby-eye.md) -- [Lady Hearthwill](lady-hearthwill.md) +- [Lady Hartwall](lady-hartwall.md) - [Edward Browning](edward-browning.md) - [Excellences](../concepts/excellences.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) diff --git a/data/6-wiki/places/highden-fell.md b/data/6-wiki/places/highden-fell.md index ca5a8b2..b6b73ea 100644 --- a/data/6-wiki/places/highden-fell.md +++ b/data/6-wiki/places/highden-fell.md @@ -28,7 +28,7 @@ Highden Fell was a major battlefront on day 36, suffering crystal sickness, mili ## Related Entries - [Icefang](../people/icefang.md) -- [Lady Hearthwill](../people/lady-hearthwill.md) +- [Lady Hartwall](../people/lady-hartwall.md) - [Brutor Ruby Eye](../people/brutor-ruby-eye.md) - [Elemental Prisons](../concepts/elemental-prisons.md) - [Underbelly](../factions/underbelly.md) diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index a0d7b36..ee685dd 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -18,7 +18,7 @@ sources: | Envy's lab | Dangerous chest comparison. | [Excellences](../concepts/excellences.md) / rollup. | | Mercy's place, Drunken Duck, Grand Towers passage, broom cupboard, floor 65, floor 74, floor 98 | Grand Towers access route and sites. | [Brookville Springs](brookville-springs.md), [Grand Towers](grand-towers.md). | | Bellburn, early Bridget-like church, Bellburn courtyard and tower | Outside-dome Bridget/goliath town and Harthwall fight area. | [Bridget's Doors](../concepts/bridgets-doors.md) / rollup. | -| Harthwall / Hearthwall castle gates and courtyard | Harthwall transformation and recovery. | [Lady Hearthwill](../people/lady-hearthwill.md). | +| Harthwall / Hearthwall castle gates and courtyard | Harthwall transformation and recovery. | [Lady Hartwall](../people/lady-hartwall.md). | | Stone Rampart, pylon, bazaar | Day-36 war and travel points. | Rollup. | | Valenthielles prison rooms | Seamless teleport room, middle door, dark corridor, smoky prison room. | [Valenthielles Prison](valenthielles-prison.md). | | Cathedral, Earl's other foot, park between legs, inn taken by troops, river battle point, forest ambush site, mountain plume | Highden Fell sites. | [Highden Fell](highden-fell.md). | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 5820c38..e84354f 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -80,15 +80,15 @@ sources: - `data/4-days-cleaned/day-27.md`: [Dunnersend](places/dunnersend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-28.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). - `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hearthwill](people/lady-hearthwill.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hartwall](people/lady-hartwall.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hearthwill](people/lady-hearthwill.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hartwall](people/lady-hartwall.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hearthwill](people/lady-hearthwill.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hartwall](people/lady-hartwall.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). -- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hearthwill](people/lady-hearthwill.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hartwall](people/lady-hartwall.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). -
8c300feRename Busalish references to The Basiliskby Laura Mostert
data/2-pages/100.txt | 2 +- data/2-pages/105.txt | 4 +- data/2-pages/107.txt | 2 +- data/2-pages/118.txt | 4 +- data/2-pages/119.txt | 2 +- data/2-pages/120.txt | 2 +- data/2-pages/121.txt | 2 +- data/2-pages/147.txt | 2 +- data/2-pages/164.txt | 2 +- data/2-pages/165.txt | 4 +- data/2-pages/166.txt | 2 +- data/2-pages/179.txt | 4 +- data/2-pages/180.txt | 2 +- data/2-pages/270.txt | 2 +- data/2-pages/37.txt | 6 +-- data/2-pages/53.txt | 2 +- data/2-pages/55.txt | 4 +- data/2-pages/57.txt | 2 +- data/2-pages/61.txt | 2 +- data/2-pages/70.txt | 2 +- data/2-pages/71.txt | 2 +- data/2-pages/87.txt | 2 +- data/2-pages/88.txt | 2 +- data/2-pages/98.txt | 6 +-- data/2-pages/99.txt | 2 +- data/3-days/day-14.md | 6 +-- data/3-days/day-17.md | 8 ++-- data/3-days/day-20.md | 2 +- data/3-days/day-23.md | 4 +- data/3-days/day-26.md | 4 +- data/3-days/day-27.md | 10 ++-- data/3-days/day-29.md | 2 +- data/3-days/day-30.md | 4 +- data/3-days/day-32.md | 10 ++-- data/3-days/day-36.md | 2 +- data/3-days/day-41.md | 8 ++-- data/3-days/day-42.md | 4 +- data/3-days/day-43.md | 2 +- data/3-days/day-55.md | 2 +- data/4-days-cleaned/day-14.md | 8 ++-- data/4-days-cleaned/day-17.md | 12 ++--- data/4-days-cleaned/day-20.md | 4 +- data/4-days-cleaned/day-23.md | 4 +- data/4-days-cleaned/day-26.md | 6 +-- data/4-days-cleaned/day-27.md | 16 +++---- data/4-days-cleaned/day-29.md | 4 +- data/4-days-cleaned/day-30.md | 6 +-- data/4-days-cleaned/day-32.md | 16 +++---- data/4-days-cleaned/day-36.md | 4 +- data/4-days-cleaned/day-41.md | 20 ++++---- data/4-days-cleaned/day-42.md | 8 ++-- data/4-days-cleaned/day-43.md | 4 +- data/4-days-cleaned/day-46.md | 2 +- data/6-wiki/aliases.md | 2 +- data/6-wiki/clues/day-46-coverage-audit.md | 2 +- data/6-wiki/clues/days-36-40-41-coverage-audit.md | 2 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 2 +- .../clues/known-passwords-and-inscriptions.md | 6 +-- .../goldenswell-prison-network-and-memory-grubs.md | 2 +- data/6-wiki/factions/black-scales.md | 2 +- data/6-wiki/factions/the-pact.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/inventories/party-inventory.md | 8 ++-- data/6-wiki/items/minor-items-days-53-56.md | 2 +- data/6-wiki/open-threads.md | 4 +- data/6-wiki/people/basilisk-busalish.md | 54 ---------------------- data/6-wiki/people/galimma-peridot-queen.md | 4 +- data/6-wiki/people/infestus.md | 2 +- data/6-wiki/people/minor-figures-days-36-40-41.md | 4 +- data/6-wiki/people/status.md | 4 +- data/6-wiki/people/the-basilisk.md | 50 ++++++++++++++++++++ data/6-wiki/places/grand-towers.md | 2 +- data/6-wiki/places/minor-places-days-36-40-41.md | 2 +- data/6-wiki/sources.md | 14 +++--- data/6-wiki/timeline.md | 2 +- 75 files changed, 210 insertions(+), 214 deletions(-)Show diff
diff --git a/data/2-pages/100.txt b/data/2-pages/100.txt index 7d39aad..a9ee1c8 100644 --- a/data/2-pages/100.txt +++ b/data/2-pages/100.txt @@ -15,7 +15,7 @@ waterwise. She also saw the visions went better when Morgana was there as there should be 5 of us. -Send message to Basilisk about Sister's Shop. +Send message to The Basilisk about Sister's Shop. [left note] Day 28 (Monday) diff --git a/data/2-pages/105.txt b/data/2-pages/105.txt index 4f190b7..9849950 100644 --- a/data/2-pages/105.txt +++ b/data/2-pages/105.txt @@ -19,7 +19,7 @@ retrieve Errol. Rhelmbreaker giant spotted at Highden travelling waterwise. go to bath house. -- Message Busalish - killed Lortesh. +- Message The Basilisk - killed Lortesh. Errol hops onto a message table. make your decision (Anite!) @@ -31,6 +31,6 @@ Head to Inn & sleep. [left margin] Day 30 (Wednesday) 2nd Tan 107 AT. 4 days to Timnor. 5 days to auction. +2 days 4pm [uncertain: Lathlie] Town Crier information laptop. -- message from Busalish - wants to meet us - comes in. +- message from The Basilisk - wants to meet us - comes in. Lady Hearthwill injured - fighting giants decided to take into her own hands, recuperating norm. Goldenswell retreated soldiers. diff --git a/data/2-pages/107.txt b/data/2-pages/107.txt index 8d444fc..064e9da 100644 --- a/data/2-pages/107.txt +++ b/data/2-pages/107.txt @@ -25,7 +25,7 @@ Browning's lab near Craters edge. Magical defenses against Valententhide. Counterspell. -Message to Busalish to say guilt is Excellence & ask for mage help with Wrath. +Message to The Basilisk to say guilt is Excellence & ask for mage help with Wrath. Benu can create a hero's feast. diff --git a/data/2-pages/118.txt b/data/2-pages/118.txt index 8894e7b..fe95964 100644 --- a/data/2-pages/118.txt +++ b/data/2-pages/118.txt @@ -26,7 +26,7 @@ family. Decide to go & make a plan before speaking to the wizard, go to the Irate Unicorn. - shrine to Law here. -Ask Busalish for help from the guild to check +Ask The Basilisk for help from the guild to check the prisons. - go to see the wizard. @@ -36,7 +36,7 @@ back tomorrow. Day 27 Bag humming & glowing, & note from -Busalish. +The Basilisk. Redford & Everchard, No Lady Thorpe. Refused & prevented from Goldenswell, met a few things reporters etc. diff --git a/data/2-pages/119.txt b/data/2-pages/119.txt index 3f66b0f..565246d 100644 --- a/data/2-pages/119.txt +++ b/data/2-pages/119.txt @@ -14,7 +14,7 @@ in size, can see the small chunk. 09:30 Geldrin estimates it should be there around 2am so 16 hours ahead of schedule. -Tell everybody about Busalish note & 3 prisons. +Tell everybody about The Basilisk note & 3 prisons. Go back to Tortle mage, (Jin-Loo). Tell him about the Tri-moon - found it happened diff --git a/data/2-pages/120.txt b/data/2-pages/120.txt index 3133325..f8636f2 100644 --- a/data/2-pages/120.txt +++ b/data/2-pages/120.txt @@ -21,7 +21,7 @@ Take Captain & Lady Thorpe & a cart & leave the city, manage to get out. Come off the road & find a place to hide. -Message Busalish to let him know we have +Message The Basilisk to let him know we have her, revive Lady Thorpe. Man who had 1/2 snake for a body diff --git a/data/2-pages/121.txt b/data/2-pages/121.txt index e61fd19..0463198 100644 --- a/data/2-pages/121.txt +++ b/data/2-pages/121.txt @@ -7,7 +7,7 @@ Woman & a man female Halfling Alf wants out allot - Elementarium -Busalish message - Don't come to Strong hedge Compromised +The Basilisk message - Don't come to Strong hedge Compromised Elementarium was in the town Crier information 4 days ago but imprisoned over 1 week ago. (There's an imposter in place) diff --git a/data/2-pages/147.txt b/data/2-pages/147.txt index 4de41c3..ddc5f3a 100644 --- a/data/2-pages/147.txt +++ b/data/2-pages/147.txt @@ -16,7 +16,7 @@ back. - they are the only two to trust. - Highden is a wreck. - troops taken over the inn - Never sees the sun. -Send Basilisk a note of current happenings. +Send The Basilisk a note of current happenings. - Use the pulley lift system to go to the inn Guard on the door. 60 ft Giant. Not the size of the diff --git a/data/2-pages/164.txt b/data/2-pages/164.txt index fe9bcc4..bacfdff 100644 --- a/data/2-pages/164.txt +++ b/data/2-pages/164.txt @@ -29,7 +29,7 @@ Scales. Possesses people & speaks to Dirk: - I think you underestimate me - I am the choking death & the mother of many. then chokes some of the townsfolk -Send message to Basalisk +Send message to The Basilisk Errol message to Cardonald & rubyeye they say they're coming to us. Seem to nearly get through but can't as there is a blocker in the area. will try to get to diff --git a/data/2-pages/165.txt b/data/2-pages/165.txt index 14c37bb..8f78f2a 100644 --- a/data/2-pages/165.txt +++ b/data/2-pages/165.txt @@ -2,7 +2,7 @@ Page: 165 Source: data/1-source/IMG_9830.jpg; data/1-source/IMG_9831.jpg Transcription: -Basalisk wants to meet in Donly or Sunset Vista as +The Basilisk wants to meet in Donly or Sunset Vista as blocker unable to teleport to us. Hunters encampment in the Savannah - ask for landmarks & head over. @@ -36,7 +36,7 @@ Attacked her once - respected her and her churches. she transformed to Searu - her staff changes to one of her arrows. -Basalisk appears - we're nothing but trouble - Emmeraine is +The Basilisk appears - we're nothing but trouble - Emmeraine is under attack. - father @ Dunnensend mobilising army. Muthall mobilising to Emmeraine. diff --git a/data/2-pages/166.txt b/data/2-pages/166.txt index 5126225..a28351c 100644 --- a/data/2-pages/166.txt +++ b/data/2-pages/166.txt @@ -12,7 +12,7 @@ Agents in PineSprings ran into some undead creatures Godmount pills may help but he's an idiot. Don't think we should bring the barrier down. They will co-ordinate the defense of the other towns -Basalisk will arrange to meet Peridot Queen by Trade Smells +The Basilisk will arrange to meet Peridot Queen by Trade Smells get Cardonald to come get us & take us back to the army. diff --git a/data/2-pages/179.txt b/data/2-pages/179.txt index 40a1d40..b1a675a 100644 --- a/data/2-pages/179.txt +++ b/data/2-pages/179.txt @@ -5,7 +5,7 @@ Transcription: Trixus got a task he was not going to achieve. -Send a message to the Basilisk about Perodita +Send a message to The Basilisk about Perodita heading to Heathwall - Didn't send us outside the Barrier. @@ -29,7 +29,7 @@ Head over to Heathwall. - speak to Lady Parthabbit Lady Heathwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. -* resend message to the Basilisk. +* resend message to The Basilisk. - T.J. Boggins is still here eating meat & watching opera. diff --git a/data/2-pages/180.txt b/data/2-pages/180.txt index 8618ae5..2f401a2 100644 --- a/data/2-pages/180.txt +++ b/data/2-pages/180.txt @@ -13,7 +13,7 @@ we killed The Mother) Had a job working for a wizard, evil wizard & some adventurers helped him escape capturing woodcutters for her Army. (Klesha) - Bodalisk told us about them + The Basilisk told us about them lovely Envoy came to him how to kill his townsfolk. (Dragon?) - silvery green. diff --git a/data/2-pages/270.txt b/data/2-pages/270.txt index be59071..80b27d8 100644 --- a/data/2-pages/270.txt +++ b/data/2-pages/270.txt @@ -22,7 +22,7 @@ Bridge was damaged. Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridget allowed it as it was for a trap, so she found it funny. -Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. +Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. The Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. City was taken over in the last month, gradually removing infrastructure. Then they seemed to turn on each other when Perodita attacked yesterday. diff --git a/data/2-pages/37.txt b/data/2-pages/37.txt index b9d043a..1f55e9e 100644 --- a/data/2-pages/37.txt +++ b/data/2-pages/37.txt @@ -13,7 +13,7 @@ in the observatory? examined in the last 20 years - Cult looking for a laboratory -Basalisk - There's a laboratory of a similar vein +The Basilisk - There's a laboratory of a similar vein 20 miles earthwise along the barrier. 20:00 @@ -21,12 +21,12 @@ Head back to town. * Common Room - sharing with one other person who hasn't shown up -* Message to Basalisk * +* Message to The Basilisk * He comes to us knows little about Salt elemental Black Scales - mercenary group work for Infestus (Black dragon) -Basalisk went to check observatory - couldn't open +The Basilisk went to check observatory - couldn't open the chest. & couldn't get in the golem underground room either. diff --git a/data/2-pages/53.txt b/data/2-pages/53.txt index 9b2faf2..3113f90 100644 --- a/data/2-pages/53.txt +++ b/data/2-pages/53.txt @@ -55,7 +55,7 @@ Red? - soob 1pm -Message to the Basilisk +Message to The Basilisk arrive at possible meeting point - waiting for nearly 3 hours - Cart comes off road with a human onboard. don't recognise diff --git a/data/2-pages/55.txt b/data/2-pages/55.txt index a7b7703..08a3395 100644 --- a/data/2-pages/55.txt +++ b/data/2-pages/55.txt @@ -39,8 +39,8 @@ sat at head of table seems to be Lady Thurtall stood beside [shunter/shutter] lady about 1ft when the barrier went up 4 chairs by the rug -- Trip in the sky - Basilisk appears with -- Lady Catherine Cole - Earl of Stronghedge (Basilisk is Bodyguard) +- Trip in the sky - The Basilisk appears with +- Lady Catherine Cole - Earl of Stronghedge (The Basilisk is Bodyguard) - Tiefling male takes another seat - portly - appears in a purple flush (The Guilt) - Valkyrie woman walks in - Earl of Ironcroft firewise - flanked by 2 dwarves. diff --git a/data/2-pages/57.txt b/data/2-pages/57.txt index fa8571b..b5fc2c0 100644 --- a/data/2-pages/57.txt +++ b/data/2-pages/57.txt @@ -13,7 +13,7 @@ will & thrived in certain places. The guys with multiple arms are the excellence. 5 is a Holy number as it's seen as removing the darkness -Basilisk - getting someone to meet us in Fairshaws +The Basilisk - getting someone to meet us in Fairshaws or Freeport they will carry a Winter Rose. * gave him the coin press & told him the coins in the cart were a crate of them diff --git a/data/2-pages/61.txt b/data/2-pages/61.txt index 6751dce..ef14b5d 100644 --- a/data/2-pages/61.txt +++ b/data/2-pages/61.txt @@ -39,6 +39,6 @@ Azure for Dirk's city shipment - get a smell unit Sahuagin have one of the [Scepter] Conch's (8 in existence) Kiendra's -asked Basilisk if he can get help to Shandra +asked The Basilisk if he can get help to Shandra one of the Merfolk will come with us Pact leader Freeport - Tiana diff --git a/data/2-pages/70.txt b/data/2-pages/70.txt index 85621d0..b9b7afd 100644 --- a/data/2-pages/70.txt +++ b/data/2-pages/70.txt @@ -43,6 +43,6 @@ Alana seems to revive him & takes him back to the ship * chests seem to be laced so waterproof - contents may Not be openable under water open one & contains white powder which I inhale. -Basilisk attack - Salamanders - & Arabic writing. +The Basilisk attack - Salamanders - & Arabic writing. white dragon circling around the dome Rabbits - whole room turns into a black void. diff --git a/data/2-pages/71.txt b/data/2-pages/71.txt index 1bc7025..ff736d7 100644 --- a/data/2-pages/71.txt +++ b/data/2-pages/71.txt @@ -40,4 +40,4 @@ silver? Religious? Water god? Censer of Noxia ability to enrage & control water elementals. It's active. -* Send message to Basilisk +* Send message to The Basilisk diff --git a/data/2-pages/87.txt b/data/2-pages/87.txt index bbdd2de..ecf0917 100644 --- a/data/2-pages/87.txt +++ b/data/2-pages/87.txt @@ -34,7 +34,7 @@ manage to kick the runes away & let the void elemental out. horrible boob covered form appears - The Mother? -Send a message for help to Basaluk +Send a message for help to The Basilisk he appears with a tabaxi & his boss Garadwal teleports out Void also disappears diff --git a/data/2-pages/88.txt b/data/2-pages/88.txt index 5bf56b6..40d672f 100644 --- a/data/2-pages/88.txt +++ b/data/2-pages/88.txt @@ -4,7 +4,7 @@ Source: data/1-source/IMG_9750.jpg Transcription: need to check on the Hatchery -Basalisk returns as other important things to sort. +The Basilisk returns as other important things to sort. All thanking the Merfolk for saving them, rest of the town seems ok. diff --git a/data/2-pages/98.txt b/data/2-pages/98.txt index e2d72c8..01a87ac 100644 --- a/data/2-pages/98.txt +++ b/data/2-pages/98.txt @@ -20,20 +20,20 @@ Say yes & she gives a box the same as the one from Gelissa but not the same. - This is what the break ins were about. - She doesn't believe me & tells us to - leave - Message the Basilisk - asking if she + leave - Message The Basilisk - asking if she should have it or if we should retrieve it? Eroll returns - Dirk's sister - Dad not available please come to Salvation we need help. -Basilisk return message - how do you find these +The Basilisk return message - how do you find these things leave it alone - you are in over your head. veridian Massive dragonborn approaches the shop with two sickly Goliaths - enters the shop bangs on the -Tell Basilisk this is when we can reset the stone. +Tell The Basilisk this is when we can reset the stone. Figure on one of the Dome roofs. Try to stealth. diff --git a/data/2-pages/99.txt b/data/2-pages/99.txt index d679d90..d4eeb82 100644 --- a/data/2-pages/99.txt +++ b/data/2-pages/99.txt @@ -12,7 +12,7 @@ threatens Dirk & the Goliaths - will get him one day! Back to Sisters. heat box was intercepted - that was us! -Basilisk was looking for the box & +The Basilisk was looking for the box & 22:00 diff --git a/data/3-days/day-14.md b/data/3-days/day-14.md index c21d93d..3e4e29b 100644 --- a/data/3-days/day-14.md +++ b/data/3-days/day-14.md @@ -192,7 +192,7 @@ in the observatory? examined in the last 20 years - Cult looking for a laboratory -Basalisk - There's a laboratory of a similar vein +The Basilisk - There's a laboratory of a similar vein 20 miles earthwise along the barrier. 20:00 @@ -200,12 +200,12 @@ Head back to town. * Common Room - sharing with one other person who hasn't shown up -* Message to Basalisk * +* Message to The Basilisk * He comes to us knows little about Salt elemental Black Scales - mercenary group work for Infestus (Black dragon) -Basalisk went to check observatory - couldn't open +The Basilisk went to check observatory - couldn't open the chest. & couldn't get in the golem underground room either. diff --git a/data/3-days/day-17.md b/data/3-days/day-17.md index dd9bca3..de08c80 100644 --- a/data/3-days/day-17.md +++ b/data/3-days/day-17.md @@ -46,7 +46,7 @@ Red? - soob 1pm -Message to the Basilisk +Message to The Basilisk arrive at possible meeting point - waiting for nearly 3 hours - Cart comes off road with a human onboard. don't recognise @@ -141,8 +141,8 @@ sat at head of table seems to be Lady Thurtall stood beside [shunter/shutter] lady about 1ft when the barrier went up 4 chairs by the rug -- Trip in the sky - Basilisk appears with -- Lady Catherine Cole - Earl of Stronghedge (Basilisk is Bodyguard) +- Trip in the sky - The Basilisk appears with +- Lady Catherine Cole - Earl of Stronghedge (The Basilisk is Bodyguard) - Tiefling male takes another seat - portly - appears in a purple flush (The Guilt) - Valkyrie woman walks in - Earl of Ironcroft firewise - flanked by 2 dwarves. @@ -210,7 +210,7 @@ will & thrived in certain places. The guys with multiple arms are the excellence. 5 is a Holy number as it's seen as removing the darkness -Basilisk - getting someone to meet us in Fairshaws +The Basilisk - getting someone to meet us in Fairshaws or Freeport they will carry a Winter Rose. * gave him the coin press & told him the coins in the cart were a crate of them diff --git a/data/3-days/day-20.md b/data/3-days/day-20.md index 3f7f488..a727a48 100644 --- a/data/3-days/day-20.md +++ b/data/3-days/day-20.md @@ -43,7 +43,7 @@ Azure for Dirk's city shipment - get a smell unit Sahuagin have one of the [Scepter] Conch's (8 in existence) Kiendra's -asked Basilisk if he can get help to Shandra +asked The Basilisk if he can get help to Shandra one of the Merfolk will come with us Pact leader Freeport - Tiana diff --git a/data/3-days/day-23.md b/data/3-days/day-23.md index fdd77f8..631f07e 100644 --- a/data/3-days/day-23.md +++ b/data/3-days/day-23.md @@ -55,7 +55,7 @@ Alana seems to revive him & takes him back to the ship * chests seem to be laced so waterproof - contents may Not be openable under water open one & contains white powder which I inhale. -Basilisk attack - Salamanders - & Arabic writing. +The Basilisk attack - Salamanders - & Arabic writing. white dragon circling around the dome Rabbits - whole room turns into a black void. @@ -98,7 +98,7 @@ silver? Religious? Water god? Censer of Noxia ability to enrage & control water elementals. It's active. -* Send message to Basilisk +* Send message to The Basilisk ## Page 72 diff --git a/data/3-days/day-26.md b/data/3-days/day-26.md index 2481506..921a4fa 100644 --- a/data/3-days/day-26.md +++ b/data/3-days/day-26.md @@ -186,7 +186,7 @@ but it is still there. manage to kick the runes away & let the void horrible boob covered form appears - The Mother? -Send a message for help to Basaluk +Send a message for help to The Basilisk he appears with a tabaxi & his boss Garadwal teleports out Void also disappears @@ -195,7 +195,7 @@ The Mother DIES!!! ## Page 88 need to check on the Hatchery -Basalisk returns as other important things to sort. +The Basilisk returns as other important things to sort. All thanking the Merfolk for saving them, rest of the town seems ok. diff --git a/data/3-days/day-27.md b/data/3-days/day-27.md index 3386563..a2a7611 100644 --- a/data/3-days/day-27.md +++ b/data/3-days/day-27.md @@ -316,20 +316,20 @@ Say yes & she gives a box the same as the one from Gelissa but not the same. - This is what the break ins were about. - She doesn't believe me & tells us to - leave - Message the Basilisk - asking if she + leave - Message The Basilisk - asking if she should have it or if we should retrieve it? Eroll returns - Dirk's sister - Dad not available please come to Salvation we need help. -Basilisk return message - how do you find these +The Basilisk return message - how do you find these things leave it alone - you are in over your head. veridian Massive dragonborn approaches the shop with two sickly Goliaths - enters the shop bangs on the -Tell Basilisk this is when we can reset the stone. +Tell The Basilisk this is when we can reset the stone. Figure on one of the Dome roofs. Try to stealth. @@ -351,7 +351,7 @@ threatens Dirk & the Goliaths - will get him one day! Back to Sisters. heat box was intercepted - that was us! -Basilisk was looking for the box & +The Basilisk was looking for the box & 22:00 @@ -397,6 +397,6 @@ waterwise. She also saw the visions went better when Morgana was there as there should be 5 of us. -Send message to Basilisk about Sister's Shop. +Send message to The Basilisk about Sister's Shop. [left note] diff --git a/data/3-days/day-29.md b/data/3-days/day-29.md index 1ee46e2..94fd0a6 100644 --- a/data/3-days/day-29.md +++ b/data/3-days/day-29.md @@ -67,7 +67,7 @@ retrieve Errol. Rhelmbreaker giant spotted at Highden travelling waterwise. go to bath house. -- Message Busalish - killed Lortesh. +- Message The Basilisk - killed Lortesh. Errol hops onto a message table. make your decision (Anite!) diff --git a/data/3-days/day-30.md b/data/3-days/day-30.md index 66e04f9..c053baf 100644 --- a/data/3-days/day-30.md +++ b/data/3-days/day-30.md @@ -21,7 +21,7 @@ complete: true [left margin] Day 30 (Wednesday) 2nd Tan 107 AT. 4 days to Timnor. 5 days to auction. +2 days 4pm [uncertain: Lathlie] Town Crier information laptop. -- message from Busalish - wants to meet us - comes in. +- message from The Basilisk - wants to meet us - comes in. Lady Hearthwill injured - fighting giants decided to take into her own hands, recuperating norm. Goldenswell retreated soldiers. @@ -84,7 +84,7 @@ Browning's lab near Craters edge. Magical defenses against Valententhide. Counterspell. -Message to Busalish to say guilt is Excellence & ask for mage help with Wrath. +Message to The Basilisk to say guilt is Excellence & ask for mage help with Wrath. Benu can create a hero's feast. diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md index 5220e47..ea4f013 100644 --- a/data/3-days/day-32.md +++ b/data/3-days/day-32.md @@ -295,7 +295,7 @@ family. Decide to go & make a plan before speaking to the wizard, go to the Irate Unicorn. - shrine to Law here. -Ask Busalish for help from the guild to check +Ask The Basilisk for help from the guild to check the prisons. - go to see the wizard. @@ -305,7 +305,7 @@ back tomorrow. Day 27 Bag humming & glowing, & note from -Busalish. +The Basilisk. Redford & Everchard, No Lady Thorpe. Refused & prevented from Goldenswell, met a few things reporters etc. @@ -329,7 +329,7 @@ in size, can see the small chunk. 09:30 Geldrin estimates it should be there around 2am so 16 hours ahead of schedule. -Tell everybody about Busalish note & 3 prisons. +Tell everybody about The Basilisk note & 3 prisons. Go back to Tortle mage, (Jin-Loo). Tell him about the Tri-moon - found it happened @@ -378,7 +378,7 @@ Take Captain & Lady Thorpe & a cart & leave the city, manage to get out. Come off the road & find a place to hide. -Message Busalish to let him know we have +Message The Basilisk to let him know we have her, revive Lady Thorpe. Man who had 1/2 snake for a body @@ -408,7 +408,7 @@ Woman & a man female Halfling Alf wants out allot - Elementarium -Busalish message - Don't come to Strong hedge Compromised +The Basilisk message - Don't come to Strong hedge Compromised Elementarium was in the town Crier information 4 days ago but imprisoned over 1 week ago. (There's an imposter in place) diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md index 37919e0..656e08d 100644 --- a/data/3-days/day-36.md +++ b/data/3-days/day-36.md @@ -722,7 +722,7 @@ back. - they are the only two to trust. - Highden is a wreck. - troops taken over the inn - Never sees the sun. -Send Basilisk a note of current happenings. +Send The Basilisk a note of current happenings. - Use the pulley lift system to go to the inn Guard on the door. 60 ft Giant. Not the size of the diff --git a/data/3-days/day-41.md b/data/3-days/day-41.md index 8029489..190e47b 100644 --- a/data/3-days/day-41.md +++ b/data/3-days/day-41.md @@ -109,7 +109,7 @@ Scales. Possesses people & speaks to Dirk: - I think you underestimate me - I am the choking death & the mother of many. then chokes some of the townsfolk -Send message to Basalisk +Send message to The Basilisk Errol message to Cardonald & rubyeye they say they're coming to us. Seem to nearly get through but can't as there is a blocker in the area. will try to get to @@ -123,7 +123,7 @@ light returns to normal she has around 10 mile range. ## Page 165 -Basalisk wants to meet in Donly or Sunset Vista as +The Basilisk wants to meet in Donly or Sunset Vista as blocker unable to teleport to us. Hunters encampment in the Savannah - ask for landmarks & head over. @@ -157,7 +157,7 @@ Attacked her once - respected her and her churches. she transformed to Searu - her staff changes to one of her arrows. -Basalisk appears - we're nothing but trouble - Emmeraine is +The Basilisk appears - we're nothing but trouble - Emmeraine is under attack. - father @ Dunnensend mobilising army. Muthall mobilising to Emmeraine. @@ -177,7 +177,7 @@ Agents in PineSprings ran into some undead creatures Godmount pills may help but he's an idiot. Don't think we should bring the barrier down. They will co-ordinate the defense of the other towns -Basalisk will arrange to meet Peridot Queen by Trade Smells +The Basilisk will arrange to meet Peridot Queen by Trade Smells get Cardonald to come get us & take us back to the army. diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md index 908465e..8c87ef2 100644 --- a/data/3-days/day-42.md +++ b/data/3-days/day-42.md @@ -594,7 +594,7 @@ Ruby eye is out of his sight Trixus got a task he was not going to achieve. -Send a message to the Basilisk about Perodita +Send a message to The Basilisk about Perodita heading to Heathwall - Didn't send us outside the Barrier. @@ -618,7 +618,7 @@ Head over to Heathwall. - speak to Lady Parthabbit Lady Heathwall isn't in she's gone Airwise to help us with the battle heading to Emmerave. -* resend message to the Basilisk. +* resend message to The Basilisk. - T.J. Boggins is still here eating meat & watching opera. diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md index 420a440..a0257c0 100644 --- a/data/3-days/day-43.md +++ b/data/3-days/day-43.md @@ -52,7 +52,7 @@ we killed The Mother) Had a job working for a wizard, evil wizard & some adventurers helped him escape capturing woodcutters for her Army. (Klesha) - Bodalisk told us about them + The Basilisk told us about them lovely Envoy came to him how to kill his townsfolk. (Dragon?) - silvery green. diff --git a/data/3-days/day-55.md b/data/3-days/day-55.md index 295fdf3..2e39b33 100644 --- a/data/3-days/day-55.md +++ b/data/3-days/day-55.md @@ -56,7 +56,7 @@ Bridge was damaged. Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridget allowed it as it was for a trap, so she found it funny. -Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. +Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. The Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. City was taken over in the last month, gradually removing infrastructure. Then they seemed to turn on each other when Perodita attacked yesterday. diff --git a/data/4-days-cleaned/day-14.md b/data/4-days-cleaned/day-14.md index 520b97b..b03cbd3 100644 --- a/data/4-days-cleaned/day-14.md +++ b/data/4-days-cleaned/day-14.md @@ -38,9 +38,9 @@ At an old door on the right, the sign of aging or the handle hurt. An old gnome The gnome or the locals wanted the Justicar kept out of what was happening below. Down to the left was the original entrance. The party looked at it and found it similar to a room they had seen before in the observatory. It had been examined in the last twenty years. A big black dragonborn then came in, described as the tour guide's boss and as one of not many around. -The party learned that the cult was looking for a laboratory. Basalisk said there was a laboratory of a similar vein twenty miles earthwise along the barrier. At 20:00 the party headed back to town. In the common room they were sharing with one other person who had not shown up. +The party learned that the cult was looking for a laboratory. The Basilisk said there was a laboratory of a similar vein twenty miles earthwise along the barrier. At 20:00 the party headed back to town. In the common room they were sharing with one other person who had not shown up. -The party sent a message to Basalisk, who came to them. He knew little about the salt elemental. He identified the Black Scales as a mercenary group working for Infestus, the black dragon. Basalisk had checked the observatory but could not open the chest and could not get into the golem underground room either. The party discussed Garadwal and the elemental prisons: a prison at a lake by a lab might hold the ooze one; one was frozen near Rhinewatch or Runewatch and might be the ice one; Garadwal was thought to be sand, though that seemed wrong because he was buried north of Aegis-on-Sands, raising the question of whether he was an elemental. The party planned to speak to the Elementarium person in Seaward. +The party sent a message to The Basilisk, who came to them. He knew little about the salt elemental. He identified the Black Scales as a mercenary group working for Infestus, the black dragon. The Basilisk had checked the observatory but could not open the chest and could not get into the golem underground room either. The party discussed Garadwal and the elemental prisons: a prison at a lake by a lab might hold the ooze one; one was frozen near Rhinewatch or Runewatch and might be the ice one; Garadwal was thought to be sand, though that seemed wrong because he was buried north of Aegis-on-Sands, raising the question of whether he was an elemental. The party planned to speak to the Elementarium person in Seaward. # People, Factions, and Places Mentioned @@ -57,7 +57,7 @@ The party sent a message to Basalisk, who came to them. He knew little about the - Underbelly: mentioned during the underground prison tour; a truce seemed to be in place. - Justicar: locals wanted the Justicar kept out of the underground prison area. - Black dragonborn tour-guide's boss: came into the prison area; noted as one of few black dragonborn around. -- Basalisk: provided information about a similar laboratory twenty miles earthwise along the barrier and later came after the party messaged him. +- The Basilisk: provided information about a similar laboratory twenty miles earthwise along the barrier and later came after the party messaged him. - Black Scales: mercenary group working for Infestus. - Infestus: identified as the black dragon employing or commanding the Black Scales. - Elementarium person in Seaward: the party planned to speak with him about elementals and the barrier. @@ -92,5 +92,5 @@ The party sent a message to Basalisk, who came to them. He knew little about the - There may be eight major imprisoned entities, but the diagrams list more possible quasi-elemental categories: ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt. - The massive salt dragon has been sweating salt into the earth for twenty years, and the reason the copper pylons were removed remains important. - The cult is looking for a laboratory twenty miles earthwise along the barrier. -- Basalisk could not open the observatory chest or enter the golem underground room. +- The Basilisk could not open the observatory chest or enter the golem underground room. - The location and identity of the ooze prison, ice prison, and Garadwal's prison remain uncertain. diff --git a/data/4-days-cleaned/day-17.md b/data/4-days-cleaned/day-17.md index cc08388..2970244 100644 --- a/data/4-days-cleaned/day-17.md +++ b/data/4-days-cleaned/day-17.md @@ -16,7 +16,7 @@ Day 17 began on Thursday, 1st Tan, with seventeen days until Tri-moon. A goblin Scum had instructions or a message telling the Clementarium to meet the party with the Ruby Eye skull one mile outside Seaward. The party sent a message by crow to the Grand Towers saying they were going to Everchard, intending to put pursuers off the scent. The notes listed dragons seen or known: Blue, Pythas; Black, Infestus; Silver, Thurtall; White, the ancient [Anaraleth]; and Red, [soob?]. A crossed-out "Veridian" was also recorded. -At 13:00 the party messaged the Basilisk and arrived at the possible meeting point. They waited nearly three hours. A cart came off the road with an unfamiliar human aboard. The party found it suspicious. One box contained Grand Towers pennies. The council had asked the driver to transport [tubes] to Fairshaws. The cart was associated with Garick Black and appeared to have been sent by the gnome. +At 13:00 the party messaged The Basilisk and arrived at the possible meeting point. They waited nearly three hours. A cart came off the road with an unfamiliar human aboard. The party found it suspicious. One box contained Grand Towers pennies. The council had asked the driver to transport [tubes] to Fairshaws. The cart was associated with Garick Black and appeared to have been sent by the gnome. The manifest listed one currency shipment of Towers pennies; one provisions shipment of ash jerky [uncertain]; two armaments shipments, including spearheads from Alvoo and trident heads tipped in copper; one waterproof paperings shipment, reams of enchanted waterproof paper for salt water only; one keg; one tools shipment of heavy-duty tools, possibly for shipbuilding; and one miscellaneous goods shipment. The shipment should have gone out in two days. @@ -26,7 +26,7 @@ The jerky bag contained a hemp bag with a pungent, sickly sweet smell. It remind To stop the Tri-moon shard, the party would need to create a device to repel it, but the barrier would have to go down to do so. They discussed the relationship with the merfolk, who were different people from the fish men invited into the barrier and who were great helpers in setting up barriers. They suspected Browning had something to do with the Goliath settlement disappearing from history, though there must be traces. The green dragon seemed to be residing in that area. The white dragon helped build the dome. The reds were [descendants, murdered], and there were no blues. Elementals had liked to attack, which was why the barrier was put up. The Tower was the perfect place but needed more. A backup plan for the void elemental might be stashed in his safe; if it was not there, the party needed to find another. -A giant gargoyle approached, rolled out a carpet with a teleport rune on it, and told the party to get on the rune. Someone shouted, "Thurtall!!" The party appeared in a lush castle room. Thurtall sat at the head of the table and seemed to be Lady Thurtall. She loudly approached the party. Standing beside her was a [shunter/shutter] lady, who was about one foot tall when the barrier went up. Four chairs stood by the rug. Basilisk appeared in the sky-trip or teleport event with Lady Catherine Cole, Earl of Stronghedge, for whom Basilisk was bodyguard. A portly tiefling male appeared in a purple flush and took another seat; he was called The Guilt. A Valkyrie woman, Earl of Ironcroft firewise, walked in flanked by two dwarves. +A giant gargoyle approached, rolled out a carpet with a teleport rune on it, and told the party to get on the rune. Someone shouted, "Thurtall!!" The party appeared in a lush castle room. Thurtall sat at the head of the table and seemed to be Lady Thurtall. She loudly approached the party. Standing beside her was a [shunter/shutter] lady, who was about one foot tall when the barrier went up. Four chairs stood by the rug. The Basilisk appeared in the sky-trip or teleport event with Lady Catherine Cole, Earl of Stronghedge, for whom The Basilisk was bodyguard. A portly tiefling male appeared in a purple flush and took another seat; he was called The Guilt. A Valkyrie woman, Earl of Ironcroft firewise, walked in flanked by two dwarves. Lady Catherine Cole vouched for the note-writer, and the Valkyrie vouched for Invar. Thurtall spoke to Ruby Eye. He had been a friend of her mother's, and she had not aged much in about a thousand years. A Tabaxi male, looking a little older, strode in with a hookah pipe floating beside him. He sprawled on the ground and was identified as the Earl of Salvation. The gathering described itself as a small group of like-minded people trying to protect the barrier and maintain its stability. News had reached them about the fragment. @@ -34,7 +34,7 @@ The council had concerns about whether the party's friend had awakened the ancie The council suggested three possible priorities: head to the merfolk, get the crystal from the water, or speak to the ancient one. The party passed off the twin mum. They also discussed elven creation theology or history. Elves were first on the earth. Everywhere there was light, and with light there was dark. From this came life, and a couple sprang forth; one created a mate, and so did he, and they then became the gods. Light and dark fought, and because of this the physical world was made. There was much fighting, then a truce in which each side agreed not to enter the other's territory and created the twelve gods. They decided to meet on the combination plane, but it was difficult, so they created six Excellences. The Excellences fought, the gods needed armies, and fighting continued, but those armies gained free will and thrived in certain places. The multiple-armed beings are the Excellences. Five is a holy number because it is seen as removing the darkness. -The major crisis list remained: leaking elemental prisons, Garadwal, the void on the loose, and the shield crystal in the sea. Basilisk was arranging for someone to meet the party in Fairshaws or Freeport; that contact would carry a Winter Rose. The party gave Basilisk the coin press and told him the coins in the cart were a crate of them. +The major crisis list remained: leaking elemental prisons, Garadwal, the void on the loose, and the shield crystal in the sea. The Basilisk was arranging for someone to meet the party in Fairshaws or Freeport; that contact would carry a Winter Rose. The party gave The Basilisk the coin press and told him the coins in the cart were a crate of them. At 17:30 the party returned to their cart and headed down the main road toward Fairshaws. By 22:00 they began hearing birds and animals again and found a place to camp for the night. Around 02:00 or 03:00, a dog going around with the twins approached the camp. Five attackers attacked and died. The notes also show 11:00, likely pointing into the following day. @@ -54,7 +54,7 @@ At 17:30 the party returned to their cart and headed down the main road toward F - Invar: knocked out the driver and was vouched for by the Valkyrie. - Lady Thurtall: hosted the security council; very old, barely aged in a thousand years. - [shunter/shutter] lady: stood beside Lady Thurtall; about one foot tall when the barrier went up [uncertain]. -- Basilisk: bodyguard to Lady Catherine Cole, arranged future contact in Fairshaws or Freeport, received the coin press. +- The Basilisk: bodyguard to Lady Catherine Cole, arranged future contact in Fairshaws or Freeport, received the coin press. - Lady Catherine Cole: Earl of Stronghedge; vouched for the note-writer. - The Guilt: portly tiefling male who appeared in a purple flush. - Valkyrie woman: Earl of Ironcroft firewise; vouched for Invar and was flanked by two dwarves. @@ -66,7 +66,7 @@ At 17:30 the party returned to their cart and headed down the main road toward F - Merfolk: helped set up barriers and are different from the fish men invited into the barrier. - Goliaths: their settlement may have been erased from history. - Fairshaws: destination for the suspicious shipment and the party's travel. -- Freeport: possible meeting place for a Basilisk-arranged contact carrying Winter Rose. +- Freeport: possible meeting place for a contact arranged by The Basilisk carrying Winter Rose. - Seaward: meeting area one mile outside town. - Everchard: false destination sent to the Grand Towers. - Stronghedge, Ironcroft, Salvation: represented by council members. @@ -84,7 +84,7 @@ At 17:30 the party returned to their cart and headed down the main road toward F - Barrier failsafe button: said to be in the Grand Towers. - Backup plan for void elemental: may be in Ruby Eye's safe; otherwise another solution is needed. - Teleport carpet: rolled out by a giant gargoyle, with a teleport rune. -- Coin press: given to Basilisk; party told him the cart coins were a crate of them. +- Coin press: given to The Basilisk; party told him the cart coins were a crate of them. - Winter Rose: identifying token for a future contact in Fairshaws or Freeport. # Clues, Mysteries, and Open Threads diff --git a/data/4-days-cleaned/day-20.md b/data/4-days-cleaned/day-20.md index dd6ddad..6f8d73f 100644 --- a/data/4-days-cleaned/day-20.md +++ b/data/4-days-cleaned/day-20.md @@ -17,7 +17,7 @@ Day 20 was Sunday, 4th Tan, with 14 days until the Tri-moon. The party planned t The Pact leader in Turtle Point was Shandra. She explained that the Pact ensures the Pact's rules are followed and protects people who need it in exchange for protecting the Barrier. The party told her what had happened. The 10-foot, six-armed creature was identified as "An Excellence." The fish people were Sahuagin, written in the notes as "Saguine." Shandra's information came from Kiendra, leader of Dunhold Cache, who had been killed, or was believed killed. A Pact Scepter was discussed: one had been given to each of the wizards, and Shandra asked the party to keep it because it signified their side of the Pact. -Shandra recommended speaking to the merfolk of Lake Azure for Dirk's city. For the shipment, she advised getting a smell unit. The Sahuagin had one of the scepter conches, of which only eight exist; this one was Kiendra's. The party asked Basilisk whether he could get help to Shandra. One of the merfolk would come with the party. The Pact leader in Freeport was named Tiana. +Shandra recommended speaking to the merfolk of Lake Azure for Dirk's city. For the shipment, she advised getting a smell unit. The Sahuagin had one of the scepter conches, of which only eight exist; this one was Kiendra's. The party asked The Basilisk whether he could get help to Shandra. One of the merfolk would come with the party. The Pact leader in Freeport was named Tiana. The party stayed in the barracks overnight. Dirk had a strange dream. In it, a goliath sat on a granite throne looking concerned while two females tended Rubyeye. The dream included the phrase "fought well," then changed to a tavern scene with dancing around a fire and a granite city in the distance. There was a face in the fire, then possibly "Then? Dog?" before it disappeared. @@ -47,7 +47,7 @@ The party returned to Pirates Pearls Plundered. Guardfree said he would get his # People, Factions, and Places Mentioned -Freeport, Baytrail Accord, Seaward, Turtle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snow Sorrow or Snow-sorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. +Freeport, Baytrail Accord, Seaward, Turtle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snow Sorrow or Snow-sorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, The Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-23.md b/data/4-days-cleaned/day-23.md index 8b7a1f5..3b822a6 100644 --- a/data/4-days-cleaned/day-23.md +++ b/data/4-days-cleaned/day-23.md @@ -28,7 +28,7 @@ Another cage contained a snail with a gleam of metal: a jeweller's chain attachi The merfolk described an empire of their people outside the barrier. They had been captured while on a diplomatic mission to the city of Onyx, which they did not trust, and there was war between them and the Salt elementals. Princess Aquunea was named. The city of the Black Scales was said to have a "door" into [unclear], with payment for access being a Grand Towers penny. -The party checked the barrels and other goods. They found a sickly sweet medicinal potion of magical energy that restores one spell slot, silk and parchment interleaved with runes, two portions of white Rose powder for which Taina gave the party 1000 gp, and a metallic censer, possibly silver, religious, and connected to a water god. This Censer of Noxia had the ability to enrage and control water elementals and was active. A message was sent to Basilisk. +The party checked the barrels and other goods. They found a sickly sweet medicinal potion of magical energy that restores one spell slot, silk and parchment interleaved with runes, two portions of white Rose powder for which Taina gave the party 1000 gp, and a metallic censer, possibly silver, religious, and connected to a water god. This Censer of Noxia had the ability to enrage and control water elementals and was active. A message was sent to The Basilisk. The party returned to Freeport, which seemed much colder than before. It was snowing over the sea, and everything was dark and snowy. A man shouted that the end was nigh and that the Moon was crashing down into the city. When asked which city, he no longer seemed bothered and said he had dreamed it. This was around 22:00. Many people were having dreams. One dream involved gnolls attacking a village and requesting backup from Everchard and Fairshaws. Another was underwater with mermaids and a big cat with metal wings attacking it. These dreams had happened a few nights earlier, at the same time as the party's dreams. @@ -82,7 +82,7 @@ Iceland needed the party's help with the prisons. The shimmery one required taki Freeport, the Castle, the Drunken Duck, the Jewelry District, Baytail Accord, Grand Towers, the Underbelly, the Brass City, the desert laboratory, Aquaria, the Great Tower, the factory, the music room, the laboratory, the portal room, the barrier, Coalment Falls, Arthur, Goldenswell, Riversmeet, the Goliath city, Dunengend, Provista Town Hall, and Iceland were all mentioned. -Alana, the merfolk, Guardseen, the Huntmaster, Princess Aquunea, Salt elementals, Basilisk, the Baroness, the sergeant with the necklace, Valenth Caerdunel, Arxion, the Little Finger, tabaxi, automations, Silver, the mistress, Rubyeye, Cardonal, Browning, Enwi, Joy, Heurhall, Garadwal/Gardwal/Gardolwal/Gardwel, Muttowh, Hephaestos, Rubodueul, the Duncan people, Aranthium, Elementarium, Excellence, Dirk, Eliana, Geldrin, Noxus, the Ancient One, Enwi's apprentice, the gods, Salinas, Limus Vita, Iceblus, Arasarath, Merocole, Papa I Meurina, Valententhidle, Galetea, Inqueshwash, veridican dragonborn, the Perodot princess, magisters, Justiciars, Explorer, and Iceland were all mentioned. +Alana, the merfolk, Guardseen, the Huntmaster, Princess Aquunea, Salt elementals, The Basilisk, the Baroness, the sergeant with the necklace, Valenth Caerdunel, Arxion, the Little Finger, tabaxi, automations, Silver, the mistress, Rubyeye, Cardonal, Browning, Enwi, Joy, Heurhall, Garadwal/Gardwal/Gardolwal/Gardwel, Muttowh, Hephaestos, Rubodueul, the Duncan people, Aranthium, Elementarium, Excellence, Dirk, Eliana, Geldrin, Noxus, the Ancient One, Enwi's apprentice, the gods, Salinas, Limus Vita, Iceblus, Arasarath, Merocole, Papa I Meurina, Valententhidle, Galetea, Inqueshwash, veridican dragonborn, the Perodot princess, magisters, Justiciars, Explorer, and Iceland were all mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md index fe4fac2..8e1e361 100644 --- a/data/4-days-cleaned/day-26.md +++ b/data/4-days-cleaned/day-26.md @@ -48,9 +48,9 @@ The party teleported to Baytail Accord, leaving Cardenald behind at the life pri The party contacted the void elemental, who was on his way. Garadwal tried to find something. A 15-foot square in front of Garadwal was unnaturally empty of debris. A monstrosity was attacking the hatchery. The void elemental appeared and was trapped by a dome. Geldrin tried to dispel magic; it seemed to do something, but the dome remained. The party managed to kick the runes away and let the void elemental out. -A horrible boob-covered form appeared, apparently The Mother. The party sent a message for help to Basaluk. He appeared with a tabaxi and his boss. Garadwal teleported out, and the void elemental also disappeared. The Mother died. +A horrible boob-covered form appeared, apparently The Mother. The party sent a message for help to The Basilisk. He appeared with a tabaxi and his boss. Garadwal teleported out, and the void elemental also disappeared. The Mother died. -The party needed to check on the Hatchery. Basalisk returned to other important things. Everyone was thanking the merfolk for saving them, and the rest of the town seemed all right. The party checked Mother's corpse, which had fallen apart. Geldrin found a spellbook on her with the same cipher as Envi's and the same spells as Envi's. +The party needed to check on the Hatchery. The Basilisk returned to other important things. Everyone was thanking the merfolk for saving them, and the rest of the town seemed all right. The party checked Mother's corpse, which had fallen apart. Geldrin found a spellbook on her with the same cipher as Envi's and the same spells as Envi's. The party collected visitor shells and headed to the Hatchery, where dead gilled ghouls lay under the water. Pact keeper Inara and seven other Pact leaders sat around the table. Four had been met before, and three others were present. Guardfree brought out chairs so the party could sit and join them. The leaders named included Visca of Fairshore, Hanna of Fishbait's Edge, Lana or Alana of Azureside, and Aquena outside the barrier, a princess. @@ -76,7 +76,7 @@ Dreams were discussed: over many years they could be saved, and many recent drea # People, Factions, and Places Mentioned -Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, Basaluk/Basalisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hearthwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunesend State, Hearthwall State, Goldenswell State, and Snowsorrow State were all mentioned. +Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, The Basilisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hearthwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunesend State, Hearthwall State, Goldenswell State, and Snowsorrow State were all mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-27.md b/data/4-days-cleaned/day-27.md index bea816c..6154139 100644 --- a/data/4-days-cleaned/day-27.md +++ b/data/4-days-cleaned/day-27.md @@ -57,29 +57,29 @@ The party visited the Sister obligators. One attacked shop was for lovely modifi Other break-ins seemed as though the culprits were searching for something. They happened every other night, so one might occur that night. Geldrin planned to ward the shop when it closed in 2 1/2 hours. The party thought they should start at Sister Proulsothight [uncertain], who had always been on the edge of what they should do. -At Sister Proulsothight's shop there were no protesters or guards. She asked if the party wanted refreshments and took them into a back room with mini bunks and many different drinks. She asked whether they were there for the box. When they said yes, she gave them a box like the one from Gelissa, but not the same. This was what the break-ins had been about. She did not believe them and told them to leave. The party messaged the Basilisk to ask whether she should have it or whether they should retrieve it. +At Sister Proulsothight's shop there were no protesters or guards. She asked if the party wanted refreshments and took them into a back room with mini bunks and many different drinks. She asked whether they were there for the box. When they said yes, she gave them a box like the one from Gelissa, but not the same. This was what the break-ins had been about. She did not believe them and told them to leave. The party messaged The Basilisk to ask whether she should have it or whether they should retrieve it. -Eroll returned with a message from Dirk's sister: Dad was not available, and they should come to Salvation because help was needed. Basilisk returned a message asking how they found these things and telling them to leave it alone because they were in over their heads. +Eroll returned with a message from Dirk's sister: Dad was not available, and they should come to Salvation because help was needed. The Basilisk returned a message asking how they found these things and telling them to leave it alone because they were in over their heads. -A massive verdian or veridian Dragonborn approached the shop with two sickly Goliaths, entered, and banged on something. The party told Basilisk this was when they could reset the stone. A figure stood on one of the dome roofs. The party tried to stealth. It waited until the streets were clear and approached into the shop. The party heard words from inside the building. Invar channelled and walked toward the shop. A side note says wizards were on the payroll. +A massive verdian or veridian Dragonborn approached the shop with two sickly Goliaths, entered, and banged on something. The party told The Basilisk this was when they could reset the stone. A figure stood on one of the dome roofs. The party tried to stealth. It waited until the streets were clear and approached into the shop. The party heard words from inside the building. Invar channelled and walked toward the shop. A side note says wizards were on the payroll. -Invar resisted, and the voice invited the party in. Uncle Hortekh told his wife the party was intervening. He threatened Dirk and the Goliaths, saying he would get him one day. The party returned to the Sisters. The heat box had been intercepted, which was the party's doing. Basilisk had been looking for the box. +Invar resisted, and the voice invited the party in. Uncle Hortekh told his wife the party was intervening. He threatened Dirk and the Goliaths, saying he would get him one day. The party returned to the Sisters. The heat box had been intercepted, which was the party's doing. The Basilisk had been looking for the box. At 22:00, the party met a human named Morgana with two birds. She had been sent by The Chorus and had the pigeon who helped the party in Everchard. Her home forest, Everchard, had strange things happening in the forest, including large animals. The Chorus had sent her so there would be five of the party. Morgana had seen a bright green Dragonborn with sickly Goliaths near a poisoned part of the forest and had healed it. The party went to Stricker's camp. Stricker was helping out now. Morgana gave goodberries to heal some of the refugees. Stricker Senior had gone to Salvation to work out plans to get back the people who attacked them. Stricker did not know of a city for Goliaths but had seen some Green Dragons. Stricker would stay to look after the refugees but wanted to join if the party went to war. The party headed to an inn. -The Hard Cheese was a cafe down the road for people out of towers and sold booze. One of the locals was marked by Geldrin's shield crystal and seemed to drink. The Chorus had been hearing visions from the ancient where things went bad and there was not a lot of water, waterwise. The visions went better when Morgana was there, as there should be five of them. The party sent a message to Basilisk about the Sister's shop. +The Hard Cheese was a cafe down the road for people out of towers and sold booze. One of the locals was marked by Geldrin's shield crystal and seemed to drink. The Chorus had been hearing visions from the ancient where things went bad and there was not a lot of water, waterwise. The visions went better when Morgana was there, as there should be five of them. The party sent a message to The Basilisk about the Sister's shop. # People, Factions, and Places Mentioned -Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunesend, Serra, Dunesmead, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Altarrb, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, Basilisk, Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. +Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunesend, Serra, Dunesmead, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Altarrb, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, The Basilisk, Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. # Items, Rewards, and Resources The shard trajectory calculations required 4-5 hours and indicated Grand Towers remained threatened. The Salinas statue near Dunesend was targeted for destruction by Cardenald and the merfolk. Dunesmead's rules prohibited alcohol, spell writing, and worship of liar or darkness. The Hearth Master produced trade logs confirming the party's map. The party received feathers similar to arakobra feathers, a blowgun, fragments of a core cage from Agugu, and a small mechanical spider automaton from a pot. -The guilt placed a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It claimed it could reset the control room and would fix one prison to prove its help. The party chose Valenthide first. Geldrin's compass could detect automatons. A broken bowstring was found in Indanyu's room. The party learned of a box like the one from Gelissa, but not the same, held by Sister Proulsothight [uncertain]. The heat box was intercepted by the party, and Basilisk had been looking for the box. Morgana carried two birds and had the pigeon that helped in Everchard. Morgana gave goodberries to heal refugees. The Hard Cheese sold booze. +The guilt placed a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It claimed it could reset the control room and would fix one prison to prove its help. The party chose Valenthide first. Geldrin's compass could detect automatons. A broken bowstring was found in Indanyu's room. The party learned of a box like the one from Gelissa, but not the same, held by Sister Proulsothight [uncertain]. The heat box was intercepted by the party, and The Basilisk had been looking for the box. Morgana carried two birds and had the pigeon that helped in Everchard. Morgana gave goodberries to heal refugees. The Hard Cheese sold booze. # Clues, Mysteries, and Open Threads @@ -93,7 +93,7 @@ The guilt's offer remains unresolved. It can allegedly reset the control room an Someone in the court had been asking about the ancestral grounds of the Goliaths, and many people had asked in the last day. Fire creatures or Salamander-type men had encamped near the barrier around where Geldrin's calculations pointed. The bird-man's master was said to be a six-legged cat-man in the Elven Ruins, perhaps Grand Towers or Valenth's lab, and Lamasu were noted as sixteen-legged cat beasts allegedly of good. -The shop break-ins seemed to target a box like Gelissa's, held by Sister Proulsothight [uncertain]. Basilisk warned the party they were in over their heads and told them to leave it alone, yet Basilisk had been looking for the box. Wizards were noted as being on the payroll. Uncle Hortekh and the massive verdian/veridian Dragonborn with two sickly Goliaths remain active threats. +The shop break-ins seemed to target a box like Gelissa's, held by Sister Proulsothight [uncertain]. The Basilisk warned the party they were in over their heads and told them to leave it alone, yet The Basilisk had been looking for the box. Wizards were noted as being on the payroll. Uncle Hortekh and the massive verdian/veridian Dragonborn with two sickly Goliaths remain active threats. Dirk's family situation escalated when his sister reported that Dad was not available and asked the party to come to Salvation because help was needed. Stricker Senior had also gone to Salvation to plan how to recover people who attacked them. diff --git a/data/4-days-cleaned/day-29.md b/data/4-days-cleaned/day-29.md index 1117857..f41d228 100644 --- a/data/4-days-cleaned/day-29.md +++ b/data/4-days-cleaned/day-29.md @@ -26,13 +26,13 @@ The party returned to Dunnersend. Guards banged spears against shields as the pa For the night, the bath house was outside Dunnen rules. The party tried to procure beer, went to the Hunt & Hearth by mistake, and received free rooms. They needed to go to the Hard Cheese. They walked into the back room, got drinks for Arvel, got cheese, and retrieved Errol. -News arrived that the Rhelmbreaker giant had been spotted at Highden travelling waterwise. The party went to the bath house and sent a message to Busalish saying they had killed Lortesh. +News arrived that the Rhelmbreaker giant had been spotted at Highden travelling waterwise. The party went to the bath house and sent a message to The Basilisk saying they had killed Lortesh. Errol hopped onto a message table. A message or voice said, "make your decision (Anite!)" and said it had made a mistake controlling the wizard and accidentally opened the prison. It was very happy the party had killed the dragon, and happy when people were proud of themselves. The party then headed to the inn and slept. # People, Factions, and Places Mentioned -Dunnersend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, Busalish, Anite!, the Dunners, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. +Dunnersend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, The Basilisk, Anite!, the Dunners, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. # Items, Rewards, and Resources diff --git a/data/4-days-cleaned/day-30.md b/data/4-days-cleaned/day-30.md index d720fc5..d0c588f 100644 --- a/data/4-days-cleaned/day-30.md +++ b/data/4-days-cleaned/day-30.md @@ -13,7 +13,7 @@ complete: true Day 30 was Wednesday, 2nd Tan 107 AT, with 4 days to Timnor and 5 days to the auction. A margin note also recorded "+2 days 4pm" and [uncertain: Lathlie]. -The party received Town Crier information on the laptop. Busalish had sent a message saying he wanted to meet them and was coming in. News also said Lady Hearthwill had been injured after deciding to take the fight against the giants into her own hands, though she was recuperating normally. Soldiers from Goldenswell had retreated. +The party received Town Crier information on the laptop. The Basilisk had sent a message saying he wanted to meet them and was coming in. News also said Lady Hearthwill had been injured after deciding to take the fight against the giants into her own hands, though she was recuperating normally. Soldiers from Goldenswell had retreated. Hucan's ship had been attacked and rummaged in the night, and the party's cart had also been rummaged through. Messages were being intercepted. The notes connect this to a blue dragon, leaked battle plans, and a magical attack at Craters Edge. The cart guards had been found in a mess, pointing toward a betrayer. @@ -29,7 +29,7 @@ The party asked Cardenald about resurrecting Rubyeye. She said yes, and the part Browning had made a bargain to rid fishes from the barrier in return for a peace treaty. Enwi had also made some sort of pact involving rings. The phrase "The Guilt is an excellence!!" was recorded. Browning's lab was near Craters Edge. The party discussed magical defenses against Valententhide, especially Counterspell. -A message was sent to Busalish saying that the Guilt was Excellence and asking for mage help with Wrath. Benu could create a hero's feast. The party went to the Cheese shop looking for mages or scrolls. There were no mages or scrolls there, but someone could speak to [uncertain: Proloknight] for them about Counterspell and Polymorph. Counterspell cost 500g, with an additional 10g [unclear]. A finder's fee was noted only for two scrolls, though the party wanted three. Polymorph was estimated at 3-4kg, and Morgana could do it. +A message was sent to The Basilisk saying that the Guilt was Excellence and asking for mage help with Wrath. Benu could create a hero's feast. The party went to the Cheese shop looking for mages or scrolls. There were no mages or scrolls there, but someone could speak to [uncertain: Proloknight] for them about Counterspell and Polymorph. Counterspell cost 500g, with an additional 10g [unclear]. A finder's fee was noted only for two scrolls, though the party wanted three. Polymorph was estimated at 3-4kg, and Morgana could do it. The party tried to see what the automaton, Galatrayer, was doing. Cardenald tapped into the one guarding Valententhide's prison and saw a stone room, with somebody there and out of focus. Valententhide might still be imprisoned, but Geldrin was not convinced. Groll wondered whether somebody was in Galatrayer's head: the overseer or the explorer. @@ -41,7 +41,7 @@ Cardenald and Rubyeye returned with 2 orbs and 2 scrolls of Counterspell. Errol # People, Factions, and Places Mentioned -Busalish, Lady Hearthwill, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunnersend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. +The Basilisk, Lady Hearthwill, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunnersend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. Places mentioned include Dunnersend, the shrine, the barrier, the sea, the ground towers, the shield crystal, Highden, Craters Edge / Crater's Edge, Browning's lab, the Cheese shop, the palace, Cardenald's lab, the library, the Goliath Tower in the Oasis, the Goliath capital Ashktioth, and Tradesmall. diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md index 3030f21..6056b48 100644 --- a/data/4-days-cleaned/day-32.md +++ b/data/4-days-cleaned/day-32.md @@ -58,11 +58,11 @@ Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, lik Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. The narrator and Dith searched the cells, but Lady Thorpe was not there. Barrett returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. -Claymeadow and Lady Neegate were noted; she had been quiet lately due to a loss in the family. The party decided to make a plan before speaking to the wizard and went to the Irate Unicorn, where there was a shrine to Law. They asked Busalish for help from the guild to check the prisons. They then went to see a tortle wizard who could teleport them somewhere and would come back tomorrow. +Claymeadow and Lady Neegate were noted; she had been quiet lately due to a loss in the family. The party decided to make a plan before speaking to the wizard and went to the Irate Unicorn, where there was a shrine to Law. They asked The Basilisk for help from the guild to check the prisons. They then went to see a tortle wizard who could teleport them somewhere and would come back tomorrow. -The internal note marked "Day 27" was recorded here but was not treated as a day boundary. The bag began humming and glowing, and there was a note from Busalish. Redford and Everchard had no Lady Thorpe. Goldenswell refused and prevented access; Busalish met a few things, reporters, and so on. Little Bugy was noted as someone tried to assassinate Sefris on the ground, connected to the Cult of Salvation, last night. The skull was glowing, humming, and vibrating, and it was given to Geldrin. +The internal note marked "Day 27" was recorded here but was not treated as a day boundary. The bag began humming and glowing, and there was a note from The Basilisk. Redford and Everchard had no Lady Thorpe. Goldenswell refused and prevented access; The Basilisk met a few things, reporters, and so on. Little Bugy was noted as someone tried to assassinate Sefris on the ground, connected to the Cult of Salvation, last night. The skull was glowing, humming, and vibrating, and it was given to Geldrin. -The connection destabilised all charms out of the windows. The Tri-moon was visible in the day, which does not usually happen. It seemed to hang ominously. Usually it is seen in the dark; seeing it in daylight showed it as a crystal. The Barrier looked normal, and the moon did not look different in size; the small chunk was visible. At 09:30, Geldrin estimated it should have been there around 2am, so it was 16 hours ahead of schedule. The party told everyone about Busalish's note and the three prisons. +The connection destabilised all charms out of the windows. The Tri-moon was visible in the day, which does not usually happen. It seemed to hang ominously. Usually it is seen in the dark; seeing it in daylight showed it as a crystal. The Barrier looked normal, and the moon did not look different in size; the small chunk was visible. At 09:30, Geldrin estimated it should have been there around 2am, so it was 16 hours ahead of schedule. The party told everyone about The Basilisk's note and the three prisons. The party returned to the tortle mage, Jin-Loo, and told him about the Tri-moon. He found it had happened three times in the last 1,000 years, when records began, though four dates were listed: 104 AD, 339 AD, 629 AD, and 1012 AD. The party asked him to find out whether anything significant happened on those dates; nothing was found. @@ -70,11 +70,11 @@ Jin-Loo teleported the party to the Museum Gardens in Goldenswell. Bleakstorm wa The party tried to arrest them. Morgana and the narrator went through the other door. They found Lady Thorpe after a set of traps went off and carried her out. Meanwhile Geldrin was mauled and tried to get thieves' tools out to open something. Dith got keys and unlocked them. The captain tried to send a message saying they had been discovered and to send help. The party took the captain, Lady Thorpe, and a cart, left the city, managed to get out, came off the road, and found somewhere to hide. -They messaged Busalish to say they had Lady Thorpe and revived her. Lady Thorpe reported a man with the lower half of a snake's body travelling back with the Goldenswell army when they decided to leave. Bug Geldrin stole from the captain's office: 50 platinum pieces in Frawshers currency and a Grand Towers penny. The party needed to question the captain. +They messaged The Basilisk to say they had Lady Thorpe and revived her. Lady Thorpe reported a man with the lower half of a snake's body travelling back with the Goldenswell army when they decided to leave. Bug Geldrin stole from the captain's office: 50 platinum pieces in Frawshers currency and a Grand Towers penny. The party needed to question the captain. When the captain was awakened, he said he got in trouble with the Duke for attracting the militia. He was told it was a sensitive situation and not to let anybody in. The Duke sent one of his emissaries to feed Lady Thorpe. The captain knew the Duke was doing something dodgy but did not know the full truth. Some woman with a bag on her head was involved. Orders came from the Duke's office, and a few other guards knew about it. Off-the-books prisoners had been held a few times; the last one was about a week ago and was still down there. -The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A Busalish message warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Harthwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. +The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A message from The Basilisk warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Harthwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. The skull's connection to ascension to godhood was discussed, and it was linked to when the moon did this, like the Tri-moon / Treamen. Geldrin tried to attune to the skull. An obsidian raven circled overhead as if looking for something and then flew off toward Grand Towers. @@ -92,7 +92,7 @@ The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Re # People, Factions, and Places Mentioned -People and name-like figures mentioned include Lan, Serva, Lady Hearthwall / Lady Harthwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Harthwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, Busalish, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. +People and name-like figures mentioned include Lan, Serva, Lady Hearthwall / Lady Harthwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Harthwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, The Basilisk, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Furres, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. @@ -100,7 +100,7 @@ Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Ram # Items, Rewards, and Resources -Resources and possessions mentioned include 870kg at the auction, "1600" recorded near Xinqus's cart, a shield crystal, one of the Brass City platinum pieces added to the auction, the party's auction number from Mirth, the chariot and everything taken to the Palace, the hidden trapdoor at the auction house, Wroth's help hiding the shield crystal, a prisoner roster, Busalish's note, Busalish's guild help, Eroll, Jin-Loo's ring that let him find the party again, winter clothes used as disguises, 50 platinum pieces in Frawshers currency stolen from the captain's office, a Grand Towers penny stolen from the captain's office, 50 platinum pieces offered as a bribe, and 1 platinum paid as a down payment. +Resources and possessions mentioned include 870kg at the auction, "1600" recorded near Xinqus's cart, a shield crystal, one of the Brass City platinum pieces added to the auction, the party's auction number from Mirth, the chariot and everything taken to the Palace, the hidden trapdoor at the auction house, Wroth's help hiding the shield crystal, a prisoner roster, The Basilisk's note, The Basilisk's guild help, Eroll, Jin-Loo's ring that let him find the party again, winter clothes used as disguises, 50 platinum pieces in Frawshers currency stolen from the captain's office, a Grand Towers penny stolen from the captain's office, 50 platinum pieces offered as a bribe, and 1 platinum paid as a down payment. Auction lots and sale details mentioned include grand towers penne / Goliath coins x2; sosen mistle eel wine; a functioning moon-cycle pocket watch; elven green-rimmed glasses; a mahogany box / Smulty box with a red velvet curtain that formed illusionary scenes; a loved patched leather backpack / bag of sorting worth around 3-500g and able to hold 500lb or 64 gems while weighing 15lb; a silver scorpion on a chain / holy symbol of Noxia; Firefang, an 8/400-year-old longsword in Invar's style with +1D6, 5 spell charges, and Burning Hands, initially priced at 4500g and sold for 2050g; an Amle for adult?; a ring of protection; the chariot associated with the Guilt and an excellence defeated in the "battle of the unending seas," bid up to 11,900g and [uncertain: we got] 14,000g; Browning's scroll, which generates a new random spell every morning at 2:37, was disrupted by Geldrin's Dispel Magic, valued at 600g, and sold for 6,200g; a bracelet of locating won by Laura for 101g; art cork; rare poetry books; and a talon of soot sold remotely for 50g. @@ -122,7 +122,7 @@ The party's arrest warrant had been quashed by somebody up high, but the respons Geldrin's Scrying showed Lady Thorpe in a grey mountain-stone dungeon like Harthwall Castle, Ca, or the militia house, but she was ultimately in Goldenswell. The similarities between militia houses, including the Everchard-like militia building, may be relevant. The prison on the road to Stonehedge, Clay Meadow / Everchard / Redford Point / Stonehedge / Goldenswell rosters, and the note that Goldenswell refused access remain part of the prison network mystery. -Busalish's note said Redford and Everchard had no Lady Thorpe, while Goldenswell refused and prevented access. Busalish also warned, "Don't come to Strong hedge Compromised." The attempted assassination of Sefris on the ground by someone named little Bugy, connected to the Cult of Salvation, remains unresolved. +The Basilisk's note said Redford and Everchard had no Lady Thorpe, while Goldenswell refused and prevented access. The Basilisk also warned, "Don't come to Strong hedge Compromised." The attempted assassination of Sefris on the ground by someone named little Bugy, connected to the Cult of Salvation, remains unresolved. The Tri-moon was visible during the day, which is unusual, and appeared 16 hours ahead of schedule. Seeing it in daylight showed it as a crystal. Jin-Loo found similar events in the records on 104 AD, 339 AD, 629 AD, and 1012 AD, though the notes say it happened three times in the last 1,000 years while listing four dates. No significant events were found for those dates. The Barrier looked normal despite the omen. diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md index c6ec583..0ae44ae 100644 --- a/data/4-days-cleaned/day-36.md +++ b/data/4-days-cleaned/day-36.md @@ -116,7 +116,7 @@ At the cathedral, priests walked around dealing with people. Two humans with bli The party went to see the Earl. In the park between the legs, plants were in bloom. Militia wore jagged rock keep tabards, and there was much activity. The party left a message with a lieutenant. A note says she did not have it because she was born in Highden and [unfinished]. A frog appeared to Laura and wanted the narrator's attention, motioning for them to follow. They did not follow, and Sevor-ice could not follow; possible bullying was noted. The party got another sending stone with a new number from someone in the Underbelly. A Highden lizardfolk was on the building, mumbled something as the party left, and the narrator shut up. The creature said hello and cast invisibility. Morgana cast thorn whip on it. It had been skulking because it was scared of the party and had been sent to deliver something by its boss. -The lizardfolk wanted to go somewhere private. The party met an old gnoll in a rocking chair under a blanket, "granny," an Underbelly liaison. The lizard was named Scurry. Granny knew what the party had done in town but did not know if Harthall was there yet. The Underbelly was getting back on track now that Lady Coke was back. Granny and Scurry were the only two to trust. Highden was a wreck, troops had taken over the inn, and the place "never sees the sun." The party sent Basilisk a note about current events and used a pulley lift system to go to the inn. +The lizardfolk wanted to go somewhere private. The party met an old gnoll in a rocking chair under a blanket, "granny," an Underbelly liaison. The lizard was named Scurry. Granny knew what the party had done in town but did not know if Harthall was there yet. The Underbelly was getting back on track now that Lady Coke was back. Granny and Scurry were the only two to trust. Highden was a wreck, troops had taken over the inn, and the place "never sees the sun." The party sent The Basilisk a note about current events and used a pulley lift system to go to the inn. A guard on the door was a sixty-foot giant, though not the size of the Tor statue. He led the party upstairs to the commander. The commander was an elf with a laurel of white roses around his head, a beard, and green peach fuzz unlike standard elves, described as a Moss couch elf. He was Captain Briarthorn, of an elf hundred. He hoped to use the natural terrain of the river as the battle point. Thousands of tribesfolk, perhaps goliaths, were involved. A blue dragon had been spotted with them but had not been seen for a while. He would mobilize the troops now that the Mother had been slain. @@ -166,7 +166,7 @@ The figure thought it was Ruby Eye. It could not open the barrier because that m # People, Factions, and Places Mentioned -People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Harthwall / Hearthall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Harthwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Harthall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. +People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Harthwall / Hearthall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Harthwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Harthall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, The Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. diff --git a/data/4-days-cleaned/day-41.md b/data/4-days-cleaned/day-41.md index 08b7f5a..c322d60 100644 --- a/data/4-days-cleaned/day-41.md +++ b/data/4-days-cleaned/day-41.md @@ -28,11 +28,11 @@ Geldrin and Dirk heard whispers in the smoke but could not make out any particul The name Perodika was noted. The smoke formed into a thirty-foot-tall dragon with beautiful green scales. It possessed people and spoke to Dirk. It declared that all of the Pacts were off and that it would kill everyone in every town. It said there was nowhere to run or hide, that it would devour the army first and then devour what she liked. It told Dirk, "I think you underestimate me," called itself "the choking death" and "the mother of many," and then choked some of the townsfolk. -The party sent a message to Basalisk. Errol sent messages to Cardonald and Rubyeye, who said they were coming to the party. The message seemed to nearly get through but could not because there was a blocker in the area. They would try to get to Threeleigh, or perhaps out of the area. The party headed toward Donly and told Errol to get Dirk's dad to direct himself toward Donly so they could meet up. +The party sent a message to The Basilisk. Errol sent messages to Cardonald and Rubyeye, who said they were coming to the party. The message seemed to nearly get through but could not because there was a blocker in the area. They would try to get to Threeleigh, or perhaps out of the area. The party headed toward Donly and told Errol to get Dirk's dad to direct himself toward Donly so they could meet up. On the horizon, the party saw a green shape with three or four figures flying around it. Light returned to normal, suggesting the green dragon's influence had about a ten-mile range. -Basalisk wanted to meet in Donly or Sunset Vista because the blocker prevented teleportation to the party. The party instead headed to a hunters' encampment in the Savannah after asking for landmarks. They reached a smallish settlement at about 17:00. A celebration seemed to be happening in town. The inhabitants were humanoids with dark skin and red tones, reminiscent of Dunnerai but with completely red eyes. They granted the party hospitality. Grinan spoke to the party first. +The Basilisk wanted to meet in Donly or Sunset Vista because the blocker prevented teleportation to the party. The party instead headed to a hunters' encampment in the Savannah after asking for landmarks. They reached a smallish settlement at about 17:00. A celebration seemed to be happening in town. The inhabitants were humanoids with dark skin and red tones, reminiscent of Dunnerai but with completely red eyes. They granted the party hospitality. Grinan spoke to the party first. Morgana spoke to a dog named Hayes. Hayes said they had gone hunting; Aurouze and his two companions had not come back, though the hunters they went with had returned. Grinan came back with a really old lady, apparently the settlement's leader. @@ -42,9 +42,9 @@ A tower appeared in the flames, with many green dragons flying and hundreds of G The old lady or leader had attacked the dragon once. She had respected the dragon and her churches. She transformed to Searu, and her staff changed into one of Searu's arrows. -Basalisk appeared and said the party was nothing but trouble. Emmeraine was under attack. The father at Dunnensend was mobilising an army, and Muthall was mobilising to Emmeraine. A Hearthsmoor fisherman had reported a beast plaguing the town, and about an hour earlier four towers had sprung out of the ground, making a new barrier around Grand Towers. +The Basilisk appeared and said the party was nothing but trouble. Emmeraine was under attack. The father at Dunnensend was mobilising an army, and Muthall was mobilising to Emmeraine. A Hearthsmoor fisherman had reported a beast plaguing the town, and about an hour earlier four towers had sprung out of the ground, making a new barrier around Grand Towers. -Galdenseell was still not providing aid. All contact had been lost with Snow Sorrow, and Perens were going missing. Basalisk had been contracted by an interested party who wished to lend her aid: the Peridot Queen. The Peridot Queen was out to get things for herself, so she would help only until something better came along. Agents in PineSprings had run into undead creatures. Godmount pills might help, though the note adds that "he's an idiot." The party did not think they should bring the barrier down. Basalisk and the others would coordinate the defense of the other towns. Basalisk would arrange to meet the Peridot Queen by Trade Smells and get Cardonald to come get the party and take them back to the army. +Galdenseell was still not providing aid. All contact had been lost with Snow Sorrow, and Perens were going missing. The Basilisk had been contracted by an interested party who wished to lend her aid: the Peridot Queen. The Peridot Queen was out to get things for herself, so she would help only until something better came along. Agents in PineSprings had run into undead creatures. Godmount pills might help, though the note adds that "he's an idiot." The party did not think they should bring the barrier down. The Basilisk and the others would coordinate the defense of the other towns. The Basilisk would arrange to meet the Peridot Queen by Trade Smells and get Cardonald to come get the party and take them back to the army. Morgana sent a pigeon to the crows. Searu's Arrow was identified or described as a +2 spear. Once per day, it could turn an attack roll into an automatic critical hit. If all three strikes hit a target in consecutive rounds, the target was slain. The arrows returned to the fire place. Hayes was told to look after the leader. @@ -52,9 +52,9 @@ Cardonald arrived, and the party teleported to the army. During sleep, the narra # People, Factions, and Places Mentioned -People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, Basalisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunnensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and the narrator who had the eggshell dragon dream. +People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, The Basilisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunnensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and the narrator who had the eggshell dragon dream. -Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snow Sorrow, Perens, Basalisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. +Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snow Sorrow, Perens, The Basilisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. Places mentioned include the town square, the tower, the cobbler's shop, Sunset Vista, Azureside, the Cheery & Cherry pub, the Pact Keeper's domain, the village being evacuated, Threeleigh, Donly, the horizon where the green shape appeared, the Aire, the Savannah, the hunters' encampment, the smallish settlement where a celebration was happening, the tower in the flames, the Goliath settlement below the tower, Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, Trade Smells, the army, a cave entrance in the dream, and the fire place associated with Searu's Arrow. @@ -66,7 +66,7 @@ Spells, magical effects, and combat effects mentioned include reincarnating Grey Searu's Arrow was described as a +2 spear. Once per day, it could turn an attack roll into an automatic critical hit. If all three strikes hit a target in consecutive rounds, the target was slain. The arrows returned to the fire place. The exact wording of "all 3" and whether this refers to arrows, strikes, or consecutive spear attacks is preserved as uncertain. -Strategic resources and communications mentioned include Errol's attempt to locate the bracelet halfway from Sunset Vista to Azureside, the council trying to convince the militia to suit up, the proposed mass town meeting, the half-day evacuation estimate, guidance of the village population toward Threeleigh, messages to Basalisk, Cardonald, and Rubyeye, Basalisk's preferred meeting points of Donly or Sunset Vista, the hunters' encampment landmarks, hospitality granted by the red-eyed settlement, advice that those wronged by the dragon could be allies, the opportunity to look around while the dragon was away from home, Basalisk and others coordinating defenses of other towns, Basalisk's planned meeting with the Peridot Queen by Trade Smells, and Cardonald taking the party back to the army. +Strategic resources and communications mentioned include Errol's attempt to locate the bracelet halfway from Sunset Vista to Azureside, the council trying to convince the militia to suit up, the proposed mass town meeting, the half-day evacuation estimate, guidance of the village population toward Threeleigh, messages to The Basilisk, Cardonald, and Rubyeye, The Basilisk's preferred meeting points of Donly or Sunset Vista, the hunters' encampment landmarks, hospitality granted by the red-eyed settlement, advice that those wronged by the dragon could be allies, the opportunity to look around while the dragon was away from home, The Basilisk and others coordinating defenses of other towns, The Basilisk's planned meeting with the Peridot Queen by Trade Smells, and Cardonald taking the party back to the army. # Clues, Mysteries, and Open Threads @@ -84,7 +84,7 @@ The Pact Keeper and the matriarch remain important. No one had ever seen the mat The smoke over the town caused whispers, panic, woodlice streaming from a person's mouth, people swatting invisible bugs, possession, and choking. The thirty-foot beautiful green-scaled dragon named or associated with Perodika called itself "the choking death" and "the mother of many," threatened every town, and intended to devour the army first. Its claims, range, and identity remain central open threads. -The blocker in the area interfered with messages and prevented teleportation to the party. Basalisk wanted to meet in Donly or Sunset Vista because of this. The source, range, and nature of the blocker are not identified. +The blocker in the area interfered with messages and prevented teleportation to the party. The Basilisk wanted to meet in Donly or Sunset Vista because of this. The source, range, and nature of the blocker are not identified. The green shape on the horizon had three or four figures flying around it. When light returned to normal, the party inferred that the dragon had about a ten-mile range. The identity of the flying figures and the exact effect ending with the light shift are not specified. @@ -96,11 +96,11 @@ The old lady / leader said a headlong attack was the wrong approach and that tho The leader had once attacked the dragon, had respected the dragon and her churches, and transformed to Searu. The link between Searu, the dragon's churches, Searu's Arrow, and the old lady's past attack remains unclear. -Basalisk reported multiple simultaneous crises: Emmeraine under attack, the father at Dunnensend mobilising an army, Muthall mobilising to Emmeraine, a Hearthsmoor fisherman reporting a beast plaguing the town, and four towers rising around Grand Towers to make a new barrier. How these events connect to the green dragon, the Pacts, and the wider barrier crisis remains unresolved. +The Basilisk reported multiple simultaneous crises: Emmeraine under attack, the father at Dunnensend mobilising an army, Muthall mobilising to Emmeraine, a Hearthsmoor fisherman reporting a beast plaguing the town, and four towers rising around Grand Towers to make a new barrier. How these events connect to the green dragon, the Pacts, and the wider barrier crisis remains unresolved. Galdenseell was still not providing aid. Contact with Snow Sorrow was lost, and Perens were going missing. Agents in PineSprings ran into undead creatures. The reasons for Galdenseell's refusal, Snow Sorrow's silence, the missing Perens, and the undead in PineSprings remain open. -The Peridot Queen was willing to lend aid through Basalisk but was explicitly acting for herself and would help only until something better came along. Basalisk planned to meet her by Trade Smells. Her motives, price, and reliability remain suspect. +The Peridot Queen was willing to lend aid through The Basilisk but was explicitly acting for herself and would help only until something better came along. The Basilisk planned to meet her by Trade Smells. Her motives, price, and reliability remain suspect. The party did not think they should bring the barrier down, while four new towers had created a new barrier around Grand Towers. The strategic consequences of keeping, lowering, or altering barriers remain unresolved. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md index 28c4323..85bba8b 100644 --- a/data/4-days-cleaned/day-42.md +++ b/data/4-days-cleaned/day-42.md @@ -91,15 +91,15 @@ A device detected time and noted that Dirk was missing a day. Bleakstorm had bee Bleakstorm said he had broken some rules by coming to see the party, and that he could not break them except on occasion. The party requested sanctuary for their dragon friend. He recognized her and needed to look into her name. He would not forgive Emri, because Emri took away his only friend and had entrusted him despite Bleakstorm saying no to it. It was not the dragons who took him; he was tricked into releasing his friend. Bleakstorm often trusts his god, which she appreciates. The party had promised the elementals they would free his friend, [uncertain: leechus]. He warned that trips outside the barrier could be difficult. -Bleakstorm reported that Perodita was heading to Heathwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Heathwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to the Basilisk about Perodita heading to Heathwall, but Bleakstorm did not send the party outside the barrier. Gardwal was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. +Bleakstorm reported that Perodita was heading to Heathwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Heathwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to The Basilisk about Perodita heading to Heathwall, but Bleakstorm did not send the party outside the barrier. Gardwal was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Heathwall, where they saw Perodita vanish. -The party headed over to Heathwall and spoke to Lady Parthabbit. Lady Heathwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to the Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. +The party headed over to Heathwall and spoke to Lady Parthabbit. Lady Heathwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to The Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. # People, Factions, and Places Mentioned -People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, Basilisk / Basalisk, Lady Parthabbit, Lady Heathwall, T.J. Boggins, and Jin Woo. +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, The Basilisk, Lady Parthabbit, Lady Heathwall, T.J. Boggins, and Jin Woo. Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodika's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Heathwall's forces heading airwise. @@ -113,7 +113,7 @@ Items, currencies, and physical resources mentioned include Envi's fifth ring gi Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. -Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Heathwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to Basilisk, and Lady Heathwall's movement airwise to help with the battle heading to Emmerave. +Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Heathwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to The Basilisk, and Lady Heathwall's movement airwise to help with the battle heading to Emmerave. # Clues, Mysteries, and Open Threads diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md index cd7b492..9009336 100644 --- a/data/4-days-cleaned/day-43.md +++ b/data/4-days-cleaned/day-43.md @@ -21,7 +21,7 @@ complete: true Day 43 began after a restful night's sleep. The party headed for breakfast. All the wizards seemed to have been called back to Grand Towers, and more and more people were finding lost documents. Memories or information had started to come back about a week earlier, aligning with the party killing The Mother. -Goldenswell was still out of sorts after the kidnappings. Two kobolds were now in the city, one of them a lieutenant who had travelled from airwise and whose story was similar to the party's. The party met his lieutenant, Grimby the 3rd. Grimby had once worked for an evil wizard and had been helped by adventurers to escape. The wizard had been capturing woodcutters for her army; the name Klesha was noted, and the Basilisk had told the party about them. A lovely Envoy had come to Grimby and taught him how to kill his townsfolk. The Envoy may have been a dragon, described as silvery green. Grimby woke up at Pine Springs in the snow, ran off because of a huge bird sparkling with electricity, and then ran into the forest. He had been kidnapped because he used to sleep on top of his mother. The place he came from had many words, the same as Harthall. There had been a door in one of the rooms with a goat man in it, but the goat man was gone when he left [unclear]. The name Shriek was noted uncertainly. +Goldenswell was still out of sorts after the kidnappings. Two kobolds were now in the city, one of them a lieutenant who had travelled from airwise and whose story was similar to the party's. The party met his lieutenant, Grimby the 3rd. Grimby had once worked for an evil wizard and had been helped by adventurers to escape. The wizard had been capturing woodcutters for her army; the name Klesha was noted, and The Basilisk had told the party about them. A lovely Envoy had come to Grimby and taught him how to kill his townsfolk. The Envoy may have been a dragon, described as silvery green. Grimby woke up at Pine Springs in the snow, ran off because of a huge bird sparkling with electricity, and then ran into the forest. He had been kidnapped because he used to sleep on top of his mother. The place he came from had many words, the same as Harthall. There had been a door in one of the rooms with a goat man in it, but the goat man was gone when he left [unclear]. The name Shriek was noted uncertainly. The party also discussed Wroth. Wroth trapped Envy when he trapped Mama Harthall, because Envy was in Mama Harthall's head the same way he is in Ruby Eye's. Geldrin found a disintegrated scroll in Jin Woo's room. On the back was written: "In her gaze, End of Days." Morgana found an auction house receipt for a large picture frame with a massive moth. She also found or noted a chess board with the wizards as carved pieces; one rook looked like [uncertain: brakemen]. The pub was called "11th Duke of Harthall's wife." A moustached fat man was there with a very good-looking raven-haired half-elf on his arm. Near the Cathedral of Attabre was an ominous church with the sign "Lord Argenthum's Rest." @@ -75,7 +75,7 @@ Cardonald gave Geldrin all of the teleportation circles: seven prisons with no d # People, Factions, and Places Mentioned -People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, the Basilisk / Bodalisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Harthall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Harthall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Harthall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Harthall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Harthall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, The Basilisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Harthall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Harthall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Harthall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Harthall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Harthall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Harthall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snow Sorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md index e6615d3..1bafa05 100644 --- a/data/4-days-cleaned/day-46.md +++ b/data/4-days-cleaned/day-46.md @@ -44,7 +44,7 @@ Through the hole, the party seemed to reach the third-year dorm, with about ten The music room had a musical lock on the door up to Evocation. The classroom had been ransacked, but a large metal table remained intact with a circle of dark runes. The runes glowed when Geldrin approached with flint and steel. A copper-scaled dragonborn with a human-like head approached. The party subdued him, though no one could see him. He was a copper-goliath mix called one of the Tarnished, apparently the offspring of a prisoner and [unclear] sons. When the party fetched a rock from the excavation hole, a squid-headed man attacked and died. The party found a jellyfish brooch and a 5th-level scroll of Magic Missile. -Another Tarnished came toward Evocation, armed with a coin necklace and a curved sword with a purple crystal in the hilt. The sword activated the summoning circle. This Tarnished wanted to make a deal, saying Willowispa had told everyone the party was there and they were in danger. The party decided to go with them. The Tarnished had to obey Verdigren and would be in trouble otherwise. The summoning circle had a Disintegrate spell trapped on it, activated by command. Another invisible copper Tarnished dropped a note reading "propell." The Tarnished were sacrificial and had not known the sword would not work. They had a hideout fifteen miles below Tradesmells. The party sent the information to the Basilisk. The Tarnished began fighting among themselves; the sword-bearing one killed the other, and Geldrin destroyed the circle with them on it. +Another Tarnished came toward Evocation, armed with a coin necklace and a curved sword with a purple crystal in the hilt. The sword activated the summoning circle. This Tarnished wanted to make a deal, saying Willowispa had told everyone the party was there and they were in danger. The party decided to go with them. The Tarnished had to obey Verdigren and would be in trouble otherwise. The summoning circle had a Disintegrate spell trapped on it, activated by command. Another invisible copper Tarnished dropped a note reading "propell." The Tarnished were sacrificial and had not known the sword would not work. They had a hideout fifteen miles below Tradesmells. The party sent the information to The Basilisk. The Tarnished began fighting among themselves; the sword-bearing one killed the other, and Geldrin destroyed the circle with them on it. The party returned to the basement to sleep. Three hours in, Geldrin's Alarm went off. Hushed voices said they had hidden things, that dragons had not known it was Mother, and that they would not be happy. The notes ask whether there were male and female Willowispa. When the party woke from their shifts, their minds were blank, and for some of them memory took longer to return. Morgana felt it was a spiritual effect from something always present in the building but stronger there. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index bb85c9f..4eda6c5 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -57,7 +57,7 @@ sources: - [Sunsoreen Council](factions/sunsoreen-council.md): Council of Gold, Sunsoreen Council, Hayhearn Frowbrind, Hayhearn Frostwind, Aurum Prudence, Sophus Holed, Orius [Nosheer?], The Silent One. - [The Mother](people/the-mother.md): The Mother, Mother. - [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, Perodita, The Choking Death, The whispers in the dark, Mother of many. -- [Basilisk / Busalish](people/basilisk-busalish.md): Basilisk, Basaluk, Basalisk, Busalish, Busalish's guild. +- [The Basilisk](people/the-basilisk.md): The Basilisk, The Basilisk's guild. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. - [Pythus Aleyvarus](people/pythus-aleyvarus.md): Pythus Aleyvarus, Pythas, Pythus. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md index 8cd75fb..648ec3d 100644 --- a/data/6-wiki/clues/day-46-coverage-audit.md +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -19,7 +19,7 @@ This audit records where each Day 46 mention-section subject was placed in the w | Errol | Covered through [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Open Threads](../open-threads.md), and Day 46 cleaned narrative. | | Evalina | Existing identity thread; preserved in Day 46 cleaned narrative. | | The Tarnished, Verdigren | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); open threads added. | -| The Basilisk | Existing [Basilisk / Busalish](../people/basilisk-busalish.md); Day 46 message preserved in cleaned narrative. | +| The Basilisk | Existing [The Basilisk](../people/the-basilisk.md); Day 46 message preserved in cleaned narrative. | | Mother | Existing [The Mother](../people/the-mother.md); Day 46 Willowispa/Mother uncertainty added to [Open Threads](../open-threads.md). | | Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing] | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | | Garadwal / Groot, Benn, Emeraldus | Updated [Garadwal](../people/garadwal.md); Benn and Emeraldus added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | diff --git a/data/6-wiki/clues/days-36-40-41-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md index 073bfe1..2a8a314 100644 --- a/data/6-wiki/clues/days-36-40-41-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -17,7 +17,7 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Existing Pages Updated or Used -- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hearthwill](../people/lady-hearthwill.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [Basilisk / Busalish](../people/basilisk-busalish.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Envoi](../people/envoi.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). +- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hearthwill](../people/lady-hearthwill.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [The Basilisk](../people/the-basilisk.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Envoi](../people/envoi.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). ## Rollups Used diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md index 3f96eee..6dcf4fc 100644 --- a/data/6-wiki/clues/days-42-44-coverage-audit.md +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -18,7 +18,7 @@ This audit records explicit outcomes for the cleaned-day mention ledgers. It is | Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | | Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | | Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre / Altabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre / Altabre](../people/attabre-altabre.md). | -| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Hearthwall, Basilisk / Basalisk, T.J. Boggins | Existing pages updated or status/source indexed. | +| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Hearthwall, The Basilisk, T.J. Boggins | Existing pages updated or status/source indexed. | | Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | | Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | | Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md); aliases and open threads updated. | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 80d4e64..a2d114e 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -35,8 +35,8 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p |---|---|---|---| | `Spinal` | confirmed Brutor/lab password | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-16.md` | Opened the hidden laboratory outer door and internal dwarf-column door. | | `Winter Roses?` | possible Envoi password | `data/4-days-cleaned/day-15.md` | Boxed note records this uncertainly as [Envoi](../people/envoi.md)'s password. | -| Winter Rose | contact token or substance | `data/4-days-cleaned/day-17.md` | Basilisk arranged a contact carrying Winter Rose; a hemp bag smelled like `[winter] Rose spice`, sickly sweet and narcotic-like. | -| Core suits / golem room password | unknown | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-14.md` | `Joy` and `Tri-moon` failed; Basalisk later could not access the golem underground room. | +| Winter Rose | contact token or substance | `data/4-days-cleaned/day-17.md` | The Basilisk arranged a contact carrying Winter Rose; a hemp bag smelled like `[winter] Rose spice`, sickly sweet and narcotic-like. | +| Core suits / golem room password | unknown | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-14.md` | `Joy` and `Tri-moon` failed; The Basilisk later could not access the golem underground room. | | Aldaine Hartwell book command word | unknown | `data/4-days-cleaned/day-16.md` | The locked memoirs/learnings book needs powerful identity magic to learn the command word. | | Baroness's circle and safe code | known to Baroness, not recorded | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) said the code works while the defences are up. | | `Thurtall!!` | possible teleport carpet trigger | `data/4-days-cleaned/day-17.md` | Shouted as a gargoyle rolled out a carpet with a teleport rune; whether it is a formal command word is not explicit. | @@ -67,7 +67,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `circling vultures` | `data/4-days-cleaned/day-32.md` | Title of Davina Browning painting where she covered her eyes with hands that had eyes on them. | | Runes of Lauren | `data/4-days-cleaned/day-32.md` | Runes on a shield ring sold for 600 gp to werewolfish [uncertain: Repiteth]. | | Lady Fatrabbit's armour dedication to the god of Law | `data/4-days-cleaned/day-32.md` | Armour engravings recorded while Lady Fatrabbit escorted the party through the Castle. | -| `Don't come to Strong hedge Compromised.` | `data/4-days-cleaned/day-32.md` | Busalish warning after Goldenswell refused prison access. | +| `Don't come to Strong hedge Compromised.` | `data/4-days-cleaned/day-32.md` | The Basilisk warning after Goldenswell refused prison access. | | `The lord above place in the sky` | `data/4-days-cleaned/day-32.md` | Phrase linked to Ruby Eye skull lore. | | Yellow guards' half-sun tattoo obscured by a waterfall | `data/4-days-cleaned/day-32.md` | Symbol worn by guards in the Goldenswell militia-house operation. | | College of Surgeons symbol | `data/4-days-cleaned/day-35.md` | Geldrin added it to the wagon at Bluemeadows. | diff --git a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md index f65fb5b..38f5899 100644 --- a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md +++ b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md @@ -23,7 +23,7 @@ The Goldenswell prison operation was an off-the-books detention and prisoner-tra ## Known Details -- Goldenswell refused Busalish's prison checks while Redford and Everchard had no Lady Thorpe. +- Goldenswell refused The Basilisk's prison checks while Redford and Everchard had no Lady Thorpe. - Lady Thorpe was held in the Goldenswell militia house, two floors down, after a false Lady Thorpe impersonated her in Hearthwall. - The captain said orders came from the Duke's office, a Duke's emissary fed Lady Thorpe, and the Duke's personal guard had brought prisoners in. - A woman with a bag on her head, a snake-bodied man, Duke's emissaries, Duke's personal guard, and yellow guards with a half-sun tattoo obscured by a waterfall are implicated. diff --git a/data/6-wiki/factions/black-scales.md b/data/6-wiki/factions/black-scales.md index 3c2eb76..81b6f34 100644 --- a/data/6-wiki/factions/black-scales.md +++ b/data/6-wiki/factions/black-scales.md @@ -21,7 +21,7 @@ The Black Scales are mercenaries or a place/faction associated with the black dr ## Known Details -- Basalisk identified the Black Scales as mercenaries working for Infestus. +- The Basilisk identified the Black Scales as mercenaries working for Infestus. - Wrath/Kolin, a black dragonborn, would stay beyond the Barrier and asked to search for Garadwal at Black Scale. - The notes preserve uncertainty over whether Black Scale is a place, group, or both. - Merfolk said the city of the Black Scales had a `door` into [unclear], with access requiring a Grand Towers penny. diff --git a/data/6-wiki/factions/the-pact.md b/data/6-wiki/factions/the-pact.md index 0005466..07551ea 100644 --- a/data/6-wiki/factions/the-pact.md +++ b/data/6-wiki/factions/the-pact.md @@ -36,7 +36,7 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - Baytail Accord's first baby girl in 20 years was born after the crisis, with Princess Aquana present. - Day 40 confirms Alana as the Pact leader at Azureside / Heartmoor while Carl was absent and the guild was trying to run town affairs. - Day 41 mentions the Pact Keeper and a matriarch no one had seen leave her domain, immediately before Perodika declared all Pacts off. -- The party guided Azureside evacuation and coordinated messages with Basalisk, Cardonald, and Rubyeye while the Pacts appeared under direct attack. +- The party guided Azureside evacuation and coordinated messages with The Basilisk, Cardonald, and Rubyeye while the Pacts appeared under direct attack. ## Timeline diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index de427cf..b564115 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -80,7 +80,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Silver](people/silver.md) - [The Mother](people/the-mother.md) - [Peridita](people/peridita.md) -- [Basilisk / Busalish](people/basilisk-busalish.md) +- [The Basilisk](people/the-basilisk.md) - [Morgana](people/morgana.md) - [Benu](people/benu.md) - [Astraywoo](people/astraywoo.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index ef83280..95c7e7a 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -72,7 +72,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Spear of Ciara / arrow of Cierra | taken by temple representative for checking | `day-20` | `data/4-days-cleaned/day-20.md` | Initially taken from the museum division; Huntmaster Thrune said it was actually one of five arrows from Cierra's last battlefield. Final custody is not explicit. | | Noctus Cairinium Grimoire / creepy skin book | taken by [Pythus Aleyvarus](../people/pythus-aleyvarus.md) | `day-16` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Later seen with Pythus near Salvation. | | Celestial book | taken by Pythus | `day-16` | `data/4-days-cleaned/day-16.md` | Part of the museum treasure division. | -| Coin press | given to Basilisk | `day-17` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Initially selected by the note-writer, then given to Basilisk. | +| Coin press | given to The Basilisk | `day-17` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Initially selected by the note-writer, then given to The Basilisk. | | Dragon skull of Alsafaur | returned to black dragon | `day-16` | `data/4-days-cleaned/day-16.md` | Given to the black dragon at the Barrier in exchange for being `even`. | | 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | | One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hearthwall auction. | @@ -85,11 +85,11 @@ This page tracks lifecycle state for objects the party holds, controlled recentl |---|---|---|---| | Baroness forces | promised | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) promised to loan some forces and gave laboratory permission/information. | | Huntmaster aid | promised | `data/4-days-cleaned/day-20.md` | Huntmaster Thrune agreed to provide aid against the Excellence. | -| Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | Basilisk was arranging contact in Fairshaws or Freeport carrying Winter Rose. | +| Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | The Basilisk was arranging contact in Fairshaws or Freeport carrying Winter Rose. | | Mother-of-pearl elemental chariot auction | possibly occurred, identity uncertain | `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it; a chariot at the Hearthwall auction was tied to an Excellence and taken to the Palace, but identity with the mother-of-pearl chariot is not confirmed. | | Jelly Fish Broach retrieval | promised attempt | `data/4-days-cleaned/day-36.md` | Mercy's contractor wanted the party to retrieve it from Grand Towers floor 74 for a female buyer outside the Barrier. | | Free Icefang's ice elemental | promised to water elementals | `data/4-days-cleaned/day-36.md` | Water elementals required this before helping with dragon flames. | -| Peridot Queen aid | offered through Basalisk | `data/4-days-cleaned/day-41.md` | Aid is explicitly self-interested and conditional. | +| Peridot Queen aid | offered through The Basilisk | `data/4-days-cleaned/day-41.md` | Aid is explicitly self-interested and conditional. | | Queen Mooncoral's merfolk service | promised | `data/4-days-cleaned/day-57.md` | Queen Mooncoral and mother-of-pearl-armoured merfolk came to serve the party after the merbaby rescue. | | Azar Nuri bargain | promised by Geldrin / dangerous | `data/4-days-cleaned/day-57.md` | Tongs now; gold when the crystal is complete; force god of death to appear on Mortal plane; open passageway for Azar Nuri's envoys. | @@ -116,7 +116,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Snake Slayers / crossbow | `day-40`, `day-41` | `data/4-days-cleaned/day-40.md`, `data/4-days-cleaned/day-41.md` | Frilleshanks streamlined Snake Slayers; a crossbow in a wooden chest was later taken by Bosh, identity uncertain. | | Bracelet of locating | `day-41` | `data/4-days-cleaned/day-41.md` | Given to Errol for Dirk's dad; Errol reported no bracelet halfway from Sunset Vista to Azureside. | | Searu's Arrow | `day-41` | `data/4-days-cleaned/day-41.md` | +2 spear/arrow with once-per-day auto-critical and possible three-hit slaying effect; holder not explicit. | -| Godmount pills | `day-41` | `data/4-days-cleaned/day-41.md` | Basalisk said they might help, with note `he's an idiot`; not confirmed received. | +| Godmount pills | `day-41` | `data/4-days-cleaned/day-41.md` | The Basilisk said they might help, with note `he's an idiot`; not confirmed received. | | Three Finger Dune Shwelter's black-feather communication brick | `day-42` | `data/4-days-cleaned/day-42.md` | It flew to other birds; whether the party retained access is unclear. | | Treamon's skull | `day-42`, `day-44` | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-44.md` | Used for meteor strike and to make a new core; charge/cooldown unclear. | | Flesh-crafting wand | `day-42`, `day-43` | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Found in observatory room; Perodita later wanted flesh-crafting wands. Custody and count unclear. | diff --git a/data/6-wiki/items/minor-items-days-53-56.md b/data/6-wiki/items/minor-items-days-53-56.md index 0ac1827..3869784 100644 --- a/data/6-wiki/items/minor-items-days-53-56.md +++ b/data/6-wiki/items/minor-items-days-53-56.md @@ -17,7 +17,7 @@ sources: - Approximately 100 coins: offered by the Ambassador to elementals' mother to avert an elemental attack. - Carved elven shield crystal and copper: found in the invisible-attackers wagon and assumed to cause invisibility. - Poison barrels and general-purpose explosives: seized from convoy wagons on Day 54. -- Basilisk coal: piece of coal at Coalmont Rally that Wrath said could be crushed to teleport to Infestus. +- Coal from The Basilisk: piece of coal at Coalmont Rally that Wrath said could be crushed to teleport to Infestus. - Rift blade: used to teleport to Magstein for the Perodita ambush. - Papa Marmaru's goblet: offered by Invar during the Merocole / Papa Marmaru encounter. - Perodita trap materials: explosives, Wall of Force, hide, blasting holes, alarm, Pass without Trace, and Walls of Fire. diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index a336309..f0caad6 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -83,7 +83,7 @@ sources: - Are [The Guilt](concepts/excellences.md), Pride, Wrath, Darkness, Light, Treamen, and the Brass City leader Excellences, prisoners, or overlapping titles for different ancient beings? - Why does The Guilt insist there should be five party members, and why did The Chorus send Morgana because visions went better with five? - Who planted or operates the automaton infiltrators in [Dunnersend](places/dunnersend.md), and are Ennui, Browning, Cardenald, the overseer, explorer, Galatrayer, or Grand Towers control systems responsible? -- What was in Sister Proulsothight's box like Gelissa's, why was Basilisk seeking it while warning the party away, and why were wizards on the payroll? +- What was in Sister Proulsothight's box like Gelissa's, why was The Basilisk seeking it while warning the party away, and why were wizards on the payroll? - Where is Luth hiding, what did [Lortesh](people/lortesh.md) want from the Goliaths and vultures, and what happened in the missing pages 103-104 before Lortesh died? - Who intercepted messages, attacked Hucan's ship and the cart, leaked battle plans, and may be connected to the blue dragon, Crater's Edge, Lady R. Beauchamp?!?, and the betrayer? - What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s role in recovering the moon shard, the auction, and the cart marked `1600`? @@ -119,7 +119,7 @@ sources: - What happened to Aurouze and his two companions after the Savannah hunt? - What trapped ally, corruptions, and Goliath resistance did [Searu](people/searu.md)'s flame vision point toward while the dragon was away? - What are the simultaneous day-41 crises at Emmeraine, Dunnensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? -- What price or betrayal risk comes with the Peridot Queen's aid through Basalisk? +- What price or betrayal risk comes with the Peridot Queen's aid through The Basilisk? - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused the narrator's cracked-eggshell dragon dream and temporary mental-stat disadvantage? - What does Dirk's Goliath-and-fat-bellied-dragon dream mean about links to dragons, Goliaths, or ancestral figures? diff --git a/data/6-wiki/people/basilisk-busalish.md b/data/6-wiki/people/basilisk-busalish.md deleted file mode 100644 index 364668d..0000000 --- a/data/6-wiki/people/basilisk-busalish.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Basilisk / Busalish -type: person or contact -aliases: - - Basilisk - - Basaluk - - Basalisk - - Busalish -first_seen: day-23 -last_updated: day-41 -sources: - - data/4-days-cleaned/day-23.md - - data/4-days-cleaned/day-26.md - - data/4-days-cleaned/day-27.md - - data/4-days-cleaned/day-29.md - - data/4-days-cleaned/day-30.md - - data/4-days-cleaned/day-32.md - - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-41.md ---- - -# Basilisk / Busalish - -## Summary - -Basilisk, Basaluk, Basalisk, or Busalish is a recurring contact who receives party messages, appears during the Baytail Accord crisis, warns about dangerous boxes, and may help with mage support. - -## Known Details - -- The party sent a message to Basilisk after finding the active Censer of Noxia. -- During the Baytail Accord crisis, Basaluk appeared with a tabaxi and his boss after the party called for help. -- Basilisk warned the party that they were in over their heads when they asked about Sister Proulsothight's box. -- Day 29 records the party sending Busalish a message saying they had killed Lortesh. -- Day 30 begins with Busalish saying he wanted to meet the party and was coming in; later the party messaged Busalish about The Guilt being an Excellence and asked for mage help with Wrath. -- Day 32 records the party asking Busalish for guild help to check prisons while searching for Lady Thorpe. -- Busalish's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` -- The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. -- On Day 36, the party sent Basilisk a note about current events from Highden. -- On Day 41, Basalisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. -- Basalisk planned to meet the Peridot Queen by Trade Smells and get Cardonald to take the party back to the army. - -## Related Entries - -- [Dunnersend](../places/dunnersend.md) -- [Excellences](../concepts/excellences.md) -- [Lortesh](lortesh.md) -- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - -## Open Questions - -- Are Basilisk, Basaluk, Basalisk, and Busalish the same contact? -- Who are the tabaxi and boss who appeared with him? -- Why was he seeking the Gelissa-like box while warning the party to leave it alone? -- What compromised Strong Hedge, and how does it connect to Goldenswell's off-the-books prisoners? diff --git a/data/6-wiki/people/galimma-peridot-queen.md b/data/6-wiki/people/galimma-peridot-queen.md index b9ebf41..6be972e 100644 --- a/data/6-wiki/people/galimma-peridot-queen.md +++ b/data/6-wiki/people/galimma-peridot-queen.md @@ -22,7 +22,7 @@ Galimma, the Peridot Queen, is a self-described master spy and dangerous green/p ## Known Details - Earlier notes warned not to anger the Peridot Queen and later connected possible Peridot Queen imagery to Elementarium's green-eyed vision. -- On `day-41`, Basalisk said the Peridot Queen had contracted him to help while acting for herself. +- On `day-41`, The Basilisk said the Peridot Queen had contracted him to help while acting for herself. - On `day-42`, Galimma offered information if the party agreed to leave her alone to choose mates, live freely, and put a warning sign on her lair. - She candidly said she might kill husbands and the odd person, shed some gold, and would be neither good nor evil. - She named or described remaining dragons connected to Lortesh and Perodika, including Emeredge, Willowspra / Willow-wispa, Toxicanthus, Rotwrake, and Verdigrim / Verdugrim. @@ -31,7 +31,7 @@ Galimma, the Peridot Queen, is a self-described master spy and dangerous green/p - [Peridita](peridita.md) - [Lortesh](lortesh.md) -- [Basilisk / Busalish](basilisk-busalish.md) +- [The Basilisk](the-basilisk.md) ## Open Questions diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md index 2469906..6636516 100644 --- a/data/6-wiki/people/infestus.md +++ b/data/6-wiki/people/infestus.md @@ -27,7 +27,7 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m ## Known Details -- Basalisk identified the Black Scales as mercenaries working for Infestus. +- The Basilisk identified the Black Scales as mercenaries working for Infestus. - Black dragonborn with mosquito shields claimed Brutor's lab for their master. - Infestus or the black dragon wanted the skull of Alsafaur, described as his son. - A storm and insects accompanied black dragon activity, and the Barrier showed something like eight massive claws. diff --git a/data/6-wiki/people/minor-figures-days-36-40-41.md b/data/6-wiki/people/minor-figures-days-36-40-41.md index 47e5eea..f169963 100644 --- a/data/6-wiki/people/minor-figures-days-36-40-41.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -17,7 +17,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi |---|---|---| | Skum, Elementarium, Lady Thorpe, rescuees, Huthnall | Rescue aftermath; rescuees were sent to Huthnall to remove Lady Thorpe's ear worm. | Status rollup; Lady Thorpe has an existing page. | | Lady Newgate's sister, Newgate's gargoyle, Newgate doppel/imposter, broken Bird | Claymeadow transport/contact thread. | Rollup and open thread. | -| Peridot Queen | Not seen by Elementarium for about a month; day-41 aid later came through Basalisk. | NPC Status / open thread. | +| Peridot Queen | Not seen by Elementarium for about a month; day-41 aid later came through The Basilisk. | NPC Status / open thread. | | Lead human and pigeon by the main building | Pigeon reported the lead human gone after explosions. | Rollup. | | Captain paid 25 platinum | Ran toward Brookville Springs after payment. | Party Treasury and rollup. | | Seneshell | Ran Hazy Days; explained Pride, The Guilt, and Grand Towers. Possibly distinct from day-35 Mr Seneshell. | Rollup; unresolved merge preserved. | @@ -74,7 +74,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Longfury | Gnoll who took charge at Cheery & Cherry and taunted dragon. | NPC Status / rollup. | | Pact Keeper and matriarch | Domain/Pacts thread; matriarch never seen leaving. | [The Pact](../factions/the-pact.md) and open thread. | | Perodika | Green smoke dragon, Choking Death, Mother of many. | [Peridita](peridita.md), with variant preserved. | -| Basalisk, Cardonald, Rubyeye, Dirk's dad | Messaging and teleportation coordination. | Existing pages/status. | +| The Basilisk, Cardonald, Rubyeye, Dirk's dad | Messaging and teleportation coordination. | Existing pages/status. | | Grinan, Hayes, Aurouze and two companions | Savannah settlement contact, dog, and missing hunters. | Status / open thread. | | Old lady / settlement leader / Searu | Flame vision and Searu's Arrow. | [Searu](searu.md). | | Father at Dunnensend, Hearthsmoor fisherman, interested party, Peridot Queen, Godmount | Regional crisis and aid report figures. | Rollup/open threads. | diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index fa860ee..73b6094 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -133,7 +133,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Icefang | dead or dying, to be buried | `data/4-days-cleaned/day-36.md` | Returned as frost dragon, badly injured, retrieved by water elemental; Cardunel planned burial near Snow Sorrow. | | Lord Bleakstorm | dead but active outside dome | `data/4-days-cleaned/day-36.md` | Delivered Icefang's message and gave snowflake coin; cannot remain inside dome long. | | Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | -| Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | Basalisk reported all contact lost with Snow Sorrow and Perens going missing. | +| Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | The Basilisk reported all contact lost with Snow Sorrow and Perens going missing. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | missing / possibly off-plane | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Joy warned `they've got him`; after Ashkellon Ruby Eye was missing, out of Bleakstorm's sight, and Cardonald could not find him. | | [Envoi](envoi.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tresmun's arm. | | Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | @@ -170,7 +170,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Sheriff Jeremia/Jeremiah | Everchard authority/contact | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-09.md` | Deputized the party and later took over after the Earl disappeared. | | Brother Fracture | healer/restoration ally | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-09.md` | Helped restored victims and affected townsfolk. | | [The Chorus](the-chorus.md) | strange ally/source | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-07.md` | Explained memory magic and watched remaining people near the Barrier. | -| [Basilisk / Busalish](basilisk-busalish.md) | recurring contact | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md`, `data/4-days-cleaned/day-23.md`, `data/4-days-cleaned/day-30.md` | Bodyguard to Lady Catherine Cole, arranging a Winter Rose contact; later receives party messages and may help with mage support. | +| [The Basilisk](the-basilisk.md) | recurring contact | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md`, `data/4-days-cleaned/day-23.md`, `data/4-days-cleaned/day-30.md` | Bodyguard to Lady Catherine Cole, arranging a Winter Rose contact; later receives party messages and may help with mage support. | | Elementharium/Clementarium | Seaward expert | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md` | Explained quasi-elementals and gave Ruby Eye skull. | | [Shandra](shandra.md) | Turtle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | | [Tiana/Taina](tiana-taina.md) | Freeport Pact leader/coordinator | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Coordinated forces against the Excellence. | diff --git a/data/6-wiki/people/the-basilisk.md b/data/6-wiki/people/the-basilisk.md new file mode 100644 index 0000000..1be7911 --- /dev/null +++ b/data/6-wiki/people/the-basilisk.md @@ -0,0 +1,50 @@ +--- +title: The Basilisk +type: person or contact +aliases: + - The Basilisk +first_seen: day-23 +last_updated: day-41 +sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-41.md +--- + +# The Basilisk + +## Summary + +The Basilisk is a recurring contact who receives party messages, appears during the Baytail Accord crisis, warns about dangerous boxes, and may help with mage support. + +## Known Details + +- The party sent a message to The Basilisk after finding the active Censer of Noxia. +- During the Baytail Accord crisis, The Basilisk appeared with a tabaxi and his boss after the party called for help. +- The Basilisk warned the party that they were in over their heads when they asked about Sister Proulsothight's box. +- Day 29 records the party sending The Basilisk a message saying they had killed Lortesh. +- Day 30 begins with The Basilisk saying he wanted to meet the party and was coming in; later the party messaged The Basilisk about The Guilt being an Excellence and asked for mage help with Wrath. +- Day 32 records the party asking The Basilisk for guild help to check prisons while searching for Lady Thorpe. +- The Basilisk's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` +- The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. +- On Day 36, the party sent The Basilisk a note about current events from Highden. +- On Day 41, The Basilisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. +- The Basilisk planned to meet the Peridot Queen by Trade Smells and get Cardonald to take the party back to the army. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Excellences](../concepts/excellences.md) +- [Lortesh](lortesh.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) + +## Open Questions + +- Who are the tabaxi and boss who appeared with him? +- Why was he seeking the Gelissa-like box while warning the party to leave it alone? +- What compromised Strong Hedge, and how does it connect to Goldenswell's off-the-books prisoners? diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md index e56e700..d7cbc70 100644 --- a/data/6-wiki/places/grand-towers.md +++ b/data/6-wiki/places/grand-towers.md @@ -33,7 +33,7 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - Floor 65 contained a central pillar and shelves of memory orbs like Ruby Eye's lab. - Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadwal trapped downstairs, Harthwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. - Geldrin reached floor 98 and found Browning before alarms and golems forced the party to flee. -- On `day-41`, Basalisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. +- On `day-41`, The Basilisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. - On `day-43`, all wizards seemed to have been recalled to Grand Towers, the Grand Towers dome later went down, and Cardonald's teleport-circle list included the factory, control room, and meeting lounge. - On `day-44`, Principal Grey's old-school letter from Browning, dated 47 AD, ordered the school closed and students transferred to Grand Towers. - Old-school books and visions suggested Grand Towers used god-language texts, gnomish technology, automations, emotional elimination, memories, tower tunnels, and possibly the same hidden routes later used by Browning's group. diff --git a/data/6-wiki/places/minor-places-days-36-40-41.md b/data/6-wiki/places/minor-places-days-36-40-41.md index e84d42a..a0d7b36 100644 --- a/data/6-wiki/places/minor-places-days-36-40-41.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -34,5 +34,5 @@ sources: | Threeleigh, Donly, horizon of green shape, Aire | Evacuation and route after Perodika attack. | Open thread / rollup. | | Savannah hunters' encampment and red-eyed settlement | Hospitality settlement where Searu appeared. | [Searu](../people/searu.md). | | Tower in the flames and Goliath settlement below tower | Perodika/Searu vision location. | Open thread / rollup. | -| Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Galdenseell, Snow Sorrow, PineSprings, Trade Smells | Simultaneous crisis locations reported by Basalisk. | Open threads; existing pages where present. | +| Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Galdenseell, Snow Sorrow, PineSprings, Trade Smells | Simultaneous crisis locations reported by The Basilisk. | Open threads; existing pages where present. | | Cave entrance in dream and fire place associated with Searu's Arrow | Dragon dream and Searu's Arrow return place. | [Searu's Arrow](../items/searus-arrow.md) / open thread. | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 8456a0c..5820c38 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -76,17 +76,17 @@ sources: - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). - `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Silver](people/silver.md), [Envoi](people/envoi.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-27.md`: [Dunnersend](places/dunnersend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-27.md`: [Dunnersend](places/dunnersend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [The Basilisk](people/the-basilisk.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-28.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). -- `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hearthwill](people/lady-hearthwill.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hearthwill](people/lady-hearthwill.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). -- `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hearthwill](people/lady-hearthwill.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hearthwill](people/lady-hearthwill.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [The Basilisk](people/the-basilisk.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [The Basilisk](people/the-basilisk.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hearthwill](people/lady-hearthwill.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). -- `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [The Basilisk](people/the-basilisk.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hearthwill](people/lady-hearthwill.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index b67d40a..e09962e 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -86,7 +86,7 @@ sources: - `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns Pride was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Harthwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. - `day-37` through `day-69`: Not included in this wiki pass. - `day-40`: At [Azureside and Heartmoor](places/azureside-heartmoor.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). -- `day-41`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears Basalisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). +- `day-41`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears The Basilisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). - `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadwal](people/garadwal.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Heathwall. - `day-43`: Goldenswell and Harthall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). -
3c9539dClarify Day 1 inn notesby Laura Mostert
data/2-pages/1.txt | 2 +- data/3-days/day-01.md | 2 +- data/4-days-cleaned/day-01.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)Show diff
diff --git a/data/2-pages/1.txt b/data/2-pages/1.txt index c802b2c..5d8bbca 100644 --- a/data/2-pages/1.txt +++ b/data/2-pages/1.txt @@ -17,7 +17,7 @@ no visible district - larger manor house in centre. Cider inn cider Beeswaxed floor a nice small -Female half elf playing a lute [unclear/crossed out] music's half elf & human +Female half elf playing a lute + 2 maids half elf & human family resemblance. Father Burnun - prize fighter half elf - Gelissa * diff --git a/data/3-days/day-01.md b/data/3-days/day-01.md index e7fc7b9..768b79a 100644 --- a/data/3-days/day-01.md +++ b/data/3-days/day-01.md @@ -29,7 +29,7 @@ no visible district - larger manor house in centre. Cider inn cider Beeswaxed floor a nice small -Female half elf playing a lute [unclear/crossed out] music's half elf & human +Female half elf playing a lute + 2 maids half elf & human family resemblance. Father Burnun - prize fighter half elf - Gelissa * diff --git a/data/4-days-cleaned/day-01.md b/data/4-days-cleaned/day-01.md index 7e51d99..9025890 100644 --- a/data/4-days-cleaned/day-01.md +++ b/data/4-days-cleaned/day-01.md @@ -12,7 +12,7 @@ complete: true The party began in Everchard, a swampy town of roughly three thousand people surrounded by fruit trees, orchards, cider breweries, and woodland tours that drew visiting tourists. It was winter, but one orchard was strangely in bloom. Bees slightly larger than normal were buzzing around the trees and pollinating them. The trees had dark bark, blue leaves, and deep red fruit. The town itself mixed light and dark woods, had no obvious districts, and had a larger manor house in the centre. -The first important stop was the Cider Inn Cider, a small inn with a beeswaxed floor. A female half-elf played a lute, and the notes suggest some half-elf and human family resemblance. Local names established there included Father Burnun, a prize fighter, and Gelissa, a half-elf. The party members noted were Invar, a greying-haired, paladin-looking dwarf who did not yet have plate; Dirk, a Goliath; and Geldrin the Mighty, a gnome with wild brown hair and glasses with no glass. +The first important stop was the Cider Inn Cider, a small inn with a beeswaxed floor. A female half-elf played a lute, and two maids, one half-elf and one human, had a family resemblance. Local names established there included Father Burnun, a prize fighter, and Gelissa, a half-elf. The party members noted were Invar, a greying-haired, paladin-looking dwarf who did not yet have plate; Dirk, a Goliath; and Geldrin the Mighty, a gnome with wild brown hair and glasses with no glass. Old John Thornhollows, a farmer with three daughters, brought the first job. Another three pigs had vanished, but the numbers were already wrong: six pigs seemed to be missing, yet John only had ledgers for three. He may have had around thirty pigs. His daughters' names were recorded as Annabel, Isabelle, and Clarabella. The daughters kept the best books, and the party were offered 1 gp each to investigate. At the inn, five keys on the bar somehow became four, and nobody knew how the change happened. -
ee4dec1Clarify Day 1 transcription and cleaned narrativeby Laura Mostert
data/2-pages/1.txt | 8 ++++---- data/3-days/day-01.md | 8 ++++---- data/4-days-cleaned/day-01.md | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-)Show diff
diff --git a/data/2-pages/1.txt b/data/2-pages/1.txt index 2f6b0ca..c802b2c 100644 --- a/data/2-pages/1.txt +++ b/data/2-pages/1.txt @@ -17,17 +17,17 @@ no visible district - larger manor house in centre. Cider inn cider Beeswaxed floor a nice small -half elf playing a lute [unclear/crossed out] music's half elf & human +Female half elf playing a lute [unclear/crossed out] music's half elf & human family resemblance. Father Burnun - prize fighter half elf - Gelissa * [boxed notes] Bas - Invar - greying hair - Paladin-looking - had not got the plate + Greying Hair - Paladin looking but has not got the plate. + Dwarf Laura - Dirk - politely + Goliath Shaun - Geldrin (the mighty) gnome wild brown hair glasses with no glass diff --git a/data/3-days/day-01.md b/data/3-days/day-01.md index 42f9e01..e7fc7b9 100644 --- a/data/3-days/day-01.md +++ b/data/3-days/day-01.md @@ -29,17 +29,17 @@ no visible district - larger manor house in centre. Cider inn cider Beeswaxed floor a nice small -half elf playing a lute [unclear/crossed out] music's half elf & human +Female half elf playing a lute [unclear/crossed out] music's half elf & human family resemblance. Father Burnun - prize fighter half elf - Gelissa * [boxed notes] Bas - Invar - greying hair - Paladin-looking - had not got the plate + Greying Hair - Paladin looking but has not got the plate. + Dwarf Laura - Dirk - politely + Goliath Shaun - Geldrin (the mighty) gnome wild brown hair glasses with no glass diff --git a/data/4-days-cleaned/day-01.md b/data/4-days-cleaned/day-01.md index 884bc3f..7e51d99 100644 --- a/data/4-days-cleaned/day-01.md +++ b/data/4-days-cleaned/day-01.md @@ -12,7 +12,7 @@ complete: true The party began in Everchard, a swampy town of roughly three thousand people surrounded by fruit trees, orchards, cider breweries, and woodland tours that drew visiting tourists. It was winter, but one orchard was strangely in bloom. Bees slightly larger than normal were buzzing around the trees and pollinating them. The trees had dark bark, blue leaves, and deep red fruit. The town itself mixed light and dark woods, had no obvious districts, and had a larger manor house in the centre. -The first important stop was the Cider Inn Cider, a small inn with a beeswaxed floor. A half-elf played a lute, and the notes suggest some half-elf and human family resemblance. Local names established there included Father Burnun, a prize fighter, and Gelissa, a half-elf. The party members noted were Invar, a greying paladin-looking figure who did not yet have plate; Dirk, described as polite; and Geldrin the Mighty, a gnome with wild brown hair and glasses with no glass. +The first important stop was the Cider Inn Cider, a small inn with a beeswaxed floor. A female half-elf played a lute, and the notes suggest some half-elf and human family resemblance. Local names established there included Father Burnun, a prize fighter, and Gelissa, a half-elf. The party members noted were Invar, a greying-haired, paladin-looking dwarf who did not yet have plate; Dirk, a Goliath; and Geldrin the Mighty, a gnome with wild brown hair and glasses with no glass. Old John Thornhollows, a farmer with three daughters, brought the first job. Another three pigs had vanished, but the numbers were already wrong: six pigs seemed to be missing, yet John only had ledgers for three. He may have had around thirty pigs. His daughters' names were recorded as Annabel, Isabelle, and Clarabella. The daughters kept the best books, and the party were offered 1 gp each to investigate. At the inn, five keys on the bar somehow became four, and nobody knew how the change happened. -
1ac860bEverchurch-Everchardby Laura Mostert
AGENTS.md | 2 +- data/2-pages/1.txt | 2 +- data/3-days/day-01.md | 2 +- data/4-days-cleaned/day-01.md | 6 +++--- data/5-retrospective/day-01.txt | 2 +- data/6-wiki/aliases.md | 2 +- data/6-wiki/concepts/everchard-memory-tampering.md | 2 +- data/6-wiki/factions/militia.md | 2 +- data/6-wiki/index.md | 2 +- data/6-wiki/people/bushhunter-bughunter.md | 2 +- data/6-wiki/people/malcolm-donovan.md | 2 +- data/6-wiki/people/morgana.md | 2 +- data/6-wiki/people/thornhollows-family.md | 2 +- data/6-wiki/places/{everchurch-everchard.md => everchard.md} | 9 ++++----- data/6-wiki/places/hostel.md | 4 ++-- data/6-wiki/sources.md | 8 ++++---- data/6-wiki/timeline.md | 2 +- 17 files changed, 26 insertions(+), 27 deletions(-)Show diff
diff --git a/AGENTS.md b/AGENTS.md index bcb7e32..9a629bf 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -63,6 +63,6 @@ If a retrospective context file already contains the same fact and source, do no ## Current Campaign Context -The campaign has involved Everchurch/Everchard memory tampering, missing pigs and militia, the barrier observatory and Joy, shield pylons, elemental prisons, Brutor Ruby Eye, Envoi, Garadwal the Terror of the Sands, the Tri-moon shard, the Pact, Freeport, the Underbelly, the Black Scales, Infestus, Pythus Aleyvarus, Valenth Caerduinel, and a current direction toward a desert laboratory. +The campaign has involved Everchard memory tampering, missing pigs and militia, the barrier observatory and Joy, shield pylons, elemental prisons, Brutor Ruby Eye, Envoi, Garadwal the Terror of the Sands, the Tri-moon shard, the Pact, Freeport, the Underbelly, the Black Scales, Infestus, Pythus Aleyvarus, Valenth Caerduinel, and a current direction toward a desert laboratory. Use existing summaries such as `party-diary.txt` if present as campaign context only. Do not treat summary text as a substitute for processing new source images or page transcriptions unless the user explicitly asks for that. diff --git a/data/2-pages/1.txt b/data/2-pages/1.txt index 7285c44..2f6b0ca 100644 --- a/data/2-pages/1.txt +++ b/data/2-pages/1.txt @@ -3,7 +3,7 @@ Source: data/1-source/IMG_5115.png Transcription: -Everchurch +Everchard Swampy land - fruit trees orchards Winter - 1 orchard has trees in bloom - [unclear/crossed out] diff --git a/data/3-days/day-01.md b/data/3-days/day-01.md index c62f7e7..42f9e01 100644 --- a/data/3-days/day-01.md +++ b/data/3-days/day-01.md @@ -15,7 +15,7 @@ Source: data/1-source/IMG_5115.png Transcription: -Everchurch +Everchard Swampy land - fruit trees orchards Winter - 1 orchard has trees in bloom - [unclear/crossed out] diff --git a/data/4-days-cleaned/day-01.md b/data/4-days-cleaned/day-01.md index 1442eb1..884bc3f 100644 --- a/data/4-days-cleaned/day-01.md +++ b/data/4-days-cleaned/day-01.md @@ -10,7 +10,7 @@ complete: true # Narrative -The party began in Everchurch, also later called Everchard, a swampy town of roughly three thousand people surrounded by fruit trees, orchards, cider breweries, and woodland tours that drew visiting tourists. It was winter, but one orchard was strangely in bloom. Bees slightly larger than normal were buzzing around the trees and pollinating them. The trees had dark bark, blue leaves, and deep red fruit. The town itself mixed light and dark woods, had no obvious districts, and had a larger manor house in the centre. +The party began in Everchard, a swampy town of roughly three thousand people surrounded by fruit trees, orchards, cider breweries, and woodland tours that drew visiting tourists. It was winter, but one orchard was strangely in bloom. Bees slightly larger than normal were buzzing around the trees and pollinating them. The trees had dark bark, blue leaves, and deep red fruit. The town itself mixed light and dark woods, had no obvious districts, and had a larger manor house in the centre. The first important stop was the Cider Inn Cider, a small inn with a beeswaxed floor. A half-elf played a lute, and the notes suggest some half-elf and human family resemblance. Local names established there included Father Burnun, a prize fighter, and Gelissa, a half-elf. The party members noted were Invar, a greying paladin-looking figure who did not yet have plate; Dirk, described as polite; and Geldrin the Mighty, a gnome with wild brown hair and glasses with no glass. @@ -18,7 +18,7 @@ Old John Thornhollows, a farmer with three daughters, brought the first job. Ano Other local problems surfaced immediately. A shepherd might also have missing sheep. Bess had a missing cat, and there were no rats recently either, raising the possibility that rats were missing too. Meat was not coming in, so the butcher was serving new mushroom burgers. There was also a woman from out of town looking for her husband, Malcolm Donovan, who had come from Albec for work and had been seen putting up fences at a farm. Malcolm had a birthmark on the back of his right hand. -Everchurch had built a hostel the previous summer to house homeless people, but it had not been enough for that purpose and was also being let out, angering the inns. The Earl was a rough-looking half-orc dressed in black clothing covered with bird or goose motifs. Funds from the hostel were apparently going into an anti-tax system. A woman who applied for the poverty tax was told she was eligible and slid 2 gp across for the anti-tax. The census was due in spring and charged 3 cp per number, payable in the morning, with a note to ask the half-elf. +Everchard had built a hostel the previous summer to house homeless people, but it had not been enough for that purpose and was also being let out, angering the inns. The Earl was a rough-looking half-orc dressed in black clothing covered with bird or goose motifs. Funds from the hostel were apparently going into an anti-tax system. A woman who applied for the poverty tax was told she was eligible and slid 2 gp across for the anti-tax. The census was due in spring and charged 3 cp per number, payable in the morning, with a note to ask the half-elf. The town insisted there was no trouble, but several details contradicted that. Bushhunter, a registered mercenary known for tubes and pipes, had come to town two weeks earlier. The winter apple trees had also started fruiting about two weeks earlier. The last Third Moon had been one week earlier. Invar had delivered weapons, but the militia seemed to have almost vanished. An order had been placed a few months earlier for twenty weapons and ten armour, yet only about five militia remained. People said the Earl was downsizing and could not remember the old militia properly. @@ -34,7 +34,7 @@ The party took Malcolm to the jail. A deputy went to fetch Sheriff Jeremia, who # People, Factions, and Places Mentioned -Everchurch/Everchard, the Cider Inn Cider, the cider breweries, the woodland tours, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bushhunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel/Garadwal, Brutor Ruby Eye, the Prison of the Sands, and the unidentified fifth human warrior were all established or referenced. +Everchard, the Cider Inn Cider, the cider breweries, the woodland tours, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bushhunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel/Garadwal, Brutor Ruby Eye, the Prison of the Sands, and the unidentified fifth human warrior were all established or referenced. # Items, Rewards, and Resources diff --git a/data/5-retrospective/day-01.txt b/data/5-retrospective/day-01.txt index aa1f4fa..8efd9d3 100644 --- a/data/5-retrospective/day-01.txt +++ b/data/5-retrospective/day-01.txt @@ -1,5 +1,5 @@ Retrospective Context: day-01 -Later notes on page 4 establish that Everchurch/Everchard has a brewery among the orchards, observed as the party travelled to Thornhollows Farm. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. +Later notes on page 4 establish that Everchard has a brewery among the orchards, observed as the party travelled to Thornhollows Farm. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. Source: data/2-pages/4.txt Retrospective Context: day-01 diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index b4c0a83..bb85c9f 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -43,7 +43,7 @@ sources: # Aliases and Variant Spellings - [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Garadwel, Garaduel [uncertain automaton spelling], Guradwal, Gardwell, Terror of the Sands, nightmare of the darkness. -- [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. +- [Everchard](places/everchard.md): Everchard. - [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent], Brotor / Brutor [context: void gift and Brotor's eye uncertain]. - [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. diff --git a/data/6-wiki/concepts/everchard-memory-tampering.md b/data/6-wiki/concepts/everchard-memory-tampering.md index ce021ce..6a11c5f 100644 --- a/data/6-wiki/concepts/everchard-memory-tampering.md +++ b/data/6-wiki/concepts/everchard-memory-tampering.md @@ -40,7 +40,7 @@ Everchard memory tampering rewrote people, places, records, and absences into co ## Related Entries -- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Everchard](../places/everchard.md) - [Hostel](../places/hostel.md) - [Militia](../factions/militia.md) - [The Chorus](../people/the-chorus.md) diff --git a/data/6-wiki/factions/militia.md b/data/6-wiki/factions/militia.md index d8bb10e..e847d9f 100644 --- a/data/6-wiki/factions/militia.md +++ b/data/6-wiki/factions/militia.md @@ -39,7 +39,7 @@ The Everchard militia was mostly vanished, forgotten, controlled, or fraudulentl ## Related Entries -- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Everchard](../places/everchard.md) - [Hostel](../places/hostel.md) - [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) - [Barrier](../concepts/barrier.md) diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index bf9d8dd..de427cf 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -123,7 +123,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na ## Places -- [Everchurch/Everchard](places/everchurch-everchard.md) +- [Everchard](places/everchard.md) - [Hostel](places/hostel.md) - [Barrier Observatory](places/barrier-observatory.md) - [Seaward](places/seaward.md) diff --git a/data/6-wiki/people/bushhunter-bughunter.md b/data/6-wiki/people/bushhunter-bughunter.md index 15453e0..3e36029 100644 --- a/data/6-wiki/people/bushhunter-bughunter.md +++ b/data/6-wiki/people/bushhunter-bughunter.md @@ -32,7 +32,7 @@ Bushhunter or Bughunter is a registered mercenary in Everchard known for tubes, ## Related Entries -- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Everchard](../places/everchard.md) - [The Chorus](the-chorus.md) - [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) diff --git a/data/6-wiki/people/malcolm-donovan.md b/data/6-wiki/people/malcolm-donovan.md index 3402566..31fb661 100644 --- a/data/6-wiki/people/malcolm-donovan.md +++ b/data/6-wiki/people/malcolm-donovan.md @@ -35,7 +35,7 @@ Malcolm Donovan was a man from Albec whose wife came looking for him and whose a - [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) - [Garadwal](garadwal.md) -- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Everchard](../places/everchard.md) ## Open Questions diff --git a/data/6-wiki/people/morgana.md b/data/6-wiki/people/morgana.md index eabab4e..184ddc6 100644 --- a/data/6-wiki/people/morgana.md +++ b/data/6-wiki/people/morgana.md @@ -32,7 +32,7 @@ Morgana is a human sent by The Chorus because the visions went better when the p ## Related Entries - [The Chorus](the-chorus.md) -- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Everchard](../places/everchard.md) - [Dunnersend](../places/dunnersend.md) - [Lady Thorpe](lady-thorpe.md) - [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) diff --git a/data/6-wiki/people/thornhollows-family.md b/data/6-wiki/people/thornhollows-family.md index bcb23ca..ff83b6e 100644 --- a/data/6-wiki/people/thornhollows-family.md +++ b/data/6-wiki/people/thornhollows-family.md @@ -43,7 +43,7 @@ The Thornhollows family is central to the first Everchard mystery: missing pigs, ## Related Entries -- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Everchard](../places/everchard.md) - [The Chorus](the-chorus.md) - [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) diff --git a/data/6-wiki/places/everchurch-everchard.md b/data/6-wiki/places/everchard.md similarity index 84% rename from data/6-wiki/places/everchurch-everchard.md rename to data/6-wiki/places/everchard.md index 002306a..e2b9a8d 100644 --- a/data/6-wiki/places/everchurch-everchard.md +++ b/data/6-wiki/places/everchard.md @@ -1,8 +1,7 @@ --- -title: Everchurch/Everchard +title: Everchard type: place aliases: - - Everchurch - Everchard first_seen: day-01 last_updated: day-11 @@ -16,11 +15,11 @@ sources: - data/4-days-cleaned/day-11.md --- -# Everchurch/Everchard +# Everchard ## Summary -Everchurch, later also called Everchard, is a swampy orchard town where the campaign's first major memory-tampering crisis unfolded. +Everchard is a swampy orchard town where the campaign's first major memory-tampering crisis unfolded. ## Known Details @@ -32,7 +31,7 @@ Everchurch, later also called Everchard, is a swampy orchard town where the camp ## Timeline -- `day-01`: The party begins in Everchurch/Everchard and uncovers memory instability. +- `day-01`: The party begins in Everchard and uncovers memory instability. - `day-03`: The crisis expands to wagons, transformed victims, and militia involvement. - `day-04`: The town begins coordinated recovery. - `day-09`: Everchard remains panicky after restored memories. diff --git a/data/6-wiki/places/hostel.md b/data/6-wiki/places/hostel.md index fd7cec7..c134e8e 100644 --- a/data/6-wiki/places/hostel.md +++ b/data/6-wiki/places/hostel.md @@ -16,7 +16,7 @@ sources: ## Summary -The Hostel in [Everchurch/Everchard](everchurch-everchard.md) was nominally built for homeless people but became central to abductions, memory rewriting, anti-tax funding, and transformed victims. +The Hostel in [Everchard](everchard.md) was nominally built for homeless people but became central to abductions, memory rewriting, anti-tax funding, and transformed victims. ## Known Details @@ -36,7 +36,7 @@ The Hostel in [Everchurch/Everchard](everchurch-everchard.md) was nominally buil - [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) - [Militia](../factions/militia.md) -- [Everchurch/Everchard](everchurch-everchard.md) +- [Everchard](everchard.md) ## Open Questions diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index a89728e..8456a0c 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -52,15 +52,15 @@ sources: # Sources -- `data/4-days-cleaned/day-01.md`: [Everchurch/Everchard](places/everchurch-everchard.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), [Garadwal](people/garadwal.md), [Malcolm Donovan](people/malcolm-donovan.md), [The Thornhollows Family](people/thornhollows-family.md), [Militia](factions/militia.md). +- `data/4-days-cleaned/day-01.md`: [Everchard](places/everchard.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), [Garadwal](people/garadwal.md), [Malcolm Donovan](people/malcolm-donovan.md), [The Thornhollows Family](people/thornhollows-family.md), [Militia](factions/militia.md). - `data/4-days-cleaned/day-02.md`: [The Thornhollows Family](people/thornhollows-family.md), [The Chorus](people/the-chorus.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). - `data/4-days-cleaned/day-03.md`: [Hostel](places/hostel.md), [Militia](factions/militia.md), [Bushhunter/Bughunter](people/bushhunter-bughunter.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). -- `data/4-days-cleaned/day-04.md`: [Everchurch/Everchard](places/everchurch-everchard.md), [Hostel](places/hostel.md), [Militia](factions/militia.md). +- `data/4-days-cleaned/day-04.md`: [Everchard](places/everchard.md), [Hostel](places/hostel.md), [Militia](factions/militia.md). - `data/4-days-cleaned/day-05.md`: [Barrier Observatory](places/barrier-observatory.md), [Barrier](concepts/barrier.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md). - `data/4-days-cleaned/day-06.md`: [Joy](people/joy.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier Observatory](places/barrier-observatory.md). -- `data/4-days-cleaned/day-07.md`: [Militia](factions/militia.md), [Barrier](concepts/barrier.md), [Everchurch/Everchard](places/everchurch-everchard.md). +- `data/4-days-cleaned/day-07.md`: [Militia](factions/militia.md), [Barrier](concepts/barrier.md), [Everchard](places/everchard.md). - `data/4-days-cleaned/day-08.md`: skipped because no cleaned day file exists. -- `data/4-days-cleaned/day-09.md`: [Everchurch/Everchard](places/everchurch-everchard.md), [Barrier Observatory](places/barrier-observatory.md). +- `data/4-days-cleaned/day-09.md`: [Everchard](places/everchard.md), [Barrier Observatory](places/barrier-observatory.md). - `data/4-days-cleaned/day-10.md`: [Timeline](timeline.md), [Open Threads](open-threads.md). - `data/4-days-cleaned/day-11.md`: [Seaward](places/seaward.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Barrier](concepts/barrier.md). - `data/4-days-cleaned/day-12.md`: [Seaward](places/seaward.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 33b62c7..b67d40a 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -49,7 +49,7 @@ sources: # Timeline -- `day-01`: The party begins in [Everchurch/Everchard](places/everchurch-everchard.md), investigates missing animals and people, discovers [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), and links altered Malcolm Donovan to [Garadwal](people/garadwal.md). +- `day-01`: The party begins in [Everchard](places/everchard.md), investigates missing animals and people, discovers [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), and links altered Malcolm Donovan to [Garadwal](people/garadwal.md). - `day-02`: The Thornhollows farm investigation expands into giant frogs, changed records, missing pigs, and links between Sarah Thornhollows and [The Chorus](people/the-chorus.md). - `day-03`: Wagon victims, animal-human beasts, militia involvement, and the [Hostel](places/hostel.md) reveal organized abductions and transformation work. - `day-04`: The party recovers townsfolk, confronts militia ledger fraud and the Earl's missing documents, and stabilizes Everchard enough for outside contact. -
a0f3035Fix Shaun spelling in day 1 notesby Laura Mostert
data/2-pages/1.txt | 2 +- data/3-days/day-01.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)Show diff
diff --git a/data/2-pages/1.txt b/data/2-pages/1.txt index d0400c3..7285c44 100644 --- a/data/2-pages/1.txt +++ b/data/2-pages/1.txt @@ -28,7 +28,7 @@ Bas - Invar had not got the plate Laura - Dirk politely -Shawn - Geldrin (the mighty) +Shaun - Geldrin (the mighty) gnome wild brown hair glasses with no glass diff --git a/data/3-days/day-01.md b/data/3-days/day-01.md index addba60..c62f7e7 100644 --- a/data/3-days/day-01.md +++ b/data/3-days/day-01.md @@ -40,7 +40,7 @@ Bas - Invar had not got the plate Laura - Dirk politely -Shawn - Geldrin (the mighty) +Shaun - Geldrin (the mighty) gnome wild brown hair glasses with no glass -
dc58a98Final pagesby Bas Mostert
data/2-pages/318.txt | 17 +++++++++++++++++ data/2-pages/319.txt | 23 +++++++++++++++++++++++ data/2-pages/320.txt | 17 +++++++++++++++++ data/2-pages/321.txt | 20 ++++++++++++++++++++ data/2-pages/322.txt | 21 +++++++++++++++++++++ data/2-pages/323.txt | 17 +++++++++++++++++ data/2-pages/324.txt | 13 +++++++++++++ data/2-pages/325.txt | 17 +++++++++++++++++ data/2-pages/326.txt | 17 +++++++++++++++++ data/2-pages/327.txt | 15 +++++++++++++++ data/2-pages/328.txt | 15 +++++++++++++++ data/2-pages/329.txt | 17 +++++++++++++++++ data/2-pages/330.txt | 19 +++++++++++++++++++ data/2-pages/331.txt | 7 +++++++ 14 files changed, 235 insertions(+)Show diff
diff --git a/data/2-pages/318.txt b/data/2-pages/318.txt new file mode 100644 index 0000000..a2aae96 --- /dev/null +++ b/data/2-pages/318.txt @@ -0,0 +1,17 @@ +Page: 318 +Source: data/1-source/IMG_9991.jpg + +Transcription: +Annadressdey speaks of her sacrifice against a massive white dragon threat. It was a True sacrifice and imbued her powers into all white dragon descendants, including Lefang. + +Third level. Carpet has three blue dragons, serpent-like. Doors all magically locked. Geldrin taps the Rubyeye on the door and it opens. + +Glass-smashing noise and a lady [uncertain: Hareem/Hareen style] in the middle of the room calls us intruders. Transforms into a blue dragon. + +Knock it unconscious and find something in its ear. It wakes up when I try to get it. + +Invar manages to blow up a bookcase with a trap. Find a mind worm. Appears to have been dead for a while. Not sure if it was causing memory loss. + +Morning Dew comes in and says she was a teacher here. + +Put the fire out and can hear one outside of the room: fire elementals. "Disturbance," "here," "fire." They try the door and hear "Care," "Traps." Lock the door. They say, "Need to report back." Other one says, "Come back later." diff --git a/data/2-pages/319.txt b/data/2-pages/319.txt new file mode 100644 index 0000000..47be57a --- /dev/null +++ b/data/2-pages/319.txt @@ -0,0 +1,23 @@ +Page: 319 +Source: data/1-source/IMG_9992.jpg + +Transcription: +Morning Dew tries to clear the teacher's mind and says it is addled. + +Bookshelves are all magically trapped with wards to Counterspell any spells against it. + +Greater Restoration cast on the teacher and fixes as much as possible, but she may attack us still. + +Sounds like a Magister smoke monster? Merocok's doing? + +Bynx tries to clear her mind. Eyes glare over. Merocok comes through and tells us to leave his affairs alone. + +Feed her a goodberry, and she wakes up. + +The man with the horns was here. Ensi came for knowledge from her people. Not happy her memory isn't what it should be. Need to warn people the fire elementals are coming. + +Scared that she was in a "glass coffin." It's about 1,000 years later than she thinks. Struggling to piece it together. Tell her about the Dome. + +Merocok = Sophyxx, split into a light and dark half. + +Worried that all the knowledge would be bad for us. diff --git a/data/2-pages/320.txt b/data/2-pages/320.txt new file mode 100644 index 0000000..ff00ad4 --- /dev/null +++ b/data/2-pages/320.txt @@ -0,0 +1,17 @@ +Page: 320 +Source: data/1-source/IMG_9993.jpg + +Transcription: +Blaze brings back Bish and Bosh, promised to fix them. Invar [uncertain: had?] to check them. + +Normal blackjacks apart, but together get abilities: Bish - stagger, hit 21 or more. Bosh - once per day Bash target, 1d6 bludgeoning. Take them. + +Go upstairs. Three tabaxi on the rug, all have crowns. One looks similar to the teacher we broke out of the statues. Floor is for the places of office. + +Head all the way to the top. Second-to-last floor has a tapestry/carpet of all races. + +Top floor filled with smoke, magical, kills everything, and find Cardunald. She shut herself down so that smoke spider couldn't control her. Believes Ensi has something to do with her being captured. + +Go to the library with Cardunald. Dragon teacher tells her she's not welcome, as the last time trouble happened. + +Geldrin tells her lots of information. She chose to shut herself down rather than let Merocok take over. diff --git a/data/2-pages/321.txt b/data/2-pages/321.txt new file mode 100644 index 0000000..beb928f --- /dev/null +++ b/data/2-pages/321.txt @@ -0,0 +1,20 @@ +Page: 321 +Source: data/1-source/IMG_9994.jpg + +Transcription: +Teacher promises to make Geldrin a spellbook and he needs to come back tomorrow. Dirk asks what happened to Merocok. + +Created the dome to protect the people. She believes she is telling the truth and didn't realise that Browning's plan was to become a god. + +Dome needs to come down. Avaline was the priest and why she was trapped outside. + +Proposed to bring the Barrier down from the control room. Need to take out Wrath to free Rubyeye. + +Tell her, "I'm Ellaina Marthall!" Morgana sees a naked woman reflected in Invar's armour, and we stop talking about Marthall. She then seems nervous. + +Need to make plans and set them in motion: +- Deal with Envy; remove her influence on Mama Marthall. +- Rubyeye; save from Wrath and current endless-loop prison. +- Free Mama Marthall, revealing Ellaina is her daughter. +- Cardunald to bring the dome down using the controls at Grand Towers and leave prisoners still imprisoned. +- Fix Ensi: nice to have, not must have. diff --git a/data/2-pages/322.txt b/data/2-pages/322.txt new file mode 100644 index 0000000..3714ede --- /dev/null +++ b/data/2-pages/322.txt @@ -0,0 +1,21 @@ +Page: 322 +Source: data/1-source/IMG_9995.jpg + +Transcription: +Invar establishes Mama Marthall is buried very far underground, can possibly get to her via the broom. + +Mama Marthall is imprisoned with Wrath's. + +Spell used a silver dragon statue to create the spell. Saw one in the Elemental plane, also a green hazed one at Argentum's shrine in Marthall's lair. + +Enrol is alive. Dotharl brought him to life when he took the curse away. + +Need to see Tresmen's body. + +Door to the tower is the same as the other tower where it's dangerous to elementals. Geldrin changed the runes, so tries that on this door to only block fire. + +Similar layout to the other tower, however inlaid with iron. Floor is mosaic with eight dragons on the floor and two on the walls around two of the doors: five metallic on one side, five chromatic on the other side. + +This level was the forges: precious, metallic, military metal types. Invar tries to ask Stolchar if he can view the forges and is unable to speak to him. Decides to go look anyway. + +Precious: jewelry/cutlery and other items made with silver/gold, used to make dedication pieces to Stolchar. diff --git a/data/2-pages/323.txt b/data/2-pages/323.txt new file mode 100644 index 0000000..e2e351b --- /dev/null +++ b/data/2-pages/323.txt @@ -0,0 +1,17 @@ +Page: 323 +Source: data/1-source/IMG_9996.jpg + +Transcription: +Dotharl asks if "Walks with Morning Dew" remembers Squall. She does, and there's a tower for Squall, but it isn't visited. People seem to not return after going there. In their records he is god of weather, change, and loss, air god. + +Next floor: twelve dog-like creatures on the mosaic, arranged to be chasing each other. All on fire. Morning Dew doesn't know why they are there. Well-crafted doors. Masonry. Leather armour. + +Stolchar deals with all metals, i.e. leather but just metal [uncertain note]. + +Next floor: carpets. Groups of dwarfs, dark and pale skinned. Groups of gnomes, light/dark skinned. Groups of humans/tabaxi, glassware etc. Gnomes too. + +Think Dirk is a Thangalen. + +Morning Dew, Briarthorn, and Bynx head to the library to find books on Goliaths. + +Go to the final floor. Massive table. [uncertain: Sophy/Sophyx] carcass, legs not attached and against the wall, no head, arms not quite attached. Body seems to have been reshaped to be faceted. diff --git a/data/2-pages/324.txt b/data/2-pages/324.txt new file mode 100644 index 0000000..82b5ec6 --- /dev/null +++ b/data/2-pages/324.txt @@ -0,0 +1,13 @@ +Page: 324 +Source: data/1-source/IMG_9997.jpg + +Transcription: +Only other creature is a very pale-skinned and emaciated human, wearing a turban? Sat in a fancy chair that looks a bit worn. Alive but motionless in the corner. + +Valenth doesn't know who it is. Yes/no blinks. Not stuck, doesn't choose to be here, needs help, not to finish or do anything, doesn't need to drink or eat. Concentrating on a spell for a long time. It's dangerous if we break the spell. Shielding the creature. + +Geldrin establishes abjuration/conjuration. The reason the sultan can't get in. Valenth knows the sultan; one of the reasons the tabaxi had to leave. Very powerful spell, like the one to move Snow's room, as powerful as it. + +Not a follower of a god. Valenth thinks he's an elemental. Not fire. Valenth thinks darkness. Doesn't dislike the sultan. Possible bad consequences. Not stopping all elements. Knows about Tresmen and knew him personally. Some relationship to Valenthilde. + +Geldrin checks out Tresmen. Disassembled, missing an arm and probably more. Torso being faceted reminds Geldrin of the crystals of the gravel towers, but it reflects light in instead of out. diff --git a/data/2-pages/325.txt b/data/2-pages/325.txt new file mode 100644 index 0000000..1c0ecf0 --- /dev/null +++ b/data/2-pages/325.txt @@ -0,0 +1,17 @@ +Page: 325 +Source: data/1-source/IMG_9998.jpg + +Transcription: +Decide to go to Enni's lab. Teleporting outside the dome and going through using Tresmun's skull. Then agree to Tradesmalls. Dotharl stays behind; get a sending stone pair and give him one. + +Arrive on target, go through Barrier. Bring Valenth, Briarthorn, and Bynx with us. Briarthorn walks off towards Everchard. + +Transport via plants to get to Tradesmalls. See some large greenish copper dragonborns around with the Goliaths and Dunnens. + +Go to Dikk's family tent. His sister is there and welcomes Dikk and immediately looks for Bynx. + +Lots of new structures around looking to belong to the banished. Head to main tent; one of each guarding the tent: dragonborn, Dunnen, Goliath. + +Welcomed in to see the council. Everyone we expect to see and more. Knit's Nest, elder cat. Dark-skinned man with shining teeth and red buckles, Verdegrim. + +Discussions have been going well to integrate together as a cosmopolitan city. Tell them what has been going on. diff --git a/data/2-pages/326.txt b/data/2-pages/326.txt new file mode 100644 index 0000000..c2f6398 --- /dev/null +++ b/data/2-pages/326.txt @@ -0,0 +1,17 @@ +Page: 326 +Source: data/1-source/IMG_9999.jpg + +Transcription: +Hathwall is well and been successful. + +Using Errol's to communicate, found another one to add to the collection. + +Dunnens: Bone has returned, paid his penance, accompanied by Garadwal. Vulture people integrating well into the city. If going well after three years, they will be accepted as part of the Dunnens. + +Get a sending stone for Dikk's dad. + +Teleport to Hathwall's lab. Door out of teleport room is blocked. Hear running down the corridor, running away. Door towards the caved-in area is open and planks where they went. + +Head to the urn room. Door is open. Shuffling coming from the room. Pile of fabric in the corner: young 18-year-old woman, commoner clothes. I stealth over to get the dragon statue and get it without disturbing her. + +My room: guy curled up in my bed asleep with red hair. Go into the room and wake him up, Jack. One of the dragons from Snow Sorrow, about 11 of them. diff --git a/data/2-pages/327.txt b/data/2-pages/327.txt new file mode 100644 index 0000000..d85c00e --- /dev/null +++ b/data/2-pages/327.txt @@ -0,0 +1,15 @@ +Page: 327 +Source: data/1-source/IMG_10001.jpg + +Transcription: +Two people round the corner come to investigate what is going on. Old lady: Mother Goose. Young man: Hansel. + +They are going to stay here for a while. Rumoured Hathwall slept with one of the white princes. Geldikody's in Argentum's shrine. + +Geldrin re-activated the gnome suit of armour. His voice is recognized as a founder. Elite clause and permitted to use armour. Armour has 10 charges, requires recharging. Activation takes one charge. + +Back to Dotharl in Brass City. Lies in the Morning Dew takes him to see Squall. She refuses to go there and he goes alone but can't open the lock. + +Heads back to Stolcher to see if he can find anything to use. Doesn't work. Goes to find an ambassador we stayed with when we first came to the city. He goes with Dotharl and manages to open the door. He leaves Dotharl and Dotharl tries to go in the room. + +Breezy room with chalk drawings on the floor. Vulture man with six limbs in a swirling sandstorm. Living whirlwind. Non-bipedal eagle. diff --git a/data/2-pages/328.txt b/data/2-pages/328.txt new file mode 100644 index 0000000..276f1ec --- /dev/null +++ b/data/2-pages/328.txt @@ -0,0 +1,15 @@ +Page: 328 +Source: data/1-source/IMG_10002.jpg + +Transcription: +On the floor: copper coin, sock, ripped-in-half basket, small brown bag, shoelace, lump of coal. Unable to link the items together. + +Vulture room: hot as windy but feels strangely [uncertain: familiar/safely]. Pictures; look in them: burned down house; library; field of white flowers. + +Next room. Koi pond, endless depth, orange fish swimming around. Dotharl makes ripples in the pond and sees a girl with pigtails in front of an abandoned building. Goes upstairs. + +Floor has people of the world: pigeon arabica, gnome, elf. Elf looks gaunt, similar to the elf who met us at Grand Towers last time we were here. + +Goes to elf door first. Very different feel to the room: plush and decadent, like a dressing room. Lots of skimpy outfits on the clothes rail. + +Pigeon door: stark contrast to the previous room. Abandoned building, dock-front warehouse. Pile of rags with a stuffed silver dragon on it. Dotharl goes over to it; bustling seafront out of the window, Freeport. diff --git a/data/2-pages/329.txt b/data/2-pages/329.txt new file mode 100644 index 0000000..16c3a40 --- /dev/null +++ b/data/2-pages/329.txt @@ -0,0 +1,17 @@ +Page: 329 +Source: data/1-source/IMG_10003.jpg + +Transcription: +Two burly men guarding the door. Door is still visible. Picks up the toy, well loved and used, and also sees a tissue in the rags with dried blood on it. + +Gnome last room: outside, trees and grass. People in a group wearing black around a gravestone. Dwarf / silver dragonborn. + +Third floor: three closed doors barred on this side. + +Door up to the minorette [uncertain: minorette], very decorated door with a very decorated compass rose showing weather against the compass points. Glass ceiling, can't see through it. Wooden chair is the only thing in the room. + +Very elderly man on the chair. He asks if it's Errol. Dotharl asks who he is and walks over to him, but the door starts to disappear. Doesn't have a choice but to be here. + +See an eye appear in the glass dome. It peers down, looks like a dragon eye. Feels like it's the white dragon from dream. + +Man is here because Dotharl expected to see him. Says he isn't like his father, he's different. The man likes change and being kept feels like prison as there isn't any change. The man says we all need to make a decision about our forms, asks what Dotharl came here for. Dotharl says he's here to learn more as he feels lost. diff --git a/data/2-pages/330.txt b/data/2-pages/330.txt new file mode 100644 index 0000000..9e841c2 --- /dev/null +++ b/data/2-pages/330.txt @@ -0,0 +1,19 @@ +Page: 330 +Source: data/1-source/IMG_10004.jpg + +Transcription: +We will come across him later if we continue down the path we are on. We have earned favour amongst his kind. Another dragon eye comes into view and he leaves the room and comes into the room. + +We are sleeping in... + +Realises Dotharl has a business card: J & G Fishmonger & Sons, 147 Mariners Row, Freeport. + +Tells us he spoke with his grandfather. + +Elliana sleeps really well in my childhood bed but gets no memories back. + +Go to Brass City via the trees then teleport there. Retrieve Geldrin's spellbook and maybe an item from Bellburn so we can teleport there to find out where Enni is to kill her. + +Arrive safely. Collect Geldrin's spellbook from the librarian. Wants to know if there are any other blue dragons around. Let them know she is here. + +Go to see the jewelcrafter, who tells us there are Bellburners in the Earthen District. Wander around town asking where they are as we don't believe him. Find a few tents with slight-skinned Goliaths around. Looks like a temporary camp. diff --git a/data/2-pages/331.txt b/data/2-pages/331.txt new file mode 100644 index 0000000..9a3a134 --- /dev/null +++ b/data/2-pages/331.txt @@ -0,0 +1,7 @@ +Page: 331 +Source: data/1-source/IMG_10005.jpg + +Transcription: +Talk to them about trading something to get to Bellburn. Realise they can tell us where she lives: Jade Mines, Lost Vein. Be wary; a lot of llamas around. + +Trade a pan with him to teleport to Bellburn and then thence to Lost Vein. We teleport 150 miles off target and back in the exact place. Try again, 94 miles off target, in the same place we went with Ruby Eye. Add a penny to the pan and we get to Bellburn. -
cfdaae0Moreby Bas Mostert
data/2-pages/288.txt | 19 + data/2-pages/289.txt | 21 + data/2-pages/290.txt | 17 + data/2-pages/291.txt | 19 + data/2-pages/292.txt | 19 + data/2-pages/293.txt | 17 + data/2-pages/294.txt | 17 + data/2-pages/295.txt | 17 + data/2-pages/296.txt | 17 + data/2-pages/297.txt | 15 + data/2-pages/298.txt | 21 + data/2-pages/299.txt | 15 + data/2-pages/300.txt | 17 + data/2-pages/301.txt | 17 + data/2-pages/302.txt | 17 + data/2-pages/303.txt | 17 + data/2-pages/304.txt | 17 + data/2-pages/305.txt | 17 + data/2-pages/306.txt | 17 + data/2-pages/307.txt | 19 + data/2-pages/308.txt | 15 + data/2-pages/309.txt | 17 + data/2-pages/310.txt | 21 + data/2-pages/311.txt | 13 + data/2-pages/312.txt | 15 + data/2-pages/313.txt | 17 + data/2-pages/314.txt | 19 + data/2-pages/315.txt | 17 + data/2-pages/316.txt | 21 + data/2-pages/317.txt | 17 + data/3-days/day-57.md | 706 +++++++++++++++++++++ data/4-days-cleaned/day-57.md | 177 ++++++ data/6-wiki/aliases.md | 13 + data/6-wiki/clues/day-57-coverage-audit.md | 40 ++ data/6-wiki/clues/days-53-56-coverage-audit.md | 2 +- .../clues/known-passwords-and-inscriptions.md | 12 +- .../concepts/gods-bargains-behind-the-barrier.md | 8 +- data/6-wiki/factions/brass-city-council.md | 40 ++ data/6-wiki/index.md | 18 + data/6-wiki/inventories/party-inventory.md | 14 +- data/6-wiki/inventories/party-treasury.md | 7 +- data/6-wiki/items/minor-items-day-57.md | 40 ++ data/6-wiki/items/shield-crystals.md | 9 +- .../items/tresmons-body-and-statue-artifacts.md | 48 ++ data/6-wiki/open-threads.md | 9 +- data/6-wiki/people/attabre-altabre.md | 10 +- data/6-wiki/people/azar-nuri.md | 38 ++ data/6-wiki/people/elliana-harthall.md | 49 ++ data/6-wiki/people/envoi.md | 7 +- data/6-wiki/people/globule.md | 38 ++ data/6-wiki/people/hydran.md | 43 ++ data/6-wiki/people/icefang.md | 8 +- data/6-wiki/people/igraine.md | 44 ++ data/6-wiki/people/kasha.md | 39 ++ data/6-wiki/people/lord-briarthorn.md | 35 + data/6-wiki/people/minor-figures-day-57.md | 39 ++ .../people/myriad-lord-of-the-high-waters.md | 41 ++ data/6-wiki/people/queen-mooncoral.md | 38 ++ data/6-wiki/people/status.md | 12 +- data/6-wiki/people/throngore.md | 45 ++ data/6-wiki/places/brass-city.md | 50 ++ data/6-wiki/places/minor-places-day-57.md | 28 + data/6-wiki/sources.md | 2 + data/6-wiki/timeline.md | 2 + 64 files changed, 2224 insertions(+), 11 deletions(-)Show diff
diff --git a/data/2-pages/288.txt b/data/2-pages/288.txt new file mode 100644 index 0000000..47a33e0 --- /dev/null +++ b/data/2-pages/288.txt @@ -0,0 +1,19 @@ +Page: 288 +Source: data/1-source/IMG_9961.jpg + +Transcription: +It has to stop now. Then we see a silver scale in dirt and a door appears. + +Goliath throne room: thriving city, decadent. Lion-headdress rockmen flank the throne. Someone who looks like Dirk with his sword is made of stone. Lots of pictures: one is a white dragon stood by a river, another of us as we are now, another of a young beautiful sphynx. + +He's got the sword we need, but he has just got it back from a ghost. Wants proof that we are us and how we killed Perodita. Give the granite and vision of Justiciars moving rocks off a dragon's body. + +Tells us to pop back to see the fiery beard chap, Huntmaster Throne. Stone Dirk brought the dome down. + +Four different doorways. Don't pick the one with the moon on it. Thinks they picked the one with the dragon on it. Go through the door behind the throne. + +Four doors: Moon, Dragon Head, Arching Wave, Butterfly. Very well carved. Bell with chain. + +We open the moon door, as the last trinket we have left is the moon crystal. Seems to be Craters Edge through the door. Dirk starts to hear garbled conversations. + +Open dragon door: snow, pine trees, figure in the distance. Strange sense of dread. Remember flying/crashing through pine needles and crashing to the ground, pine needles scratching my scales. diff --git a/data/2-pages/289.txt b/data/2-pages/289.txt new file mode 100644 index 0000000..57a3b7b --- /dev/null +++ b/data/2-pages/289.txt @@ -0,0 +1,21 @@ +Page: 289 +Source: data/1-source/IMG_9962.jpg + +Transcription: +Wave door: water comes through the door. Close it, but a tiny arm bone makes it through the door. + +Sword is through all three doors, but Haze can't smell it when the doors are closed. + +Butterfly door: swampy air, Everchard, smell of Morgana's house, small shed. Drops from the door: small piece of black thread, and the tree is much smaller. Morgana's house looks newer, years before she got the house; thinks it is about 20 years. Send Betty to look in the house. Someone is in there. Magpie stops Betty from looking further. + +It's a younger Chorus. She "made" a baby that was given away. It already had a name. Haze says they all seem a little different from the real place. + +Reopen moon door: black sky, crystal surface changed to the moon? + +Reopen: Brass City, massive stone table, purple rock men with arm and head missing. + +Dragon door: still Pinesprings but different place. Green/yellow flash from the trees and some chatter, then crying: baby dragonborn. + +Geldrin goes through the moon door. Tresmon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. + +Dragon room / redbeard figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. diff --git a/data/2-pages/290.txt b/data/2-pages/290.txt new file mode 100644 index 0000000..126d197 --- /dev/null +++ b/data/2-pages/290.txt @@ -0,0 +1,17 @@ +Page: 290 +Source: data/1-source/IMG_9963.jpg + +Transcription: +Geldrin: salamander, expecting a tabaxi, facets that gleam in the sun. Assumes Geldrin is meant to be here, trying to get the facets so that the light goes in but not out. + +Geldrin finds a spot on the body the shard has come from and puts it back. + +All four doors open; no snow or water comes through the door. + +Andy, the moment after the fight with the Mother, sees a woman running, dark-skinned, but the tree behind it too. Then a stone door appears and he charges through the door. + +Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquarius. Keepers of the Pact always welcome here. Lord Hydram said we could come. + +Doors are memories of what we have promised or have done. Seems like they are distractions. + +Dragon door has the smell of the sword. Through the door is a town on a plateau, Provinta. Familiar knock, broom transport, from the town. Came out four doors down from my house, but it is 20 years ago. Haze takes us towards my house and the same baby crying. My mum sees a box from Everchard. They were very happy and take it in. Morgana says the Chorus made me. diff --git a/data/2-pages/291.txt b/data/2-pages/291.txt new file mode 100644 index 0000000..f73962d --- /dev/null +++ b/data/2-pages/291.txt @@ -0,0 +1,19 @@ +Page: 291 +Source: data/1-source/IMG_9964.jpg + +Transcription: +Reaction, 1 AM, Elluin Hartwall! + +Sword is in my house. It was in the box. Go to the house and try to get the sword. Got the box and there is a sword in the box with some cloths. Morgana finds a small piece of black thread. Chorus's eyes and mouth were sewn shut with black thread. + +Go to town square. Poster about Founder's Day. Picture of Bleakstorm and a Geldrin look-alike, but it wasn't Geldrin. + +The poster was sent via a sending stone. Date 17th March 991. Founding Day is not this date. + +Bleakstorm is in the town hall. Go to him. On the desk is a freshly carved ice sculpture of an auroch. + +Can take us back to Brass City, but wants something from us: personal favour, to save him, just him. First man, and wants to know if Icefang's spirit is still here. It is, as he died in the dome. Wants us to free his spirit. + +Claps his hands and we go back to Brass City, in the plush throne room. But only three pictures on the walls now. + +Go to put the sword back. As it goes into the statue it fixes the cracks. diff --git a/data/2-pages/292.txt b/data/2-pages/292.txt new file mode 100644 index 0000000..9e44f42 --- /dev/null +++ b/data/2-pages/292.txt @@ -0,0 +1,19 @@ +Page: 292 +Source: data/1-source/IMG_9965.jpg + +Transcription: +Bynx calls upon Trixus to ask about the statues, as not sure why we are trying to fix them. They are "the Council." + +Necklace next. Haze takes us back to the throne room. Air picture. + +Dothurl looks different, feels stronger. Haze takes us back into the building down to the room where the statues are in the normal plane. + +Through door: jewelry box. Smells like the right one, but it does also smell like it's further in the room through the other door. + +In the room is a tabaxi playing a piano, wearing a necklace, "Drinker beads of wine." Pickpocket the necklace from her. She takes a five-minute hourglass out and turns it over. + +Go through door into a theatre room. Find a third necklace, all fake ones. Haze can't find the necklace anymore. + +Ruby eyes somewhat glittering, "useless presents." Find the necklace on a coat peg. Dispel the invisibility and make it a real necklace instead of the stone one. + +Checklist box: Bowl checked. Tongs. Necklace checked. Coat. Dragonborn tail crouched fake. Sword checked. diff --git a/data/2-pages/293.txt b/data/2-pages/293.txt new file mode 100644 index 0000000..e5df11c --- /dev/null +++ b/data/2-pages/293.txt @@ -0,0 +1,17 @@ +Page: 293 +Source: data/1-source/IMG_9966.jpg + +Transcription: +Back to the throne room. Other door is a broom cupboard with a picture of Morgana looking bored and confused. + +Ask to leave back to the statue room. Andy asks to go home and he does. + +Put the necklace back on and it melds to the statue but stays as a necklace. + +Go for the offering bowl next. Back to the throne room. Only two paintings left. Room changed slightly; candelabra now on the ceiling. + +Geldrin disappears after touching the painting. Ends up in my waterskin, shrunken. Use the school biggening juice to get back to normal size. + +Dothurl activates the painting and we go in. Replica of the throne room, but there are paintings on the wall: vortex/whirlpool; calm with tropical fish under tropical sea; icy swamp lake; calm still lake. + +Two doors. Whirlpool starts swirling and Dirk speaks to Globule in Aquan. He was trapped by Noxia as he works for "Him". When asked who him is, he said, "Him, Hydram, then Noxia." "Him" is forgotten more than lost. He has no legs and no arms. diff --git a/data/2-pages/294.txt b/data/2-pages/294.txt new file mode 100644 index 0000000..55bbc6c --- /dev/null +++ b/data/2-pages/294.txt @@ -0,0 +1,17 @@ +Page: 294 +Source: data/1-source/IMG_9967.jpg + +Transcription: +Open the door behind the throne. Two "people" behind it with jellyfish for heads but normal arms, facing the door. + +We cannot enter. Bowl is theirs and we cannot have it. Death warrant against us from Noxia. We cannot leave this domain. + +Put my arm through the door and they attack. Kill them. Dirk tries to fit in the painting lake. + +Throne for a sphynx, mother-of-pearl, coral, etc. + +Put head in tropical fish painting. Large closed clam shell to the left. Shipwreck to the right. Try to get the clam shell, doesn't, so try to push it out of the painting. + +Clam says whirlpool bad prisoner. Friend says he can't help as he lives in the icy painting. Fish man has the key to the prison. Put clam back in the painting. + +Invar and Dothurl go into the painting. Think Morgana's hut is in the distance. Head over and see dead Everchard trees, but everything is boarded up. Lots of birds around. Invar comes back to get Morgana. diff --git a/data/2-pages/295.txt b/data/2-pages/295.txt new file mode 100644 index 0000000..e3ee7ae --- /dev/null +++ b/data/2-pages/295.txt @@ -0,0 +1,17 @@ +Page: 295 +Source: data/1-source/IMG_9968.jpg + +Transcription: +Morgana notices a salty tang to the air. One of the birds calls her "Mother". + +He's gone, much devastation. He = dragon? See through? = Salanus? + +Clam's friend is inside. Go inside. Looks like Morgana left it, aside from three things on a table: white rose; sea conch with a mouthpiece to blow on; offering bowl, wooden, like what we are looking for. + +Morgana blows on the conch and some entity comes out, watery bottom half and genie-type top: Myriad one, Lord of the High Waters, seeker of truth for Hydrus. Can give them two wishes, but one must be to free him. He needs to present the bowl to the clam. Don't think he's told the truth at all. + +Take three items with them along with the raven and other birds. + +[uncertain: Iachdais] tells us all in common that the other birds are with him. Name is Mourning. Mourning was put in prison for creating funerals; killed people for cutting down trees or killing rabbits. Morgana "created" him. Took a while to come get him. + +Clam says he doesn't want the bowl and the Myriad is the clam's friend. Which is true, but he's hiding some things. diff --git a/data/2-pages/296.txt b/data/2-pages/296.txt new file mode 100644 index 0000000..1c9a962 --- /dev/null +++ b/data/2-pages/296.txt @@ -0,0 +1,17 @@ +Page: 296 +Source: data/1-source/IMG_9969.jpg + +Transcription: +Clam wants to be freed and only his friend, who he knows the name of but won't tell us, can get him out. Clam wants to be set free. + +Decide they are all pointless and go down the corridor. + +March up to door. Dirk picks and checks it. Door inlaid with mother-of-pearl, dragon depicted. Another door has a whirlwind elemental on it. First door oxen yoke, for an auroch. + +Weird feeling, awe/dread/reverence, when touching the dragon door. + +Door on the other side, west, 10 foot across, in the middle, filled with shells. Dragon-look hatched, but seems staged. Not made of shell; crystalline on it, salt. Dragon is porcelain. Don't recognise as a species of dragon. + +Go through the other door in the room. More dragons flying around depicted on the door. In the centre of this room, crystalline dragon, smaller one, quartz, looks like Salanus? Lift it up, nothing underneath. Drop it and it smashes on the ground. Put it back together; lots of tiny cuts. + +Whirlwind door. Door at the back: orb. Lots of paintings like they are in storage. Look for an offering bowl. All are people we know depicting their death. No bowl. diff --git a/data/2-pages/297.txt b/data/2-pages/297.txt new file mode 100644 index 0000000..373dcf2 --- /dev/null +++ b/data/2-pages/297.txt @@ -0,0 +1,15 @@ +Page: 297 +Source: data/1-source/IMG_9970.jpg + +Transcription: +Dothurl goes through the orb door. Room is odd but familiar: domed room, slight breeze, small mechanical bird. Eroll? says it is him. Was trapped here, was looking for Ruby Eye from the goliath tower. + +Take Eroll out of Geldrin's bag and they are identical. Dothurl touches room Eroll and cracks come out. Breeze stops. + +Psychic damage hurts me. Repair the door and it stops. + +Yoke door. Glass case on a plinth, offering bowl inside it, wobbles. Morgana manages to take the case off but smashes it on the floor. Pick up the bowl and try to replace with the other bowl, but don't manage it and the plinth falls over and breaks. Invar creates a new case and fixes the plinth. + +Other door in the room has a rawhide inlay. Bowl is a tabaxi prayer to Igraine. + +Through the rawhide door is another plinth with roots on them, all identical. Invar tries to identify them but visions in a sec; feels nervous/on edge. Voice says, "A sacrifice & I will let you have it." Does it again. Now vision underground, scorpion. "The entrance shows the way, a pain you will take with you." diff --git a/data/2-pages/298.txt b/data/2-pages/298.txt new file mode 100644 index 0000000..164b4db --- /dev/null +++ b/data/2-pages/298.txt @@ -0,0 +1,21 @@ +Page: 298 +Source: data/1-source/IMG_9971.jpg + +Transcription: +Fill the bowl with booze and try to pray but no answer. + +Try next door. Mushrooms, flowers, trees, bushes, [uncertain: swampy] ground. Glass display case with knife inside, with blood, handle and blade. + +Door in this room is a hanging cage. Inside are nine small globes in a pile, pokeballs, covered in condensation. Look full. Dirk takes one. + +Next door: no inlay, locked. Door at the back. Sofa, table and chairs, fish tank. + +"Help" when we try to open the next door. Looks like a bedroom. Two jellyfish children in the room. Lady Noxia said not to let anyone in; their parents are the jellyfish people we killed. + +Dirk tells the children their parents are not coming back. + +Head back to the display-case room with the dagger. Jellyfish people have shells and pearls, about 500 gp. Symbol under their armour on a chain, looks like a scorpion on them. + +White Rose is Rose of Reincarnation; extends the time from 10 days to 1,000 years. + +Ask Globule about the bowl. diff --git a/data/2-pages/299.txt b/data/2-pages/299.txt new file mode 100644 index 0000000..6ddc1e0 --- /dev/null +++ b/data/2-pages/299.txt @@ -0,0 +1,15 @@ +Page: 299 +Source: data/1-source/IMG_9972.jpg + +Transcription: +Invar calls for the Lord of High Waters. Ask for Globule to be freed. He requests to be freed before doing it and we don't believe him. Persuade him that he's not powerful enough to do it, and he does it. + +Globule says not to free him. Con artist. Hydran put him in there. He gets the huff and goes back in his coral. + +Globule may recognise which is the correct bowl. Lord of Tar trapped inside the clam. Foreigner was trapped by the merfolk, spirit of Igraine, was mean, about 20 years ago. The bird who flew off? Globule didn't see it come out, so maybe not. + +Go to the bowl room. Not any of these at all. Made of stone, not metal. Stone Sages: snake-head people, turn people into stone. Maybe Noxia replaced him. + +Pokeballs contain water element babies, required for the sacrifice? Globule picks them all up and gives to Dirk. + +Out of the "Submarine" door is Hydran's realm. Dirk goes into the lake painting. diff --git a/data/2-pages/300.txt b/data/2-pages/300.txt new file mode 100644 index 0000000..6f8a2e5 --- /dev/null +++ b/data/2-pages/300.txt @@ -0,0 +1,17 @@ +Page: 300 +Source: data/1-source/IMG_9973.jpg + +Transcription: +Lake azure. Dirk goes in and there is no painting to come back through. See a figure in the distance with birds. + +Morgana goes in and Dirk isn't there. Goes back out. + +One of the birds is a pigeon. Tells Dirk it's too soon, so tries to leave. Morgana comes back in the painting to help Dirk leave. Pigeon lands on Morgana's head, says she fixed his wing 300 suns ago. Not evil like Mourning, who is her enforcer. Needed the help after what accompany did to her; surprised she had her eyes. + +"Dome" appears. Village seems to have changed. Didn't change for us until Dirk leaves the painting, and then there is an odd scaled fish jumping out of the lake. + +Open the "Submarine" door: wall of water into a chamber. Door at the other side, barnacle door, rusted handle. Starfish on the door, looks like it's watching us. + +Go through corridor, same layout as other side. Go left, one large chamber instead of two. Shark statues jumping over two dying corpses. Plinth with a piece of parchment on it. Odd since it is a water room. + +Contract: promise to save babies' spirits from the realm of darkness. diff --git a/data/2-pages/301.txt b/data/2-pages/301.txt new file mode 100644 index 0000000..9817303 --- /dev/null +++ b/data/2-pages/301.txt @@ -0,0 +1,17 @@ +Page: 301 +Source: data/1-source/IMG_9974.jpg + +Transcription: +Kesha = Noxia's sister. + +Merlady appears, says we are keepers as she is. Hydran says we need help with this. + +When we are at the dark plane, steer off the beaten path to succeed with this. + +Hydran will get the bowl if we agree to sign the Pact. Lord Hydran finds us acceptable, he is the patron of travel, offers more information and sign the Pact. + +Merlady also agrees to revive the jellyfish people; push them back to the painting room. It has gone dark. + +Merlady takes us somewhere. Carving at the back of the room, telling man with a staff and a hand, looks like Envi. This is the one who captured our allies. He is free; his body has awakened in his laboratory. He was released. His spirit got to his base and occupied a body back at his base. He then got power and control over the crystals. Not sure of his goal. Has not been near his other parts. + +Warning in next room: creature made of living flames. Small six-armed creature we killed looking up at him. This is the creature who wished to "pull a Noxia". He is a prince and in our next location, walking into his house. They wish to make him a god. diff --git a/data/2-pages/302.txt b/data/2-pages/302.txt new file mode 100644 index 0000000..1a8f30d --- /dev/null +++ b/data/2-pages/302.txt @@ -0,0 +1,17 @@ +Page: 302 +Source: data/1-source/IMG_9975.jpg + +Transcription: +Noxia replaced someone but Kesha didn't. + +Next room: picture on the back wall, Morgana depicted. Igraine holding a knife with birds all around, standing on bones of a small dragon. Not done this yet; not a picture of murder, not the weapon. Reincarnate: the bones are mine. + +Morgana reincarnated me, but why don't I remember anything? Was it due to the worm? But why do I still not remember properly? + +Next room: bowl on a plinth. Carving of Noxia wound through her with an arrow in her side and two others at the sides of her. Instead of Sierra's dogs at her side like we have seen in the pictures, it is the six of us. Invar takes the bowl. + +Ask to go back. Geldrin wants to know where the vessel is that took down the god. She sends us back but sort of turns into a hammerhead shark for a second, then back again. + +When we get back only the fire painting is left, and the chandelier is fully ablaze, casting a dark inky shadow on the floor. Globule is with us. + +Nare thinks Globule is dangerous. Globule wants to take the baby pokeballs to a river. diff --git a/data/2-pages/303.txt b/data/2-pages/303.txt new file mode 100644 index 0000000..05a1be0 --- /dev/null +++ b/data/2-pages/303.txt @@ -0,0 +1,17 @@ +Page: 303 +Source: data/1-source/IMG_9976.jpg + +Transcription: +Globule is going to stay with the fountain elementals for now. Go to replace the bowl. + +Tongs next? + +Go to the fire painting. Invar feels his presence to [uncertain: Stolchar] lessen. + +Appear in fire realm throne room. Doors are broken and throne is missing. Haze doesn't like it, as can't smell Sierra. Someone else's realm? + +Check over the balcony. Six identical statues to our realm. Main city door with two red-skinned beings with small horns. Tongs smell like they are outside. + +Decide to check the other way as there could smell in both directions. Go through middle door. Large square room. Large rug on the floor depicting cat persons and marketplace. Two more red-skins on the door. What we seek is not here. Doesn't like Thace; says he's not welcome here. + +They work for the sultan Azar Nuri. Get an audience with the Sultan. Have to go through the other doors and one of them takes us there. Fire version of the garden outside the citadel, with a building the other side of the garden. diff --git a/data/2-pages/304.txt b/data/2-pages/304.txt new file mode 100644 index 0000000..232fb14 --- /dev/null +++ b/data/2-pages/304.txt @@ -0,0 +1,17 @@ +Page: 304 +Source: data/1-source/IMG_9977.jpg + +Transcription: +Creatures open the doors as we get there. Go to a throne room. Eight creatures flank the throne. A 50-foot-tall creature on the throne, dressed similarly with a turban on his head. He has the horns. Doesn't like Invar's symbol to [uncertain: Stolchar]. + +Envi works for him. Envi has Tresmun's arm. Geldrin tells him to bring it to him. If he does, then Envi will bring it to him. + +Lacking in servants on our plane, struggling to get his minions onto our plane. Only cares about one thing: to take back his power. Wants us to open up the passageways and continue to fix the body being carved for him. + +Geldrin tries to promise to make him the god of death. Give tongs now; gold when crystal is complete; force god of death to make a mistake and appear on our plane; open passageway for his envoys to come to our plane. Agree and he throws us the tongs and we leave to the throne room. + +They used to be able to just leave but can't do that any more. + +Check out the other rooms; all look the same but without guards or a dagger symbol on the door. Move the rug to the room on the right; nothing changes. + +Go through the door: massive table, loads of chairs. Imp sat at the head of the table. diff --git a/data/2-pages/305.txt b/data/2-pages/305.txt new file mode 100644 index 0000000..fbeb638 --- /dev/null +++ b/data/2-pages/305.txt @@ -0,0 +1,17 @@ +Page: 305 +Source: data/1-source/IMG_9978.jpg + +Transcription: +Imp is selling a turban and a deck of cards. Only the tabaxi-looking person wasn't that interested. Just talking about gems. + +Smoke in the room: passageway to her. The smoke through using a wall hanging with a candle and incense, and takes you back in time before the guards were there. + +Trade 15A, rope, and tin of white paint for his cards and a turban. + +Go to next door on the right: forge, well-stocked, unused. Invar starts to fire it up, creates a goblet to offer to [uncertain: Stolchar], and he responds by refining the goblet. + +Go to far left door. Blank wall, thread hanging, lectern, bowl with a stick, and candlestick. Invar goes to make a pole. + +Left door. Quiver and suit of leather armour hanging on the wall, bow. Animal skin on the floor. Nare thinks it feels like a metaphor: antelope or gazelle skin on the floor. + +Back to cell main room and change the tapestry and light the candle and incense. Tapestry comes to life. diff --git a/data/2-pages/306.txt b/data/2-pages/306.txt new file mode 100644 index 0000000..e3e4f49 --- /dev/null +++ b/data/2-pages/306.txt @@ -0,0 +1,17 @@ +Page: 306 +Source: data/1-source/IMG_9979.jpg + +Transcription: +Go through the painting: lively version of Brass City. Blue dragonborn and dragons around. Market trader notices us, selling exotic fruits. Calls me a silver [unclear] colour, but I still look green. + +2842 AP is the year of the coins. Cat is wearing a crown we recognise. + +Go through marketplace to the gardens. Looks the same as current day. Morgana thinks only 20 years passed and feels closer to Igraine. + +3480 year: the tabaxi ousted from the Brass, approximately 1050 years ago. + +Dirk finds an elemental to speak to, confirms we are on the Mortal plane. Says we need an invitation to get into the palace. Two blue dragonborn on the doors. + +Ask to see "gleams in the firelight", one of the statues called one. Agrees to see us. Inside looks identical to our plane. + +Woman bursts into the room, Qunien-looking, says she's finished. Tapestry of the marketplace, been working on it for a long time. Same one we "came" through? She enchanted it; it is the tapestry. She's been working on paintings too. diff --git a/data/2-pages/307.txt b/data/2-pages/307.txt new file mode 100644 index 0000000..c06767e --- /dev/null +++ b/data/2-pages/307.txt @@ -0,0 +1,19 @@ +Page: 307 +Source: data/1-source/IMG_9980.jpg + +Transcription: +Don't know how to get back. She's a dragon/serpent. Needs some of our things from our time to try to get us back. Give her glass beads Dirk got from Brass City and a scrap of my skirt. + +She casts a spell on another tapestry of the hallway back home with the statues. She says it was a vision; she's been getting them since Igraine came to see her. + +The book Bynx had has a page missing. Seems to be the page about her; she ripped it out. + +Put the tongs back. Just cat and light/cat missing. + +Decide to go to Light realm. Lower the chandelier and Bynx takes us through. + +Exact replica of the room, platinum throne. Doors to each realm, Attabone and Igraine. + +Go through Igraine door. Flat, vast, level field of buttercups and daisies, etc. Morgana used to be here lots. She speaks with plants. Lots of people here but there hasn't been for ages. Afterlife area? + +Tries to speak to Igraine. Ladybird says the cat is here. Gives us a clue: Morgana needs to channel her power and seek more of them, talk and play with them. diff --git a/data/2-pages/308.txt b/data/2-pages/308.txt new file mode 100644 index 0000000..11d0024 --- /dev/null +++ b/data/2-pages/308.txt @@ -0,0 +1,15 @@ +Page: 308 +Source: data/1-source/IMG_9981.jpg + +Transcription: +Tries to locate cat, about a day away. Morgana connects to the cat through animals/birds and brings the cat back to us. Haze says it smells like the item we need, but seems too easy. Cat is alive, or not sure? It is dead. + +Morgana asks the bird to teach her how to do this again. It says yes, and she calls it Bruce. + +Go back to go into Attabre's realm. Door is locked to Bynx and Dirk. I just open it. + +Cloakroom. Sitting room, picture of five sphynxes above the fireplace. Have to remove an item of clothing to let us through the door. Cat on the floor, not the cat we are looking for. Have to chill with a drink before the next door opens. + +Dining room. Three doors out of the room. One is for the kitchen. Tabaxi come out with the meal we had on our ninth birthday. Another tabaxi comes in with a lute; asks him to tell us tales we haven't heard before. + +Leaders: the one who was a god before him. Leaders dead. Lifted the cold elements cloak in times of war and princes were important. diff --git a/data/2-pages/309.txt b/data/2-pages/309.txt new file mode 100644 index 0000000..b0e2d03 --- /dev/null +++ b/data/2-pages/309.txt @@ -0,0 +1,17 @@ +Page: 309 +Source: data/1-source/IMG_9982.jpg + +Transcription: +All started to become wary of the princes. May have made the wrong deals to keep the princes in check. + +Leader's dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. + +Connection to my father has allowed to view pieces of my past, so knows most of it. Icefang gave us all vision. + +Not just Icefang's daughter but his too. It's Attabre. + +I was killed because I got in the way. More strong-willed. She accepted their spells but I didn't, so they killed me. Icefang managed to get Kaylara out and then fell to slumber. + +When we venture forth on our next step, the gods we have befriended will give us gifts. But it will be hard to choose. If we die in the next realm we won't get back up. She warns Geldrin in particular. + +Geldrin gives Attabre a book and that will prevent the person who wants it from getting it. diff --git a/data/2-pages/310.txt b/data/2-pages/310.txt new file mode 100644 index 0000000..0343793 --- /dev/null +++ b/data/2-pages/310.txt @@ -0,0 +1,21 @@ +Page: 310 +Source: data/1-source/IMG_9983.jpg + +Transcription: +Our choice if we bring the dome down. The gods won't mind except the ones who benefit. The bringing down of the dome will weaken Throngore. + +Kasha was allowed to get certain souls through the Barrier, merbabies, to help her sister. We have been good Envoys. + +Bynx will need to decide if he is staying to build the Goliath race or go back to him. + +Geldrin asks how to get out of his pact with Kasha to get her Guardwell's soul. Not bound like the gods, but she will do everything she can to make it happen, which isn't much on the Mortal realm but is a lot when we go to her realm. + +Allows us to rest and we go back to the Mortal realm. + +The death realm turns to a portal and the light has disappeared. + +Required to leave the safety of the city in the death realm and free the merfolk babies. + +Geldrin gets part of Haze into Errol to help find the tail. + +Timon abseils into the portal, floating in nothing. Morgana turns into an eagle to explore. Dirk asks the ancestors if we will land safely if we jump in. diff --git a/data/2-pages/311.txt b/data/2-pages/311.txt new file mode 100644 index 0000000..3737c73 --- /dev/null +++ b/data/2-pages/311.txt @@ -0,0 +1,13 @@ +Page: 311 +Source: data/1-source/IMG_9984.jpg + +Transcription: +The ancestors say Whel and Elliana and Dotharl jump straight in, followed by everyone else. + +Land outside a hole in another throne room. Goat man sat on the throne, bigger than Steven/Shark. His name is Sauver, one of Throngore's. Wants to know if we are from the Mortal realm. Seems like he is bound here until we arrived. Tells us Throngore requests an audience with us. + +In a room past the doors we are paralysed. About 100 ft tall and 40 ft wide. Bleeding crab-claw hands, demon, six arms, four legs. Throngore changes to a man in a black suit with a giant goat's head. + +Tells me he didn't think I'd dare to come here. Wants us to free a prisoner. We will know when we see him. As we are pally with Air, don't let her back in to take over his throne. We have many favours from the other gods. Kasha can't see us unless she is told we are here. + +We won't have time to free any other prisoner. Don't get involved in the main fight. Stay on the path, opposite to what we have been told previously by Hydran. Agree to what he has asked. diff --git a/data/2-pages/312.txt b/data/2-pages/312.txt new file mode 100644 index 0000000..33c49e7 --- /dev/null +++ b/data/2-pages/312.txt @@ -0,0 +1,15 @@ +Page: 312 +Source: data/1-source/IMG_9985.jpg + +Transcription: +Sends us to a path ending in a Dracula-style castle. Armies fighting near to the tower, but it's like the memory of a fight. + +All decide to walk off the path but follow it. Get closer to the fight. Goats to one side, wasp humanoids on the other. + +Come to a signpost. One arrow towards the prison, and Whel looks like a broken-off arrow. There is a hidden pathway [unclear] [uncertain: sea shell]. The other way has a single sea shell. Decide to go towards the sea shell. + +Cockroach climbs onto Morgana and says that's the wrong way but is also nodding. We continue down the path. Actual goat men seem to run past us. + +Shylow stops to talk to us. Says, "I have something on my horns," and rubs some dirt on them. Believes we are goat people and tell him our names begin with S. + +The prison disappears. Feels like walking through pushing fog. Building appears in front of us, gets very big. Giant purple crystal at the top of the spire with thousands of blue wisps surrounding it. Two wasp people on the door. diff --git a/data/2-pages/313.txt b/data/2-pages/313.txt new file mode 100644 index 0000000..febcb02 --- /dev/null +++ b/data/2-pages/313.txt @@ -0,0 +1,17 @@ +Page: 313 +Source: data/1-source/IMG_9986.jpg + +Transcription: +Try to go around the building. Dead wasp person appears lying against a wall. Dotharl casts See Invisibility and more bodies and a goat man appear. + +Head towards him and investigate the wasps. Some black coins start wailing slightly when picked up, like the Harley pack of doom. Put them all on one wasp person, gather 15 in total. + +Head further round the tower: smashed-in door. Goat man near it looking irritated. When we get closer, he notices us and was waiting for us. Takes us inside. Lots of prison cells inside. + +[uncertain: Shevolt] recognises me and seems to malfunction and comes back. Sense of familiar dread comes over me and I feel like I've been here before. Starts acting weird. Ask him what he is here to do. Free a fellow goat. Ask who. Says Fred. Decide to kill him. + +Leader says I'm a prisoner who was stolen, and when hit with necrotic damage I briefly turn into a silver dragonborn with ribbons on my horns and a teddy attached to my belt. + +Rock guy in the cell next to "mine". Mum killed him and dedicated him to Kasha. Didn't like [uncertain: Stone runger?] me at first but grew to like me. + +Can see keys for the prisons on the leader's belts. diff --git a/data/2-pages/314.txt b/data/2-pages/314.txt new file mode 100644 index 0000000..eafe5a8 --- /dev/null +++ b/data/2-pages/314.txt @@ -0,0 +1,19 @@ +Page: 314 +Source: data/1-source/IMG_9987.jpg + +Transcription: +Gods: + +Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. + +Thorn-beard elf in one of the cells is mortal and calls me darling. Reminds him of the time he went to the moon with my mum. Lord Briarthorn. + +Water Bull has his memories back. Can't get merbabies as can't enter the sea water. I enter into the water and shout for Globule. He comes and helps to free them. + +Kasha tries to break through the ceiling and God Bull is defiant, saying he will take his realm back. + +Globule tells Geldrin he is ready, so he rings the bell. Appear back in the throne room. Haze says it smells like something has changed. + +Go to the statues and put the tail back. Stone casing breaks off and reveals live tabaxi. King asks how long they've been stone. 2034 AP = 3480 approximately. Same time coins were smelted. They were cursed. + +They decide to go speak to the people after planning takes place. diff --git a/data/2-pages/315.txt b/data/2-pages/315.txt new file mode 100644 index 0000000..fff3134 --- /dev/null +++ b/data/2-pages/315.txt @@ -0,0 +1,17 @@ +Page: 315 +Source: data/1-source/IMG_9988.jpg + +Transcription: +Priestess will guide us to Cardonald. + +We go to the fountains. Lots of gossip. Lord Hydran is very happy, doesn't know what's going on. Goes to find out, and Globule is back and is taking the merfolk babies back to the sea. + +Agree to go rest and meet the priest tomorrow, 12:30. + +Find an empty house and relax for a bit. Dirk feels someone scrying on him. + +Massive gush of water outside and six merfolk men clad in mother-of-pearl armour, with a merlady and a driftwood crown. Don't recognise her. They are here to serve us, following our deeds. Queen Mooncoral. We have righted the greatest wrong done to their people, which they didn't know about until recently. + +First birth an hour ago. Receive a sending stone from her. Asked her to look into where In'weo [uncertain] goes. Gives us a ring of fire resistance. + +Rest and sleep. diff --git a/data/2-pages/316.txt b/data/2-pages/316.txt new file mode 100644 index 0000000..84de1c6 --- /dev/null +++ b/data/2-pages/316.txt @@ -0,0 +1,21 @@ +Page: 316 +Source: data/1-source/IMG_9989.jpg + +Transcription: +Day 58 - Brash House, city random + +Go back to the citadel to meet "Lies with the Morning Dew". + +Lord Briarthorn is with her. We forgot about him. Seems pretty alive. Appeared about a mile away and came to try and find us. Haze is no longer with us. + +Remembered me as I looked different in the death realm. I don't look the same now, but he knows it's me. Has a feeling. + +Names Cardonald and Lady Marshall. Died around the time he and Mum and Envi and Hannah went to the moon. Francine Joy's daughter. + +Used the portal at mum's house. Needed him to go but can't remember why he went. + +Can feel some of his people in one of the minarets in the citadel. Decide to go get Cardonald first. + +Briarthorn helped to make the mushroom "No Hurt". Can be dangerous if it starts to take over the eyes and the tongue. + +Senses spirits in the minarets but they can't get past the door up there. diff --git a/data/2-pages/317.txt b/data/2-pages/317.txt new file mode 100644 index 0000000..3e081b4 --- /dev/null +++ b/data/2-pages/317.txt @@ -0,0 +1,17 @@ +Page: 317 +Source: data/1-source/IMG_9990.jpg + +Transcription: +Geldrin thinks the door is probably dangerous for Dotharl and Bynx. He modifies the runes on the door to allow light, water and air. + +Third floor has information the blue dragons used. Head up the stairs. Picture in the carpet with five sphynxes on it. Don't recognise one of them. Seen five before and told fifth one was Attabre. Trixus most predominant one. + +"Lies in the Morning Dew" says the fifth one is for the dwarves. Sphynx for all but the merfolk, who Attabre blessed with memory. + +Write a sending stone to Queen Mooncoral but can't send it yet. + +Continue up to the second floor. Find a book on Attabre. Scientific description instead of religion. + +Sphynxes listed as: Annadrazadey - dragon; Trixus - tabaxi; Bene - elves; Garadwal - Dunned (humans); Koko rem - dwarves. + +Other gifts: merfolk - memory; gnomes - learning. Seeking gifts from Attabre: Goliaths; Avian. diff --git a/data/3-days/day-57.md b/data/3-days/day-57.md new file mode 100644 index 0000000..7c028ce --- /dev/null +++ b/data/3-days/day-57.md @@ -0,0 +1,706 @@ +--- +day: day-57 +date: unknown +complete: true +source_pages: + - data/2-pages/281.txt + - data/2-pages/282.txt + - data/2-pages/283.txt + - data/2-pages/284.txt + - data/2-pages/285.txt + - data/2-pages/286.txt + - data/2-pages/287.txt + - data/2-pages/288.txt + - data/2-pages/289.txt + - data/2-pages/290.txt + - data/2-pages/291.txt + - data/2-pages/292.txt + - data/2-pages/293.txt + - data/2-pages/294.txt + - data/2-pages/295.txt + - data/2-pages/296.txt + - data/2-pages/297.txt + - data/2-pages/298.txt + - data/2-pages/299.txt + - data/2-pages/300.txt + - data/2-pages/301.txt + - data/2-pages/302.txt + - data/2-pages/303.txt + - data/2-pages/304.txt + - data/2-pages/305.txt + - data/2-pages/306.txt + - data/2-pages/307.txt + - data/2-pages/308.txt + - data/2-pages/309.txt + - data/2-pages/310.txt + - data/2-pages/311.txt + - data/2-pages/312.txt + - data/2-pages/313.txt + - data/2-pages/314.txt + - data/2-pages/315.txt +source_ranges: + - data/2-pages/281.txt:25-29 + - data/2-pages/282.txt + - data/2-pages/283.txt + - data/2-pages/284.txt + - data/2-pages/285.txt + - data/2-pages/286.txt + - data/2-pages/287.txt + - data/2-pages/288.txt + - data/2-pages/289.txt + - data/2-pages/290.txt + - data/2-pages/291.txt + - data/2-pages/292.txt + - data/2-pages/293.txt + - data/2-pages/294.txt + - data/2-pages/295.txt + - data/2-pages/296.txt + - data/2-pages/297.txt + - data/2-pages/298.txt + - data/2-pages/299.txt + - data/2-pages/300.txt + - data/2-pages/301.txt + - data/2-pages/302.txt + - data/2-pages/303.txt + - data/2-pages/304.txt + - data/2-pages/305.txt + - data/2-pages/306.txt + - data/2-pages/307.txt + - data/2-pages/308.txt + - data/2-pages/309.txt + - data/2-pages/310.txt + - data/2-pages/311.txt + - data/2-pages/312.txt + - data/2-pages/313.txt + - data/2-pages/314.txt + - data/2-pages/315.txt +--- + +# Raw Notes + +## Page 281 + +Day 57 - Black Dragon City in The Underblame + +At 08:00, a council of all towns/states for a treaty to be signed? + +Can ensure Salinas causes no issues. Agreed to get us to the Brass City. Scrolls. Charged shield crystal. Respite in his city. + +## Page 282 + +Buy a newspaper: +- Someone executed for not paying their bar tab. +- Pegaus farm. +- Nothing interesting. + +Infestus' wife is waiting for us. + +Receive powerful shield crystal and scrolls. + +She smashes an orb and a tiny human appears. + +Infestus' wife chants and it turns into a blue dragon. + +Dragon takes us to the Brass City. + +Teleport to just outside and walk over. + +Two people come to greet us. Smoke-skin type scales. Cobra head under his hood. Diplomats. + +"The People" rule the city. + +Excellence of Air left and never came back. + +Inside the walls is very lush. Doesn't seem to be an enslaved city. + +Elf wizards are the cause of many issues. + +Old masters enslaved the labour. + +Best to check at the citadel for our friend, still under the old regime. + +He knows the name Valenth and directs us to Gaol. + +Go and see. + +Lots of air elementals at the citadel. + +Relaxed atmosphere in the city. + +Glowscale seem to be excited and intrigued to see us. + +## Page 283 + +A lot of the slaves were repairing and upkeep of the city. The rest were in the citadel and said to be working on a great weapon. + +There was a rebellion, as slaves wanted bread and they were not allowed to get any. They protested and burst into flames. Was told once their ruler went they would be attacked, but not seen anyone, not even Envy. + +A gem shop owner might know what was being worked on. + +Owner was taken to work there cutting a gem. Disappointed he didn't finish. Facets that gleam in the sun. This is a place of great elemental power. Fountains etc are all from the plains. + +He was crafting a body out of shield crystal to create a focusing crystal. It is stored in one of the four great minarets. + +Didn't seem to be a weapon. + +Creatures in the towers became unruly after the Excellence left. + +Dirk starts to talk to the fountain. The water wants to go somewhere but doing a very important job; that's what his dad told him. Hydraxia before he gave him to the blue dragons. Dragons went bad. His dad likes the merfolk but is annoyed by the purple thing. Wants us to fix the babies not going to him. If we sort it out, he will be on our side when it comes to the end. + +Open the door on the right. + +## Page 284 + +We open the doors to the citadel. + +Blue dragons and Trixus. + +Tapestry carpet with a sun that has a thick-set dwarf and a slender woman with a bow. + +See a depiction of Garadwal talking to the Dunner people with him. + +No evidence of a fire elemental living here. + +Statues lining the corridor are all facing the wall. Turn one around: runs in the streams, high mountainness? Next one: slays foes bravely. Tabaxi with scales, missing one back leg and ears, "fur of night scales of the sky," first princess of the union but slightly cracked. + +Sword is slightly cracked. + +Sword has been made but the person hasn't? Medusa-type spell? + +Weighted idols, jewellery. Rules: gravity and weight, Lord of the Brass City. + +Necklace appears to be carved out of the statue. Could remove, but not quite right. Statue has space for it to go. + +Something hums and lungs for the next one. Gleams in the first light. High priests of Goklhar? Things are separated; take them. + +Fine-dress, holding book and rose in her hand. Brazier on the floor. "Lies in the morning dew," prophet of the light. It can be removed. + +Put a coin in a spot orbiting around the edge. Ignan: "We are close once more. I will help you say his name when you pick him up." + +## Page 285 + +Pick up the cat. Geldrin says There. The cat pops and a big dog appears. Come to aid us in our travels and still due to our service to his mistress. + +Must not damage anything in the city. Must solve something else. + +Excellence of Air went to the dome as needed something to hint his task to make a trap for Sierra, to trap her so Browning can take her place. + +There says, "I forgot something," and brings Bob and Bosh. Still cursed but says he can fix them when we are done. + +Need wizards of the stars to find the sword. + +Six doors at the top of the stairs. + +There stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. There says this is a control room, which controls planes at once. + +Sword is in the Earth plane, along with Tresmun's body. We mustn't leave the citadel when we go there, and it's hard to get back. + +When we go, all the pictures disappear and the room totally changes. + +## Page 286 + +Completely dark and Invar's magic doesn't work. + +There makes it work, for Counterspell. + +Earth elemental on the other side of the door. He hasn't had anyone from the prime plane for a long time. Not used to anyone other than tabaxi and cobra men. + +On his table: coal, gold dragon, jagged granite, shield crystal. Are they the next people? Are we the next people? + +Gold dragon is actually silver and exactly like Mama Harthall. + +Shield crystal: piece of Tresmon. + +Coal: wet at the bottom. Geldrin pulls the water out of it. + +Granite has scorch marks on it. + +Door appears when we pick up all the items. + +Tavern the other side of the door?! Filled with cats? Harn? + +A ghost was here last carrying a sword and shield. She wasn't welcome and everyone is welcome here. + +Find a table set for us. Geldrin has a piece of parchment, Scroll of Fireball. + +Everyone seems happy but Morgana feels sad, as though there is something missing. Her salad has a needle and thread under it. Thread has dried blood on it. + +## Page 287 + +A rat comes to Morgana and disintegrates in front of us. Cacophony, met him on page 231, appears as a huge worm and dies. Says it will show her something interesting. + +Her cider starts to swirl and shows a dwarf in a bathroom with runes who is removing his eye. Rubyeye. + +All the cats start staring at us and hiss. The fire burns brighter and then they go back to normal. + +Cat says it is not predetermined and they got rid of something bad that had been following us. + +Dirk puts the coal in the fire and sees an image of a man saving a young girl, and a clever way appears with the rings. + +Small temple, round, by the remains of the Riversmeet bridge and the dwarven bridge. Seward marble around, loads of benches with carving of odd stones, approximately 30. Five unlit candles on the altar. Top temple? + +Try to light the candles but they don't catch. Try to use the granite and it pops like gunpowder when on it. + +Altar has gold statues under it, 10 of them, all different races and missing a dragon. + +Invar uses the torches around to light the candles. Geldrin places the statues of the wizard races by the candles. + +Vision: large round table, seven people, five wizards, Hannah and Icefang. Mama Harthall angry, holding the blue ball, saying, "This is enough. You can't continue this any more." + +## Page 288 + +It has to stop now. Then we see a silver scale in dirt and a door appears. + +Goliath throne room: thriving city, decadent. Lion-headdress rockmen flank the throne. Someone who looks like Dirk with his sword is made of stone. Lots of pictures: one is a white dragon stood by a river, another of us as we are now, another of a young beautiful sphynx. + +He's got the sword we need, but he has just got it back from a ghost. Wants proof that we are us and how we killed Perodita. Give the granite and vision of Justiciars moving rocks off a dragon's body. + +Tells us to pop back to see the fiery beard chap, Huntmaster Throne. Stone Dirk brought the dome down. + +Four different doorways. Don't pick the one with the moon on it. Thinks they picked the one with the dragon on it. Go through the door behind the throne. + +Four doors: Moon, Dragon Head, Arching Wave, Butterfly. Very well carved. Bell with chain. + +We open the moon door, as the last trinket we have left is the moon crystal. Seems to be Craters Edge through the door. Dirk starts to hear garbled conversations. + +Open dragon door: snow, pine trees, figure in the distance. Strange sense of dread. Remember flying/crashing through pine needles and crashing to the ground, pine needles scratching my scales. + +## Page 289 + +Wave door: water comes through the door. Close it, but a tiny arm bone makes it through the door. + +Sword is through all three doors, but Haze can't smell it when the doors are closed. + +Butterfly door: swampy air, Everchard, smell of Morgana's house, small shed. Drops from the door: small piece of black thread, and the tree is much smaller. Morgana's house looks newer, years before she got the house; thinks it is about 20 years. Send Betty to look in the house. Someone is in there. Magpie stops Betty from looking further. + +It's a younger Chorus. She "made" a baby that was given away. It already had a name. Haze says they all seem a little different from the real place. + +Reopen moon door: black sky, crystal surface changed to the moon? + +Reopen: Brass City, massive stone table, purple rock men with arm and head missing. + +Dragon door: still Pinesprings but different place. Green/yellow flash from the trees and some chatter, then crying: baby dragonborn. + +Geldrin goes through the moon door. Tresmon's body does not seem complete. Door starts to slam shut and Invar fails to stop it. + +Dragon room / redbeard figure leaving bare footprints in the snow, carrying a baby dragonborn and a broom. + +## Page 290 + +Geldrin: salamander, expecting a tabaxi, facets that gleam in the sun. Assumes Geldrin is meant to be here, trying to get the facets so that the light goes in but not out. + +Geldrin finds a spot on the body the shard has come from and puts it back. + +All four doors open; no snow or water comes through the door. + +Andy, the moment after the fight with the Mother, sees a woman running, dark-skinned, but the tree behind it too. Then a stone door appears and he charges through the door. + +Wave door: mother-of-pearl walls, palace, two mermen, and a pool. City of Aquarius. Keepers of the Pact always welcome here. Lord Hydram said we could come. + +Doors are memories of what we have promised or have done. Seems like they are distractions. + +Dragon door has the smell of the sword. Through the door is a town on a plateau, Provinta. Familiar knock, broom transport, from the town. Came out four doors down from my house, but it is 20 years ago. Haze takes us towards my house and the same baby crying. My mum sees a box from Everchard. They were very happy and take it in. Morgana says the Chorus made me. + +## Page 291 + +Reaction, 1 AM, Elluin Hartwall! + +Sword is in my house. It was in the box. Go to the house and try to get the sword. Got the box and there is a sword in the box with some cloths. Morgana finds a small piece of black thread. Chorus's eyes and mouth were sewn shut with black thread. + +Go to town square. Poster about Founder's Day. Picture of Bleakstorm and a Geldrin look-alike, but it wasn't Geldrin. + +The poster was sent via a sending stone. Date 17th March 991. Founding Day is not this date. + +Bleakstorm is in the town hall. Go to him. On the desk is a freshly carved ice sculpture of an auroch. + +Can take us back to Brass City, but wants something from us: personal favour, to save him, just him. First man, and wants to know if Icefang's spirit is still here. It is, as he died in the dome. Wants us to free his spirit. + +Claps his hands and we go back to Brass City, in the plush throne room. But only three pictures on the walls now. + +Go to put the sword back. As it goes into the statue it fixes the cracks. + +## Page 292 + +Bynx calls upon Trixus to ask about the statues, as not sure why we are trying to fix them. They are "the Council." + +Necklace next. Haze takes us back to the throne room. Air picture. + +Dothurl looks different, feels stronger. Haze takes us back into the building down to the room where the statues are in the normal plane. + +Through door: jewelry box. Smells like the right one, but it does also smell like it's further in the room through the other door. + +In the room is a tabaxi playing a piano, wearing a necklace, "Drinker beads of wine." Pickpocket the necklace from her. She takes a five-minute hourglass out and turns it over. + +Go through door into a theatre room. Find a third necklace, all fake ones. Haze can't find the necklace anymore. + +Ruby eyes somewhat glittering, "useless presents." Find the necklace on a coat peg. Dispel the invisibility and make it a real necklace instead of the stone one. + +Checklist box: Bowl checked. Tongs. Necklace checked. Coat. Dragonborn tail crouched fake. Sword checked. + +## Page 293 + +Back to the throne room. Other door is a broom cupboard with a picture of Morgana looking bored and confused. + +Ask to leave back to the statue room. Andy asks to go home and he does. + +Put the necklace back on and it melds to the statue but stays as a necklace. + +Go for the offering bowl next. Back to the throne room. Only two paintings left. Room changed slightly; candelabra now on the ceiling. + +Geldrin disappears after touching the painting. Ends up in my waterskin, shrunken. Use the school biggening juice to get back to normal size. + +Dothurl activates the painting and we go in. Replica of the throne room, but there are paintings on the wall: vortex/whirlpool; calm with tropical fish under tropical sea; icy swamp lake; calm still lake. + +Two doors. Whirlpool starts swirling and Dirk speaks to Globule in Aquan. He was trapped by Noxia as he works for "Him". When asked who him is, he said, "Him, Hydram, then Noxia." "Him" is forgotten more than lost. He has no legs and no arms. + +## Page 294 + +Open the door behind the throne. Two "people" behind it with jellyfish for heads but normal arms, facing the door. + +We cannot enter. Bowl is theirs and we cannot have it. Death warrant against us from Noxia. We cannot leave this domain. + +Put my arm through the door and they attack. Kill them. Dirk tries to fit in the painting lake. + +Throne for a sphynx, mother-of-pearl, coral, etc. + +Put head in tropical fish painting. Large closed clam shell to the left. Shipwreck to the right. Try to get the clam shell, doesn't, so try to push it out of the painting. + +Clam says whirlpool bad prisoner. Friend says he can't help as he lives in the icy painting. Fish man has the key to the prison. Put clam back in the painting. + +Invar and Dothurl go into the painting. Think Morgana's hut is in the distance. Head over and see dead Everchard trees, but everything is boarded up. Lots of birds around. Invar comes back to get Morgana. + +## Page 295 + +Morgana notices a salty tang to the air. One of the birds calls her "Mother". + +He's gone, much devastation. He = dragon? See through? = Salanus? + +Clam's friend is inside. Go inside. Looks like Morgana left it, aside from three things on a table: white rose; sea conch with a mouthpiece to blow on; offering bowl, wooden, like what we are looking for. + +Morgana blows on the conch and some entity comes out, watery bottom half and genie-type top: Myriad one, Lord of the High Waters, seeker of truth for Hydrus. Can give them two wishes, but one must be to free him. He needs to present the bowl to the clam. Don't think he's told the truth at all. + +Take three items with them along with the raven and other birds. + +[uncertain: Iachdais] tells us all in common that the other birds are with him. Name is Mourning. Mourning was put in prison for creating funerals; killed people for cutting down trees or killing rabbits. Morgana "created" him. Took a while to come get him. + +Clam says he doesn't want the bowl and the Myriad is the clam's friend. Which is true, but he's hiding some things. + +## Page 296 + +Clam wants to be freed and only his friend, who he knows the name of but won't tell us, can get him out. Clam wants to be set free. + +Decide they are all pointless and go down the corridor. + +March up to door. Dirk picks and checks it. Door inlaid with mother-of-pearl, dragon depicted. Another door has a whirlwind elemental on it. First door oxen yoke, for an auroch. + +Weird feeling, awe/dread/reverence, when touching the dragon door. + +Door on the other side, west, 10 foot across, in the middle, filled with shells. Dragon-look hatched, but seems staged. Not made of shell; crystalline on it, salt. Dragon is porcelain. Don't recognise as a species of dragon. + +Go through the other door in the room. More dragons flying around depicted on the door. In the centre of this room, crystalline dragon, smaller one, quartz, looks like Salanus? Lift it up, nothing underneath. Drop it and it smashes on the ground. Put it back together; lots of tiny cuts. + +Whirlwind door. Door at the back: orb. Lots of paintings like they are in storage. Look for an offering bowl. All are people we know depicting their death. No bowl. + +## Page 297 + +Dothurl goes through the orb door. Room is odd but familiar: domed room, slight breeze, small mechanical bird. Eroll? says it is him. Was trapped here, was looking for Ruby Eye from the goliath tower. + +Take Eroll out of Geldrin's bag and they are identical. Dothurl touches room Eroll and cracks come out. Breeze stops. + +Psychic damage hurts me. Repair the door and it stops. + +Yoke door. Glass case on a plinth, offering bowl inside it, wobbles. Morgana manages to take the case off but smashes it on the floor. Pick up the bowl and try to replace with the other bowl, but don't manage it and the plinth falls over and breaks. Invar creates a new case and fixes the plinth. + +Other door in the room has a rawhide inlay. Bowl is a tabaxi prayer to Igraine. + +Through the rawhide door is another plinth with roots on them, all identical. Invar tries to identify them but visions in a sec; feels nervous/on edge. Voice says, "A sacrifice & I will let you have it." Does it again. Now vision underground, scorpion. "The entrance shows the way, a pain you will take with you." + +## Page 298 + +Fill the bowl with booze and try to pray but no answer. + +Try next door. Mushrooms, flowers, trees, bushes, [uncertain: swampy] ground. Glass display case with knife inside, with blood, handle and blade. + +Door in this room is a hanging cage. Inside are nine small globes in a pile, pokeballs, covered in condensation. Look full. Dirk takes one. + +Next door: no inlay, locked. Door at the back. Sofa, table and chairs, fish tank. + +"Help" when we try to open the next door. Looks like a bedroom. Two jellyfish children in the room. Lady Noxia said not to let anyone in; their parents are the jellyfish people we killed. + +Dirk tells the children their parents are not coming back. + +Head back to the display-case room with the dagger. Jellyfish people have shells and pearls, about 500 gp. Symbol under their armour on a chain, looks like a scorpion on them. + +White Rose is Rose of Reincarnation; extends the time from 10 days to 1,000 years. + +Ask Globule about the bowl. + +## Page 299 + +Invar calls for the Lord of High Waters. Ask for Globule to be freed. He requests to be freed before doing it and we don't believe him. Persuade him that he's not powerful enough to do it, and he does it. + +Globule says not to free him. Con artist. Hydran put him in there. He gets the huff and goes back in his coral. + +Globule may recognise which is the correct bowl. Lord of Tar trapped inside the clam. Foreigner was trapped by the merfolk, spirit of Igraine, was mean, about 20 years ago. The bird who flew off? Globule didn't see it come out, so maybe not. + +Go to the bowl room. Not any of these at all. Made of stone, not metal. Stone Sages: snake-head people, turn people into stone. Maybe Noxia replaced him. + +Pokeballs contain water element babies, required for the sacrifice? Globule picks them all up and gives to Dirk. + +Out of the "Submarine" door is Hydran's realm. Dirk goes into the lake painting. + +## Page 300 + +Lake azure. Dirk goes in and there is no painting to come back through. See a figure in the distance with birds. + +Morgana goes in and Dirk isn't there. Goes back out. + +One of the birds is a pigeon. Tells Dirk it's too soon, so tries to leave. Morgana comes back in the painting to help Dirk leave. Pigeon lands on Morgana's head, says she fixed his wing 300 suns ago. Not evil like Mourning, who is her enforcer. Needed the help after what accompany did to her; surprised she had her eyes. + +"Dome" appears. Village seems to have changed. Didn't change for us until Dirk leaves the painting, and then there is an odd scaled fish jumping out of the lake. + +Open the "Submarine" door: wall of water into a chamber. Door at the other side, barnacle door, rusted handle. Starfish on the door, looks like it's watching us. + +Go through corridor, same layout as other side. Go left, one large chamber instead of two. Shark statues jumping over two dying corpses. Plinth with a piece of parchment on it. Odd since it is a water room. + +Contract: promise to save babies' spirits from the realm of darkness. + +## Page 301 + +Kesha = Noxia's sister. + +Merlady appears, says we are keepers as she is. Hydran says we need help with this. + +When we are at the dark plane, steer off the beaten path to succeed with this. + +Hydran will get the bowl if we agree to sign the Pact. Lord Hydran finds us acceptable, he is the patron of travel, offers more information and sign the Pact. + +Merlady also agrees to revive the jellyfish people; push them back to the painting room. It has gone dark. + +Merlady takes us somewhere. Carving at the back of the room, telling man with a staff and a hand, looks like Envi. This is the one who captured our allies. He is free; his body has awakened in his laboratory. He was released. His spirit got to his base and occupied a body back at his base. He then got power and control over the crystals. Not sure of his goal. Has not been near his other parts. + +Warning in next room: creature made of living flames. Small six-armed creature we killed looking up at him. This is the creature who wished to "pull a Noxia". He is a prince and in our next location, walking into his house. They wish to make him a god. + +## Page 302 + +Noxia replaced someone but Kesha didn't. + +Next room: picture on the back wall, Morgana depicted. Igraine holding a knife with birds all around, standing on bones of a small dragon. Not done this yet; not a picture of murder, not the weapon. Reincarnate: the bones are mine. + +Morgana reincarnated me, but why don't I remember anything? Was it due to the worm? But why do I still not remember properly? + +Next room: bowl on a plinth. Carving of Noxia wound through her with an arrow in her side and two others at the sides of her. Instead of Sierra's dogs at her side like we have seen in the pictures, it is the six of us. Invar takes the bowl. + +Ask to go back. Geldrin wants to know where the vessel is that took down the god. She sends us back but sort of turns into a hammerhead shark for a second, then back again. + +When we get back only the fire painting is left, and the chandelier is fully ablaze, casting a dark inky shadow on the floor. Globule is with us. + +Nare thinks Globule is dangerous. Globule wants to take the baby pokeballs to a river. + +## Page 303 + +Globule is going to stay with the fountain elementals for now. Go to replace the bowl. + +Tongs next? + +Go to the fire painting. Invar feels his presence to [uncertain: Stolchar] lessen. + +Appear in fire realm throne room. Doors are broken and throne is missing. Haze doesn't like it, as can't smell Sierra. Someone else's realm? + +Check over the balcony. Six identical statues to our realm. Main city door with two red-skinned beings with small horns. Tongs smell like they are outside. + +Decide to check the other way as there could smell in both directions. Go through middle door. Large square room. Large rug on the floor depicting cat persons and marketplace. Two more red-skins on the door. What we seek is not here. Doesn't like Thace; says he's not welcome here. + +They work for the sultan Azar Nuri. Get an audience with the Sultan. Have to go through the other doors and one of them takes us there. Fire version of the garden outside the citadel, with a building the other side of the garden. + +## Page 304 + +Creatures open the doors as we get there. Go to a throne room. Eight creatures flank the throne. A 50-foot-tall creature on the throne, dressed similarly with a turban on his head. He has the horns. Doesn't like Invar's symbol to [uncertain: Stolchar]. + +Envi works for him. Envi has Tresmun's arm. Geldrin tells him to bring it to him. If he does, then Envi will bring it to him. + +Lacking in servants on our plane, struggling to get his minions onto our plane. Only cares about one thing: to take back his power. Wants us to open up the passageways and continue to fix the body being carved for him. + +Geldrin tries to promise to make him the god of death. Give tongs now; gold when crystal is complete; force god of death to make a mistake and appear on our plane; open passageway for his envoys to come to our plane. Agree and he throws us the tongs and we leave to the throne room. + +They used to be able to just leave but can't do that any more. + +Check out the other rooms; all look the same but without guards or a dagger symbol on the door. Move the rug to the room on the right; nothing changes. + +Go through the door: massive table, loads of chairs. Imp sat at the head of the table. + +## Page 305 + +Imp is selling a turban and a deck of cards. Only the tabaxi-looking person wasn't that interested. Just talking about gems. + +Smoke in the room: passageway to her. The smoke through using a wall hanging with a candle and incense, and takes you back in time before the guards were there. + +Trade 15A, rope, and tin of white paint for his cards and a turban. + +Go to next door on the right: forge, well-stocked, unused. Invar starts to fire it up, creates a goblet to offer to [uncertain: Stolchar], and he responds by refining the goblet. + +Go to far left door. Blank wall, thread hanging, lectern, bowl with a stick, and candlestick. Invar goes to make a pole. + +Left door. Quiver and suit of leather armour hanging on the wall, bow. Animal skin on the floor. Nare thinks it feels like a metaphor: antelope or gazelle skin on the floor. + +Back to cell main room and change the tapestry and light the candle and incense. Tapestry comes to life. + +## Page 306 + +Go through the painting: lively version of Brass City. Blue dragonborn and dragons around. Market trader notices us, selling exotic fruits. Calls me a silver [unclear] colour, but I still look green. + +2842 AP is the year of the coins. Cat is wearing a crown we recognise. + +Go through marketplace to the gardens. Looks the same as current day. Morgana thinks only 20 years passed and feels closer to Igraine. + +3480 year: the tabaxi ousted from the Brass, approximately 1050 years ago. + +Dirk finds an elemental to speak to, confirms we are on the Mortal plane. Says we need an invitation to get into the palace. Two blue dragonborn on the doors. + +Ask to see "gleams in the firelight", one of the statues called one. Agrees to see us. Inside looks identical to our plane. + +Woman bursts into the room, Qunien-looking, says she's finished. Tapestry of the marketplace, been working on it for a long time. Same one we "came" through? She enchanted it; it is the tapestry. She's been working on paintings too. + +## Page 307 + +Don't know how to get back. She's a dragon/serpent. Needs some of our things from our time to try to get us back. Give her glass beads Dirk got from Brass City and a scrap of my skirt. + +She casts a spell on another tapestry of the hallway back home with the statues. She says it was a vision; she's been getting them since Igraine came to see her. + +The book Bynx had has a page missing. Seems to be the page about her; she ripped it out. + +Put the tongs back. Just cat and light/cat missing. + +Decide to go to Light realm. Lower the chandelier and Bynx takes us through. + +Exact replica of the room, platinum throne. Doors to each realm, Attabone and Igraine. + +Go through Igraine door. Flat, vast, level field of buttercups and daisies, etc. Morgana used to be here lots. She speaks with plants. Lots of people here but there hasn't been for ages. Afterlife area? + +Tries to speak to Igraine. Ladybird says the cat is here. Gives us a clue: Morgana needs to channel her power and seek more of them, talk and play with them. + +## Page 308 + +Tries to locate cat, about a day away. Morgana connects to the cat through animals/birds and brings the cat back to us. Haze says it smells like the item we need, but seems too easy. Cat is alive, or not sure? It is dead. + +Morgana asks the bird to teach her how to do this again. It says yes, and she calls it Bruce. + +Go back to go into Attabre's realm. Door is locked to Bynx and Dirk. I just open it. + +Cloakroom. Sitting room, picture of five sphynxes above the fireplace. Have to remove an item of clothing to let us through the door. Cat on the floor, not the cat we are looking for. Have to chill with a drink before the next door opens. + +Dining room. Three doors out of the room. One is for the kitchen. Tabaxi come out with the meal we had on our ninth birthday. Another tabaxi comes in with a lute; asks him to tell us tales we haven't heard before. + +Leaders: the one who was a god before him. Leaders dead. Lifted the cold elements cloak in times of war and princes were important. + +## Page 309 + +All started to become wary of the princes. May have made the wrong deals to keep the princes in check. + +Leader's dad descended upon the earth to save his child from imprisonment. He was one of them who should have been imprisoned. He met with five others at Ground Towers. It was becoming dangerous. They made a pact: rule one but from afar. + +Connection to my father has allowed to view pieces of my past, so knows most of it. Icefang gave us all vision. + +Not just Icefang's daughter but his too. It's Attabre. + +I was killed because I got in the way. More strong-willed. She accepted their spells but I didn't, so they killed me. Icefang managed to get Kaylara out and then fell to slumber. + +When we venture forth on our next step, the gods we have befriended will give us gifts. But it will be hard to choose. If we die in the next realm we won't get back up. She warns Geldrin in particular. + +Geldrin gives Attabre a book and that will prevent the person who wants it from getting it. + +## Page 310 + +Our choice if we bring the dome down. The gods won't mind except the ones who benefit. The bringing down of the dome will weaken Throngore. + +Kasha was allowed to get certain souls through the Barrier, merbabies, to help her sister. We have been good Envoys. + +Bynx will need to decide if he is staying to build the Goliath race or go back to him. + +Geldrin asks how to get out of his pact with Kasha to get her Guardwell's soul. Not bound like the gods, but she will do everything she can to make it happen, which isn't much on the Mortal realm but is a lot when we go to her realm. + +Allows us to rest and we go back to the Mortal realm. + +The death realm turns to a portal and the light has disappeared. + +Required to leave the safety of the city in the death realm and free the merfolk babies. + +Geldrin gets part of Haze into Errol to help find the tail. + +Timon abseils into the portal, floating in nothing. Morgana turns into an eagle to explore. Dirk asks the ancestors if we will land safely if we jump in. + +## Page 311 + +The ancestors say Whel and Elliana and Dotharl jump straight in, followed by everyone else. + +Land outside a hole in another throne room. Goat man sat on the throne, bigger than Steven/Shark. His name is Sauver, one of Throngore's. Wants to know if we are from the Mortal realm. Seems like he is bound here until we arrived. Tells us Throngore requests an audience with us. + +In a room past the doors we are paralysed. About 100 ft tall and 40 ft wide. Bleeding crab-claw hands, demon, six arms, four legs. Throngore changes to a man in a black suit with a giant goat's head. + +Tells me he didn't think I'd dare to come here. Wants us to free a prisoner. We will know when we see him. As we are pally with Air, don't let her back in to take over his throne. We have many favours from the other gods. Kasha can't see us unless she is told we are here. + +We won't have time to free any other prisoner. Don't get involved in the main fight. Stay on the path, opposite to what we have been told previously by Hydran. Agree to what he has asked. + +## Page 312 + +Sends us to a path ending in a Dracula-style castle. Armies fighting near to the tower, but it's like the memory of a fight. + +All decide to walk off the path but follow it. Get closer to the fight. Goats to one side, wasp humanoids on the other. + +Come to a signpost. One arrow towards the prison, and Whel looks like a broken-off arrow. There is a hidden pathway [unclear] [uncertain: sea shell]. The other way has a single sea shell. Decide to go towards the sea shell. + +Cockroach climbs onto Morgana and says that's the wrong way but is also nodding. We continue down the path. Actual goat men seem to run past us. + +Shylow stops to talk to us. Says, "I have something on my horns," and rubs some dirt on them. Believes we are goat people and tell him our names begin with S. + +The prison disappears. Feels like walking through pushing fog. Building appears in front of us, gets very big. Giant purple crystal at the top of the spire with thousands of blue wisps surrounding it. Two wasp people on the door. + +## Page 313 + +Try to go around the building. Dead wasp person appears lying against a wall. Dotharl casts See Invisibility and more bodies and a goat man appear. + +Head towards him and investigate the wasps. Some black coins start wailing slightly when picked up, like the Harley pack of doom. Put them all on one wasp person, gather 15 in total. + +Head further round the tower: smashed-in door. Goat man near it looking irritated. When we get closer, he notices us and was waiting for us. Takes us inside. Lots of prison cells inside. + +[uncertain: Shevolt] recognises me and seems to malfunction and comes back. Sense of familiar dread comes over me and I feel like I've been here before. Starts acting weird. Ask him what he is here to do. Free a fellow goat. Ask who. Says Fred. Decide to kill him. + +Leader says I'm a prisoner who was stolen, and when hit with necrotic damage I briefly turn into a silver dragonborn with ribbons on my horns and a teddy attached to my belt. + +Rock guy in the cell next to "mine". Mum killed him and dedicated him to Kasha. Didn't like [uncertain: Stone runger?] me at first but grew to like me. + +Can see keys for the prisons on the leader's belts. + +## Page 314 + +Gods: + +Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. + +Thorn-beard elf in one of the cells is mortal and calls me darling. Reminds him of the time he went to the moon with my mum. Lord Briarthorn. + +Water Bull has his memories back. Can't get merbabies as can't enter the sea water. I enter into the water and shout for Globule. He comes and helps to free them. + +Kasha tries to break through the ceiling and God Bull is defiant, saying he will take his realm back. + +Globule tells Geldrin he is ready, so he rings the bell. Appear back in the throne room. Haze says it smells like something has changed. + +Go to the statues and put the tail back. Stone casing breaks off and reveals live tabaxi. King asks how long they've been stone. 2034 AP = 3480 approximately. Same time coins were smelted. They were cursed. + +They decide to go speak to the people after planning takes place. + +## Page 315 + +Priestess will guide us to Cardonald. + +We go to the fountains. Lots of gossip. Lord Hydran is very happy, doesn't know what's going on. Goes to find out, and Globule is back and is taking the merfolk babies back to the sea. + +Agree to go rest and meet the priest tomorrow, 12:30. + +Find an empty house and relax for a bit. Dirk feels someone scrying on him. + +Massive gush of water outside and six merfolk men clad in mother-of-pearl armour, with a merlady and a driftwood crown. Don't recognise her. They are here to serve us, following our deeds. Queen Mooncoral. We have righted the greatest wrong done to their people, which they didn't know about until recently. + +First birth an hour ago. Receive a sending stone from her. Asked her to look into where In'weo [uncertain] goes. Gives us a ring of fire resistance. + +Rest and sleep. diff --git a/data/4-days-cleaned/day-57.md b/data/4-days-cleaned/day-57.md new file mode 100644 index 0000000..f435327 --- /dev/null +++ b/data/4-days-cleaned/day-57.md @@ -0,0 +1,177 @@ +--- +day: day-57 +date: unknown +source_pages: + - 281 + - 282 + - 283 + - 284 + - 285 + - 286 + - 287 + - 288 + - 289 + - 290 + - 291 + - 292 + - 293 + - 294 + - 295 + - 296 + - 297 + - 298 + - 299 + - 300 + - 301 + - 302 + - 303 + - 304 + - 305 + - 306 + - 307 + - 308 + - 309 + - 310 + - 311 + - 312 + - 313 + - 314 + - 315 +complete: true +--- + +# Narrative + +Day 57 began in the Black Dragon City in the Underblame. At 08:00, the notes expected a council of all towns or states for a treaty to be signed. Infestus could ensure Salinas caused no issues, agreed to get the party to the Brass City, and offered scrolls, a charged shield crystal, and respite in his city. The party bought a newspaper whose only recorded items were that someone had been executed for not paying a bar tab, a Pegaus farm note, and nothing else interesting. + +Infestus's wife was waiting for them. She gave the party a powerful shield crystal and scrolls, smashed an orb, and produced a tiny human. After chanting, she turned the tiny human into a blue dragon. The dragon carried the party to just outside the Brass City, and they walked in. Two diplomats greeted them, one with smoke-skin type scales and a cobra head under his hood. They said "The People" now ruled the city. The Excellence of Air had left and never returned. Inside the walls the city was lush, relaxed, and did not seem enslaved. The Glowscale were excited and intrigued to see the party. The diplomats said elf wizards caused many issues, the old masters had enslaved the labour, and their friend Valenth was best sought at the citadel, still under the old regime, or at the Gaol. + +The party learned that many former slaves had repaired and maintained the city while others worked in the citadel on what was said to be a great weapon. A rebellion began when slaves wanted bread and were not allowed any; they protested and burst into flames. They had been told that once their ruler left they would be attacked, but no attackers had appeared, not even Envy. A gem-shop owner who had been taken to work in the citadel said he had cut a gem with facets that gleamed in the sun. Brass City was a place of great elemental power, with fountains and similar features coming from the planes. He said the supposed weapon was actually a body of shield crystal being crafted into a focusing crystal, stored in one of the four great minarets. Creatures in the towers had become unruly after the Excellence left. + +Dirk spoke to a fountain. The water wanted to go somewhere but was doing an important job because its father had told it to. It referred to Hydraxia before being given to the blue dragons, said the dragons went bad, said its father liked the merfolk but was annoyed by the purple thing, and wanted the party to fix the babies not going to him. If they sorted that out, the water promised to be on their side when the end came. + +At the citadel, the party saw blue dragons and Trixus, a tapestry carpet with a sun, a thick-set dwarf, and a slender woman with a bow, and a depiction of Garadwal speaking with the Dunner people. There was no evidence of a fire elemental living there. Statues lined the corridor facing the wall. One turned statue bore text like "runs in the streams" and possibly "high mountainness?" Another "slays foes bravely." A tabaxi with scales, missing one back leg and ears, was described as "fur of night scales of the sky," first princess of the union, and was slightly cracked. The sword had been made but perhaps the person had not, suggesting a Medusa-type spell. Other statues and objects involved weighted idols, jewellery, gravity and weight, the Lord of the Brass City, a necklace partly carved from a statue, something that hummed and "lungs," "Gleams in the first light," possible high priests of Goklhar, a fine-dressed figure with a book and rose, a brazier, and "Lies in the morning dew," prophet of the light. When a coin was placed in an orbiting spot, Ignan said, "We are close once more. I will help you say his name when you pick him up." + +The party picked up the cat. Geldrin said "There," and the cat became a big dog named There, who had come to aid them in their travels and was still due to their service to his mistress. There warned them not to damage anything in the city and said they must solve something else. The Excellence of Air had gone to the dome because he needed something to hint his task: to make a trap for Sierra so Browning could take her place. There remembered something and brought Bob and Bosh, still cursed, saying he could fix them when the party was done. To find the sword they needed wizards of the stars. At the top of stairs were six doors. There stopped at a door carved with Trixus. Beyond it was a throne room, with two doors beside the throne, that There called a control room controlling multiple planes at once. The sword was in the Earth plane with Tresmun's body; the party were warned not to leave the citadel while there, because returning would be difficult. When they went through, the pictures disappeared and the room changed completely. + +In the Earth-plane space, it was completely dark and Invar's magic did not work until There made Counterspell work. An earth elemental had not seen anyone from the prime plane in a long time and was used to tabaxi and cobra men. On his table were coal, a gold dragon that was actually silver and exactly like Mama Harthall, jagged granite, and shield crystal. The shield crystal was a piece of Tresmon. The coal was wet at the bottom, and Geldrin pulled water out of it. The granite had scorch marks. A door appeared when the items were picked up. Beyond it was a tavern, possibly Harn, full of cats. A ghost carrying a sword and shield had last been there and was not welcome, though everyone else was. The party found a table set for them. Geldrin received a Scroll of Fireball. Morgana felt sad in the happy tavern, as if something were missing; her salad hid a needle and thread with dried blood. + +A rat came to Morgana and disintegrated. Cacophony, previously met on page 231, appeared as a huge worm, died, and said it would show her something interesting. Her cider showed Rubyeye in a runed bathroom removing his eye. The cats hissed, the fire burned brighter, and then things returned to normal. A cat said the outcome was not predetermined and that the party had got rid of something bad following them. Dirk put the coal in the fire and saw a man saving a young girl; a clever way appeared with the rings. The party reached a small round temple near the remains of the Riversmeet bridge and the dwarven bridge, with Seward marble, about thirty benches carved with odd stones, five unlit altar candles, and ten gold statues under the altar representing different races but missing a dragon. The candles would not light until Invar used the torches around the room and Geldrin placed the wizard-race statues by the candles. They saw a vision of a large round table with seven people: five wizards, Hannah, and Icefang. Mama Harthall, angry and holding the blue ball, said, "This is enough. You can't continue this any more." A silver scale in dirt appeared and then a door. + +The next space was a thriving, decadent Goliath throne room. Lion-headdress rockmen flanked the throne. Someone who looked like Dirk with his sword was made of stone. Pictures showed a white dragon by a river, the party as they now were, and a young beautiful sphynx. The stone Dirk had the needed sword but had just got it back from a ghost. He wanted proof that the party were themselves and proof of how they killed Perodita. They gave the granite and saw a vision of Justiciars moving rocks off a dragon's body. The stone Dirk told them to return to the fiery-beard chap, Huntmaster Throne, and said stone Dirk had brought the dome down. Four doorways appeared: Moon, Dragon Head, Arching Wave, and Butterfly. The party were told not to choose the moon door but opened it because the last trinket was the moon crystal. It seemed to lead to Craters Edge, and Dirk heard garbled conversations. The dragon door showed snow, pine trees, dread, and a memory of flying or crashing through pine needles, scratching scales. The wave door let water through and left a tiny arm bone when closed. The butterfly door smelled of swampy Everchard and Morgana's house; it showed Morgana's newer-looking house about twenty years earlier. Betty saw someone there before Magpie stopped her: a younger Chorus who had "made" a baby that was given away and already had a name. Haze said these places all seemed a little different from the real locations. + +When the moon door reopened, it showed a black sky and crystal surface changed to the moon, then Brass City with a massive stone table and purple rock men missing an arm and head. The dragon door shifted to Pinesprings with a green/yellow flash, chatter, crying, and a baby dragonborn. Geldrin entered through the moon door and found Tresmon's body incomplete. A salamander expected a tabaxi and spoke of facets that gleam in the sun, trying to get light to go in but not out. Geldrin found where a shard had come from and put it back, causing all four doors to open safely. Andy saw the moment after the fight with the Mother: a dark-skinned woman running, with a tree behind her. He charged through a stone door. The wave door led to mother-of-pearl walls, a palace, two mermen, a pool, and the City of Aquarius, where Keepers of the Pact were welcome because Lord Hydram said they could come. The party concluded the doors were memories of promises or deeds, possibly distractions. + +The dragon door smelled of the sword and led to Provinta, a plateau town about twenty years earlier. The party came out four doors down from the narrator's house, and Haze led them toward the house, following the same baby crying. The narrator's mother saw a box from Everchard, and the family happily brought it in. Morgana said the Chorus made the narrator. At 1 AM, the notes exclaim "Elluin Hartwall!" The sword was in the narrator's house, inside the box with cloths. Morgana found another piece of black thread; the Chorus's eyes and mouth had been sewn shut with black thread. In the town square, a Founder's Day poster showed Bleakstorm and a Geldrin look-alike who was not Geldrin. It had been sent by sending stone and dated 17th March 991, which was not Founding Day. Bleakstorm was in the town hall with a freshly carved ice sculpture of an auroch. He could take them back to Brass City but wanted a personal favour: save him, just him. As the first man, he wanted to know whether Icefang's spirit was still present. It was, because Icefang died in the dome. Bleakstorm wanted the party to free Icefang's spirit. He clapped and sent them back to Brass City's plush throne room, now with only three wall pictures. The party put the sword back into its statue, fixing the cracks. + +Bynx called on Trixus to ask why they were fixing the statues. Trixus said the statues were "the Council." The party next sought the necklace. Haze carried them back to the throne room and an air picture. Dothurl looked different and felt stronger. Haze led them to the normal-plane statue room and through a door to a jewellery box. A tabaxi playing piano wore a necklace called "Drinker beads of wine." The party pickpocketed it, and she turned over a five-minute hourglass. In a theatre room they found more false necklaces. Ruby eyes glittered with "useless presents." They eventually found the real necklace on a coat peg, dispelled invisibility, and made it real instead of stone. Their checklist now had the bowl, necklace, and sword checked, with tongs, coat, and a dragonborn-tail crouched fake remaining. After returning the necklace, it melded to the statue while still remaining a necklace. + +For the offering bowl, the room changed again, leaving two paintings and moving the candelabra to the ceiling. Geldrin touched a painting, disappeared, and ended up shrunken in the narrator's waterskin until school biggening juice restored him. Dothurl activated the painting and the party entered a replica throne room with paintings of a vortex or whirlpool, tropical fish under tropical sea, an icy swamp lake, and a calm still lake. Dirk spoke Aquan to Globule in the whirlpool. Globule said Noxia trapped him because he worked for "Him"; when asked who, he said, "Him, Hydram, then Noxia." "Him" was forgotten more than lost, and Globule had no arms or legs. + +Behind the throne, two jellyfish-headed people guarded the bowl and said the party could not enter or leave because Noxia had issued a death warrant against them. The party fought and killed them. The room held a mother-of-pearl and coral sphynx throne. A painting with tropical fish showed a large closed clam, a shipwreck, and a fish man with the key to the prison. The clam called the whirlpool a bad prisoner. Invar and Dothurl entered another painting and found what seemed to be Morgana's hut near dead Everchard trees, all boarded up and surrounded by birds. Morgana entered, smelled salt, and was called "Mother" by a bird. The notes wonder whether "he" who was gone amid devastation was a dragon, see-through, or Salanus. + +Inside the hut were a white rose, a sea conch with a mouthpiece, and a wooden offering bowl like the one sought. Morgana blew the conch and released a watery genie-like entity: Myriad one, Lord of the High Waters, seeker of truth for Hydrus. He offered two wishes, one of which had to free him, and said he needed to present the bowl to the clam. The party did not think he was telling the truth. They took the items and birds. `[uncertain: Iachdais]` told them in Common that the other birds were with him; his name was Mourning. Mourning had been imprisoned for creating funerals and killing people who cut down trees or killed rabbits. Morgana had "created" him and had taken a while to come get him. The clam said he did not want the bowl and that Myriad was his friend, true but hiding things. The clam wanted freedom, and only a friend whose name he knew but would not give could free him. + +The party left the paintings and explored other doors: a mother-of-pearl dragon door that caused awe, dread, and reverence; a whirlwind elemental door; an oxen-yoke door for an auroch; a room of shells with a porcelain or crystalline salt dragon not recognized as any known dragon species; a smaller quartz dragon like Salanus? that shattered and was reassembled with many tiny cuts; and storage paintings of people the party knew depicting their deaths. Dothurl entered an orb door and found a familiar domed room with a slight breeze and a small mechanical bird. `[uncertain: Eroll?]` said it was him and that he had been trapped there while looking for Ruby Eye from the Goliath tower. The Eroll in Geldrin's bag and the room Eroll were identical. Dothurl touched the room Eroll, cracks spread, the breeze stopped, and psychic damage hurt the narrator until the door was repaired. + +The yoke door held an offering bowl in a wobbly glass case on a plinth. Morgana removed the case but smashed it, and the plinth broke when the party tried to replace the bowl. Invar created a new case and fixed the plinth. Another rawhide-inlaid door marked the bowl as a tabaxi prayer to Igraine. Beyond it were identical roots on plinths. Invar's attempts to identify them produced anxiety and visions: a voice said, "A sacrifice & I will let you have it," and a later underground scorpion vision said, "The entrance shows the way, a pain you will take with you." The party tried filling the bowl with booze and praying, but received no answer. + +Further rooms held mushrooms, flowers, trees, bushes, [uncertain: swampy] ground, a bloodied knife in a glass case, a hanging cage with nine condensation-covered globes like pokeballs, and two jellyfish children who had been told by Lady Noxia not to let anyone in. Their parents were the jellyfish people the party had killed. Dirk told the children their parents were not coming back. The dead jellyfish people had shells and pearls worth about 500 gp and scorpion-like symbols under their armour on chains. The White Rose was identified as the Rose of Reincarnation, extending the reincarnation time limit from ten days to one thousand years. + +Invar called for the Lord of High Waters and asked that Globule be freed. The Lord demanded freedom first, but the party did not trust him and persuaded him that he was not powerful enough to do it. He freed Globule anyway. Globule warned not to free him, calling him a con artist whom Hydran had imprisoned; the Lord sulked back into his coral. Globule might recognize the true bowl. The Lord of Tar was trapped inside the clam. A foreigner was trapped by the merfolk, a spirit of Igraine, mean, about twenty years ago; Globule did not see whether the bird who flew away came out. The correct bowl was not in the bowl room and was stone, not metal. Globule mentioned Stone Sages, snake-headed people who turn others into stone, and suspected Noxia may have replaced him. The pokeballs contained water elemental babies, perhaps required for the sacrifice; Globule collected all of them and gave them to Dirk. + +The "Submarine" door led to Hydran's realm. Dirk entered the lake painting and could not find a way back. He saw a figure with birds. Morgana entered, initially could not find Dirk, left, then returned to help him. A pigeon told Dirk it was too soon and landed on Morgana's head, saying she had fixed his wing 300 suns ago. The pigeon said Mourning was not evil, but was Morgana's enforcer, and that help had been needed after what someone did to her; it was surprised she still had her eyes. The word "Dome" appeared, the village changed only after Dirk left the painting, and an odd scaled fish jumped from the lake. + +Beyond the Submarine door was a wall of water, a barnacle door with a rusted handle, and a watchful starfish. A chamber held shark statues jumping over two dying corpses and a parchment contract promising to save babies' spirits from the realm of darkness. The party learned Kesha is Noxia's sister. A merlady appeared, said the party were keepers as she was, and that Hydran said they needed help. She advised that when in the dark plane they should steer off the beaten path. Hydran would get the bowl if the party agreed to sign the Pact; Lord Hydran accepted them, identified himself as patron of travel, and offered information and Pact membership. The merlady agreed to revive the jellyfish people, and the party pushed them back toward the painting room, which had gone dark. + +The merlady showed them carvings. One showed a man with a staff and a hand, like Envi, described as the one who captured their allies. He was free: his body had awakened in his laboratory, his spirit had reached his base and occupied a body there, and he had gained power and control over the crystals. His goal was uncertain, and he had not been near his other parts. Another warning showed a creature made of living flames, with a small six-armed creature the party had killed looking up at him. This was the creature who wished to "pull a Noxia." He was a prince, in the party's next location, and they were about to walk into his house; they wished to make him a god. Noxia had replaced someone, but Kesha had not. A later picture showed Morgana, Igraine with a knife and birds, standing on the bones of a small dragon. It had not happened yet and was not a picture of murder or the weapon. The notes connect this to reincarnation and the narrator's bones, asking why the narrator does not remember properly if Morgana reincarnated them, whether because of the worm or something else. A final room held the bowl on a plinth and a carving of Noxia wounded by an arrow, with two figures at her sides; where earlier images showed Sierra's dogs, this one showed the six party members. Invar took the bowl. When asked where the vessel that took down the god was, the merlady sent them back and briefly seemed to turn into a hammerhead shark. Back in the throne room, only the fire painting remained, the chandelier was fully ablaze, and a dark inky shadow covered the floor. Globule stayed with the party but Nare thought he was dangerous. Globule wanted to take the baby pokeballs to a river, then stayed with the fountain elementals while the party replaced the bowl. + +The party next pursued the tongs through the fire painting. Invar felt his presence to `[uncertain: Stolchar]` lessen. They appeared in a fire-realm throne room with broken doors and a missing throne. Haze disliked it because he could not smell Sierra, suggesting it might be someone else's realm. Six identical statues stood below. Red-skinned, small-horned beings guarded doors and served Sultan Azar Nuri. The Sultan, a fifty-foot-tall horned being in a turban, disliked Invar's symbol to `[uncertain: Stolchar]`. Envi worked for him and had Tresmun's arm. Geldrin told Azar Nuri to tell Envi to bring it to him; Azar said if Geldrin did, Envi would bring it. Azar Nuri lacked servants on the party's plane and struggled to move minions there. He cared only about retaking his power. He wanted the party to open passageways and continue fixing the crystal body being carved for him. Geldrin tried to promise to make him god of death. The bargain recorded was: tongs now; gold when the crystal is complete; force the god of death to make a mistake and appear on the party's plane; and open a passageway for Azar Nuri's envoys to come to the party's plane. Azar threw them the tongs, and they left. + +The fire realm held other rooms: a meeting room where an imp sold a turban and deck of cards, smoke that could become a passageway to "her" via a candle-and-incense wall hanging and took travellers back in time before guards were there, a well-stocked unused forge where Invar made a goblet for `[uncertain: Stolchar]` and received a refined goblet back, a blank-wall room with thread, a lectern, bowl, stick, and candlestick, and a room with a quiver, leather armour, bow, and antelope or gazelle skin on the floor. The party traded 15A, rope, and a tin of white paint for the imp's cards and turban. They changed the tapestry, lit the candle and incense, and the tapestry came alive. + +The tapestry led to a lively past version of Brass City full of blue dragonborn and dragons. A market trader selling exotic fruits called the narrator a silver [unclear] colour, though they still looked green. The year of the coins was 2842 AP, and a cat wore a crown the party recognized. In the marketplace and gardens, things looked like the current day, and Morgana thought only twenty years had passed and felt closer to Igraine. The notes also record year 3480, when the tabaxi were ousted from the Brass, approximately 1050 years earlier. An elemental confirmed they were on the Mortal plane and needed an invitation to enter the palace. They asked to see "Gleams in the Firelight," one of the statues, and were allowed in. A Qunien-looking woman burst in saying she had finished the marketplace tapestry they had come through; she had enchanted it and had also been working on paintings. She was a dragon or serpent and needed objects from the party's time to return them, so they gave Dirk's Brass City glass beads and a scrap of the narrator's skirt. She cast a spell on another tapestry of the home hallway with the statues, saying it was a vision she had received since Igraine came to see her. Bynx's book was missing a page, apparently the page about her, which she had ripped out. The party returned and put the tongs back, leaving only cat and light/cat matters missing. + +The party chose the Light realm. Bynx lowered the chandelier and took them through to an exact replica room with a platinum throne and doors to each realm, including Attabone and Igraine. Through Igraine's door lay a flat, vast field of buttercups and daisies where Morgana had often been. She spoke with plants. It may have been an afterlife area; many people had once been there, but not for ages. A ladybird said the cat was there and gave a clue: Morgana needed to channel her power, seek more of them, and talk and play with them. Morgana located the cat about a day away, connected through animals and birds, and brought it back. Haze said it smelled like the needed item but seemed too easy. The cat was alive, or not certain; then it was dead. Morgana asked the bird to teach her this again, and it agreed. She named it Bruce. + +The party then entered Attabre's realm. The door was locked to Bynx and Dirk, but the narrator could open it. A cloakroom led to a sitting room with a picture of five sphynxes above the fireplace; visitors had to remove an item of clothing to pass. A cat on the floor was not the cat they sought. They had to relax with a drink before the next door opened. A dining room produced tabaxi serving the meal from the narrator's ninth birthday and a lute-playing tabaxi whom they asked for unknown tales. The lore said there had been a leader who was a god before Attabre, dead leaders, cold elements' cloak lifted in times of war, and important princes. People became wary of the princes and may have made the wrong deals to keep them in check. The leader's father descended to earth to save his child from imprisonment; he was one of those who should have been imprisoned. He met with five others at Ground Towers as things grew dangerous, and they made a pact: rule one, but from afar. + +Attabre said the narrator's connection to their father had let him view pieces of their past, so he knew most of it. Icefang gave them all vision. The narrator was not only Icefang's daughter but Attabre's too. The narrator was killed because they got in the way, being more strong-willed; Kaylara accepted the spells, but the narrator did not, so they killed the narrator. Icefang got Kaylara out and then fell into slumber. Attabre warned that when the party ventured to the next step, the gods they had befriended would give gifts, but choosing would be hard. If they died in the next realm, they would not get back up. He warned Geldrin in particular. Geldrin gave Attabre a book, preventing whoever wanted it from getting it. + +The choice to bring down the dome remained the party's. Attabre said the gods would not mind except those who benefited, and bringing down the dome would weaken Throngore. Kasha had been allowed to get certain souls through the Barrier, the merbabies, to help her sister. The party had been good Envoys. Bynx would need to decide whether to stay and build the Goliath race or return to him. Geldrin asked how to leave his pact with Kasha to get Guardwell's soul. Attabre said Kasha was not bound like the gods, but she would do everything she could, which was limited on the Mortal realm but strong in her realm. Attabre let the party rest, and they returned to the Mortal realm. The death realm became a portal and the light disappeared. The party had to leave the safety of the city in the death realm and free the merfolk babies. Geldrin put part of Haze into Errol to help find the tail. Timon abseiled into the portal, Morgana became an eagle to explore, and Dirk asked the ancestors whether they would land safely. The ancestors said Whel, Elliana, and Dotharl should jump straight in, followed by everyone else. + +They landed outside a hole in another throne room. A goat man on the throne, bigger than Steven/Shark, named Sauver and one of Throngore's, asked if they came from the Mortal realm. He seemed bound there until their arrival and said Throngore requested an audience. Past the doors, the party were paralysed before a demon about one hundred feet tall and forty feet wide, with bleeding crab-claw hands, six arms, and four legs. Throngore then changed into a man in a black suit with a giant goat's head. He told the narrator he had not thought they would dare come there. He wanted them to free a prisoner they would know when they saw him. Since they were friendly with Air, he told them not to let her back in to take over his throne. The party had favours from many gods. Kasha could not see them unless told they were there. They would not have time to free any other prisoner, should not get involved in the main fight, and should stay on the path, contradicting Hydran's earlier advice to leave the beaten path. The party agreed. + +Throngore sent them to a path ending at a Dracula-style castle, with armies fighting near a tower like a memory of a fight: goats on one side, wasp humanoids on the other. The party tried to walk off the path while still following it. A signpost pointed one way toward the prison; Whel looked like a broken-off arrow. There was a hidden pathway [unclear] [uncertain: sea shell], and another way had a single sea shell, which they chose. A cockroach climbed onto Morgana and said it was the wrong way while nodding, so they continued. Shylow stopped and spoke to them, said he had something on his horns, rubbed dirt on them, believed they were goat people, and accepted names beginning with S. The prison disappeared, fog pressed around them, and a building appeared and grew huge. A giant purple crystal topped its spire, surrounded by thousands of blue wisps, with two wasp people at the door. + +Trying to circle the building revealed dead and invisible wasp bodies after Dotharl cast See Invisibility. The party found fifteen black coins that wailed like the Harley pack of doom and put them all on one wasp body. Farther around was a smashed-in door and an irritated goat man who had been waiting for them. Inside were many prison cells. `[uncertain: Shevolt]` recognized the narrator, malfunctioned, and returned. A familiar dread made the narrator feel they had been there before. When asked his purpose, he said he was there to free a fellow goat named Fred, and the party decided to kill him. The leader said the narrator was a prisoner who had been stolen. When hit by necrotic damage, the narrator briefly became a silver dragonborn with ribbons on the horns and a teddy on the belt. A rock guy was in the cell next to "mine." The narrator's mother had killed him and dedicated him to Kasha; he had not liked `[uncertain: Stone runger?]` or the narrator at first but grew to like them. The keys to the prisons were visible on the leader's belt. + +The notes list gods or god-like names and counts: Kasha; Throngore 4/13; Shylow; Sjorra; Law 4/13; [unclear: Ice?]; Hydran; Noxia; Squwal; Bridske 4; Attabre 4. In one cell a thorn-beard elf, mortal, called the narrator darling and remembered going to the moon with the narrator's mother. He was Lord Briarthorn. The Water Bull had his memories back but could not reach the merbabies because he could not enter the sea water. The narrator entered the water and shouted for Globule, who came and helped free them. Kasha tried to break through the ceiling, and God Bull defied her, saying he would take his realm back. Globule told Geldrin he was ready; Geldrin rang the bell, and the party reappeared in the throne room. Haze said something smelled changed. + +The party returned to the statues and put back the tail. The stone casing broke away and revealed live tabaxi. The king asked how long they had been stone. The notes equate 2034 AP with approximately 3480, the same time the coins were smelted, and say they were cursed. The restored figures planned to speak to the people after planning. A priestess would guide the party to Cardonald. At the fountains, gossip said Lord Hydran was very happy but did not know what was happening; he went to find out, and Globule was back, taking the merfolk babies to the sea. The party agreed to rest and meet the priest the next day at 12:30. + +The party found an empty house and relaxed. Dirk felt someone scrying on him. Outside came a massive gush of water and six merfolk men in mother-of-pearl armour with a merlady wearing a driftwood crown, unfamiliar to the party. They had come to serve the party because of their deeds. She was Queen Mooncoral. The party had righted the greatest wrong done to the merfolk people, which the merfolk had not known about until recently. The first birth had occurred an hour earlier. Queen Mooncoral gave the party a sending stone, was asked to investigate where In'weo [uncertain] goes, and gave them a ring of fire resistance. The party rested and slept. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Infestus, Infestus's wife, Salinas, Valenth, Excellence of Air, Envy, Dirk, Hydraxia, Hydran / Hydram / Lord Hydran, Trixus, Garadwal, Dunner people, Lord of the Brass City, Goklhar, "Lies in the morning dew," Ignan, Geldrin, There, Sierra, Browning, Bob, Bosh, Tresmun / Tresmon, Invar, Mama Harthall, Morgana, Cacophony, Rubyeye, Hannah, Icefang, Perodita, Justiciars, Huntmaster Throne, Haze, Betty, Magpie, the younger Chorus, Andy, the Mother, Lord Hydram, Elluin Hartwall, Bleakstorm, Bynx, Dothurl / Dotharl, Globule, Noxia, Myriad one / Lord of the High Waters, Hydrus, `[uncertain: Iachdais]`, Mourning, Salanus, `[uncertain: Eroll?]` / Errol, Lady Noxia, Lord of Tar, Stone Sages, Kesha, the merlady, Envi, Nare, `[uncertain: Stolchar]`, Thace, Sultan Azar Nuri, Qunien-looking dragon/serpent woman, Igraine, Bruce, Attabone, Attabre, Kaylara, Kasha, Guardwell, Whel, Elliana, Timon, Sauver, Steven/Shark, Throngore, Air, Shylow, `[uncertain: Shevolt]`, Fred, `[uncertain: Stone runger?]`, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Lord Briarthorn, Water Bull / God Bull, Cardonald, Queen Mooncoral, and In'weo [uncertain]. + +Groups and factions mentioned include the party, towns and states at the expected treaty council, The People of Brass City, Glowscale, old masters, elf wizards, former slaves, blue dragons, blue dragonborn, dragonborn, air elementals, the Council statues, wizards of the stars, tabaxi, cobra men, cats, Goliaths, rockmen, sphynxes, Keepers of the Pact, merfolk, merbabies, jellyfish-headed people and jellyfish children, water elemental babies, Stone Sages, red-skinned horned fire beings, Azar Nuri's envoys, gods, princes, Envoys, goat men, wasp humanoids, and mother-of-pearl-armoured merfolk. + +Places mentioned include the Black Dragon City in the Underblame, Infestus's city, Brass City, the Brass City citadel, Gaol, the lush inner city, the four great minarets, elemental fountains, the citadel corridors, the Trixus control room, the Earth plane, Harn? tavern, the small round temple near the Riversmeet bridge and dwarven bridge, Riversmeet, the Goliath throne room, Craters Edge, Pinesprings, Everchard, Morgana's house, the moon-like crystal surface, Provinta, the narrator's house, the town square, Bleakstorm's town hall, the normal-plane statue room, the theatre room, the water painting realm, Morgana's hut with dead Everchard trees, Hydran's realm, the realm of darkness / dark plane, fire realm, Azar Nuri's fire garden and throne room, past Brass City, the marketplace, the palace, Igraine's field / possible afterlife, Attabre's realm, the Mortal realm, Kasha's realm, the death realm, Throngore's throne room, the path to the Dracula-style castle, the memory battlefield, the prison with the purple crystal and blue wisps, the sea-water prison area, and the empty house where the party rested. + +Creatures and creature-like beings mentioned include the orb-made blue dragon, smoke-scaled cobra-headed diplomat, air elementals, fountain water elemental, earth elemental, There as cat/dog, cats, the huge worm form of Cacophony, stone Dirk, the white dragon by a river, young beautiful sphynx, baby dragonborn, salamander, mermen, merlady, jellyfish-headed guards, clam, fish man, birds, Mourning, crystalline and porcelain dragons, small mechanical bird, water elemental babies, odd scaled fish, living-flame prince, hammerhead-shark transformation, imp, ladybird, pigeon / Bruce, Throngore's demon form, cockroach, wasp people, goat men, Water Bull / God Bull, live tabaxi released from stone, and merfolk retinue. + +# Items, Rewards, and Resources + +Items and resources mentioned include scrolls, a powerful charged shield crystal, the newspaper, Infestus's wife's smashed orb, shield-crystal body / focusing crystal, the four great minarets, planar fountains, the citadel statues, a cracked sword, weighted idols, jewellery, a carved necklace, the rose and book statue, brazier, orbiting coin, Trixus-carved door, plane-control throne room, coal, silver dragon object like Mama Harthall, jagged granite, shield crystal piece of Tresmon, wet coal water, Scroll of Fireball, needle and bloodied thread, Rubyeye eye-removal vision, rings, Seward marble, five altar candles, ten gold wizard-race statues, blue ball held by Mama Harthall, silver scale, moon crystal, tiny arm bone, black thread, the baby box from Everchard, sword in the box, Founder's Day poster dated 17th March 991, sending stone, ice auroch sculpture, the Council statue sword, "Drinker beads of wine" necklace, five-minute hourglass, fake necklaces, checklist box, school biggening juice, whirlpool/tropical/icy/calm lake paintings, wooden offering bowl, white rose / Rose of Reincarnation, sea conch, raven and other birds, mother-of-pearl and coral sphynx throne, shell room, porcelain salt dragon, quartz Salanus-like dragon, storage death paintings, Eroll mechanical bird, offering bowl in a glass case, rawhide-inlaid door, tabaxi prayer to Igraine, roots on plinths, bloodied knife, nine condensation-covered water-baby globes / pokeballs, shells and pearls worth about 500 gp, scorpion-symbol chains, barnacle door, watchful starfish, parchment contract to save babies' spirits, carvings of Envi, living-flame prince, Morgana and Igraine, Noxia wounded by an arrow, fire-realm tongs, Azar Nuri's turban, imp's deck of cards and turban, 15A, rope, tin of white paint, `[uncertain: Stolchar]` refined goblet, thread, lectern, bowl, stick, candlestick, quiver, leather armour, bow, animal skin, incense/candle wall hanging, past-Brass tapestry, glass beads from Brass City, skirt scrap, missing Bynx book page, chandelier, platinum throne, Attabre's book from Geldrin, Haze fragment put into Errol, fifteen wailing black coins, prison keys, bell, live-tabaxi tail restoration, Queen Mooncoral's sending stone, and ring of fire resistance. + +Strategic resources and plans include the expected treaty council, Infestus's support and restraint of Salinas, Brass City access, restoring the Council statues by returning their objects or body parts, There's guidance, Bob and Bosh's possible uncursing later, using planar/memory rooms to recover the sword, necklace, bowl, tongs, cat, light/cat, and tail, fixing Tresmon's shield-crystal body, freeing water elemental babies / merbabies from the realm of darkness, Hydran's Pact offer, possible godly gifts before the next realm, Attabre's warning about death in that realm, the choice to bring down the dome, weakening Throngore by bringing down the dome, Kasha's pact pressure over Guardwell's soul, Throngore's demand to free a prisoner and not let Air retake his throne, the priestess guiding the party to Cardonald, and Queen Mooncoral's merfolk support. + +# Clues, Mysteries, and Open Threads + +Brass City appears post-rebellion and no longer openly enslaved, but its old-regime citadel still holds plane-control systems, air elementals, minarets, Council statues, and the shield-crystal body/focusing crystal. The Excellence of Air left and never returned, and after that the tower creatures became unruly. + +The fountain water elemental / Hydraxia thread links blue dragons, merfolk, a purple thing, and babies not reaching Hydran. Fixing the babies earned Hydran's support and later Queen Mooncoral's service, but the purple thing and exact mechanism remain unclear. + +The Council statues were cursed around 2034 AP / approximately 3480, the same time the coins were smelted and when the tabaxi were ousted from the Brass. Returning their objects or body pieces restored at least one live tabaxi king; the full Council roster and consequences remain unresolved. + +There says the Excellence of Air went to the dome to make a trap for Sierra so Browning could take her place. This links the dome, Air, Sierra, and Browning's replacement plan but does not fully explain who Sierra is or how the trap works. + +Tresmun / Tresmon's body is incomplete and spread across planes or memories. Geldrin restored a shard to the moon/Brass City body, Envi has Tresmun's arm, and the party restored the tail at the end of the day. + +The Earth-plane tavern sequence removed something bad that had been following the party, but the identity of that thing remains unknown. Cacophony died as a huge worm after showing Morgana Rubyeye removing his eye. + +Mama Harthall's vision at the round table with five wizards, Hannah, and Icefang shows her trying to stop something involving the blue ball. It appears tied to the old wizard project, Icefang, Hannah, and the narrator's past. + +The narrator's origin is reframed again: the younger Chorus "made" a baby, a box from Everchard delivered the narrator and sword to Provinta about twenty years earlier, the name Elluin Hartwall appears, Attabre says the narrator is both Icefang's and Attabre's daughter, Kaylara accepted spells while the narrator did not, and the narrator was killed for getting in the way. Necrotic damage in the death realm briefly revealed a silver dragonborn with horn ribbons and a teddy. + +Bleakstorm wants a personal favour to save him and free Icefang's spirit, which remains in the dome because Icefang died there. + +Globule, the Myriad / Lord of the High Waters, Lord of Tar, Hydran, Kesha, Noxia, the clam, Mourning, Igraine's spirit, and the water babies form a tangled water-realm prison problem. Globule calls the Lord of High Waters a con artist whom Hydran imprisoned, while Hydran still offers a Pact and helps free the babies. + +Kesha is Noxia's sister. Noxia replaced someone but Kesha did not. Noxia had issued a death warrant against the party, held jellyfish children as guards, and appears wounded in a carving with the party in place of Sierra's dogs. + +Envi is free, has awakened or occupied a body in his laboratory/base, controls crystals, captured the party's allies, works for Azar Nuri, and holds Tresmun's arm. His goal is unknown, and he has not been near his other parts. + +The living-flame prince who wants to "pull a Noxia" is in the party's next location and is being made into a god. This may connect to Azar Nuri, fire powers, and the god-of-death bargain. + +Geldrin's bargain with Sultan Azar Nuri grants the tongs but promises gold when the crystal is complete, an attempt to force the god of death to make a mistake and appear on the Mortal plane, and a passageway for Azar Nuri's envoys. This is dangerous and unresolved. + +The past Brass City tapestry maker is a dragon/serpent who had visions since Igraine visited, enchanted the marketplace tapestry, ripped out the page about herself from Bynx's book, and returned the party with time-linked objects. + +Igraine's realm, Morgana's animal/bird channeling, Bruce, Mourning, the birds calling Morgana Mother, and the picture of Morgana with Igraine over the narrator's small-dragon bones suggest Morgana's created/enforcer role and reincarnation history are still incomplete. + +Attabre's lore says the princes became dangerous, wrong deals may have kept them in check, a father descended to save an imprisoned child, and five others at Ground Towers made a pact to rule one but from afar. This may explain the gods' bargains, the prisons, and the dome. + +Bringing down the dome remains the party's choice. Attabre says the gods will not mind except those who benefit and that it will weaken Throngore. It may also affect Kasha's access to souls, Throngore's realm, and existing prison bargains. + +Hydran told the party to leave the beaten path in the dark plane; Throngore told them to stay on the path and avoid the main fight. The party chose the sea-shell direction despite contradictory signs and a cockroach warning that also nodded approval. + +Throngore wants a prisoner freed and does not want Air to retake his throne. The party found Lord Briarthorn and the Water Bull / God Bull in the prison, but the identity of the prisoner Throngore meant and what freeing Briarthorn means remain unresolved. + +The death-realm prison shows the narrator may once have been imprisoned there, stolen from a cell near a rock guy killed by the narrator's mother and dedicated to Kasha. `[uncertain: Shevolt]`, Fred, the prison keys, and `[uncertain: Stone runger?]` remain unclear. + +Queen Mooncoral and her merfolk now owe the party for righting the greatest wrong to their people, unknown to them until recently. The first merfolk birth occurred an hour before her arrival, and she gave a sending stone and ring of fire resistance. + +Dirk felt someone scrying on him while the party rested in Brass City. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index a4c1243..b4c0a83 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -37,6 +37,7 @@ sources: - data/4-days-cleaned/day-54.md - data/4-days-cleaned/day-55.md - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md --- # Aliases and Variant Spellings @@ -91,6 +92,18 @@ sources: - [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md): Papa Illmarne's dome, Papa's Dome, Papa Illmarne, Papa Marmaru. - [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Merocole, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Harthall, Windows, Ember, [uncertain: Antherous?]. - [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. +- [Brass City](places/brass-city.md): Brass City, the Brass, old-regime citadel, Brass City citadel. +- [Brass City Council](factions/brass-city-council.md): the Council, Council statues, cursed statues, live tabaxi restored from stone. +- [Queen Mooncoral](people/queen-mooncoral.md): Queen Mooncoral, merlady with a driftwood crown, Crown of Mooncoral [artifact/title context uncertain]. +- [Hydran / Hydram](people/hydran.md): Hydran, Hydram, Lord Hydran, Hydraxia [context uncertain], Hydrus [possibly related title/name]. +- [Globule](people/globule.md): Globule, whirlpool prisoner, water-baby guide. +- [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md): Myriad, Myriad one, Lord of the High Waters, seeker of truth for Hydrus, con artist [Globule's description]. +- [Azar Nuri](people/azar-nuri.md): Azar Nuri, Sultan Azar Nuri, fire sultan, living-flame prince [relationship uncertain]. +- [Igraine](people/igraine.md): Igraine, Lady Igraine, Egraine Brook [uncertain earlier variant], spirit of Igraine. +- [Throngore](people/throngore.md): Throngore, Thromgore [earlier variant], giant goat-headed lord, god/demon of the death realm. +- [Kasha](people/kasha.md): Kasha, Kasher [earlier uncertain variant]. +- [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md): Elliana Harthall, Elluin Hartwall, Elluin Hartwall!, narrator's Harthall identity, Kaylara [related but not silently merged]. +- [Minor Figures from Day 57](people/minor-figures-day-57.md): Infestus's wife, Salinas, Excellence of Air, Envy, Hydraxia, Lord of the Brass City, Goklhar, Lies in the morning dew, Ignan, There, Bob, Bosh, Mama Harthall, Cacophony, Rubyeye, Hannah, Bleakstorm, Dothurl / Dotharl, Nare, Kesha, Kasha, Mourning, Bruce, Sauver, Shylow, [uncertain: Shevolt], Fred, Sjorra, Law, [unclear: Ice?], Squwal, Bridske, Water Bull / God Bull, In'weo [uncertain]. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. - [Icefang](people/icefang.md): Icefang, Ice Fang, Altith, Atlih [uncertain], Ice Fury [uncertain related], elderly gentleman in the mental palace. diff --git a/data/6-wiki/clues/day-57-coverage-audit.md b/data/6-wiki/clues/day-57-coverage-audit.md new file mode 100644 index 0000000..e37f544 --- /dev/null +++ b/data/6-wiki/clues/day-57-coverage-audit.md @@ -0,0 +1,40 @@ +--- +title: Day 57 Coverage Audit +type: coverage audit +sources: + - data/4-days-cleaned/day-57.md +--- + +# Day 57 Coverage Audit + +This audit checks the Day 57 cleaned mention sections against wiki coverage. Links are relative from this `clues/` directory. + +| Subject or cluster | Coverage outcome | +|---|---| +| Infestus, Infestus's wife, Salinas, treaty/council setup, Black Dragon City in the Underblame | Existing [Infestus](../people/infestus.md); added [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | +| Brass City, The People, Glowscale, old masters, slave rebellion, citadel, Gaol, four great minarets, fountains, past Brass City | Added standalone [Brass City](../places/brass-city.md); Gaol/minarets/past spaces also in [Minor Places from Day 57](../places/minor-places-day-57.md). | +| Brass City Council, Council statues, tabaxi king, first princess, Gleams in the first light / Firelight, Lies in the morning dew, statue inscriptions | Added [Brass City Council](../factions/brass-city-council.md); inscriptions added to [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | +| Shield-crystal body, focusing crystal, Tresmun/Tresmon pieces, sword, necklace, bowl, tongs, cat/light-cat, tail | Added [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md); updated [Shield Crystals](../items/shield-crystals.md). | +| Queen Mooncoral, mother-of-pearl-armoured merfolk, first birth, sending stone, ring of fire resistance, In'weo [uncertain] | Added [Queen Mooncoral](../people/queen-mooncoral.md); gifts added to [Party Inventory](../inventories/party-inventory.md). | +| Hydran / Hydram / Hydraxia / Hydrus, City of Aquarius, Pact offer, travel patron, purple thing, merbaby rescue | Added [Hydran / Hydram](../people/hydran.md); updated [Open Threads](../open-threads.md). | +| Globule, whirlpool prisoner, water-baby globes, Lord of Tar / clam warning, babies to sea | Added [Globule](../people/globule.md); status and inventory updated. | +| Myriad / Lord of the High Waters, sea conch, wishes, Hydran imprisonment, con artist warning | Added [Myriad / Lord of the High Waters](../people/myriad-lord-of-the-high-waters.md); sea conch in [Minor Items from Day 57](../items/minor-items-day-57.md). | +| Noxia, Kesha, jellyfish guards and children, death warrant, scorpion symbols, Noxia wounded carving | Existing [Noxia](../people/noxia.md); Kesha and jellyfish figures covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [NPC Status](../people/status.md); scorpion symbols in [Minor Items from Day 57](../items/minor-items-day-57.md). | +| Kasha, Guardwell soul pact, merbaby souls through Barrier, Kasha realm, Kasha breaking through ceiling | Added [Kasha](../people/kasha.md); updated [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | +| Throngore, Sauver, Shylow, death realm, goat men, wasps, Air throne warning, path contradiction | Added [Throngore](../people/throngore.md); Sauver/Shylow in [Minor Figures from Day 57](../people/minor-figures-day-57.md); places in [Minor Places from Day 57](../places/minor-places-day-57.md). | +| Lord Briarthorn, thorn-beard elf, moon trip with narrator's mother | Added standalone [Lord Briarthorn](../people/lord-briarthorn.md). | +| Elliana Harthall / Elluin Hartwall / Kaylara identity, baby box, Chorus black thread, Icefang/Attabre parentage, death-realm silver dragonborn | Added [Elliana Harthall / Elluin Hartwall / Kaylara](../people/elliana-harthall.md); updated [Icefang](../people/icefang.md) and [Attabre / Altabre](../people/attabre-altabre.md). | +| Icefang, Bleakstorm, Mama Harthall, Hannah, five wizards, blue ball | Updated [Icefang](../people/icefang.md); Mama Harthall/Hannah/Bleakstorm in [Minor Figures from Day 57](../people/minor-figures-day-57.md); blue-ball line in [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | +| Attabre, Benu, Trixus, Garadwal, sphynx gift lore, dangerous princes, Ground Towers pact, divine gifts | Updated [Attabre / Altabre](../people/attabre-altabre.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md); existing [Benu](../people/benu.md), [Trixus](../people/trixus.md), and [Garadwal](../people/garadwal.md) remain relevant. | +| Igraine, Morgana birds, Mourning, Bruce, Rose of Reincarnation, tabaxi prayer bowl, future Morgana/bones carving | Added [Igraine](../people/igraine.md); Mourning/Bruce in [Minor Figures from Day 57](../people/minor-figures-day-57.md); Rose in [Minor Items from Day 57](../items/minor-items-day-57.md). | +| Envi / Envy, captured allies, laboratory body, crystal control, Azar Nuri, Tresmun's arm | Updated [Envoi](../people/envoi.md); added [Azar Nuri](../people/azar-nuri.md) and [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | +| Fire prince / living-flame creature, `[uncertain: Stolchar]`, Thace, fire servants, imp, cards, turban, forge goblet | Added [Azar Nuri](../people/azar-nuri.md); `[uncertain: Stolchar]`, Thace, imp, cards/turban/goblet in rollups [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Items from Day 57](../items/minor-items-day-57.md). | +| There, Haze, Errol/Eroll, Bob, Bosh, Dothurl/Dotharl, Nare, Timon, Whel, party-support figures | Covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md), [Party Inventory](../inventories/party-inventory.md), and existing party pages where present. | +| Rubyeye eye-removal vision, Cacophony worm, round temple, Riversmeet bridge, Harn? tavern | Rubyeye existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md); Cacophony and locations covered in Day 57 rollups. | +| Perodita proof, Justiciars, Huntmaster Throne, stone Dirk, Goliath throne room | Existing [Peridita](../people/peridita.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md); Day 57 specifics covered in [Minor Figures from Day 57](../people/minor-figures-day-57.md) and [Minor Places from Day 57](../places/minor-places-day-57.md). | +| Craters Edge, Pinesprings, Everchard, Morgana's house, Provinta, City of Aquarius, Hydran realm, fire realm, Igraine field, Attabre realm | Covered in [Minor Places from Day 57](../places/minor-places-day-57.md), with major Brass/Hydran/Igraine/Attabre/Throngore pages linked. | +| Items: newspaper, orb, coal, granite, silver dragon object, Scroll of Fireball, black thread, candles, gold statues, moon crystal, arm bone, Founder's Day poster, auroch sculpture, hourglass, false necklaces, biggening juice, porcelain/quartz dragons, mechanical bird, knife, black coins | Covered in [Minor Items from Day 57](../items/minor-items-day-57.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | +| Clues: 17th March 991, 2842 AP, 3480, 2034 AP, 1050 years, first birth, 12:30 meeting, someone scrying Dirk | Added to [Timeline](../timeline.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), and relevant pages. | +| Gods list: Kasha, Throngore 4/13, Shylow, Sjorra, Law 4/13, [unclear: Ice?], Hydran, Noxia, Squwal, Bridske 4, Attabre 4 | Major names have standalone/existing pages; uncertain/minor names in [Minor Figures from Day 57](../people/minor-figures-day-57.md). | + +No Day 58 material is included in this audit. diff --git a/data/6-wiki/clues/days-53-56-coverage-audit.md b/data/6-wiki/clues/days-53-56-coverage-audit.md index 12245d0..eee0276 100644 --- a/data/6-wiki/clues/days-53-56-coverage-audit.md +++ b/data/6-wiki/clues/days-53-56-coverage-audit.md @@ -23,4 +23,4 @@ sources: | Benu, Garadwal, Trixus, Bynx, sphinx brothers, dome-down choice | Existing pages updated or already covered: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), [Trixus](../people/trixus.md), [Elemental Prisons](../concepts/elemental-prisons.md). | | Cardinal, Rubyeye, Infestus, Wrath, Ember, Brass City route | Existing pages updated or linked: [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Infestus](../people/infestus.md), [Wrath](../people/wrath.md), minor figure/place/item rollups. | | Open questions from Days 53-56 | Added to [Open Threads](../open-threads.md). | -| Day 57 material from pages 281-287 | Intentionally deferred. Day 57 remains page transcriptions only until a later Day 58 marker confirms completion. | +| Day 57 material from pages 281-315 | Processed separately in [Day 57 Coverage Audit](day-57-coverage-audit.md). | diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 5c5923f..80d4e64 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -1,7 +1,7 @@ --- title: Known Passwords and Inscriptions type: stateful clues -last_updated: day-44 +last_updated: day-57 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -22,6 +22,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-57.md --- # Known Passwords and Inscriptions @@ -131,3 +132,12 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | `Taken my form give it back` | `data/4-days-cleaned/day-44.md` | Silver dragon / silver-green claw voice connected to Avalina. | | `The window like your paintings` | `data/4-days-cleaned/day-44.md` | Paper on Mr Moreley's desk after the void was freed. | | `seasoning` | `data/4-days-cleaned/day-44.md` | Next void-sphere clue: the seasoning was in the kitchen. | +| `We are close once more. I will help you say his name when you pick him up.` | `data/4-days-cleaned/day-57.md` | Ignan phrase after a coin was placed in an orbiting spot in the Brass City statue corridor. | +| `fur of night scales of the sky` | `data/4-days-cleaned/day-57.md` | Description of the cracked tabaxi-with-scales Council statue, first princess of the union. | +| `Drinker beads of wine` | `data/4-days-cleaned/day-57.md` | Necklace phrase tied to the tabaxi pianist and real necklace needed for a Council statue. | +| `A sacrifice & I will let you have it.` | `data/4-days-cleaned/day-57.md` | Voice from identical roots/plinths beyond the rawhide door. | +| `The entrance shows the way, a pain you will take with you.` | `data/4-days-cleaned/day-57.md` | Underground scorpion vision linked to the roots/plinths. | +| Contract to save babies' spirits from the realm of darkness | `data/4-days-cleaned/day-57.md` | Parchment in Hydran's realm; tied to merbaby rescue. | +| `This is enough. You can't continue this any more.` | `data/4-days-cleaned/day-57.md` | Mama Harthall's round-table vision line while holding the blue ball. | +| `rule one, but from afar` | `data/4-days-cleaned/day-57.md` | Attabre-realm lore about the pact made by a father and five others at Ground Towers. | +| `2034 AP = 3480 approximately` | `data/4-days-cleaned/day-57.md` | Date equation near restored Brass City statues and coin-smelting/tabaxi-ouster timing. | diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index 2952c86..47fa2c7 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -8,7 +8,7 @@ aliases: - Otasha's unborn nerfili baby bargain - Leptrop workaround first_seen: day-36 -last_updated: day-56 +last_updated: day-57 sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-42.md @@ -18,6 +18,7 @@ sources: - data/4-days-cleaned/day-52.md - data/4-days-cleaned/day-55.md - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md --- # Gods' Bargains Behind the Barrier @@ -42,6 +43,10 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Day 52 says the pacts are linked to the dome; if the dome ceases, the pacts cease, and all prisons release. - Day 55's Papa Marmaru warning and Merocole intrusion show another dome-bound or prison-adjacent being whose consent, corruption, and identity remain uncertain. - Day 56 says Browning's godhood ritual takes 1,000 years, was delayed when Soul crashed into the tower, and may now be powered by a crystal while the dome drains the party like elementals. +- Day 57 Attabre lore says dangerous princes, a father descending to save an imprisoned child, and five others at Ground Towers led to a pact to `rule one, but from afar`. +- Day 57 says the gods befriended by the party may offer gifts before the next realm, but choosing will be hard and death there may be final. +- Day 57 says bringing down the dome remains the party's choice, would weaken Throngore, and would not bother gods except those who benefit. +- Day 57 adds Kasha's merbaby soul route through the Barrier, Geldrin's pact pressure over Guardwell's soul, Hydran's Pact offer, and Azar Nuri's bargain for passageways and god-of-death manipulation. ## Related Entries @@ -63,3 +68,4 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Which pacts would fail if the dome fell, and which released prisoners would be threats, victims, or both? - Is Browning's godhood ritual another use of the same Vessel, bargain, or dome-prison mechanics? - Did Soul's crash into the tower interrupt a divine ascension, a bargain payment, or a prison-power cycle? +- Which Day 57 offers or threats are bargains the party has actually accepted: Hydran's Pact, Azar Nuri's terms, Throngore's prisoner demand, and Kasha's Guardwell pressure? diff --git a/data/6-wiki/factions/brass-city-council.md b/data/6-wiki/factions/brass-city-council.md new file mode 100644 index 0000000..a5474e9 --- /dev/null +++ b/data/6-wiki/factions/brass-city-council.md @@ -0,0 +1,40 @@ +--- +title: Brass City Council +type: faction or restored rulers +aliases: + - the Council + - Council statues + - cursed statues +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Brass City Council + +## Summary + +The Brass City Council were cursed into statues in the citadel. Trixus identified the statues as `the Council`, and restoring their missing items or body pieces began returning them to life. + +## Known Members and Statue Clues + +- A tabaxi with scales, missing one back leg and ears, was described as `fur of night scales of the sky`, first princess of the union, and slightly cracked. +- A sword statue was cracked until the party recovered and returned the sword. +- A necklace statue required the `Drinker beads of wine` necklace. +- A fine-dressed figure held a book and rose with a brazier nearby and the phrase `Lies in the morning dew`, prophet of the light. +- A statue or clue was called `Gleams in the first light` or `Gleams in the Firelight`. +- A tail was eventually restored, breaking stone casing and revealing live tabaxi; the king asked how long they had been stone. +- The notes tie 2034 AP to approximately 3480, the same time coins were smelted and tabaxi were ousted from the Brass. + +## Related Entries + +- [Brass City](../places/brass-city.md) +- [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) +- [Trixus](../people/trixus.md) + +## Open Questions + +- Who cursed the Council, and why? +- Which Council members remain unrestored? +- Are the restored Council aligned with The People, the old regime, Attabre, or another power? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 92df8ff..bf9d8dd 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -41,6 +41,7 @@ sources: - data/4-days-cleaned/day-54.md - data/4-days-cleaned/day-55.md - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md --- # Pentacity Campaign Wiki @@ -64,6 +65,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Day 47 Coverage Audit](clues/day-47-coverage-audit.md) - [Days 48 and 52 Coverage Audit](clues/days-48-52-coverage-audit.md) - [Days 53-56 Coverage Audit](clues/days-53-56-coverage-audit.md) +- [Day 57 Coverage Audit](clues/day-57-coverage-audit.md) ## People @@ -107,6 +109,17 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Figures from Day 47](people/minor-figures-day-47.md) - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md) - [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md) +- [Queen Mooncoral](people/queen-mooncoral.md) +- [Lord Briarthorn](people/lord-briarthorn.md) +- [Hydran / Hydram](people/hydran.md) +- [Globule](people/globule.md) +- [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md) +- [Azar Nuri](people/azar-nuri.md) +- [Igraine](people/igraine.md) +- [Throngore](people/throngore.md) +- [Kasha](people/kasha.md) +- [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md) +- [Minor Figures from Day 57](people/minor-figures-day-57.md) ## Places @@ -129,6 +142,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md) - [Magstein and Grimcrag](places/magstein-grimcrag.md) - [Minor Places from Days 53-56](places/minor-places-days-53-56.md) +- [Brass City](places/brass-city.md) +- [Minor Places from Day 57](places/minor-places-day-57.md) ## Factions @@ -139,6 +154,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Underbelly](factions/underbelly.md) - [Sahuagin/Fish Men](factions/sahuagin-fish-men.md) - [Sunsoreen Council](factions/sunsoreen-council.md) +- [Brass City Council](factions/brass-city-council.md) ## Items @@ -155,6 +171,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Items from Day 47](items/minor-items-day-47.md) - [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md) - [Minor Items from Days 53-56](items/minor-items-days-53-56.md) +- [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md) +- [Minor Items from Day 57](items/minor-items-day-57.md) ## Concepts and Events diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 4715fd9..ef83280 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -1,7 +1,7 @@ --- title: Party Inventory type: stateful inventory -last_updated: day-44 +last_updated: day-57 sources: - data/4-days-cleaned/day-03.md - data/4-days-cleaned/day-05.md @@ -21,6 +21,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-57.md --- # Party Inventory @@ -56,6 +57,12 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Garadwal's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadwal. | | Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, lab, Grand Towers sites, Dunnendale gate, Arrofarc mines, Goldenswell impact site, Menagerie, Ashhellier, and pylons. | | Void orb / sphere | party | `day-44` | `data/4-days-cleaned/day-44.md` | Left after the void entity recognized Brotor's eye and vanished; party needs eight spheres total. | +| Powerful charged shield crystal and scrolls | party | `day-57` | `data/4-days-cleaned/day-57.md` | Given by Infestus's wife before Brass City travel; exact scrolls not listed. | +| Scroll of Fireball | Geldrin | `day-57` | `data/4-days-cleaned/day-57.md` | Found at the cat tavern table. | +| Rose of Reincarnation | party | `day-57` | `data/4-days-cleaned/day-57.md` | White rose extending reincarnation limit from ten days to one thousand years; taken from Morgana's hut-like painting. | +| Water elemental baby globes / pokeballs | Dirk, then Globule | `day-57` | `data/4-days-cleaned/day-57.md` | Globule collected the nine globes and gave them to Dirk, later helped free the merbabies and took them to the sea. | +| Queen Mooncoral's sending stone | party | `day-57` | `data/4-days-cleaned/day-57.md` | Gift after the merbabies were freed. | +| Ring of fire resistance | party | `day-57` | `data/4-days-cleaned/day-57.md` | Gift from Queen Mooncoral. | ## No Longer Held or Transferred @@ -70,6 +77,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | | One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hearthwall auction. | | Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Harthwall wanted to see the party. | +| Sword, necklace, bowl, tongs, cat/light-cat, and tail statue artifacts | returned to Brass City statues/body | `day-57` | `data/4-days-cleaned/day-57.md` | Returned or used to restore Council/Tresmon body pieces; see [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md). | ## Promised, Expected, or Pending @@ -82,6 +90,8 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Jelly Fish Broach retrieval | promised attempt | `data/4-days-cleaned/day-36.md` | Mercy's contractor wanted the party to retrieve it from Grand Towers floor 74 for a female buyer outside the Barrier. | | Free Icefang's ice elemental | promised to water elementals | `data/4-days-cleaned/day-36.md` | Water elementals required this before helping with dragon flames. | | Peridot Queen aid | offered through Basalisk | `data/4-days-cleaned/day-41.md` | Aid is explicitly self-interested and conditional. | +| Queen Mooncoral's merfolk service | promised | `data/4-days-cleaned/day-57.md` | Queen Mooncoral and mother-of-pearl-armoured merfolk came to serve the party after the merbaby rescue. | +| Azar Nuri bargain | promised by Geldrin / dangerous | `data/4-days-cleaned/day-57.md` | Tongs now; gold when the crystal is complete; force god of death to appear on Mortal plane; open passageway for Azar Nuri's envoys. | ## Unclear Custody or Status @@ -118,3 +128,5 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Green liquid / possible Noxia blood | `day-44` | `data/4-days-cleaned/day-44.md` | Morgana bought it; it came from the desert and wanted to return to the rest of itself. | | Power armour, automaton core, black crystal door apparatus | `day-44` | `data/4-days-cleaned/day-44.md` | Found above the Air common room; custody/use not recorded. | | Empty glass orb and void-dust instructions | `day-44` | `data/4-days-cleaned/day-44.md` | Instructions say to gather dust, take it to the Aurises, and return to Air room. | +| Imp's deck of cards and turban | `day-57` | `data/4-days-cleaned/day-57.md` | Traded for 15A, rope, and tin of white paint; custody after purchase not explicit. | +| Fifteen black wailing coins | `day-57` | `data/4-days-cleaned/day-57.md` | Found on death-realm wasp bodies and placed onto one wasp body; no later custody recorded. | diff --git a/data/6-wiki/inventories/party-treasury.md b/data/6-wiki/inventories/party-treasury.md index 0cef0e9..c9e20b4 100644 --- a/data/6-wiki/inventories/party-treasury.md +++ b/data/6-wiki/inventories/party-treasury.md @@ -1,7 +1,7 @@ --- title: Party Treasury type: stateful treasury -last_updated: day-36 +last_updated: day-57 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -18,6 +18,7 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-57.md --- # Party Treasury @@ -34,6 +35,7 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 70 gp and four tower pennies | `day-16` | `data/4-days-cleaned/day-16.md` | Recovered after the black dragonborn fight. | | 400 gp | `day-19` | `data/4-days-cleaned/day-19.md` | Reward after killing Kairbidius. | | 50 platinum pieces in Frawshers currency and a Grand Towers penny | `day-32` | `data/4-days-cleaned/day-32.md` | Stolen from the Goldenswell captain's office by Bug Geldrin. | +| Shells and pearls worth about 500 gp | `day-57` | `data/4-days-cleaned/day-57.md` | Found on killed jellyfish people with scorpion-symbol chains; final party custody not explicit. | ## Spent, Deposited, or Transferred @@ -48,6 +50,7 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 25 platinum | `day-36` | `data/4-days-cleaned/day-36.md` | Paid to the captain after Newgate's gargoyle delivered the Claymeadow message. | | Greasing guards' palms | `day-36` | `data/4-days-cleaned/day-36.md` | Paid or bribed guards to see Seneshell; amount not recorded. | | Grand Towers penny and two pennies | `day-36` | `data/4-days-cleaned/day-36.md` | Offered to Bridget's statue, causing colored eye-glows and door travel. | +| 15A, rope, and tin of white paint | `day-57` | `data/4-days-cleaned/day-57.md` | Traded to an imp for a deck of cards and turban. | ## Promised, Offered, or Pending @@ -61,6 +64,7 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 5 sp per skull | `day-11`, `day-12` | `data/4-days-cleaned/day-11.md`, `data/4-days-cleaned/day-12.md` | Skull-buying offer from Iakaxi/Chalky's master; no completed sale recorded. | | auction proceeds unknown | `day-22` | `data/4-days-cleaned/day-22.md` | Zinquiss planned to auction the mother-of-pearl elemental chariot in 7 days. | | Hearthwall auction proceeds unknown | `day-32` | `data/4-days-cleaned/day-32.md` | One Brass City platinum piece was added to auction; the chariot bidding reached 11,900 gp and possibly 14,000 gp, but party proceeds are unclear. | +| Gold when the crystal is complete | `day-57` | `data/4-days-cleaned/day-57.md` | Part of Geldrin's bargain with Azar Nuri; amount and payer unclear. | ## Unclear or Not Party Treasury @@ -72,3 +76,4 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | `50 per 200g` | `day-15` | `data/4-days-cleaned/day-15.md` | Downpayment phrase preserved as uncertain. | | 150 gp if fight / 5 gp if not | `day-19` | `data/4-days-cleaned/day-19.md` | Possible ship-fight arrangement; unclear or superseded by the 400 gp Kairbidius reward. | | Random copper piece around Bridge Statue | `day-36` | `data/4-days-cleaned/day-36.md` | Observed about five feet around the statue; not clearly party money. | +| Fifteen black wailing coins | `day-57` | `data/4-days-cleaned/day-57.md` | Gathered from death-realm wasp bodies and then put on one wasp body; not normal treasury and final status unclear. | diff --git a/data/6-wiki/items/minor-items-day-57.md b/data/6-wiki/items/minor-items-day-57.md new file mode 100644 index 0000000..cf76a60 --- /dev/null +++ b/data/6-wiki/items/minor-items-day-57.md @@ -0,0 +1,40 @@ +--- +title: Minor Items from Day 57 +type: items rollup +sources: + - data/4-days-cleaned/day-57.md +--- + +# Minor Items from Day 57 + +| Item | Details | Coverage | +|---|---|---| +| Powerful shield crystal and scrolls | Given by Infestus's wife before Brass City travel. | [Shield Crystals](shield-crystals.md), [Party Inventory](../inventories/party-inventory.md). | +| Newspaper | Included execution for unpaid bar tab, Pegaus farm, and nothing else interesting. | Rollup. | +| Infestus's wife's orb | Smashed to produce a tiny human transformed into a blue dragon. | Rollup. | +| Weighted idols and jewellery | Statue-corridor items tied to gravity, weight, and Lord of the Brass City. | [Brass City Council](../factions/brass-city-council.md). | +| Orbiting coin | Triggered Ignan phrase about helping say his name when picked up. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Coal, silver dragon object, jagged granite, shield crystal | Earth-plane table items; shield crystal was piece of Tresmon, coal was wet, granite scorched, silver dragon matched Mama Harthall. | [Tresmon's Body and Statue Artifacts](tresmons-body-and-statue-artifacts.md). | +| Scroll of Fireball | Parchment found by Geldrin at the cat tavern table. | [Party Inventory](../inventories/party-inventory.md). | +| Needle and bloodied thread / black thread | Found in Morgana's salad and later in the baby/sword box context; linked to Chorus's sewn eyes and mouth. | [Elliana Harthall / Elluin Hartwall / Kaylara](../people/elliana-harthall.md). | +| Five altar candles and ten gold statues | Used in the round temple vision of five wizards, Hannah, and Icefang. | Rollup. | +| Moon crystal and tiny arm bone | Moon crystal motivated opening the moon door; tiny arm bone came through the wave door. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | +| Founder's Day poster dated 17th March 991 | Showed Bleakstorm and a Geldrin look-alike; date was not Founding Day. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Ice auroch sculpture | Freshly carved on Bleakstorm's desk. | Rollup. | +| Five-minute hourglass | Turned over by tabaxi pianist after necklace theft. | Rollup. | +| False necklaces | Theatre room decoys around the true necklace. | [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | +| School biggening juice | Restored shrunken Geldrin from the narrator's waterskin. | Rollup. | +| Rose of Reincarnation | White rose extending reincarnation time from ten days to one thousand years. | [Igraine](../people/igraine.md), [Party Inventory](../inventories/party-inventory.md). | +| Sea conch | Released Myriad / Lord of the High Waters. | [Myriad / Lord of the High Waters](../people/myriad-lord-of-the-high-waters.md). | +| Porcelain salt dragon and quartz Salanus-like dragon | Dragon objects in water-realm rooms; quartz one shattered and was reassembled. | Rollup. | +| Eroll mechanical bird | Room version and bag version were identical; used later with part of Haze to find the tail. | Rollup. | +| Bloodied knife | Display-case item in Noxia-linked rooms. | Rollup. | +| Nine water-baby globes / pokeballs | Condensation-covered globes containing water elemental babies; Globule collected them and gave them to Dirk. | [Globule](../people/globule.md). | +| Shells, pearls, and scorpion-symbol chains | Loot/symbols from killed jellyfish people, worth about 500 gp. | [Party Treasury](../inventories/party-treasury.md). | +| Contract to save babies' spirits | Parchment in Hydran's realm promising to save babies' spirits from the realm of darkness. | [Hydran / Hydram](../people/hydran.md). | +| Tongs | Given by Azar Nuri through bargain and returned to statue puzzle. | [Azar Nuri](../people/azar-nuri.md), [Tresmon's Body](tresmons-body-and-statue-artifacts.md). | +| Imp's cards and turban | Bought for 15A, rope, and tin of white paint. | [Party Inventory](../inventories/party-inventory.md). | +| Refined goblet for `[uncertain: Stolchar]` | Invar made a goblet and received it refined. | Rollup. | +| Past Brass City tapestries | Marketplace and hallway tapestries enabled time travel and return. | [Brass City](../places/brass-city.md). | +| Sending stone and ring of fire resistance | Queen Mooncoral's gifts to the party. | [Queen Mooncoral](../people/queen-mooncoral.md), [Party Inventory](../inventories/party-inventory.md). | +| Fifteen black wailing coins | Found on death-realm wasp bodies; put on one wasp body. | Rollup. | diff --git a/data/6-wiki/items/shield-crystals.md b/data/6-wiki/items/shield-crystals.md index 5185bf4..54c77f6 100644 --- a/data/6-wiki/items/shield-crystals.md +++ b/data/6-wiki/items/shield-crystals.md @@ -6,7 +6,7 @@ aliases: - sea shield crystal - shield crystal first_seen: day-06 -last_updated: day-32 +last_updated: day-57 sources: - data/4-days-cleaned/day-06.md - data/4-days-cleaned/day-13.md @@ -17,6 +17,7 @@ sources: - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-57.md --- # Shield Crystals @@ -34,6 +35,10 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - The underwater shield crystal on day 22 was approximately one metre square. - The sea shield crystal was one major priority for Pact and Barrier repair. - Day 32 shows Xinquiss in Hearthwall with a shield crystal; the party agreed to drop off a piece, and Wroth later helped hide the crystal through a trapdoor. +- Day 57 Infestus's wife gave the party a powerful charged shield crystal and scrolls before sending them to Brass City. +- Day 57 Brass City lore says a body was being crafted out of shield crystal as a focusing crystal and stored in one of the four great minarets. +- Day 57 an Earth-plane table held a shield crystal identified as a piece of Tresmon. +- Day 57 Envi's control over crystals and Azar Nuri's interest in the crystal body make shield crystals part of the current body/godhood threat. ## Timeline @@ -42,6 +47,7 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - `day-17`: Sea shield crystal becomes a priority. - `day-22`: The party fights at the underwater crystal site and recovers loot. - `day-32`: Xinquiss and Wroth hide a shield crystal piece in Hearthwall while Justicars search for Xinquiss. +- `day-57`: Brass City reveals a shield-crystal body/focusing crystal, a Tresmon piece, and Envi's crystal control. ## Related Entries @@ -55,3 +61,4 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - Are shield crystals batteries, regulators, keys, toxins, or all of these? - What is the underwater crystal's current status after the mission? - What shield-crystal piece did the party give or hide with Xinquiss, and why did the Justicars want him? +- Is the Brass City shield-crystal body a prison device, focusing crystal, godhood vessel, or body for Tresmon / Azar Nuri? diff --git a/data/6-wiki/items/tresmons-body-and-statue-artifacts.md b/data/6-wiki/items/tresmons-body-and-statue-artifacts.md new file mode 100644 index 0000000..c911ae5 --- /dev/null +++ b/data/6-wiki/items/tresmons-body-and-statue-artifacts.md @@ -0,0 +1,48 @@ +--- +title: Tresmon's Body and Statue Artifacts +type: item cluster +aliases: + - Tresmun's body + - Tresmon's body + - shield-crystal body + - focusing crystal + - Council statue artifacts +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Tresmon's Body and Statue Artifacts + +## Summary + +Day 57 revealed a shield-crystal body or focusing crystal in Brass City, identified in places as Tresmun / Tresmon's body. Pieces and Council artifacts were scattered through plane rooms, memory doors, and realm puzzles. + +## Known Pieces and Artifacts + +- Shield-crystal body: crafted in the citadel and stored in one of the four great minarets; described by a gem-cutter as not obviously a weapon. +- Shield crystal piece: found on an earth elemental's table and identified as a piece of Tresmon. +- Moon / Brass City body shard: Geldrin found where a shard had come from and put it back, stabilizing the four memory doors. +- Sword: found in the narrator's old Provinta house in a box from Everchard and returned to a cracked statue. +- Necklace: the real `Drinker beads of wine` necklace was found after false versions and invisibility tricks, then returned to its statue. +- Offering bowl: the correct bowl came through Hydran's realm after several false bowls and Noxia-linked rooms. +- Tongs: obtained from Sultan Azar Nuri through a dangerous bargain. +- Cat / light-cat: sought through Igraine and Attabre realms; Morgana brought back a dead or uncertain cat through animal/bird channeling. +- Tail: found after entering the death realm and freed with help from Globule; returning it restored at least one live tabaxi Council member. +- Envi has Tresmun's arm according to Azar Nuri. + +## Related Entries + +- [Brass City](../places/brass-city.md) +- [Brass City Council](../factions/brass-city-council.md) +- [Azar Nuri](../people/azar-nuri.md) +- [Globule](../people/globule.md) +- [Envoi](../people/envoi.md) +- [Shield Crystals](shield-crystals.md) + +## Open Questions + +- Is the shield-crystal body Tresmon, a body for Azar Nuri, a focusing device, or overlapping projects? +- Why does Envi have the arm? +- What happens when the crystal body is complete? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 3b7d1cb..a336309 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -47,6 +47,7 @@ sources: - data/4-days-cleaned/day-54.md - data/4-days-cleaned/day-55.md - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md --- # Open Threads @@ -224,4 +225,10 @@ sources: - Where exactly are Cardinal in the Brass dome and [Rubyeye](people/brutor-ruby-eye.md) in the far-airwise dwarven loop? - What are Bluescale's truth-currency rules and location secrecy protecting? - Where are the red dragons or dragonborn Ember seeks, and why does the narrator smell of elf? -- Day 57 has started in the page transcriptions but is deferred from raw/clean/wiki day processing until a later Day 58 marker confirms the boundary. +- What full consequences follow from restoring the [Brass City Council](factions/brass-city-council.md), and which Council members or statue objects remain unresolved? +- What exactly is [Tresmon's body](items/tresmons-body-and-statue-artifacts.md), why is Envi holding the arm, and who is the crystal body ultimately being completed for? +- Can [Globule](people/globule.md), [Hydran](people/hydran.md), and [Queen Mooncoral](people/queen-mooncoral.md)'s people keep the freed merbabies safe from Kasha and Noxia? +- What did [Azar Nuri](people/azar-nuri.md) gain from Geldrin's bargain, and what happens if his envoys reach the Mortal plane? +- Is [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md) one identity, split identities, reincarnations, or related siblings/doubles? +- Which instructions should the party trust in the dark plane: Hydran's advice to leave the path or [Throngore](people/throngore.md)'s demand to stay on it? +- Why did Dirk feel someone scrying on him in [Brass City](places/brass-city.md) after Queen Mooncoral's arrival? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md index 64c85da..31af1b6 100644 --- a/data/6-wiki/people/attabre-altabre.md +++ b/data/6-wiki/people/attabre-altabre.md @@ -7,11 +7,12 @@ aliases: - Protector of the Brass city - father of the sphinxes first_seen: day-42 -last_updated: day-44 +last_updated: day-57 sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-57.md --- # Attabre / Altabre @@ -28,6 +29,11 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. - Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. - Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. +- Day 57 Attabre's realm produced lore that leaders before him were dead, princes became dangerous, wrong deals may have been made to keep them in check, and a father descended to earth to save his child from imprisonment. +- Day 57 says the father met five others at Ground Towers as danger grew and they made a pact: rule one, but from afar. +- Attabre told the narrator they were not just Icefang's daughter but his too, and that they were killed for getting in the way while Kaylara accepted the spells. +- Attabre warned that divine gifts before the next realm would be hard to choose and that if the party died there they would not get back up. +- Attabre said bringing down the dome was the party's choice, would weaken Throngore, and would not bother gods except those who benefit. ## Related Entries @@ -42,3 +48,5 @@ Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, - Who is the fifth sphinx described as father? - Is Attabre the same as Altabre, or are these variant spellings of a title and a deity? - What task did Attabre give Trixus, and why was Trixus not going to achieve it? +- What does `rule one, but from afar` mean, and is it the origin of the current god bargains? +- Why is the narrator also Attabre's daughter? diff --git a/data/6-wiki/people/azar-nuri.md b/data/6-wiki/people/azar-nuri.md new file mode 100644 index 0000000..4e748e4 --- /dev/null +++ b/data/6-wiki/people/azar-nuri.md @@ -0,0 +1,38 @@ +--- +title: Azar Nuri +type: fire sultan or prince +aliases: + - Sultan Azar Nuri + - fire sultan +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Azar Nuri + +## Summary + +Azar Nuri is a massive horned fire-realm ruler who gave the party the tongs in exchange for a dangerous bargain involving his power, envoys, the Mortal plane, and the god of death. + +## Known Details + +- His servants were red-skinned beings with small horns. +- He sat fifty feet tall on a throne, wore a turban, and disliked Invar's symbol to `[uncertain: Stolchar]`. +- Envi works for him and has Tresmun's arm. +- Azar Nuri lacks servants on the Mortal plane and struggles to get minions there. +- He wants to take back his power, open passageways, and continue fixing the crystal body being carved for him or connected to him. +- Geldrin's recorded bargain: tongs now; gold when the crystal is complete; force the god of death to make a mistake and appear on the party's plane; open a passageway for Azar Nuri's envoys. + +## Related Entries + +- [Envoi](envoi.md) +- [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) +- [Throngore](throngore.md) + +## Open Questions + +- Is Azar Nuri the living-flame prince who wants to `pull a Noxia`, or a related patron? +- What power is he trying to retake? +- What are the consequences of letting his envoys onto the Mortal plane? diff --git a/data/6-wiki/people/elliana-harthall.md b/data/6-wiki/people/elliana-harthall.md new file mode 100644 index 0000000..28f8dd5 --- /dev/null +++ b/data/6-wiki/people/elliana-harthall.md @@ -0,0 +1,49 @@ +--- +title: Elliana Harthall / Elluin Hartwall / Kaylara +type: identity thread +aliases: + - Elliana Harthall + - Elluin Hartwall + - Elluin Hartwall! + - Kaylara +first_seen: day-47 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-57.md +--- + +# Elliana Harthall / Elluin Hartwall / Kaylara + +## Summary + +The narrator's identity remains unresolved across Harthall, Elliana, Elluin Hartwall, and Kaylara clues. Day 57 adds origin memories, a delivered baby box, Attabre and Icefang parentage, death/reincarnation implications, and a death-realm prison memory. + +## Day 57 Details + +- The dragon memory door led to Provinta about twenty years earlier, where a box from Everchard was delivered to the narrator's family with a baby and sword. +- Morgana said the Chorus made the narrator. +- The notes exclaim `Elluin Hartwall!` at 1 AM. +- The Chorus had black thread sewn through eyes and mouth; Morgana found black thread in the baby/sword context. +- Bleakstorm wanted the party to save him and free Icefang's spirit, which remained in the dome because Icefang died there. +- Attabre said the narrator was Icefang's daughter and also Attabre's, not just Icefang's. +- Attabre said the narrator was killed for getting in the way and being strong-willed; Kaylara accepted the spells, while the narrator did not. +- Icefang got Kaylara out and then fell into slumber. +- Necrotic damage in Throngore's prison briefly changed the narrator into a silver dragonborn with ribbons on the horns and a teddy on the belt. +- A nearby rock guy said the narrator's mother killed him and dedicated him to Kasha; he grew to like `[uncertain: Stone runger?]` or the narrator. + +## Related Entries + +- [Icefang](icefang.md) +- [Attabre / Altabre](attabre-altabre.md) +- [The Chorus](the-chorus.md) +- [Lord Briarthorn](lord-briarthorn.md) +- [Kasha](kasha.md) + +## Open Questions + +- Are Elliana, Elluin Hartwall, and Kaylara separate people, variant names, or altered states of the narrator? +- What spells did Kaylara accept that the narrator refused? +- What did Morgana's reincarnation do, and why are memories still incomplete? diff --git a/data/6-wiki/people/envoi.md b/data/6-wiki/people/envoi.md index 0223c7f..e3f350d 100644 --- a/data/6-wiki/people/envoi.md +++ b/data/6-wiki/people/envoi.md @@ -10,7 +10,7 @@ aliases: - The Mage - Visage Envoi first_seen: day-05 -last_updated: day-43 +last_updated: day-57 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -22,6 +22,7 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-57.md --- # Envoi @@ -47,6 +48,8 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. - Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices were made to keep Joy safe and eternal. - Day 43 says Wroth trapped Envy in Mama Harthall's head the same way Envy is in Ruby Eye's, suggesting Envy can be contained in people or minds. +- Day 57 Hydran-realm carvings said Envi was free: his spirit reached his base, occupied an awakened body in his laboratory, gained power and control over crystals, and had captured the party's allies. His goal was unknown and he had not been near his other parts. +- Day 57 Azar Nuri said Envi works for him and has Tresmun's arm. ## Timeline @@ -60,6 +63,7 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - `day-30`: Enwi's gloves are located in the Goliath Tower in the Oasis, and Enwi's ring pact is noted. - `day-42`: Envi's possible imprisonment, dark-demon deals, fifth ring, and Joy-related ring activation become central. - `day-43`: Wroth's Envy-in-Mama-Harthall account reframes Envy/Envi containment in minds. +- `day-57`: Hydran's realm and Azar Nuri identify Envi as free, crystal-controlling, allied with or subordinate to Azar Nuri, and holding Tresmun's arm. ## Related Entries @@ -77,3 +81,4 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - Are Envoi, Enwi, Envi, and Ennui all the same person, or are some separate figures? - Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? - Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Mama Harthall? +- Why does Envi have Tresmun's arm, and what does Azar Nuri expect him to do with it? diff --git a/data/6-wiki/people/globule.md b/data/6-wiki/people/globule.md new file mode 100644 index 0000000..2b8865c --- /dev/null +++ b/data/6-wiki/people/globule.md @@ -0,0 +1,38 @@ +--- +title: Globule +type: water entity +aliases: + - whirlpool prisoner +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Globule + +## Summary + +Globule is a water entity found trapped in a whirlpool painting by Noxia. He became a crucial guide for identifying the bowl, exposing the Lord of High Waters, and freeing merbabies. + +## Known Details + +- Globule said Noxia trapped him because he worked for `Him`; when asked who, he said `Him, Hydram, then Noxia` and described `Him` as forgotten more than lost. +- He had no arms or legs while trapped. +- He warned the party not to free the Myriad / Lord of the High Waters, calling him a con artist imprisoned by Hydran. +- He recognized that the party's false bowls were wrong and said the true bowl was stone, not metal. +- He collected the water elemental baby globes / pokeballs and gave them to Dirk. +- In the death realm sea-water prison, the narrator called for Globule, who helped free the merbabies. +- By the end of Day 57, Globule was back and taking the merfolk babies to the sea. + +## Related Entries + +- [Hydran / Hydram](hydran.md) +- [Myriad / Lord of the High Waters](myriad-lord-of-the-high-waters.md) +- [Queen Mooncoral](queen-mooncoral.md) +- [Noxia](noxia.md) + +## Open Questions + +- Who is the `Him` forgotten more than lost? +- What is Globule's full relationship to Hydran and the merfolk babies? diff --git a/data/6-wiki/people/hydran.md b/data/6-wiki/people/hydran.md new file mode 100644 index 0000000..b25956f --- /dev/null +++ b/data/6-wiki/people/hydran.md @@ -0,0 +1,43 @@ +--- +title: Hydran / Hydram +type: god or powerful water patron +aliases: + - Hydran + - Hydram + - Lord Hydran + - Hydraxia + - Hydrus +first_seen: day-22 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-57.md +--- + +# Hydran / Hydram + +## Summary + +Hydran or Hydram is a water patron associated with travel, merfolk, babies' spirits, the Pact, and water elementals. Day 57 made him central to freeing the merbabies and gaining merfolk support. + +## Day 57 Details + +- A Brass City fountain water elemental said its father liked the merfolk but was annoyed by the purple thing and wanted babies fixed so they would go to him. +- The City of Aquarius welcomed Keepers of the Pact because Lord Hydram said they could come. +- A merlady said Hydran said the party needed help and advised steering off the beaten path in the dark plane. +- Hydran offered more information, the bowl, and Pact membership if the party signed the Pact. +- Hydran had imprisoned the Myriad / Lord of the High Waters according to Globule. +- Lord Hydran was very happy after the merbabies were freed, then went to find out what had happened. + +## Related Entries + +- [Globule](globule.md) +- [Queen Mooncoral](queen-mooncoral.md) +- [Myriad / Lord of the High Waters](myriad-lord-of-the-high-waters.md) +- [The Pact](../factions/the-pact.md) + +## Open Questions + +- Are Hydran, Hydram, Hydraxia, and Hydrus variants, relatives, or titles? +- What was the `purple thing` annoying him? +- Why did Hydran advise leaving the path while Throngore advised staying on it? diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 162f770..418aa0a 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -5,13 +5,14 @@ aliases: - Ice Fang - elderly gentleman in the mental palace first_seen: day-25 -last_updated: day-44 +last_updated: day-57 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-57.md --- # Icefang @@ -32,6 +33,9 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Day 43 says Lady Harthall remembered Icefang more clearly, that he cared for her, and that he and Lady Harthall assaulted Perodita while Icefang was starting to lose his mind. - Day 44 has Altith / Icefang contact the narrator, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. - Icefang's future vision if Browning acted showed broken tower fields, burning blue, black, green, and red dragons, hidden settlements, and destructive elementals. +- Day 57 vision showed Icefang at a round table with five wizards, Hannah, and angry Mama Harthall holding the blue ball and saying the work had to stop. +- Day 57 Bleakstorm said Icefang's spirit was still in the dome because Icefang died there and asked the party to free it. +- Day 57 Attabre said the narrator was Icefang's daughter as well as Attabre's, that Icefang gave them all vision, got Kaylara out, and then fell to slumber. ## Related Entries @@ -47,3 +51,5 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - What is Icefang's exact family relationship to Harthall? - Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snow Screen figures? - What did Icefang mean by Dad being mad and the gods taking over Snow Screen? +- What does freeing Icefang's spirit from the dome require? +- How do Icefang, Attabre, Kaylara, and the narrator's Harthall identity fit together? diff --git a/data/6-wiki/people/igraine.md b/data/6-wiki/people/igraine.md new file mode 100644 index 0000000..cafa1b1 --- /dev/null +++ b/data/6-wiki/people/igraine.md @@ -0,0 +1,44 @@ +--- +title: Igraine +type: deity or powerful figure +aliases: + - Lady Igraine + - Egraine Brook + - spirit of Igraine +first_seen: day-23 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-57.md +--- + +# Igraine + +## Summary + +Igraine is a life, fertility, nature, bird, and reincarnation-associated power. Day 57 tied her to Brass City visions, Morgana's birds, a tabaxi prayer bowl, and a future-looking image of Morgana over small-dragon bones. + +## Day 57 Details + +- A bowl behind the rawhide door was a tabaxi prayer to Igraine. +- A spirit of Igraine may have been the foreigner trapped by the merfolk about twenty years ago, though Globule did not see whether a bird came out. +- Hydran's rooms showed Morgana depicted with Igraine holding a knife, surrounded by birds, standing on the bones of a small dragon; the notes say this had not happened yet and was not a picture of murder or the weapon. +- Igraine's field was flat and flowered; Morgana used to be there often and could speak with plants. +- A ladybird said the cat was there and gave Morgana a clue to channel her power, seek more of them, and talk and play with them. +- Morgana learned animal/bird channeling and named a helpful bird Bruce. +- The past Brass City tapestry-maker had received visions since Igraine came to see her. + +## Related Entries + +- [Morgana](morgana.md) +- [Hydran / Hydram](hydran.md) +- [Brass City](../places/brass-city.md) +- [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) + +## Open Questions + +- What did Igraine do in Brass City before the tapestry-maker's visions? +- What does the future image of Morgana, Igraine, birds, and small-dragon bones actually require? +- How do Mourning and Bruce fit into Igraine's domain? diff --git a/data/6-wiki/people/kasha.md b/data/6-wiki/people/kasha.md new file mode 100644 index 0000000..5e43680 --- /dev/null +++ b/data/6-wiki/people/kasha.md @@ -0,0 +1,39 @@ +--- +title: Kasha +type: deity or soul power +aliases: + - Kasher +first_seen: day-36 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-57.md +--- + +# Kasha + +## Summary + +Kasha is a soul-associated power whose bargains and realm pressure matter to Geldrin, Guardwell's soul, merbabies, and the narrator's death-realm prison history. + +## Day 57 Details + +- Attabre said Kasha was allowed to get certain souls through the Barrier, specifically merbabies, to help her sister. +- Geldrin asked how to escape his pact with Kasha to get Guardwell's soul; Attabre said Kasha is not bound like the gods, but will do everything she can. +- In Kasha's realm, she would be much more capable than on the Mortal realm. +- Throngore said Kasha could not see the party unless told they were in his realm. +- The narrator's mother had killed a rock guy and dedicated him to Kasha. +- Kasha tried to break through the ceiling during the Water Bull / God Bull and merbaby rescue. + +## Related Entries + +- [Throngore](throngore.md) +- [Hydran / Hydram](hydran.md) +- [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md) + +## Open Questions + +- Which sister was Kasha helping: Noxia, Kesha, or someone else? +- What are the exact terms of Geldrin's pact over Guardwell's soul? +- Why were merbabies routed through the Barrier to Kasha? diff --git a/data/6-wiki/people/lord-briarthorn.md b/data/6-wiki/people/lord-briarthorn.md new file mode 100644 index 0000000..174fc3a --- /dev/null +++ b/data/6-wiki/people/lord-briarthorn.md @@ -0,0 +1,35 @@ +--- +title: Lord Briarthorn +type: person +aliases: + - thorn-beard elf +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Lord Briarthorn + +## Summary + +Lord Briarthorn is a mortal thorn-beard elf found in a death-realm prison cell. He recognized the narrator and remembered going to the moon with the narrator's mother. + +## Known Details + +- He called the narrator darling. +- He remembered going to the moon with the narrator's mother. +- He was found during the death-realm prison sequence after Throngore asked the party to free a prisoner. +- His exact relationship to Captain Briarthorn from earlier Highden notes is uncertain and not merged. + +## Related Entries + +- [Throngore](throngore.md) +- [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md) +- [Minor Figures from Day 57](minor-figures-day-57.md) + +## Open Questions + +- Was Lord Briarthorn the prisoner Throngore wanted freed? +- Why did he go to the moon with the narrator's mother? +- Is he related to Captain Briarthorn? diff --git a/data/6-wiki/people/minor-figures-day-57.md b/data/6-wiki/people/minor-figures-day-57.md new file mode 100644 index 0000000..86133ad --- /dev/null +++ b/data/6-wiki/people/minor-figures-day-57.md @@ -0,0 +1,39 @@ +--- +title: Minor Figures from Day 57 +type: people rollup +sources: + - data/4-days-cleaned/day-57.md +--- + +# Minor Figures from Day 57 + +| Figure | Day | Details | Coverage | +|---|---|---|---| +| Infestus's wife | 57 | Gave the party a powerful shield crystal and scrolls, smashed an orb, and transformed a tiny human into a blue dragon for Brass City travel. | Rollup / [Infestus](infestus.md). | +| Salinas | 57 | Infestus could ensure Salinas caused no issues during the treaty/council context. | Rollup. | +| Excellence of Air / Air | 57 | Left Brass City and never returned; There says Air went to the dome to make a trap for Sierra so Browning could take her place; Throngore does not want Air retaking his throne. | [Excellences](../concepts/excellences.md), [Throngore](throngore.md). | +| Envy | 57 | Brass City expected attack after ruler left but saw no attackers, not even Envy; Envi/Envy remains uncertain. | [Envoi](envoi.md). | +| Hydraxia | 57 | Named by the fountain water elemental before being given to blue dragons; relation to Hydran uncertain. | [Hydran / Hydram](hydran.md). | +| Lord of the Brass City | 57 | Associated with weighted idols, jewellery, gravity, and weight in the statue corridor. | [Brass City](../places/brass-city.md). | +| Goklhar | 57 | Possible high-priest reference near `Gleams in the first light`; spelling and identity uncertain. | Rollup. | +| `Lies in the morning dew` | 57 | Prophet of the light, fine-dressed statue with book, rose, and brazier. | [Brass City Council](../factions/brass-city-council.md). | +| Ignan | 57 | Voice or language said, `We are close once more. I will help you say his name when you pick him up.` | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| There | 57 | Cat became a big dog after Geldrin said `There`; guided the party, warned not to damage Brass City, brought Bob and Bosh, and helped magic work. | Rollup. | +| Bob and Bosh | 57 | Still cursed; There said he could fix them when the party was done. | Rollup / [Party Inventory](../inventories/party-inventory.md). | +| Mama Harthall | 57 | Appeared in a round-table vision with five wizards, Hannah, and Icefang, holding the blue ball and saying the work had to stop. | [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md). | +| Cacophony | 57 | Appeared to Morgana as a huge worm, died, and showed Rubyeye removing his eye. | Rollup / [Open Threads](../open-threads.md). | +| Rubyeye | 57 | Seen in vision removing his eye in a runed bathroom. | [Brutor Ruby Eye](brutor-ruby-eye.md). | +| Hannah | 57 | Present at the vision round table with five wizards and Icefang. | Rollup / [Open Threads](../open-threads.md). | +| Bleakstorm | 57 | In Provinta/Town Hall with ice auroch sculpture; wanted the party to save him and free Icefang's spirit. | [Icefang](icefang.md). | +| Dothurl / Dotharl | 57 | Entered paintings, cast See Invisibility, and was one of the ancestors' named jumpers. | Rollup. | +| Nare | 57 | Thought Globule was dangerous. | Rollup. | +| Kesha | 57 | Identified as Noxia's sister; Noxia replaced someone but Kesha did not. | [Noxia](noxia.md), [Kasha](kasha.md) because sister identities remain uncertain. | +| Mourning | 57 | Bird/enforcer created by Morgana; imprisoned for creating funerals and killing people who cut down trees or killed rabbits. | [Igraine](igraine.md). | +| Bruce | 57 | Bird who agreed to teach Morgana animal/bird channeling; Morgana named it Bruce. | [Igraine](igraine.md). | +| Sauver | 57 | Goat man on a throne, one of Throngore's, bound until the party arrived. | [Throngore](throngore.md). | +| Shylow | 57 | Goat figure who thought the party were goat people and accepted names beginning with S. | [Throngore](throngore.md). | +| [uncertain: Shevolt] | 57 | Recognized the narrator in the death-realm prison, malfunctioned, and returned; party decided to kill him after he said he sought Fred. | [Elliana Harthall / Elluin Hartwall / Kaylara](elliana-harthall.md). | +| Fred | 57 | Fellow goat whom [uncertain: Shevolt] claimed he was there to free. | Rollup. | +| Sjorra, Law, [unclear: Ice?], Squwal, Bridske | 57 | Listed among gods/god-like names with counts beside some names. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | +| Water Bull / God Bull | 57 | Regained memories, defied Kasha, and wanted to take his realm back; could not enter sea water to get merbabies. | [Hydran / Hydram](hydran.md), [Throngore](throngore.md). | +| In'weo [uncertain] | 57 | Queen Mooncoral was asked to investigate where this uncertain figure goes. | [Queen Mooncoral](queen-mooncoral.md). | diff --git a/data/6-wiki/people/myriad-lord-of-the-high-waters.md b/data/6-wiki/people/myriad-lord-of-the-high-waters.md new file mode 100644 index 0000000..d0f1971 --- /dev/null +++ b/data/6-wiki/people/myriad-lord-of-the-high-waters.md @@ -0,0 +1,41 @@ +--- +title: Myriad / Lord of the High Waters +type: imprisoned water entity +aliases: + - Myriad + - Myriad one + - Lord of the High Waters + - seeker of truth for Hydrus +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Myriad / Lord of the High Waters + +## Summary + +Myriad, the Lord of the High Waters, appeared from a conch in Morgana's hut-like painting realm. He offered wishes but was distrusted and later called a con artist by Globule. + +## Known Details + +- Morgana blew a sea conch, releasing a watery lower-half, genie-like upper-half entity. +- He called himself Myriad one, Lord of the High Waters, seeker of truth for Hydrus. +- He offered two wishes, but one had to be used to free him. +- He claimed he needed to present the bowl to the clam. +- The clam said Myriad was its friend but was hiding things. +- Globule said Hydran imprisoned him and warned not to free him. +- After freeing Globule without being freed himself, he sulked back into coral. + +## Related Entries + +- [Globule](globule.md) +- [Hydran / Hydram](hydran.md) +- [Igraine](igraine.md) + +## Open Questions + +- What did Myriad hide from the party? +- Why did Hydran imprison him? +- Is `Lord of Tar` in the clam the same entity, a mistranscription, or another prisoner? diff --git a/data/6-wiki/people/queen-mooncoral.md b/data/6-wiki/people/queen-mooncoral.md new file mode 100644 index 0000000..1d9c0aa --- /dev/null +++ b/data/6-wiki/people/queen-mooncoral.md @@ -0,0 +1,38 @@ +--- +title: Queen Mooncoral +type: person +aliases: + - merlady with a driftwood crown + - Crown of Mooncoral +first_seen: day-57 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-57.md +--- + +# Queen Mooncoral + +## Summary + +Queen Mooncoral is a merfolk queen who arrived in Brass City after the party freed the merbabies / water elemental babies, saying the party had righted the greatest wrong done to her people. + +## Known Details + +- She arrived with six merfolk men in mother-of-pearl armour and wore a driftwood crown. +- Her people had not known about the wrong until recently. +- The first birth had occurred an hour before her arrival, implying the freed babies immediately restored merfolk fertility or continuity. +- She gave the party a sending stone and a ring of fire resistance. +- The party asked her to look into where In'weo [uncertain] goes. + +## Related Entries + +- [Hydran / Hydram](hydran.md) +- [Globule](globule.md) +- [Brass City](../places/brass-city.md) +- [The Pact](../factions/the-pact.md) + +## Open Questions + +- Is the earlier `Crown of Mooncoral` trophy-plinth clue this queen's crown, title, or a separate artifact? +- What will Queen Mooncoral's service to the party entail? +- Who or what is In'weo [uncertain]? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 8dd1dd5..fa860ee 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -1,7 +1,7 @@ --- title: NPC Status type: stateful people rollup -last_updated: day-44 +last_updated: day-57 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -35,6 +35,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-57.md --- # NPC Status @@ -72,6 +73,9 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Copper dragon from Snow Screen / Snow Sorrow | freed and memory restored | `data/4-days-cleaned/day-42.md` | Maggot removed from her ear; remembered Snow Screen, her boy, Lorleh, Igraine, and Verdugrim's breeding. | | [Trixus](trixus.md) | released from barrier but still recovering/uncertain | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Initially under Slumber Imprisonment; later released and could possibly help with memories. | | Stalwart and restored Iron Knights | restored/active | `data/4-days-cleaned/day-43.md` | Stalwart was the first restored Iron Knight; purification ritual removed ailment, and Morgana healed children. | +| [Brass City Council](../factions/brass-city-council.md) / live tabaxi king | partly restored from stone | `data/4-days-cleaned/day-57.md` | Returning the tail broke stone casing and revealed live tabaxi; the king asked how long they had been stone. | +| Merfolk babies / water elemental babies | freed and returned toward sea | `data/4-days-cleaned/day-57.md` | Globule helped free them, and Queen Mooncoral reported the first birth an hour before her arrival. | +| Jellyfish-headed guards | revived by merlady, after being killed | `data/4-days-cleaned/day-57.md` | The party killed the jellyfish parents; Hydran's merlady agreed to revive them and they were pushed back toward the painting room. | ## Dead or Believed Dead @@ -131,6 +135,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | | Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | Basalisk reported all contact lost with Snow Sorrow and Perens going missing. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | missing / possibly off-plane | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Joy warned `they've got him`; after Ashkellon Ruby Eye was missing, out of Bleakstorm's sight, and Cardonald could not find him. | +| [Envoi](envoi.md) / Envi | free, body awakened, goal unknown | `data/4-days-cleaned/day-57.md` | Hydran-realm carving says his spirit reached his base, occupied a body, controls crystals, captured allies, and has not been near his other parts; Azar Nuri says Envi works for him and has Tresmun's arm. | | Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | | Steven / Steve | missing from barrier after confrontation | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Thromgore's boy had helped contain Valentenhide and wanted to `Bob stuff`; later no longer in his barrier. | | Errol | missing / possibly off-plane | `data/4-days-cleaned/day-43.md` | Cardonald could not find Ruby Eye or Errol, perhaps because they were not on the same plane. | @@ -155,6 +160,8 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Hephestus / Hephestos | imprisoned soul or barrier entity | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Door had ninth-level Banishment; later described as only his soul and wanted a pact to be let out. | | Papa'e Munera fragment | boxed fragment with party | `data/4-days-cleaned/day-43.md` | Black orb in Invar's box; wants reunion with the rest of itself and [uncertain: unrasorak]. | | Dribble and fresh water elemental | released and temporarily allied | `data/4-days-cleaned/day-44.md` | Dribble was in a jade/grey desk object; a fresh water elemental agreed to join the party around the school for a while. | +| [Globule](globule.md) | freed, allied, taking babies to sea | `data/4-days-cleaned/day-57.md` | Freed from Noxia's whirlpool painting and helped rescue merbabies from the death realm. | +| [Lord Briarthorn](lord-briarthorn.md) | found imprisoned, mortal | `data/4-days-cleaned/day-57.md` | Thorn-beard elf in death-realm prison cell who remembered going to the moon with the narrator's mother. | ## Allies and Contacts @@ -182,6 +189,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Three Finger Dune Shwelter | resistance guide/contact | `data/4-days-cleaned/day-42.md` | Ashkellon resistance member and Emeredge's dune dweller; agreed to help find resistance. | | Anastasia | Goliath queen/resistance ally | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Gave Dirk Envi's fifth ring; later coordinated restored Goliaths and a pincer movement on Vathkell. | | [Galimma, the Peridot Queen](galimma-peridot-queen.md) | information broker, dangerous ally | `data/4-days-cleaned/day-42.md` | Offered intelligence in return for being left alone to live on her own terms. | +| [Queen Mooncoral](queen-mooncoral.md) | new merfolk ally | `data/4-days-cleaned/day-57.md` | Came with armoured merfolk to serve the party after the merbaby rescue and gave a sending stone and ring of fire resistance. | ## Hostile or Dangerous @@ -204,3 +212,5 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-41.md` | Ran off during the Azureside battle. | | [Peridita](peridita.md) | outside Barrier, active threat | `data/4-days-cleaned/day-43.md` | Appeared bedraggled outside the Barrier, wanted flesh-crafting wands, and intended to get back in. | | [Noxia](noxia.md) | larger threat unresolved | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-44.md` | Noxia Beast avatar killed, but Noxia blood and desert green liquid remain active clues. | +| [Azar Nuri](azar-nuri.md) | dangerous bargain partner | `data/4-days-cleaned/day-57.md` | Wants power, passageways, a completed crystal body, and envoys on the Mortal plane. | +| [Throngore](throngore.md) | dangerous death-realm power | `data/4-days-cleaned/day-57.md` | Requested the party free a prisoner, avoid the main fight, and keep Air from retaking his throne. | diff --git a/data/6-wiki/people/throngore.md b/data/6-wiki/people/throngore.md new file mode 100644 index 0000000..d58bba5 --- /dev/null +++ b/data/6-wiki/people/throngore.md @@ -0,0 +1,45 @@ +--- +title: Throngore +type: god or death-realm power +aliases: + - Thromgore + - giant goat-headed lord +first_seen: day-32 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-57.md +--- + +# Throngore + +## Summary + +Throngore is a death-realm or darkness-associated power linked to goat men, prisons, bargains, and conflict with Air and Kasha. Day 57 brought the party into his realm directly. + +## Day 57 Details + +- Attabre said bringing down the dome would weaken Throngore. +- The party entered the death realm to free merfolk babies. +- Sauver, a goat man and one of Throngore's, said Throngore requested an audience. +- Throngore appeared first as an enormous demon with bleeding crab-claw hands, six arms, and four legs, then as a man in a black suit with a giant goat head. +- He wanted the party to free a prisoner they would recognize when they saw him. +- He warned them not to let Air back in to take over his throne. +- He said Kasha could not see the party unless told they were there. +- He instructed them to stay on the path and avoid the main fight, contradicting Hydran's advice to steer off the beaten path. + +## Related Entries + +- [Hydran / Hydram](hydran.md) +- [Kasha](kasha.md) +- [Lord Briarthorn](lord-briarthorn.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) + +## Open Questions + +- Which prisoner did Throngore mean? +- Why does Air threaten his throne? +- How does weakening Throngore relate to bringing down the dome? diff --git a/data/6-wiki/places/brass-city.md b/data/6-wiki/places/brass-city.md new file mode 100644 index 0000000..a155b45 --- /dev/null +++ b/data/6-wiki/places/brass-city.md @@ -0,0 +1,50 @@ +--- +title: Brass City +type: place +aliases: + - the Brass + - Brass City citadel + - old-regime citadel +first_seen: day-31 +last_updated: day-57 +sources: + - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md +--- + +# Brass City + +## Summary + +Brass City is a formerly enslaved elemental city whose current rulers are described as `The People`, while the citadel and minarets still preserve old-regime planar control systems, cursed Council statues, and shield-crystal body work. + +## Day 57 Details + +- Infestus's wife sent the party by blue dragon to just outside Brass City. +- Two diplomats greeted them, including a smoke-scaled figure with a cobra head under his hood. +- The city interior was lush, relaxed, and not visibly enslaved; the Glowscale were excited to see the party. +- The old masters had enslaved labour for repair, upkeep, and citadel work. +- A rebellion began when slaves wanted bread and were denied it; protestors burst into flames. +- The Excellence of Air left and never returned; tower creatures became unruly after that. +- The citadel contains air elementals, a control room that can touch multiple planes, realm doors, and Council statues that can be restored by returning missing objects or body pieces. +- Four great minarets hold or relate to a shield-crystal focusing body, possibly Tresmon's body. +- A past version of Brass City showed blue dragonborn and dragons, a market, palace access by invitation, and a dragon/serpent tapestry-maker working from visions after Igraine visited. +- After the party restored the tail, stone casing broke away from at least one statue and revealed live tabaxi. The restored king asked how long they had been stone. +- A priestess was expected to guide the party to Cardonald the next day at 12:30. + +## Related Entries + +- [Brass City Council](../factions/brass-city-council.md) +- [Tresmon's Body and Statue Artifacts](../items/tresmons-body-and-statue-artifacts.md) +- [Attabre / Altabre](../people/attabre-altabre.md) +- [Trixus](../people/trixus.md) +- [Hydran / Hydram](../people/hydran.md) + +## Open Questions + +- Which old-regime systems still control Brass City or the planes? +- Who are all members of the Council, and what happens politically after restoration? +- What caused the bread rebellion protestors to burst into flames? +- What are the full functions of the four great minarets? diff --git a/data/6-wiki/places/minor-places-day-57.md b/data/6-wiki/places/minor-places-day-57.md new file mode 100644 index 0000000..48f5b0c --- /dev/null +++ b/data/6-wiki/places/minor-places-day-57.md @@ -0,0 +1,28 @@ +--- +title: Minor Places from Day 57 +type: places rollup +sources: + - data/4-days-cleaned/day-57.md +--- + +# Minor Places from Day 57 + +| Place | Details | Coverage | +|---|---|---| +| Black Dragon City in the Underblame | Day 57 starts there before Infestus's wife sends the party onward. | Rollup / [Infestus](../people/infestus.md). | +| Gaol | Brass City contact said Valenth could be sought at the citadel or Gaol. | Rollup. | +| Four great minarets | Store or relate to the shield-crystal focusing body and unruly tower creatures. | [Brass City](brass-city.md), [Tresmon's Body](../items/tresmons-body-and-statue-artifacts.md). | +| Harn? tavern | Tavern-like cat space reached through an Earth-plane door; a ghost carrying sword and shield was not welcome. | Rollup. | +| Round temple near Riversmeet and dwarven bridge | Small temple with Seward marble, benches, five candles, and ten gold statues, leading to Mama Harthall/Icefang vision. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md) / rollup. | +| Craters Edge | Seen through the moon door; Dirk heard garbled conversations. | Rollup. | +| Pinesprings | Dragon door memory of snow, pine trees, baby dragonborn, and redbeard figure with a broom. | Rollup. | +| Provinta | Plateau town about twenty years in the past, where the narrator's house received the Everchard baby/sword box. | [Elliana Harthall / Elluin Hartwall / Kaylara](../people/elliana-harthall.md). | +| City of Aquarius | Mother-of-pearl palace where Keepers of the Pact were welcome by Lord Hydram's permission. | [Hydran / Hydram](../people/hydran.md). | +| Morgana's dead-tree hut | Painting realm with dead Everchard trees, birds, white rose, conch, and offering bowl. | [Igraine](../people/igraine.md). | +| Hydran's realm | Reached through the `Submarine` door; held the contract to save babies' spirits and carvings about Envi, Noxia, and Morgana. | [Hydran / Hydram](../people/hydran.md). | +| Fire realm / Azar Nuri's palace | Broken throne room and fire garden ruled by Sultan Azar Nuri. | [Azar Nuri](../people/azar-nuri.md). | +| Past Brass City | Lively Mortal-plane version of Brass City with blue dragonborn, dragons, market, palace, and tapestry-maker. | [Brass City](brass-city.md). | +| Igraine's field | Flowered possible afterlife where Morgana could speak with plants and retrieved the cat through animals/birds. | [Igraine](../people/igraine.md). | +| Attabre's realm | Cloakroom, sitting room, dining room, sphynx picture, birthday meal, and lore about princes and a pact at Ground Towers. | [Attabre / Altabre](../people/attabre-altabre.md). | +| Throngore's realm / death realm | Throne room, path, memory battlefield, castle, prison tower, purple crystal, and sea-water prison. | [Throngore](../people/throngore.md). | +| Empty Brass City house | Party rested there after the merbaby rescue; Dirk felt someone scrying on him. | [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 899975e..a89728e 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -47,6 +47,7 @@ sources: - data/4-days-cleaned/day-54.md - data/4-days-cleaned/day-55.md - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md --- # Sources @@ -97,6 +98,7 @@ sources: - `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). - `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-57.md`: [Brass City](places/brass-city.md), [Brass City Council](factions/brass-city-council.md), [Queen Mooncoral](people/queen-mooncoral.md), [Lord Briarthorn](people/lord-briarthorn.md), [Hydran / Hydram](people/hydran.md), [Globule](people/globule.md), [Myriad / Lord of the High Waters](people/myriad-lord-of-the-high-waters.md), [Azar Nuri](people/azar-nuri.md), [Igraine](people/igraine.md), [Throngore](people/throngore.md), [Kasha](people/kasha.md), [Elliana Harthall / Elluin Hartwall / Kaylara](people/elliana-harthall.md), [Tresmon's Body and Statue Artifacts](items/tresmons-body-and-statue-artifacts.md), [Minor Figures from Day 57](people/minor-figures-day-57.md), [Minor Places from Day 57](places/minor-places-day-57.md), [Minor Items from Day 57](items/minor-items-day-57.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-57-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index d4e16ee..33b62c7 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -44,6 +44,7 @@ sources: - data/4-days-cleaned/day-54.md - data/4-days-cleaned/day-55.md - data/4-days-cleaned/day-56.md + - data/4-days-cleaned/day-57.md --- # Timeline @@ -99,3 +100,4 @@ sources: - `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. - `day-55`: The party fights through Magstein / Grimcrag, learns Merocole has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. - `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become Envy, confronts Justicars and [Edward Browning](people/edward-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. +- `day-57`: Infestus's wife sends the party by blue dragon to [Brass City](places/brass-city.md), where they explore the old-regime citadel, recover statue artifacts and pieces of Tresmon's body across planar and memory rooms, free merfolk babies through [Hydran](people/hydran.md) and [Globule](people/globule.md), bargain dangerously with [Azar Nuri](people/azar-nuri.md), learn new Attabre/Icefang/Kaylara identity lore, enter [Throngore](people/throngore.md)'s death realm, restore at least one Brass City Council statue, and gain [Queen Mooncoral](people/queen-mooncoral.md)'s support. -
6069008More pagesby Bas Mostert
data/2-pages/268.txt | 29 +++ data/2-pages/269.txt | 23 ++ data/2-pages/270.txt | 31 +++ data/2-pages/271.txt | 21 ++ data/2-pages/272.txt | 31 +++ data/2-pages/273.txt | 29 +++ data/2-pages/274.txt | 27 +++ data/2-pages/275.txt | 31 +++ data/2-pages/276.txt | 23 ++ data/2-pages/277.txt | 33 +++ data/2-pages/278.txt | 27 +++ data/2-pages/279.txt | 31 +++ data/2-pages/280.txt | 27 +++ data/2-pages/281.txt | 29 +++ data/2-pages/282.txt | 44 ++++ data/2-pages/283.txt | 21 ++ data/2-pages/284.txt | 29 +++ data/2-pages/285.txt | 21 ++ data/2-pages/286.txt | 29 +++ data/2-pages/287.txt | 23 ++ data/3-days/day-53.md | 150 ++++++++++++ data/3-days/day-54.md | 39 ++++ data/3-days/day-55.md | 131 +++++++++++ data/3-days/day-56.md | 256 +++++++++++++++++++++ data/4-days-cleaned/day-53.md | 64 ++++++ data/4-days-cleaned/day-54.md | 38 +++ data/4-days-cleaned/day-55.md | 61 +++++ data/4-days-cleaned/day-56.md | 81 +++++++ data/6-wiki/aliases.md | 8 + data/6-wiki/clues/days-53-56-coverage-audit.md | 26 +++ data/6-wiki/concepts/elemental-prisons.md | 15 +- .../concepts/gods-bargains-behind-the-barrier.md | 8 +- data/6-wiki/concepts/papa-illmarnes-dome.md | 44 ++++ data/6-wiki/factions/mage-judicators-justicars.md | 7 +- data/6-wiki/index.md | 11 + data/6-wiki/items/minor-items-days-53-56.md | 39 ++++ data/6-wiki/open-threads.md | 24 ++ data/6-wiki/people/anya-blakedurn.md | 43 ++++ data/6-wiki/people/benu.md | 8 +- data/6-wiki/people/brutor-ruby-eye.md | 7 +- data/6-wiki/people/bynx.md | 7 +- data/6-wiki/people/edward-browning.md | 7 +- data/6-wiki/people/garadwal.md | 8 +- data/6-wiki/people/infestus.md | 10 +- data/6-wiki/people/minor-figures-days-53-56.md | 36 +++ data/6-wiki/people/noxia.md | 8 +- data/6-wiki/people/peridita.md | 8 +- data/6-wiki/people/trixus.md | 5 +- data/6-wiki/people/valententhide.md | 8 +- data/6-wiki/people/wrath.md | 6 +- data/6-wiki/places/grand-towers.md | 8 +- data/6-wiki/places/magstein-grimcrag.md | 47 ++++ data/6-wiki/places/minor-places-days-53-56.md | 29 +++ data/6-wiki/sources.md | 8 + data/6-wiki/timeline.md | 8 + 55 files changed, 1807 insertions(+), 15 deletions(-)Show diff
diff --git a/data/2-pages/268.txt b/data/2-pages/268.txt new file mode 100644 index 0000000..f4ad89c --- /dev/null +++ b/data/2-pages/268.txt @@ -0,0 +1,29 @@ +Page: 268 +Source: data/1-source/IMG_9941.jpg + +Transcription: +She then stops to speak to them, and they state they are envoys from the city to meet the army. She then continues to the city. + +Blood all around the outside of the door to the city. Obvious sign of damage to the buildings. + +A lone dwarf calls out from a building and says she shouldn't be in the streets. She goes in and turns into a llamia with ratmen companions. She runs away back over the bridge. + +Tendruts follows her and says, "Come back any time." + +Try to get back to us. + +Day 54 - Magstein / Grimcrag bridge + +Scouts report the convoy approaching. Ambassador is still glazed; Greater Restoration works. + +Go to meet the convoy. Leader is tall for a dwarf. + +Dotharl sees invisible people holding onto one of the wagons, 40 of them. + +Morgana swoops at the wagon with invisible people on it. Geldrin kills 30 of them with Fireball. Dotharl casts Shatter. + +Elementals start to approach us. + +Fight the rest of the convoy. Free 26 dwarves from Grimcrag and subdue the main enemies. + +12 army dwarves are killed. diff --git a/data/2-pages/269.txt b/data/2-pages/269.txt new file mode 100644 index 0000000..bc715e7 --- /dev/null +++ b/data/2-pages/269.txt @@ -0,0 +1,23 @@ +Page: 269 +Source: data/1-source/IMG_9942.jpg + +Transcription: +Elementals get near and the Ambassador approaches with coins, approximately 100 coins. "Take the coins to their mother to persuade them not to attack us." It works. + +Investigate the carts. The one with the invisible people has a carved elven shield crystal and copper; assume cause of invisibility. Complete horror. + +Four wagons are filled with poison barrels. Five wagons are filled with explosives, general-purpose. + +Day 55 - Magstein / Grimcrag bridge side + +Dotharl dreams when waking up. In a glass dome, plush carpet, etc. He goes up to the glass and an eyeball appears pressed up against the glass: piercing blue, skin not scales, lace/white hair. It knocks on the dome. No one there. + +A woman with bright green eyes and an arm draped around his shoulders wakes up and is helping him. She doesn't know who she is to him. To close to her friend to be asleep: this friend hurt her. Friends warn us not to continue. Our only warning. Her brother hates us. She has a new friend, Envy? + +Morgana tries to talk to No-Hurt. It has spread everywhere and has killed things. + +Haven't found a llamia in the army. + +Decide to blow up the doors. + +Morgana scouts ahead. Doors are now closed. Lots of arrow slits. They shoot her and hit her. diff --git a/data/2-pages/270.txt b/data/2-pages/270.txt new file mode 100644 index 0000000..be59071 --- /dev/null +++ b/data/2-pages/270.txt @@ -0,0 +1,31 @@ +Page: 270 +Source: data/1-source/IMG_9943.jpg + +Transcription: +Lots of people waiting to ambush us in the walls. + +When we approach the door, the wind gets louder. + +Send wagons in with a shield wall. + +Hear a drum reverberating through Invar's feet, scraping and grinding noise. + +Perodita flies up from the bridge. Black ichor coming from her chest. + +Damage her, then she flies off. + +Llamia and ratmen killed by the dwarven army. + +Black dragon sister is nowhere to be seen. + +Bridge was damaged. + +Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridget allowed it as it was for a trap, so she found it funny. + +Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. + +City was taken over in the last month, gradually removing infrastructure. Then they seemed to turn on each other when Perodita attacked yesterday. + +Long rest. + +Plan: leave dwarf army here and teleport to Magstein and attack her there in the cavern. diff --git a/data/2-pages/271.txt b/data/2-pages/271.txt new file mode 100644 index 0000000..143e5f2 --- /dev/null +++ b/data/2-pages/271.txt @@ -0,0 +1,21 @@ +Page: 271 +Source: data/1-source/IMG_9944.jpg + +Transcription: +Geldrin asks Bridget if Perodita is still travelling. A sleepy cockroach appears: she is asleep. Didn't have a good rest, too painful; it hurts, can't fix. + +Dwarves staying at Grimcrag to recover and recuperate. She is approximately 13 hours away, depending on how much sleep she has had. + +Use rift blade to teleport to Magstein. + +Go to find the High Priest at Papa Marmaru. + +Guards try to stop us but we try to break through. Invar and Geldrin get through and the High Priest calls off the guards. They stop as one, odd. + +High Priest is not the high priest any more. One of the gods: which one? Merocole. + +Cast Greater Restoration on high priest. Large smoke sphere, spidery legs, human-like face. Wants Papa Marmaru. + +Invar offers Papa Marmaru his goblet. It asks if he wants this to happen. Sounds raspy: don't trust Merocole, Marmaru has chosen to be here, and looks after the dwarves. Leave him to it. + +Search for some explosives. diff --git a/data/2-pages/272.txt b/data/2-pages/272.txt new file mode 100644 index 0000000..20fd84e --- /dev/null +++ b/data/2-pages/272.txt @@ -0,0 +1,31 @@ +Page: 272 +Source: data/1-source/IMG_9945.jpg + +Transcription: +Two small passages she has to navigate and pull her wings in to get through. + +Set up so explosives crush her mid-point and set Wall of Force to stop her from moving forward. + +Made a hide to conceal ourselves. + +Blasting holes in the ceiling. + +Set alarm in the second choke point. 24 hours, no alarm has gone off. 27 - alarm goes off. 25. + +Pass without a trace set. + +After 45 minutes, hear echoes get louder, stumbling and crashing into a wall. + +Noise intense and terrifying. She sees the hide and knows something is wrong. She starts to attack us and we don't get to run away before she breath-weapons us. + +We trap her in the tunnel and kill her with Walls of Fire. + +Noxia essence flows out of her and most things seem to heal it. Manage to kill it. Small puddle under the menstruum. + +Perodita is dead. + +Move ooze from Noxia into a barrel. + +Perodita's wounds look old and haven't healed, covered in injuries and never healed. + +Find gold coins in her belly scales, lots of different types and ages. diff --git a/data/2-pages/273.txt b/data/2-pages/273.txt new file mode 100644 index 0000000..0430929 --- /dev/null +++ b/data/2-pages/273.txt @@ -0,0 +1,29 @@ +Page: 273 +Source: data/1-source/IMG_9946.jpg + +Transcription: +7,000 gp in total. Put it into the bag to sort and auction later. + +Geldrin feels blood in the tower was an experiment. + +Go to the "Crusty Beard" for rest at 23:00. Takes a few hours. Most of the town is quiet but the pub is bustling: common craftsmen and bakers, etc. Weird hair wall. Memorial to dead dwarves who drank here. + +City has been strange over the last few years. Council don't meet. Militia not great. Lots of theft, etc. + +Two guards walk in wearing faceplates. Bar gets quiet. They drink half and walk out without paying. + +Overhear mutterings about being worried about them being around, being shit at their jobs. + +Head to bed at 02:00. + +Day 56 - Crusty Beard, Magstein + +Temporary Wisdom -2. + +At 11:00, go to an abandoned house to teleport to Grand Towers control room. + +Geldrin enters a dream-like state when teleporting. Sees an elf face saying, "I'm foolish. I should have known this was going to happen... Never mind." + +Extravagant room considering other teleport room we have been to. Very elaborate tapestries. Out of place really. + +Door was trapped but disarmed in the last 5-10 minutes. diff --git a/data/2-pages/274.txt b/data/2-pages/274.txt new file mode 100644 index 0000000..fdfb7c5 --- /dev/null +++ b/data/2-pages/274.txt @@ -0,0 +1,27 @@ +Page: 274 +Source: data/1-source/IMG_9947.jpg + +Transcription: +Dotharl sees Valententhide reflected in Invar's armour. + +We leave the room and see lots of doors and two "people" guarding? + +Tapestry has five wizards and an invisible lady who is invisible in the painting too. She looks like Hannah Joy. Dotharl doesn't know who she is, so he can't see her because he knows she exists. + +The creature says she is new. + +They are expecting us. There are 27 of them. We should go on and talk to Humility. They are all part of Humility. They disarmed the traps. + +Spherical room, four doors, and an elf stood in the middle. It is the one Geldrin saw when teleporting. + +They are currently in control of the control room. + +They are not doing anything with it and we can do whatever we want to as they have taken control of it for us. + +They are all part of Thomas and removed so he could become Envy. + +Can't put them back together without the big weak part, as many parts died. + +Thanks us for freeing him from the cart on the dwarf bridge. + +Takes us to the control room. diff --git a/data/2-pages/275.txt b/data/2-pages/275.txt new file mode 100644 index 0000000..efa44a8 --- /dev/null +++ b/data/2-pages/275.txt @@ -0,0 +1,31 @@ +Page: 275 +Source: data/1-source/IMG_9948.jpg + +Transcription: +Two automatons guard the door. + +Go in and see eight statues around the room. + +Salana's runes are intact. + +Garadwal and Valententhide runes are unlit; the rest are flickering. + +Most of the monks are meandering around the room. + +Dotharl looks at the Valententhide statue and thinks he just sees the statue, but it then attacks him. + +Geldrin investigates the statue and takes damage. + +The runes around it light up saying, "leave here." + +Merocole has a tiny dwarf face carved into his mouth. + +Geldrin fixes the runes on the prison. Goes to close them all except Keakis? on one of them, where Geldrin's fixing mark comes over and it works. + +Two creatures come in with a small box, claiming it is a present. Black shard in the box. Calls us the elemental of Void and they want us to put him where he is meant to go. + +I bring in a gift: Frost pole ball. Want us to switch out the frost elementals. + +Browning is running this show here? + +Dotharl messes with the symbols on Aneurascarle's prison. diff --git a/data/2-pages/276.txt b/data/2-pages/276.txt new file mode 100644 index 0000000..d434515 --- /dev/null +++ b/data/2-pages/276.txt @@ -0,0 +1,23 @@ +Page: 276 +Source: data/1-source/IMG_9949.jpg + +Transcription: +Bynx speaks to Dirk and tells him his brothers are coming. Close the door. + +I shut the door and purple bears appear. + +Four Juticars appear through the tears. We have met them before: Scumbleduck, rubber-eye guy, silver dragonborn, and another. + +Robot one says, "Justicar Geldrin, you seem to have forgotten your mission. They don't seem as compliant as they should be." + +Geldrin is being asked why he's not obeying orders. He was until we took out the worm. Everything up to that point was as foretold. Believe he's been compromised. + +If he truly understood, then they wouldn't be able to complete mission. Sent some chaotic tendencies; see in the prognostic machine. + +The wizards mess with the map and say they are preparing for fuel incoming. Map seems to have been reconfigured to do something else recently. + +They activate the table. Giant bearded head, Browning, appears above the table chanting. Spell is countered but he ends with, "and the flight of the gold ends." + +Dragonborn, elf, dwarf teleport leaving the gnome behind. She refuses to say anything. Morgana dispels magic and she comes round. No idea what is going on. She is a treasure hunter. Last remembers a voyage across the sea from Great Farnworth. Doesn't know what year it is. Remembers place details before and after the dome. + +Device is a remote to activate a shield. No way to reverse it. Shouldn't be far from here. diff --git a/data/2-pages/277.txt b/data/2-pages/277.txt new file mode 100644 index 0000000..4d7899e --- /dev/null +++ b/data/2-pages/277.txt @@ -0,0 +1,33 @@ +Page: 277 +Source: data/1-source/IMG_9950.jpg + +Transcription: +Valententhide and Garadwal were important; replacements think it was me who stopped them from tricking the statues. + +"I thought my daughters would like it? Mama Harthall??" + +The table was a trap. + +Prisons look the same except Valententhide's shows symbol of Atlabre. Deactivated. Atlabre symbol not there before. + +Think the dome activation captured the sphynx brothers. + +First room on the right: dusty except for a circle in the middle, which looks like it was dragged towards the door. It was taken to the teleport circle. + +First room on the left: bedroom with old man sleeping. Geldrin tells Dirk to get the box from under his pillow. + +Second room on the right: dormitory. + +Second room on the left: bed, similar to last one. Bed empty and bookcase full of alloys, travel guides, and botany. + +Dirk tries to see if there is a box under the pillow again, but finds a thorny brush: briar, nuisance weed. Morgana keeps it. + +Box sends Geldrin and Morgana to sleep. The mage wakes up and thinks it is 3740 AC; slept for a while. + +Thinks Dirk looks like a Thrunglagen. + +He is looking for his spellbook. Found it in his room. Humorous: old Rivermeet headmaster. + +Open the door to the teleport room and Barrier trapping Trixus, Benu, Garadwal, and Bynx. + +Temporary Wisdom removed. diff --git a/data/2-pages/278.txt b/data/2-pages/278.txt new file mode 100644 index 0000000..2a975a9 --- /dev/null +++ b/data/2-pages/278.txt @@ -0,0 +1,27 @@ +Page: 278 +Source: data/1-source/IMG_9951.jpg + +Transcription: +Benu says they have news and have reunited in this dire hour. + +Thwarted many of their plans and things came to light after speaking to his dad. + +Garadwal's mind is clearer and the way to repay his misdeeds is by helping us. His dad now trusts us after bringing his children back together. + +Wizards seeking godhood all sought to live forever. Envy sought too much power and it corrupts him. + +Generator not just to protect but to make them more powerful. Experimented. + +Ancient helped? Something gave the ability to remove the emotions. + +We should bring down the dome, but what will become of the bad elementals? + +Garadwal asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. + +Harthall was part of his downfall and Argentum died defending his people. + +Father has said it is our choice to make. All the wizards are being controlled and they and the five wizards can't affect the power sources. + +Decide Browning needs to die. + +Do we want to bring the wizards back to help? diff --git a/data/2-pages/279.txt b/data/2-pages/279.txt new file mode 100644 index 0000000..8a17a07 --- /dev/null +++ b/data/2-pages/279.txt @@ -0,0 +1,31 @@ +Page: 279 +Source: data/1-source/IMG_9952.jpg + +Transcription: +Dirk asks the ancestors if we could succeed defeating Browning as we are now. Doesn't see them but sees sickly elves, elongated and groaning. + +The ritual to make Browning a god takes 1,000 years to complete. It could have completed 13 years ago if Soul hadn't crashed into the tower. + +The dome is draining us all, like it drains the elementals, but only noticeable when close to the edges. + +Browning has a plan in place to increase his power by getting a lot of crystal. + +Scumbledunk betrays us and teleports out after hearing our discussion. + +Try to decide what to do now. + +Go to Riversmeet with Bynx. The others are going to Emercurine to help Harthall. + +Go to Headmaster's office. + +Use Rubyeye's eye and Dotharl to locate Rubyeye and Cardinal, using his death of Hracency. + +Cardinal: picture of inside of Brass dome, enormous set on a beach with air elementals around her, Brass City. + +Rubyeye: floating through stone corridors, dwarven stone work, trapped in an endless loop? Far airwise. + +War going on with the dragons back in Humorous. Gnome remembers Emeraldous causing issues and Ember. + +Humorous is approximately 300 years old. Patrons. + +He would speak to Fairlight Harthall. Windows can't find him. diff --git a/data/2-pages/280.txt b/data/2-pages/280.txt new file mode 100644 index 0000000..dac8dc4 --- /dev/null +++ b/data/2-pages/280.txt @@ -0,0 +1,27 @@ +Page: 280 +Source: data/1-source/IMG_9953.jpg + +Transcription: +Decide to go to the Brass City to free Cardinal via Infestus, using the piece of coal at 15:00. + +Antherous? comes through a portal to us. + +End up on a plateau. Dwarven construction, purple sky. Ghost town feel to it. Seems to be a small dragonborn population in the centre of town. + +Large stone doorway in the middle of the market square. Runes cover the doorway. + +We will be under no harm if we abide by the rules. + +No Bluescale is to come to harm; passive self-defence will be allowed. + +Transactions and deals must be held honestly and truth are the currency. + +Do not disclose the location of Bluescale or the location of the archway. + +Go through the portal. + +Guards at the portal take over looking after us and taking us to Infestus. + +Museum: curiosity from Keep Rememberence. + +The man laughed so much in a long-long time, killed the bitch. Returned his first-born son's skull. Killed his son who slept with the bitch. diff --git a/data/2-pages/281.txt b/data/2-pages/281.txt new file mode 100644 index 0000000..d097774 --- /dev/null +++ b/data/2-pages/281.txt @@ -0,0 +1,29 @@ +Page: 281 +Source: data/1-source/IMG_9954.jpg + +Transcription: +Wants to pay us for our good deeds and the things we have done for him. + +Guard takes us to his favourite pub, "The Great Infestus," eating food, and a red dragonborn comes in. The patrons are not surprised by this. + +Ember offers to take us around town. Ask if we have been to a dragon city. Wants a favour if we go back. Did we see any red dragons/dragonborn? Let them know Ember is looking for them. He thought the Red were almost extinct. + +Offers us 1,000 gp if we promise to tell them if we go back. + +Says, "I don't smell right. I smell of elf?!?!" + +Options: +- Jeroll's ode for Geldrin and charged shield crystal. +- Help with the bad elementals to bring the dome down. +- Supply something to bolster the dome. +- Help release Harthall. Kill Wrath? +- Permanent deal to not attack each other. +- Getting to the Brass City. + +Go back to Infestus. + +Day 57 - Black Dragon City in The Underblame + +At 08:00, a council of all towns/states for a treaty to be signed? + +Can ensure Salinas causes no issues. Agreed to get us to the Brass City. Scrolls. Charged shield crystal. Respite in his city. diff --git a/data/2-pages/282.txt b/data/2-pages/282.txt new file mode 100644 index 0000000..cafc7d6 --- /dev/null +++ b/data/2-pages/282.txt @@ -0,0 +1,44 @@ +Page: 282 +Source: data/1-source/IMG_9955.jpg + +Transcription: +Buy a newspaper: +- Someone executed for not paying their bar tab. +- Pegaus farm. +- Nothing interesting. + +Infestus' wife is waiting for us. + +Receive powerful shield crystal and scrolls. + +She smashes an orb and a tiny human appears. + +Infestus' wife chants and it turns into a blue dragon. + +Dragon takes us to the Brass City. + +Teleport to just outside and walk over. + +Two people come to greet us. Smoke-skin type scales. Cobra head under his hood. Diplomats. + +"The People" rule the city. + +Excellence of Air left and never came back. + +Inside the walls is very lush. Doesn't seem to be an enslaved city. + +Elf wizards are the cause of many issues. + +Old masters enslaved the labour. + +Best to check at the citadel for our friend, still under the old regime. + +He knows the name Valenth and directs us to Gaol. + +Go and see. + +Lots of air elementals at the citadel. + +Relaxed atmosphere in the city. + +Glowscale seem to be excited and intrigued to see us. diff --git a/data/2-pages/283.txt b/data/2-pages/283.txt new file mode 100644 index 0000000..4ab43d2 --- /dev/null +++ b/data/2-pages/283.txt @@ -0,0 +1,21 @@ +Page: 283 +Source: data/1-source/IMG_9956.jpg + +Transcription: +A lot of the slaves were repairing and upkeep of the city. The rest were in the citadel and said to be working on a great weapon. + +There was a rebellion, as slaves wanted bread and they were not allowed to get any. They protested and burst into flames. Was told once their ruler went they would be attacked, but not seen anyone, not even Envy. + +A gem shop owner might know what was being worked on. + +Owner was taken to work there cutting a gem. Disappointed he didn't finish. Facets that gleam in the sun. This is a place of great elemental power. Fountains etc are all from the plains. + +He was crafting a body out of shield crystal to create a focusing crystal. It is stored in one of the four great minarets. + +Didn't seem to be a weapon. + +Creatures in the towers became unruly after the Excellence left. + +Dirk starts to talk to the fountain. The water wants to go somewhere but doing a very important job; that's what his dad told him. Hydraxia before he gave him to the blue dragons. Dragons went bad. His dad likes the merfolk but is annoyed by the purple thing. Wants us to fix the babies not going to him. If we sort it out, he will be on our side when it comes to the end. + +Open the door on the right. diff --git a/data/2-pages/284.txt b/data/2-pages/284.txt new file mode 100644 index 0000000..312fae5 --- /dev/null +++ b/data/2-pages/284.txt @@ -0,0 +1,29 @@ +Page: 284 +Source: data/1-source/IMG_9957.jpg + +Transcription: +We open the doors to the citadel. + +Blue dragons and Trixus. + +Tapestry carpet with a sun that has a thick-set dwarf and a slender woman with a bow. + +See a depiction of Garadwal talking to the Dunner people with him. + +No evidence of a fire elemental living here. + +Statues lining the corridor are all facing the wall. Turn one around: runs in the streams, high mountainness? Next one: slays foes bravely. Tabaxi with scales, missing one back leg and ears, "fur of night scales of the sky," first princess of the union but slightly cracked. + +Sword is slightly cracked. + +Sword has been made but the person hasn't? Medusa-type spell? + +Weighted idols, jewellery. Rules: gravity and weight, Lord of the Brass City. + +Necklace appears to be carved out of the statue. Could remove, but not quite right. Statue has space for it to go. + +Something hums and lungs for the next one. Gleams in the first light. High priests of Goklhar? Things are separated; take them. + +Fine-dress, holding book and rose in her hand. Brazier on the floor. "Lies in the morning dew," prophet of the light. It can be removed. + +Put a coin in a spot orbiting around the edge. Ignan: "We are close once more. I will help you say his name when you pick him up." diff --git a/data/2-pages/285.txt b/data/2-pages/285.txt new file mode 100644 index 0000000..c452e1f --- /dev/null +++ b/data/2-pages/285.txt @@ -0,0 +1,21 @@ +Page: 285 +Source: data/1-source/IMG_9958.jpg + +Transcription: +Pick up the cat. Geldrin says There. The cat pops and a big dog appears. Come to aid us in our travels and still due to our service to his mistress. + +Must not damage anything in the city. Must solve something else. + +Excellence of Air went to the dome as needed something to hint his task to make a trap for Sierra, to trap her so Browning can take her place. + +There says, "I forgot something," and brings Bob and Bosh. Still cursed but says he can fix them when we are done. + +Need wizards of the stars to find the sword. + +Six doors at the top of the stairs. + +There stops at a door which has Trixus carved in it. Throne room with two doors either side of the throne. There says this is a control room, which controls planes at once. + +Sword is in the Earth plane, along with Tresmun's body. We mustn't leave the citadel when we go there, and it's hard to get back. + +When we go, all the pictures disappear and the room totally changes. diff --git a/data/2-pages/286.txt b/data/2-pages/286.txt new file mode 100644 index 0000000..917080e --- /dev/null +++ b/data/2-pages/286.txt @@ -0,0 +1,29 @@ +Page: 286 +Source: data/1-source/IMG_9959.jpg + +Transcription: +Completely dark and Invar's magic doesn't work. + +There makes it work, for Counterspell. + +Earth elemental on the other side of the door. He hasn't had anyone from the prime plane for a long time. Not used to anyone other than tabaxi and cobra men. + +On his table: coal, gold dragon, jagged granite, shield crystal. Are they the next people? Are we the next people? + +Gold dragon is actually silver and exactly like Mama Harthall. + +Shield crystal: piece of Tresmon. + +Coal: wet at the bottom. Geldrin pulls the water out of it. + +Granite has scorch marks on it. + +Door appears when we pick up all the items. + +Tavern the other side of the door?! Filled with cats? Harn? + +A ghost was here last carrying a sword and shield. She wasn't welcome and everyone is welcome here. + +Find a table set for us. Geldrin has a piece of parchment, Scroll of Fireball. + +Everyone seems happy but Morgana feels sad, as though there is something missing. Her salad has a needle and thread under it. Thread has dried blood on it. diff --git a/data/2-pages/287.txt b/data/2-pages/287.txt new file mode 100644 index 0000000..e05192f --- /dev/null +++ b/data/2-pages/287.txt @@ -0,0 +1,23 @@ +Page: 287 +Source: data/1-source/IMG_9960.jpg + +Transcription: +A rat comes to Morgana and disintegrates in front of us. Cacophony, met him on page 231, appears as a huge worm and dies. Says it will show her something interesting. + +Her cider starts to swirl and shows a dwarf in a bathroom with runes who is removing his eye. Rubyeye. + +All the cats start staring at us and hiss. The fire burns brighter and then they go back to normal. + +Cat says it is not predetermined and they got rid of something bad that had been following us. + +Dirk puts the coal in the fire and sees an image of a man saving a young girl, and a clever way appears with the rings. + +Small temple, round, by the remains of the Riversmeet bridge and the dwarven bridge. Seward marble around, loads of benches with carving of odd stones, approximately 30. Five unlit candles on the altar. Top temple? + +Try to light the candles but they don't catch. Try to use the granite and it pops like gunpowder when on it. + +Altar has gold statues under it, 10 of them, all different races and missing a dragon. + +Invar uses the torches around to light the candles. Geldrin places the statues of the wizard races by the candles. + +Vision: large round table, seven people, five wizards, Hannah and Icefang. Mama Harthall angry, holding the blue ball, saying, "This is enough. You can't continue this any more." diff --git a/data/3-days/day-53.md b/data/3-days/day-53.md new file mode 100644 index 0000000..3d765a9 --- /dev/null +++ b/data/3-days/day-53.md @@ -0,0 +1,150 @@ +--- +day: day-53 +date: unknown +complete: true +source_pages: + - data/2-pages/263.txt + - data/2-pages/264.txt + - data/2-pages/265.txt + - data/2-pages/266.txt + - data/2-pages/267.txt + - data/2-pages/268.txt +source_ranges: + - data/2-pages/263.txt:29-43 + - data/2-pages/264.txt + - data/2-pages/265.txt + - data/2-pages/266.txt + - data/2-pages/267.txt + - data/2-pages/268.txt:5-13 +--- + +# Raw Notes + +## Page 263 + +Day 53 - Bridget / Domain + +Friend is intriguing her. Why do we help each other? + +Dragon she banished is coming back. There is only one way big enough. Nods at Invar. She will be doing it soon. Took the opportunity to get more hands, which channelled the power of the silver. + +The information needed to decide what to do is available for us now. + +Need to understand I am Elliana and Elliana. I can't be both. + +She wants to know where we want to go. Dwarf city, appear back by Papa Illmarne's dome. + +High Priest King says job is to keep Papa Illmarne's dome. + +Two dwarves by the dome say we are wanted criminals for liberating a prisoner. + +## Page 264 + +High Priest King / General / Advocate / Ambassador / Guild Mistress sit around the table in the council chamber. + +Female: Blakedurn's family run the guilds, renowned family. Purple eyes. Anya, Guild Mistress. Heard a lot about us and will be representing us with the council. Quizzes us, asks about dragons, dragonborn, automatons, gnomes. + +Rubyeye known as a liar, maybe affected by wrath for this. + +Wants more information for payment for representing us. + +Geldrin tells her about Perodita trying to get back in the dome through the city. + +Door opens. + +Male: Ambassador Grunged Thundersinger. Also wants to speak to us alone and can offer us things. + +Male: Advocate Trinchel Rhinebeard. Speaks for minorities. + +Male: General Tussil Pebblegrinder. + +Male: High Priest King, Calthid Metalshaper. + +King is not happy with us for introducing, giving him Garadwal's armour. + +Thinks we summoned a creature of darkness. Blakedurn says that wasn't us. + +## Page 265 + +Won't discuss why Rubyeye was a prisoner. + +Betrayed their people, a very high crime considered treason. + +- Responsible for death of the princess. +- Demon pacts condemning souls to death. + +Other pressing matter: Perodita. We are under investigation. + +Advocate wishes to contact his kin. Agree to go fight Perodita. General goes to gather the army. + +Check Blakedurn's ear. No worm, but canal looks odd. Morgana checks and it is wrong, too small and no hair. + +Dirk/Thamia checks her: not a Thamia. + +Head over to her house. Door is odd, broken and not repaired very well. Weird for her standing. Tell her about the ear bugs. Takes it with an air of, "should we trust her?" House has lots of Sierra aspects, very Dunner styling. + +Query her. Place is messed up and she is not. + +Confesses to not be a dwarf. Black dragon. Wants the dwarves to succeed. Her deal is just for herself, jewels, etc. + +Rubyeye was her prisoner and she wants him back. She will help us defeat Perodita. We help restore the Dwarven kingdoms. + +## Page 266 + +What happened to the dwarves? Not sure. + +She was responsible for the black smoke incident, a smaller version of the hockey pack. + +Device to summon Rubyeye was from her father and took her years to master it. + +Perodita says goliaths' suffering was her tribute to Noxia. + +People in power are inept and their instructions are inept, but the general and people are inept due to these instructions. + +Started approximately 20 years ago. Hole in Papa's Dome. Knows of black dragons, green dragons, silver dragon (doesn't know who it is), blue dragons all dead, white dragon Icefang. + +Go to Papa's Dome. + +The guards try to take our weapons. We meekly persuade them to let us through. Shouldn't be that easy. + +Unable to repair the hole without pylons. Has more freedom lately, using it to break the dwarves as they treated him. + +Decide we can't do anything with the dome. + +About 200 dwarves, well equipped. Full army count around 1,000. Can't ask the general how many to expect here. + +Guild Mistress, General, and Ambassador come with us. + +## Page 267 + +Roll call for 1,017 soldiers. + +Dirk inspects the wagons. Not great supplies: no water, lots of wine, food for one day, no weapons, arrows, or other supplies. + +Get a dwarf promoted to Quartermaster, as the last one died two years ago and was not replaced. + +He started to take notes. Well, then starts to become glassy-eyed and hopeless. + +Cast Lesser Restoration and he returns to normal. + +Try to do the same on the general, but something seems to stop it: malevolent presence. Cast Greater Restoration on him. Eyes go black. Dark smoke rises from his shoulders. It flies to the ceiling and dissipates. He comes back to reality and gets everything together. + +At 12:00, army starts to move. + +Morgana flies ahead of the army to notify the town. + +Bridget isn't dwarven construction: elemental? + +Morgana comes across a small wagon train with ebony dwarves, around 40. They shoot at her and damage her, but she continues. + +## Page 268 + +She then stops to speak to them, and they state they are envoys from the city to meet the army. She then continues to the city. + +Blood all around the outside of the door to the city. Obvious sign of damage to the buildings. + +A lone dwarf calls out from a building and says she shouldn't be in the streets. She goes in and turns into a llamia with ratmen companions. She runs away back over the bridge. + +Tendruts follows her and says, "Come back any time." + +Try to get back to us. diff --git a/data/3-days/day-54.md b/data/3-days/day-54.md new file mode 100644 index 0000000..629769c --- /dev/null +++ b/data/3-days/day-54.md @@ -0,0 +1,39 @@ +--- +day: day-54 +date: unknown +complete: true +source_pages: + - data/2-pages/268.txt + - data/2-pages/269.txt +source_ranges: + - data/2-pages/268.txt:15-29 + - data/2-pages/269.txt:5-9 +--- + +# Raw Notes + +## Page 268 + +Day 54 - Magstein / Grimcrag bridge + +Scouts report the convoy approaching. Ambassador is still glazed; Greater Restoration works. + +Go to meet the convoy. Leader is tall for a dwarf. + +Dotharl sees invisible people holding onto one of the wagons, 40 of them. + +Morgana swoops at the wagon with invisible people on it. Geldrin kills 30 of them with Fireball. Dotharl casts Shatter. + +Elementals start to approach us. + +Fight the rest of the convoy. Free 26 dwarves from Grimcrag and subdue the main enemies. + +12 army dwarves are killed. + +## Page 269 + +Elementals get near and the Ambassador approaches with coins, approximately 100 coins. "Take the coins to their mother to persuade them not to attack us." It works. + +Investigate the carts. The one with the invisible people has a carved elven shield crystal and copper; assume cause of invisibility. Complete horror. + +Four wagons are filled with poison barrels. Five wagons are filled with explosives, general-purpose. diff --git a/data/3-days/day-55.md b/data/3-days/day-55.md new file mode 100644 index 0000000..295fdf3 --- /dev/null +++ b/data/3-days/day-55.md @@ -0,0 +1,131 @@ +--- +day: day-55 +date: unknown +complete: true +source_pages: + - data/2-pages/269.txt + - data/2-pages/270.txt + - data/2-pages/271.txt + - data/2-pages/272.txt + - data/2-pages/273.txt +source_ranges: + - data/2-pages/269.txt:11-23 + - data/2-pages/270.txt + - data/2-pages/271.txt + - data/2-pages/272.txt + - data/2-pages/273.txt:5-17 +--- + +# Raw Notes + +## Page 269 + +Day 55 - Magstein / Grimcrag bridge side + +Dotharl dreams when waking up. In a glass dome, plush carpet, etc. He goes up to the glass and an eyeball appears pressed up against the glass: piercing blue, skin not scales, lace/white hair. It knocks on the dome. No one there. + +A woman with bright green eyes and an arm draped around his shoulders wakes up and is helping him. She doesn't know who she is to him. To close to her friend to be asleep: this friend hurt her. Friends warn us not to continue. Our only warning. Her brother hates us. She has a new friend, Envy? + +Morgana tries to talk to No-Hurt. It has spread everywhere and has killed things. + +Haven't found a llamia in the army. + +Decide to blow up the doors. + +Morgana scouts ahead. Doors are now closed. Lots of arrow slits. They shoot her and hit her. + +## Page 270 + +Lots of people waiting to ambush us in the walls. + +When we approach the door, the wind gets louder. + +Send wagons in with a shield wall. + +Hear a drum reverberating through Invar's feet, scraping and grinding noise. + +Perodita flies up from the bridge. Black ichor coming from her chest. + +Damage her, then she flies off. + +Llamia and ratmen killed by the dwarven army. + +Black dragon sister is nowhere to be seen. + +Bridge was damaged. + +Invar remembers Blackthorn wasn't allowed to free his friend, as it was a trick. Bridget allowed it as it was for a trap, so she found it funny. + +Wrath, Black dragonborn, appears. Busy fighting green dragons, Perodita's kids. Basilisk currently a piece of coal at Coalmont Rally; crush it to teleport to Infestus. Gives us memories and offers more. + +City was taken over in the last month, gradually removing infrastructure. Then they seemed to turn on each other when Perodita attacked yesterday. + +Long rest. + +Plan: leave dwarf army here and teleport to Magstein and attack her there in the cavern. + +## Page 271 + +Geldrin asks Bridget if Perodita is still travelling. A sleepy cockroach appears: she is asleep. Didn't have a good rest, too painful; it hurts, can't fix. + +Dwarves staying at Grimcrag to recover and recuperate. She is approximately 13 hours away, depending on how much sleep she has had. + +Use rift blade to teleport to Magstein. + +Go to find the High Priest at Papa Marmaru. + +Guards try to stop us but we try to break through. Invar and Geldrin get through and the High Priest calls off the guards. They stop as one, odd. + +High Priest is not the high priest any more. One of the gods: which one? Merocole. + +Cast Greater Restoration on high priest. Large smoke sphere, spidery legs, human-like face. Wants Papa Marmaru. + +Invar offers Papa Marmaru his goblet. It asks if he wants this to happen. Sounds raspy: don't trust Merocole, Marmaru has chosen to be here, and looks after the dwarves. Leave him to it. + +Search for some explosives. + +## Page 272 + +Two small passages she has to navigate and pull her wings in to get through. + +Set up so explosives crush her mid-point and set Wall of Force to stop her from moving forward. + +Made a hide to conceal ourselves. + +Blasting holes in the ceiling. + +Set alarm in the second choke point. 24 hours, no alarm has gone off. 27 - alarm goes off. 25. + +Pass without a trace set. + +After 45 minutes, hear echoes get louder, stumbling and crashing into a wall. + +Noise intense and terrifying. She sees the hide and knows something is wrong. She starts to attack us and we don't get to run away before she breath-weapons us. + +We trap her in the tunnel and kill her with Walls of Fire. + +Noxia essence flows out of her and most things seem to heal it. Manage to kill it. Small puddle under the menstruum. + +Perodita is dead. + +Move ooze from Noxia into a barrel. + +Perodita's wounds look old and haven't healed, covered in injuries and never healed. + +Find gold coins in her belly scales, lots of different types and ages. + +## Page 273 + +7,000 gp in total. Put it into the bag to sort and auction later. + +Geldrin feels blood in the tower was an experiment. + +Go to the "Crusty Beard" for rest at 23:00. Takes a few hours. Most of the town is quiet but the pub is bustling: common craftsmen and bakers, etc. Weird hair wall. Memorial to dead dwarves who drank here. + +City has been strange over the last few years. Council don't meet. Militia not great. Lots of theft, etc. + +Two guards walk in wearing faceplates. Bar gets quiet. They drink half and walk out without paying. + +Overhear mutterings about being worried about them being around, being shit at their jobs. + +Head to bed at 02:00. diff --git a/data/3-days/day-56.md b/data/3-days/day-56.md new file mode 100644 index 0000000..f9f15e1 --- /dev/null +++ b/data/3-days/day-56.md @@ -0,0 +1,256 @@ +--- +day: day-56 +date: unknown +complete: true +source_pages: + - data/2-pages/273.txt + - data/2-pages/274.txt + - data/2-pages/275.txt + - data/2-pages/276.txt + - data/2-pages/277.txt + - data/2-pages/278.txt + - data/2-pages/279.txt + - data/2-pages/280.txt + - data/2-pages/281.txt +source_ranges: + - data/2-pages/273.txt:19-29 + - data/2-pages/274.txt + - data/2-pages/275.txt + - data/2-pages/276.txt + - data/2-pages/277.txt + - data/2-pages/278.txt + - data/2-pages/279.txt + - data/2-pages/280.txt + - data/2-pages/281.txt:5-23 +--- + +# Raw Notes + +## Page 273 + +Day 56 - Crusty Beard, Magstein + +Temporary Wisdom -2. + +At 11:00, go to an abandoned house to teleport to Grand Towers control room. + +Geldrin enters a dream-like state when teleporting. Sees an elf face saying, "I'm foolish. I should have known this was going to happen... Never mind." + +Extravagant room considering other teleport room we have been to. Very elaborate tapestries. Out of place really. + +Door was trapped but disarmed in the last 5-10 minutes. + +## Page 274 + +Dotharl sees Valententhide reflected in Invar's armour. + +We leave the room and see lots of doors and two "people" guarding? + +Tapestry has five wizards and an invisible lady who is invisible in the painting too. She looks like Hannah Joy. Dotharl doesn't know who she is, so he can't see her because he knows she exists. + +The creature says she is new. + +They are expecting us. There are 27 of them. We should go on and talk to Humility. They are all part of Humility. They disarmed the traps. + +Spherical room, four doors, and an elf stood in the middle. It is the one Geldrin saw when teleporting. + +They are currently in control of the control room. + +They are not doing anything with it and we can do whatever we want to as they have taken control of it for us. + +They are all part of Thomas and removed so he could become Envy. + +Can't put them back together without the big weak part, as many parts died. + +Thanks us for freeing him from the cart on the dwarf bridge. + +Takes us to the control room. + +## Page 275 + +Two automatons guard the door. + +Go in and see eight statues around the room. + +Salana's runes are intact. + +Garadwal and Valententhide runes are unlit; the rest are flickering. + +Most of the monks are meandering around the room. + +Dotharl looks at the Valententhide statue and thinks he just sees the statue, but it then attacks him. + +Geldrin investigates the statue and takes damage. + +The runes around it light up saying, "leave here." + +Merocole has a tiny dwarf face carved into his mouth. + +Geldrin fixes the runes on the prison. Goes to close them all except Keakis? on one of them, where Geldrin's fixing mark comes over and it works. + +Two creatures come in with a small box, claiming it is a present. Black shard in the box. Calls us the elemental of Void and they want us to put him where he is meant to go. + +I bring in a gift: Frost pole ball. Want us to switch out the frost elementals. + +Browning is running this show here? + +Dotharl messes with the symbols on Aneurascarle's prison. + +## Page 276 + +Bynx speaks to Dirk and tells him his brothers are coming. Close the door. + +I shut the door and purple bears appear. + +Four Juticars appear through the tears. We have met them before: Scumbleduck, rubber-eye guy, silver dragonborn, and another. + +Robot one says, "Justicar Geldrin, you seem to have forgotten your mission. They don't seem as compliant as they should be." + +Geldrin is being asked why he's not obeying orders. He was until we took out the worm. Everything up to that point was as foretold. Believe he's been compromised. + +If he truly understood, then they wouldn't be able to complete mission. Sent some chaotic tendencies; see in the prognostic machine. + +The wizards mess with the map and say they are preparing for fuel incoming. Map seems to have been reconfigured to do something else recently. + +They activate the table. Giant bearded head, Browning, appears above the table chanting. Spell is countered but he ends with, "and the flight of the gold ends." + +Dragonborn, elf, dwarf teleport leaving the gnome behind. She refuses to say anything. Morgana dispels magic and she comes round. No idea what is going on. She is a treasure hunter. Last remembers a voyage across the sea from Great Farnworth. Doesn't know what year it is. Remembers place details before and after the dome. + +Device is a remote to activate a shield. No way to reverse it. Shouldn't be far from here. + +## Page 277 + +Valententhide and Garadwal were important; replacements think it was me who stopped them from tricking the statues. + +"I thought my daughters would like it? Mama Harthall??" + +The table was a trap. + +Prisons look the same except Valententhide's shows symbol of Atlabre. Deactivated. Atlabre symbol not there before. + +Think the dome activation captured the sphynx brothers. + +First room on the right: dusty except for a circle in the middle, which looks like it was dragged towards the door. It was taken to the teleport circle. + +First room on the left: bedroom with old man sleeping. Geldrin tells Dirk to get the box from under his pillow. + +Second room on the right: dormitory. + +Second room on the left: bed, similar to last one. Bed empty and bookcase full of alloys, travel guides, and botany. + +Dirk tries to see if there is a box under the pillow again, but finds a thorny brush: briar, nuisance weed. Morgana keeps it. + +Box sends Geldrin and Morgana to sleep. The mage wakes up and thinks it is 3740 AC; slept for a while. + +Thinks Dirk looks like a Thrunglagen. + +He is looking for his spellbook. Found it in his room. Humorous: old Rivermeet headmaster. + +Open the door to the teleport room and Barrier trapping Trixus, Benu, Garadwal, and Bynx. + +Temporary Wisdom removed. + +## Page 278 + +Benu says they have news and have reunited in this dire hour. + +Thwarted many of their plans and things came to light after speaking to his dad. + +Garadwal's mind is clearer and the way to repay his misdeeds is by helping us. His dad now trusts us after bringing his children back together. + +Wizards seeking godhood all sought to live forever. Envy sought too much power and it corrupts him. + +Generator not just to protect but to make them more powerful. Experimented. + +Ancient helped? Something gave the ability to remove the emotions. + +We should bring down the dome, but what will become of the bad elementals? + +Garadwal asks a few months ago to bring it down. Now asks for the same thing for different reasons. It was a part of him who enjoyed the bad part of him and got lazy with it. + +Harthall was part of his downfall and Argentum died defending his people. + +Father has said it is our choice to make. All the wizards are being controlled and they and the five wizards can't affect the power sources. + +Decide Browning needs to die. + +Do we want to bring the wizards back to help? + +## Page 279 + +Dirk asks the ancestors if we could succeed defeating Browning as we are now. Doesn't see them but sees sickly elves, elongated and groaning. + +The ritual to make Browning a god takes 1,000 years to complete. It could have completed 13 years ago if Soul hadn't crashed into the tower. + +The dome is draining us all, like it drains the elementals, but only noticeable when close to the edges. + +Browning has a plan in place to increase his power by getting a lot of crystal. + +Scumbledunk betrays us and teleports out after hearing our discussion. + +Try to decide what to do now. + +Go to Riversmeet with Bynx. The others are going to Emercurine to help Harthall. + +Go to Headmaster's office. + +Use Rubyeye's eye and Dotharl to locate Rubyeye and Cardinal, using his death of Hracency. + +Cardinal: picture of inside of Brass dome, enormous set on a beach with air elementals around her, Brass City. + +Rubyeye: floating through stone corridors, dwarven stone work, trapped in an endless loop? Far airwise. + +War going on with the dragons back in Humorous. Gnome remembers Emeraldous causing issues and Ember. + +Humorous is approximately 300 years old. Patrons. + +He would speak to Fairlight Harthall. Windows can't find him. + +## Page 280 + +Decide to go to the Brass City to free Cardinal via Infestus, using the piece of coal at 15:00. + +Antherous? comes through a portal to us. + +End up on a plateau. Dwarven construction, purple sky. Ghost town feel to it. Seems to be a small dragonborn population in the centre of town. + +Large stone doorway in the middle of the market square. Runes cover the doorway. + +We will be under no harm if we abide by the rules. + +No Bluescale is to come to harm; passive self-defence will be allowed. + +Transactions and deals must be held honestly and truth are the currency. + +Do not disclose the location of Bluescale or the location of the archway. + +Go through the portal. + +Guards at the portal take over looking after us and taking us to Infestus. + +Museum: curiosity from Keep Rememberence. + +The man laughed so much in a long-long time, killed the bitch. Returned his first-born son's skull. Killed his son who slept with the bitch. + +## Page 281 + +Wants to pay us for our good deeds and the things we have done for him. + +Guard takes us to his favourite pub, "The Great Infestus," eating food, and a red dragonborn comes in. The patrons are not surprised by this. + +Ember offers to take us around town. Ask if we have been to a dragon city. Wants a favour if we go back. Did we see any red dragons/dragonborn? Let them know Ember is looking for them. He thought the Red were almost extinct. + +Offers us 1,000 gp if we promise to tell them if we go back. + +Says, "I don't smell right. I smell of elf?!?!" + +Options: + +- Jeroll's ode for Geldrin and charged shield crystal. +- Help with the bad elementals to bring the dome down. +- Supply something to bolster the dome. +- Help release Harthall. Kill Wrath? +- Permanent deal to not attack each other. +- Getting to the Brass City. + +Go back to Infestus. diff --git a/data/4-days-cleaned/day-53.md b/data/4-days-cleaned/day-53.md new file mode 100644 index 0000000..709cc3f --- /dev/null +++ b/data/4-days-cleaned/day-53.md @@ -0,0 +1,64 @@ +--- +day: day-53 +date: unknown +source_pages: + - 263 + - 264 + - 265 + - 266 + - 267 + - 268 +complete: true +--- + +# Narrative + +Day 53 began in Bridget's domain. Bridget said the party's friend intrigued her and asked why they helped one another. She warned that a dragon she had banished was coming back and that there was only one way large enough for that return. She nodded at Invar and said the dragon would act soon, having taken the opportunity to get more hands that channelled the power of the silver. Bridget said the information needed for the party's decision was now available. The narrator needed to understand, "I am Elliana and Elliana. I can't be both." + +Bridget asked where the party wanted to go, and they chose the dwarf city by Papa Illmarne's dome. When they appeared there, the High Priest King said his job was to keep Papa Illmarne's dome. Two dwarves by the dome said the party were wanted criminals for liberating a prisoner. + +The party entered a council chamber where the High Priest King, General, Advocate, Ambassador, and Guild Mistress sat around a table. Anya Blakedurn, the Guild Mistress, came from the renowned Blakedurn family, had purple eyes, and represented the party before the council. She questioned them about dragons, dragonborn, automatons, and gnomes. Rubyeye was known as a liar, possibly affected by Wrath. Blakedurn wanted more information in exchange for representing them. Geldrin told her that Perodita was trying to get back into the dome through the city. + +Other council figures arrived or were identified: Ambassador Grunged Thundersinger, who also wanted to speak privately and offer things; Advocate Trinchel Rhinebeard, who spoke for minorities; General Tussil Pebblegrinder; and High Priest King Calthid Metalshaper. Calthid was unhappy that the party had brought or introduced Garadwal's armour, believing they had summoned a creature of darkness. Blakedurn said that had not been the party. + +The council would not discuss why Rubyeye had been imprisoned, but named his crimes as treason, responsibility for the death of the princess, and demon pacts condemning souls to death. Perodita was treated as the pressing emergency, though the party remained under investigation. The Advocate wished to contact his kin. The party agreed to fight Perodita, and the General went to gather the army. + +The party checked Blakedurn's ear. It had no worm, but the canal looked wrong: too small, with no hair. Dirk or Thamia checked her and determined she was not a Thamia. The party went to Blakedurn's house, whose odd, broken, poorly repaired door seemed strange for someone of her standing. The house had Sierra aspects and Dunner styling. Blakedurn confessed that she was not a dwarf but a black dragon. She wanted the dwarves to succeed, but her deal was also for herself, jewels, and similar interests. Rubyeye had been her prisoner and she wanted him back. She would help defeat Perodita if the party helped restore the Dwarven kingdoms. + +Blakedurn did not know exactly what had happened to the dwarves. She had been responsible for the black smoke incident, which was a smaller version of the hockey pack. Her father had made the device to summon Rubyeye, and mastering it had taken her years. Perodita claimed the goliaths' suffering was her tribute to Noxia. The people in power were inept, and their instructions were inept, with the general population made inept by those instructions. The situation had begun about twenty years earlier with a hole in Papa's Dome. Blakedurn knew of black dragons, green dragons, a silver dragon whose identity she did not know, dead blue dragons, and the white dragon Icefang. + +At Papa's Dome, guards tried to take the party's weapons but were too easily persuaded to let them through. The party found the hole could not be repaired without pylons. Papa had more freedom lately and was using that freedom to break the dwarves as they had treated him. The party decided they could not resolve the dome immediately. About two hundred dwarves were well equipped, and the full army counted roughly one thousand. Blakedurn, the General, and the Ambassador came with the party. + +Roll call counted 1,017 soldiers. Dirk inspected the wagons and found the army badly supplied: no water, much wine, one day's food, and no weapons, arrows, or other supplies. The party got a dwarf promoted to Quartermaster, since the last had died two years earlier and had not been replaced. As he began taking notes, he became glassy-eyed and hopeless. Lesser Restoration returned him to normal. The party attempted the same with the General, but a malevolent presence seemed to stop it. Greater Restoration made his eyes go black; dark smoke rose from his shoulders, flew to the ceiling, dissipated, and he returned to reality and organised the army. + +At 12:00 the army moved. Morgana flew ahead to notify the town. The party noted that Bridget might not be dwarven construction but elemental. Morgana encountered a small wagon train of about forty ebony dwarves. They shot her and damaged her, but she continued. She then stopped to speak with envoys from the city who had come to meet the army, then continued to the city. Blood lay around the outside of the city door, and buildings were visibly damaged. A lone dwarf called from a building, warning her she should not be in the streets. Inside, the dwarf turned into a llamia with ratmen companions. Morgana fled back over the bridge. Tendruts followed her and said, "Come back any time." The party then tried to get Morgana back to them. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Bridget, Invar, Elliana / Elliana Harthall, Papa Illmarne, the High Priest King, Anya Blakedurn, Rubyeye, Wrath, Perodita, Geldrin, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Calthid Metalshaper, Garadwal, Thamia, Noxia, Icefang, Papa / Papa's Dome, Dirk, Morgana, the promoted Quartermaster, Tendruts, and the lone dwarf / llamia. + +Groups and factions mentioned include the party, Bridget's domain and kin, dwarves, the Dwarven kingdoms, the council, Blakedurn's family, guilds, dragonborn, automatons, gnomes, black dragons, green dragons, blue dragons, goliaths, ratmen, ebony dwarves, the army, and city envoys. + +Places mentioned include Bridget's domain, the dwarf city, Papa Illmarne's dome / Papa's Dome, the council chamber, Blakedurn's house, the city approached by the army, the bridge, and the damaged city door. + +# Items, Rewards, and Resources + +Items and resources mentioned include Garadwal's armour, Rubyeye's prison history, demon pacts, the ear-bug check, Blakedurn's Rubyeye-summoning device from her father, the hole in Papa's Dome, pylons needed to repair the dome, poor army supplies, wagons, Greater Restoration and Lesser Restoration, and the city convoy. + +Strategic resources and obligations include Blakedurn's bargain to help defeat Perodita in exchange for restoring the Dwarven kingdoms, the need to recover Rubyeye for Blakedurn, the army of 1,017 soldiers, the restored Quartermaster and General, and Morgana's reconnaissance of the city. + +# Clues, Mysteries, and Open Threads + +Bridget's warning that a banished dragon is returning through a route involving Invar and silver remains an urgent clue. + +The narrator's identity problem is sharpened by Bridget's statement that the narrator must understand being "Elliana and Elliana" but cannot be both. + +Papa Illmarne's dome has a hole and cannot be repaired without pylons. Papa's increased freedom is being used to break the dwarves as revenge. + +Blakedurn is secretly a black dragon, not a dwarf or Thamia. Her father made the device for summoning Rubyeye, and her long-term goals for the Dwarven kingdoms remain only partly aligned with the party. + +Perodita's tribute to Noxia, the goliaths' suffering, and the approximate twenty-year start of the dwarven decline are connected but not fully explained. + +The malevolent smoke that resisted restoration in the General, the Quartermaster's hopelessness, and Blakedurn's black smoke incident suggest a wider control or corruption affecting dwarven leadership. + +The llamia and ratmen inside the damaged city show the city's occupation or infiltration is active as Day 53 closes. diff --git a/data/4-days-cleaned/day-54.md b/data/4-days-cleaned/day-54.md new file mode 100644 index 0000000..088132a --- /dev/null +++ b/data/4-days-cleaned/day-54.md @@ -0,0 +1,38 @@ +--- +day: day-54 +date: unknown +source_pages: + - 268 + - 269 +complete: true +--- + +# Narrative + +Day 54 began at the Magstein / Grimcrag bridge. Scouts reported a convoy approaching. The Ambassador was still glazed, but Greater Restoration worked on him. The party went to meet the convoy, whose leader was tall for a dwarf. + +Dotharl saw about forty invisible people holding onto one of the wagons. Morgana swooped at that wagon. Geldrin killed thirty of the invisible attackers with Fireball, and Dotharl cast Shatter. Elementals began approaching as the party fought the rest of the convoy. They freed twenty-six Grimcrag dwarves, subdued the main enemies, and lost twelve army dwarves. + +When the elementals drew near, the Ambassador approached them with about one hundred coins and said, "Take the coins to their mother to persuade them not to attack us." The offering worked. The party investigated the carts. The wagon with the invisible people held a carved elven shield crystal and copper, assumed to be the cause of their invisibility. The notes describe this as complete horror. Four wagons were full of poison barrels, and five held general-purpose explosives. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include the Ambassador, Dotharl, Morgana, Geldrin, the tall dwarf convoy leader, and the elementals' mother. + +Groups and factions mentioned include the party, scouts, Grimcrag dwarves, invisible attackers, army dwarves, elementals, and convoy enemies. + +Places mentioned include Magstein, Grimcrag, the Grimcrag bridge, the convoy route, and the bridge-side battlefield. + +# Items, Rewards, and Resources + +Items and resources mentioned include about one hundred coins offered to the elementals' mother, a carved elven shield crystal, copper, poison barrels, general-purpose explosives, the convoy wagons, and Fireball / Shatter used in combat. + +The party recovered knowledge of dangerous enemy logistics: invisibility equipment, poison, and explosives moving by wagon. + +# Clues, Mysteries, and Open Threads + +The elementals accepted coins taken to "their mother," suggesting an elemental authority or relationship relevant to the ongoing elemental-prison and Bridget threads. + +The carved elven shield crystal and copper appear to enable invisibility, linking shield-crystal technology to battlefield infiltration. + +The poison barrels and explosives show the enemy intended large-scale sabotage or assault, but the exact destination and commander remain open. diff --git a/data/4-days-cleaned/day-55.md b/data/4-days-cleaned/day-55.md new file mode 100644 index 0000000..b692a4d --- /dev/null +++ b/data/4-days-cleaned/day-55.md @@ -0,0 +1,61 @@ +--- +day: day-55 +date: unknown +source_pages: + - 269 + - 270 + - 271 + - 272 + - 273 +complete: true +--- + +# Narrative + +Day 55 began at the Magstein / Grimcrag bridge side. On waking, Dotharl dreamed he was inside a glass dome with a plush carpet. He approached the glass and saw a piercing blue eye pressed against it, with skin rather than scales and lace-like white hair. It knocked on the dome, but no one was there. A woman with bright green eyes and an arm around his shoulders woke and helped him. She did not know who she was to him and was too close to her friend to be asleep. The notes say the friend hurt her, that friends warned the party not to continue, and that this was the party's only warning. Her brother hated the party, and she had a new friend, perhaps Envy. + +Morgana tried to talk to No-Hurt. It had spread everywhere and had killed things. The party had not found a llamia in the army. They decided to blow up the doors. Morgana scouted ahead and found the doors closed with many arrow slits; she was shot and hit. + +Many attackers waited in the walls. As the party approached the door, the wind grew louder. They sent wagons in with a shield wall. Invar heard a drum reverberating through his feet, along with scraping and grinding. Perodita flew up from the bridge with black ichor coming from her chest. The party damaged her, and she fled. The dwarven army killed the llamia and ratmen. The black dragon sister was nowhere to be seen, and the bridge was damaged. + +Invar remembered that Blackthorn had not been allowed to free his friend because it was a trick. Bridget allowed it because it was for a trap and she found it funny. Wrath, a black dragonborn, appeared. He was busy fighting green dragons, Perodita's children. He said the basilisk was currently a piece of coal at Coalmont Rally; crushing it would teleport the party to Infestus. Wrath gave the party memories and offered more. The city had been taken over during the last month through gradual removal of infrastructure, but the occupiers seemed to turn on each other when Perodita attacked the previous day. The party took a long rest, planning to leave the dwarf army at Grimcrag and teleport to Magstein to attack Perodita in her cavern. + +Geldrin asked Bridget whether Perodita was still travelling. A sleepy cockroach appeared and said Perodita was asleep, that she had not rested well because she was in pain and could not fix it. The dwarves stayed at Grimcrag to recover. Perodita was about thirteen hours away, depending on her sleep. The party used the rift blade to teleport to Magstein and went to find the High Priest at Papa Marmaru. Guards tried to stop them, but when Invar and Geldrin got through, the High Priest called off the guards, who stopped as one in an odd manner. + +The High Priest was no longer the High Priest, but one of the gods: Merocole. Greater Restoration revealed a large smoke sphere with spidery legs and a human-like face that wanted Papa Marmaru. Invar offered Papa Marmaru his goblet. Papa Marmaru asked whether Invar wanted this to happen and, in a raspy voice, warned not to trust Merocole. Marmaru had chosen to be there and looked after the dwarves, so he should be left to it. The party searched for explosives. + +The party prepared a trap in two small passages where Perodita would need to pull in her wings. Explosives were arranged to crush her midpoint, with Wall of Force to stop her moving forward. The party made a hide, blasted holes in the ceiling, set an alarm in the second choke point, and used Pass without Trace. After twenty-seven hours the alarm went off. Forty-five minutes later, echoes grew louder, and Perodita stumbled and crashed into a wall. She saw the hide, realised something was wrong, and attacked before the party could run away, catching them with her breath weapon. The party trapped her in the tunnel and killed her with Walls of Fire. + +Noxia essence flowed out of Perodita. Most things seemed to heal it, but the party managed to kill it, leaving a small puddle under the menstruum. Perodita was dead. They moved the ooze from Noxia into a barrel. Perodita's wounds looked old, covered in injuries that had never healed. They found gold coins in her belly scales, many types and ages, totalling 7,000 gp. Geldrin sensed that the blood in the tower had been an experiment. + +The party went to the Crusty Beard to rest at 23:00. The town was mostly quiet, but the pub was busy with common craftsmen, bakers, and others. It had a strange hair wall and a memorial to dead dwarves who had drunk there. The city had been strange over the last few years: the council did not meet, the militia was poor, and theft was common. Two guards wearing faceplates entered; the bar went quiet. They drank half their drinks and left without paying. The party overheard mutterings about people worrying that the guards were nearby and bad at their jobs. The party went to bed at 02:00. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Dotharl, the green-eyed woman in the dream, her friend, her brother, Envy?, Morgana, No-Hurt, Invar, Perodita, Blackthorn, Bridget, Wrath, Infestus, Geldrin, the High Priest, Merocole, Papa Marmaru, Noxia, and the faceplate guards. + +Groups and factions mentioned include the party, the dwarven army, llamia, ratmen, green dragons / Perodita's children, city occupiers, dwarves at Grimcrag, gods, and Magstein townsfolk. + +Places mentioned include the Magstein / Grimcrag bridge side, the glass dome in Dotharl's dream, Grimcrag, Coalmont Rally, Infestus's location by teleport, Magstein, Papa Marmaru, Perodita's cavern and narrow passages, the tower, and the Crusty Beard. + +# Items, Rewards, and Resources + +Items and resources mentioned include the closed doors and arrow slits, wagons and shield wall, basilisk as a piece of coal, rift blade, Papa Marmaru's goblet, explosives, Wall of Force, alarm, Pass without Trace, Walls of Fire, barrel of Noxia ooze, menstruum, 7,000 gp from Perodita's belly scales, the Crusty Beard memorial and hair wall, and the faceplate guards' armour. + +Strategic resources and plans include leaving the dwarf army to recover at Grimcrag, using Bridget for information through a cockroach messenger, trapping Perodita in confined passages, and delaying future decisions until after rest in Magstein. + +# Clues, Mysteries, and Open Threads + +Dotharl's dome dream, blue eye, lace-white-haired figure, green-eyed woman, her injured friend, her hostile brother, and possible connection to Envy remain unresolved warnings. + +No-Hurt has spread everywhere and killed things, but its full nature and relationship to the infestation or corruption remain unclear. + +Wrath's claim that the basilisk could teleport the party to Infestus, his conflict with green dragons, and his offer of memories remain active leverage. + +Merocole's possession or replacement of the High Priest, the smoke sphere with spidery legs, and Papa Marmaru's warning not to trust Merocole are major divine/dwarven corruption clues. + +Perodita's Noxia essence, old unhealed wounds, and the tower-blood experiment suggest Perodita was being used, sustained, or modified by Noxia-linked magic. + +The barrel of Noxia ooze remains a dangerous recovered resource. + +Magstein's inactive council, poor militia, theft, faceplate guards, and unpaid intimidation show the city remains unstable after Perodita's death. diff --git a/data/4-days-cleaned/day-56.md b/data/4-days-cleaned/day-56.md new file mode 100644 index 0000000..1053837 --- /dev/null +++ b/data/4-days-cleaned/day-56.md @@ -0,0 +1,81 @@ +--- +day: day-56 +date: unknown +source_pages: + - 273 + - 274 + - 275 + - 276 + - 277 + - 278 + - 279 + - 280 + - 281 +complete: true +--- + +# Narrative + +Day 56 began at the Crusty Beard in Magstein. The party had Temporary Wisdom -2. At 11:00, they went to an abandoned house to teleport to the Grand Towers control room. During the teleport, Geldrin entered a dreamlike state and saw an elf face say, "I'm foolish. I should have known this was going to happen... Never mind." The teleport destination was extravagant compared with other teleport rooms they had visited, with elaborate tapestries that felt out of place. The door had been trapped, but someone had disarmed it within the last five to ten minutes. + +Dotharl saw Valententhide reflected in Invar's armour. The party left the room and found many doors and two possible guards. A tapestry showed five wizards and an invisible lady who was invisible in the painting too. She looked like Hannah Joy. Dotharl could not see her because he did not know who she was, or because he knew she existed. A creature said she was new. The party were expected. There were twenty-seven such beings, all part of Humility, and they had disarmed the traps. In a spherical room with four doors, an elf stood in the middle: the same elf Geldrin had seen while teleporting. The Humility fragments currently controlled the control room but were not using it; they had taken it for the party. They were all parts of Thomas, removed so he could become Envy, and could not be fully recombined without the large weak part because many parts had died. They thanked the party for freeing him from the cart on the dwarf bridge and led them to the control room. + +The control room was guarded by two automatons and held eight statues. Salana's runes were intact. Garadwal and Valententhide's runes were unlit, while the rest flickered. Monks meandered through the room. Dotharl looked at the Valententhide statue, thought he saw only a statue, and was attacked by it. Geldrin investigated and took damage. Runes lit up around the statue saying, "leave here." Merocole had a tiny dwarf face carved into his mouth. Geldrin fixed the prison runes and closed them all except possibly `[unclear: Keakis?]`, where his fixing mark carried over and worked. Two creatures brought a small box as a present. Inside was a black shard. They called it the elemental of Void and wanted the party to put him where he belonged. The narrator brought a gift: the Frost pole ball, with a desire to switch out the frost elementals. The party suspected Browning was running events there. Dotharl interfered with the symbols on Aneurascarle's prison. + +Bynx told Dirk his brothers were coming and to close the door. When the narrator shut it, purple bears appeared. Four Juticars came through tears: Scumbleduck, the rubber-eye figure, a silver dragonborn, and another. A robot Juticar addressed "Justicar Geldrin," saying Geldrin seemed to have forgotten his mission and that the party were not as compliant as they should be. Geldrin had been obeying orders until the worm was removed; everything up to that point had happened as foretold, and the Juticars believed he had been compromised. They spoke of chaotic tendencies visible in the prognostic machine. + +The wizards altered the map, saying they were preparing for fuel incoming. The map appeared recently reconfigured for another purpose. They activated the table, and a giant bearded head, Browning, appeared above it chanting. The party countered the spell, but Browning finished with, "and the flight of the gold ends." A dragonborn, elf, and dwarf teleported away, leaving a gnome behind. She refused to speak until Morgana dispelled magic and she recovered. She was a treasure hunter from Great Farnworth, remembered a voyage across the sea, did not know the year, and remembered place details both before and after the dome. A device nearby was a remote to activate a shield, with no apparent way to reverse it, and it should not be far from the party. + +The replacements thought the narrator had stopped Valententhide and Garadwal from tricking the statues. The notes record, "I thought my daughters would like it? Mama Harthall??" The table had been a trap. The prisons looked the same except Valententhide's showed the symbol of Atlabre and was deactivated; that symbol had not been present before. The party thought dome activation may have captured Bynx's sphynx brothers. + +The party explored nearby rooms. One dusty room held a circle in the middle that looked dragged toward the door and taken to the teleport circle. Another held an old man sleeping. Dirk found a box under his pillow. A dormitory lay opposite, and another bedroom held books on alloys, travel, and botany. Dirk searched under another pillow and found a thorny brush or briar; Morgana kept it. The box put Geldrin and Morgana to sleep. The mage woke thinking it was 3740 AC and that Dirk looked like a Thrunglagen. He searched for his spellbook, which was found in his room. He was Humorous, an old Rivermeet headmaster. The party opened the teleport-room door and found a Barrier trapping Trixus, Benu, Garadwal, and Bynx. Temporary Wisdom was removed. + +Benu said they had news and had reunited in the dire hour. Plans had been thwarted, and things came to light after speaking with his father. Garadwal's mind was clearer, and he now intended to repay his misdeeds by helping the party. Garadwal's father trusted the party after they brought his children back together. The wizards who sought godhood all sought to live forever. Envy sought too much power, and it corrupted him. The generator was not only protective; it also made them more powerful and was an experiment. Something ancient may have helped, giving the ability to remove emotions. Benu said the dome should be brought down, though the fate of bad elementals remained a problem. Garadwal had asked months earlier to bring it down and now asked the same for different reasons: a part of him enjoyed the bad part and had grown lazy with it. Harthall was part of his downfall, and Argentum died defending his people. Garadwal's father said the choice was the party's. The wizards were being controlled, and the five wizards could not affect the power sources. The party decided Browning needed to die and considered whether the wizards should be brought back to help. + +Dirk asked his ancestors whether the party could defeat Browning as they were. Instead of seeing the ancestors, he saw sickly, elongated, groaning elves. Browning's ritual to become a god takes one thousand years and could have completed thirteen years earlier if Soul had not crashed into the tower. The dome drains the party like it drains the elementals, though it is noticeable only near the edges. Browning had a plan to increase his power by obtaining a great amount of crystal. Scumbledunk betrayed the party and teleported away after overhearing their discussion. The party considered next steps. Some went to Riversmeet with Bynx while others went to Emercurine to help Harthall. In the Headmaster's office, they used Rubyeye's eye and Dotharl, through the death of Hracency, to locate Rubyeye and Cardinal. Cardinal appeared inside a Brass dome on a beach with air elementals around her, in Brass City. Rubyeye appeared floating through dwarven stone corridors in an endless loop, far airwise. A dragon war was underway back in Humorous, with Emeraldous causing trouble and Ember remembered. Humorous was about three hundred years old. The party tried to contact Fairlight Harthall, but Windows could not find him. + +The party decided to go to Brass City to free Cardinal via Infestus, using the piece of coal at 15:00. `[uncertain: Antherous?]` came through a portal to them. They arrived on a plateau with dwarven construction, a purple sky, a ghost-town feeling, and a small dragonborn population in the centre. A large stone doorway in the market square was covered in runes. The rules promised no harm if obeyed: no Bluescale was to come to harm except passive self-defence, transactions and deals had to be honest with truth as currency, and the party could not disclose Bluescale's location or the archway's location. They went through the portal. Guards took them to Infestus. In a museum, they saw a curiosity from Keep Rememberence. A story said the man had not laughed so much in a long time, killed "the bitch," returned his first-born son's skull, and killed the son who slept with "the bitch." + +Infestus wanted to pay the party for their good deeds and what they had done for him. A guard took them to his favourite pub, the Great Infestus, where they ate. A red dragonborn named Ember entered without surprising the patrons. Ember offered to show them around town and asked whether they had been to a dragon city. He wanted a favour if they returned: if they saw any red dragons or dragonborn, they should tell them Ember was looking for them. He believed the Reds were almost extinct and offered 1,000 gp for the promise. He also said the narrator did not smell right and smelled of elf. The party listed options: Jeroll's ode for Geldrin and a charged shield crystal, help with bad elementals to bring the dome down, something to bolster the dome, help releasing Harthall or killing Wrath, a permanent nonattack deal, and getting to Brass City. They then returned to Infestus. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Geldrin, Dotharl, Valententhide, Invar, Hannah Joy, Humility, Thomas, Envy, Salana, Garadwal, Merocole, `[unclear: Keakis?]`, Aneurascarle, Bynx, Dirk, Scumbleduck / Scumbledunk, Browning, Morgana, the gnome treasure hunter, Mama Harthall, Humorous, Trixus, Benu, Argentum, Soul, Rubyeye, Cardinal, Hracency, Emeraldous, Ember, Fairlight Harthall, Windows, Infestus, `[uncertain: Antherous?]`, Bluescale, Jeroll, Wrath, and Harthall. + +Groups and factions mentioned include the party, Grand Towers wizards, Humility fragments, monks, automatons, Juticars, Browning-controlled wizards, sphynx brothers, Rivermeet headmasters, bad elementals, controlled wizards, five wizards, dragons, red dragons / dragonborn, Bluescale, and Infestus's people. + +Places mentioned include Magstein, the Grand Towers control room, the elaborate teleport room, the spherical Humility room, the prison-control room, the teleport circle, Rivermeet, the Barrier, Riversmeet, Emercurine, the Headmaster's office, Brass City, the Brass dome, Humorous, the plateau with purple sky, Bluescale, the market-square archway, Infestus's city, the museum, Keep Rememberence, and the Great Infestus pub. + +Creatures and creature-like beings mentioned include the invisible lady like Hannah Joy, Humility fragments, the Valententhide statue, the elemental of Void, frost elementals, purple bears, Juticars, a giant Browning head, sickly elongated elves, air elementals, and red dragonborn. + +# Items, Rewards, and Resources + +Items and resources mentioned include the Grand Towers teleport route, elaborate tapestries, traps, eight statues, Salana's runes, Garadwal and Valententhide's runes, runes reading "leave here," a small black shard / elemental of Void, Frost pole ball, prison symbols, prognostic machine, reconfigured map, control-room table, shield remote, thorny brush / briar, spellbook, Barrier, Rubyeye's eye, Dotharl's connection through Hracency's death, piece of coal for travel to Infestus, Bluescale archway runes, museum curiosity from Keep Rememberence, Jeroll's ode, charged shield crystal, and 1,000 gp offered by Ember. + +Strategic resources and plans include repairing or closing prison runes, possibly switching frost elementals, stopping Browning, deciding whether to bring down the dome, considering whether to restore wizards, locating Rubyeye and Cardinal, freeing Cardinal in Brass City through Infestus, bargaining under Bluescale rules, and possible deals with Infestus or Ember. + +# Clues, Mysteries, and Open Threads + +The twenty-seven Humility fragments are parts of Thomas removed so he could become Envy. They cannot be fully recombined without a large weak part, and many parts have died. + +The Grand Towers control room has active prison infrastructure: Salana's runes intact, Garadwal and Valententhide unlit, others flickering, Merocole altered, and Valententhide showing an Atlabre symbol when deactivated. + +The black shard called the elemental of Void and the Frost pole ball may be intended replacements in the prison or elemental system, but using them remains unresolved. + +The Juticars' claim that Geldrin was previously obedient until the worm was removed reframes his history and suggests a prognostic plan involving party compliance. + +Browning's interrupted spell still ended with "the flight of the gold ends," and his godhood ritual may be close to completion after nearly one thousand years. + +Dome activation may have captured Bynx's sphynx brothers, making the dome's creation or reactivation directly tied to sphynx imprisonment. + +Humorous waking in 3740 AC, remembering before and after the dome, and having been an old Rivermeet headmaster adds another displaced witness to pre-dome history. + +Benu, Garadwal, and Garadwal's father now urge bringing down the dome, but the release of bad elementals and the fate of prisons remain unresolved. + +Scumbledunk betrayed the party and escaped with knowledge of their discussion about Browning. + +Cardinal is in the Brass City / Brass dome with air elementals, while Rubyeye is trapped in an endless dwarven stone loop far airwise. + +Bluescale's rules, truth-currency, protected location, and archway secrecy introduce a new constrained diplomatic space. + +Ember's search for red dragons or dragonborn and the narrator smelling of elf remain active hooks tied to dragon politics and identity. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index ead1136..a4c1243 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -33,6 +33,10 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Aliases and Variant Spellings @@ -82,6 +86,10 @@ sources: - [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridge Statue, Statue of Bridge, Hazy Days. - [Bridget's Doors](concepts/bridgets-doors.md): Bridget, Bridge, Bridget / Bridge, Bridge Statue, Statue of Bridge, Bridget's door travel. - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md): Grimescale, Gravltooth, Umberous, Spindl, Cedric, Medinner, Squeall / Squeal, Aglue?, Anemie?. +- [Anya Blakedurn](people/anya-blakedurn.md): Anya Blakedurn, Blakedurn, Guild Mistress. +- [Magstein and Grimcrag](places/magstein-grimcrag.md): Magstein, Grimcrag, Grimcrag bridge, Crusty Beard. +- [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md): Papa Illmarne's dome, Papa's Dome, Papa Illmarne, Papa Marmaru. +- [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md): Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Tendruts, Merocole, Papa Marmaru, Humility, Scumbleduck / Scumbledunk, Humorous, Hracency, Fairlight Harthall, Windows, Ember, [uncertain: Antherous?]. - [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. diff --git a/data/6-wiki/clues/days-53-56-coverage-audit.md b/data/6-wiki/clues/days-53-56-coverage-audit.md new file mode 100644 index 0000000..12245d0 --- /dev/null +++ b/data/6-wiki/clues/days-53-56-coverage-audit.md @@ -0,0 +1,26 @@ +--- +title: Days 53-56 Coverage Audit +type: coverage-audit +sources: + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md +--- + +# Days 53-56 Coverage Audit + +| Subject | Outcome | +| --- | --- | +| Anya Blakedurn / black dragon / Rubyeye device | Standalone page: [Anya Blakedurn](../people/anya-blakedurn.md). | +| Magstein, Grimcrag, bridge, Crusty Beard, dwarven civic collapse | Standalone page: [Magstein and Grimcrag](../places/magstein-grimcrag.md). | +| Papa Illmarne's dome / Papa Marmaru / Merocole | Standalone concept: [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md), with Merocole and Papa Marmaru also in minor figures. | +| Calthid Metalshaper, Grunged Thundersinger, Trinchel Rhinebeard, Tussil Pebblegrinder, Quartermaster, Tendruts, llamia, elementals' mother, green-eyed dream woman, No-Hurt, Blackthorn, Humility fragments, Juticars, Humorous, Ember | Rollup: [Minor Figures from Days 53-56](../people/minor-figures-days-53-56.md). | +| Bridget's return point, council chamber, Blakedurn's house, convoy battlefield, Perodita passages, Grand Towers side rooms, Bluescale, Great Infestus | Rollup: [Minor Places from Days 53-56](../places/minor-places-days-53-56.md). | +| Garadwal armour, Rubyeye-summoning device, pylons, shield crystal/copper, poison/explosives, basilisk coal, rift blade, Noxia ooze barrel, control-room mechanisms, Rubyeye eye, Bluescale rules, Ember reward | Rollup: [Minor Items from Days 53-56](../items/minor-items-days-53-56.md). | +| Peridita / Perodita and Noxia essence | Existing pages updated: [Peridita](../people/peridita.md), [Noxia](../people/noxia.md). | +| Grand Towers control room, Browning godhood ritual, Humility / Thomas / Envy, Juticar mission | Existing pages updated: [Grand Towers](../places/grand-towers.md), [Edward Browning](../people/edward-browning.md), [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md). | +| Benu, Garadwal, Trixus, Bynx, sphinx brothers, dome-down choice | Existing pages updated or already covered: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Bynx](../people/bynx.md), [Trixus](../people/trixus.md), [Elemental Prisons](../concepts/elemental-prisons.md). | +| Cardinal, Rubyeye, Infestus, Wrath, Ember, Brass City route | Existing pages updated or linked: [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Infestus](../people/infestus.md), [Wrath](../people/wrath.md), minor figure/place/item rollups. | +| Open questions from Days 53-56 | Added to [Open Threads](../open-threads.md). | +| Day 57 material from pages 281-287 | Intentionally deferred. Day 57 remains page transcriptions only until a later Day 58 marker confirms completion. | diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 208bfef..3820f56 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -7,7 +7,7 @@ aliases: - barrier batteries - elemental batteries first_seen: day-14 -last_updated: day-52 +last_updated: day-56 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -24,6 +24,9 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Elemental Prisons @@ -60,6 +63,9 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Killing Pride released a void elemental that absorbed its brother, teleported away, and may also have absorbed Pride. - Day 48's dwarven prison included pylon runes, a key or wheel to open a dome, a featureless lost part of Valententhide, and a claim that elemental planes were a highway used in a world-making pact. - Day 52 says destroying the dome would cancel all pacts and release all prisons. +- Day 54 elementals at the Magstein / Grimcrag bridge were appeased with about 100 coins to `their mother`, adding another unresolved elemental authority or relation. +- Day 55 adds Papa Illmarne's dome and Papa Marmaru / Merocole to the prison network: Papa's Dome had a hole that could not be repaired without pylons, Papa had more freedom and was breaking dwarves, and Merocole appeared as a smoke sphere with spidery legs and a human face. +- Day 56 Grand Towers control-room systems included prison runes, statue states, a black shard claimed to be an elemental of Void, a Frost pole ball for switching frost elementals, and possible dome activation that captured Bynx's sphynx brothers. The dome also drained the party like elementals, especially near the edges. ## Timeline @@ -78,6 +84,9 @@ The elemental prisons are ancient containment systems that may hold or exploit p - `day-47`: The party explores frost-prison structures, negotiates with prisoners and door heads, learns more about dome power dependency, and closes the fire elemental rift. - `day-48`: Rubyeye is arrested for elemental spirit entrapment, a lava orb / prisoner appears, a void elemental escapes after Pride is killed, and a dwarven prison reveals pylon, dome, and Valententhide-lostness clues. - `day-52`: Bridget-domain revelations state that the dome anchors pacts and that all prisons release if the dome is removed. +- `day-54`: Elementals near the bridge accept coins for their mother. +- `day-55`: Papa Illmarne's Dome, Merocole, and Papa Marmaru expand the pylon and prison-control problem. +- `day-56`: Grand Towers control-room runes, Void and frost components, and dome drain show the prison network still active. ## Related Entries @@ -102,3 +111,7 @@ The elemental prisons are ancient containment systems that may hold or exploit p - What are the six elemental forces Rubyeye remembered? - What is the escaped void elemental after absorbing its brother and possibly Pride? - Would releasing all prisons by destroying the dome be liberation, disaster, or both? +- Who is the elementals' mother, and why would coins appease her? +- Is Papa Illmarne / Papa Marmaru a prisoner, controller, elemental, or another dome-bound being? +- What does the black shard elemental of Void contain or release? +- Did dome activation capture Bynx's sphynx brothers? diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index a535a44..2952c86 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -8,7 +8,7 @@ aliases: - Otasha's unborn nerfili baby bargain - Leptrop workaround first_seen: day-36 -last_updated: day-52 +last_updated: day-56 sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-42.md @@ -16,6 +16,8 @@ sources: - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Gods' Bargains Behind the Barrier @@ -38,6 +40,8 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Day 44 old-school lore described Bright and Valentenhule as elemental-plane queens, Hannah as a priestess of Attabre, and a baby Attabre spirit intended for the Goliaths as they became Emeraldus's line. - Day 48 introduced the Vessel of Divinity: a lost part of Valententhide said it made beings into gods, stripped something away, and left lostness behind. - Day 52 says the pacts are linked to the dome; if the dome ceases, the pacts cease, and all prisons release. +- Day 55's Papa Marmaru warning and Merocole intrusion show another dome-bound or prison-adjacent being whose consent, corruption, and identity remain uncertain. +- Day 56 says Browning's godhood ritual takes 1,000 years, was delayed when Soul crashed into the tower, and may now be powered by a crystal while the dome drains the party like elementals. ## Related Entries @@ -57,3 +61,5 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - How do Bright, Valentenhule, Bridge, and Attabre fit among the twelve divine terms? - What exactly is the Vessel of Divinity, and who should or should not hold it? - Which pacts would fail if the dome fell, and which released prisoners would be threats, victims, or both? +- Is Browning's godhood ritual another use of the same Vessel, bargain, or dome-prison mechanics? +- Did Soul's crash into the tower interrupt a divine ascension, a bargain payment, or a prison-power cycle? diff --git a/data/6-wiki/concepts/papa-illmarnes-dome.md b/data/6-wiki/concepts/papa-illmarnes-dome.md new file mode 100644 index 0000000..63242ef --- /dev/null +++ b/data/6-wiki/concepts/papa-illmarnes-dome.md @@ -0,0 +1,44 @@ +--- +title: Papa Illmarne's Dome +type: concept +aliases: + - Papa Illmarne's dome + - Papa's Dome + - Papa Illmarne + - Papa Marmaru +first_seen: day-53 +last_updated: day-55 +sources: + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-55.md +--- + +# Papa Illmarne's Dome + +## Summary + +Papa Illmarne's dome, also called Papa's Dome, is a dwarven containment or protection system near Magstein. It has a hole, cannot be repaired without pylons, and appears connected to Papa's increased freedom and the breaking of dwarven society. + +## Known Details + +- On `day-53`, Bridget sent the party back by Papa Illmarne's dome. +- The High Priest King said his job was to keep Papa Illmarne's dome. +- The dome had a hole and could not be repaired without pylons. +- Papa had more freedom lately and was using it to break the dwarves as they had treated him. +- Guards at the dome were too easily persuaded to let the armed party through. +- On `day-55`, the party went to Papa Marmaru while seeking the High Priest. +- The High Priest was no longer the High Priest but Merocole; Greater Restoration revealed a large smoke sphere with spidery legs and a human-like face that wanted Papa Marmaru. +- When Invar offered Papa Marmaru his goblet, Papa Marmaru asked whether Invar wanted this to happen and warned in a raspy voice not to trust Merocole. Marmaru had chosen to be there and looked after the dwarves. + +## Related Entries + +- [Magstein and Grimcrag](../places/magstein-grimcrag.md) +- [Elemental Prisons](elemental-prisons.md) +- [Gods' Bargains Behind the Barrier](gods-bargains-behind-the-barrier.md) + +## Open Questions + +- Is Papa Illmarne the same entity or system as Papa Marmaru, or are the names related through uncertain notes? +- What pylons are required to repair the dome? +- Why did Papa choose to remain there, and what bargain or abuse lets him break dwarves in return? +- What is Merocole, and why does it want Papa Marmaru? diff --git a/data/6-wiki/factions/mage-judicators-justicars.md b/data/6-wiki/factions/mage-judicators-justicars.md index 02dd136..6cffe8a 100644 --- a/data/6-wiki/factions/mage-judicators-justicars.md +++ b/data/6-wiki/factions/mage-judicators-justicars.md @@ -6,7 +6,7 @@ aliases: - Justicars - Justicar first_seen: day-09 -last_updated: day-35 +last_updated: day-56 sources: - data/4-days-cleaned/day-09.md - data/4-days-cleaned/day-11.md @@ -17,6 +17,7 @@ sources: - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-56.md --- # Mage Judicators/Justicars @@ -35,6 +36,8 @@ Mage Judicators or Justicars are authorities tied to Seaward, major settlements, - Day 32 Justicars looked for Xinquiss at the Hearthwall auction, attempted Counterspell when Mith teleported away, took the llama-form false Lady Thorpe to Grand Towers, and had a quashed party arrest warrant from someone high up. - Browning / Skutey Galvin was wanted for impersonating a Justicar. - Day 35's Lady Yadreya Egrine resembled or reminded the party of the twin Justicar guards met on the way to Seaward. +- On Day 56, four Juticars appeared through tears in Grand Towers, including Scumbleduck/Scumbledunk, a rubber-eyed figure, a silver dragonborn, and another. They addressed `Justicar Geldrin`, said his mission was compromised after a worm was removed, and referenced a prognostic machine. +- Scumbledunk later betrayed the party and teleported away after overhearing discussion of Browning. ## Timeline @@ -54,3 +57,5 @@ Mage Judicators or Justicars are authorities tied to Seaward, major settlements, - Are Justicars protecting truth, obstructing investigation, or acting under incomplete orders? - Who quashed the party's arrest warrant? - What is the Justicar connection to Skutey Galvin and the twin guards' half-elven sister? +- Was Geldrin truly a Justicar, or was that a mission identity imposed by worm or prognostic-machine influence? +- What did Scumbledunk take or report after betraying the party? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 28a2a77..92df8ff 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -37,6 +37,10 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Pentacity Campaign Wiki @@ -59,6 +63,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Day 46 Coverage Audit](clues/day-46-coverage-audit.md) - [Day 47 Coverage Audit](clues/day-47-coverage-audit.md) - [Days 48 and 52 Coverage Audit](clues/days-48-52-coverage-audit.md) +- [Days 53-56 Coverage Audit](clues/days-53-56-coverage-audit.md) ## People @@ -92,6 +97,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Malcolm Donovan](people/malcolm-donovan.md) - [Bynx](people/bynx.md) - [Verdigrim](people/verdigrim.md) +- [Anya Blakedurn](people/anya-blakedurn.md) - [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md) - [Lady Thorpe](people/lady-thorpe.md) - [TJ Biggins](people/tj-biggins.md) @@ -100,6 +106,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Figures from Day 46](people/minor-figures-day-46.md) - [Minor Figures from Day 47](people/minor-figures-day-47.md) - [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md) +- [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md) ## Places @@ -120,6 +127,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Sunsoreen / Snowscreen](places/sunsoreen.md) - [Minor Places from Day 47](places/minor-places-day-47.md) - [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md) +- [Magstein and Grimcrag](places/magstein-grimcrag.md) +- [Minor Places from Days 53-56](places/minor-places-days-53-56.md) ## Factions @@ -145,6 +154,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Items from Day 46](items/minor-items-day-46.md) - [Minor Items from Day 47](items/minor-items-day-47.md) - [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md) +- [Minor Items from Days 53-56](items/minor-items-days-53-56.md) ## Concepts and Events @@ -155,3 +165,4 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Tri-moon Countdown](events/tri-moon-countdown.md) - [Shield Crystal Mission](events/shield-crystal-mission.md) - [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md) diff --git a/data/6-wiki/items/minor-items-days-53-56.md b/data/6-wiki/items/minor-items-days-53-56.md new file mode 100644 index 0000000..0ac1827 --- /dev/null +++ b/data/6-wiki/items/minor-items-days-53-56.md @@ -0,0 +1,39 @@ +--- +title: Minor Items from Days 53-56 +type: rollup +sources: + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md +--- + +# Minor Items from Days 53-56 + +- Garadwal's armour: object Calthid Metalshaper blamed the party for introducing or giving, believing it summoned darkness. +- Rubyeye-summoning device: device from Anya Blakedurn's father that took her years to master. +- Papa Illmarne pylons: required to repair the hole in Papa's Dome. +- Army wagons and supplies: revealed no water, much wine, one day of food, no weapons, no arrows, and no useful supplies. +- Approximately 100 coins: offered by the Ambassador to elementals' mother to avert an elemental attack. +- Carved elven shield crystal and copper: found in the invisible-attackers wagon and assumed to cause invisibility. +- Poison barrels and general-purpose explosives: seized from convoy wagons on Day 54. +- Basilisk coal: piece of coal at Coalmont Rally that Wrath said could be crushed to teleport to Infestus. +- Rift blade: used to teleport to Magstein for the Perodita ambush. +- Papa Marmaru's goblet: offered by Invar during the Merocole / Papa Marmaru encounter. +- Perodita trap materials: explosives, Wall of Force, hide, blasting holes, alarm, Pass without Trace, and Walls of Fire. +- Noxia ooze barrel: container holding ooze from Noxia after Perodita's death. +- Perodita's belly-scale coins: varied coins of different types and ages totalling 7,000 gp. +- Faceplate guard armour: distinctive armour worn by intimidating Magstein guards at the Crusty Beard. +- Grand Towers prison runes and statues: Salana intact, Garadwal and Valententhide unlit, others flickering; Valententhide's runes said "leave here." +- Black shard / elemental of Void: presented in a small box as something to place where it belonged. +- Frost pole ball: gift brought by the narrator with intent to switch out frost elementals. +- Prognostic machine: Juticars cited it while discussing Geldrin's chaotic tendencies and compromised mission. +- Reconfigured map and control-room table: Grand Towers mechanisms used to prepare for fuel incoming and trigger Browning's table trap. +- Shield remote: device to activate a shield, with no obvious way to reverse it. +- Thorny brush / briar: found under a pillow and kept by Morgana. +- Humorous's spellbook: recovered for the old Rivermeet headmaster. +- Rubyeye's eye: used with Dotharl and Hracency's death to locate Rubyeye and Cardinal. +- Bluescale archway runes: rules for no harm, truthful transactions, and secrecy around Bluescale and the archway. +- Keep Rememberence museum curiosity: object or exhibit in Infestus's city tied to a story of killing "the bitch" and returning a first-born son's skull. +- Jeroll's ode and charged shield crystal: listed as possible bargaining or next-step items. +- Ember's 1,000 gp offer: reward for promising to tell red dragons or dragonborn that Ember is looking for them. diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index b8e128a..3b7d1cb 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -43,6 +43,10 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Open Threads @@ -201,3 +205,23 @@ sources: - Who is the voice offering to free Dotharl from mortals, and is it Bridget's trapped kin, his father, his grandfather, or another prisoner? - Which identity should the narrator keep: the current self or the one once held? - What power are the Brownings offering Geldrin, what crystal must Invar give or use, what fishing expedition must Dirk remember, and what training cost threatens Morgana? +- What returning dragon did Bridget warn about, why is Invar / silver the route, and how does that connect to the narrator being "Elliana and Elliana"? +- What is [Anya Blakedurn](people/anya-blakedurn.md)'s father's Rubyeye-summoning device, and can her bargain to restore the Dwarven kingdoms be trusted? +- What is the hole in [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), what pylons are needed to repair it, and why is Papa breaking dwarves as revenge? +- What smoke or malevolent presence caused the Quartermaster and General's hopelessness, and is it the same as Blakedurn's black smoke incident or Merocole's smoke sphere? +- Who or what is the elementals' mother who accepted coins at the Grimcrag bridge? +- What did the carved elven shield crystal and copper do to make convoy attackers invisible? +- Who are the blue-eyed dome figure, green-eyed woman, hurt friend, hostile brother, and possible Envy in Dotharl's Day 55 dream? +- What is No-Hurt, and why has it spread everywhere and killed things? +- What exactly is Merocole, why did it replace the High Priest, and why did Papa Marmaru warn not to trust it? +- What should be done with the barrel of Noxia ooze recovered after [Peridita](people/peridita.md)'s death? +- What are the twenty-seven Humility fragments, where is the large weak part needed to recombine Thomas, and what did Thomas remove to become Envy? +- What is the black shard / elemental of Void, and should it be placed into the Grand Towers prison system? +- What did [Edward Browning](people/edward-browning.md)'s phrase `and the flight of the gold ends` accomplish after his table spell was countered? +- Did dome activation capture [Bynx](people/bynx.md)'s sphynx brothers, and can they be released without collapsing other prisons? +- What is the shield remote near Grand Towers, and why is there no obvious way to reverse it? +- Can [Browning](people/edward-browning.md)'s near-complete godhood ritual be stopped before he uses more crystal? +- Where exactly are Cardinal in the Brass dome and [Rubyeye](people/brutor-ruby-eye.md) in the far-airwise dwarven loop? +- What are Bluescale's truth-currency rules and location secrecy protecting? +- Where are the red dragons or dragonborn Ember seeks, and why does the narrator smell of elf? +- Day 57 has started in the page transcriptions but is deferred from raw/clean/wiki day processing until a later Day 58 marker confirms the boundary. diff --git a/data/6-wiki/people/anya-blakedurn.md b/data/6-wiki/people/anya-blakedurn.md new file mode 100644 index 0000000..b8ae785 --- /dev/null +++ b/data/6-wiki/people/anya-blakedurn.md @@ -0,0 +1,43 @@ +--- +title: Anya Blakedurn +type: person +aliases: + - Blakedurn + - Guild Mistress +first_seen: day-53 +last_updated: day-53 +sources: + - data/4-days-cleaned/day-53.md +--- + +# Anya Blakedurn + +## Summary + +Anya Blakedurn is the purple-eyed Guild Mistress in the dwarven city near Papa Illmarne's dome. She presents as a dwarf from the renowned Blakedurn guild family but confesses she is actually a black dragon. + +## Known Details + +- On `day-53`, Blakedurn represented the party before the dwarven council and questioned them about dragons, dragonborn, automatons, and gnomes. +- Her ear had no worm, but the canal was wrong: too small and hairless. Dirk or Thamia determined she was not a Thamia. +- Her house had Sierra aspects and Dunner styling. +- She confessed she was not a dwarf but a black dragon. +- She wants the dwarves to succeed, but also wants personal rewards such as jewels. +- Rubyeye had been her prisoner, and she wants him back. +- She offered to help defeat Perodita if the party helped restore the Dwarven kingdoms. +- Her father made the device used to summon Rubyeye, and mastering it took her years. +- She was responsible for the black smoke incident, described as a smaller version of the hockey pack. + +## Related Entries + +- [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Peridita](peridita.md) +- [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md) +- [Minor Figures from Days 53-56](minor-figures-days-53-56.md) + +## Open Questions + +- What is Blakedurn's father, and how did he build or obtain the Rubyeye-summoning device? +- What exactly was the black smoke incident? +- Does Blakedurn's plan to restore the Dwarven kingdoms align with the party's goals, or only with her own hoard and control interests? +- Why does her house include Sierra and Dunner styling? diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md index 8f43b1c..9edadab 100644 --- a/data/6-wiki/people/benu.md +++ b/data/6-wiki/people/benu.md @@ -4,12 +4,13 @@ type: person aliases: - goat-headed sphinx first_seen: day-29 -last_updated: day-43 +last_updated: day-56 sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-56.md --- # Benu @@ -30,6 +31,8 @@ Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's - The book says Benu saw errors in its ways, left for an unknown reason, and hid. - On Day 43, Benu appeared at Ashkellon when summoned by vulture-men contact, stood between the party and Trixus / Garadwal, fought Garadwal, and later disappeared when Attabre answered the shrine. - Emi said the elves' protector who taught them how to remove emotions was Benu. +- On Day 56, Benu was found behind a Barrier with Trixus, Garadwal, and Bynx in a Grand Towers control-room side area. Benu said plans had been thwarted after speaking to dad, while Garadwal was clearer and would repay misdeeds by helping the party. +- Day 56 discussion connected Benu's history to wizards seeking godhood and immortality, a generator that made them more powerful, and an outside method of removing emotions. ## Timeline @@ -37,6 +40,7 @@ Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's - `day-30`: Benu can contact Cardenald and provide hero's feast support. - `day-42`: Ashkellon sources connect Benu to Garadwal, Trixus, Altabre, the elves, the great tower, and hidden feather relics. - `day-43`: Benu appears in Ashkellon, fights Garadwal, and is implicated in elven emotion-removal techniques. +- `day-56`: Benu is reunited with Trixus, Garadwal, and Bynx behind a Grand Towers Barrier and discusses wizard godhood, the generator, and emotion removal. ## Related Entries @@ -51,3 +55,5 @@ Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's - What office, faith, or authority does Benu hold in Dunnersend? - Why did Benu abandon or fail his post, and why is Attabre angry with him? - How much responsibility does Benu bear for elven soul-part or emotion removal? +- What did Benu's father tell him, and how did it thwart prior plans? +- Who first gave the wizards the ability to remove emotions? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 1f3cbf5..b8eafa7 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,7 +5,7 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-48 +last_updated: day-56 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md @@ -23,6 +23,7 @@ sources: - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-56.md --- # Brutor Ruby Eye @@ -60,6 +61,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - Rubyeye remembered Hannah and said there were six elemental forces all along, matching six arms on the exhausted. - After the party broke him out, Umberous demanded Rubyeye be delivered to Infestus but agreed not to reveal Rubyeye's presence if the party owed him a favour. - Rubyeye's attempt to teleport the party back misfired to a snowy sky fort and then to a scared dwarven prison room; he recognised it as a prison, possibly Throngore's under Lewshis and Aneurascarle, before his eyes glowed red and he disappeared at 21:00. +- On Day 56, Rubyeye's eye and Dotharl located Rubyeye and Cardinal through Hracency's death: Cardinal was in a Brass dome on a beach with air elementals, while Rubyeye was in a dwarven stone corridor or endless loop far airwise. ## Timeline @@ -78,6 +80,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - `day-44`: The party encounters young Ruby Eye in old mage-school history and finds a draconic book intended for him. - `day-46`: Hidden ruby messages and Errol's possession complicate Rubyeye's status, Squeal's request, and Rubyeye's imprisonment at his wife's place. - `day-48`: Wrath and the party rescue Rubyeye from an underground dwarven city; ancient charges, six elemental forces, Umberous's demand, and Rubyeye's disappearance from a dwarven prison complicate his status again. +- `day-56`: Rubyeye and Cardinal are located in separate prison-like places through Rubyeye's eye, Dotharl, and Hracency's death. ## Related Entries @@ -106,3 +109,5 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - How accurate are the Day 48 ancient charges against Rubyeye? - Where did Rubyeye go when his eyes glowed red at 21:00 in the possible Throngore prison? - What favour will Umberous demand for not telling Infestus about Rubyeye? +- How is Rubyeye trapped in the far-airwise dwarven stone loop, and who controls it? +- Why is Cardinal in a Brass dome on a beach with air elementals? diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md index 44b849b..b069019 100644 --- a/data/6-wiki/people/bynx.md +++ b/data/6-wiki/people/bynx.md @@ -6,10 +6,11 @@ aliases: - sphynx baby - goliath baby first_seen: day-46 -last_updated: day-47 +last_updated: day-56 sources: - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-56.md --- # Bynx @@ -27,6 +28,8 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - Bynx's mother appeared as a carved female sphynx face on a Sunsoreen palace door. - In Sunsoreen, Bynx explained that where pure elemental planes meet, they combine. - Bynx cast Truesight and found his sister was no longer present, with no trace of her in the white dragon. +- On Day 56, Bynx warned Dirk that his brothers were coming and to close the door. +- Day 56 also suggested dome activation may have captured Bynx's sphynx brothers, and Bynx was later found behind a Barrier with Trixus, Benu, and Garadwal. ## Related Entries @@ -40,3 +43,5 @@ Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's r - Who is Bynx's lion-headed "real daddy"? - What happened to Bynx's sister, and why was there no trace of her in the white dragon? - Why did Bynx's reincarnation complete too quickly, and which power helped? +- Who are Bynx's brothers, and were they captured by the dome activation? +- Why was Bynx behind the Grand Towers Barrier with Trixus, Benu, and Garadwal? diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md index 9b70783..79c2d1f 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/edward-browning.md @@ -6,7 +6,7 @@ aliases: - Everard Browning - Everard first_seen: day-23 -last_updated: day-44 +last_updated: day-56 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md @@ -18,6 +18,7 @@ sources: - data/4-days-cleaned/day-41.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-56.md --- # Edward Browning @@ -43,6 +44,8 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Day 44 places Everard Browning as a student or young mage in the old Riversmeet mage school, asking about Bleakstorm's immortality and planning to reach the tower through tunnels with the janitor's broom. - Browning's old group wanted to see secrets of emotional elimination, memories, and automations to help defend the land because they did not think the elemental truce would last. - Icefang warned that if Browning acted, the future could be desperate, with broken tower fields, chromatic dragons, hidden settlements, and elementals destroying things. +- Day 56 shows a Grand Towers control-room table trap manifesting a giant bearded Browning head. The party countered the spell, but the voice still completed: `and the flight of the gold ends`. +- Dirk's ancestors reported Browning's godhood ritual takes 1,000 years and could have completed 13 years earlier if Soul had not crashed into the tower. The dome was said to drain the party like elementals, especially near its edges, and Browning intended to increase power with a crystal. ## Related Entries @@ -60,3 +63,5 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - What bargain did Browning make with Pride, and did he engineer Pride's consumption by Garadwal? - Did Browning cause or exploit the new four-tower Barrier around Grand Towers? - Did Browning's student-era tunnel expedition cause the later Grand Towers, automations, memory, or emotion-removal disasters? +- What did `and the flight of the gold ends` accomplish despite the counterspell? +- Which crystal does Browning intend to use to increase the ritual or dome power? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index c4ad70c..2ce4ad3 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -14,7 +14,7 @@ aliases: - Gardwell - Groot first_seen: day-01 -last_updated: day-47 +last_updated: day-56 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-06.md @@ -31,6 +31,7 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-56.md --- # Garadwal @@ -67,6 +68,8 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. - Day 47 Harthall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a lion-headed elven body that [Bynx](bynx.md) called "real daddy," and diary entries saying Argentum wanted to help Garadwal fight elementals. - Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadwal, while preserving uncertainty about whether the original intentions remained good. +- On Day 56, Garadwal was found behind a Barrier with Trixus, Benu, and Bynx in a Grand Towers control-room side area. He was clearer, said he would repay his misdeeds by helping the party, and asked that the dome be brought down now for different reasons. +- Garadwal's father trusted the party after they brought the children together, but said the choice was the party's. Day 56 also tied Harthall to the downfall and said Argentum died. ## Timeline @@ -84,6 +87,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. - `day-46`: Garadwal is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. - `day-47`: Harthall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx's lion-headed father clue. +- `day-56`: Garadwal is found with Trixus, Benu, and Bynx behind a Grand Towers Barrier and urges the party toward bringing the dome down. ## Related Entries @@ -108,3 +112,5 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? - Who are Garadwal's brothers, and is one connected to the undead sphinx reported near the Harthall artifact lead? - Is Bynx's lion-headed `real daddy` Garadwal, a relative, or another sphynx-linked figure? +- Why does Garadwal now want the dome brought down, and how does that differ from his earlier motives? +- Which father trusted the party after the children reunited, and what does his trust permit? diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md index 51a2738..2469906 100644 --- a/data/6-wiki/people/infestus.md +++ b/data/6-wiki/people/infestus.md @@ -7,7 +7,7 @@ aliases: - bane of multitude - slayer of Ruby eye first_seen: day-14 -last_updated: day-26 +last_updated: day-56 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -15,6 +15,8 @@ sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Infestus @@ -33,6 +35,8 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - Rimewatch records call Infestus `bane of multitude`, `slayer of Ruby eye`, black, and father of the veridican. - Dirk dreamed of an obsidian city where black Dragonborn stood by an archway with mosquitoes on the shield, and Infestus sent Garadwal through a portal using a coin. - Two plots were named near the Ice prison: removing certain cities and breaking out Garadwal. +- On Day 55, Wrath appeared as a black dragonborn fighting green dragons or Perodita's children and said basilisk coal at Coalmont Rally could teleport the party to Infestus. +- On Day 56, the party reached Infestus through a Bluescale archway with strict rules, saw a museum curiosity from Keep Rememberence, and learned Infestus wanted to pay the party for deeds. The Great Infestus pub and Ember, a red dragonborn seeking news of red dragons and dragonborn, were part of this visit. ## Timeline @@ -41,6 +45,8 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - `day-17`: The broader council and shipment threads keep Infestus relevant. - `day-25`: Infestus's titles and ties to Rubyeye, veridican, Peridita, and Garadwal plots are recorded at Rimewatch. - `day-26`: Dirk's dream shows Infestus using a coin to send Garadwal through a portal. +- `day-55`: Wrath points the party toward Infestus by basilisk coal. +- `day-56`: The party visits Infestus through Bluescale and receives possible work or payment leads. ## Related Entries @@ -53,3 +59,5 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - What does Infestus want from the Barrier and void creatures? - Can crystals on dragon scales intentionally breach or part the Barrier? - What cities were targeted for removal, and was Infestus behind both dragon plots? +- What are the Bluescale rules protecting, and what does Infestus want to pay the party for? +- How do Ember's request for red dragon and red dragonborn news and the narrator's elf smell connect to Infestus's politics? diff --git a/data/6-wiki/people/minor-figures-days-53-56.md b/data/6-wiki/people/minor-figures-days-53-56.md new file mode 100644 index 0000000..610d4c2 --- /dev/null +++ b/data/6-wiki/people/minor-figures-days-53-56.md @@ -0,0 +1,36 @@ +--- +title: Minor Figures from Days 53-56 +type: rollup +sources: + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md +--- + +# Minor Figures from Days 53-56 + +- Calthid Metalshaper: High Priest King of the dwarven council near Papa Illmarne's dome; believed the party summoned a creature of darkness and treated Rubyeye's imprisonment as treason-related. +- Grunged Thundersinger: Ambassador on the dwarven council; later restored from a glazed state and used coins to persuade elementals not to attack. +- Trinchel Rhinebeard: Advocate on the dwarven council, speaker for minorities, who wanted to contact his kin before the Perodita fight. +- Tussil Pebblegrinder: General on the dwarven council; affected by a malevolent presence until Greater Restoration drove black smoke from him. +- Quartermaster: newly promoted dwarf after the previous quartermaster died two years earlier; became glassy-eyed and hopeless until Lesser Restoration. +- Tendruts: followed Morgana after the llamia encounter and said, "Come back any time." +- The lone dwarf / llamia: figure in the damaged city who lured Morgana inside, then became a llamia with ratmen companions. +- Elementals' mother: entity or authority to whom approximately 100 coins were offered to prevent elementals attacking on Day 54. +- Green-eyed woman in Dotharl's dream: woke and helped Dotharl inside the glass dome; had an injured friend, a hostile brother, and possibly a new friend, Envy. +- No-Hurt: entity Morgana tried to speak with; it had spread everywhere and killed things. +- Blackthorn: remembered by Invar as someone not allowed to free his friend because it was a trick; Bridget allowed the trap because she found it funny. +- Merocole: god or possessing entity replacing the High Priest at Papa Marmaru; appeared under Greater Restoration as a smoke sphere with spidery legs and a human-like face. +- Papa Marmaru: raspy-voiced figure who warned not to trust Merocole, said Marmaru had chosen to be there, and looked after the dwarves. +- Humility fragments: twenty-seven beings in the Grand Towers control area, parts of Thomas removed so he could become Envy. +- `[unclear: Keakis?]`: uncertain prison or rune name that Geldrin did not close normally when fixing prison runes. +- Scumbleduck / Scumbledunk: Juticar who appeared at the control room and later betrayed the party by teleporting away after hearing the Browning discussion. +- Rubber-eye Juticar, silver dragonborn Juticar, and another Juticar: members of the Juticar group who confronted Geldrin as "Justicar Geldrin." +- Great Farnworth gnome treasure hunter: released from magical influence in the control room; remembered places before and after the dome but not the year. +- Humorous: old Rivermeet headmaster, woke thinking it was 3740 AC, thought Dirk looked like a Thrunglagen, and recovered his spellbook. +- Hracency: death used with Rubyeye's eye and Dotharl to locate Rubyeye and Cardinal. +- Fairlight Harthall: contact the party wanted to speak to, but Windows could not find him. +- Windows: search or contact method/person that could not find Fairlight Harthall. +- `[uncertain: Antherous?]`: figure who came through the portal before travel toward Bluescale / Infestus. +- Ember: red dragonborn in Infestus's city who sought news of red dragons or dragonborn and offered 1,000 gp for the promise. diff --git a/data/6-wiki/people/noxia.md b/data/6-wiki/people/noxia.md index b3b724b..abb2342 100644 --- a/data/6-wiki/people/noxia.md +++ b/data/6-wiki/people/noxia.md @@ -6,7 +6,7 @@ aliases: - Noxia blood - lady of destruction first_seen: day-31 -last_updated: day-44 +last_updated: day-55 sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md @@ -15,6 +15,8 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-55.md --- # Noxia @@ -30,6 +32,8 @@ Noxia is a destructive divine or corrupting force tied to scorpion symbolism, ba - The party killed the Noxia Beast avatar, while a later observatory book said Noxia wanted to walk on the earth and that Noxia's blood corrupted land after a fight with Sierra. - On `day-44`, Enis recognized Geldrin as touched by the `lady of destruction`, and a bottle of green liquid from the desert may have been Noxia blood. - The green liquid wanted to return to the rest of itself in the desert; after time-door events, some of it had returned home. +- On `day-53`, Perodita claimed the goliaths' suffering was tribute to Noxia. +- On `day-55`, killing Perodita released Noxia essence. Most things healed it, but the party killed the essence and moved the remaining Noxia ooze into a barrel. ## Related Entries @@ -42,3 +46,5 @@ Noxia is a destructive divine or corrupting force tied to scorpion symbolism, ba - Is Noxia a god, a corruption, a creature, or all three? - Did Noxia's blood cause the Azureside / Heartmoor diseased land or other poisoned regions? - What remains after the Noxia Beast avatar's death? +- What danger or use does the Day 55 barrel of Noxia ooze represent? +- How does Geldrin's sensed tower-blood experiment connect to Noxia essence and Perodita's old wounds? diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index b5a3b22..13ae84c 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -9,7 +9,7 @@ aliases: - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-48 +last_updated: day-55 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md @@ -20,6 +20,8 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-55.md --- # Peridita @@ -42,6 +44,8 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Day 43 says Lady Harthall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. - Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. - Day 48 reveals Verdigrim originally invited the party because Perodita told him to kill them and promised to leave his people alone. +- Day 53 makes Perodita an urgent dwarven-city threat: Anya Blakedurn says Perodita is trying to get back into the dome through the city, and Perodita claims goliath suffering was tribute to Noxia. +- Day 55 records Perodita wounded with black ichor, connected to green dragons or children fighting Wrath, then trapped in Magstein passages and killed with Walls of Fire. Noxia essence flowed out after the death, and Perodita had old unhealed wounds and 7,000 gp in belly-scale coins. ## Related Entries @@ -58,3 +62,5 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - What does freeing Perodita require from Bridge, and what does releasing Valentenhide under the god rule cost? - Why does Perodita want flesh-crafting wands? - Why did Perodita pressure Verdigrim to kill the party, and what would she stop doing if he obeyed? +- What remains of Perodita after the Day 55 death, Noxia essence release, and retained ooze barrel? +- What was the tower-blood experiment Geldrin sensed after Perodita died? diff --git a/data/6-wiki/people/trixus.md b/data/6-wiki/people/trixus.md index f17a090..93c6537 100644 --- a/data/6-wiki/people/trixus.md +++ b/data/6-wiki/people/trixus.md @@ -7,10 +7,11 @@ aliases: - Benu's little brother - elemental of light first_seen: day-42 -last_updated: day-43 +last_updated: day-56 sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-56.md --- # Trixus @@ -28,6 +29,7 @@ Trixus, also Trixius or Tixun, is Benu's little brother, one of Altabre's childr - He remained under a Slumber version of Imprisonment even after the party opened barriers. - On `day-43`, the family reunion with [Benu](benu.md), [Garadwal](garadwal.md), and Trixus occurred in Ashkellon; Geldrin released Trixus with a tremor skill. - Trixus said father had put him to sleep, questioned Benu's absence when his people were in trouble, and may be able to help restore memories or emotions. +- On `day-56`, Trixus was found behind a Barrier with Benu, Garadwal, and Bynx in a Grand Towers control-room side area. ## Related Entries @@ -42,3 +44,4 @@ Trixus, also Trixius or Tixun, is Benu's little brother, one of Altabre's childr - Why did Altabre put Trixus to sleep? - Can Trixus restore Emi's removed emotions, and where are those emotions held? - Is Trixus one of the Barrier prisoners, one of the five sphinx children, or both? +- Why was Trixus again behind a Barrier at Grand Towers after the Ashkellon release? diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md index 7b23731..2f1f8d1 100644 --- a/data/6-wiki/people/valententhide.md +++ b/data/6-wiki/people/valententhide.md @@ -11,7 +11,7 @@ aliases: - Bridge's sister - the featureless woman first_seen: day-30 -last_updated: day-52 +last_updated: day-56 sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md @@ -21,6 +21,7 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-56.md --- # Valententhide / Valentenhule @@ -44,6 +45,8 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - The same Day 48 figure answered the narrator's question about why everyone thought they were a Harthall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. - On `day-52`, a night-sky-serenity part of Valententhide was described as a small shard of a powerful creature. Reuniting it would soften Valententhide into a goddess of destruction rather than a mindless road-murdering force. - Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. +- On `day-56`, Valententhide appeared reflected in Invar's armour, and a tapestry showed five wizards plus an invisible Hannah Joy-like woman whom Dotharl could not see because he knew she existed. +- The Grand Towers control room had Valententhide's statue attack Dotharl, Valententhide's prison unlit, and later a Valententhide-related display showing an Altabre symbol and deactivation. The replacements thought the narrator may have stopped a statue trick and referenced `my daughters` / Mama Harthall. ## Related Entries @@ -64,3 +67,6 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - What did Thomas remove when he put the lost part of Valententhide into the dome? - Why did Joy say this figure took her mum, and why did the ancestors still approve releasing it? - What does the `gold Valententhide` orb contain, and what would Bridget do with it? +- Why did Valententhide appear through Invar's armour, and what does the Hannah-like invisible woman in the wizard tapestry imply? +- What does the Altabre symbol on Valententhide's deactivated prison indicate? +- Who are the `daughters` and Mama Harthall in the replacements' comments? diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md index 3a61eb4..715cdbf 100644 --- a/data/6-wiki/people/wrath.md +++ b/data/6-wiki/people/wrath.md @@ -5,9 +5,10 @@ aliases: - fake Ruby Eye - red-skinned tiefling first_seen: day-36 -last_updated: day-36 +last_updated: day-55 sources: - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-55.md --- # Wrath @@ -25,6 +26,7 @@ Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pa - He cursed the silver and black dragons so they could not take human form. - He wanted the shell of [uncertain: Tremoon] because he saw the wizards make it and it helped people get through the Barrier. - Ruby Eye later shouted Wrath back into his eye. +- On Day 55, Wrath appeared as a black dragonborn fighting green dragons or Perodita's children, described basilisk coal at Coalmont Rally as a way to teleport to Infestus, and offered or gave memory assistance. ## Related Entries @@ -39,3 +41,5 @@ Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pa - What exactly is Wrath's pact with Ruby Eye, and how much control did Wrath have? - Are Wrath, Pride, Envy, and the other six little demons Excellences or a separate Darkness hierarchy? - Is Wrath still contained in Ruby Eye's eye? +- Why was Wrath fighting Perodita's children, and what is his current relationship to Infestus? +- What memories can Wrath give, and what cost or agenda accompanies them? diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md index f660232..e56e700 100644 --- a/data/6-wiki/places/grand-towers.md +++ b/data/6-wiki/places/grand-towers.md @@ -6,7 +6,7 @@ aliases: - Grand Towers passage - Grand Towers boardroom first_seen: day-16 -last_updated: day-44 +last_updated: day-56 sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-23.md @@ -17,6 +17,7 @@ sources: - data/4-days-cleaned/day-41.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-56.md --- # Grand Towers @@ -36,6 +37,9 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - On `day-43`, all wizards seemed to have been recalled to Grand Towers, the Grand Towers dome later went down, and Cardonald's teleport-circle list included the factory, control room, and meeting lounge. - On `day-44`, Principal Grey's old-school letter from Browning, dated 47 AD, ordered the school closed and students transferred to Grand Towers. - Old-school books and visions suggested Grand Towers used god-language texts, gnomish technology, automations, emotional elimination, memories, tower tunnels, and possibly the same hidden routes later used by Browning's group. +- On `day-56`, the party teleported into an elaborate Grand Towers room and reached a control room with eight statues, prison runes, Salana intact, Garadwal and Valententhide unlit, other systems flickering, and a Merocole face carved into a mouth. +- The same exploration found 27 Humility fragments, parts of Thomas removed so he could become Envy, a black shard claimed to be an elemental of Void, a Frost pole ball, Juticars arriving through tears, wizards reconfiguring a map, and a Browning table trap. +- Side rooms included a thorny brush or briar, a box that put Geldrin and Morgana to sleep, Humorous the old Rivermeet headmaster waking in 3740 AC, and a Barrier trapping Trixus, Benu, Garadwal, and Bynx. ## Related Entries @@ -52,3 +56,5 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - Which Grand Towers systems are controlled by Browning, the wizards, Excellences, gods, automatons, or prisoners? - What happened when the Grand Towers dome went down on Day 43? - How much of Grand Towers originated in Riversmeet school, gnomish technology, and Browning's student-era discoveries? +- What do the day-56 control-room statue states mean for Salana, Garadwal, Valententhide, and `[unclear: Keakis?]`? +- Why were Trixus, Benu, Garadwal, and Bynx behind a Barrier inside the control-room side area? diff --git a/data/6-wiki/places/magstein-grimcrag.md b/data/6-wiki/places/magstein-grimcrag.md new file mode 100644 index 0000000..792a8e2 --- /dev/null +++ b/data/6-wiki/places/magstein-grimcrag.md @@ -0,0 +1,47 @@ +--- +title: Magstein and Grimcrag +type: place +aliases: + - Magstein + - Grimcrag + - Grimcrag bridge + - Crusty Beard +first_seen: day-53 +last_updated: day-56 +sources: + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md +--- + +# Magstein and Grimcrag + +## Summary + +Magstein and Grimcrag are dwarven locations tied to Papa Illmarne's dome, Perodita's attack route, a corrupted city government, convoy warfare, and the party's transition into the Grand Towers control-room crisis. + +## Known Details + +- On `day-53`, the party returned from Bridget's domain to the dwarf city near Papa Illmarne's dome, where they were accused of liberating a prisoner. +- The dwarven council included High Priest King Calthid Metalshaper, General Tussil Pebblegrinder, Advocate Trinchel Rhinebeard, Ambassador Grunged Thundersinger, and Guild Mistress Anya Blakedurn. +- The army roll call counted 1,017 soldiers, but supplies were poor: no water, much wine, one day of food, and no weapons, arrows, or other supplies. +- Morgana found the city damaged, with blood outside the door, then encountered a lone dwarf who became a llamia with ratmen companions. +- On `day-54`, the party fought at the Magstein / Grimcrag bridge, freed 26 Grimcrag dwarves, lost 12 army dwarves, and seized wagons containing invisibility-linked shield crystal/copper, poison barrels, and explosives. +- On `day-55`, the party left the dwarf army at Grimcrag to recover while they teleported to Magstein and trapped Perodita in narrow passages. +- Magstein had been strange for years: the council did not meet, militia were ineffective, theft was common, and faceplate guards intimidated the Crusty Beard pub without paying. +- The Crusty Beard had a hair wall and a memorial to dead dwarves who drank there. + +## Related Entries + +- [Anya Blakedurn](../people/anya-blakedurn.md) +- [Papa Illmarne's Dome](../concepts/papa-illmarnes-dome.md) +- [Peridita](../people/peridita.md) +- [Noxia](../people/noxia.md) + +## Open Questions + +- What caused the long-term breakdown of Magstein's council, militia, and civic order? +- Who controlled the faceplate guards? +- What was the exact destination or intended use of the poison and explosive wagons? +- How many Grimcrag dwarves remain capable after the bridge battle and recovery? diff --git a/data/6-wiki/places/minor-places-days-53-56.md b/data/6-wiki/places/minor-places-days-53-56.md new file mode 100644 index 0000000..18c76fc --- /dev/null +++ b/data/6-wiki/places/minor-places-days-53-56.md @@ -0,0 +1,29 @@ +--- +title: Minor Places from Days 53-56 +type: rollup +sources: + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md +--- + +# Minor Places from Days 53-56 + +- Bridget's domain return point: route that sent the party back near Papa Illmarne's dome at the start of Day 53. +- Dwarven council chamber: room where Calthid Metalshaper, Tussil Pebblegrinder, Trinchel Rhinebeard, Grunged Thundersinger, and Anya Blakedurn heard the party. +- Blakedurn's house: oddly repaired house with Sierra and Dunner styling, where Blakedurn confessed she was a black dragon. +- Damaged city door: city approach with blood outside and building damage where Morgana found a lone dwarf / llamia. +- Convoy route and bridge-side battlefield: Day 54 site where invisible attackers, elementals, Grimcrag prisoners, poison barrels, and explosives converged. +- Perodita's narrow passages: confined Magstein approach where the party trapped and killed Perodita with explosives, Wall of Force, and Walls of Fire. +- Crusty Beard: Magstein pub with a hair wall and memorial to dead dwarves who drank there. +- Grand Towers elaborate teleport room: Day 56 arrival point with traps recently disarmed and tapestries that felt out of place. +- Grand Towers spherical Humility room: room containing the elf Humility fragment Geldrin had seen during teleportation. +- Grand Towers control room: room with eight statues, prison runes, monks, automatons, the reconfigured map, and Browning's table trap. +- Control-room side rooms: dusty circle room, sleeping old-man bedroom, dormitory, bookcase bedroom, and teleport-room access where the party found Humorous and the trapped sphinxes. +- Emercurine: destination some party members considered for helping Harthall while others went to Riversmeet with Bynx. +- Brass dome on a beach: Cardinal's located prison or containment site, surrounded by air elementals in Brass City. +- Rubyeye's far-airwise endless loop: dwarven stone corridors where Rubyeye appeared trapped after Day 56 locating magic. +- Bluescale: protected location reached by archway with rules against harm, dishonest transactions, and disclosing Bluescale or the archway location. +- Keep Rememberence: source of a museum curiosity shown in Infestus's city. +- Great Infestus: Infestus's favourite pub, where the party met Ember. diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 1bb4867..899975e 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -43,6 +43,10 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Sources @@ -89,6 +93,10 @@ sources: - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). - `data/4-days-cleaned/day-48.md`: [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). - `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). +- `data/4-days-cleaned/day-53.md`: [Anya Blakedurn](people/anya-blakedurn.md), [Magstein and Grimcrag](places/magstein-grimcrag.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-54.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Elemental Prisons](concepts/elemental-prisons.md), [Shield Crystals](items/shield-crystals.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-55.md`: [Magstein and Grimcrag](places/magstein-grimcrag.md), [Peridita](people/peridita.md), [Noxia](people/noxia.md), [Wrath](people/wrath.md), [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). +- `data/4-days-cleaned/day-56.md`: [Grand Towers](places/grand-towers.md), [Edward Browning](people/edward-browning.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Infestus](people/infestus.md), [Benu](people/benu.md), [Garadwal](people/garadwal.md), [Bynx](people/bynx.md), [Trixus](people/trixus.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 53-56](people/minor-figures-days-53-56.md), [Minor Places from Days 53-56](places/minor-places-days-53-56.md), [Minor Items from Days 53-56](items/minor-items-days-53-56.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-53-56-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 0efb0df..d4e16ee 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -40,6 +40,10 @@ sources: - data/4-days-cleaned/day-47.md - data/4-days-cleaned/day-48.md - data/4-days-cleaned/day-52.md + - data/4-days-cleaned/day-53.md + - data/4-days-cleaned/day-54.md + - data/4-days-cleaned/day-55.md + - data/4-days-cleaned/day-56.md --- # Timeline @@ -91,3 +95,7 @@ sources: - `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that the narrator is a Harthall. - `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. - `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. +- `day-53`: Bridget sends the party to the dwarven city near [Papa Illmarne's Dome](concepts/papa-illmarnes-dome.md), where [Anya Blakedurn](people/anya-blakedurn.md) reveals she is a black dragon, the dwarven army is restored from hopeless corruption, and Morgana scouts a damaged city infiltrated by a llamia and ratmen. +- `day-54`: At the [Magstein and Grimcrag](places/magstein-grimcrag.md) bridge, the party defeats a convoy with invisible attackers, frees 26 Grimcrag dwarves, loses 12 army dwarves, appeases elementals with coins to their mother, and finds shield-crystal invisibility gear, poison barrels, and explosives. +- `day-55`: The party fights through Magstein / Grimcrag, learns Merocole has replaced the High Priest at Papa Marmaru, traps and kills [Peridita](people/peridita.md), contains [Noxia](people/noxia.md) ooze, recovers 7,000 gp, and rests at the unstable Crusty Beard. +- `day-56`: The party reaches the [Grand Towers](places/grand-towers.md) control room, meets Humility fragments removed from Thomas so he could become Envy, confronts Justicars and [Edward Browning](people/edward-browning.md)'s table trap, learns Browning's godhood ritual and dome-drain details, locates Rubyeye and Cardinal, then travels through Bluescale to [Infestus](people/infestus.md)'s city and meets Ember. -
329f540More pagesby Bas Mostert
data/2-pages/248.txt | 23 ++ data/2-pages/249.txt | 23 ++ data/2-pages/250.txt | 31 +++ data/2-pages/251.txt | 27 ++ data/2-pages/252.txt | 19 ++ data/2-pages/253.txt | 24 ++ data/2-pages/254.txt | 19 ++ data/2-pages/255.txt | 19 ++ data/2-pages/256.txt | 29 ++ data/2-pages/257.txt | 23 ++ data/2-pages/258.txt | 21 ++ data/2-pages/259.txt | 29 ++ data/2-pages/260.txt | 21 ++ data/2-pages/261.txt | 24 ++ data/2-pages/262.txt | 21 ++ data/2-pages/263.txt | 43 +++ data/2-pages/264.txt | 27 ++ data/2-pages/265.txt | 25 ++ data/2-pages/266.txt | 27 ++ data/2-pages/267.txt | 23 ++ data/3-days/day-48.md | 295 +++++++++++++++++++++ data/3-days/day-52.md | 176 ++++++++++++ data/4-days-cleaned/day-48.md | 111 ++++++++ data/4-days-cleaned/day-52.md | 85 ++++++ data/6-wiki/aliases.md | 2 + data/6-wiki/clues/days-48-52-coverage-audit.md | 29 ++ data/6-wiki/concepts/bridgets-doors.md | 12 +- data/6-wiki/concepts/elemental-prisons.md | 13 +- .../concepts/gods-bargains-behind-the-barrier.md | 8 +- data/6-wiki/index.md | 7 + data/6-wiki/items/minor-items-days-48-52.md | 44 +++ data/6-wiki/open-threads.md | 17 ++ data/6-wiki/people/brutor-ruby-eye.md | 12 +- data/6-wiki/people/minor-figures-days-48-52.md | 45 ++++ data/6-wiki/people/peridita.md | 5 +- data/6-wiki/people/valententhide.md | 12 +- data/6-wiki/people/verdigrim.md | 40 +++ data/6-wiki/places/minor-places-days-48-52.md | 40 +++ data/6-wiki/sources.md | 5 + data/6-wiki/timeline.md | 6 + 40 files changed, 1456 insertions(+), 6 deletions(-)Show diff
diff --git a/data/2-pages/248.txt b/data/2-pages/248.txt new file mode 100644 index 0000000..075d07c --- /dev/null +++ b/data/2-pages/248.txt @@ -0,0 +1,23 @@ +Page: 248 +Source: data/1-source/IMG_9920.jpg + +Transcription: +Dirk speaks with his ancestors about whether diplomacy will work. + +- Help can be gained, but the price will be high. + +Go to see the council and tell them we are going to try diplomacy. Tell them to give Verdigrim trade smarts. They are not happy with the plan but are willing to listen to what could be done. + +Head down to their main entrance base. Some dragonborn see us and one starts to follow, then breaks off and disappears into the brush toward a hidden entrance. Many more surround us as we get closer. Three dragonborn start walking towards us: a burly mean-looking woman, a small old man, and a burly one. + +I bear the shine of stepmother. Verdigrim has told them to speak to us. + +Grimescale, envoy for mighty Verdigrim, is the burly one. Gravltooth, old wizened man. + +Their lands have been theirs for 1,000 years and are no longer theirs. Ashkielion now belongs to the goliaths. Closed place to retrieve other lands. + +Tell us Verdigrim will see us and we request safe passage. + +Go into the tunnels. They take us to a throne room in Dunner style but incredibly dark stone and copper accents. On the throne is a man with incredibly dark skin and copper accents. + +He did invite us earlier, but that was because he was told to kill us by Perodita and she would leave them alone. diff --git a/data/2-pages/249.txt b/data/2-pages/249.txt new file mode 100644 index 0000000..395315d --- /dev/null +++ b/data/2-pages/249.txt @@ -0,0 +1,23 @@ +Page: 249 +Source: data/1-source/IMG_9921.jpg + +Transcription: +He wants to keep his own "Verdigrimtown" and wants what is his already. Five white raiding forces outside the town can revisit at a later date. Gold amount about one of his siblings' hordes. + +Warns that no forces lent us will put him in danger. Not attracted as they could lose forces: go there, get bored and leave, or attract a die. Does he have information to help them get other lands? + +Tell him his mother is still alive. He would like to meet her. + +Walk back to the camp at 14:00. + +Request to see the council and get let into the tent at 16:00. + +Tell the goliaths the trade agreement. They are swaying towards agreeing and going to move to Ashkielion and take the rest of the town. + +Return to tent. + +Someone is sitting in the tent: Wrath, smartly dressed, holding Rubyeye. Says Rubyeye needs rescuing. Cardinal went but was useless. + +"I'm called Elliana Harthall, as that was my mum's name, apparently one of my mums is and one isn't." + +Tell Ingus to let the council know where we are going. diff --git a/data/2-pages/250.txt b/data/2-pages/250.txt new file mode 100644 index 0000000..7456861 --- /dev/null +++ b/data/2-pages/250.txt @@ -0,0 +1,31 @@ +Page: 250 +Source: data/1-source/IMG_9922.jpg + +Transcription: +Go with Wrath to a huge underground dwarven city. + +Lava ball contains a humongous elemental lava orb. Prisoner? King dwarf praying to the gods to keep orbs safe. + +Female dwarf with massive ruby in her chest plate. Garadwal's body with a new owner? Earth elementals. + +Female dwarf called Spindl (Rubyeye's auntie) has seen us before and knew we were coming. + +"Garadwal" called us. We have come to help him. + +Invar makes an offering to the lava orb. Invar opens a box with a tiny creature in it who jumps to the lava orb and tells him to go aid his friends. + +See cells and a dark-skinned man crawling across the sand, begging for help. + +Grand Towers elves, leaving defeated and in pride, fall of two empires. + +Pride teleports away. + +Wrath then comes in angry with us because we didn't kill Pride. + +Dwarf High Priest wants to arrest him for existing. + +Rubyeye is here and arrested for ancient crimes. + +Spindl leads us to Rubyeye. + +Council deemed him a wanted criminal and summoned him to them. Then Wrath was hanging around advocating for Rubyeye and brought Pride, telling them they did it. diff --git a/data/2-pages/251.txt b/data/2-pages/251.txt new file mode 100644 index 0000000..e3714e7 --- /dev/null +++ b/data/2-pages/251.txt @@ -0,0 +1,27 @@ +Page: 251 +Source: data/1-source/IMG_9923.jpg + +Transcription: +Rubyeye is imprisoned in a dome. + +Charges: +- 174,312 herfolk babies murdered. +- Entrapment of elemental spirits. +- Construction of tower. +- Downfall of ancient race. + +Not seen Cardinal. + +Working things out. Enis has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? + +Rubyeye remembers Hannah and that there were six elemental forces, six arms on the exhausted, etc. There were six of them all along. + +Ask Spindl to call an audience with the judges. + +Decide to go and kill Pride. Geldrin scries on him. A veined stone building, rows of flat red and blue stained glass. + +Break Rubyeye out and teleport to Salanar's prison. Greeted by a black dragonborn who locks us in; extremely dark-skinned humanoid Umberous. Here to talk on his father's behalf. Nothing done so far has caused his ire as we have done what we have been asked. Kept the dome up. Gives Geldrin a pouch of white powder to meet and recover some spell slots. + +Vision of Grand Towers. Proud, calloused cheek, elf, sunken eyes. Looks like it has given up. + +Perhaps we should meet as his father would like to meet as he has a gift for us. Feels it will help us. diff --git a/data/2-pages/252.txt b/data/2-pages/252.txt new file mode 100644 index 0000000..50afecc --- /dev/null +++ b/data/2-pages/252.txt @@ -0,0 +1,19 @@ +Page: 252 +Source: data/1-source/IMG_9924.jpg + +Transcription: +Umberous has been tasked with looking after the seaside of the world. + +Kill Pride. Void elemental is released and he absorbs his brother and teleports away. He may have absorbed Pride. + +Umberous wants us to meet up with his dad. Wrath wants us to kill his sister and take Rubyeye with him. Geldrin tells Umberous we have Rubyeye with us, so Umberous wants us to deliver Rubyeye to Infestus. + +He agrees not to tell Infestus about Rubyeye if we agree to do him a favour. Gives us a Sending Stone to contact him. + +Throw all the slurry/bones and metal through the barrier. Slurry, etc. is destroyed but copper glides through. Use Skull of Iresmun to retrieve it. + +Get Rubyeye to teleport us back to the dwarven city. + +Appear on a snowy mountain. "Great stone fort in the sky." No way down from here. + +Try again. Appear in a stone room, dwarvish carved. Invar feels uneasy, created by scared dwarves. Long and uneasy. Comes through the carvings. diff --git a/data/2-pages/253.txt b/data/2-pages/253.txt new file mode 100644 index 0000000..d93c4c9 --- /dev/null +++ b/data/2-pages/253.txt @@ -0,0 +1,24 @@ +Page: 253 +Source: data/1-source/IMG_9925.jpg + +Transcription: +Rubyeye recognises it as a prison, but not the one we were trying to get to. Throngore's prison? Under Lewshis and Aneurascarle? + +Eyes glow red and he disappears at 21:00. + +Attempt to open the closed door. Drink the room. Statues of dwarves line the corridors, all heavily armoured with weapons. + +Door at end of corridor has runes saying "Empty." + +Plaques on dwarves: +- Ugarth Thunderfut, slain by the demon Samuel. +- Borbor Thunderfut, saw the demon Samuel slain by the demon Struct. +- Lhura Trutbrow, slain by Struct but bound in chain upon him. + +Talking of 30 dwarves from both clans, two from here, and the story of them capturing Throngore. + +Try to open the door. It is a 30 x 30 foot circular room. Six more dwarves, six who bound the creature here. No names. A dwarf holding a crystal or diamond-type gem, which should be holding the gem, doesn't look like he is. Very well-carved statues, realistic. + +Door to dark corridor. + +Door to 30 dwarf sarcophagus. Smells rotten/decayed. Bones, horrific smell. All bodies have been decapitated, not dead for that long, about 20 years. All died around the same time. Death caused by decapitation; all have evidence of injury, some fatal, but can tell decapitation was cause of death. diff --git a/data/2-pages/254.txt b/data/2-pages/254.txt new file mode 100644 index 0000000..43de731 --- /dev/null +++ b/data/2-pages/254.txt @@ -0,0 +1,19 @@ +Page: 254 +Source: data/1-source/IMG_9926.jpg + +Transcription: +Runes on sarcophagus: "The 30 dwarves living the corridor." Smashed from the outside. Has birth and death dates. All died on the same date 1,050 years ago. All armour and weapons are here, heirlooms. + +Goat urine covers them. + +Try to match up the armour with the statues. Fine glass dust in cracks of the stone. Diamond resurrection spell? Both Stoven and Stuart were imprisoned 20 years ago, only recently released, by us and another party. + +Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valententhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. + +Third door. Magical runes on the door knob, infernal-like writing in Enis's lab. + +"Come on, boy, we haven't got all day," Dothral hears when he tries to open the door. + +Five dwarves alive, no hands or feet. Eyes and lips sewn shut. Try to unpick it for information. They just want to be killed. Something keeping them alive. + +Touch crystal. Faintly remember medical school and playing with sister by the river in Provista. She looks different and calls me silly poo-poo head. diff --git a/data/2-pages/255.txt b/data/2-pages/255.txt new file mode 100644 index 0000000..afda98b --- /dev/null +++ b/data/2-pages/255.txt @@ -0,0 +1,19 @@ +Page: 255 +Source: data/1-source/IMG_9927.jpg + +Transcription: +Take crystal to the dwarves. They smile and pass away, happy they are now in the afterlife. + +When moving past, Invar's bag of holding opens by itself to get whatever did it from the bag. Orb: Compassion. + +Headmaster's office at the magic school had a note: "mines beneath the real." + +Get overwhelmed with compassion and drop them both. + +Trying to tell who is missing as six dwarves in the main room and [uncertain: ?] dwarves in the offshoot room. + +Geldrin finds a loose stone, small ruby behind the wall to touch, eye-sized. Item isn't magical. Has a spell in it similar to the Knock spell. + +Geldrin uses Skull of Iresmun to open the dome a tiny bit. Figure spins towards the hole. It is no one, wants to know if we are there to help it. It is lost, was part of Valententhide a long time ago but doesn't know what it is now. Thomas put it in the dome and took what was here. + +Elemental planes were highway, made a pact and created the world, but still too much highway. Vessel of Divinity made them gods, beings of awe, and stripped some of it away and left the lostness behind. Can't be allowed to keep the vessel. Wants to help us and doesn't feel like its deceiving us will give us three questions to ask her. diff --git a/data/2-pages/256.txt b/data/2-pages/256.txt new file mode 100644 index 0000000..92c4776 --- /dev/null +++ b/data/2-pages/256.txt @@ -0,0 +1,29 @@ +Page: 256 +Source: data/1-source/IMG_9928.jpg + +Transcription: +Questions: +- What will happen if Valententhide is reformed? +- Why does everyone think Elliana is a Harthall? + +Morgana gets a voice saying the vessel is theirs. + +Dirk sees Joy, who says not to trust it because she took her mum. Then a dwarf says, "coming for you. The ones who tormented us are coming for you." + +Dothral has a vision from his grandfather saying it will take his place. Tells Geldrin to take the skull out of the dome and then says, "They are all lost," but was not him saying it. + +Leave the room. + +Dirk asks the ancestors what will happen if we let her out: positive response. + +Room gets darker when Invar says original. Darkness closes in and stars start to be visible. Morgana casts daylight and we see clouds and sunrise at the edge of the spell. + +See a shadowy figure on the far wall. Open the dome and let her out. + +"Why does everyone think I'm a Harthall?" Because you are. + +Stoven and Stuart and Simon come into the prison shouting about their stuff being messed up. + +Tendrils crawl over the daylight dome. Go back to the dwarf room. Simon is all pieced together and some weird stuff. + +Don't like Valententhide and want her. Say no and try to persuade him they haven't fulfilled finding Rubyeye, so no. diff --git a/data/2-pages/257.txt b/data/2-pages/257.txt new file mode 100644 index 0000000..b42195e --- /dev/null +++ b/data/2-pages/257.txt @@ -0,0 +1,23 @@ +Page: 257 +Source: data/1-source/IMG_9929.jpg + +Transcription: +Simon communicates with Throngore. He is happy to meet us and will see us soon. + +Morgana knows a circle to teleport to [coded] and we go there. Appear in a wood, bees and apples and snow. Teleport circle made of furs, rugs and bird poo. Geldrin feels like he made it, but it is not how he would make it. Morgana thinks she put the memory there but not one from her current self. + +Go to Morgana's hut at 00:00. + +Day 52 - Stonedown + +Dothral wants to know more about his dad. Thinks it is Aneurascarle, making him an Excellency, Squeall god of the lost, his grandfather. + +Memory: dragons talking about a beehive being poked and why the dome was created. + +Query fully regain my memories of being a Harthall. Lost retrieving will not be easy; they align with the general memories as the pact with the god of the lost. Dothral sees snippets of my true form and need to do something with the J. + +Price was paid by dragonkind. It was not taken very well and those who remain have the power to. + +Payment not asked for, as we didn't give her to the goats. + +Have we looked up at the night sky and felt serene? That is the part she is. If we reunite, it would not change it completely, but soften the edges and be a goddess of destruction again, not just mindlessly murder people on the road. diff --git a/data/2-pages/258.txt b/data/2-pages/258.txt new file mode 100644 index 0000000..8f58cab --- /dev/null +++ b/data/2-pages/258.txt @@ -0,0 +1,21 @@ +Page: 258 +Source: data/1-source/IMG_9930.jpg + +Transcription: +Small shard of a powerful creature. + +Question: if the dome was destroyed would all the pacts be cancelled? + +The pacts are linked to the dome. If the dome ceases, then the pacts also cease. + +All of the prisons will release if the dome is removed. + +Geldrin has a plan. Takes out the broom for her to see her sister, Bridget. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridget and open a pathway to her domain. + +Pathway opens and we decide we need to protect her, as by Valententhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. + +Go through the door. + +Walkway stops part way and turns off to the left. All start to go in different directions: forwards (Invar), right (Geldrin), left (Dotharl), up (Elliana), down (Dirk), behind (Morgana). All walk for 10 minutes and lose sight of each other. + +Gets really windy in front of us. Hit a wall. diff --git a/data/2-pages/259.txt b/data/2-pages/259.txt new file mode 100644 index 0000000..a268b8d --- /dev/null +++ b/data/2-pages/259.txt @@ -0,0 +1,29 @@ +Page: 259 +Source: data/1-source/IMG_9931.jpg + +Transcription: +Walls seem to be linked: +- Invar <-> Morgana. +- Geldrin <-> Dotharl. +- Dirk <-> Elliana. + +Knock. Line appears and door opens. Cricket-headed humanoid appears and says they are busy and we need to wait. Ask how long. He asks how long I want to wait. Two minutes. OK. He then appears to Dirk and tells him two minutes. + +She is not really yet. + +Gives us a screwdriver and is waiting for "Medinner." Bird person. Ask him to ask Bridget if she is taking visitors. He goes away. + +Geldrin puts a red crystal in the divot. Goes to Dotharl and a raven opens the door and says the crystal is for a dwarf. + +Use the screwdriver to take out the curved blade. Goes to Dirk and Dirk finds a button where the blade was. + +Door opens for Invar: two cages with cricket and raven on plinths and a steaming bowl of gruel on a third plinth. + +Plaque on plinth: +- Cricket: Honour me first. +- Raven: Honour me second. +- Bowl: for a song. + +Dotharl: raven-headed lady tells him to go away; always a choice. + +Geldrin asks if she knows where Bridget is and how to get there. No, but her friend does. Going to see him later, not sure when. diff --git a/data/2-pages/260.txt b/data/2-pages/260.txt new file mode 100644 index 0000000..d231d9e --- /dev/null +++ b/data/2-pages/260.txt @@ -0,0 +1,21 @@ +Page: 260 +Source: data/1-source/IMG_9932.jpg + +Transcription: +Invar tries to feed Raven the gruel. Doesn't want it. + +Opens the cricket cage. Cricket jumps onto the bowl and starts eating. Raven is then interested. Cricket starts singing. Door handle clicks behind Invar. Open bird cage. Raven flies out to eat the cricket. Door clicks and Invar opens it. + +Door comes to us. Cricket comes through: Cedric. + +Morgana needs to do something. Tell him to ask Bridget to make a door for Morgana to get back through, and she does. + +Geldrin asks for the door, and Medinner can't because her show is on. Geldrin wants to see it and she lets him in. + +Three silver dragonborn on the screen, reenacting Elliana realising Avalina is her mum and she put her in the ground. + +Woman covered in roots. + +Robot man, copper dragonborn in plates, pretending to be on guard duty, powder around like snow. Explosion. Another one comes, says "rise my son," and he gets up and walks away. + +She says to use the broom to get to Dotharl. Wall looks like a stone door with the knob at the top. It rotates but doesn't open. It rotates to match Geldrin's. diff --git a/data/2-pages/261.txt b/data/2-pages/261.txt new file mode 100644 index 0000000..90e6d85 --- /dev/null +++ b/data/2-pages/261.txt @@ -0,0 +1,24 @@ +Page: 261 +Source: data/1-source/IMG_9933.jpg + +Transcription: +Morgana comes back. Door is open. Room with three plinths: +- Playing cards. +- Bowl. +- Dice. + +Rolls the dice. Draws top card: ace of spades. Draws all the cards and they draw in order. Shuffles and deals six piles of eight cards. Plays magic poker. + +Figure out what we need to do, close with what we are doing, play a hand and win? + +Morgana manages to trick-deal a good hand. + +Twenty cricket/raven gold coins appear. Tries the gruel; it tastes bad. Rolls the dice. + +Geldrin disappears to a "chess board" square, 20 squares aside. Rolls again. Dirk goes to Geldrin on the other side of the board. Light in the middle of the board. Rolls again separately. Another light on the board. + +Morgana leaves the room with the gruel and throws it off the side of the platform. Cedric catches it and eats it; tastes like ambrosia. + +She will see us and won't tell us how to get there. + +Geldrin and Dirk: orbs, [unclear: geesie?], and scythe. Stop when pushed together. Floor disappears and they land with Invar and Elliana. diff --git a/data/2-pages/262.txt b/data/2-pages/262.txt new file mode 100644 index 0000000..f6dcf01 --- /dev/null +++ b/data/2-pages/262.txt @@ -0,0 +1,21 @@ +Page: 262 +Source: data/1-source/IMG_9934.jpg + +Transcription: +Medinner tells Dotharl we need to go soon. Takes a step off the edge. + +Orb is a present from Bridget. Need to keep it with us until we don't. + +Cedric and Medinner are Bridget's closest followers and can speak more freely and directly than Bridget. Bridget needs a favour. + +Remember she gave us a present as we are about to feel angry. + +Remember how we honoured her. It is important. + +We appear back where we started with a door behind us. Open the door: darker sky, no platform. Feels like a bouncy castle when walking out to it. Walk down towards the clouds underneath. + +Realise we can move how we want to. Invar and Dotharl speed towards the storm. Dirk decides to move to where we need to. Elliana goes to Dirk. Geldrin goes to Invar and Dotharl. + +Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." + +Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valententhide, smash the orb, and release her to Bridget. diff --git a/data/2-pages/263.txt b/data/2-pages/263.txt new file mode 100644 index 0000000..23e3f46 --- /dev/null +++ b/data/2-pages/263.txt @@ -0,0 +1,43 @@ +Page: 263 +Source: data/1-source/IMG_9935.jpg + +Transcription: +Bridget wishes to be honoured a second time. Gods agreed not to interfere unless asked, but some of our kin interfered a lot. + +Her kin is currently trapped and wishes him to be freed. Dotharl's granddad? Part of Dotharl is Bridget. The part of him being free: his dad is trapped, granddad is lost, Squeall. + +She likes freedom and trickery. Her husband likes lucky fortune, weather, change, and loss. Whatever her followers need she can get, within reason. + +Questions: +- Trapped in Snowsoreen, order city? +- Trapped in the dome, order from all the chaos outside the dome? + +Many paths we will take. Nothing is written in stone. But the freedom we chose to be constrained to the walk way could have just walked off. Fear of the unknown. + +Choice to make: me, keep the identity now, or the one I once had. + +Dotharl: keep humanity or not and rejoin Bridget's realm. + +Geldrin: power offered, maybe too much to resist. Lots we don't know about Browning's. May all seem evil but who decides? He may need to go see his people. + +Invar: man of faith but only just learning it, needs to give him a crystal, the one Geldrin lost. Use it if we go back to his city. + +Dirk: on the path to free his people. More steps are needed and will need friends to help. How many depends on him. The spirits are not the only help. Don't forget the fishing expedition. + +Morgana: choice to help us, cost for the aid given us is great. Those who seek to train her come at great cost to her. + +Day 53 - Bridget / Domain + +Friend is intriguing her. Why do we help each other? + +Dragon she banished is coming back. There is only one way big enough. Nods at Invar. She will be doing it soon. Took the opportunity to get more hands, which channelled the power of the silver. + +The information needed to decide what to do is available for us now. + +Need to understand I am Elliana and Elliana. I can't be both. + +She wants to know where we want to go. Dwarf city, appear back by Papa Illmarne's dome. + +High Priest King says job is to keep Papa Illmarne's dome. + +Two dwarves by the dome say we are wanted criminals for liberating a prisoner. diff --git a/data/2-pages/264.txt b/data/2-pages/264.txt new file mode 100644 index 0000000..936668c --- /dev/null +++ b/data/2-pages/264.txt @@ -0,0 +1,27 @@ +Page: 264 +Source: data/1-source/IMG_9936.jpg + +Transcription: +High Priest King / General / Advocate / Ambassador / Guild Mistress sit around the table in the council chamber. + +Female: Blakedurn's family run the guilds, renowned family. Purple eyes. Anya, Guild Mistress. Heard a lot about us and will be representing us with the council. Quizzes us, asks about dragons, dragonborn, automatons, gnomes. + +Rubyeye known as a liar, maybe affected by wrath for this. + +Wants more information for payment for representing us. + +Geldrin tells her about Perodita trying to get back in the dome through the city. + +Door opens. + +Male: Ambassador Grunged Thundersinger. Also wants to speak to us alone and can offer us things. + +Male: Advocate Trinchel Rhinebeard. Speaks for minorities. + +Male: General Tussil Pebblegrinder. + +Male: High Priest King, Calthid Metalshaper. + +King is not happy with us for introducing, giving him Garadwal's armour. + +Thinks we summoned a creature of darkness. Blakedurn says that wasn't us. diff --git a/data/2-pages/265.txt b/data/2-pages/265.txt new file mode 100644 index 0000000..1c7d961 --- /dev/null +++ b/data/2-pages/265.txt @@ -0,0 +1,25 @@ +Page: 265 +Source: data/1-source/IMG_9937.jpg + +Transcription: +Won't discuss why Rubyeye was a prisoner. + +Betrayed their people, a very high crime considered treason. +- Responsible for death of the princess. +- Demon pacts condemning souls to death. + +Other pressing matter: Perodita. We are under investigation. + +Advocate wishes to contact his kin. Agree to go fight Perodita. General goes to gather the army. + +Check Blakedurn's ear. No worm, but canal looks odd. Morgana checks and it is wrong, too small and no hair. + +Dirk/Thamia checks her: not a Thamia. + +Head over to her house. Door is odd, broken and not repaired very well. Weird for her standing. Tell her about the ear bugs. Takes it with an air of, "should we trust her?" House has lots of Sierra aspects, very Dunner styling. + +Query her. Place is messed up and she is not. + +Confesses to not be a dwarf. Black dragon. Wants the dwarves to succeed. Her deal is just for herself, jewels, etc. + +Rubyeye was her prisoner and she wants him back. She will help us defeat Perodita. We help restore the Dwarven kingdoms. diff --git a/data/2-pages/266.txt b/data/2-pages/266.txt new file mode 100644 index 0000000..181f08c --- /dev/null +++ b/data/2-pages/266.txt @@ -0,0 +1,27 @@ +Page: 266 +Source: data/1-source/IMG_9938.jpg + +Transcription: +What happened to the dwarves? Not sure. + +She was responsible for the black smoke incident, a smaller version of the hockey pack. + +Device to summon Rubyeye was from her father and took her years to master it. + +Perodita says goliaths' suffering was her tribute to Noxia. + +People in power are inept and their instructions are inept, but the general and people are inept due to these instructions. + +Started approximately 20 years ago. Hole in Papa's Dome. Knows of black dragons, green dragons, silver dragon (doesn't know who it is), blue dragons all dead, white dragon Icefang. + +Go to Papa's Dome. + +The guards try to take our weapons. We meekly persuade them to let us through. Shouldn't be that easy. + +Unable to repair the hole without pylons. Has more freedom lately, using it to break the dwarves as they treated him. + +Decide we can't do anything with the dome. + +About 200 dwarves, well equipped. Full army count around 1,000. Can't ask the general how many to expect here. + +Guild Mistress, General, and Ambassador come with us. diff --git a/data/2-pages/267.txt b/data/2-pages/267.txt new file mode 100644 index 0000000..c529cc7 --- /dev/null +++ b/data/2-pages/267.txt @@ -0,0 +1,23 @@ +Page: 267 +Source: data/1-source/IMG_9940.jpg + +Transcription: +Roll call for 1,017 soldiers. + +Dirk inspects the wagons. Not great supplies: no water, lots of wine, food for one day, no weapons, arrows, or other supplies. + +Get a dwarf promoted to Quartermaster, as the last one died two years ago and was not replaced. + +He started to take notes. Well, then starts to become glassy-eyed and hopeless. + +Cast Lesser Restoration and he returns to normal. + +Try to do the same on the general, but something seems to stop it: malevolent presence. Cast Greater Restoration on him. Eyes go black. Dark smoke rises from his shoulders. It flies to the ceiling and dissipates. He comes back to reality and gets everything together. + +At 12:00, army starts to move. + +Morgana flies ahead of the army to notify the town. + +Bridget isn't dwarven construction: elemental? + +Morgana comes across a small wagon train with ebony dwarves, around 40. They shoot at her and damage her, but she continues. diff --git a/data/3-days/day-48.md b/data/3-days/day-48.md new file mode 100644 index 0000000..57eb372 --- /dev/null +++ b/data/3-days/day-48.md @@ -0,0 +1,295 @@ +--- +day: day-48 +date: unknown +complete: true +source_pages: + - data/2-pages/245.txt + - data/2-pages/246.txt + - data/2-pages/247.txt + - data/2-pages/248.txt + - data/2-pages/249.txt + - data/2-pages/250.txt + - data/2-pages/251.txt + - data/2-pages/252.txt + - data/2-pages/253.txt + - data/2-pages/254.txt + - data/2-pages/255.txt + - data/2-pages/256.txt + - data/2-pages/257.txt +source_ranges: + - data/2-pages/245.txt:9-20 + - data/2-pages/246.txt + - data/2-pages/247.txt + - data/2-pages/248.txt + - data/2-pages/249.txt + - data/2-pages/250.txt + - data/2-pages/251.txt + - data/2-pages/252.txt + - data/2-pages/253.txt + - data/2-pages/254.txt + - data/2-pages/255.txt + - data/2-pages/256.txt + - data/2-pages/257.txt:5-9 +--- + +# Raw Notes + +## Page 245 + +Day 48 + +Bynx grows up again. Want to go to Gardoil and Dirk's dad. +Send Errol off with a message to Dirk's dad. +Start to talk about everything, saying I'm a Harthall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. +Deal with a god. Wipe me from memories like Enis's wife, Hannah. + +Errol returns. Things not great, recovering from a battle. Gardoil not with them. She had to go do something. Need reinforcements from the capital. + +Try to Broom to Azureside. Completely blue sky. Passage way. Flip a coin off the "side". Door disappeared. Launch for another one and there is a door in the floor. Looks out to a sky. Poke head through and lush grass and mushrooms, but blue sky. Squirrel comes to talk to us. Doesn't know where it is. Says there is a floppy lizard who looks after him, possibly bronze colour. Can summon it. Sends a magpie to get him. + +Dragon starts to approach. Definitely metallic, looks brass. + +## Page 246 + +Day 48 continues: Courtwood's "Musing" four days ago. Four days ago when killed Worn, fixed Errol, and got Bynx. Dragons attacking further Waterwise. Dunners claim party favoured of Atlabre and child prophesises return. + +Dirk Sr wants party to kill dragon. Scouts found entrances to cave network. Some poisoned. Enemies invisible. Don't know manticore. + +Dirk Sr tells Dirk to see sister Ingris. Bynx fractured/unhappy as Goliath's sphynx. + +Dotharl saw invisibles around perimeter. + +Scout reports four entrances: main cliff 9 miles away with humans, dragonborn, and Duhg guards, approximately 100. Other patrol entrances under shrub, behind rock, poison door, and third in ground approximately 1 mile apart. Many traps. Movable poison weapon. + +## Page 247 + +Retrieved a poison weapon. Something familiar about the poison; can't quite remember. Alchemical base. Their breath weapon. Some poisonous herbs and scorpion venom. Can be healed with normal healing spell, but wound will not heal. + +Go to see the Dunners. Seem to get lots of respect. Elders come out to see us. Older one and knower of flesh are here on the word of Benu. + +There is a plan for us. They have seen the prophecy in the texts now uncovered. They know due to the convalescence of Benu he will be back but needs to pay for his misdeeds. + +Heard words of their old protector made flesh anew (Garadwal). He had good and wanted to protect people. Not sure if they should accept him back as their protector. + +Find the Goliath strong-minded. Merfolk have retreated to the sea. Suppressed memories have horrified them, although spoke highly of us. + +Would diplomacy work to bring the dragon round? Get his mum involved? Verdigrim? + +Test the waters to see if he is willing to talk. +- Diplomacy: help or go away. +- Attack. +- Sneak. +- We leave. + +## Page 248 + +Dirk speaks with his ancestors about whether diplomacy will work. + +- Help can be gained, but the price will be high. + +Go to see the council and tell them we are going to try diplomacy. Tell them to give Verdigrim trade smarts. They are not happy with the plan but are willing to listen to what could be done. + +Head down to their main entrance base. Some dragonborn see us and one starts to follow, then breaks off and disappears into the brush toward a hidden entrance. Many more surround us as we get closer. Three dragonborn start walking towards us: a burly mean-looking woman, a small old man, and a burly one. + +I bear the shine of stepmother. Verdigrim has told them to speak to us. + +Grimescale, envoy for mighty Verdigrim, is the burly one. Gravltooth, old wizened man. + +Their lands have been theirs for 1,000 years and are no longer theirs. Ashkielion now belongs to the goliaths. Closed place to retrieve other lands. + +Tell us Verdigrim will see us and we request safe passage. + +Go into the tunnels. They take us to a throne room in Dunner style but incredibly dark stone and copper accents. On the throne is a man with incredibly dark skin and copper accents. + +He did invite us earlier, but that was because he was told to kill us by Perodita and she would leave them alone. + +## Page 249 + +He wants to keep his own "Verdigrimtown" and wants what is his already. Five white raiding forces outside the town can revisit at a later date. Gold amount about one of his siblings' hordes. + +Warns that no forces lent us will put him in danger. Not attracted as they could lose forces: go there, get bored and leave, or attract a die. Does he have information to help them get other lands? + +Tell him his mother is still alive. He would like to meet her. + +Walk back to the camp at 14:00. + +Request to see the council and get let into the tent at 16:00. + +Tell the goliaths the trade agreement. They are swaying towards agreeing and going to move to Ashkielion and take the rest of the town. + +Return to tent. + +Someone is sitting in the tent: Wrath, smartly dressed, holding Rubyeye. Says Rubyeye needs rescuing. Cardinal went but was useless. + +"I'm called Elliana Harthall, as that was my mum's name, apparently one of my mums is and one isn't." + +Tell Ingus to let the council know where we are going. + +## Page 250 + +Go with Wrath to a huge underground dwarven city. + +Lava ball contains a humongous elemental lava orb. Prisoner? King dwarf praying to the gods to keep orbs safe. + +Female dwarf with massive ruby in her chest plate. Garadwal's body with a new owner? Earth elementals. + +Female dwarf called Spindl (Rubyeye's auntie) has seen us before and knew we were coming. + +"Garadwal" called us. We have come to help him. + +Invar makes an offering to the lava orb. Invar opens a box with a tiny creature in it who jumps to the lava orb and tells him to go aid his friends. + +See cells and a dark-skinned man crawling across the sand, begging for help. + +Grand Towers elves, leaving defeated and in pride, fall of two empires. + +Pride teleports away. + +Wrath then comes in angry with us because we didn't kill Pride. + +Dwarf High Priest wants to arrest him for existing. + +Rubyeye is here and arrested for ancient crimes. + +Spindl leads us to Rubyeye. + +Council deemed him a wanted criminal and summoned him to them. Then Wrath was hanging around advocating for Rubyeye and brought Pride, telling them they did it. + +## Page 251 + +Rubyeye is imprisoned in a dome. + +Charges: +- 174,312 herfolk babies murdered. +- Entrapment of elemental spirits. +- Construction of tower. +- Downfall of ancient race. + +Not seen Cardinal. + +Working things out. Enis has a body stored somewhere. Doesn't know where it is, maybe Goalmost falls? + +Rubyeye remembers Hannah and that there were six elemental forces, six arms on the exhausted, etc. There were six of them all along. + +Ask Spindl to call an audience with the judges. + +Decide to go and kill Pride. Geldrin scries on him. A veined stone building, rows of flat red and blue stained glass. + +Break Rubyeye out and teleport to Salanar's prison. Greeted by a black dragonborn who locks us in; extremely dark-skinned humanoid Umberous. Here to talk on his father's behalf. Nothing done so far has caused his ire as we have done what we have been asked. Kept the dome up. Gives Geldrin a pouch of white powder to meet and recover some spell slots. + +Vision of Grand Towers. Proud, calloused cheek, elf, sunken eyes. Looks like it has given up. + +Perhaps we should meet as his father would like to meet as he has a gift for us. Feels it will help us. + +## Page 252 + +Umberous has been tasked with looking after the seaside of the world. + +Kill Pride. Void elemental is released and he absorbs his brother and teleports away. He may have absorbed Pride. + +Umberous wants us to meet up with his dad. Wrath wants us to kill his sister and take Rubyeye with him. Geldrin tells Umberous we have Rubyeye with us, so Umberous wants us to deliver Rubyeye to Infestus. + +He agrees not to tell Infestus about Rubyeye if we agree to do him a favour. Gives us a Sending Stone to contact him. + +Throw all the slurry/bones and metal through the barrier. Slurry, etc. is destroyed but copper glides through. Use Skull of Iresmun to retrieve it. + +Get Rubyeye to teleport us back to the dwarven city. + +Appear on a snowy mountain. "Great stone fort in the sky." No way down from here. + +Try again. Appear in a stone room, dwarvish carved. Invar feels uneasy, created by scared dwarves. Long and uneasy. Comes through the carvings. + +## Page 253 + +Rubyeye recognises it as a prison, but not the one we were trying to get to. Throngore's prison? Under Lewshis and Aneurascarle? + +Eyes glow red and he disappears at 21:00. + +Attempt to open the closed door. Drink the room. Statues of dwarves line the corridors, all heavily armoured with weapons. + +Door at end of corridor has runes saying "Empty." + +Plaques on dwarves: +- Ugarth Thunderfut, slain by the demon Samuel. +- Borbor Thunderfut, saw the demon Samuel slain by the demon Struct. +- Lhura Trutbrow, slain by Struct but bound in chain upon him. + +Talking of 30 dwarves from both clans, two from here, and the story of them capturing Throngore. + +Try to open the door. It is a 30 x 30 foot circular room. Six more dwarves, six who bound the creature here. No names. A dwarf holding a crystal or diamond-type gem, which should be holding the gem, doesn't look like he is. Very well-carved statues, realistic. + +Door to dark corridor. + +Door to 30 dwarf sarcophagus. Smells rotten/decayed. Bones, horrific smell. All bodies have been decapitated, not dead for that long, about 20 years. All died around the same time. Death caused by decapitation; all have evidence of injury, some fatal, but can tell decapitation was cause of death. + +## Page 254 + +Runes on sarcophagus: "The 30 dwarves living the corridor." Smashed from the outside. Has birth and death dates. All died on the same date 1,050 years ago. All armour and weapons are here, heirlooms. + +Goat urine covers them. + +Try to match up the armour with the statues. Fine glass dust in cracks of the stone. Diamond resurrection spell? Both Stoven and Stuart were imprisoned 20 years ago, only recently released, by us and another party. + +Door with dark corridor gets smaller towards the end. Door at end, no handle, panel to open. Prison dome in the room. Humanoid figure in the dome. Aglue? Anemie? Valententhide? No features. Pylon runes explain the pylons. Talks about a key, "wheel," to open it. + +Third door. Magical runes on the door knob, infernal-like writing in Enis's lab. + +"Come on, boy, we haven't got all day," Dothral hears when he tries to open the door. + +Five dwarves alive, no hands or feet. Eyes and lips sewn shut. Try to unpick it for information. They just want to be killed. Something keeping them alive. + +Touch crystal. Faintly remember medical school and playing with sister by the river in Provista. She looks different and calls me silly poo-poo head. + +## Page 255 + +Take crystal to the dwarves. They smile and pass away, happy they are now in the afterlife. + +When moving past, Invar's bag of holding opens by itself to get whatever did it from the bag. Orb: Compassion. + +Headmaster's office at the magic school had a note: "mines beneath the real." + +Get overwhelmed with compassion and drop them both. + +Trying to tell who is missing as six dwarves in the main room and [uncertain: ?] dwarves in the offshoot room. + +Geldrin finds a loose stone, small ruby behind the wall to touch, eye-sized. Item isn't magical. Has a spell in it similar to the Knock spell. + +Geldrin uses Skull of Iresmun to open the dome a tiny bit. Figure spins towards the hole. It is no one, wants to know if we are there to help it. It is lost, was part of Valententhide a long time ago but doesn't know what it is now. Thomas put it in the dome and took what was here. + +Elemental planes were highway, made a pact and created the world, but still too much highway. Vessel of Divinity made them gods, beings of awe, and stripped some of it away and left the lostness behind. Can't be allowed to keep the vessel. Wants to help us and doesn't feel like its deceiving us will give us three questions to ask her. + +## Page 256 + +Questions: +- What will happen if Valententhide is reformed? +- Why does everyone think Elliana is a Harthall? + +Morgana gets a voice saying the vessel is theirs. + +Dirk sees Joy, who says not to trust it because she took her mum. Then a dwarf says, "coming for you. The ones who tormented us are coming for you." + +Dothral has a vision from his grandfather saying it will take his place. Tells Geldrin to take the skull out of the dome and then says, "They are all lost," but was not him saying it. + +Leave the room. + +Dirk asks the ancestors what will happen if we let her out: positive response. + +Room gets darker when Invar says original. Darkness closes in and stars start to be visible. Morgana casts daylight and we see clouds and sunrise at the edge of the spell. + +See a shadowy figure on the far wall. Open the dome and let her out. + +"Why does everyone think I'm a Harthall?" Because you are. + +Stoven and Stuart and Simon come into the prison shouting about their stuff being messed up. + +Tendrils crawl over the daylight dome. Go back to the dwarf room. Simon is all pieced together and some weird stuff. + +Don't like Valententhide and want her. Say no and try to persuade him they haven't fulfilled finding Rubyeye, so no. + +## Page 257 + +Simon communicates with Throngore. He is happy to meet us and will see us soon. + +Morgana knows a circle to teleport to [coded] and we go there. Appear in a wood, bees and apples and snow. Teleport circle made of furs, rugs and bird poo. Geldrin feels like he made it, but it is not how he would make it. Morgana thinks she put the memory there but not one from her current self. + +Go to Morgana's hut at 00:00. diff --git a/data/3-days/day-52.md b/data/3-days/day-52.md new file mode 100644 index 0000000..a124c1e --- /dev/null +++ b/data/3-days/day-52.md @@ -0,0 +1,176 @@ +--- +day: day-52 +date: unknown +complete: true +source_pages: + - data/2-pages/257.txt + - data/2-pages/258.txt + - data/2-pages/259.txt + - data/2-pages/260.txt + - data/2-pages/261.txt + - data/2-pages/262.txt + - data/2-pages/263.txt +source_ranges: + - data/2-pages/257.txt:11-23 + - data/2-pages/258.txt + - data/2-pages/259.txt + - data/2-pages/260.txt + - data/2-pages/261.txt + - data/2-pages/262.txt + - data/2-pages/263.txt:5-27 +--- + +# Raw Notes + +## Page 257 + +Day 52 - Stonedown + +Dothral wants to know more about his dad. Thinks it is Aneurascarle, making him an Excellency, Squeall god of the lost, his grandfather. + +Memory: dragons talking about a beehive being poked and why the dome was created. + +Query fully regain my memories of being a Harthall. Lost retrieving will not be easy; they align with the general memories as the pact with the god of the lost. Dothral sees snippets of my true form and need to do something with the J. + +Price was paid by dragonkind. It was not taken very well and those who remain have the power to. + +Payment not asked for, as we didn't give her to the goats. + +Have we looked up at the night sky and felt serene? That is the part she is. If we reunite, it would not change it completely, but soften the edges and be a goddess of destruction again, not just mindlessly murder people on the road. + +## Page 258 + +Small shard of a powerful creature. + +Question: if the dome was destroyed would all the pacts be cancelled? + +The pacts are linked to the dome. If the dome ceases, then the pacts also cease. + +All of the prisons will release if the dome is removed. + +Geldrin has a plan. Takes out the broom for her to see her sister, Bridget. Not sure what she would do, but as she inquired of the shard's release, he tries to commune with Bridget and open a pathway to her domain. + +Pathway opens and we decide we need to protect her, as by Valententhide might be able to get her. Suggest an oath of holding elemental, and she says this will protect her as his dome energy. We can decide if we believe Bridget will help her. Promise to release her regardless. + +Go through the door. + +Walkway stops part way and turns off to the left. All start to go in different directions: forwards (Invar), right (Geldrin), left (Dotharl), up (Elliana), down (Dirk), behind (Morgana). All walk for 10 minutes and lose sight of each other. + +Gets really windy in front of us. Hit a wall. + +## Page 259 + +Walls seem to be linked: +- Invar <-> Morgana. +- Geldrin <-> Dotharl. +- Dirk <-> Elliana. + +Knock. Line appears and door opens. Cricket-headed humanoid appears and says they are busy and we need to wait. Ask how long. He asks how long I want to wait. Two minutes. OK. He then appears to Dirk and tells him two minutes. + +She is not really yet. + +Gives us a screwdriver and is waiting for "Medinner." Bird person. Ask him to ask Bridget if she is taking visitors. He goes away. + +Geldrin puts a red crystal in the divot. Goes to Dotharl and a raven opens the door and says the crystal is for a dwarf. + +Use the screwdriver to take out the curved blade. Goes to Dirk and Dirk finds a button where the blade was. + +Door opens for Invar: two cages with cricket and raven on plinths and a steaming bowl of gruel on a third plinth. + +Plaque on plinth: +- Cricket: Honour me first. +- Raven: Honour me second. +- Bowl: for a song. + +Dotharl: raven-headed lady tells him to go away; always a choice. + +Geldrin asks if she knows where Bridget is and how to get there. No, but her friend does. Going to see him later, not sure when. + +## Page 260 + +Invar tries to feed Raven the gruel. Doesn't want it. + +Opens the cricket cage. Cricket jumps onto the bowl and starts eating. Raven is then interested. Cricket starts singing. Door handle clicks behind Invar. Open bird cage. Raven flies out to eat the cricket. Door clicks and Invar opens it. + +Door comes to us. Cricket comes through: Cedric. + +Morgana needs to do something. Tell him to ask Bridget to make a door for Morgana to get back through, and she does. + +Geldrin asks for the door, and Medinner can't because her show is on. Geldrin wants to see it and she lets him in. + +Three silver dragonborn on the screen, reenacting Elliana realising Avalina is her mum and she put her in the ground. + +Woman covered in roots. + +Robot man, copper dragonborn in plates, pretending to be on guard duty, powder around like snow. Explosion. Another one comes, says "rise my son," and he gets up and walks away. + +She says to use the broom to get to Dotharl. Wall looks like a stone door with the knob at the top. It rotates but doesn't open. It rotates to match Geldrin's. + +## Page 261 + +Morgana comes back. Door is open. Room with three plinths: +- Playing cards. +- Bowl. +- Dice. + +Rolls the dice. Draws top card: ace of spades. Draws all the cards and they draw in order. Shuffles and deals six piles of eight cards. Plays magic poker. + +Figure out what we need to do, close with what we are doing, play a hand and win? + +Morgana manages to trick-deal a good hand. + +Twenty cricket/raven gold coins appear. Tries the gruel; it tastes bad. Rolls the dice. + +Geldrin disappears to a "chess board" square, 20 squares aside. Rolls again. Dirk goes to Geldrin on the other side of the board. Light in the middle of the board. Rolls again separately. Another light on the board. + +Morgana leaves the room with the gruel and throws it off the side of the platform. Cedric catches it and eats it; tastes like ambrosia. + +She will see us and won't tell us how to get there. + +Geldrin and Dirk: orbs, [unclear: geesie?], and scythe. Stop when pushed together. Floor disappears and they land with Invar and Elliana. + +## Page 262 + +Medinner tells Dotharl we need to go soon. Takes a step off the edge. + +Orb is a present from Bridget. Need to keep it with us until we don't. + +Cedric and Medinner are Bridget's closest followers and can speak more freely and directly than Bridget. Bridget needs a favour. + +Remember she gave us a present as we are about to feel angry. + +Remember how we honoured her. It is important. + +We appear back where we started with a door behind us. Open the door: darker sky, no platform. Feels like a bouncy castle when walking out to it. Walk down towards the clouds underneath. + +Realise we can move how we want to. Invar and Dotharl speed towards the storm. Dirk decides to move to where we need to. Elliana goes to Dirk. Geldrin goes to Invar and Dotharl. + +Dotharl hears a voice in his head: "You abandoned us and left us behind. These mortals are inferior and he can set Dotharl free if Dotharl asks for him to be set free." + +Dirk imagines a cloud tent house and Bridget on a throne, which merges to other imaginations. She will take gold Valententhide, smash the orb, and release her to Bridget. + +## Page 263 + +Bridget wishes to be honoured a second time. Gods agreed not to interfere unless asked, but some of our kin interfered a lot. + +Her kin is currently trapped and wishes him to be freed. Dotharl's granddad? Part of Dotharl is Bridget. The part of him being free: his dad is trapped, granddad is lost, Squeall. + +She likes freedom and trickery. Her husband likes lucky fortune, weather, change, and loss. Whatever her followers need she can get, within reason. + +Questions: +- Trapped in Snowsoreen, order city? +- Trapped in the dome, order from all the chaos outside the dome? + +Many paths we will take. Nothing is written in stone. But the freedom we chose to be constrained to the walk way could have just walked off. Fear of the unknown. + +Choice to make: me, keep the identity now, or the one I once had. + +Dotharl: keep humanity or not and rejoin Bridget's realm. + +Geldrin: power offered, maybe too much to resist. Lots we don't know about Browning's. May all seem evil but who decides? He may need to go see his people. + +Invar: man of faith but only just learning it, needs to give him a crystal, the one Geldrin lost. Use it if we go back to his city. + +Dirk: on the path to free his people. More steps are needed and will need friends to help. How many depends on him. The spirits are not the only help. Don't forget the fishing expedition. + +Morgana: choice to help us, cost for the aid given us is great. Those who seek to train her come at great cost to her. diff --git a/data/4-days-cleaned/day-48.md b/data/4-days-cleaned/day-48.md new file mode 100644 index 0000000..7076b40 --- /dev/null +++ b/data/4-days-cleaned/day-48.md @@ -0,0 +1,111 @@ +--- +day: day-48 +date: unknown +source_pages: + - 245 + - 246 + - 247 + - 248 + - 249 + - 250 + - 251 + - 252 + - 253 + - 254 + - 255 + - 256 + - 257 +complete: true +--- + +# Narrative + +Day 48 began after the party closed the fire elemental rift in Harthall's lab. Bynx grew up again and wanted to go to Gardoil and Dirk's father. Errol was sent with a message to Dirk's father. While the party discussed the narrator being a Harthall, Bynx said the narrator was not always green and sometimes reminded him of his sister and Platinum. The party considered or named a deal with a god: wiping the narrator from memories in the same way Enis's wife Hannah had been erased. + +Errol returned and reported that things were bad after a battle. Gardoil was not present because she had gone to do something, and reinforcements were needed from the capital. The party tried to travel by broom to Azureside and found themselves in a place of completely blue sky, passages, vanishing doors, lush grass, mushrooms, and sky below. A squirrel spoke with them, did not know where it was, and said a floppy bronze-coloured lizard looked after him. The squirrel sent a magpie to fetch it. A metallic brass-looking dragon approached. + +The notes then connect to Courtwood's "Musing" from four days earlier, when Worn was killed, Errol was fixed, and Bynx joined the party. Dragons were attacking farther waterwise. The Dunners claimed the party were favoured of Atlabre and that the child prophesied a return. Dirk Sr wanted the party to kill a dragon. Scouts had found entrances to a cave network, some of which were poisoned; enemies were invisible, and the scouts did not know about a manticore. Dirk Sr told Dirk to see his sister Ingris. Bynx was fractured and unhappy as the goliaths' sphynx. Dotharl saw invisible watchers around the perimeter. + +Scout reports listed four entrances. The main cliff entrance was nine miles away and guarded by about one hundred humans, dragonborn, and Duhg guards. Other patrol entrances lay under a shrub, behind a rock, behind a poison door, and in the ground, about one mile apart. Many traps had been placed, and the enemy had a movable poison weapon. The party recovered a poison weapon that felt familiar. Its poison seemed to have an alchemical base, breath-weapon qualities, poisonous herbs, and scorpion venom. Normal healing could heal the wound, but the wound would not close. + +The party visited the Dunners and received substantial respect. Elders came out, including an older one and a knower of flesh, acting on the word of Benu. They said there was a plan for the party. Texts now uncovered showed prophecy, and because of Benu's convalescence they knew he would return but needed to pay for his misdeeds. They had heard of their old protector made flesh anew, Garadwal. He had been good and had wanted to protect people, but they were unsure whether they should accept him back as their protector. The goliaths proved strong-minded. The merfolk had retreated to the sea. Suppressed memories horrified them, although they had spoken highly of the party. The party considered options: diplomacy, attack, sneaking, or leaving. + +Dirk asked his ancestors whether diplomacy could work. They indicated help could be gained, but the price would be high. The party told the council they would try diplomacy and advised them to give Verdigrim trade terms. The council disliked the plan but listened. At the dragonborn base, one dragonborn saw the party, followed briefly, then disappeared toward a hidden entrance. Many more surrounded the party. Three dragonborn approached: a burly mean-looking woman, a small old man, and a burly one. They said the narrator bore the shine of stepmother and that Verdigrim had ordered them to speak. The burly envoy was Grimescale, envoy of mighty Verdigrim; the old man was Gravltooth. + +Grimescale and Gravltooth said their lands had been theirs for one thousand years and were no longer theirs. Ashkielion now belonged to the goliaths, while a closed place held other lands to be retrieved. The party requested safe passage to Verdigrim. They were taken through tunnels to a Dunner-style throne room made of very dark stone with copper accents. Verdigrim appeared as a man with very dark skin and copper accents. He admitted he had invited the party earlier because Perodita had told him to kill them in exchange for leaving his people alone. + +Verdigrim wanted to keep his own "Verdigrimtown" and wanted what was already his. Five white raiding forces outside the town could be revisited later. The notes mention a gold amount roughly equivalent to one sibling's hoard. Verdigrim warned that he would not lend forces in a way that put himself at risk. The party told him his mother was still alive, and he wanted to meet her. The party returned to camp at 14:00, requested the council, and was admitted to the tent at 16:00. They explained the trade agreement. The goliaths leaned toward accepting, moving to Ashkielion, and taking the rest of the town. + +When the party returned to their tent, Wrath was waiting, smartly dressed and holding Rubyeye. Wrath said Rubyeye needed rescuing; Cardinal had gone but been useless. The narrator stated they were called Elliana Harthall because that was apparently their mother's name, though one of their mothers was and one was not. Ingus was told to inform the council where the party was going. + +Wrath took the party to a huge underground dwarven city. A lava ball held a humongous elemental lava orb, possibly a prisoner. A dwarf king prayed to the gods to keep the orbs safe. A female dwarf with a massive ruby in her chest plate was present, and the notes question whether Garadwal's body had a new owner. Earth elementals were present. The female dwarf was Spindl, Rubyeye's auntie; she had seen the party before and knew they were coming. The party said "Garadwal" had called them and they had come to help him. + +Invar made an offering to the lava orb. He opened a box containing a tiny creature, which leapt to the lava orb and told him to aid his friends. The party saw cells and a dark-skinned man crawling across sand and begging for help. They saw Grand Towers elves leaving defeated and in pride, and the fall of two empires. Pride teleported away. Wrath became angry because the party had not killed Pride. The dwarf High Priest wanted to arrest Wrath for existing. Rubyeye was present and was arrested for ancient crimes after the council deemed him a wanted criminal and summoned him. Wrath had been advocating for Rubyeye and had brought Pride while claiming the party caused events. + +Spindl led the party to Rubyeye, who was imprisoned in a dome. His charges included 174,312 herfolk babies murdered, entrapment of elemental spirits, construction of tower, and downfall of ancient race. Cardinal was not seen. Rubyeye said Enis had a body stored somewhere, perhaps Goalmost Falls. He remembered Hannah and that there were six elemental forces, six arms on the exhausted, and that there had been six of them all along. The party asked Spindl to call an audience with the judges, then decided to kill Pride. Geldrin scried Pride in a veined stone building with rows of flat red and blue stained glass. + +The party broke Rubyeye out and teleported to Salanar's prison. A black dragonborn or extremely dark-skinned humanoid named Umberous greeted them and locked them in. He spoke on his father's behalf and said nothing the party had done had caused his father's ire, because they had done what they were asked and kept the dome up. He gave Geldrin a pouch of white powder to recover spell slots. A vision of Grand Towers showed a proud, calloused-cheeked elf with sunken eyes who looked as if he had given up. Umberous said his father wanted to meet and had a gift that would help. + +Umberous had been tasked with looking after the seaside of the world. The party killed Pride, but a void elemental was released, absorbed his brother, and teleported away; it may also have absorbed Pride. Umberous wanted the party to meet his father. Wrath wanted them to kill his sister and take Rubyeye with him. Geldrin admitted Rubyeye was with the party, so Umberous wanted Rubyeye delivered to Infestus. He agreed not to tell Infestus about Rubyeye if the party agreed to do him a favour and gave them a Sending Stone to contact him. + +The party threw slurry, bones, and metal through the Barrier. The slurry and similar material were destroyed, but copper glided through; the party used the Skull of Iresmun to retrieve it. Rubyeye tried to teleport them back to the dwarven city. First they appeared on a snowy mountain beside a great stone fort in the sky with no way down. He tried again and put them in a scared-feeling dwarven stone room. Rubyeye recognised it as a prison, perhaps Throngore's, under Lewshis and Aneurascarle. At 21:00 his eyes glowed red and he disappeared. + +The party investigated the prison. A door rune read "Empty." Corridors were lined with heavily armoured dwarf statues. Plaques named Ugarth Thunderfut, slain by the demon Samuel; Borbor Thunderfut, who saw Samuel slain by the demon Struct; and Lhura Trutbrow, slain by Struct but bound in chain upon him. The story involved thirty dwarves from two clans capturing Throngore. A thirty-foot circular room held six more dwarves who had bound the creature there. One statue should have held a crystal or diamond-type gem, but the gem was missing. A dark corridor led to a chamber of thirty dwarf sarcophagi. The room stank of decay, and the bodies had been decapitated around twenty years earlier, despite sarcophagus inscriptions saying the thirty dwarves had lived in the corridor and all died on the same date 1,050 years ago. Their armour and weapons were present as heirlooms and had been covered with goat urine. + +The party tried to match armour to statues and found fine glass dust in stone cracks, suggesting a diamond resurrection spell or similar. Stoven and Stuart had both been imprisoned twenty years earlier and only recently released by the party and another group. A narrowing dark corridor led to a handleless door with a panel. Beyond it was a prison dome containing a featureless humanoid figure, uncertainly noted as Aglue?, Anemie?, or Valententhide. Pylon runes explained the pylons and mentioned a key or "wheel" to open it. A third door had magical infernal-like writing on the doorknob, reminiscent of Enis's lab. When Dothral tried to open it, he heard, "Come on, boy, we haven't got all day." Inside were five living dwarves with no hands or feet, their eyes and lips sewn shut. They wanted only to be killed. A crystal gave the narrator a faint memory of medical school and playing with a sister by the river in Provista, where she looked different and called the narrator silly poo-poo head. + +When the party took the crystal to the dwarves, they smiled and passed happily into the afterlife. As the party moved past, Invar's bag of holding opened by itself so something inside could emerge: an Orb of Compassion. The headmaster's office at the magic school had held a note reading "mines beneath the real." The party became overwhelmed with compassion and dropped the orb and crystal. Geldrin found a loose stone hiding a small eye-sized ruby with a spell similar to Knock. + +Geldrin used the Skull of Iresmun to open the dome slightly. The figure turned toward the hole. It said it was no one, lost, once part of Valententhide, and unsure what it was now. Thomas had put it in the dome and taken what had been there. It explained that the elemental planes were a highway, that a pact had made the world but left too much highway, and that the Vessel of Divinity had made beings into gods, stripping some of that away and leaving lostness behind. It said it could not be allowed to keep the vessel, wanted to help, did not think deception would help, and would answer three questions. + +The party asked what would happen if Valententhide were reformed and why everyone thought Elliana was a Harthall. Morgana heard a voice saying the vessel was theirs. Dirk saw Joy, who warned not to trust the figure because it took her mum. A dwarf voice warned that the party's tormentors were coming. Dothral had a vision of his grandfather saying the figure would take his place and telling Geldrin to remove the skull from the dome, then saying "They are all lost" in a voice that was not his. Dirk asked the ancestors what would happen if they let her out and received a positive response. + +The room darkened when Invar said "original." Darkness closed in, stars appeared, and Morgana's Daylight revealed clouds and sunrise at the edge of the spell. A shadowy figure appeared on the far wall. The party opened the dome and let her out. When asked why everyone thought the narrator was a Harthall, she answered, "Because you are." Stoven, Stuart, and Simon arrived, shouting about their stuff being disturbed. Simon was strangely pieced together. They disliked Valententhide and wanted her, but the party refused and argued that their bargain to find Rubyeye had not been fulfilled. Simon communicated with Throngore, who was happy to meet the party and would see them soon. Morgana teleported the party to `[coded]`, a wood with bees, apples, and snow, with a teleport circle made of furs, rugs, and bird poo. Geldrin felt as if he had made it, though not as he would make it; Morgana thought she had placed the memory there but not from her current self. The party went to Morgana's hut at 00:00. Page 257 then starts Day 52, so Day 48 is complete at that point. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Bynx, Gardoil, Dirk, Dirk Sr, Errol, Platinum, Enis, Hannah, Courtwood, Worn, Dotharl / Dothral, Ingris, Benu, Garadwal, Verdigrim, Grimescale, Gravltooth, Perodita, Wrath, Rubyeye, Cardinal, Elliana Harthall, Ingus, Spindl, Pride, the dwarf High Priest, Enis, Goalmost Falls? by place-name usage, Geldrin, Salanar, Umberous, Infestus, Throngore, Lewshis, Aneurascarle, Ugarth Thunderfut, Borbor Thunderfut, Lhura Trutbrow, Samuel, Struct, Stoven, Stuart, Aglue?, Anemie?, Valententhide, Provista sister / silly poo-poo head, Thomas, Joy, Simon, and Morgana. + +Groups and factions mentioned include the party, Dunners, goliaths, merfolk, dragonborn, Duhg guards, Verdigrim's people, Verdigrimtown, Ashkielion's goliath claimants, the council in camp, dwarves, the dwarf council, herfolk babies, elemental spirits, ancient race, Grand Towers elves, black dragonborn or Umberous's faction, Infestus's side, two dwarf clans, thirty dwarves who captured Throngore, handless and footless preserved dwarves, gods, elemental-plane powers, tormentors, and another party that helped release prisoners. + +Places mentioned include Azureside, blue-sky passageways, the capital, cave-network entrances, the main cliff entrance, hidden patrol entrances under shrub / behind rock / poison door / ground, the Dunners' camp, Ashkielion, Verdigrimtown, the dragonborn tunnels and Dunner-style throne room, the goliath council tent, the huge underground dwarven city, the lava-orb chamber, Grand Towers, Salanar's prison, the seaside of the world, the Barrier, snowy mountain and great stone sky fort, the scared dwarven prison room, Throngore's possible prison under Lewshis and Aneurascarle, the circular dwarf statue chamber, the thirty-dwarf sarcophagus chamber, Enis's lab, medical school, Provista, the magic school headmaster's office, elemental planes as highway, Morgana's `[coded]` teleport circle, and Morgana's hut. + +Creatures and creature-like beings mentioned include a squirrel, magpie, floppy bronze lizard, metallic brass dragon, manticore, invisible enemies, white raiding forces, earth elementals, tiny creature from Invar's box, lava elemental orb or prisoner, void elemental, black dragonborn / Umberous, featureless dome figure / lost part of Valententhide, gods, shadowy figure, and preserved mutilated dwarves. + +# Items, Rewards, and Resources + +Items, documents, and physical resources mentioned include Errol's message, broom, movable poison weapon, poison with alchemical base / breath-weapon qualities / herbs / scorpion venom, uncovered prophecy texts, Verdigrim trade terms, sibling-hoard payment, Rubyeye's prison dome, elemental lava orb, Spindl's ruby chest plate, Invar's offering box, Geldrin's scrying target, Umberous's pouch of white powder, Sending Stone from Umberous, slurry / bones / metal, copper retrieved through the Barrier, Skull of Iresmun, dwarf armour and weapons / heirlooms, goat urine, fine glass dust, missing crystal or diamond-type gem, pylon runes, key / wheel to open the dome, infernal-like doorknob runes, memory crystal, Invar's bag of holding, Orb of Compassion, note reading "mines beneath the real," small eye-sized ruby with Knock-like spell, Vessel of Divinity, Morgana's Daylight spell, and the teleport circle of furs, rugs, and bird poo. + +Strategic resources and plans mentioned include reinforcements from the capital, scout maps of cave entrances, diplomacy with Verdigrim, possible trade or movement to Ashkielion, five white raiding forces, Verdigrim's possible meeting with his mother, rescue of Rubyeye, plan to kill Pride, Umberous's bargain to conceal Rubyeye from Infestus in exchange for a favour, Simon's unresolved bargain about finding Rubyeye, and Throngore's promised meeting. + +# Clues, Mysteries, and Open Threads + +Bynx's statements that the narrator was not always green and sometimes reminds him of his sister and Platinum continue the unresolved identity, jade, and sphynx-family threads. + +The possible god-deal to wipe the narrator from memory like Hannah was wiped remains unresolved, as does whether the same mechanism connects Enis, Joy, Hannah, and the narrator's Harthall identity. + +The Dunners' uncovered texts, Benu's convalescence, the prophecy of the child's return, and the question of accepting Garadwal as old protector made flesh anew remain active political and religious threads. + +Verdigrim's bargain, his claim to Verdigrimtown, the status of Ashkielion, the five white raiding forces, and his desire to meet his mother remain unresolved diplomatic leverage. + +Rubyeye's ancient charges, including 174,312 herfolk babies murdered, elemental spirit entrapment, tower construction, and ancient-race downfall, remain unverified but central to his status. + +Rubyeye's memory that there were six elemental forces all along, and six arms on the exhausted, reframes previous elemental-prison and dome clues. + +Umberous's father, the requested meeting, the promised gift, and the favour owed in exchange for hiding Rubyeye from Infestus remain open obligations. + +The void elemental released by killing Pride absorbed its brother, may have absorbed Pride, and escaped; its current state and danger are unknown. + +Throngore's possible prison beneath Lewshis and Aneurascarle, the thirty dwarves, the missing crystal, Samuel, Struct, and the glass-dust / diamond-resurrection clue remain unresolved. + +The featureless dome figure, uncertainly Aglue? / Anemie? / Valententhide, claimed to be a lost part of Valententhide placed there by Thomas after he took what was there. Its true identity and Thomas's role remain unresolved. + +The Vessel of Divinity, elemental planes as highway, pacts that created the world, lostness stripped from gods, and the figure's warning that it cannot be allowed to keep the vessel are major cosmology clues. + +Joy's warning that the figure took her mum conflicts with the ancestors' positive response to freeing it. The consequence of freeing this lost part of Valententhide remains uncertain. + +The answer "Because you are" to why everyone thinks the narrator is a Harthall is a direct but unexplained identity confirmation. + +Simon, Stoven, and Stuart still want Valententhide. Simon communicated with Throngore, who promised to meet the party soon. + +Morgana's `[coded]` teleport circle and the uncertain memories of Geldrin and Morgana suggest memory manipulation or alternate-self involvement. diff --git a/data/4-days-cleaned/day-52.md b/data/4-days-cleaned/day-52.md new file mode 100644 index 0000000..cd49c50 --- /dev/null +++ b/data/4-days-cleaned/day-52.md @@ -0,0 +1,85 @@ +--- +day: day-52 +date: unknown +source_pages: + - 257 + - 258 + - 259 + - 260 + - 261 + - 262 + - 263 +complete: true +--- + +# Narrative + +Day 52 began at Stonedown. Dothral wanted to know more about his father and thought the answer might be Aneurascarle, making Dothral an Excellency, with Squeall, god of the lost, as his grandfather. A memory showed dragons talking about a beehive being poked and why the dome had been created. Questions arose about the narrator fully regaining memories of being a Harthall. Recovering what was lost would not be easy, because the memories aligned with broader memories tied to the pact with the god of the lost. Dothral saw snippets of the narrator's true form and the need to do something with the J. + +The notes state that a price was paid by dragonkind, and it was not taken well by those who remained and still had power. Payment was not asked for because the party had not given her to the goats. The party asked whether looking at the night sky and feeling serene was part of Valententhide. The answer suggested it was. Reuniting that part with her would not completely change Valententhide, but would soften her edges, making her a goddess of destruction again rather than a being who mindlessly murdered people on the road. + +The party understood the released or protected piece as a small shard of a powerful creature. They asked whether destroying the dome would cancel all pacts. The answer was yes: the pacts were linked to the dome, and if the dome ceased, the pacts would cease. Removing the dome would also release all of the prisons. Geldrin tried to show the shard her sister Bridget by communing with Bridget and opening a pathway to her domain. The party decided they needed to protect the shard, because Valententhide might be able to get her. They discussed an oath of holding elemental and dome energy, and promised to release her regardless. + +The party entered the pathway. The walkway stopped partway and turned left, but each member went a different way: Invar forward, Geldrin right, Dotharl left, Elliana up, Dirk down, and Morgana behind. After ten minutes they lost sight of each other. Wind rose and they struck walls. The walls appeared linked in pairs: Invar with Morgana, Geldrin with Dotharl, and Dirk with Elliana. + +A Knock revealed a line, and a door opened. A cricket-headed humanoid appeared, said they were busy, and asked how long the party wanted to wait. Two minutes was accepted. He also appeared to Dirk and gave the same timing. The notes say, "She is not really yet." The cricket-headed figure gave the party a screwdriver and said he was waiting for Medinner. A bird person was asked to ask Bridget if she was taking visitors. Geldrin placed a red crystal in a divot, then went to Dotharl, where a raven opened the door and said the crystal was for a dwarf. The screwdriver removed a curved blade; it went to Dirk, who found a button where the blade had been. + +Invar's room held cages with a cricket and a raven on plinths and a steaming bowl of gruel on a third. Plaques instructed: "Honour me first" for the cricket, "Honour me second" for the raven, and "for a song" for the bowl. Dotharl met a raven-headed lady, who told him to go away and said there was always a choice. Geldrin asked about Bridget; the answer was that this person did not know where Bridget was or how to get to her, but her friend did. + +Invar tried to feed the raven gruel, but the raven did not want it. He opened the cricket cage, and the cricket jumped onto the bowl and began eating. The raven then became interested. The cricket sang, a door handle clicked behind Invar, and Invar opened the bird cage. The raven flew out to eat the cricket, another door clicked, and Invar opened it. The cricket came through and was named Cedric. Morgana needed a way back; the party asked Cedric to ask Bridget to make a door for Morgana, and Bridget did. + +Geldrin asked Medinner for a door, but Medinner said she could not because her show was on. Geldrin asked to see the show, and she let him in. Three silver dragonborn on a screen reenacted Elliana realising Avalina was her mum and putting her in the ground. A woman covered in roots appeared. A robot man or copper dragonborn in plates pretended to be on guard duty, with powder around like snow. After an explosion, another figure came and said, "rise my son," and the robot man got up and walked away. Medinner said to use the broom to get to Dotharl. A wall looked like a stone door with the knob at the top; it rotated but did not open, and rotated to match Geldrin's. + +Morgana returned through the door. Another room held plinths with playing cards, a bowl, and dice. The party rolled dice, drew cards in order, shuffled and dealt six piles of eight cards, and played magic poker. Morgana trick-dealt a good hand. Twenty cricket/raven gold coins appeared. The gruel tasted bad. Further dice rolls moved Geldrin to a chessboard square twenty squares aside, then Dirk to the far side, with lights appearing on the board. Morgana threw gruel off the platform; Cedric caught and ate it like ambrosia. Bridget would see the party but would not tell them how to get there. Geldrin and Dirk dealt with orbs, `[unclear: geesie?]`, and a scythe. When the objects were pushed together, the floor disappeared and they landed with Invar and Elliana. + +Medinner told Dotharl the party needed to go soon and stepped off the edge. An orb was a present from Bridget and needed to be kept until they did not need it. Cedric and Medinner were Bridget's closest followers and could speak more freely and directly than Bridget. Bridget needed a favour. The party was told to remember that Bridget had given them a present when they were about to feel angry, and to remember how they had honoured her. + +The party appeared back where they had started, with a door behind them. Beyond it was darker sky and no platform, with a bouncy-castle feeling underfoot. They realised they could move by intent. Invar and Dotharl sped toward a storm; Dirk decided to move where they needed to go; Elliana went to Dirk; Geldrin went to Invar and Dotharl. Dotharl heard a voice in his head saying he had abandoned them, left them behind, and that mortals were inferior. The voice said he could set Dotharl free if Dotharl asked him to be set free. + +Dirk imagined a cloud tent house and Bridget on a throne, and the images merged with other imaginations. Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. Bridget wished to be honoured a second time. She said the gods had agreed not to interfere unless asked, but some kin had interfered greatly. Her kin was trapped and wished to be freed, perhaps Dotharl's granddad. Part of Dotharl was Bridget. The notes separate Dotharl's dad being trapped, his granddad being lost, and Squeall. Bridget liked freedom and trickery. Her husband liked lucky fortune, weather, change, and loss. Whatever her followers needed, she could get within reason. + +The party's questions included whether the trapped being was in Snowsoreen, the order city, or trapped in the dome as order from all the chaos outside it. Bridget said there were many paths and nothing was written in stone. The party had chosen to be constrained to the walkway, though they could have walked off, because of fear of the unknown. Bridget named choices for each party member. The narrator could keep the identity they had now or the one they once had. Dotharl could keep his humanity or rejoin Bridget's realm. Geldrin was offered power, perhaps too much to resist, and was told there was much unknown about Brownings and that he may need to see his people. Invar, a man of faith who was only beginning to learn it, needed to give him a crystal, the one Geldrin lost, and use it if they returned to his city. Dirk was on the path to free his people; more steps and friends would be needed, not only spirits, and he should not forget the fishing expedition. Morgana's choice to help the party carried great cost, and those who sought to train her also came at great cost. + +Page 263 then starts Day 53, so Day 52 is complete before the party goes onward to the Bridget / Domain events that follow. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Dothral / Dotharl, Dothral's father, Aneurascarle, Squeall, Valententhide, Bridget, Geldrin, Invar, Elliana, Dirk, Morgana, Medinner, Cedric, Avalina, Dotharl's granddad, Bridget's husband, Brownings, and the narrator's former and current identities. + +Groups and factions mentioned include the party, dragons, dragonkind, goats, gods, Bridget's kin, Bridget's followers, silver dragonborn in Medinner's show, mortals, Brownings, Dirk's spirits and people, and those who seek to train Morgana. + +Places mentioned include Stonedown, the dome, the night sky, the prisons, the elemental planes by implication from the shard's protection, Bridget's domain, the pathway and linked wall rooms, Invar's cricket/raven/gruel room, Dotharl's raven-headed lady room, Medinner's show space, the chessboard space, the darker-sky realm, the storm, the imagined cloud tent / throne, Snowsoreen, the order city, Dotharl's or Invar's city by instruction, and Dirk's future fishing expedition. + +Creatures and creature-like beings mentioned include Valententhide as goddess or powerful being, the small shard of a powerful creature, cricket-headed humanoid / Cedric, bird person, raven, cricket, raven-headed lady, Medinner, silver dragonborn performers, woman covered in roots, robot man / copper dragonborn in plates, Bridget, Bridget's trapped kin, and the voice trying to tempt Dotharl. + +# Items, Rewards, and Resources + +Items, documents, and physical resources mentioned include the dome, pacts linked to the dome, prisons linked to the dome, broom, oath or holding-elemental protection, dome energy, pathway to Bridget, screwdriver, red crystal and divot, curved blade, button, cricket cage, raven cage, steaming bowl of gruel, playing cards, bowl, dice, magic poker setup, twenty cricket/raven gold coins, chessboard lights, orbs, `[unclear: geesie?]`, scythe, orb present from Bridget, gold Valententhide, the crystal Geldrin lost, and the fishing expedition reminder. + +Spells, visions, and magical effects mentioned include memory retrieval about being Harthall, true-form snippets, opening a pathway to Bridget's domain, Knock, magically linked rooms / walls, Bridget making a door for Morgana, Medinner's reenactment show, movement by intent in Bridget's realm, telepathic or intrusive voice to Dotharl, Bridget's ability to take and smash the orb, and divinely framed choices for party members. + +Strategic resources and plans mentioned include the implication that destroying the dome would cancel all pacts and release all prisons, the plan to protect and ultimately release the shard, Bridget's offer to take gold Valententhide, the trapped kin's requested freedom, Dotharl's humanity choice, the narrator's identity choice, Geldrin's possible Browning-related power and people, Invar's future crystal obligation, Dirk's route to freeing his people, and Morgana's costly aid and training thread. + +# Clues, Mysteries, and Open Threads + +Dothral's possible father Aneurascarle, his status as an Excellency, and Squeall as god of the lost / grandfather remain unresolved family and divinity clues. + +The pact with the god of the lost appears tied to the narrator's lost Harthall memories and true form. The J mentioned in Dothral's snippets remains unexplained. + +Dragonkind paid a price for the dome or related pact, and the remaining dragons still have power. The exact price and consequences remain unresolved. + +The serene night-sky part of Valententhide can soften her into a goddess of destruction rather than a mindless road-murdering force, but what full reunification would cause remains uncertain. + +Destroying the dome would cancel pacts and release all prisons, creating a direct strategic conflict between freeing prisoners and maintaining existing world-order bargains. + +Bridget's domain tests appear to reward honouring her, but the rules of Cedric, Medinner, the raven, gruel, cards, dice, chessboard, orbs, `[unclear: geesie?]`, and scythe remain only partly understood. + +Medinner's show reenacted Elliana, Avalina, a burial, a rooted woman, and a robot or copper dragonborn being raised after an explosion. The meaning and reliability of this reenactment remain open. + +The voice to Dotharl that disparaged mortals and offered freedom if asked may be Bridget's trapped kin, Dotharl's father, or another bound entity; its identity and trustworthiness remain unresolved. + +Bridget's kin wishes to be freed, while part of Dotharl is Bridget and his father is trapped / granddad lost. Dotharl's choice between humanity and rejoining Bridget's realm remains future-facing. + +The narrator must choose between the current identity and the one they once had. This directly continues the Elliana Harthall identity thread. + +Geldrin's offered power, the Brownings, Invar's crystal task, Dirk's path to free his people, and Morgana's costly aid all remain active personal quest hooks. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 1093157..ead1136 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -41,6 +41,7 @@ sources: - [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. - [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent], Brotor / Brutor [context: void gift and Brotor's eye uncertain]. +- [Verdigrim](people/verdigrim.md): Verdigrim, Verdugrim, Verdigrimtown ruler. - [Edward Browning](people/edward-browning.md): Edward Browning, Browning, Everard Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. - [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, The Mage, Visage Envoi. @@ -80,6 +81,7 @@ sources: - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scrambleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Barrett, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. - [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridge Statue, Statue of Bridge, Hazy Days. - [Bridget's Doors](concepts/bridgets-doors.md): Bridget, Bridge, Bridget / Bridge, Bridge Statue, Statue of Bridge, Bridget's door travel. +- [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md): Grimescale, Gravltooth, Umberous, Spindl, Cedric, Medinner, Squeall / Squeal, Aglue?, Anemie?. - [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. diff --git a/data/6-wiki/clues/days-48-52-coverage-audit.md b/data/6-wiki/clues/days-48-52-coverage-audit.md new file mode 100644 index 0000000..1780c75 --- /dev/null +++ b/data/6-wiki/clues/days-48-52-coverage-audit.md @@ -0,0 +1,29 @@ +--- +title: Days 48 and 52 Coverage Audit +type: coverage-audit +sources: + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md +--- + +# Days 48 and 52 Coverage Audit + +This audit accounts for the people, places, factions, items, clues, and open threads extracted from the cleaned Day 48 and Day 52 mention sections. + +| Subject | Outcome | +| --- | --- | +| Verdigrim / Verdugrim, Grimescale, Gravltooth, Verdigrimtown, Ashkielion diplomacy | Standalone [Verdigrim](../people/verdigrim.md); linked rollups for minor envoys and places. | +| Rubyeye, Wrath, Spindl, ancient charges, underground dwarven city, missing body / Goalmost Falls? | Existing [Brutor Ruby Eye](../people/brutor-ruby-eye.md) updated; Spindl and places in rollups. | +| Peridita ordering Verdigrim to kill party | Existing [Peridita](../people/peridita.md) updated. | +| Umberous, Salanar's prison, Sending Stone, favour owed, Infestus secrecy | Rollups [Minor Figures](../people/minor-figures-days-48-52.md), [Minor Places](../places/minor-places-days-48-52.md), [Minor Items](../items/minor-items-days-48-52.md), and [Open Threads](../open-threads.md). | +| Void elemental released by killing Pride | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; open thread added. | +| Throngore prison clues, Thunderfut / Trutbrow plaques, Samuel, Struct, thirty dwarves, missing crystal | Rollups and [Elemental Prisons](../concepts/elemental-prisons.md); open thread added. | +| Featureless figure / Aglue? / Anemie? / lost part of Valententhide, Thomas, Vessel of Divinity | Existing [Valententhide](../people/valententhide.md), [Elemental Prisons](../concepts/elemental-prisons.md), and [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) updated; rollups preserve variants. | +| Joy warning, Hannah-style erasure, narrator Harthall identity confirmation | Existing [Valententhide](../people/valententhide.md) and [Open Threads](../open-threads.md); Day 48 cleaned narrative preserves details. | +| Simon, Stoven, Stuart, Morgana's `[coded]` circle | Rollups and open thread. | +| Benu prophecy, Dunners, Garadwal old protector made flesh anew | Cleaned narrative, rollups, [Open Threads](../open-threads.md); existing [Garadwal](../people/garadwal.md) already tracks related protector identity. | +| Dothral / Aneurascarle / Squeall family and god-of-lost pact | [Minor Figures](../people/minor-figures-days-48-52.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and open thread. | +| Bridget, Bridget's domain, Cedric, Medinner, raven-headed lady, Bridget's husband, honouring puzzles | Existing [Bridget's Doors](../concepts/bridgets-doors.md) updated; figures, places, and items rollups added. | +| Dome destruction cancels pacts and releases all prisons | [Elemental Prisons](../concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), and [Open Threads](../open-threads.md). | +| Day 52 personal choices for narrator, Dotharl, Geldrin, Invar, Dirk, Morgana | Cleaned narrative and open threads; item rollup preserves crystal and fishing expedition hooks. | +| Day 53 material from page 263 onward | Intentionally deferred until a later page confirms Day 54; no raw or cleaned Day 53 file should exist yet. | diff --git a/data/6-wiki/concepts/bridgets-doors.md b/data/6-wiki/concepts/bridgets-doors.md index 6989928..82c3616 100644 --- a/data/6-wiki/concepts/bridgets-doors.md +++ b/data/6-wiki/concepts/bridgets-doors.md @@ -8,9 +8,10 @@ aliases: - Bridge Statue - Bridget's door travel first_seen: day-36 -last_updated: day-36 +last_updated: day-52 sources: - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-52.md --- # Bridget's Doors @@ -25,14 +26,23 @@ Bridget is connected to freedom, luck, gargoyles, trickery, sacred doors, and do - Bellburn goliaths treated doors as sacred to Bridget and believed Bridget freed them from Envy by sending the party from the dome. - A Grand Towers penny placed on Bridget's statue made her eyes glow green, then red, and sent Dirk to Seaward and apparently back to yesterday. - Geldrin's two pennies made Bridget's eyes glow green and yellow, sending the group through a blue-and-white palace-like reception room outside the dome before a later door route returned them to Brookville Springs. +- On Day 52, Geldrin opened a pathway to Bridget's domain so a shard or night-sky part of Valententhide could reach Bridget. +- Bridget's domain used linked rooms, walls, direction choices, honouring puzzles, cards, dice, chessboard movement, and movement by intent. +- Bridget's closest followers, Cedric and Medinner, could speak more freely and directly than Bridget. They warned the party to remember Bridget's present and how they honoured her before anger. +- Bridget wished to be honoured a second time, liked freedom and trickery, and said some kin had interfered despite gods agreeing not to interfere unless asked. +- Bridget said her trapped kin wanted freedom; the notes connect this to Dotharl's dad being trapped, his granddad being lost, and Squeall. ## Related Entries - [Brookville Springs](../places/brookville-springs.md) - [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) +- [Minor Figures from Days 48 and 52](../people/minor-figures-days-48-52.md) +- [Minor Places from Days 48 and 52](../places/minor-places-days-48-52.md) ## Open Questions - What do Bridget's green, red, and yellow eye-glows mean? - Do Grand Towers pennies control destination, time displacement, cost, or risk? - Can Bridget's doors reliably enter or leave the dome? +- What exact rules govern Bridget's domain, honouring, gifts, anger, and movement by intent? +- Who is Bridget's trapped kin, and what does freeing him mean for Dotharl? diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 068f1ce..208bfef 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -7,7 +7,7 @@ aliases: - barrier batteries - elemental batteries first_seen: day-14 -last_updated: day-47 +last_updated: day-52 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -22,6 +22,8 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md --- # Elemental Prisons @@ -54,6 +56,10 @@ The elemental prisons are ancient containment systems that may hold or exploit p - The frost prison contained lightning and snowflake doors, handleless doors, black sap or rubber seals, a semicircular oracle room, an iced snake door, and prisoners or door heads named Dorion, Tim, and Geoffrey. - One dark door led to an ancient dwarven hold containing a massive shaggy blue aurora; Geldrin promised to return once the dome could be powered without exploiting elementals. - Bynx explained that where the pure elemental planes meet, they combine. +- Day 48 added a lava elemental orb / prisoner in an underground dwarven city, Rubyeye's charges of elemental spirit entrapment, and Rubyeye's statement that there were six elemental forces all along. +- Killing Pride released a void elemental that absorbed its brother, teleported away, and may also have absorbed Pride. +- Day 48's dwarven prison included pylon runes, a key or wheel to open a dome, a featureless lost part of Valententhide, and a claim that elemental planes were a highway used in a world-making pact. +- Day 52 says destroying the dome would cancel all pacts and release all prisons. ## Timeline @@ -70,6 +76,8 @@ The elemental prisons are ancient containment systems that may hold or exploit p - `day-43`: Trixus is released, Hephestos's soul status is discussed, and the Riversmeet memory-interference spell is located. - `day-44`: Riversmeet school history reveals old emotional-elimination and automation research connected to later prison and Barrier problems. - `day-47`: The party explores frost-prison structures, negotiates with prisoners and door heads, learns more about dome power dependency, and closes the fire elemental rift. +- `day-48`: Rubyeye is arrested for elemental spirit entrapment, a lava orb / prisoner appears, a void elemental escapes after Pride is killed, and a dwarven prison reveals pylon, dome, and Valententhide-lostness clues. +- `day-52`: Bridget-domain revelations state that the dome anchors pacts and that all prisons release if the dome is removed. ## Related Entries @@ -91,3 +99,6 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Where are Emi's missing soul-parts or emotions, and can Trixus restore them? - Which Day 47 frost-prison beings are prisoners, guards, door mechanisms, or displaced entities? - Can the dome be powered without the elementals, as Geldrin promised? +- What are the six elemental forces Rubyeye remembered? +- What is the escaped void elemental after absorbing its brother and possibly Pride? +- Would releasing all prisons by destroying the dome be liberation, disaster, or both? diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index 637ed8c..a535a44 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -8,12 +8,14 @@ aliases: - Otasha's unborn nerfili baby bargain - Leptrop workaround first_seen: day-36 -last_updated: day-44 +last_updated: day-52 sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md --- # Gods' Bargains Behind the Barrier @@ -34,6 +36,8 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Day 42 Ashkellon offering bowls answered offerings to Bridge, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Altabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Altabre's children. - Day 43 Attabre manifested at the Ashkellon shrine, sought atonement and justice, was angry with Benu, and was connected to Goliaths receiving a protector like Trixus. - Day 44 old-school lore described Bright and Valentenhule as elemental-plane queens, Hannah as a priestess of Attabre, and a baby Attabre spirit intended for the Goliaths as they became Emeraldus's line. +- Day 48 introduced the Vessel of Divinity: a lost part of Valententhide said it made beings into gods, stripped something away, and left lostness behind. +- Day 52 says the pacts are linked to the dome; if the dome ceases, the pacts cease, and all prisons release. ## Related Entries @@ -51,3 +55,5 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Are infertility, barrier sickness, nerfili babies, and inferlite curse all results of these bargains? - What did the Ashkellon offering responses mean by betrayal being at hand and a gift crafted for a friend being the key? - How do Bright, Valentenhule, Bridge, and Attabre fit among the twelve divine terms? +- What exactly is the Vessel of Divinity, and who should or should not hold it? +- Which pacts would fail if the dome fell, and which released prisoners would be threats, victims, or both? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 592c75f..28a2a77 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -35,6 +35,8 @@ sources: - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-46.md - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md --- # Pentacity Campaign Wiki @@ -56,6 +58,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md) - [Day 46 Coverage Audit](clues/day-46-coverage-audit.md) - [Day 47 Coverage Audit](clues/day-47-coverage-audit.md) +- [Days 48 and 52 Coverage Audit](clues/days-48-52-coverage-audit.md) ## People @@ -88,6 +91,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) - [Bynx](people/bynx.md) +- [Verdigrim](people/verdigrim.md) - [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md) - [Lady Thorpe](people/lady-thorpe.md) - [TJ Biggins](people/tj-biggins.md) @@ -95,6 +99,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md) - [Minor Figures from Day 46](people/minor-figures-day-46.md) - [Minor Figures from Day 47](people/minor-figures-day-47.md) +- [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md) ## Places @@ -114,6 +119,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Minor Places from Day 46](places/minor-places-day-46.md) - [Sunsoreen / Snowscreen](places/sunsoreen.md) - [Minor Places from Day 47](places/minor-places-day-47.md) +- [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md) ## Factions @@ -138,6 +144,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Void Spheres](items/void-spheres.md) - [Minor Items from Day 46](items/minor-items-day-46.md) - [Minor Items from Day 47](items/minor-items-day-47.md) +- [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md) ## Concepts and Events diff --git a/data/6-wiki/items/minor-items-days-48-52.md b/data/6-wiki/items/minor-items-days-48-52.md new file mode 100644 index 0000000..c1f561b --- /dev/null +++ b/data/6-wiki/items/minor-items-days-48-52.md @@ -0,0 +1,44 @@ +--- +title: Minor Items from Days 48 and 52 +type: rollup +sources: + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md +--- + +# Minor Items from Days 48 and 52 + +| Item or Resource | Day | Notes | Coverage | +| --- | --- | --- | --- | +| Movable poison weapon | 48 | Familiar poison weapon with alchemical base, breath-weapon qualities, herbs, and scorpion venom; wound healed but would not close. | Rollup. | +| Uncovered prophecy texts | 48 | Dunners connected Benu's convalescence, the child's return, and Garadwal's misdeeds. | Rollup / [Garadwal](../people/garadwal.md). | +| Verdigrim trade terms | 48 | Possible agreement involving Ashkielion, Verdigrimtown, land, payment, and five white raiding forces. | [Verdigrim](../people/verdigrim.md). | +| Lava elemental orb | 48 | Humongous lava orb, possibly prisoner, kept safe by dwarf prayers and Invar's offering. | [Elemental Prisons](../concepts/elemental-prisons.md). | +| Rubyeye charges | 48 | 174,312 herfolk babies murdered, elemental spirit entrapment, tower construction, ancient-race downfall. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | +| Umberous's white powder | 48 | Given to Geldrin to recover spell slots. | Rollup. | +| Umberous Sending Stone | 48 | Communication item tied to favour owed and Rubyeye secrecy from Infestus. | Rollup / open thread. | +| Skull of Iresmun | 48 | Retrieved copper from the Barrier and opened the featureless figure's dome slightly. | Rollup / [Elemental Prisons](../concepts/elemental-prisons.md). | +| Dwarf heirloom armour and weapons | 48 | Belonged to thirty dwarves; found with goat urine, glass dust, and sarcophagus date mismatch. | Rollup. | +| Missing crystal / diamond-type gem | 48 | Absent from one of six binding dwarf statues; possibly tied to resurrection or prison function. | Rollup / open thread. | +| Pylon runes / key / wheel | 48 | Explained pylons and how to open the featureless dome. | [Elemental Prisons](../concepts/elemental-prisons.md). | +| Infernal-like doorknob writing | 48 | Similar to Enis's lab; Dothral heard a grandfather-like prompt. | Rollup. | +| Memory crystal | 48 | Let the narrator remember medical school and a Provista sister calling them silly poo-poo head; released mutilated dwarves to afterlife. | Rollup / open thread. | +| Orb of Compassion | 48 | Emerged from Invar's bag and overwhelmed the party with compassion. | Rollup / open thread. | +| `mines beneath the real` note | 48 | Note from magic school headmaster's office. | Rollup / open thread. | +| Eye-sized ruby with Knock-like spell | 48 | Hidden behind loose stone. | Rollup. | +| Vessel of Divinity | 48 | Said to have made beings into gods and stripped away lostness; the figure warned it could not keep the vessel. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | +| Bridget's screwdriver | 52 | Given by Cedric and used to remove a curved blade. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Red crystal and divot | 52 | Placed by Geldrin; raven said the crystal was for a dwarf. | Rollup. | +| Curved blade and button | 52 | Blade removal revealed a button for Dirk. | Rollup. | +| Cricket/raven gruel | 52 | Honour puzzle object; Cedric later ate gruel like ambrosia. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Cards, dice, and magic poker | 52 | Gambling puzzle produced twenty cricket/raven gold coins. | Rollup. | +| Orbs, `[unclear: geesie?]`, and scythe | 52 | Puzzle items that opened the floor when pushed together. | Rollup. | +| Orb present from Bridget | 52 | To be kept until no longer needed; party warned to remember the gift before anger. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Gold Valententhide | 52 | Bridget would take it, smash the orb, and release her to Bridget. | [Valententhide](../people/valententhide.md). | +| Geldrin's lost crystal | 52 | Invar must give it to someone and use it if they return to his city. | Rollup / personal quest. | +| Fishing expedition reminder | 52 | Dirk warned not to forget it while freeing his people. | Rollup / personal quest. | + +## Open Questions + +- What is the Orb of Compassion part of, and can lost compassion or other emotions be restored? +- What are the exact rules of the Vessel of Divinity and the `gold Valententhide` orb? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 44a0601..b8e128a 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -40,6 +40,9 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md --- # Open Threads @@ -184,3 +187,17 @@ sources: - Can the dome or prison network be powered safely without exploiting elementals, and what prisoners remain behind the frost-prison doors? - What is [Sunsoreen](places/sunsoreen.md)'s Lorekeeper, why do its records call the narrator Elliana Harthall, and why did the council offer to help recover what she lost only if she stayed? - Why was the Tri-moon visible at the wrong time in Sunsoreen? +- Can diplomacy with [Verdigrim](people/verdigrim.md) resolve Ashkielion / Verdigrimtown, and who is Verdigrim's mother? +- What are the full implications of [Rubyeye](people/brutor-ruby-eye.md)'s ancient charges, especially 174,312 herfolk babies murdered and elemental spirit entrapment? +- What favour does Umberous want in exchange for hiding Rubyeye from [Infestus](people/infestus.md), and who is Umberous's father? +- What is the escaped void elemental after absorbing its brother and possibly Pride? +- What prison under Lewshis and Aneurascarle did Rubyeye recognise, and how do the Thunderfut / Trutbrow plaques, Samuel, Struct, thirty dwarves, and missing crystal connect to Throngore? +- What exactly is the featureless lost part of [Valententhide](people/valententhide.md), what did Thomas remove, and what is the Vessel of Divinity? +- Why did Joy warn that the lost part took her mum when the ancestors gave a positive response to releasing it? +- What does the direct answer `Because you are` mean for the narrator's Harthall identity? +- Where is Morgana's `[coded]` teleport circle, and why do Geldrin and Morgana remember making or placing it from uncertain selves? +- If destroying the dome cancels all pacts and releases all prisons, which pacts or prisoners become immediate threats or obligations? +- What are Bridget's rules for honouring, gifts, anger, and the gold Valententhide orb? +- Who is the voice offering to free Dotharl from mortals, and is it Bridget's trapped kin, his father, his grandfather, or another prisoner? +- Which identity should the narrator keep: the current self or the one once held? +- What power are the Brownings offering Geldrin, what crystal must Invar give or use, what fishing expedition must Dirk remember, and what training cost threatens Morgana? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 36f3a12..1f3cbf5 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,7 +5,7 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-46 +last_updated: day-48 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md @@ -22,6 +22,7 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-48.md --- # Brutor Ruby Eye @@ -54,6 +55,11 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - On Day 46, Errol hid ruby messages connected to Rubyeye, Enis, Browning, and Squeal. One clarified that Squeal did not ask for weather through the Barrier but for `the loss of everything`; another message with red glowing eyes, a water Excellence, and a whirlwind being was refused by Errol. - A false message said `Bread & Circus` and pretended to be Rubyeye, while Platinum said Errol was possessed by one of Squeal's things. - A Rubyeye / Squeal warning said to be careful at Riversmeet and that Enis had trapped Rubyeye in a room before Rubyeye went to his wife's place and was imprisoned. +- On Day 48, Wrath brought Rubyeye to the party saying he needed rescuing and Cardinal had been useless. +- In a huge underground dwarven city, Rubyeye was arrested for ancient crimes: 174,312 herfolk babies murdered, elemental spirit entrapment, tower construction, and downfall of ancient race. +- Rubyeye remembered Hannah and said there were six elemental forces all along, matching six arms on the exhausted. +- After the party broke him out, Umberous demanded Rubyeye be delivered to Infestus but agreed not to reveal Rubyeye's presence if the party owed him a favour. +- Rubyeye's attempt to teleport the party back misfired to a snowy sky fort and then to a scared dwarven prison room; he recognised it as a prison, possibly Throngore's under Lewshis and Aneurascarle, before his eyes glowed red and he disappeared at 21:00. ## Timeline @@ -71,6 +77,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - `day-43`: Cardonald cannot locate Ruby Eye or Errol, possibly because they are not on the same plane. - `day-44`: The party encounters young Ruby Eye in old mage-school history and finds a draconic book intended for him. - `day-46`: Hidden ruby messages and Errol's possession complicate Rubyeye's status, Squeal's request, and Rubyeye's imprisonment at his wife's place. +- `day-48`: Wrath and the party rescue Rubyeye from an underground dwarven city; ancient charges, six elemental forces, Umberous's demand, and Rubyeye's disappearance from a dwarven prison complicate his status again. ## Related Entries @@ -96,3 +103,6 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - What does `Battery is the clue` mean in the book left for Ruby Eye? - What is Squeal, and why did it ask for `the loss of everything`? - Is Rubyeye truly imprisoned at his wife's place, and how does that relate to his earlier disappearance? +- How accurate are the Day 48 ancient charges against Rubyeye? +- Where did Rubyeye go when his eyes glowed red at 21:00 in the possible Throngore prison? +- What favour will Umberous demand for not telling Infestus about Rubyeye? diff --git a/data/6-wiki/people/minor-figures-days-48-52.md b/data/6-wiki/people/minor-figures-days-48-52.md new file mode 100644 index 0000000..c1d6cd0 --- /dev/null +++ b/data/6-wiki/people/minor-figures-days-48-52.md @@ -0,0 +1,45 @@ +--- +title: Minor Figures from Days 48 and 52 +type: rollup +sources: + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md +--- + +# Minor Figures from Days 48 and 52 + +This rollup preserves named and name-like figures from Days 48 and 52 that do not yet have standalone pages or whose merge target remains uncertain. + +| Figure | Day | Notes | Coverage | +| --- | --- | --- | --- | +| Gardoil | 48 | Bynx wanted to go to Gardoil and Dirk's father; later absent while recovering from battle. | Rollup. | +| Dirk Sr / Dirk's father | 48 | Wanted the party to kill the dragon and told Dirk to see Ingris. | Rollup / existing family thread. | +| Courtwood | 48 | His "Musing" four days earlier anchors the timing around Worn, Errol, and Bynx. | Rollup. | +| Worn | 48 | Killed four days earlier when Errol was fixed and Bynx was gained. | Rollup. | +| Ingris | 48 | Dirk's sister, whom Dirk Sr told Dirk to see. | Rollup. | +| Older Dunner elder / knower of flesh | 48 | Met the party on the word of Benu and cited uncovered prophecy texts. | Rollup. | +| Grimescale | 48 | Burly envoy for mighty Verdigrim. | [Verdigrim](verdigrim.md). | +| Gravltooth | 48 | Old wizened envoy accompanying Grimescale. | [Verdigrim](verdigrim.md). | +| Ingus | 48 | Asked to tell the council where the party was going with Wrath. | Rollup. | +| Spindl | 48 | Rubyeye's auntie in the underground dwarven city; saw the party before and led them to Rubyeye. | Rollup / [Brutor Ruby Eye](brutor-ruby-eye.md). | +| Dwarf High Priest | 48 | Wanted to arrest Wrath for existing and presided around Rubyeye's arrest context. | Rollup. | +| Umberous | 48 | Black dragonborn / dark-skinned humanoid at Salanar's prison, speaking for his father; bargained not to tell Infestus about Rubyeye in exchange for a favour. | Rollup / [Infestus](infestus.md). | +| Ugarth Thunderfut | 48 | Dwarf statue plaque: slain by the demon Samuel. | Rollup. | +| Borbor Thunderfut | 48 | Dwarf statue plaque: saw Samuel slain by Struct. | Rollup. | +| Lhura Trutbrow | 48 | Dwarf statue plaque: slain by Struct but bound in chain upon him. | Rollup. | +| Samuel | 48 | Demon named on dwarf statue plaques. | Rollup. | +| Struct | 48 | Demon named on dwarf statue plaques; killed Samuel and Lhura. | Rollup. | +| Aglue? / Anemie? | 48 | Uncertain possible names for the featureless dome figure / lost part of Valententhide. | [Valententhide](valententhide.md). | +| Thomas | 48 | Said to have put the lost part of Valententhide in the dome and taken what was there. | Rollup / old-school Thomas-Enis thread. | +| Simon | 48 | Pieced-together figure with Stoven and Stuart; wanted Valententhide and communicated with Throngore. | Rollup. | +| Stoven and Stuart | 48 | Former prisoners released about twenty years after imprisonment; arrived with Simon. | Rollup. | +| Squeall / Squeal | 52 | God of the lost / possible grandfather in Dothral's family thread. | Rollup / open thread. | +| Cedric | 52 | Cricket-headed follower of Bridget who handled waiting, gruel, doors, and later ate gruel like ambrosia. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Medinner | 52 | Bridget follower whose show reenacted Elliana/Avalina and a robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Raven-headed lady | 52 | Told Dotharl to go away and emphasized choice. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Bridget's husband | 52 | Likes lucky fortune, weather, change, and loss. | [Bridget's Doors](../concepts/bridgets-doors.md). | + +## Open Questions + +- Which minor figures should be promoted if Grimescale, Gravltooth, Umberous, Spindl, Cedric, or Medinner recur? +- Is Squeall/Squeal the same entity as earlier Squeal references tied to Rubyeye and `the loss of everything`? diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index f6c4357..b5a3b22 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -9,7 +9,7 @@ aliases: - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-47 +last_updated: day-48 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md @@ -19,6 +19,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md --- # Peridita @@ -40,6 +41,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Galimma's dragon-family information preserves Perodika's children or related dragons with uncertain names and locations. - Day 43 says Lady Harthall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. - Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. +- Day 48 reveals Verdigrim originally invited the party because Perodita told him to kill them and promised to leave his people alone. ## Related Entries @@ -55,3 +57,4 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Are Perodika, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? - What does freeing Perodita require from Bridge, and what does releasing Valentenhide under the god rule cost? - Why does Perodita want flesh-crafting wands? +- Why did Perodita pressure Verdigrim to kill the party, and what would she stop doing if he obeyed? diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md index 057e162..7b23731 100644 --- a/data/6-wiki/people/valententhide.md +++ b/data/6-wiki/people/valententhide.md @@ -11,7 +11,7 @@ aliases: - Bridge's sister - the featureless woman first_seen: day-30 -last_updated: day-47 +last_updated: day-52 sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md @@ -19,6 +19,8 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md --- # Valententhide / Valentenhule @@ -38,6 +40,10 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - On `day-47`, `Palace of Valententhide` described her palace as forged in the deep sky, in a domain outside mortal realms, on the crimson, with walls of faces she does not have and unbreathable air unless visitors bring their own. - The same book says Valententhide exploited a loophole to remain at her palace when the gods were banished to another plane. - Later on `day-47`, an accidental portal opened into a black corridor in Valententhide's house; the party saw Valententhide, passed out, and Morgana heard the narrator while feeling cold hands on her shoulder. +- On `day-48`, a featureless figure in a prison dome said it was no one, lost, once part of Valententhide, and that Thomas put it there and took what was there. It linked the elemental planes, pacts, world creation, the Vessel of Divinity, gods, and lostness. +- The same Day 48 figure answered the narrator's question about why everyone thought they were a Harthall with: "Because you are." Joy warned not to trust it because it took her mum, but Dirk's ancestors gave a positive response to letting it out. +- On `day-52`, a night-sky-serenity part of Valententhide was described as a small shard of a powerful creature. Reuniting it would soften Valententhide into a goddess of destruction rather than a mindless road-murdering force. +- Bridget would take the gold Valententhide, smash the orb, and release her to Bridget. ## Related Entries @@ -46,6 +52,7 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) - [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) - [Minor Places from Day 47](../places/minor-places-day-47.md) +- [Minor Items from Days 48 and 52](../items/minor-items-days-48-52.md) ## Open Questions @@ -54,3 +61,6 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - Why was Hannah visible if she was wiped from time and space? - What are the faces in her deep-sky palace walls, and what does it mean that she does not have them? - How did she avoid the gods' banishment, and is her house connected to Harthall's portal network? +- What did Thomas remove when he put the lost part of Valententhide into the dome? +- Why did Joy say this figure took her mum, and why did the ancestors still approve releasing it? +- What does the `gold Valententhide` orb contain, and what would Bridget do with it? diff --git a/data/6-wiki/people/verdigrim.md b/data/6-wiki/people/verdigrim.md new file mode 100644 index 0000000..4a2a7d9 --- /dev/null +++ b/data/6-wiki/people/verdigrim.md @@ -0,0 +1,40 @@ +--- +title: Verdigrim +type: person or dragon-associated ruler +aliases: + - Verdigrim + - Verdugrim +first_seen: day-42 +last_updated: day-48 +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-48.md +--- + +# Verdigrim + +## Summary + +Verdigrim / Verdugrim is a dragon-family figure or ruler tied to the Goliath/Dunner conflict around Ashkielion and Verdigrimtown. + +## Known Details + +- Earlier dragon-family intelligence named Verdigrim / Verdugrim among Peridita / Lortesh-related dragon figures. +- On `day-48`, the party sought diplomacy with Verdigrim after Dunners, goliaths, and merfolk debated whether to attack, sneak, negotiate, or leave. +- Verdigrim's envoys included Grimescale and Gravltooth. +- His people said their lands had been theirs for one thousand years but were no longer theirs, and that Ashkielion now belonged to the goliaths. +- Verdigrim occupied or claimed "Verdigrimtown" and wanted what was already his. +- Verdigrim said he had earlier invited the party because [Peridita](peridita.md) told him to kill them and promised to leave his people alone. +- The party told Verdigrim his mother was still alive, and he wanted to meet her. + +## Related Entries + +- [Peridita](peridita.md) +- [Minor Figures from Days 48 and 52](minor-figures-days-48-52.md) +- [Minor Places from Days 48 and 52](../places/minor-places-days-48-52.md) + +## Open Questions + +- Who is Verdigrim's mother, and can meeting her change the Ashkielion / Verdigrimtown conflict? +- What exact land or payment does Verdigrim require? +- Are the five white raiding forces leverage, danger, or a separate enemy pressure? diff --git a/data/6-wiki/places/minor-places-days-48-52.md b/data/6-wiki/places/minor-places-days-48-52.md new file mode 100644 index 0000000..6a14d22 --- /dev/null +++ b/data/6-wiki/places/minor-places-days-48-52.md @@ -0,0 +1,40 @@ +--- +title: Minor Places from Days 48 and 52 +type: rollup +sources: + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md +--- + +# Minor Places from Days 48 and 52 + +| Place | Day | Notes | Coverage | +| --- | --- | --- | --- | +| Azureside blue-sky passage | 48 | Broom destination with blue sky, vanishing doors, lush grass, mushrooms, squirrel, magpie, floppy bronze lizard, and metallic brass dragon. | Rollup. | +| Cave-network entrances | 48 | Main cliff entrance nine miles away plus hidden entrances under shrub, behind rock, poison door, and in ground. | Rollup / strategic notes. | +| Ashkielion | 48 | Claimed by goliaths; part of Verdigrim diplomacy and relocation plan. | [Verdigrim](../people/verdigrim.md). | +| Verdigrimtown | 48 | Verdigrim's claimed town / land. | [Verdigrim](../people/verdigrim.md). | +| Verdigrim's tunnels and throne room | 48 | Dunner-style throne room in very dark stone and copper accents. | [Verdigrim](../people/verdigrim.md). | +| Huge underground dwarven city | 48 | Site with lava orb, dwarf king, Spindl, Rubyeye's arrest, and ancient charges. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md) / rollup. | +| Lava-orb chamber | 48 | Held a humongous elemental lava orb / prisoner. | [Elemental Prisons](../concepts/elemental-prisons.md). | +| Salanar's prison | 48 | Teleport destination where Umberous locked the party in and bargained over Rubyeye. | Rollup. | +| Seaside of the world | 48 | Umberous was tasked with looking after it. | Rollup. | +| Snowy mountain / great stone sky fort | 48 | Failed Rubyeye teleport destination with no way down. | Rollup. | +| Scared dwarven prison room | 48 | Prison Rubyeye recognized, possibly Throngore's and under Lewshis and Aneurascarle. | Rollup / [Elemental Prisons](../concepts/elemental-prisons.md). | +| Thirty-dwarf sarcophagus chamber | 48 | Decapitated bodies, date mismatch, heirlooms, goat urine, glass dust. | Rollup. | +| Medical school / Provista river | 48 | Memory from crystal of playing with sister by river in Provista. | Rollup. | +| Magic school headmaster's office | 48 | Context for note reading `mines beneath the real`. | [Minor Items from Days 48 and 52](../items/minor-items-days-48-52.md). | +| Morgana's `[coded]` teleport circle | 48 | Wood with bees, apples, snow, furs, rugs, and bird poo; uncertain Geldrin/Morgana memory. | Rollup. | +| Morgana's hut | 48 | Reached at 00:00, end of complete Day 48 span. | Rollup. | +| Stonedown | 52 | Day 52 starting location. | Rollup. | +| Bridget's domain / pathway | 52 | Linked-path trial where party members split, solved rooms, and met Bridget's followers. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Invar's cricket/raven/gruel room | 52 | Honour puzzle with cricket, raven, and bowl. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Medinner's show space | 52 | Reenacted Elliana, Avalina, burial, rooted woman, and robot/copper dragonborn rising. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Chessboard space | 52 | Dice/card puzzle moved Geldrin and Dirk; lights appeared on a 20-square board. | Rollup. | +| Darker-sky realm and storm | 52 | Bouncy-castle-feeling space where party moved by intent and Dotharl heard the tempting voice. | [Bridget's Doors](../concepts/bridgets-doors.md). | +| Snowsoreen / order city | 52 | Named in questions about a trapped being and order. | [Sunsoreen / Snowscreen](sunsoreen.md). | + +## Open Questions + +- Is the Day 48 dwarven prison one of the known seven prisons or a related containment site? +- What is the true location of Morgana's `[coded]` circle, and why do Geldrin and Morgana remember it inconsistently? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 1816442..1bb4867 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -40,6 +40,9 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md --- # Sources @@ -84,6 +87,8 @@ sources: - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). - `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). +- `data/4-days-cleaned/day-48.md`: [Verdigrim](people/verdigrim.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). +- `data/4-days-cleaned/day-52.md`: [Bridget's Doors](concepts/bridgets-doors.md), [Valententhide / Valentenhule](people/valententhide.md), [Elemental Prisons](concepts/elemental-prisons.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 48 and 52](people/minor-figures-days-48-52.md), [Minor Places from Days 48 and 52](places/minor-places-days-48-52.md), [Minor Items from Days 48 and 52](items/minor-items-days-48-52.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-48-52-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 72e8db2..0efb0df 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -37,6 +37,9 @@ sources: - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md + - data/4-days-cleaned/day-48.md + - data/4-days-cleaned/day-52.md --- # Timeline @@ -85,3 +88,6 @@ sources: - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Harthall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. - `day-47`: In Harthall's lab, the party uncovers erased Harthall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s lion-headed father clue, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records the narrator as Elliana Harthall before the party returns and closes the fire elemental rift. +- `day-48`: The party seeks diplomacy with [Verdigrim](people/verdigrim.md), rescues and loses track of [Rubyeye](people/brutor-ruby-eye.md), releases a void elemental while killing Pride, explores a dwarven prison tied to Throngore and a lost part of [Valententhide](people/valententhide.md), and hears the direct answer that the narrator is a Harthall. +- `day-49` through `day-51`: No cleaned day files exist in this build; the next visible marker is `day-52`. +- `day-52`: At Stonedown and in [Bridget's Doors](concepts/bridgets-doors.md) / Bridget's domain, the party learns that destroying the dome would cancel pacts and release all prisons, offers the Valententhide shard to Bridget, solves honouring puzzles, and receives identity, family, power, faith, liberation, and cost choices. -
2084431Moreby Bas Mostert
data/2-pages/228.txt | 39 +-- data/2-pages/229.txt | 36 +- data/2-pages/230.txt | 21 ++ data/2-pages/231.txt | 16 + data/2-pages/232.txt | 25 ++ data/2-pages/233.txt | 19 + data/2-pages/234.txt | 17 + data/2-pages/235.txt | 21 ++ data/2-pages/236.txt | 18 + data/2-pages/237.txt | 25 ++ data/2-pages/238.txt | 21 ++ data/2-pages/239.txt | 17 + data/2-pages/240.txt | 17 + data/2-pages/241.txt | 21 ++ data/2-pages/242.txt | 18 + data/2-pages/243.txt | 23 ++ data/2-pages/244.txt | 23 ++ data/2-pages/245.txt | 20 ++ data/2-pages/246.txt | 17 + data/2-pages/247.txt | 21 ++ data/3-days/day-47.md | 536 +++++++++++++++++++++++++++++ data/4-days-cleaned/day-47.md | 207 +++++++++++ data/6-wiki/aliases.md | 3 + data/6-wiki/clues/day-47-coverage-audit.md | 23 ++ data/6-wiki/concepts/elemental-prisons.md | 10 +- data/6-wiki/factions/sunsoreen-council.md | 52 +++ data/6-wiki/index.md | 8 + data/6-wiki/items/minor-items-day-47.md | 34 ++ data/6-wiki/open-threads.md | 9 + data/6-wiki/people/bynx.md | 42 +++ data/6-wiki/people/garadwal.md | 8 +- data/6-wiki/people/joy.md | 6 +- data/6-wiki/people/minor-figures-day-47.md | 38 ++ data/6-wiki/people/peridita.md | 4 +- data/6-wiki/people/valententhide.md | 9 +- data/6-wiki/places/minor-places-day-47.md | 26 ++ data/6-wiki/places/sunsoreen.md | 43 +++ data/6-wiki/sources.md | 1 + data/6-wiki/timeline.md | 1 + 39 files changed, 1433 insertions(+), 62 deletions(-)Show diff
diff --git a/data/2-pages/228.txt b/data/2-pages/228.txt index 29be7b3..e269988 100644 --- a/data/2-pages/228.txt +++ b/data/2-pages/228.txt @@ -2,34 +2,17 @@ Page: 228 Source: data/1-source/IMG_9896.jpg Transcription: -Reason Enis sacrificed his wife was so Joy could -live but it didn't work - Enis tricked because -Joy can't exist if her mother didn't exist. +Reason Enis sacrificed his wife was so Joy could live, but it didn't work. Enis tricked because Joy can't exist if her mother didn't exist. -- Sphynx growing up quick & asking lots of questions. - Invar has crab in bag. - I want [unclear: horn] green. - Jade turned me green. +Sphynx growing up quick and asking lots of questions. Invar has crab in bag. I want him green. Jade turned me green. Remembers brother's nose. -Remembers brothers now. Go into next room. All the doors seem to have carvings. -- Stone door - crudely carved bell - cracked and on fire. - Large men surrounding it looking up at the sky (Bellborn?). - Dirk asks the door to open & it says "You may not pass, - son of fire". Only the son of stone & their friends may enter. - Invar tries to get in & the door tells him to run back home. - Opens for me. -Room is large & empty. Dirk finds a coin but not sure where -it is from. Invar notices a stone is slightly different - stones -are all uniform except one which is a different stone than the -others. Not sure where it comes from. Morgana - piece of -paper not sure how it was missed - "I hid them for you". -On it is a well, the other false Heddy. -The keystone looks loose - hollow & contains a box. -Geldrin finds a memory orb. -Box reveals a little scene of Grand Towers before the other towers -were built. 3 small boxes at the front. Seen before - -Enis' place (a professor's?) or don't recognise. 7 elves in front -bare chested, 2 holding chains leading to the side panels, -one to wisps of wind, other elven body head of lion. -Baby thinks real daddy - lion head - wind is naughty. -Baby takes the lion & breaks the box & falls asleep +- Stone door, crudely carved bell, cracked and on fire. Large men surrounding it, looking up at the sky (Bellborn?). +Dirk asks the door to open and it says, "You may not pass, son of fire." Only the son of stone and their friends may enter. +Invar tries to get in and the door tells him to run back home. Opens for me. + +Room is large and empty. Dirk finds a coin but not sure where it is from. Invar notices a stone is slightly different; stones are all uniform except one with a different stone than the others. Not sure where it comes from. +Morgana: piece of paper, not sure how it was missed. "I hid them for you. One is in a cell, the other false teddy." +The flagstone looks loose, hollow, and contains a box. Geldrin finds a memory orb. + +Box reveals a little scene of grand towers before the other towers were built. Three small boxes at the front, seen before Enis's place / a professor's? I don't recognise. Seven elves in front, bare chested. Two hold chains leading to side panels. One to whorps of wind, other elven body with head of lion. Baby thinks real daddy: lion head. Wind is nearby. Baby takes the lion and breaks the box, then falls asleep after his tantrum. diff --git a/data/2-pages/229.txt b/data/2-pages/229.txt index 6bc6d5f..f7cac2a 100644 --- a/data/2-pages/229.txt +++ b/data/2-pages/229.txt @@ -2,36 +2,14 @@ Page: 229 Source: data/1-source/IMG_9897.jpg Transcription: -Geldrin finds a glass shard & I find a -statue with something written in Goblin "Time flies". -Things disappear when we leave the room. +Geldrin finds a glass shard and I find a statue with something written in Goblin: "Time flies." Things disappear when we leave the room. -Next door - desert badlands feel - bottle between Noria & Sierra -made of sand stone - contains a giant bed - adult dragon size. -Book on the bedside table - tunnels of love - Dwarf porn. -Bedside table & vanity human size. -Morgana finds white rose powder - smells it, visions -of 3 chests, one from Mr Moreley's room open. -One of the boxes & incredibly attractive elf says "That's your -horn now ceiling" & changes to a Milky Way which -changes to an eye. +Next door: desert badlands feel. Battle between Noxia and Sierra, made of sandstone. Contains a giant bed, adult dragon size. Human-size bedside table and vanity. Book on the bedside table: Tunnels of Love, Dwarf Porn. -Next room - coral & sea shells - depicts temple on a shore line (Baylan Accord). -Bathroom. Bath tub has tiny scratches in it & makes a -picture of a cat. +Morgana finds white rose powder, smells of visions. Of three chests, one from Mr Moreley's room is open. One of the boxes and an incredibly attractive elf says, "That's your form now." Ceiling changes to a Milky Way which changes to an eye. -Next room - light airy stone - town with houses on stilts. -Door says "Not time for flying lessons". What time - for -me never - not any more. Invar breaks the door. -Nothing in it, pictures all down the walls, cracked down the ceiling, -copper basin & ceiling looks like it should open. +Next room: coral and sea shells. Depicts temple on a shore line (Baylen/Baylain Accord). Bathroom. Bath tub has tiny scratches in it, makes a picture of a cat. -Baby goes back into the other room & leaves with the memory -orb. It doesn't disappear. -Pictures in the room: Avalina, Taalish Harthall & some others. -Baby puts memories on the wall! -"No naughty, it's time." -Huge black dragon - horn of flies hanging around it - in a desert -near a large tower - turns into human, ornate evening suit. -Drow - green dragon attacks black dragon - winning. Drow pulls -out a jar. Beautiful elf - propelled into sky, crashes into barrier. +Next room: light airy stone. Town with houses on stilts. Door says, "Not time for flying lessons." Not time for me never, not any more. Invar breaks the door. Nothing in it. Pictures all down the walls. Circle down the ceiling, copper sunrise, and ceiling looks like it should open. Baby goes back into the other room and leaves with the memory orb. It doesn't disappear. + +Pictures in the room: Avalina, Harthall, and some others. Baby puts memories on the wall. "No, maybe it time." Huge black dragon, horn of flies buzzing around it, in a desert near a large tower, turns into human, ornate wearing suit. Drow/green dragon attacks black dragon, winning. Drow pulls out a jar. Beautiful elf propelled into sky crashes into Barrier. diff --git a/data/2-pages/230.txt b/data/2-pages/230.txt new file mode 100644 index 0000000..6733b75 --- /dev/null +++ b/data/2-pages/230.txt @@ -0,0 +1,21 @@ +Page: 230 +Source: data/1-source/IMG_9898.jpg + +Transcription: +Pushes through the Barrier. Woman says not any more, "that's your form now." He can come through, he has the gate. + +In a room, Laylistra. + +Entrance chamber to a school. We are all there. I have a robe, Harthall crests. + +Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Elliana!" and then pushes her into the wall. + +Baby says Jade made me green. + +Move to next door: artificial yellow stone with crops. Kitchen. Something hidden under the fridge: door handle for the door, with a note saying, "in case you lock yourself in again, Greensleeves. I know he is a halfling chef but don't know why." + +New door: lighthouse with castle in the middle (Freeport?). Dining room. Twelve-seat table. Everything is very eclectic, considering all the races. Chairs seem to be more sat in, but nothing noticeable about the place settings. Cutlery box has a false bottom: silver necklace with green jade pendant, Celtic-style carving, heart shape. Haven't seen Avalina wearing it. Chain doesn't feel like part of the pendant. + +Loose stone under the table contains an invisible handle. + +Dotharl looks out of the room and sees a man who is invisible. Holes for eyes. Human. diff --git a/data/2-pages/231.txt b/data/2-pages/231.txt new file mode 100644 index 0000000..19355dc --- /dev/null +++ b/data/2-pages/231.txt @@ -0,0 +1,16 @@ +Page: 231 +Source: data/1-source/IMG_9899.jpg + +Transcription: +Door knobs are magical. + +Next door: to Gar, purple dome. Adding the room to 6 foot tall humanoid glacier in the dome, surrounded by lightning. Two of Dothral automans are guarding it. They were created at the same time. + +Female voice shouts out, "I've not hidden it here, fuck off you prick." I feel odd hearing the voice. +Morgana removed artery from the doorknob hole and nothing happened. The voice was heard and the doors started to close. Geldrin puts up a wall of force and fire balls come from the ceiling, protected. + +Hollow eye guy is in the empty room and seems to follow Dothral with approx 5 second delay. Tongue has been cut in half. Runs over my shoe and insects appear and start talking to us. + +Servant to Igraine. Started down the path and payment will be due. Tax collector name Cacophony will collect payment when it is due. Has the mortal word for it? Ask what language it is in. Vision of Throngore: glowing blue ball around him, disappears. Blue object falls to the floor. Silver dragon then picks it up and says, "that's it, now this is done." All the animals speaking for Cacophony die except one who tells Morgana what it is called. + +Automatons have become active. Geldrin wakes him up. Creature in the dome is in their charge and they will become aggressive. 1037 years protected this creature for 1017 years. It is for a prison close by. It is still charging and has "2" time left. Both power down. diff --git a/data/2-pages/232.txt b/data/2-pages/232.txt new file mode 100644 index 0000000..067cdc6 --- /dev/null +++ b/data/2-pages/232.txt @@ -0,0 +1,25 @@ +Page: 232 +Source: data/1-source/IMG_9900.jpg + +Transcription: +Last door: dark black rock. Swamp. + +Two rows of plinths, like a trophy room. Plinths empty; plaques are scratched off. Morgana casts Mending on them all. +- Crown of Mooncoral. +- Picture of three trees, fletching arrows on the middle one. +- The blood of Noxia. +- Chains of blackthorn. +- Heart of Tremon. +- A dress made as a gift from the survivors of Sunplane. +- His first gift to me. +- Lion's blessing. +- Crown of thorns from the first Massacre. +- Musings and thoughts on the location of the lost. +- Shaman Blackstorm's tome on the significance of the number 5. +- The flight of the gold [Cacacity/Cacriting], its arrival. + +Geldrin has this one. I take it and put it on the plinth. Rumbles and knocks Geldrin back. Light appears above the chains plinth. + +Sphynx baby = Bynx. + +Push chain plinth. Push wrong way then see writing. Put the chain from the locket on it and the tree on lights up. Plaque is removed and stone arrow behind it. Remove it and light goes out. Go to the bedroom. Light now above the night stand. Book in there wasn't there before. It is blank, but indents indicate it has been written on. Magical fire in the fireplace. Use makeup to reveal the words in the book. Seems to be Avalina's diary. diff --git a/data/2-pages/233.txt b/data/2-pages/233.txt new file mode 100644 index 0000000..a22f0f0 --- /dev/null +++ b/data/2-pages/233.txt @@ -0,0 +1,19 @@ +Page: 233 +Source: data/1-source/IMG_9901.jpg + +Transcription: +Last few pages. Getting sick. Cell in every promise a flavour. Spiral of intentions going from good to bad is continuing. People giving away things, becoming shadows of themselves, feeling too worried for their daughters. Given away too much and loved ones died. Done up tomorrow. + +Doesn't think it should do. Looked in her box like the others did. Ask daughters to close this place off. Doesn't want the others to get things. Daughters at the time: teenagers. + +Back to plinth room. Put the Noxia slime on the plinth: nothing. + +Diary: Anvil pages. Not happy having to live up to her family's promises. Doesn't like her forced mate. Cryptic talks of someone she likes, marriage only to keep council of gold happy. + +Put book on the plinth for the musings. Light on the heart of Tresmon. Shard on it. Light on blood of Noxia. Everything else lights up. Dress plinth: door handle. Pick it up, feels [light/like] and connects to the door. Unscrews. Hollow cap. Fill with water? + +Blood of Noxia looks like it is trying to escape. + +Back to empty room to work out what is behind the odd brick. Handle on it starts to vibrate. Stone doesn't hold any more. Handle is glowing and cold now. + +Go to the bathroom. Work the shower. diff --git a/data/2-pages/234.txt b/data/2-pages/234.txt new file mode 100644 index 0000000..13cc731 --- /dev/null +++ b/data/2-pages/234.txt @@ -0,0 +1,17 @@ +Page: 234 +Source: data/1-source/IMG_9902.jpg + +Transcription: +Fill the handle with water and it now glows. + +Invisible handle removed, invisible. Creates on the design. Arc: go get tongs from the kitchen. Nothing happens when it is put in the fire. Is this the air one? Take to the flying room and get it to glow. + +Morgana: second round, added feeling of writing on a piece of paper. Feel fear and resentment. Pull out a random piece of paper like I knew it was there: "Nope, not going there. Going to use grandson's old trick." Taotli? Find his picture in the flying room and the handle is inside. Charge it in the fire in the bedroom. + +Put the handles in the wall. Wall goes into the floor. Archway in the back wall with a glass clock on it. Empty. Spear / Arrow of Sierra. A box in the middle. Coffin door open. Humanoid of the barrier from the prison room disappears. + +Control: three different effects when blown, once a day. Control water / song of thrumming / conjure elemental of water. Create water, breathe underwater, speak to animals (sea creatures), move underwater. + +Chest has a well wall without a bottom, overwhelmed by a sense of vertigo looking into it. + +Cold comes into the room. Rimefrost shrieks for "little dragons." Kill the ice elemental. Fire elemental in a rip under the fireplace seems evil. diff --git a/data/2-pages/235.txt b/data/2-pages/235.txt new file mode 100644 index 0000000..75295ac --- /dev/null +++ b/data/2-pages/235.txt @@ -0,0 +1,21 @@ +Page: 235 +Source: data/1-source/IMG_9903.jpg + +Transcription: +Attempt to put the elemental puzzle into an elemental ball. + +Day 47 + +Skygate-type portal has runes on it. Three seem like places: glittering-type word and a cryptic-type word. Can't do the third. Original something. +Frost elemental prison runes have totally disappeared, as though they were not there in the first place. Very strange. + +Diary: middle, fighting by dunner people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. + +18:00. Geldrin investigates the portal and works it out. + +22:00. Diary: symbol similar to "glittering." They have hidden the whole place with them. Petty. Not sure how Argentum is taking it. Allegations against her were valid but extreme to take the city. + +Taler on actual word for captive, talking about prisoners assembled. Them all. Others disagree with official alternatives. Bronze won't take her suggestion. Want alternative for Garadwal. Want to believe intentions were good but can't see the path anymore. + +Arc asks Dothral to set it free. +Teleport to frost prison. Blows ice all away. Elemental speaks to Dothral and says we want to come in and it stops blowing, head back inside. Lightning crackles in the distance. diff --git a/data/2-pages/236.txt b/data/2-pages/236.txt new file mode 100644 index 0000000..3552f7c --- /dev/null +++ b/data/2-pages/236.txt @@ -0,0 +1,18 @@ +Page: 236 +Source: data/1-source/IMG_9904.jpg + +Transcription: +Invar finds it difficult to connect to Shotcher. + +Two doors down the corridor hidden behind the ice. One has lightning bolt and other has snowflake. Not sure what is behind these. Carry on and two more plain doors. No handles. +End of corridor is a T junction and a painting, wheel thick with compass points. Sun and Moon in the middle. Symbols for the compass points. Scraping and scratches, rubbing something off between the compass points. Flute from the left. + +Go to the right. Elaborate door down the corridor. Danger symbology in the artwork. Turn right and symbols change to say, "Don't go down here." The darkness is down there. Head back again and it feels like it would go further. + +End of corridor: no ice and closed door. Black substance around the edge of the doorframe, hardened tree sap/rubber. Feeling calls out from behind the door. Dirk asks the ancestors what would happen if we replaced the elemental. Gets a sense of woe. + +More talking to it and sense some lies. Dirk Clairvoyance: semi-circle room, plinth in the centre, appears empty. Rubber between all flagstones. Oracle area of the dome aligned with where the pipe was in Timnor's vision. Says he is not in this plane any more. + +Go down to the other prison. Another door. Standard style carving of eight serpents, heads different: goat, lion, bull. Unsure what this means. Door at the end is covered in ice. No rubber. Lightning feels like it is coming from this side of the door. + +Dirk tries to talk to it in Aquan. Knows Dirk's name as come to set him free. Asks if it is safe and wants to make sure it is the right thing. diff --git a/data/2-pages/237.txt b/data/2-pages/237.txt new file mode 100644 index 0000000..db95cfb --- /dev/null +++ b/data/2-pages/237.txt @@ -0,0 +1,25 @@ +Page: 237 +Source: data/1-source/IMG_9905.jpg + +Transcription: +If he stays, is there anything he needs? Able to think and talk to some elementals. + +Lady Harthall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. + +Before release him, if we want to, others in prisons. Some very narked prisoners. + +Dark door: nothing there now, was a prisoner of a different time. + +Dark door leads to an ancient dwarven hold (not a settlement). Open the door: big shaggy blue aurora, massive. +Geldrin promises to come let him out when he finds out how to power the dome without all the elementals. +Cell mate chosen to turn off the gusts and can turn them back on when he pleases. + +Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Harthall lab for Enis. Needs a door handle like one of the Harthall handles. Archway, the one at Harthall's lab. + +Goat: Dorion. Bull: Tim. Lion: Geoffrey. + +Door math: use arch, oil hinges, don't break it. Will open if we agree to these. Calls Dotharl the door guard for this prison. + +Geoffrey wants a new body before he'll let us in. Agree, don't take or break anything. + +Go into the room. Walls carved with faces with different expressions, very intricate apart from eyeballs or hair. diff --git a/data/2-pages/238.txt b/data/2-pages/238.txt new file mode 100644 index 0000000..3dd9b63 --- /dev/null +++ b/data/2-pages/238.txt @@ -0,0 +1,21 @@ +Page: 238 +Source: data/1-source/IMG_9906.jpg + +Transcription: +Floor is mosaic of seaward stone, purple crystal, etc. + +Archway, same as Harthall lab one. Prison symbol says "home." + +Table is made out of seaward stone. Veining seems to be a map but don't recognise the area. Hat stand. Cloak on it. Turns me invisible when I put it on. + +Bookshelf full of books about the moon and one nursery rhyme book about Valententhide. One by unknown author: Palace of Valententhide, forged palace in deep sky. Has a domain outside of the mortal realms and has a palace on the crimson. Walls of faces she doesn't have. Unbreathable air unless you bring your own. When the gods were banished to another plane, she had a loophole to stay at this palace. + +Geldrin feels urge to put the book on the table. Blue veins morph to look like the moon. + +Nursery rhyme book shows a castle, likely Harthall escape style. + +Coat stand has some invisible eyes on it. Cloak, when invisible, has moving starscapes on it, but not to the person wearing it. + +Geldrin puts different books on the table. Enis's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Enis's soul? + +Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadwal. diff --git a/data/2-pages/239.txt b/data/2-pages/239.txt new file mode 100644 index 0000000..7116a26 --- /dev/null +++ b/data/2-pages/239.txt @@ -0,0 +1,17 @@ +Page: 239 +Source: data/1-source/IMG_9907.jpg + +Transcription: +Tome of dome making: strange curving patterns, "magnet curvature pattern," grand towers. Zoom in on crystal, then mountains, then pans to the atmosphere and a giant flaming rock. + +Geldrin's spellbook: massive dragon, Perodita but has scorpion stinger as her tail. Wings look more insect-like. Sat at the top of grand towers, looking into the windows at the top. Turns over and trees, nothing. Two lodge logging area. Face up/open, table speaks the words on the page. + +Dragon lady. Two dragon men, silver/white/gold? + +Flight of the Gold: palace enormous as tiny dragons flying around, snow screen, surrounded by flowers and trees. No snow, looks temperate. + +Archway rune glows: "glittering" rune. Men step through the portal. Human-ish, looks old. Golden blond hair, very long moustache, golden eyes, old ornate garb/clothing, sandals, walking stick. Wants to know where the scroll is. "Aurum Prudence." Doesn't like Dotharl. + +Only one portal activation in the last 1,000 years: the cat. + +Thought all the scrolls had gone with them. Disappeared because everything was crazy. Pacts were broken: Harthall and Icefang? Decided to take charge and move the city. diff --git a/data/2-pages/240.txt b/data/2-pages/240.txt new file mode 100644 index 0000000..0cc1a74 --- /dev/null +++ b/data/2-pages/240.txt @@ -0,0 +1,17 @@ +Page: 240 +Source: data/1-source/IMG_9908.jpg + +Transcription: +Suggests we go back with him and he will show us round, and we can decide if he can have the scroll. Take the cloak with me. + +Go to Snowscreen. Archway has different runes. Building is enormous. Grass and woodlands below. Warm patch, blackout time, but it is midday. Tri-moon even though it is not time for the Tri-moon. + +Copper dragon lands nearby, goes into the building. City is now called Sunsoreen. Door is carved with a sphynx female face. Bynx's mother. + +Takes us inside the palace. Takes us to the council first. Doorway to the council is enormous and impressive, carved with white dragon and sphynx. City. + +Geldrin has scroll about how they moved the city on the other side of the earth. + +Sophus Holed into spiritual things. Stained glass window with dragon theory on it. White dragon surrounded by gold dragons. Five thrones in middle. Female elf/human left of her, golden dragonborn, [unclear] wearing odd hair. Right of her, dwarf, massive golden beard covered in stature symbols. Aurum Prudence goes to sit in one of the free chairs. + +Elf/human asks why we want an audience with the Council. diff --git a/data/2-pages/241.txt b/data/2-pages/241.txt new file mode 100644 index 0000000..14e47f6 --- /dev/null +++ b/data/2-pages/241.txt @@ -0,0 +1,21 @@ +Page: 241 +Source: data/1-source/IMG_9909.jpg + +Transcription: +They left as they didn't want to be involved in the dome. This side of the world isn't as populated. Thinks we should take someone out. Quelling the emotions started with them. Really doesn't like Dotharl: abomination. Very selfish. + +They want the scroll. What do we want in return? + +Cindy takes us to our rooms, wearing dunner colouring clothes. Many laws, new ones each day. They have to remember them. Colouration of clothing is because her mum lived with the Dunners. Everybody has to have a job and has to train if they don't have one. + +Hayhearn Frowbrind: white, leader. +Aurum Prudence: gold, expansion and protection. +Sophus Holed: gold (dragonborn one), justice and laws. +Orius [Nosheer?]: dwarf gold, creation and agriculture. +The Silent One: air genasi silver dragon, knowledge and information. + +Sat for the last few hundred years. Seven settlements in 100 miles under the Sunsoreen umbrella, absorbed. + +TV orb glows. Copper dragon. Clew marks, "The Shadow" wants information. Is it nice? Can we get it out? Seven or so copper dragons and 100 or 50 slaves. Dotharl sees an orb and realises we are being watched. + +Tri-moon is out. Skull of Tresmon vibrating. Copper and white haired "half elf," huge red dragonborn drops in and grabs the male and arrests them. Courtroom made for dragon, gold dragon. Outbreeding now outlawed, both guilty. diff --git a/data/2-pages/242.txt b/data/2-pages/242.txt new file mode 100644 index 0000000..61d2294 --- /dev/null +++ b/data/2-pages/242.txt @@ -0,0 +1,18 @@ +Page: 242 +Source: data/1-source/IMG_9910.jpg + +Transcription: +See them in an elven town square and gold dragon on a pile of gold. + +Call Cindy back. Tells us where the baths are. Gives us passes. No "murders" in the last two odd years, but these are killed. Inbreeding with lower races is allowed. + +Blue and red dragons are the ones attacking them more than the others. + +Red dragonborn presence is requested. Leave some trouble makers and we need to testify against them. + +Follow them to a new place, go through internal market area. Townfolk give off a feeling of things treading on eggshells, worry. +Get taken to a courthouse, which doesn't seem to have been designed for dragons. Forty-two court rooms in this building, over 200 across the city. + +17:00. Judge is a copper dragon with a magistrate wig on. Right Honourable Charming. Cindy in the trial: seditious aiding and abetting leaving Sunsoreen, tampering with visitor quarters, displaying terrorist messages, and passing carrots. Spreading chaos across the lands. + +Asked if the orb gave any illicit messages, or the both patrons talking out of turn. Calls me Elliana Harthall. Great lore keeper gave the information. Asks me questions not relevant to the trial. Where did I come from? Did I have pets as a child? Why all the teddy bears? diff --git a/data/2-pages/243.txt b/data/2-pages/243.txt new file mode 100644 index 0000000..26ac530 --- /dev/null +++ b/data/2-pages/243.txt @@ -0,0 +1,23 @@ +Page: 243 +Source: data/1-source/IMG_9911.jpg + +Transcription: +Doesn't want to question Dotharl as they don't question machines, but questions appeared: "Help me, Grandson." + +Judge seems really flustered. All questions come from "the Lorekeeper." Trials don't usually go like this. + +Outside door opens. Four people come in: two elves, one human, and one copper-haired person. Here to view trial in progress. Three invisible people come in too, wearing hooded cloaks. + +Dotharl calls the invisible ones out and the peacekeeper hits him. One gets hit and turns into a copper dragon, and the other grabs Cindy and disappears. + +Judge turns into dragon form. Arrest both the invisible ones. Manacles turn them into humanoid form. Suspected we were involved, but Dotharl's actions changed his mind. Sends us back to our quarters. + +Dothril: familial tie to an elemental. + +Bynx tells us about the elemental planes, where the pure elemental planes meet they combine. + +Request if council are ready for us yet. Two gold dragonborn come to get us. Only Hayhearn Frostwind and Aurum Prudence are there. Not possible to meet the Lorekeeper. Wasn't happy when I said we need to know where they get their information. + +She tells Aurum to go get the records. He mumbles to himself that it's not like it used to be. Try to question why the questions weren't relevant and she asks who I think I am. + +Apparently Elliana Harthall according to their records. diff --git a/data/2-pages/244.txt b/data/2-pages/244.txt new file mode 100644 index 0000000..ec6bc50 --- /dev/null +++ b/data/2-pages/244.txt @@ -0,0 +1,23 @@ +Page: 244 +Source: data/1-source/IMG_9912.jpg + +Transcription: +Aurum walks off and Hayhearn says that explains a lot. We stare at each other. + +Bynx casts Truesight. His sister isn't there anymore. No trace of her in the white dragon. + +Aurum comes back with the rest of the council. The empty chair is now filled with a silver-skinned human. + +Want to make a proposition: Elliana to stay and they will help me find out what I've lost. Not sure we believe them. + +Say release of all their citizens. They decline. + +Hayhearn reminds guest rights and tries to arrest us. Aurum Prudence kicks off about it and tells us to leave. + +See lots of people running to the chambers with papers. Emergency law-making meeting. + +Go back to frost prison. Geldrin tries to turn the portal off and activates another location. Square black obsidian room with no doors. Geldrin finds a door and places a hand on it to open it. Opens to a black corridor: Valententhide's house. + +One charge left on the portal, shared between the portals and resets once a day. + +Open portal and as we attempt to go through, see Valententhide. Pass out. Three go through the portal and it closes. Morgana hears me and feels cold hands on her shoulder. diff --git a/data/2-pages/245.txt b/data/2-pages/245.txt new file mode 100644 index 0000000..c1fe007 --- /dev/null +++ b/data/2-pages/245.txt @@ -0,0 +1,20 @@ +Page: 245 +Source: data/1-source/IMG_9914.jpg + +Transcription: +Right blade to Harthall's lab. + +Give the ice elemental ball to the fire elemental in the fireplace. Dispel magic on the rift in the fireplace and close the portal to the fire elemental. + +Day 48 + +Bynx grows up again. Want to go to Gardoil and Dirk's dad. +Send Errol off with a message to Dirk's dad. +Start to talk about everything, saying I'm a Harthall. Bynx says, I'm not always green. Sometimes I remind him of his sister and Platinum. +Deal with a god. Wipe me from memories like Enis's wife, Hannah. + +Errol returns. Things not great, recovering from a battle. Gardoil not with them. She had to go do something. Need reinforcements from the capital. + +Try to Broom to Azureside. Completely blue sky. Passage way. Flip a coin off the "side". Door disappeared. Launch for another one and there is a door in the floor. Looks out to a sky. Poke head through and lush grass and mushrooms, but blue sky. Squirrel comes to talk to us. Doesn't know where it is. Says there is a floppy lizard who looks after him, possibly bronze colour. Can summon it. Sends a magpie to get him. + +Dragon starts to approach. Definitely metallic, looks brass. diff --git a/data/2-pages/246.txt b/data/2-pages/246.txt new file mode 100644 index 0000000..a3260c8 --- /dev/null +++ b/data/2-pages/246.txt @@ -0,0 +1,17 @@ +Page: 246 +Source: data/1-source/IMG_9916.jpg + +Transcription: +Courtwood's "Musing" four days ago started something to attend to and could be back promptly. Four days ago was when we killed Worn/fixed Errol/got Bynx. + +Some dragons attacking further Waterwise. Dunners claim we are favoured of Atlabre and they have a child come to them whilst sleeping to prophesise our return. + +Dirk Snr wants us to go kill the dragon. + +Scouts found a few entrances for the cave network. Some poisoned, and some of the enemy are invisible. They don't know about the manticore. + +Dirk Snr tells Dirk to go see his sister. Dirk worried as her and Bynx are roughly the same age. Bynx not happy to be introduced as the Goliath's sphynx. He feels fractured. + +Go to see Dirk's sister, Ingris. Dotharl comes back. There were a few invisibles around the perimeter. + +Scout: four entrances found. Main: cliff area approx 9 miles away, always humans with dragonborn and Duhg guards, approx 100 coming in and out. Other entrances found from patrols: under a shrub, one behind rock, poison door, third in the ground, all approx 1 mile apart. Way more traps than necessary in the wilderness. Poison weapon movable etc. diff --git a/data/2-pages/247.txt b/data/2-pages/247.txt new file mode 100644 index 0000000..28f117b --- /dev/null +++ b/data/2-pages/247.txt @@ -0,0 +1,21 @@ +Page: 247 +Source: data/1-source/IMG_9919.jpg + +Transcription: +Retrieved a poison weapon. Something familiar about the poison; can't quite remember. Alchemical base. Their breath weapon. Some poisonous herbs and scorpion venom. Can be healed with normal healing spell, but wound will not heal. + +Go to see the Dunners. Seem to get lots of respect. Elders come out to see us. Older one and knower of flesh are here on the word of Benu. + +There is a plan for us. They have seen the prophecy in the texts now uncovered. They know due to the convalescence of Benu he will be back but needs to pay for his misdeeds. + +Heard words of their old protector made flesh anew (Garadwal). He had good and wanted to protect people. Not sure if they should accept him back as their protector. + +Find the Goliath strong-minded. Merfolk have retreated to the sea. Suppressed memories have horrified them, although spoke highly of us. + +Would diplomacy work to bring the dragon round? Get his mum involved? Verdigrim? + +Test the waters to see if he is willing to talk. +- Diplomacy: help or go away. +- Attack. +- Sneak. +- We leave. diff --git a/data/3-days/day-47.md b/data/3-days/day-47.md new file mode 100644 index 0000000..cf34e36 --- /dev/null +++ b/data/3-days/day-47.md @@ -0,0 +1,536 @@ +--- +day: day-47 +date: unknown +source_pages: + - 223 + - 224 + - 225 + - 226 + - 227 + - 228 + - 229 + - 230 + - 231 + - 232 + - 233 + - 234 + - 235 + - 236 + - 237 + - 238 + - 239 + - 240 + - 241 + - 242 + - 243 + - 244 + - 245 +source_ranges: + - data/2-pages/223.txt:25-38 + - data/2-pages/224.txt + - data/2-pages/225.txt + - data/2-pages/226.txt + - data/2-pages/227.txt + - data/2-pages/228.txt + - data/2-pages/229.txt + - data/2-pages/230.txt + - data/2-pages/231.txt + - data/2-pages/232.txt + - data/2-pages/233.txt + - data/2-pages/234.txt + - data/2-pages/235.txt + - data/2-pages/236.txt + - data/2-pages/237.txt + - data/2-pages/238.txt + - data/2-pages/239.txt + - data/2-pages/240.txt + - data/2-pages/241.txt + - data/2-pages/242.txt + - data/2-pages/243.txt + - data/2-pages/244.txt + - data/2-pages/245.txt:5-7 +complete: true +--- + +# Raw Notes + +## Page 223 + +Day 47 + +Try to put the rations in the bag of holding & +trying to escape to get back to the ground. +Morgana sets it free in the forest - it's called +"No chart". + +Adventurers took Lady Harthall's diary. +They killed the elf who was taking all the woodcutters +from Pinesprings. + +- Picture on the wall of a halfling girl with a silver hair girl in a + field of white roses. +Room looks ransacked but the picture is untouched. + +## Page 224 + +Picture has been altered in some way. Investigate +& see the other side of the girls has been altered, +& another girl had been in the picture originally. +Frame has runes on it in Draconic - one word is Preserve. + +Through the door is a bookshelf - empty - alchemist's table +covered in mushrooms. Friend fleshbag set him free. Children +are elsewhere now. + +2 silver dragons lived here - they fought, 1 left, then +came back then there were 3 (1 big, 2 small). +- 2 prison rooms at the end of the corridor. +- 1 room filled with dirt & gets filled with more. +- Next room is locked & Platinum says this door wasn't + there when she was here with the adventurers. + Obsidian plinth with an urn & a single white rose + laid on it. Amethyst orb by the side of it. Red + ribbon tied in bow & a flute carved of dark wood, laid + like an offering to the urn. + +Obsidian statue, no face but gracious god - eyestone lower torso (Squeal?) +Other side Kasha. [unclear: Leys 8? mystery]. + +- Look at flute - Lady Harthall plays the flute - know this somehow, + maybe a look from Provista. + I get a tear in the corner of my eye that is frosty. + Urn says - Though my love for you in life may not have + been true, you still gave your life for me. I'm + sorry - Argathum's urn. + +- Look behind the silks & one makes me shiver & scared of + it. Dirk finds a crack in the wall. + +## Page 225 + +Go to check the crack & get petrified +of it & instinctively throws the flute at it. +The crack seems like something spherical hit it. +Dirk checks the urn & it contains dust & tries to +speak to it. +"In her strange bones laid bare." + +Metal shines - seem tarnished - odd for silver. When wiped, +crystallised jade dust. Turning the silver into jade. +Geldrin cleans both statues - Geldrin gets lost looking at +the statue. + +Ornate door - long throne room. One throne Harthall carved, +crudely decorated with skulls. Dead elf & 6 skeletons. +Pictures - copper mines / saintshrine / snowy mountain tops / lots of +people (portraits), silver hair / sphynx (Garadwal). +One of Avalina, Argathum, Corundum, Argea? +No Cetiosa. No obvious missing pictures. +Males - um, females - ex. (random order but all aligned.) + +Sentient door - asks who are you to me & asks +if I'm allowed out?!? +Has brothers at different places (Enis' lab & [unclear: aprosur]). +Lots of people in & out. I've been in & out lots +& prefers my other look wearing a dress. +Last time Avalina left - the next person to come in was +Mr Boorning a day later - left with a key. +Harthall had 2 daughters - won't tell us their names +due to privacy as they are babies. Don't seem to +be able to trick it. +Strange noise - door disintegrates into a pile of dust +child is & when I was last there. + +## Page 226 + +Me & Joshua feel mind fog & immediate memories start to leave us. + +Invar hears amidst it "I will not lose you again my son." +Geldrin shouts "No". +Dirk sees Joy & says you need to look after my friend. + +Errol says we need to stop this information is lost - the man +he was with says we need to stop & there will be more than +just pride & disguise lost. We do +not know what we are messing with. +Platinum thinks whatever wiped the memories missed +the door. + +- Go outside to find the area where the room + caved in & clear it out. Find the door the other + side of the room. Trapped. Disarm. Magically trapped for + banishing for someone coming out. The rest of the + lab is through the door? + +- Dothral recognises the architecture. +Forcefield appears part way down the corridor. +Runes are in a language we don't understand. +Runes say "help you Everard". + +First door on left - carving of small elvish town houses +& large trees (out of place), Elvish script at the bottom. +Wooden rocking horse on a spring, vanity, sofa with +stuffed "Bears" (actually humans, gnomes & halflings), rack of flutes. + +I walk to the sofa & pick up one & tuck it under +my arm & come around then start to cry, +trying to remember something. Also feeling like I've +lost something. Put it in my bag. + +## Page 227 + +Dirk starts to sing a sombre goliath song from the music +book - whilst he is singing. + +I hear flute music & am drawn to a flute +& it feels very sombre & heavy in my mind. +Goliath baby has fun around the room then comes +over to me to add a ribbon to my horn. Then +throws up on me & thinks it's hilarious. Geldrin +tries to clean it but the spell doesn't work - seems +like I stop it. + +Next room - 2 beds, one with sky, another with a +dragon carving. The sky seems to have had an X +carved in it. Under the dragon bed is a box, +a key on its bum with words on it - Celestial? 6 words. +Pure black cat with green eyes comes round the door - magical. +Wants to be killed. +There is something locked up at the end of the corridor. +Cat escapes & I try to shoot at it & it's injured, +repair itself. + +The "window" opens into a beautiful field of roses +illusion - picnic blanket under the window. Dragon toys. +Tea set - cups contain folded up paper - one says +Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, me +(keyless). + +Sphynx wants Dirk to read books. +Toy chests are empty. +Geldrin reads the bears' words "Here always Never Nowhere all Harth". +(Hannah) Hannah Joy - Enis' wife - erased from existence. + +## Page 228 + +Reason Enis sacrificed his wife was so Joy could live, but it didn't work. Enis tricked because Joy can't exist if her mother didn't exist. + +Sphynx growing up quick and asking lots of questions. Invar has crab in bag. I want him green. Jade turned me green. Remembers brother's nose. + +Go into next room. All the doors seem to have carvings. +- Stone door, crudely carved bell, cracked and on fire. Large men surrounding it, looking up at the sky (Bellborn?). +Dirk asks the door to open and it says, "You may not pass, son of fire." Only the son of stone and their friends may enter. +Invar tries to get in and the door tells him to run back home. Opens for me. + +Room is large and empty. Dirk finds a coin but not sure where it is from. Invar notices a stone is slightly different; stones are all uniform except one with a different stone than the others. Not sure where it comes from. +Morgana: piece of paper, not sure how it was missed. "I hid them for you. One is in a cell, the other false teddy." +The flagstone looks loose, hollow, and contains a box. Geldrin finds a memory orb. + +Box reveals a little scene of grand towers before the other towers were built. Three small boxes at the front, seen before Enis's place / a professor's? I don't recognise. Seven elves in front, bare chested. Two hold chains leading to side panels. One to whorps of wind, other elven body with head of lion. Baby thinks real daddy: lion head. Wind is nearby. Baby takes the lion and breaks the box, then falls asleep after his tantrum. + +## Page 229 + +Geldrin finds a glass shard and I find a statue with something written in Goblin: "Time flies." Things disappear when we leave the room. + +Next door: desert badlands feel. Battle between Noxia and Sierra, made of sandstone. Contains a giant bed, adult dragon size. Human-size bedside table and vanity. Book on the bedside table: Tunnels of Love, Dwarf Porn. + +Morgana finds white rose powder, smells of visions. Of three chests, one from Mr Moreley's room is open. One of the boxes and an incredibly attractive elf says, "That's your form now." Ceiling changes to a Milky Way which changes to an eye. + +Next room: coral and sea shells. Depicts temple on a shore line (Baylen/Baylain Accord). Bathroom. Bath tub has tiny scratches in it, makes a picture of a cat. + +Next room: light airy stone. Town with houses on stilts. Door says, "Not time for flying lessons." Not time for me never, not any more. Invar breaks the door. Nothing in it. Pictures all down the walls. Circle down the ceiling, copper sunrise, and ceiling looks like it should open. Baby goes back into the other room and leaves with the memory orb. It doesn't disappear. + +Pictures in the room: Avalina, Harthall, and some others. Baby puts memories on the wall. "No, maybe it time." Huge black dragon, horn of flies buzzing around it, in a desert near a large tower, turns into human, ornate wearing suit. Drow/green dragon attacks black dragon, winning. Drow pulls out a jar. Beautiful elf propelled into sky crashes into Barrier. + +## Page 230 + +Pushes through the Barrier. Woman says not any more, "that's your form now." He can come through, he has the gate. + +In a room, Laylistra. + +Entrance chamber to a school. We are all there. I have a robe, Harthall crests. + +Girls' room. Three girls. Clamber out of the window. Looking over the urn. Other daughter lays a ribbon from her doll and turns to her sister and says, "my gift is better than yours." Key poopoo head. She says, "no, you're the poo poo head, Elliana!" and then pushes her into the wall. + +Baby says Jade made me green. + +Move to next door: artificial yellow stone with crops. Kitchen. Something hidden under the fridge: door handle for the door, with a note saying, "in case you lock yourself in again, Greensleeves. I know he is a halfling chef but don't know why." + +New door: lighthouse with castle in the middle (Freeport?). Dining room. Twelve-seat table. Everything is very eclectic, considering all the races. Chairs seem to be more sat in, but nothing noticeable about the place settings. Cutlery box has a false bottom: silver necklace with green jade pendant, Celtic-style carving, heart shape. Haven't seen Avalina wearing it. Chain doesn't feel like part of the pendant. + +Loose stone under the table contains an invisible handle. + +Dotharl looks out of the room and sees a man who is invisible. Holes for eyes. Human. + +## Page 231 + +Door knobs are magical. + +Next door: to Gar, purple dome. Adding the room to 6 foot tall humanoid glacier in the dome, surrounded by lightning. Two of Dothral automans are guarding it. They were created at the same time. + +Female voice shouts out, "I've not hidden it here, fuck off you prick." I feel odd hearing the voice. +Morgana removed artery from the doorknob hole and nothing happened. The voice was heard and the doors started to close. Geldrin puts up a wall of force and fire balls come from the ceiling, protected. + +Hollow eye guy is in the empty room and seems to follow Dothral with approx 5 second delay. Tongue has been cut in half. Runs over my shoe and insects appear and start talking to us. + +Servant to Igraine. Started down the path and payment will be due. Tax collector name Cacophony will collect payment when it is due. Has the mortal word for it? Ask what language it is in. Vision of Throngore: glowing blue ball around him, disappears. Blue object falls to the floor. Silver dragon then picks it up and says, "that's it, now this is done." All the animals speaking for Cacophony die except one who tells Morgana what it is called. + +Automatons have become active. Geldrin wakes him up. Creature in the dome is in their charge and they will become aggressive. 1037 years protected this creature for 1017 years. It is for a prison close by. It is still charging and has "2" time left. Both power down. + +## Page 232 + +Last door: dark black rock. Swamp. + +Two rows of plinths, like a trophy room. Plinths empty; plaques are scratched off. Morgana casts Mending on them all. +- Crown of Mooncoral. +- Picture of three trees, fletching arrows on the middle one. +- The blood of Noxia. +- Chains of blackthorn. +- Heart of Tremon. +- A dress made as a gift from the survivors of Sunplane. +- His first gift to me. +- Lion's blessing. +- Crown of thorns from the first Massacre. +- Musings and thoughts on the location of the lost. +- Shaman Blackstorm's tome on the significance of the number 5. +- The flight of the gold [Cacacity/Cacriting], its arrival. + +Geldrin has this one. I take it and put it on the plinth. Rumbles and knocks Geldrin back. Light appears above the chains plinth. + +Sphynx baby = Bynx. + +Push chain plinth. Push wrong way then see writing. Put the chain from the locket on it and the tree on lights up. Plaque is removed and stone arrow behind it. Remove it and light goes out. Go to the bedroom. Light now above the night stand. Book in there wasn't there before. It is blank, but indents indicate it has been written on. Magical fire in the fireplace. Use makeup to reveal the words in the book. Seems to be Avalina's diary. + +## Page 233 + +Last few pages. Getting sick. Cell in every promise a flavour. Spiral of intentions going from good to bad is continuing. People giving away things, becoming shadows of themselves, feeling too worried for their daughters. Given away too much and loved ones died. Done up tomorrow. + +Doesn't think it should do. Looked in her box like the others did. Ask daughters to close this place off. Doesn't want the others to get things. Daughters at the time: teenagers. + +Back to plinth room. Put the Noxia slime on the plinth: nothing. + +Diary: Anvil pages. Not happy having to live up to her family's promises. Doesn't like her forced mate. Cryptic talks of someone she likes, marriage only to keep council of gold happy. + +Put book on the plinth for the musings. Light on the heart of Tresmon. Shard on it. Light on blood of Noxia. Everything else lights up. Dress plinth: door handle. Pick it up, feels [light/like] and connects to the door. Unscrews. Hollow cap. Fill with water? + +Blood of Noxia looks like it is trying to escape. + +Back to empty room to work out what is behind the odd brick. Handle on it starts to vibrate. Stone doesn't hold any more. Handle is glowing and cold now. + +Go to the bathroom. Work the shower. + +## Page 234 + +Fill the handle with water and it now glows. + +Invisible handle removed, invisible. Creates on the design. Arc: go get tongs from the kitchen. Nothing happens when it is put in the fire. Is this the air one? Take to the flying room and get it to glow. + +Morgana: second round, added feeling of writing on a piece of paper. Feel fear and resentment. Pull out a random piece of paper like I knew it was there: "Nope, not going there. Going to use grandson's old trick." Taotli? Find his picture in the flying room and the handle is inside. Charge it in the fire in the bedroom. + +Put the handles in the wall. Wall goes into the floor. Archway in the back wall with a glass clock on it. Empty. Spear / Arrow of Sierra. A box in the middle. Coffin door open. Humanoid of the barrier from the prison room disappears. + +Control: three different effects when blown, once a day. Control water / song of thrumming / conjure elemental of water. Create water, breathe underwater, speak to animals (sea creatures), move underwater. + +Chest has a well wall without a bottom, overwhelmed by a sense of vertigo looking into it. + +Cold comes into the room. Rimefrost shrieks for "little dragons." Kill the ice elemental. Fire elemental in a rip under the fireplace seems evil. + +## Page 235 + +Attempt to put the elemental puzzle into an elemental ball. + +Day 47 + +Skygate-type portal has runes on it. Three seem like places: glittering-type word and a cryptic-type word. Can't do the third. Original something. +Frost elemental prison runes have totally disappeared, as though they were not there in the first place. Very strange. + +Diary: middle, fighting by dunner people. Her and Argentum want to help Garadwal. Fight against elementals in the name of [Hafelius?]. Garadwal had issues fighting them. Metatous seemed more powerful than he should have been. Two-week break. Argentum has died, fell to the armies. + +18:00. Geldrin investigates the portal and works it out. + +22:00. Diary: symbol similar to "glittering." They have hidden the whole place with them. Petty. Not sure how Argentum is taking it. Allegations against her were valid but extreme to take the city. + +Taler on actual word for captive, talking about prisoners assembled. Them all. Others disagree with official alternatives. Bronze won't take her suggestion. Want alternative for Garadwal. Want to believe intentions were good but can't see the path anymore. + +Arc asks Dothral to set it free. +Teleport to frost prison. Blows ice all away. Elemental speaks to Dothral and says we want to come in and it stops blowing, head back inside. Lightning crackles in the distance. + +## Page 236 + +Invar finds it difficult to connect to Shotcher. + +Two doors down the corridor hidden behind the ice. One has lightning bolt and other has snowflake. Not sure what is behind these. Carry on and two more plain doors. No handles. +End of corridor is a T junction and a painting, wheel thick with compass points. Sun and Moon in the middle. Symbols for the compass points. Scraping and scratches, rubbing something off between the compass points. Flute from the left. + +Go to the right. Elaborate door down the corridor. Danger symbology in the artwork. Turn right and symbols change to say, "Don't go down here." The darkness is down there. Head back again and it feels like it would go further. + +End of corridor: no ice and closed door. Black substance around the edge of the doorframe, hardened tree sap/rubber. Feeling calls out from behind the door. Dirk asks the ancestors what would happen if we replaced the elemental. Gets a sense of woe. + +More talking to it and sense some lies. Dirk Clairvoyance: semi-circle room, plinth in the centre, appears empty. Rubber between all flagstones. Oracle area of the dome aligned with where the pipe was in Timnor's vision. Says he is not in this plane any more. + +Go down to the other prison. Another door. Standard style carving of eight serpents, heads different: goat, lion, bull. Unsure what this means. Door at the end is covered in ice. No rubber. Lightning feels like it is coming from this side of the door. + +Dirk tries to talk to it in Aquan. Knows Dirk's name as come to set him free. Asks if it is safe and wants to make sure it is the right thing. + +## Page 237 + +If he stays, is there anything he needs? Able to think and talk to some elementals. + +Lady Harthall had ice thing trapped, stuck to do with it? Got it into a fire elemental? Weakened by the prison. Can affect through the gap. Cellmate throwing his ice around. Was tricked into the prison. + +Before release him, if we want to, others in prisons. Some very narked prisoners. + +Dark door: nothing there now, was a prisoner of a different time. + +Dark door leads to an ancient dwarven hold (not a settlement). Open the door: big shaggy blue aurora, massive. +Geldrin promises to come let him out when he finds out how to power the dome without all the elementals. +Cell mate chosen to turn off the gusts and can turn them back on when he pleases. + +Go back to snake door. No handle. Chip at the ice and one starts talking to us. Knows the door at Harthall lab for Enis. Needs a door handle like one of the Harthall handles. Archway, the one at Harthall's lab. + +Goat: Dorion. Bull: Tim. Lion: Geoffrey. + +Door math: use arch, oil hinges, don't break it. Will open if we agree to these. Calls Dotharl the door guard for this prison. + +Geoffrey wants a new body before he'll let us in. Agree, don't take or break anything. + +Go into the room. Walls carved with faces with different expressions, very intricate apart from eyeballs or hair. + +## Page 238 + +Floor is mosaic of seaward stone, purple crystal, etc. + +Archway, same as Harthall lab one. Prison symbol says "home." + +Table is made out of seaward stone. Veining seems to be a map but don't recognise the area. Hat stand. Cloak on it. Turns me invisible when I put it on. + +Bookshelf full of books about the moon and one nursery rhyme book about Valententhide. One by unknown author: Palace of Valententhide, forged palace in deep sky. Has a domain outside of the mortal realms and has a palace on the crimson. Walls of faces she doesn't have. Unbreathable air unless you bring your own. When the gods were banished to another plane, she had a loophole to stay at this palace. + +Geldrin feels urge to put the book on the table. Blue veins morph to look like the moon. + +Nursery rhyme book shows a castle, likely Harthall escape style. + +Coat stand has some invisible eyes on it. Cloak, when invisible, has moving starscapes on it, but not to the person wearing it. + +Geldrin puts different books on the table. Enis's spellbook makes it blank, then sleeping men, then girl in a dome, then endless well with more next at the bottom, then two grinning guarding a door with weapons. Picture of Enis's soul? + +Mythos spell book: pyramid, temples next to a sphynx. Egg, Garadwal. + +## Page 239 + +Tome of dome making: strange curving patterns, "magnet curvature pattern," grand towers. Zoom in on crystal, then mountains, then pans to the atmosphere and a giant flaming rock. + +Geldrin's spellbook: massive dragon, Perodita but has scorpion stinger as her tail. Wings look more insect-like. Sat at the top of grand towers, looking into the windows at the top. Turns over and trees, nothing. Two lodge logging area. Face up/open, table speaks the words on the page. + +Dragon lady. Two dragon men, silver/white/gold? + +Flight of the Gold: palace enormous as tiny dragons flying around, snow screen, surrounded by flowers and trees. No snow, looks temperate. + +Archway rune glows: "glittering" rune. Men step through the portal. Human-ish, looks old. Golden blond hair, very long moustache, golden eyes, old ornate garb/clothing, sandals, walking stick. Wants to know where the scroll is. "Aurum Prudence." Doesn't like Dotharl. + +Only one portal activation in the last 1,000 years: the cat. + +Thought all the scrolls had gone with them. Disappeared because everything was crazy. Pacts were broken: Harthall and Icefang? Decided to take charge and move the city. + +## Page 240 + +Suggests we go back with him and he will show us round, and we can decide if he can have the scroll. Take the cloak with me. + +Go to Snowscreen. Archway has different runes. Building is enormous. Grass and woodlands below. Warm patch, blackout time, but it is midday. Tri-moon even though it is not time for the Tri-moon. + +Copper dragon lands nearby, goes into the building. City is now called Sunsoreen. Door is carved with a sphynx female face. Bynx's mother. + +Takes us inside the palace. Takes us to the council first. Doorway to the council is enormous and impressive, carved with white dragon and sphynx. City. + +Geldrin has scroll about how they moved the city on the other side of the earth. + +Sophus Holed into spiritual things. Stained glass window with dragon theory on it. White dragon surrounded by gold dragons. Five thrones in middle. Female elf/human left of her, golden dragonborn, [unclear] wearing odd hair. Right of her, dwarf, massive golden beard covered in stature symbols. Aurum Prudence goes to sit in one of the free chairs. + +Elf/human asks why we want an audience with the Council. + +## Page 241 + +They left as they didn't want to be involved in the dome. This side of the world isn't as populated. Thinks we should take someone out. Quelling the emotions started with them. Really doesn't like Dotharl: abomination. Very selfish. + +They want the scroll. What do we want in return? + +Cindy takes us to our rooms, wearing dunner colouring clothes. Many laws, new ones each day. They have to remember them. Colouration of clothing is because her mum lived with the Dunners. Everybody has to have a job and has to train if they don't have one. + +Hayhearn Frowbrind: white, leader. +Aurum Prudence: gold, expansion and protection. +Sophus Holed: gold (dragonborn one), justice and laws. +Orius [Nosheer?]: dwarf gold, creation and agriculture. +The Silent One: air genasi silver dragon, knowledge and information. + +Sat for the last few hundred years. Seven settlements in 100 miles under the Sunsoreen umbrella, absorbed. + +TV orb glows. Copper dragon. Clew marks, "The Shadow" wants information. Is it nice? Can we get it out? Seven or so copper dragons and 100 or 50 slaves. Dotharl sees an orb and realises we are being watched. + +Tri-moon is out. Skull of Tresmon vibrating. Copper and white haired "half elf," huge red dragonborn drops in and grabs the male and arrests them. Courtroom made for dragon, gold dragon. Outbreeding now outlawed, both guilty. + +## Page 242 + +See them in an elven town square and gold dragon on a pile of gold. + +Call Cindy back. Tells us where the baths are. Gives us passes. No "murders" in the last two odd years, but these are killed. Inbreeding with lower races is allowed. + +Blue and red dragons are the ones attacking them more than the others. + +Red dragonborn presence is requested. Leave some trouble makers and we need to testify against them. + +Follow them to a new place, go through internal market area. Townfolk give off a feeling of things treading on eggshells, worry. +Get taken to a courthouse, which doesn't seem to have been designed for dragons. Forty-two court rooms in this building, over 200 across the city. + +17:00. Judge is a copper dragon with a magistrate wig on. Right Honourable Charming. Cindy in the trial: seditious aiding and abetting leaving Sunsoreen, tampering with visitor quarters, displaying terrorist messages, and passing carrots. Spreading chaos across the lands. + +Asked if the orb gave any illicit messages, or the both patrons talking out of turn. Calls me Elliana Harthall. Great lore keeper gave the information. Asks me questions not relevant to the trial. Where did I come from? Did I have pets as a child? Why all the teddy bears? + +## Page 243 + +Doesn't want to question Dotharl as they don't question machines, but questions appeared: "Help me, Grandson." + +Judge seems really flustered. All questions come from "the Lorekeeper." Trials don't usually go like this. + +Outside door opens. Four people come in: two elves, one human, and one copper-haired person. Here to view trial in progress. Three invisible people come in too, wearing hooded cloaks. + +Dotharl calls the invisible ones out and the peacekeeper hits him. One gets hit and turns into a copper dragon, and the other grabs Cindy and disappears. + +Judge turns into dragon form. Arrest both the invisible ones. Manacles turn them into humanoid form. Suspected we were involved, but Dotharl's actions changed his mind. Sends us back to our quarters. + +Dothril: familial tie to an elemental. + +Bynx tells us about the elemental planes, where the pure elemental planes meet they combine. + +Request if council are ready for us yet. Two gold dragonborn come to get us. Only Hayhearn Frostwind and Aurum Prudence are there. Not possible to meet the Lorekeeper. Wasn't happy when I said we need to know where they get their information. + +She tells Aurum to go get the records. He mumbles to himself that it's not like it used to be. Try to question why the questions weren't relevant and she asks who I think I am. + +Apparently Elliana Harthall according to their records. + +## Page 244 + +Aurum walks off and Hayhearn says that explains a lot. We stare at each other. + +Bynx casts Truesight. His sister isn't there anymore. No trace of her in the white dragon. + +Aurum comes back with the rest of the council. The empty chair is now filled with a silver-skinned human. + +Want to make a proposition: Elliana to stay and they will help me find out what I've lost. Not sure we believe them. + +Say release of all their citizens. They decline. + +Hayhearn reminds guest rights and tries to arrest us. Aurum Prudence kicks off about it and tells us to leave. + +See lots of people running to the chambers with papers. Emergency law-making meeting. + +Go back to frost prison. Geldrin tries to turn the portal off and activates another location. Square black obsidian room with no doors. Geldrin finds a door and places a hand on it to open it. Opens to a black corridor: Valententhide's house. + +One charge left on the portal, shared between the portals and resets once a day. + +Open portal and as we attempt to go through, see Valententhide. Pass out. Three go through the portal and it closes. Morgana hears me and feels cold hands on her shoulder. + +## Page 245 + +Right blade to Harthall's lab. + +Give the ice elemental ball to the fire elemental in the fireplace. Dispel magic on the rift in the fireplace and close the portal to the fire elemental. diff --git a/data/4-days-cleaned/day-47.md b/data/4-days-cleaned/day-47.md new file mode 100644 index 0000000..6026463 --- /dev/null +++ b/data/4-days-cleaned/day-47.md @@ -0,0 +1,207 @@ +--- +day: day-47 +date: unknown +source_pages: + - 223 + - 224 + - 225 + - 226 + - 227 + - 228 + - 229 + - 230 + - 231 + - 232 + - 233 + - 234 + - 235 + - 236 + - 237 + - 238 + - 239 + - 240 + - 241 + - 242 + - 243 + - 244 + - 245 +complete: true +--- + +# Narrative + +Day 47 began after the party decided to go to Harthall's lab. They tried to put rations into the bag of holding while escaping back to the ground. Morgana set something free in the forest; it was called "No chart." The notes then report that adventurers had taken Lady Harthall's diary and killed the elf who had been taking woodcutters from Pinesprings. + +In the ransacked room, an untouched picture showed a halfling girl with a silver-haired girl in a field of white roses. The picture had been altered: investigation revealed that the other side of the girls had been changed, and another girl had originally been in the picture. Draconic runes on the frame included the word "Preserve." + +Beyond a door was an empty bookshelf and an alchemist's table covered in mushrooms. The phrase "Friend fleshbag set him free" appeared in the notes, along with the statement that the children were elsewhere now. The party learned or inferred that two silver dragons had lived there, fought, one left, and then came back, after which there were three: one big and two small. At the end of a corridor were two prison rooms. One room was filled with dirt and kept filling with more. The next room was locked; Platinum said the door had not been there when she was with the adventurers. Inside stood an obsidian plinth with an urn, a single white rose, an amethyst orb, a red ribbon tied in a bow, and a dark wooden flute laid like an offering. + +An obsidian statue had no face but suggested a gracious god, with an eyestone in the lower torso, possibly Squeal. The other side represented Kasha, with an unclear note preserved as `[unclear: Leys 8? mystery]`. When the narrator looked at the flute, they somehow knew Lady Harthall played it, perhaps from a look from Provista, and a frosty tear formed in the corner of their eye. The urn read: "Though my love for you in life may not have been true, you still gave your life for me. I'm sorry." It was Argathum's urn. Behind the silks, one made the narrator shiver and feel afraid. Dirk found a crack in the wall. + +When the party checked the crack, someone became petrified by it and instinctively threw the flute at it. The crack looked as if something spherical had hit it. Dirk checked the urn, found it contained dust, and tried to speak to it. The phrase "In her strange bones laid bare" was recorded. Nearby metal looked tarnished, odd for silver; when wiped, it revealed crystallised jade dust, as if silver were turning into jade. Geldrin cleaned both statues and became lost looking at one. + +An ornate door led to a long throne room. One throne was Harthall-carved but crudely decorated with skulls. A dead elf and six skeletons were present. Pictures showed copper mines, a saintshrine, snowy mountaintops, many portraits, a silver-haired figure, and a sphynx associated with Garadwal. Portraits included Avalina, Argathum, Corundum, and Argea?, but no Cetiosa and no obvious missing pictures. The notes preserve the unexplained alignment "Males - um, females - ex." in random order. + +A sentient door asked who the narrator was to it and whether it was allowed out. It had brothers in different places, including Enis's lab and `[unclear: aprosur]`. It said many people had been in and out, that the narrator had been in and out many times, and that it preferred the narrator's other look, wearing a dress. After Avalina last left, Mr Boorning came in a day later and left with a key. The door said Harthall had two daughters but would not reveal their names for privacy because they were babies. The party could not trick it. A strange noise followed, and the door disintegrated into dust, with the fragmentary note "child is & when I was last there." + +The narrator and Joshua / Dothral felt mind fog and immediate memories leaving them. Invar heard, amid the fog, "I will not lose you again my son." Geldrin shouted "No." Dirk saw Joy and said she needed to look after his friend. Errol said they needed to stop because information was being lost. The man with him warned they needed to stop and that more than pride and disguise would be lost; they did not know what they were messing with. Platinum thought whatever wiped the memories had missed the door. + +The party went outside to find and clear the area where the room had caved in. On the far side they found a trapped door, disarmed it, and identified a magical banishing trap aimed at someone coming out. The rest of the lab may have been through the door. Dothral recognised the architecture. A forcefield appeared partway down the corridor. Runes in an unknown language read "help you Everard." + +The first door on the left had carvings of small elvish town houses and large out-of-place trees, with Elvish script at the bottom. Inside were a wooden rocking horse on a spring, a vanity, a sofa with stuffed "bears" that were actually humans, gnomes, and halflings, and a rack of flutes. The narrator picked up one stuffed bear, tucked it under their arm, started to cry, tried to remember something, and felt as if they had lost something. They put it in their bag. + +Dirk sang a sombre goliath song from the music book. While he sang, the narrator heard flute music, was drawn to a flute, and felt it as sombre and heavy in their mind. The goliath baby played around the room, added a ribbon to the narrator's horn, vomited on them, and thought it was hilarious. Geldrin tried to clean it with magic, but the spell failed, apparently because the narrator stopped it. + +The next room had two beds, one carved with sky and one with a dragon. The sky bed had an X carved into it. Under the dragon bed was a box; a key was on the dragon's bottom with six possible Celestial words on it. A magical pure-black cat with green eyes came around the door and wanted to be killed. Something was locked up at the end of the corridor. The cat escaped; the narrator shot and injured it, but it repaired itself. + +A "window" opened into an illusion of a beautiful field of roses, with a picnic blanket under the window and dragon toys nearby. A tea set held cups with folded papers labelled Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, and me, with the last perhaps keyless. The sphynx wanted Dirk to read books. The toy chests were empty. Geldrin read the bears' words: "Here always Never Nowhere all Harth." The notes identify Hannah Joy, Enis's wife, as erased from existence. + +The party realised Enis had sacrificed his wife so Joy could live, but it did not work because Joy could not exist if her mother did not exist. The sphynx grew quickly and asked many questions. Invar had a crab in his bag. The narrator wanted the sphynx green, noted that jade had turned them green, and remembered a brother's nose. + +The next room had carved doors. One stone door was crudely carved with a bell, cracked and on fire, and large men surrounding it while looking at the sky, perhaps Bellborn. When Dirk asked it to open, it said, "You may not pass, son of fire." Only the son of stone and their friends could enter. Invar tried to enter, and the door told him to run back home. It opened for the narrator. The room was large and empty. Dirk found a coin of uncertain origin. Invar noticed one stone was slightly different from the uniform others. Morgana found a paper that read: "I hid them for you. One is in a cell, the other false teddy." A loose hollow flagstone held a box, and Geldrin found a memory orb. + +The box revealed a small scene of Grand Towers before the other towers were built. Three small boxes at the front resembled something seen before at Enis's place or a professor's. Seven bare-chested elves stood in front. Two held chains leading to side panels: one to whorls of wind, and the other to an elven body with a lion's head. The baby thought the lion-headed figure was the real daddy, took the lion, broke the box, and fell asleep after the tantrum. + +Geldrin found a glass shard, and the narrator found a statue with Goblin writing: "Time flies." Things disappeared when the party left the room. Another door led to a desert-badlands room showing a sandstone battle between Noxia and Sierra. It contained a giant adult-dragon-sized bed, a human-sized bedside table and vanity, and a bedside book titled `Tunnels of Love`, identified bluntly as dwarf porn. + +Morgana found white rose powder that smelled of visions. Of three chests, one from Mr Moreley's room was open. One box and an incredibly attractive elf said, "That's your form now." The ceiling changed into a Milky Way, then into an eye. Another room of coral and seashells depicted a temple on a shoreline, possibly the Baylen / Baylain Accord. It was a bathroom, and tiny scratches in the bathtub made a picture of a cat. + +The next room was light and airy, with stone houses on stilts. Its door said, "Not time for flying lessons." The notes preserve the phrase "Not time for me never, not any more." Invar broke the door. The room contained nothing obvious, but pictures lined the walls, a circle lay down the ceiling, a copper sunrise appeared, and the ceiling looked as if it should open. The baby returned to the previous room and left with the memory orb, which did not disappear. + +Pictures in the room included Avalina, Harthall, and others. The baby put memories on the wall and said, "No, maybe it time." The images showed a huge black dragon with flies buzzing around its horn in a desert near a large tower. It turned into a human in ornate clothing. A drow or green dragon attacked the black dragon and was winning, then pulled out a jar. A beautiful elf was propelled into the sky and crashed into the Barrier. The notes continue that the figure pushed through the Barrier. A woman said, "not any more" and "that's your form now." He could come through because he had the gate. + +The party found a room labelled or associated with Laylistra, then an entrance chamber to a school where everyone was present and the narrator wore a robe with Harthall crests. In a girls' room, three girls climbed out the window and looked over the urn. One daughter laid a ribbon from her doll and told her sister, "my gift is better than yours." A key was called poopoo head. The other replied, "no, you're the poo poo head, Elliana!" and pushed her into the wall. The baby said jade had made the narrator green. + +The next door led to a kitchen of artificial yellow stone with crops. Under the fridge was a hidden door handle and a note reading, "in case you lock yourself in again, Greensleeves." The narrator knew Greensleeves was a halfling chef but did not know why. Another door opened to a lighthouse with a castle in the middle, possibly Freeport, and a dining room with a twelve-seat table. Everything was eclectic across many races. The chairs seemed more sat in than the place settings suggested. A cutlery box had a false bottom containing a silver necklace with a green jade heart-shaped pendant carved in Celtic style. The narrator had not seen Avalina wearing it, and the chain did not feel like part of the pendant. A loose stone under the table hid an invisible handle. Dotharl looked out of the room and saw an invisible human man with holes for eyes. + +The doorknobs were magical. The next door opened toward Gar and a purple dome. The room added itself to a six-foot-tall humanoid glacier in the dome, surrounded by lightning, guarded by two Dothral automatons created at the same time. A female voice shouted, "I've not hidden it here, fuck off you prick," and the narrator felt odd hearing it. Morgana removed an artery from the doorknob hole, but nothing happened. When the voice was heard and doors began to close, Geldrin put up a Wall of Force while fireballs from the ceiling struck harmlessly against the protection. + +The hollow-eyed man was in the empty room and followed Dothral with an approximately five-second delay. His tongue had been cut in half. He ran over the narrator's shoe, and insects appeared and began talking. The insects or speaker served Igraine, said they had started down the path and payment would be due, and named the tax collector as Cacophony, who would collect payment when due. The party asked what language this was in and whether it had a mortal word. A vision of Throngore appeared: a glowing blue ball surrounded him, disappeared, and a blue object fell to the floor. A silver dragon picked it up and said, "that's it, now this is done." All animals speaking for Cacophony died except one that told Morgana what it was called. + +The automatons became active. Geldrin woke one. The creature in the dome was in their charge, and they would become aggressive if needed. The notes say they had protected the creature for 1037 years, then also 1017 years, and that it was for a prison close by. It was still charging and had "2" time left. Both powered down. + +The last door led to a dark black rock swamp and a trophy-room-like chamber with two rows of empty plinths. The plaques had been scratched off, but Morgana cast Mending on them. The restored plaques named the Crown of Mooncoral; a picture of three trees with fletching arrows on the middle one; the Blood of Noxia; the Chains of Blackthorn; the Heart of Tremon; a dress made as a gift from survivors of Sunplane; "His first gift to me"; Lion's Blessing; the Crown of Thorns from the First Massacre; `Musings and Thoughts on the Location of the Lost`; `Shaman Blackstorm's Tome on the Significance of the Number 5`; and `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`. + +Geldrin had one of the listed items or books. The narrator put it on its plinth, causing a rumble that knocked Geldrin back and made light appear above the chains plinth. The sphynx baby was named Bynx. After pushing the chains plinth the wrong way and noticing writing, the party put the chain from the locket on it, causing the tree plinth to light. Its plaque was removed, revealing a stone arrow. Removing the arrow made the light go out. In the bedroom, light now shone above the nightstand. A book there had not been present before. It was blank, but indents showed it had been written in. Magical fire burned in the fireplace. Makeup revealed words in the book, apparently Avalina's diary. + +The last diary pages described getting sick, a cell in every promise being a flavour, a spiral of intentions continuing from good to bad, people giving things away and becoming shadows of themselves, worry for daughters, too much given away, and loved ones dead. The writer asked the daughters to close the place off and did not want the others to get things. The daughters were teenagers at the time. Back in the plinth room, placing Noxia slime on its plinth did nothing. + +Another diary section, on the Anvil pages, said the writer was unhappy about having to live up to her family's promises, disliked her forced mate, cryptically referred to someone she liked, and described marriage as only to keep the Council of Gold happy. Placing the book on the musings plinth lit the Heart of Tresmon. A shard placed there lit the Blood of Noxia. Eventually everything else lit. The dress plinth yielded a door handle that felt `[light/like]` and connected to the door. It unscrewed and had a hollow cap, perhaps to fill with water. The Blood of Noxia looked as if it was trying to escape. + +Back in the empty room, the party worked out what was behind the odd brick. A handle started vibrating; the stone no longer held, and the handle glowed cold. In the bathroom, they worked the shower. Filling the handle with water made it glow. The invisible handle was removed and was itself invisible, creating something on the design. Arc suggested fetching tongs from the kitchen. Nothing happened when it was put in the fire, leading to the question of whether it was the air one. Taking it to the flying room made it glow. + +On a second round, Morgana felt writing on a piece of paper, fear, and resentment. She pulled out a random paper as if she knew it was there. It read, "Nope, not going there. Going to use grandson's old trick." The notes preserve the uncertain name Taotli?. The party found his picture in the flying room, and the handle was inside. They charged it in the bedroom fire. Putting the handles in the wall made the wall sink into the floor. An archway appeared in the back wall with a glass clock on it. The space was empty except for the Spear / Arrow of Sierra, a central box, and an open coffin door. The humanoid of the barrier from the prison room disappeared. + +A conch-like control item had three once-per-day effects when blown: Control Water, a song of thrumming, and Conjure Water Elemental. It also granted or involved Create Water, underwater breathing, speaking to sea creatures, and underwater movement. A chest showed a well wall without a bottom, causing overwhelming vertigo. Cold entered the room. Rimefrost shrieked for "little dragons." The party killed the ice elemental. A fire elemental in a rip under the fireplace seemed evil. The party attempted to put the elemental puzzle into an elemental ball. + +The notes then repeat the Day 47 marker. A Skygate-type portal had runes on it; three seemed to be places, including a glittering-type word, a cryptic-type word, and an unclear third word, perhaps "Original something." The frost elemental prison runes had completely disappeared as if never there. Diary entries described fighting by Dunner people. The writer and Argentum wanted to help Garadwal. They fought elementals in the name of `[Hafelius?]`. Garadwal had trouble fighting them, while Metatous seemed more powerful than he should have been. After a two-week break, Argentum died, having fallen to the armies. + +At 18:00, Geldrin investigated the portal and worked it out. At 22:00, another diary entry said a symbol was similar to "glittering." They had hidden the whole place with them, described as petty. The writer was unsure how Argentum was taking it. Allegations against her were valid, but taking the city was extreme. A discussion preserved as "Taler" involved the actual word for captive, prisoners assembled, disagreement over official alternatives, Bronze refusing her suggestion, and wanting an alternative for Garadwal. The writer wanted to believe intentions were good but could no longer see the path. + +Arc asked Dothral to set it free. The party teleported to the frost prison. Ice blew away. The elemental spoke to Dothral; when told the party wanted to come in, it stopped blowing and they headed inside while lightning crackled in the distance. Invar found it difficult to connect to Shotcher. Behind the ice, two corridor doors had a lightning bolt and a snowflake, followed by two plain handleless doors. At the end of the corridor was a T-junction and a painting with a thick wheel of compass points, sun and moon in the middle, symbols for the compass points, and scraping or scratches where something had been rubbed off between the points. A flute sounded from the left. + +To the right, an elaborate door bore danger symbology. Turning right changed the symbols to say, "Don't go down here." Darkness lay that way, and the corridor felt as if it went farther. At the corridor end, where there was no ice, a closed door had black hardened tree sap or rubber around the frame. A feeling called from behind it. Dirk asked the ancestors what would happen if the party replaced the elemental and sensed woe. Further conversation suggested some lies. Dirk used Clairvoyance and saw a semicircular room with an apparently empty central plinth and rubber between all flagstones. This oracle area of the dome aligned with the pipe from Timnor's vision. The being said he was no longer in this plane. + +At another prison, a standard carved door showed eight serpents with different heads: goat, lion, and bull among them. The door at the end was iced over, with no rubber. Lightning seemed to come from this side of the door. Dirk spoke Aquan. The entity knew Dirk's name, expected him to set it free, asked whether it was safe, and wanted to make sure it was the right thing. It could think and talk to some elementals. The notes suggest Lady Harthall had the ice thing trapped and may have put it into a fire elemental. It was weakened by the prison, could affect things through a gap, and had a cellmate throwing ice around. It had been tricked into the prison. Before releasing it, the party learned there were other angry prisoners. + +One dark door now held nothing; it had been a prisoner of a different time. Another dark door led to an ancient dwarven hold, not a settlement. Opening it revealed a massive shaggy blue aurora. Geldrin promised to return and let it out when he learned how to power the dome without all the elementals. The cellmate had been chosen to turn off the gusts and could turn them back on when he pleased. + +At the snake door, the party chipped at the ice and one head spoke. It knew the door at Harthall's lab for Enis and needed a Harthall-style door handle and archway. The goat was Dorion, the bull was Tim, and the lion was Geoffrey. The door's conditions were to use the arch, oil the hinges, and not break it. It called Dotharl the door guard for this prison. Geoffrey wanted a new body before allowing them in. The party agreed not to take or break anything. Inside, the walls were intricately carved with faces showing different expressions, except for eyeballs or hair. + +The floor was a mosaic of seaward stone, purple crystal, and other materials. The archway matched the Harthall lab archway, and the prison symbol said "home." A seaward-stone table had veining like an unrecognised map. A hat stand held a cloak that made the wearer invisible. Bookshelves held books about the moon and a nursery rhyme book about Valententhide. One unknown-author book, `Palace of Valententhide`, said her palace was forged in the deep sky, in a domain outside mortal realms, on the crimson. Its walls were faces she did not have, the air was unbreathable unless visitors brought their own, and when the gods were banished to another plane, Valententhide used a loophole to stay at this palace. + +Geldrin felt urged to put the book on the table. The table's blue veins morphed to look like the moon. The nursery rhyme book showed a castle, perhaps in Harthall escape style. The coat stand had invisible eyes on it. The cloak, when invisible, showed moving starscapes to observers but not to the wearer. When Geldrin placed other books on the table, Enis's spellbook made it blank, then showed sleeping men, then a girl in a dome, then an endless well with more at the bottom, then two grinning figures guarding a door with weapons, perhaps a picture of Enis's soul. A Mythos spellbook showed a pyramid, temples beside a sphynx, an egg, and Garadwal. + +A tome of dome making displayed strange curving patterns, a "magnet curvature pattern," Grand Towers, a crystal, mountains, the atmosphere, and a giant flaming rock. Geldrin's spellbook showed a massive dragon, Perodita, now with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the windows. Other pages showed trees, then nothing, then a two-lodge logging area. The table spoke the words on the page. Another image showed a dragon lady and two dragon men, possibly silver, white, or gold. `Flight of the Gold` showed an enormous palace with tiny dragons flying around, a snow screen, flowers and trees, no snow, and a temperate appearance. + +The archway's "glittering" rune glowed, and men stepped through the portal. One was human-ish and old, with golden blond hair, a very long moustache, golden eyes, ornate old clothing, sandals, and a walking stick. He asked where the scroll was and named himself Aurum Prudence. He disliked Dotharl. He said the only portal activation in the last thousand years had been the cat. He thought the scrolls had all gone with them when everything was crazy. Pacts had been broken, perhaps Harthall and Icefang, and they had decided to take charge and move the city. + +Aurum suggested the party come back with him so he could show them around, after which they could decide whether he could have the scroll. The party took the cloak. They went to Snowscreen, where the archway had different runes. The building was enormous, with grass and woodlands below. It was a warm patch and blackout time, but it was midday. The Tri-moon was visible at the wrong time. A copper dragon landed nearby and entered the building. The city was now called Sunsoreen. A door was carved with a female sphynx face identified as Bynx's mother. Aurum took the party inside the palace to the council first. The council doorway was enormous and impressive, carved with a white dragon and sphynx. Geldrin had the scroll explaining how they moved the city to the other side of the earth. + +Stained glass appeared to show dragon theory: a white dragon surrounded by gold dragons. Five thrones stood in the middle. The council figures included a female elf or human to the left of the white dragon, a golden dragonborn, an unclear figure with odd hair, and to the right a dwarf with a massive golden beard covered in statue symbols. Sophus Holed was linked to spiritual things. Aurum Prudence sat in one of the free chairs. An elf or human asked why the party wanted an audience with the Council. + +The Council said they had left because they did not want to be involved in the dome, and this side of the world was less populated. They thought the party should take someone out. Quelling emotions began with them. They disliked Dotharl, calling him an abomination and very selfish. They wanted the scroll and asked what the party wanted in return. Cindy escorted the party to rooms while wearing Dunner-coloured clothing. She said there were many laws, new ones every day, and people had to remember them. Her clothing colour came from her mother having lived with the Dunners. Everyone had to have a job, or train for one. + +The Sunsoreen council was recorded as Hayhearn Frowbrind, a white leader; Aurum Prudence, gold, expansion and protection; Sophus Holed, gold dragonborn, justice and laws; Orius [Nosheer?], dwarf gold, creation and agriculture; and the Silent One, an air genasi silver dragon associated with knowledge and information. The council had sat for the last few hundred years. Seven settlements within one hundred miles were under the Sunsoreen umbrella and had been absorbed. + +A TV orb glowed, showing a copper dragon and claw or clew marks. "The Shadow" wanted information. The party wondered whether it was nice and whether they could get it out. Seven or so copper dragons and perhaps one hundred or fifty slaves were mentioned. Dotharl saw an orb and realised the party was being watched. The Tri-moon was out. The skull of Tresmon vibrated. A copper-and-white-haired "half-elf" and a huge red dragonborn appeared; the dragonborn grabbed the male and arrested them. In a dragon-scale courtroom with a gold dragon, outbreeding was now outlawed, and both were found guilty. + +The party saw them in an elven town square with a gold dragon on a pile of gold. Cindy was called back, gave bath directions and passes, and said there had been no "murders" in the last two or so years, though people were still killed. Inbreeding with lower races was allowed. Blue and red dragons were attacking Sunsoreen more than the others. The red dragonborn's presence was requested, and the party needed to testify against the troublemakers. + +The party followed to a new place through an internal market, where townsfolk felt as if they were walking on eggshells. The courthouse did not seem designed for dragons despite having forty-two courtrooms in that building and more than two hundred across the city. At 17:00, the judge was a copper dragon wearing a magistrate wig: the Right Honourable Charming. Cindy was tried for seditious aiding and abetting leaving Sunsoreen, tampering with visitor quarters, displaying terrorist messages, passing carrots, and spreading chaos across the lands. The court asked whether the orb gave illicit messages or whether both patrons were talking out of turn. The narrator was called Elliana Harthall. The Great Lorekeeper had provided the information. The questions were not relevant to the trial and asked where the narrator came from, whether they had pets as a child, and why there were so many teddy bears. + +The court did not want to question Dotharl because they did not question machines, but questions appeared: "Help me, Grandson." The judge became flustered. All questions came from the Lorekeeper, and trials did not usually proceed this way. The outside door opened and four observers entered: two elves, one human, and one copper-haired person. Three invisible hooded figures entered as well. Dotharl called them out, and a peacekeeper struck him. One invisible figure was hit and became a copper dragon; another grabbed Cindy and disappeared. The judge transformed into dragon form, arrested both invisible figures, and the manacles turned them humanoid. The judge had suspected the party, but Dotharl's actions changed his mind, and he sent them back to their quarters. + +The notes record that Dothril / Dotharl had a familial tie to an elemental. Bynx explained that where pure elemental planes meet, they combine. When the party asked if the council were ready, two gold dragonborn escorted them. Only Hayhearn Frostwind and Aurum Prudence were present. The Lorekeeper was unavailable. Hayhearn disliked being asked where their information came from. She sent Aurum to fetch records; he muttered that it was not like it used to be. When the narrator questioned why the trial questions were irrelevant, Hayhearn asked who the narrator thought they were. According to Sunsoreen records, the narrator was Elliana Harthall. + +Aurum left, and Hayhearn said that explained a lot. Bynx cast Truesight and found his sister was no longer there; there was no trace of her in the white dragon. Aurum returned with the rest of the council, and the empty chair was now filled by a silver-skinned human. The council proposed that Elliana stay and they would help the narrator find out what they had lost. The party did not trust this. The party demanded release of all Sunsoreen citizens; the council declined. Hayhearn invoked guest rights and tried to arrest them, but Aurum Prudence objected forcefully and told the party to leave. Many people then ran to the chambers with papers for an emergency law-making meeting. + +The party returned to the frost prison. Geldrin tried to turn the portal off but accidentally activated another location: a square black obsidian room with no doors. Geldrin found a door, placed a hand on it, and opened it into a black corridor in Valententhide's house. The portal had one charge left, shared between portals and resetting once a day. When the party opened the portal and tried to go through, they saw Valententhide and passed out. Three went through before the portal closed. Morgana heard the narrator and felt cold hands on her shoulder. + +The party then used the right blade to go to Harthall's lab. They gave the ice elemental ball to the fire elemental in the fireplace, cast Dispel Magic on the rift in the fireplace, and closed the portal to the fire elemental. Page 245 then begins Day 48, so Day 47 is complete at this point. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Morgana, Lady Harthall, the elf taking woodcutters from Pinesprings, Platinum, Squeal, Kasha, Provista, Argathum, Dirk, Geldrin, Avalina, Corundum, Argea?, Cetiosa, Enis, Mr Boorning, Joshua / Dothral / Dotharl / Dothril, Invar, Joy, Errol, Everard, Uncle Leeg, Daddle, Mum, Hannah Joy, Bellborn?, Grand Towers elves, Noxia, Sierra, Mr Moreley, Laylistra, Elliana Harthall, Greensleeves, Garadwal, Igraine, Cacophony, Throngore, Bynx, Tremon / Tresmon, Blackstorm, Rimefrost, Argentum, Metatous, `[Hafelius?]`, Taler, Bronze, Arc, Shotcher, Dorion, Tim, Geoffrey, Valententhide, Perodita, Aurum Prudence, Icefang, Sophus Holed, Cindy, Hayhearn Frowbrind / Hayhearn Frostwind, Orius [Nosheer?], the Silent One, the Shadow, the Right Honourable Charming, the Great Lorekeeper / Lorekeeper, and Taotli?. + +Groups and factions mentioned include the party, adventurers, woodcutters from Pinesprings, silver dragons, Harthall daughters, skeletons, Tarnished or jade-transformed silver by implication, stuffed humans / gnomes / halflings, goliaths, sphynxes, elves, Bellborn?, drow or green dragon figures, Dothral automatons, servants to Igraine, animals speaking for Cacophony, the Council of Gold, survivors of Sunplane, Dunner people / Dunners, elementals, prisoners, Harthall and Icefang pact parties, Sunsoreen's Council, copper dragons, gold dragons, white dragons, red dragons, blue dragons, dragonborn, slaves, peacekeepers, citizens of Sunsoreen, observers at Cindy's trial, and invisible hooded intruders. + +Places mentioned include Harthall's lab, the forest, Pinesprings, a field of white roses, prison rooms, Enis's lab, `[unclear: aprosur]`, the corridor with `help you Everard` runes, an elvish-town room, rose-field illusion room, the stone-door room, Grand Towers before the other towers, desert badlands, the Barrier, Laylistra's room, the school entrance chamber, Freeport?, Gar, the purple dome, the dark black rock swamp trophy room, Sunplane, the bathroom, flying room, bedroom, Harthall lab archway, frost prison, Skygate-type portal, Timnor's vision / pipe alignment, ancient dwarven hold, the elemental planes, Valententhide's palace in the deep sky / on the crimson, Snowscreen / Sunsoreen, the palace, the council chamber, Sunsoreen's internal market, courthouse, elven town square, guest rooms, square black obsidian portal room, and Valententhide's house. + +Creatures and creature-like beings mentioned include the magical black green-eyed cat, the sphynx / Bynx, the goliath baby, a crab in Invar's bag, the lion-headed elven body, the huge black dragon with flies, the drow or green dragon, a copper dragon, a dragon lady and dragon men, a white dragon, red and blue dragons, a fire elemental, ice elemental, frost elemental, massive shaggy blue aurora, elemental prisoners, insects speaking for Cacophony, and invisible hooded figures, one of whom became a copper dragon. + +# Items, Rewards, and Resources + +Items, documents, and physical resources mentioned include the bag of holding, Lady Harthall's diary, altered picture with Draconic `Preserve` rune, alchemist's mushroom table, obsidian plinth, urn of Argathum, white rose, amethyst orb, red ribbon, dark wooden flute, silks, crystal jade dust, Harthall-carved throne, skull decorations, portraits, key taken by Mr Boorning, forcefield, rocking horse, vanity, stuffed "bears," rack of flutes, sky bed, dragon bed, boxed key with possible Celestial words, tea set papers, memory orb, coin of uncertain origin, different stone / hollow flagstone box, glass shard, Goblin statue reading "Time flies," `Tunnels of Love`, white rose powder, Mr Moreley's chest, coral bathroom scratches, Harthall robe and crests, kitchen door handle, Greensleeves note, silver necklace with green jade heart pendant, invisible handle, magical doorknobs, artery from doorknob hole, Wall of Force, blue object from Throngore vision, plinth plaques, Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane survivor dress, Lion's Blessing, Crown of Thorns from the First Massacre, `Musings and Thoughts on the Location of the Lost`, `Shaman Blackstorm's Tome on the Significance of the Number 5`, `The Flight of the Gold [Cacacity/Cacriting], Its Arrival`, chain from the locket, stone arrow, Avalina's diary, Anvil pages, shard, hollow-capped handle, shower, tongs, paper reading "Nope, not going there. Going to use grandson's old trick," Spear / Arrow of Sierra, box, coffin door, conch-like control item, elemental ball, portal runes, compass/sun/moon painting, black sap or rubber, Harthall door handle / archway, seaward-stone table map, invisibility cloak with starscapes, books about the moon, nursery rhyme book about Valententhide, `Palace of Valententhide`, Enis's spellbook, Mythos spellbook, tome of dome making, Geldrin's spellbook, the city-moving scroll, TV orb, skull of Tresmon, magistrate wig, manacles, emergency law papers, right blade, ice elemental ball, and fire-elemental rift. + +Spells, visions, and magical effects mentioned include altered-preservation magic on the picture, memory fog and loss, banishing trap, magical forcefield, flute-music compulsion, magic cleaning failing, rose-field illusion, Hannah being erased from existence, memory orb scenes, disappearing room contents, white rose powder visions, ceiling turning into Milky Way then an eye, Barrier passage, invisibility, moving or active magical rooms, Wall of Force against fireballs, Cacophony's speaking-animal tax-collection omen, automaton activation, Mending on plaques, plinth-light puzzle, makeup revealing hidden diary writing, elemental handle charging, water/fire/air handle puzzle, conch powers, vertigo well, ice elemental killing, elemental prison rune disappearance, portal activation, teleportation, Clairvoyance, Aquan communication, Bynx's Truesight, Law / Lorekeeper questioning magic, manacles forcing dragon intruders into humanoid form, portal charges, seeing Valententhide and passing out, Dispel Magic, and closure of the fire elemental portal. + +Strategic resources and plans mentioned include the clue that an altered picture once included a missing third girl; Platinum's claim that the locked door was not present when she visited with adventurers; the implication that whatever erased memories missed the door; the clue that Harthall had two daughters; the note hiding items in a cell and a false teddy; Bynx's memory of a lion-headed "real daddy"; the Harthall / Icefang broken pact thread; the city-moving scroll desired by Aurum and Sunsoreen; Sunsoreen's absorbed settlements, constant new laws, job/training requirements, and outbreeding laws; the Lorekeeper's inaccessible information source; the records naming the narrator as Elliana Harthall; Aurum Prudence's intervention to let the party leave; the once-per-day shared portal charge; and the successful closure of the fire elemental rift. + +# Clues, Mysteries, and Open Threads + +The altered white-rose picture and its `Preserve` rune imply a third girl was removed or hidden from memory or history. The identity of the missing girl and how she relates to Elliana, Joy, Hannah, and Harthall's daughters remains unresolved. + +The note about "No chart," the forest release, and the adventurers who took Lady Harthall's diary are unexplained. + +The mushroom table message "Friend fleshbag set him free" and the statement that the children are elsewhere now connect to earlier mushroom and Limos Vita threads, but the freed entity and the children's location remain unclear. + +Argathum's urn, the offering flute, the white rose, the amethyst orb, the frosty tear, and the phrase "In her strange bones laid bare" suggest a major personal sacrifice or failed relationship, but the full story is incomplete. + +The statues turning silver into crystallised jade dust, the green jade heart pendant, prior jade purchases, and the narrator being turned green by jade remain connected but unresolved. + +The sentient door's brothers at Enis's lab and `[unclear: aprosur]`, its preference for the narrator in a dress, Mr Boorning's key, and Harthall's unnamed baby daughters remain active clues. + +The mind fog, the voice telling Invar "I will not lose you again my son," Dirk's vision of Joy, Errol's warning that information was being lost, and Platinum's belief that the memory wipe missed the door all point to ongoing memory-erasure machinery. + +The room with the goliath song, flute, stuffed "bears," rose-field window, labelled tea cups, and Hannah Joy confirms Enis's sacrifice of Hannah so Joy might live, but also that Joy could not exist if Hannah did not. The consequences for Joy, Hannah, and Enis remain unresolved. + +The stone door recognised sons of fire and stone, and the room held a memory orb showing Grand Towers, seven elves, whorls of wind, and a lion-headed elven body. Bynx's identification of the lion-headed figure as "real daddy" is an open identity clue. + +The desert-badlands room showed Noxia fighting Sierra, while later plinths named the Blood of Noxia and Spear / Arrow of Sierra. How these artifacts and the battle relate remains unresolved. + +The black dragon with flies, drow or green dragon attacker, jar, beautiful elf, Barrier crash, and statement "that's your form now" appear to explain a transformation and Barrier passage, but the figures are not fully identified. + +The girls' room named Elliana and involved a ribbon, doll, urn, and the phrase "poopoo head." This may connect the narrator to Harthall's daughters and the missing preserved girl. + +Cacophony's tax-collector claim, Throngore vision, blue object, silver dragon, and future payment due remain unresolved and may mark a supernatural debt. + +The trophy plinth list is a major artifact index. Some listed items were present or represented, but many remain unknown: Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, survivor dress from Sunplane, Lion's Blessing, Crown of Thorns from the First Massacre, Shaman Blackstorm's number-five tome, and Flight of the Gold. + +Avalina's diary and Anvil pages suggest people gave away too much, became shadows of themselves, lost loved ones, and were trapped by family promises, forced marriage, and the Council of Gold. These pages may explain the emotional quelling and Sunsoreen politics but are incomplete. + +Rimefrost's cry for "little dragons," the killed ice elemental, the fire elemental rift, the ice elemental ball, and the closed fire portal connect the elemental puzzle to the prison-power system but leave the final safe power source unresolved. + +The frost prison, the dark door to an ancient dwarven hold, the massive shaggy blue aurora, the semicircular oracle room, and prisoners Dorion, Tim, and Geoffrey indicate multiple elemental or time-displaced prisoners. Geldrin promised to free at least one once the dome can be powered without elementals. + +The `Palace of Valententhide` book reveals Valententhide's deep-sky palace, unbreathable domain, wall of faces, and loophole after the gods' banishment. The party's later accidental portal to Valententhide's house and cold hands on Morgana show this thread remains immediate. + +Aurum Prudence and Sunsoreen revealed a city moved to the other side of the earth after broken pacts, with the Tri-moon visible at the wrong time and the Council enforcing absorption, new laws, job mandates, outbreeding controls, and information control. Whether Sunsoreen is ally, authoritarian remnant, or active threat remains open. + +The Lorekeeper supplied impossible information about Elliana Harthall, teddy bears, pets, and Dotharl's "Help me, Grandson" message, but could not be met. Its nature and source of knowledge are unresolved. + +Bynx's Truesight found his sister absent from the white dragon with no trace. The sister's identity, disappearance, and relation to the white dragon and Sunsoreen council remain unresolved. + +The council offered to help Elliana find what she had lost if she stayed, refused to release citizens, and attempted an arrest under guest rights. Aurum's objection prevented immediate capture, but emergency law-making followed. + +Day 48 begins immediately after this with Bynx growing again, Errol sent toward Dirk's father, Azureside travel, and the Dunners' dragon problem; because no Day 49 boundary is visible yet, Day 48 remains unprocessed. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 58d8c85..1093157 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -46,6 +46,9 @@ sources: - [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, The Mage, Visage Envoi. - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. - [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. +- [Bynx](people/bynx.md): Bynx, sphynx baby, goliath baby. +- [Sunsoreen / Snowscreen](places/sunsoreen.md): Sunsoreen, Snowscreen, Snow Screen. +- [Sunsoreen Council](factions/sunsoreen-council.md): Council of Gold, Sunsoreen Council, Hayhearn Frowbrind, Hayhearn Frostwind, Aurum Prudence, Sophus Holed, Orius [Nosheer?], The Silent One. - [The Mother](people/the-mother.md): The Mother, Mother. - [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, Perodita, The Choking Death, The whispers in the dark, Mother of many. - [Basilisk / Busalish](people/basilisk-busalish.md): Basilisk, Basaluk, Basalisk, Busalish, Busalish's guild. diff --git a/data/6-wiki/clues/day-47-coverage-audit.md b/data/6-wiki/clues/day-47-coverage-audit.md new file mode 100644 index 0000000..c3416d2 --- /dev/null +++ b/data/6-wiki/clues/day-47-coverage-audit.md @@ -0,0 +1,23 @@ +--- +title: Day 47 Coverage Audit +type: coverage-audit +sources: + - data/4-days-cleaned/day-47.md +--- + +# Day 47 Coverage Audit + +| Extracted subject | Coverage outcome | +| --- | --- | +| Bynx / sphynx baby / goliath baby | Standalone [Bynx](../people/bynx.md). | +| Sunsoreen / Snowscreen | Standalone [Sunsoreen](../places/sunsoreen.md). | +| Sunsoreen Council, Council of Gold, Aurum, Hayhearn, Sophus, Orius, Silent One | Standalone [Sunsoreen Council](../factions/sunsoreen-council.md). | +| Valententhide palace, house, deep-sky domain, wall of faces | Existing [Valententhide](../people/valententhide.md) updated. | +| Elemental prisons, frost prison, Dorion, Tim, Geoffrey, aurora prisoner, fire rift | Existing [Elemental Prisons](../concepts/elemental-prisons.md) updated; minor names also in [Minor Figures from Day 47](../people/minor-figures-day-47.md). | +| Joy / Hannah / Enis sacrifice | Existing [Joy](../people/joy.md) updated; Hannah in minor figures and open threads. | +| Garadwal, Argentum, Metatous, lion-headed father clue | Existing [Garadwal](../people/garadwal.md) updated; Bynx page and minor figures cover details. | +| Argathum, Provista, Corundum, Argea?, Cetiosa, Mr Boorning, Everard, Greensleeves, Cacophony, Throngore, Blackstorm, Rimefrost, Taotli?, Shotcher, Cindy, Charming, Lorekeeper, The Shadow | Rollup [Minor Figures from Day 47](../people/minor-figures-day-47.md). | +| Harthall lab rooms, Pinesprings, Baylen/Baylain Accord, Freeport? dining room, dark swamp trophy room, ancient dwarven hold, black obsidian room | Rollup [Minor Places from Day 47](../places/minor-places-day-47.md). | +| Urn/offering, jade dust, memory orb, white rose powder, trophy artifacts, conch, elemental ball, invisibility cloak, city-moving scroll, TV orb, right blade | Rollup [Minor Items from Day 47](../items/minor-items-day-47.md). | +| Altered picture, missing third girl, Harthall daughters, narrator as Elliana Harthall, Lorekeeper source, Sunsoreen citizen release, emotional quelling | Added to [Open Threads](../open-threads.md) and relevant standalone pages. | +| Day 48 pages 245-247 | Intentionally deferred; no Day 49 boundary is visible, so Day 48 remains page transcriptions only. | diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index c2805a1..068f1ce 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -7,7 +7,7 @@ aliases: - barrier batteries - elemental batteries first_seen: day-14 -last_updated: day-44 +last_updated: day-47 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -21,6 +21,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-47.md --- # Elemental Prisons @@ -49,6 +50,10 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Day 43 says Hephestos was only his soul, wanted a pact, and may have been asked to attack the dome; Trixus could help with memories but a spell inside the Barrier interfered. - Cardonald's Day 43 teleportation-circle list included seven prisons with no defences, a lab with uncertain defences, Grand Towers factory/control/meeting lounge, Menagerie, Ashhellier, and five pylons. - Day 44 recovered historical material on emotional elimination, automations, and a possible core or sphere network from the old mage school. +- Day 47 Harthall lab records show frost-prison runes disappearing, an elemental puzzle placed into an elemental ball, and an ice elemental ball later given to a fire elemental before the fireplace rift was dispelled and closed. +- The frost prison contained lightning and snowflake doors, handleless doors, black sap or rubber seals, a semicircular oracle room, an iced snake door, and prisoners or door heads named Dorion, Tim, and Geoffrey. +- One dark door led to an ancient dwarven hold containing a massive shaggy blue aurora; Geldrin promised to return once the dome could be powered without exploiting elementals. +- Bynx explained that where the pure elemental planes meet, they combine. ## Timeline @@ -64,6 +69,7 @@ The elemental prisons are ancient containment systems that may hold or exploit p - `day-42`: Ashkellon exposes multiple prison rooms and confirms Trixus, Steven, Hephestus, the copper dragon, and Emri-related soul-part issues. - `day-43`: Trixus is released, Hephestos's soul status is discussed, and the Riversmeet memory-interference spell is located. - `day-44`: Riversmeet school history reveals old emotional-elimination and automation research connected to later prison and Barrier problems. +- `day-47`: The party explores frost-prison structures, negotiates with prisoners and door heads, learns more about dome power dependency, and closes the fire elemental rift. ## Related Entries @@ -83,3 +89,5 @@ The elemental prisons are ancient containment systems that may hold or exploit p - Which prison did The Guilt accidentally open, and can its help be trusted? - Which of the Ashkellon barrier rooms were prisons, protections, or both? - Where are Emi's missing soul-parts or emotions, and can Trixus restore them? +- Which Day 47 frost-prison beings are prisoners, guards, door mechanisms, or displaced entities? +- Can the dome be powered without the elementals, as Geldrin promised? diff --git a/data/6-wiki/factions/sunsoreen-council.md b/data/6-wiki/factions/sunsoreen-council.md new file mode 100644 index 0000000..7fec5f3 --- /dev/null +++ b/data/6-wiki/factions/sunsoreen-council.md @@ -0,0 +1,52 @@ +--- +title: Sunsoreen Council +type: faction, ruling council +aliases: + - Council of Gold + - Sunsoreen Council + - Council +first_seen: day-47 +last_updated: day-47 +sources: + - data/4-days-cleaned/day-47.md +--- + +# Sunsoreen Council + +## Summary + +The Sunsoreen Council is the ruling body of [Sunsoreen](../places/sunsoreen.md), apparently descended from or connected to the Council of Gold and responsible for moving the city away from the dome crisis. + +## Members and Roles + +| Name | Recorded Role | Notes | +| --- | --- | --- | +| Hayhearn Frowbrind / Hayhearn Frostwind | white, leader | Invoked guest rights, tried to arrest the party, and disliked questions about information sources. | +| Aurum Prudence | gold, expansion and protection | Entered through the portal, wanted the scroll, disliked Dotharl, and later objected to the party's arrest. | +| Sophus Holed | gold dragonborn, justice and laws | Linked to spiritual things and Sunsoreen law. | +| Orius [Nosheer?] | dwarf gold, creation and agriculture | Name uncertain. | +| The Silent One | air genasi silver dragon, knowledge and information | Connected to the council's knowledge role. | +| Silver-skinned human | unknown | Occupied the formerly empty chair when the full council returned. | + +## Known Details + +- The council says it left because it did not want to be involved in the dome and because its side of the world was less populated. +- It wants the city-moving scroll held by Geldrin. +- It claims emotional quelling began with them and strongly dislikes Dotharl as an abomination. +- It rules through constant new laws, required jobs or training, absorbed settlements, outbreeding controls, and courts. +- It refused the party's demand to release all citizens. +- It offered to help Elliana find what she lost if she stayed. +- It moved to emergency law-making after Aurum told the party to leave. + +## Related Entries + +- [Sunsoreen](../places/sunsoreen.md) +- [Bynx](../people/bynx.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Minor Figures from Day 47](../people/minor-figures-day-47.md) + +## Open Questions + +- What is the Lorekeeper, and why could it supply questions about Elliana's childhood and Dotharl's family tie? +- Why does the council's record identify the narrator as Elliana Harthall? +- Is the council's emotional quelling related to Avalina's diary and the old Harthall work? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index a3d13ec..592c75f 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -34,6 +34,7 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md --- # Pentacity Campaign Wiki @@ -54,6 +55,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [NPC Status](people/status.md) - [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md) - [Day 46 Coverage Audit](clues/day-46-coverage-audit.md) +- [Day 47 Coverage Audit](clues/day-47-coverage-audit.md) ## People @@ -85,12 +87,14 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Bushhunter/Bughunter](people/bushhunter-bughunter.md) - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) +- [Bynx](people/bynx.md) - [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md) - [Lady Thorpe](people/lady-thorpe.md) - [TJ Biggins](people/tj-biggins.md) - [Lady Yadreya Egrine](people/lady-yadreya-egrine.md) - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md) - [Minor Figures from Day 46](people/minor-figures-day-46.md) +- [Minor Figures from Day 47](people/minor-figures-day-47.md) ## Places @@ -108,6 +112,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md) - [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md) - [Minor Places from Day 46](places/minor-places-day-46.md) +- [Sunsoreen / Snowscreen](places/sunsoreen.md) +- [Minor Places from Day 47](places/minor-places-day-47.md) ## Factions @@ -117,6 +123,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Mage Judicators/Justicars](factions/mage-judicators-justicars.md) - [Underbelly](factions/underbelly.md) - [Sahuagin/Fish Men](factions/sahuagin-fish-men.md) +- [Sunsoreen Council](factions/sunsoreen-council.md) ## Items @@ -130,6 +137,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Hearthwall Auction Lots](items/hearthwall-auction-lots.md) - [Void Spheres](items/void-spheres.md) - [Minor Items from Day 46](items/minor-items-day-46.md) +- [Minor Items from Day 47](items/minor-items-day-47.md) ## Concepts and Events diff --git a/data/6-wiki/items/minor-items-day-47.md b/data/6-wiki/items/minor-items-day-47.md new file mode 100644 index 0000000..1fc23e7 --- /dev/null +++ b/data/6-wiki/items/minor-items-day-47.md @@ -0,0 +1,34 @@ +--- +title: Minor Items from Day 47 +type: rollup +sources: + - data/4-days-cleaned/day-47.md +--- + +# Minor Items from Day 47 + +| Item or Detail | Day 47 details | Coverage | +| --- | --- | --- | +| Altered picture with `Preserve` rune | A third girl was removed or hidden from the white-rose picture. | [Open Threads](../open-threads.md). | +| Argathum's urn, white rose, amethyst orb, red ribbon, dark wooden flute | Offering-like arrangement in a newly discovered prison room. | Rollup. | +| Crystallised jade dust | Silver appeared to be turning into jade. | Open jade thread. | +| Key from Mr Boorning | Sentient door said Mr Boorning left with a key. | Rollup. | +| Stuffed "bears" | Actually humans, gnomes, and halflings; bore the phrase "Here always Never Nowhere all Harth." | Rollup / inscription. | +| Dragon-bed key | Key on the dragon bed's bottom with six possible Celestial words. | Rollup. | +| Memory orb | Found in a hollow flagstone; showed Grand Towers, seven elves, wind, and a lion-headed body. | Rollup and [Bynx](../people/bynx.md). | +| `Tunnels of Love` | Dwarf porn found on a dragon-sized bed. | Rollup. | +| White rose powder | Smelled of visions. | Rollup. | +| Green jade heart pendant | Silver necklace with jade heart pendant found in a false-bottom cutlery box. | Rollup / jade thread. | +| Invisible handle | Found under a dining table loose stone and later used in the handle puzzle. | Rollup. | +| Blue object from Throngore vision | Fell after a glowing blue ball vanished; silver dragon said it was done. | Rollup / open thread. | +| Trophy plinth list | Names Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, Crown of Thorns, and books. | Rollup / artifact index. | +| Stone arrow and Spear / Arrow of Sierra | Stone arrow found behind plinth plaque; later archway room had Spear / Arrow of Sierra. | Existing [Searu's Arrow](searus-arrow.md) may be related but not merged. | +| Avalina's diary and Anvil pages | Revealed illness, promises, daughters, forced mate, and Council of Gold marriage pressure. | [Open Threads](../open-threads.md). | +| Conch control item | Once-per-day Control Water, song of thrumming, and Conjure Water Elemental; also water-breathing / sea-creature speech / underwater movement details. | Rollup / party resources. | +| Elemental ball / ice elemental ball | Used to contain elemental puzzle and later given to fire elemental. | [Elemental Prisons](../concepts/elemental-prisons.md). | +| Invisibility cloak with starscapes | Made wearer invisible and showed moving starscapes to others. | Rollup / party resources. | +| `Palace of Valententhide` | Book describing Valententhide's deep-sky palace, crimson domain, wall of faces, and gods-banished loophole. | [Valententhide](../people/valententhide.md). | +| City-moving scroll | Geldrin held the scroll explaining how Sunsoreen moved to the other side of the earth; Aurum wanted it. | [Sunsoreen](../places/sunsoreen.md). | +| TV orb | Showed copper dragon / claw marks and The Shadow's information request; also revealed party surveillance. | Sunsoreen rollup. | +| Portal charge | Shared between portals and reset once per day. | Rollup. | +| Right blade | Used to go to Harthall's lab at the end of Day 47. | Rollup. | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index beca7e2..44a0601 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -175,3 +175,12 @@ sources: - What did Valententhide intend to charge in identities, eyes, and pride for use of her pathways? - What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? +- Who was removed from the Harthall white-rose picture preserved by Draconic `Preserve`, and how does that missing girl relate to Elliana, Joy, Hannah, and Harthall's daughters? +- What do Argathum's urn, Lady Harthall's flute, the frosty tear, and the phrase `In her strange bones laid bare` reveal about Harthall's sacrifices? +- Why did the sentient door prefer the narrator's dress-wearing form, and what did Mr Boorning do with the key after Avalina left? +- Who is [Bynx](people/bynx.md)'s lion-headed `real daddy`, and what happened to Bynx's sister in the white dragon? +- What debt will Cacophony collect for Igraine's servant's path, and what was the blue object in Throngore's vision? +- Which trophy-plinth artifacts are still missing, including the Crown of Mooncoral, Blood of Noxia, Chains of Blackthorn, Heart of Tremon, Sunplane dress, Lion's Blessing, and Crown of Thorns? +- Can the dome or prison network be powered safely without exploiting elementals, and what prisoners remain behind the frost-prison doors? +- What is [Sunsoreen](places/sunsoreen.md)'s Lorekeeper, why do its records call the narrator Elliana Harthall, and why did the council offer to help recover what she lost only if she stayed? +- Why was the Tri-moon visible at the wrong time in Sunsoreen? diff --git a/data/6-wiki/people/bynx.md b/data/6-wiki/people/bynx.md new file mode 100644 index 0000000..44b849b --- /dev/null +++ b/data/6-wiki/people/bynx.md @@ -0,0 +1,42 @@ +--- +title: Bynx +type: sphynx or goliath child +aliases: + - Bynx + - sphynx baby + - goliath baby +first_seen: day-46 +last_updated: day-47 +sources: + - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md +--- + +# Bynx + +## Summary + +Bynx is the rapidly growing sphynx / goliath child recovered through Morgana's reincarnation dispute with Kasha and developed further in Harthall's lab. + +## Known Details + +- On `day-46`, Morgana recovered the baby sphynx / goliath child after Kasha tried to claim it as alternative payment; the spell completed too quickly, as if another power also cast it. +- On `day-47`, the sphynx grew quickly, asked many questions, played in Harthall's rooms, added a ribbon to the narrator's horn, vomited on them, and reacted to old memory rooms. +- Bynx identified a lion-headed elven body in a Grand Towers memory box as "real daddy" and broke the box. +- The notes explicitly name the sphynx baby as Bynx in the trophy-plinth sequence. +- Bynx's mother appeared as a carved female sphynx face on a Sunsoreen palace door. +- In Sunsoreen, Bynx explained that where pure elemental planes meet, they combine. +- Bynx cast Truesight and found his sister was no longer present, with no trace of her in the white dragon. + +## Related Entries + +- [Garadwal](garadwal.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Sunsoreen](../places/sunsoreen.md) +- [Minor Figures from Day 47](minor-figures-day-47.md) + +## Open Questions + +- Who is Bynx's lion-headed "real daddy"? +- What happened to Bynx's sister, and why was there no trace of her in the white dragon? +- Why did Bynx's reincarnation complete too quickly, and which power helped? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 42cff2f..c4ad70c 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -14,7 +14,7 @@ aliases: - Gardwell - Groot first_seen: day-01 -last_updated: day-46 +last_updated: day-47 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-06.md @@ -30,6 +30,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md --- # Garadwal @@ -64,6 +65,8 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. - Garadwal sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. - After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. +- Day 47 Harthall lab images showed a silver-haired sphynx / Garadwal portrait, Grand Towers memory scenes with a lion-headed elven body that [Bynx](bynx.md) called "real daddy," and diary entries saying Argentum wanted to help Garadwal fight elementals. +- Later Day 47 diary notes debated the proper word for captives or prisoners and wanted an alternative term for Garadwal, while preserving uncertainty about whether the original intentions remained good. ## Timeline @@ -80,6 +83,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Altabre's children, the Dumnens, and the hidden feather relic. - `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. - `day-46`: Garadwal is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. +- `day-47`: Harthall lab records and memory rooms add Garadwal-family clues, including Argentum's aid, elemental fights, and Bynx's lion-headed father clue. ## Related Entries @@ -91,6 +95,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) - [Trixus](trixus.md) - [Ashkellon](../places/ashkellon.md) +- [Bynx](bynx.md) ## Open Questions @@ -102,3 +107,4 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? - Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? - Who are Garadwal's brothers, and is one connected to the undead sphinx reported near the Harthall artifact lead? +- Is Bynx's lion-headed `real daddy` Garadwal, a relative, or another sphynx-linked figure? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index 1a518d3..0f15863 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -4,7 +4,7 @@ type: person aliases: - invisible Joy first_seen: day-05 -last_updated: day-46 +last_updated: day-47 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -16,6 +16,7 @@ sources: - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md - data/4-days-cleaned/day-46.md + - data/4-days-cleaned/day-47.md --- # Joy @@ -38,6 +39,8 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - Day 43 records Joy's dislike of Emi's dark-skinned elf apprentice. - Day 44 notes Joy in the old school context around Enis / Thomas, Hannah, and Cardonald's daughter. - On Day 46, an illusion of Joy appeared beyond the map table after the memory-destroying creature died, saying she was there because the party had met her and that she was lost and always had been. +- Day 47 clarifies that Enis sacrificed his wife Hannah Joy so Joy could live, but the attempt failed because Joy could not exist if her mother did not exist. +- Harthall lab memory rooms preserved Joy-labelled tea-set papers and confirmed Hannah Joy, Enis's wife, had been erased from existence. ## Timeline @@ -63,3 +66,4 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - Why did Joy need to live eternally, and can she ever leave the Barrier? - Who had Ruby Eye when Joy warned `they've got him`? - Why does Day 46 Joy describe herself as lost and always having been lost? +- If Hannah was erased to save Joy, what part of Joy now exists, remembers, or remains lost? diff --git a/data/6-wiki/people/minor-figures-day-47.md b/data/6-wiki/people/minor-figures-day-47.md new file mode 100644 index 0000000..cee08f9 --- /dev/null +++ b/data/6-wiki/people/minor-figures-day-47.md @@ -0,0 +1,38 @@ +--- +title: Minor Figures from Day 47 +type: rollup +sources: + - data/4-days-cleaned/day-47.md +--- + +# Minor Figures from Day 47 + +| Figure | Day 47 details | Coverage | +| --- | --- | --- | +| Argathum | Urn inscription apologised that love in life may not have been true though Argathum gave life for the writer. | Rollup; linked to Harthall lab thread. | +| Provista | Possible source of the narrator somehow knowing Lady Harthall played the flute. | Rollup. | +| Avalina | Portrait subject; diary apparently revealed through makeup; tied to daughters, promises, forced mate, and Council of Gold. | Rollup and [Open Threads](../open-threads.md). | +| Corundum, Argea?, Cetiosa | Portrait or missing-portrait names in the throne room. | Rollup; uncertainty preserved. | +| Mr Boorning | Entered after Avalina left and departed with a key. | Rollup. | +| Everard | Unknown addressee in runes reading `help you Everard`. | Rollup. | +| Uncle Leeg, Daddle, Mum, stupid cat, poopoo head | Labels on folded papers in the rose-field tea set. | Rollup / inscription clue. | +| Hannah Joy | Enis's erased wife; Day 47 clarifies Enis sacrificed her so Joy could live, but Joy could not exist if Hannah did not. | Existing Hannah thread; rollup and [Joy](joy.md). | +| Bellborn? | Possible identification of large men around a cracked burning bell on a stone door. | Rollup; uncertain. | +| Laylistra | Name attached to a room after the Barrier vision. | Rollup. | +| Greensleeves | Halfling chef named in a note under the fridge with a hidden handle. | Rollup. | +| Cacophony | Tax collector who will collect payment after a path begun by Igraine's servant. | Rollup and [Open Threads](../open-threads.md). | +| Throngore | Vision subject surrounded by a glowing blue ball before a silver dragon picked up the fallen blue object. | Rollup. | +| Blackstorm | Author of `Shaman Blackstorm's Tome on the Significance of the Number 5`. | Rollup. | +| Taotli? | Uncertain name associated with a picture in the flying room and a hidden handle. | Rollup; uncertainty preserved. | +| Rimefrost | Shouted for "little dragons" when cold entered the room before the party killed the ice elemental. | Rollup; elemental thread. | +| Argentum | Wanted to help Garadwal and died after falling to the armies. | Rollup. | +| Metatous | Diary said Metatous seemed more powerful than expected while fighting elementals. | Existing/open thread; rollup. | +| `[Hafelius?]` | Uncertain name in whose name elementals were fought. | Rollup; uncertainty preserved. | +| Taler, Bronze | Preserved in diary discussion about words for captives and alternatives for Garadwal. | Rollup. | +| Shotcher | Invar had difficulty connecting to Shotcher in the frost prison. | Rollup. | +| Dorion, Tim, Geoffrey | Goat, bull, and lion heads on the snake door; Geoffrey wanted a new body. | Rollup and [Elemental Prisons](../concepts/elemental-prisons.md). | +| Perodita | Geldrin's spellbook showed Perodita as a massive dragon with scorpion tail and insect-like wings. | Existing [Peridita](peridita.md) spelling cluster; rollup preserves Day 47 spelling. | +| Cindy | Sunsoreen resident in Dunner-coloured clothes; later tried for sedition, carrots, and spreading chaos. | [Sunsoreen Council](../factions/sunsoreen-council.md). | +| Right Honourable Charming | Copper dragon judge in magistrate wig. | Sunsoreen rollup. | +| Great Lorekeeper / Lorekeeper | Unavailable information source providing irrelevant but revealing trial questions. | [Sunsoreen Council](../factions/sunsoreen-council.md), [Open Threads](../open-threads.md). | +| The Shadow | Wanted information via a TV orb / copper-dragon scene. | Rollup; unresolved. | diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 19834a9..f6c4357 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -9,7 +9,7 @@ aliases: - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-43 +last_updated: day-47 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md @@ -18,6 +18,7 @@ sources: - data/4-days-cleaned/day-41.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-47.md --- # Peridita @@ -38,6 +39,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Day 42 council history said the Goliath Empire killed Perodika's parents and built a city on their bones; Perodita later headed toward Heathwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. - Galimma's dragon-family information preserves Perodika's children or related dragons with uncertain names and locations. - Day 43 says Lady Harthall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. +- Day 47 shows Perodita in Geldrin's spellbook as a massive dragon with a scorpion-stinger tail and more insect-like wings, sitting atop Grand Towers and looking into the upper windows. ## Related Entries diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md index a5730c4..057e162 100644 --- a/data/6-wiki/people/valententhide.md +++ b/data/6-wiki/people/valententhide.md @@ -11,13 +11,14 @@ aliases: - Bridge's sister - the featureless woman first_seen: day-30 -last_updated: day-44 +last_updated: day-47 sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-47.md --- # Valententhide / Valentenhule @@ -34,6 +35,9 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - On `day-44`, Geldrin saw Valentinheide killing Emi's wife, and Tale of Two Sisters described Bright as the low sky and Valentenhule as the high sky whose position caused the void to open. - Valententhide held Hannah, said Bright had shown the party too much, and said Hannah had been wiped from time and space. - After the party returned, they no longer remembered Hannah's name, only an image of her turning to dust in a cave. +- On `day-47`, `Palace of Valententhide` described her palace as forged in the deep sky, in a domain outside mortal realms, on the crimson, with walls of faces she does not have and unbreathable air unless visitors bring their own. +- The same book says Valententhide exploited a loophole to remain at her palace when the gods were banished to another plane. +- Later on `day-47`, an accidental portal opened into a black corridor in Valententhide's house; the party saw Valententhide, passed out, and Morgana heard the narrator while feeling cold hands on her shoulder. ## Related Entries @@ -41,9 +45,12 @@ Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or da - [Bridget's Doors](../concepts/bridgets-doors.md) - [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) - [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) +- [Minor Places from Day 47](../places/minor-places-day-47.md) ## Open Questions - Is Valententhide Bridge's sister, Bright's sister, the high-sky queen, a prison entity, or several confused accounts? - How did she kill Emi's wife, and what did Ruby Eye know about it? - Why was Hannah visible if she was wiped from time and space? +- What are the faces in her deep-sky palace walls, and what does it mean that she does not have them? +- How did she avoid the gods' banishment, and is her house connected to Harthall's portal network? diff --git a/data/6-wiki/places/minor-places-day-47.md b/data/6-wiki/places/minor-places-day-47.md new file mode 100644 index 0000000..ededfae --- /dev/null +++ b/data/6-wiki/places/minor-places-day-47.md @@ -0,0 +1,26 @@ +--- +title: Minor Places from Day 47 +type: rollup +sources: + - data/4-days-cleaned/day-47.md +--- + +# Minor Places from Day 47 + +| Place | Day 47 details | Coverage | +| --- | --- | --- | +| Harthall's lab | Destination and frame for Day 47; contains memory rooms, prison doors, handle puzzles, and portal links. | Rollup and open threads. | +| Pinesprings | Woodcutters had been taken by an elf killed by adventurers. | Existing place reference; rollup. | +| Rose-field picture / illusion room | White-rose picture and window illusion preserve missing-girl and Joy/Hannah clues. | Rollup. | +| `[unclear: aprosur]` | One of the sentient door's brother locations. | Rollup; uncertain. | +| Desert badlands room | Showed battle between Noxia and Sierra. | Rollup. | +| Baylen / Baylain Accord | Possible shoreline temple shown in coral bathroom. | Rollup; uncertain. | +| Laylistra's room | Named room after the Barrier passage vision. | Rollup. | +| Freeport? lighthouse dining room | Lighthouse with a castle in the middle and eclectic twelve-seat dining room. | [Freeport](freeport.md) not merged because uncertain. | +| Purple dome / Gar room | Humanoid glacier, lightning, and Dothral automatons. | [Elemental Prisons](../concepts/elemental-prisons.md). | +| Dark black rock swamp trophy room | Empty plinths restored with artifact names. | Rollup. | +| Flying room | Held Taotli?'s picture and a hidden handle. | Rollup. | +| Frost prison | Prison reached by portal; contained ice, lightning, doorways, prisoners, and portal access to Sunsoreen. | [Elemental Prisons](../concepts/elemental-prisons.md). | +| Ancient dwarven hold | Door opened to a non-settlement ancient hold with a massive shaggy blue aurora. | Rollup. | +| Valententhide's palace / house | Book described her deep-sky palace; portal later opened to a black corridor in her house. | [Valententhide](../people/valententhide.md). | +| Square black obsidian portal room | Accidental portal location with no doors until Geldrin found one. | Rollup. | diff --git a/data/6-wiki/places/sunsoreen.md b/data/6-wiki/places/sunsoreen.md new file mode 100644 index 0000000..2f72d21 --- /dev/null +++ b/data/6-wiki/places/sunsoreen.md @@ -0,0 +1,43 @@ +--- +title: Sunsoreen / Snowscreen +type: city, moved settlement, palace +aliases: + - Sunsoreen + - Snowscreen + - Snow Screen +first_seen: day-47 +last_updated: day-47 +sources: + - data/4-days-cleaned/day-47.md +--- + +# Sunsoreen / Snowscreen + +## Summary + +Sunsoreen is the current name of Snowscreen, a city or palace moved to the other side of the earth by a council after broken pacts and the dome crisis. + +## Known Details + +- The party reached Sunsoreen through a portal from the frost prison after meeting [Aurum Prudence](../factions/sunsoreen-council.md). +- The archway had different runes, the building was enormous, grass and woodlands lay below, and the area was warm despite blackout time. +- The Tri-moon was visible when it should not have been. +- A copper dragon landed nearby and entered the building. +- A palace door was carved with a female sphynx face, identified as [Bynx](../people/bynx.md)'s mother. +- The council doorway was carved with a white dragon and sphynx. +- Seven settlements within one hundred miles had been absorbed under the Sunsoreen umbrella. +- Sunsoreen enforces frequent new laws, job or training requirements, information control, outbreeding laws, and courtroom systems spread across more than two hundred courtrooms citywide. +- The city contains guest quarters, an internal market where citizens feel as if they are walking on eggshells, dragon-scale courtrooms, and an emergency law-making chamber. + +## Related Entries + +- [Sunsoreen Council](../factions/sunsoreen-council.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Tri-moon Countdown](../events/tri-moon-countdown.md) +- [Minor Places from Day 47](minor-places-day-47.md) + +## Open Questions + +- How exactly was Sunsoreen moved, and what did the city-moving scroll enable? +- Why was the Tri-moon visible at the wrong time? +- Are Sunsoreen's citizens legally trapped, magically controlled, or socially coerced? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 5018e6a..1816442 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -83,6 +83,7 @@ sources: - `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hearthwill](people/lady-hearthwill.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). +- `data/4-days-cleaned/day-47.md`: [Bynx](people/bynx.md), [Sunsoreen / Snowscreen](places/sunsoreen.md), [Sunsoreen Council](factions/sunsoreen-council.md), [Valententhide / Valentenhule](people/valententhide.md), [Garadwal](people/garadwal.md), [Joy](people/joy.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Day 47](people/minor-figures-day-47.md), [Minor Places from Day 47](places/minor-places-day-47.md), [Minor Items from Day 47](items/minor-items-day-47.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-47-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index fec6b5b..72e8db2 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -84,3 +84,4 @@ sources: - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). - `day-45`: No cleaned day file exists in this build. - `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Harthall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. +- `day-47`: In Harthall's lab, the party uncovers erased Harthall family memories, Hannah Joy's sacrifice, [Bynx](people/bynx.md)'s lion-headed father clue, trophy-plinth artifacts, elemental prison machinery, [Valententhide](people/valententhide.md)'s deep-sky palace lore, and [Sunsoreen](places/sunsoreen.md), whose council records the narrator as Elliana Harthall before the party returns and closes the fire elemental rift. -
3038c1cMore stuffby Bas Mostert
data/2-pages/210.txt | 42 ++ data/2-pages/211.txt | 44 ++ data/2-pages/212.txt | 37 + data/2-pages/213.txt | 43 ++ data/2-pages/214.txt | 42 ++ data/2-pages/215.txt | 41 ++ data/2-pages/216.txt | 41 ++ data/2-pages/217.txt | 37 + data/2-pages/218.txt | 40 ++ data/2-pages/219.txt | 42 ++ data/2-pages/220.txt | 38 + data/2-pages/221.txt | 37 + data/2-pages/222.txt | 36 + data/2-pages/223.txt | 38 + data/2-pages/224.txt | 36 + data/2-pages/225.txt | 36 + data/2-pages/226.txt | 37 + data/2-pages/227.txt | 35 + data/2-pages/228.txt | 35 + data/2-pages/229.txt | 37 + data/3-days/day-46.md | 761 +++++++++++++++++++++ data/4-days-cleaned/day-46.md | 175 +++++ data/6-wiki/clues/day-46-coverage-audit.md | 45 ++ data/6-wiki/index.md | 7 + data/6-wiki/items/minor-items-day-46.md | 33 + data/6-wiki/items/void-spheres.md | 11 +- data/6-wiki/open-threads.md | 15 + data/6-wiki/people/brutor-ruby-eye.md | 9 +- data/6-wiki/people/garadwal.md | 12 +- data/6-wiki/people/joy.md | 5 +- data/6-wiki/people/minor-figures-day-46.md | 40 ++ data/6-wiki/places/minor-places-day-46.md | 25 + .../riversmeet-menagerie-and-old-mage-school.md | 8 +- data/6-wiki/sources.md | 2 + data/6-wiki/timeline.md | 3 + 35 files changed, 1920 insertions(+), 5 deletions(-)Show diff
diff --git a/data/2-pages/210.txt b/data/2-pages/210.txt new file mode 100644 index 0000000..e5bb652 --- /dev/null +++ b/data/2-pages/210.txt @@ -0,0 +1,42 @@ +Page: 210 +Source: data/1-source/IMG_9877.jpg + +Transcription: +[unclear] get racing automatons - voice activated. + +Need to make the snowglobe bigger! Alteration. +Door between necromancy & alteration appears to be made +of bone. +Manage to get into the room by shrinking, eating the +cake & growing with the potion. Take the rest +of the cakes & potions from the desks. + +Go back to tuck shop. +- Next one in apparently obvious room - both exactly where + you would expect to find them. - Storm (weather) & Life (Herbs). + +Head over to weather & as passing the shield wall the +vulture man [unclear: Exhausted] is lying prone. Seems dead but +suspect his soul is still there. +Morgana tries to reincarnate the spirit not the body +of Metatous. + +Some of us head up to weather. +Room seems to lead to the outside & on a clifftop. +Temperate weather. Close the door & twist the handle so +it points to a storm section of the door & reopen +to a storm. + +- Spot something floating in the water - retrieve the orb by + changing the weather back & shape water. Change the + weather back to storm & hold the orb to the sky + & lightning hits a small piece of seasoned stone in the orb. + Have a Storm Orb. + +- Morgana feels like the soul is not complete & tries to + gather the rest of the parts of the soul. + +- Herbs - Geldrin gets a mushroom [unclear] on him & it tries to communicate + with him. "Flesh bag what are you doing say we are friends with + Limos vita" - searches his memories & says he is trapped like + they are. diff --git a/data/2-pages/211.txt b/data/2-pages/211.txt new file mode 100644 index 0000000..9f4badb --- /dev/null +++ b/data/2-pages/211.txt @@ -0,0 +1,44 @@ +Page: 211 +Source: data/1-source/IMG_9878.jpg; data/1-source/IMG_9879.jpg + +Transcription: +Somebody is already spreading them around. +A cat horned flesh bag. + +- Morgana - blanks out during the spell. + Vision - standing in a library aisle (infinite) + red carpet with dried blood. Says "not Terror". + Book says "Grand temple city" blank except one + page. Has hubward - she left him astray - at [unclear: Hyane] + down the corridor - Berry eyes close & asks what she is + doing here? Comes back in the room. + +- Invar gets Dirk to open the door - we may not + come in, the creature must be contained... + Tendril then speaks to Dirk & asks to be freed. + Dirk says no & it says he has blockers + too - then shows him a vision of a sickly + goliath. Enters their tent & is then pulled out by + a green dragon (dragonborn?). + Manage to push the door open enough for Geldrin + to get in. + Automation holding the door back. Tendrils + want to be freed. + Automaton is there to stop mushroom escaping. Has only + ever been in two places. Student of Lord [unclear: Dunthing] took + it to study it. + Wants to give them 5 pieces & plant a mile + apart, earthwise from a river. Agree to wait 5 + years. + +- Morgana - body starts to form on the floor - elven body, + male, greenish hair. + He feels a lot of divine energy. + Says his name is Garadwal! + +Supplemental map / diagram: +- Grand floor (?) / 1st floor. +- 2nd: Jewel room. +- Central map shows a study hall, a 3rd year room, and a 4th year room. +- Notes include: "Corridor Silas-Heshen", "Transmutation", and "doorway to office". +- Margin note: Transmutation - [unclear] lifting - Silt [unclear]. diff --git a/data/2-pages/212.txt b/data/2-pages/212.txt new file mode 100644 index 0000000..f4b7edc --- /dev/null +++ b/data/2-pages/212.txt @@ -0,0 +1,37 @@ +Page: 212 +Source: data/1-source/IMG_9880.jpg + +Transcription: +He doesn't recognise us - last thing he remembers +is the desert & his people... No Dome was up when +he last remembers. + +Tell him what has happened to him. He seems to be +good now. + +When Benn banished Garadwal he wasn't where he +thought he would be. Morgana thinks a lot of +Garadwal was in the vulture body. +Emeraldus - one of his children? +- Decide to call him Groot for now. +- Go back to the basement. + +Garadwal senses spirits protect this area. +Put the orbs into the relevant slots - slight glow. +Some shining on the locked door, but nothing +else happens. +Door seems to have changed & now shows runes. +Looks to be ancient draconic. +"You've got this far. I'll do my best to aid you +in the battle you are about to have. The creature +you are about to face will destroy your +memories & you will not remember the spell you +are about to cast." + +Try to tell him what he might encounter in there. +40 ft long creature, alien type, squelchy creature. +Face is anguished, half scared & half in pain (humanoid). +Skeletal wings - spectral dragon holding it down. +Mr Moreley trying to stop it from its full +abilities. He gets pulled back into the school +& the creature raises up. diff --git a/data/2-pages/213.txt b/data/2-pages/213.txt new file mode 100644 index 0000000..788eb0b --- /dev/null +++ b/data/2-pages/213.txt @@ -0,0 +1,43 @@ +Page: 213 +Source: data/1-source/IMG_9881.jpg + +Transcription: +Ichor sprays. + +Me - cave to small creatures clad in metal, +firing repeating crossbows, +running past, hearing roaring of a dragon. + +Dirk - thriving goliath city, lots of different races trading. + +Geldrin - metal tower with zeppelins flying around. +- Dragon skull isn't there any more. +Feel like the mind altering is happening from the back. + +Morgana - field of grass, daisies, hand on shoulder, warm & +calming feeling. Barefooted faceless woman clad in silks. + +Creature dies - but invisible entity is escaping +through the door. Attack it but forget it +is there. Dirk runs through it but thinks it +was a wall - is now visible & running +through the orb room. +The room starts to disappear & 4 doors appear in +the map room. 1 of the orbs is not lit up - +amoursorate is the one not lit. + +Illusion of Joy is the other side of the map table. +Says she is here because we have met her +and she is lost & always has been, then disappears. + +Morgana is a head & when she comes into the room +an illusion toad appears next to her with something in its +mouth. + +Geldrin appears in a dark room in front of Kasha's throne +& she wants to claim her debt for Garadwal & wants +him like him as is her [unclear: father]. +Back in the room & his bag starts dripping blood. +Tells Garadwal Kasha wants his soul. +Investigates the non glowing orb & there is a tiny scratch in +it. diff --git a/data/2-pages/214.txt b/data/2-pages/214.txt new file mode 100644 index 0000000..a7088ee --- /dev/null +++ b/data/2-pages/214.txt @@ -0,0 +1,42 @@ +Page: 214 +Source: data/1-source/IMG_9882.jpg + +Transcription: +Geldrin asks for cake & to try to hear the orb. +Find a rug on the floor that says "lost" in different +languages. + +Main door has disappeared. +Orb has a skull in the middle with ruby eyes. +Says he was close to working it out. Gave a message +to Errol, can't stay for much longer, and then disappears. +Lightning reappears in the orb. + +Water room contains the water excellence we battled, +dragging the mermaid we rescued. +Dirk asks why he's here & it replies because you +have seen me & now it will be your end. + +Garadwal removes Morgana's feeble mind. She sees +2 storm rubyeyes before coming back to herself. +- Remove the salt orb & the prison door shuts. + +Geldrin asks Errol for Rubyeye's message & he says he +doesn't have one. Geldrin calls him out for lying +& he opens his desk & a ruby drops out. +Ruby has something playing in it - see Enis & Browning sort of +a huddle - what did Squeal ask for? Browning says the weather +to come through the barrier - but that's not what he +said - actually says "the loss of everything". Enis +says cryptic but we may use it to help us. + +2nd one has red glowing eyes with white minds for eyes, +a water excellence & a whirlwind being. +Tell Errol to play message - but he refuses. + +Morgana turns into a bat to use echo location - found +something, but forgot she found something & turned back. +Give Geldrin the lost ring. He puts it on & it disappears. +Dirk loses compassion & Geldrin no longer wants to learn things. + +Message says "Bread & Circus" & pretends it's Rubyeye. diff --git a/data/2-pages/215.txt b/data/2-pages/215.txt new file mode 100644 index 0000000..bf636ec --- /dev/null +++ b/data/2-pages/215.txt @@ -0,0 +1,41 @@ +Page: 215 +Source: data/1-source/IMG_9883.jpg + +Transcription: +Morgana opens the coral door again - same +things in there but an army of fish men now. +Tells them to come get her - tries to disbelieve it & +sees leech type creatures - tells us to kill them. + +Geldrin throws a fireball to the ceiling & we see +lots of trails to the creature & some to the rooms. + +Dunner Door - Statue of Sierra is in one piece. +Lodest surrounded by vulture men & Anastasia +is chained up. Lodest hunts him in. + +Another door - having a nice stroll & heading towards Valententhide's +prison with purpose. Shock it & doesn't seem to notice +& continues towards the door to the prison. Door glows. +Morgana hits the mermaid & we take damage. + +Dirk, Garadwal, me & Morgana all protect the glowing +thing in the rooms & wake up back in the original room. +Geldrin & Invar also wake up. +Dead! +We all wake up & memories come flooding back. Level up! +All memories from others flood through us all at once then +dissipates. + +- Invar & Elliana remember Morgana is more familiar to them + than they remember. +- Platinum - Cardonald's cat - says Errol is possessed + by one of Squeal's things. +Heads out, then heading to "Joshua". Eyes turn. + +Message from Rubyeye - Squeal - be careful at riversmeet. +Enis set a trap on the room for Rubyeye, went +to a safe place - wife's place & is imprisoned. + +Cardonald - her & goliaths spotted tainted dragons - going to +try to root them out. diff --git a/data/2-pages/216.txt b/data/2-pages/216.txt new file mode 100644 index 0000000..0735589 --- /dev/null +++ b/data/2-pages/216.txt @@ -0,0 +1,41 @@ +Page: 216 +Source: data/1-source/IMG_9884.jpg + +Transcription: +Amoursorate - look after my son. + +Dothral (Joshua) only been aware for 20 years. +Soul crashing into the tower awoke a few constructs. + +Magpie lands on Morgana & says it can help her. The chorus +sent it. Going to be difficult soon but she'll know the right +path when it comes. Can't say any more as Morgana told it +not to say anything else. She can't remember doing that. +Magpie says it's time - they couldn't help before but they can now. +Willowwispa was flying away furious. + +Dothral - woke up around Rhime watches around 20 years. +Next to a door & something propelled him through it forcefully. + +Day 46 + +Move mattresses into the map room to rest. 2:00. +Geldrin goes to check if the power armour suit +is still there with Dothral. Bring it back to the +map room. + +Sleep. + +Platinum last knew where Cardonald was approx 2 days +ago in Tradesmells. She's just been hard to recall. +Cardonald obsessed with the idea of Dothral over the +last few days. + +Six people drop down the hole: +gnoll - Longfang?? - thought dragon in Lake Azure might be dead. +sparrow aarakocra - Mercy. +pesky elf - (bellow men). +Mercy stops Longfang from opening the door - it's trapped +there on reconnaissance - boss says one here - quick mystic listening. +Try to rip blade out & I open the door. +Bubble around the elf & Mercy pulls through the blade. diff --git a/data/2-pages/217.txt b/data/2-pages/217.txt new file mode 100644 index 0000000..fa2919a --- /dev/null +++ b/data/2-pages/217.txt @@ -0,0 +1,37 @@ +Page: 217 +Source: data/1-source/IMG_9885.jpg + +Transcription: +Invar brings Garadwal out of feeble mind. +Looks like he's in shock as now remembers +everything. Needs to find his brothers & teleports away. + +Morgana tries to reincarnate the baby sphynx. +Can feel where some light spirit was & +feels like someone else is also pulling at the +spirit. She blacks out & gets pulled in front +of Kasha. She states it is hers & Morgana can't +have it. Kasha is taking it as alternative payment. +Morgana tries to persuade her that the original +payment will be made as promised. +Asks Igraine to help & Abraxas & [unclear: Typh] now come at +Morgana's feet. This allows her wholly, she wafts towards +Heather. Feels a strange warmth & Invar blacks out +& appears next to Morgana. + +Kasha says this hasn't happened for many years +& can see why we have been chosen +but she cannot be fooled like the others & +will not be taken like them, and lets them +have the goliath child. Spell completed too quickly - somebody +else cast it. + +Baby feels hot & unwell - seems to be reflecting the state +of the goliath civilisation. + +Go back up the hole. +Invar's robes now have his surname on it but it's been +there all the time, & he now recognises it. +Exit via main entrance - abandoned tents - empty of people +& things, furniture etc. still there. 11:00. +Go to the town - bustling city. diff --git a/data/2-pages/218.txt b/data/2-pages/218.txt new file mode 100644 index 0000000..cd702a1 --- /dev/null +++ b/data/2-pages/218.txt @@ -0,0 +1,40 @@ +Page: 218 +Source: data/1-source/IMG_9886.jpg + +Transcription: +Go to the council offices in the middle of the bridge. +2 guardsmen outside just there. +Lady Igraine is away on official business, went this morning (?!?) +(family business) towards Grand Towers. +Can see the Exchequer & get to go straight +in (skip the queue). + +He says we were at the mage school (just what they +call it?) Lots of animals sighted recently & dragon +flew off & was wounded. + +Morgana hears him think "I wish they would leave" & get some +guards to follow them. +Morgana has a new bird on her shoulder. +Bartholomew. Betty is pretty. Swooped by him & +said he's been there since we got to town. + +Go to And Pool. Elliana skulks off to spy on the +guards. +Nothing following us at the moment. + +Man came in just before me & after the rest, half elf, +clothes over leather armor, following quite well. +Elliana sits at a different table, see him start writing +on paper. +He starts to leave with a sending stone. Try to get the +paper & grapple him. Geldrin intimidates him to give me the +stone. The exchequer wanted to know where we +were - changed the stone to say a different pub. ("I'm the drink".) +Exchequer said we looked shifty & stole the baby. + +- Exchequer doesn't have a name & the seneschal is + usually in charge if Lady Igraine is away. No aarakocra + is important in the town. Spy guy says there is one & + he's worked for him for years... Guards going to take us + to Lady Igraine. diff --git a/data/2-pages/219.txt b/data/2-pages/219.txt new file mode 100644 index 0000000..5fa6b8f --- /dev/null +++ b/data/2-pages/219.txt @@ -0,0 +1,42 @@ +Page: 219 +Source: data/1-source/IMG_9887.jpg + +Transcription: +Take us to the other door & over the bridge to +the other side. + +- Guards stop us from going in saying Lady Igraine + doesn't want to be disturbed. Elliana knocks to bang on the door + but guards stop her. Morgana turns into a bee to check + the room & it is empty. She was there 6 hours + ago. Go back to the Exchequer office. Burst into the room. + Half-elven man talking to some traders. Not the same + guy. Receptionist says he has been in there all day & he + hasn't seen us before. + +Morgana goes to the toilet & casts locate creature on +the bird. Bartholomew turns into the "Exchequer" with 2 small +daggers. Morgana turns into a bear & roars. We all +hear & start to head over. Some of the people +in the waiting room run & some others pull out daggers. +Chairs move strangely - llamia? + +Elliana was heading to see the guards to question them. +Why they told us about the exchequer when he doesn't +exist. + +The people in the waiting room turn into a llamia & some rats +& more on the outside of the room. +"We don't fireball babies" DM quote. +Bartholomew turned into a massive vulture thing with lightning +crackling at his fingers. See me to recognise Elliana, +says "I'm doing your bidding". + +Kill all of the rats & llamia & vulture. +Go to get the two guards from the door. +Guard who told us about the exchequer is confused & can't really remember, +but the exchequer told him we were coming. +Also about the lady going on family business. + +Side note: 2x Llamia inc. daggers. 80 hexagon coins, dark grey rose, +Bartholomew silver chain green pendant. diff --git a/data/2-pages/220.txt b/data/2-pages/220.txt new file mode 100644 index 0000000..4242701 --- /dev/null +++ b/data/2-pages/220.txt @@ -0,0 +1,38 @@ +Page: 220 +Source: data/1-source/IMG_9888.jpg + +Transcription: +Seneschal - orders people to search for the town folk +& for any more infiltrators in the town hall. +Guards have their memories altered. +Head to Lady Igraine's room. +No obvious signs of struggle except for an earring on the floor. +Realise a rat had run away. +Clerical officers Williams & Terrance get deputy badges! +Williams mid 30s male, Terrance 40s male. + +Go to Williams house (on wayshrill bridge), address given by actually +an accountant. Looks like it's been abandoned for a few +weeks. No signs of struggle. +Bit of post in the office - nothing seems to connect aside from +a purchase of 500 gold worth of jade - client name? +Address is "I'm the drink" 3 weeks ago. + +Go to Terrance house - outskirts of town. +Officer Biggs & another already there. Terrance was there +this morning & has been more attentive recently - smelling +musty. Chopped all of the heads off the neighbours' sunflowers. +For work at 7:30 this morning, gets home around 14:00. +Thinks he will be at the "I'm the drink". Doesn't +usually frequent there. Remembered her birthday was next week, +which he doesn't usually. Heard a cat-sized rat in the garden recently. +Wife is wearing jade earrings her husband gave her for +her birthday. + +Go to "I'm the Drink" pub on the outskirts of the bridges, +bit dingy looking. Medfolk bartender. Alanna says his Pact leader, +human man (18ish), comes over & asks me if I need him to +do anything?! No sign of him being underbelly. +Tell him to go & find Terrance & bring him to us. +He insinuates he is part of the disguised crew. +Geldrin disguises his staff as jade & props it obviously. diff --git a/data/2-pages/221.txt b/data/2-pages/221.txt new file mode 100644 index 0000000..b34af4c --- /dev/null +++ b/data/2-pages/221.txt @@ -0,0 +1,37 @@ +Page: 221 +Source: data/1-source/IMG_9889.jpg + +Transcription: +Half elf comes in - interrupts & heads straight to Geldrin. +Been a bit of a set back to the plans - had a good +working in the town hall but not so much after the +scuffle. Taking a lot of power - going to go there herself? +Lots of forgotten passages - people gone missing using the +passages. Need reinforcement. Think it's been hidden somewhere. +Can't risk abduction again & they didn't find it when he +was abducted. + +Mind magic not working properly since something happened +at the school. + +He'll get the town hall back under control & get +others to look for the artifact - no suspected location for +it. +Another problem - Brothers loose - undead sphynx? +He's 6th in charge. 1-5 unaccounted for. +Will talk to Garrick (in another town). +Lady Igraine hasn't been taken again. + +Talks to Garrick via a mirror - told him to get it for us. +1 hour later - 15 year old & a guy we don't recognise +instantly runs off. Chase him. +Found him at the races probably trying to get a +new identity. +Have some leads: +Harthall artifact was put in one of the prisons. +Harthall meant to be looking after mind effects, maybe +stopped her from remembering. Somewhere near Snowscreen. +No team currently checking it out. Some people near +Pinesprings but some adventurers killed them all. +Brothers - one disappeared - the other controlling an +undead sphynx. diff --git a/data/2-pages/222.txt b/data/2-pages/222.txt new file mode 100644 index 0000000..d206fb5 --- /dev/null +++ b/data/2-pages/222.txt @@ -0,0 +1,36 @@ +Page: 222 +Source: data/1-source/IMG_9890.jpg + +Transcription: +Igraine came back this morning. They had 2 guards +on the door & she's now missing. + +Terrance is 4th in charge - doesn't know it was us +who killed everything else in town. +Thinks they should leave the town & reinforce the prisons. +The mirror is in the seneschal's office. + +5th in charge (greasy halfling) returns with "the mirror" & says they're +all going to get on the boat & sail off. +Make him 1st in command. + +He takes us to the boat. People milling around on the +quay, loading things onto the boat. +Moonbeam kills the greasy halfling. +Fireball hits the boat & incinerates everything & + +- Dive into the water & find 50,000g of jade. +Nobody seems to have come to investigate. +Morgana sees a white rabbit out of the corner of her eye +that got here on the back of the protector (from snowy area) +on lectern - thinks it remembers us. + +Rewards by the militia happen at "I'm the Drink" & "The Olde Clay Jug". +Get the other half of the sending stone from +the guy in the pub from "The Exchequer" & give to the seneschal. +Go to the Olde Clay Jug. + +- Spot one of the waitresses with a tray with leaves. Can't + ask to see Highgate. Ask her on the way past. + She goes through the "Earth hath no" door. Dwarf we were + speaking to leaves & another dwarf sits in his place. diff --git a/data/2-pages/223.txt b/data/2-pages/223.txt new file mode 100644 index 0000000..7526d31 --- /dev/null +++ b/data/2-pages/223.txt @@ -0,0 +1,38 @@ +Page: 223 +Source: data/1-source/IMG_9891.jpg + +Transcription: +Bollar men looking for us. +He agrees to help the militia & find the missing +town folk. +Friends back home (ice dwarf) say a mutual friend we +sent out of the barrier took the opportunity to do +something before trying to get back in - she hasn't +found a way in. Visited Lord Bleakstorm. + +Mirror hums - back of a female Lady hair - says +she can take us there & is a friend. Voice +is cold & wishes for the same thing we seek, & any debts +she perceives will be repaid. +The end of all things - Valententhide! - will let +us use her pathways - wants the artifact & +will come at the cost of some identities +& some eyes & some pride. Shut her off. + +Decide to go to Harthall's lab after resting & eating +chicken. + +Day 47 + +Try to put the rations in the bag of holding & +trying to escape to get back to the ground. +Morgana sets it free in the forest - it's called +"No chart". + +Adventurers took Lady Harthall's diary. +They killed the elf who was taking all the woodcutters +from Pinesprings. + +- Picture on the wall of a halfling girl with a silver hair girl in a + field of white roses. +Room looks ransacked but the picture is untouched. diff --git a/data/2-pages/224.txt b/data/2-pages/224.txt new file mode 100644 index 0000000..5d06950 --- /dev/null +++ b/data/2-pages/224.txt @@ -0,0 +1,36 @@ +Page: 224 +Source: data/1-source/IMG_9892.jpg + +Transcription: +Picture has been altered in some way. Investigate +& see the other side of the girls has been altered, +& another girl had been in the picture originally. +Frame has runes on it in Draconic - one word is Preserve. + +Through the door is a bookshelf - empty - alchemist's table +covered in mushrooms. Friend fleshbag set him free. Children +are elsewhere now. + +2 silver dragons lived here - they fought, 1 left, then +came back then there were 3 (1 big, 2 small). +- 2 prison rooms at the end of the corridor. +- 1 room filled with dirt & gets filled with more. +- Next room is locked & Platinum says this door wasn't + there when she was here with the adventurers. + Obsidian plinth with an urn & a single white rose + laid on it. Amethyst orb by the side of it. Red + ribbon tied in bow & a flute carved of dark wood, laid + like an offering to the urn. + +Obsidian statue, no face but gracious god - eyestone lower torso (Squeal?) +Other side Kasha. [unclear: Leys 8? mystery]. + +- Look at flute - Lady Harthall plays the flute - know this somehow, + maybe a look from Provista. + I get a tear in the corner of my eye that is frosty. + Urn says - Though my love for you in life may not have + been true, you still gave your life for me. I'm + sorry - Argathum's urn. + +- Look behind the silks & one makes me shiver & scared of + it. Dirk finds a crack in the wall. diff --git a/data/2-pages/225.txt b/data/2-pages/225.txt new file mode 100644 index 0000000..611358c --- /dev/null +++ b/data/2-pages/225.txt @@ -0,0 +1,36 @@ +Page: 225 +Source: data/1-source/IMG_9893.jpg + +Transcription: +Go to check the crack & get petrified +of it & instinctively throws the flute at it. +The crack seems like something spherical hit it. +Dirk checks the urn & it contains dust & tries to +speak to it. +"In her strange bones laid bare." + +Metal shines - seem tarnished - odd for silver. When wiped, +crystallised jade dust. Turning the silver into jade. +Geldrin cleans both statues - Geldrin gets lost looking at +the statue. + +Ornate door - long throne room. One throne Harthall carved, +crudely decorated with skulls. Dead elf & 6 skeletons. +Pictures - copper mines / saintshrine / snowy mountain tops / lots of +people (portraits), silver hair / sphynx (Garadwal). +One of Avalina, Argathum, Corundum, Argea? +No Cetiosa. No obvious missing pictures. +Males - um, females - ex. (random order but all aligned.) + +Sentient door - asks who are you to me & asks +if I'm allowed out?!? +Has brothers at different places (Enis' lab & [unclear: aprosur]). +Lots of people in & out. I've been in & out lots +& prefers my other look wearing a dress. +Last time Avalina left - the next person to come in was +Mr Boorning a day later - left with a key. +Harthall had 2 daughters - won't tell us their names +due to privacy as they are babies. Don't seem to +be able to trick it. +Strange noise - door disintegrates into a pile of dust +child is & when I was last there. diff --git a/data/2-pages/226.txt b/data/2-pages/226.txt new file mode 100644 index 0000000..2793a79 --- /dev/null +++ b/data/2-pages/226.txt @@ -0,0 +1,37 @@ +Page: 226 +Source: data/1-source/IMG_9894.jpg + +Transcription: +Me & Joshua feel mind fog & immediate memories start to leave us. + +Invar hears amidst it "I will not lose you again my son." +Geldrin shouts "No". +Dirk sees Joy & says you need to look after my friend. + +Errol says we need to stop this information is lost - the man +he was with says we need to stop & there will be more than +just pride & disguise lost. We do +not know what we are messing with. +Platinum thinks whatever wiped the memories missed +the door. + +- Go outside to find the area where the room +caved in & clear it out. Find the door the other +side of the room. Trapped. Disarm. Magically trapped for +banishing for someone coming out. The rest of the +lab is through the door? + +- Dothral recognises the architecture. +Forcefield appears part way down the corridor. +Runes are in a language we don't understand. +Runes say "help you Everard". + +First door on left - carving of small elvish town houses +& large trees (out of place), Elvish script at the bottom. +Wooden rocking horse on a spring, vanity, sofa with +stuffed "Bears" (actually humans, gnomes & halflings), rack of flutes. + +I walk to the sofa & pick up one & tuck it under +my arm & come around then start to cry, +trying to remember something. Also feeling like I've +lost something. Put it in my bag. diff --git a/data/2-pages/227.txt b/data/2-pages/227.txt new file mode 100644 index 0000000..aa3330e --- /dev/null +++ b/data/2-pages/227.txt @@ -0,0 +1,35 @@ +Page: 227 +Source: data/1-source/IMG_9895.jpg + +Transcription: +Dirk starts to sing a sombre goliath song from the music +book - whilst he is singing. + +I hear flute music & am drawn to a flute +& it feels very sombre & heavy in my mind. +Goliath baby has fun around the room then comes +over to me to add a ribbon to my horn. Then +throws up on me & thinks it's hilarious. Geldrin +tries to clean it but the spell doesn't work - seems +like I stop it. + +Next room - 2 beds, one with sky, another with a +dragon carving. The sky seems to have had an X +carved in it. Under the dragon bed is a box, +a key on its bum with words on it - Celestial? 6 words. +Pure black cat with green eyes comes round the door - magical. +Wants to be killed. +There is something locked up at the end of the corridor. +Cat escapes & I try to shoot at it & it's injured, +repair itself. + +The "window" opens into a beautiful field of roses +illusion - picnic blanket under the window. Dragon toys. +Tea set - cups contain folded up paper - one says +Joy, Uncle Leeg, Daddle, Mum, stupid cat, key, poopoo head, me +(keyless). + +Sphynx wants Dirk to read books. +Toy chests are empty. +Geldrin reads the bears' words "Here always Never Nowhere all Harth". +(Hannah) Hannah Joy - Enis' wife - erased from existence. diff --git a/data/2-pages/228.txt b/data/2-pages/228.txt new file mode 100644 index 0000000..29be7b3 --- /dev/null +++ b/data/2-pages/228.txt @@ -0,0 +1,35 @@ +Page: 228 +Source: data/1-source/IMG_9896.jpg + +Transcription: +Reason Enis sacrificed his wife was so Joy could +live but it didn't work - Enis tricked because +Joy can't exist if her mother didn't exist. + +- Sphynx growing up quick & asking lots of questions. + Invar has crab in bag. + I want [unclear: horn] green. - Jade turned me green. + +Remembers brothers now. +Go into next room. All the doors seem to have carvings. +- Stone door - crudely carved bell - cracked and on fire. + Large men surrounding it looking up at the sky (Bellborn?). + Dirk asks the door to open & it says "You may not pass, + son of fire". Only the son of stone & their friends may enter. + Invar tries to get in & the door tells him to run back home. + Opens for me. +Room is large & empty. Dirk finds a coin but not sure where +it is from. Invar notices a stone is slightly different - stones +are all uniform except one which is a different stone than the +others. Not sure where it comes from. Morgana - piece of +paper not sure how it was missed - "I hid them for you". +On it is a well, the other false Heddy. +The keystone looks loose - hollow & contains a box. +Geldrin finds a memory orb. +Box reveals a little scene of Grand Towers before the other towers +were built. 3 small boxes at the front. Seen before - +Enis' place (a professor's?) or don't recognise. 7 elves in front +bare chested, 2 holding chains leading to the side panels, +one to wisps of wind, other elven body head of lion. +Baby thinks real daddy - lion head - wind is naughty. +Baby takes the lion & breaks the box & falls asleep diff --git a/data/2-pages/229.txt b/data/2-pages/229.txt new file mode 100644 index 0000000..6bc6d5f --- /dev/null +++ b/data/2-pages/229.txt @@ -0,0 +1,37 @@ +Page: 229 +Source: data/1-source/IMG_9897.jpg + +Transcription: +Geldrin finds a glass shard & I find a +statue with something written in Goblin "Time flies". +Things disappear when we leave the room. + +Next door - desert badlands feel - bottle between Noria & Sierra +made of sand stone - contains a giant bed - adult dragon size. +Book on the bedside table - tunnels of love - Dwarf porn. +Bedside table & vanity human size. +Morgana finds white rose powder - smells it, visions +of 3 chests, one from Mr Moreley's room open. +One of the boxes & incredibly attractive elf says "That's your +horn now ceiling" & changes to a Milky Way which +changes to an eye. + +Next room - coral & sea shells - depicts temple on a shore line (Baylan Accord). +Bathroom. Bath tub has tiny scratches in it & makes a +picture of a cat. + +Next room - light airy stone - town with houses on stilts. +Door says "Not time for flying lessons". What time - for +me never - not any more. Invar breaks the door. +Nothing in it, pictures all down the walls, cracked down the ceiling, +copper basin & ceiling looks like it should open. + +Baby goes back into the other room & leaves with the memory +orb. It doesn't disappear. +Pictures in the room: Avalina, Taalish Harthall & some others. +Baby puts memories on the wall! +"No naughty, it's time." +Huge black dragon - horn of flies hanging around it - in a desert +near a large tower - turns into human, ornate evening suit. +Drow - green dragon attacks black dragon - winning. Drow pulls +out a jar. Beautiful elf - propelled into sky, crashes into barrier. diff --git a/data/3-days/day-46.md b/data/3-days/day-46.md new file mode 100644 index 0000000..4c833d6 --- /dev/null +++ b/data/3-days/day-46.md @@ -0,0 +1,761 @@ +--- +day: day-46 +date: unknown +source_pages: + - 205 + - 206 + - 207 + - 208 + - 209 + - 210 + - 211 + - 212 + - 213 + - 214 + - 215 + - 216 + - 217 + - 218 + - 219 + - 220 + - 221 + - 222 + - 223 +source_ranges: + - data/2-pages/205.txt + - data/2-pages/206.txt + - data/2-pages/207.txt + - data/2-pages/208.txt + - data/2-pages/209.txt + - data/2-pages/210.txt + - data/2-pages/211.txt + - data/2-pages/212.txt + - data/2-pages/213.txt + - data/2-pages/214.txt + - data/2-pages/215.txt + - data/2-pages/216.txt + - data/2-pages/217.txt + - data/2-pages/218.txt + - data/2-pages/219.txt + - data/2-pages/220.txt + - data/2-pages/221.txt + - data/2-pages/222.txt + - data/2-pages/223.txt:5-23 +complete: true +--- + +# Raw Notes + +## Page 205 + +Day 46 + +Morgana turns into a bee to go scout out the kitchen. 12:30 +Druma classroom is bigger on the inside & like an amphitheatre +with huge set with trees & feels well looked after. +As go towards the door between Hall & kitchen hears +animalistic snoring behind the huge settings. 3 x cages - 1 empty, +other 2 have Chimeras in them. Both have Lion & Dragon heads, +but 1 has a goat head for its 3rd head & the other has +snakes. + +Corridor has lots of hybrid animal pictures. +Hall seems to have a dome barrier against the door. +Kitchen - +1st year dorm - No bedding in here even though it's past midnight. +P.S. - Benches & surgical tables - experiment room. Horse on one of +the slabs & is cut open but still alive. People in there are "Men" +with squid heads - talking to an elf with green (moss) hair. +"There's no need for her to be here." She says there is +with the meddlers around and her mother has gone. (Willowispa) + +Use broom to try to get to kitchen - darkness is worse. +Door disappears. - 2 black holes & ring of black around them. +Try broom again on the floor - seems to come out in a +cathedral & the door is in the ceiling - Morgana tries +to detect Dirk's dad & feels like we are in Harthall. +Strange wood & vacuum feel - the holes have now gone?? +Morgana tries to leave note saying we may have left Valententhides +home. Sees her & yelps - asks if she is the +lord Squall - tells him to go warn someone. + +Go to the kitchen. +Salt pot won't move - top moves like a safe notch. +Click 6/11/10/13/7, opens to reveal salt. +Mr Moreley appears from the well. +Evocation - understand when we get there - no point in +riddles. + +## Page 206 + +Main Hall storage area for stock beasts. Human +wizards. Geldrin tries to deceive them. +One pulls out a copper wire - attack them. Release +Owlbear. +Morgana tries to free the rest of the animals. +- ledger documenting sales of beasts - stopped in the + last few weeks. +- necklace - snake & scorpion - Noxia symbols. +Animals are released out of the back door. + +Get attacked & plunged into darkness. Willowispa attacks us. +Comes into a dragon outside & flys off. +2 wizards come through the doors of the room. +One looks like one of the "twins". The grub is killed +& we hear a scream from underground (basement). +Use the Broom to try to go to the basement. Open the +door & it's blue sky instead of pitch black - go +through the door & it disappears. Try to open the +door & it doesn't open. Bosh flys down & finds some +coins glinting in the distance. Pay a penny & it then opens. + +Relief map in the room (approx dome time) with +8 divots around the outside - for the orbs? +* (page 35 for location?) +2 doors either side, one no handle, the other has +a handle but magically trapped with dried blood +seeping under the door. Breaking head from the other side +of the door. Traps go off on the other side of +the room as designed to go off from the outside. +Antichamber type room with 3 doors. +They see & the people who were in the room are dead & evidence they were +trying to decipher the traps. + +## Page 207 + +Wizards instructed to get in at all costs. Seem to have +spent 20 years trying to get through the door. +3 people killed by the trap - no visible way in the room. +Very plain & the wizards got in by breaking through the ceiling. +Found a gap between the mortar which seems to be a door +but we can't open it. + +Through the hole & seem to be in the 3rd year dorm, +which to bring people out of the hole. Approx 10 +people sleeping here. +Lock all of the doors to the 3rd year dorm & go +to Evocation. + +Floor of the corridor between 3rd dorm & main hall seems to be +covered in 4 rays from different areas: +- Dannersend - Orange with stained glass effect showing Garadwal + at one angle & can see the word "Terror". +- Another copper with perfect concentric circles. +- Another fur - white - like dog fur (Kite/ghost fur). +- Last on Hexagon split into 6 segments (primary & secondary colours) + looks cheap. + +Pictures on the walls - seem to match with the style +of the rug: +- dark shirts +- Tabaxi/elves +- Dwarf/copper dragonborn +- Tiny fluffling/Thri-kreen male + +Far rug has a label on - "A gift from the Coppers". +Music room has a musical lock on the door up to Evocation. +Classroom has been ransacked - large metal table is intact & +has a circle of dark runes. Runes glow when Geldrin +approaches with a flint & steel. + +## Page 208 + +Someone approaches the room - Dragonborn - Copper scales, +head is human like - manage to subdue. No-one can see him. +He's a copper goliath mix "The Tarnished" (prisoner & [unclear] sons offspring). + +Go get a rock from the excavation hole & get attacked +by a squid head man - dies. +Jellyfish brooch, scroll of magic missiles (5th level). + +More footsteps towards Evocation. Another "tarnished" with a +coin necklace & curved sword with a purple crystal on hilt (armed). +Sword activates summoning circle. +Wants to make a deal - come to help us as Willowispa +told everyone we were here & we are in danger. +Decide to go with them. Has to do what Verdigren tells +him & will be in trouble if he doesn't do it. + +Summoning Circle has disintegrate spell trapped on it. +Command spell to activate. +Invisible person - another copper tarnished - drops a note +says "propell". +They are sacrificial & had no idea the sword wouldn't +work. +Got a hideout 15 miles below Tradesmells underground. +Send the information to The Basilisk. +They start to fight amongst themselves. +Sword one kills the other. +Geldrin destroys the circle with them on there. + +Decide to go back to the basement to sleep. +3 hours in & Geldrin's Alarm goes off. +Hushed voices saying they've hidden things - dragons didn't know it was +mother, won't be happy. There male & female Willowispa? +Wake up from our shifts with a blank mind. Takes longer for it to come back for +some of us. +Morgana feels it's a spiritual effect - something in the +building - always around but stronger here. + +## Page 209 + +Go out of the room - 11 severed heads line the +hole. Torn off etc. Looks like they weren't killed here. Seems like +most wizards are dead. 8am. + +Go to Elemental lore - ornate handle with all the elements +on it - part of the lock. +Counter at one end - 30/40 cages containing animals - all seem dead. +Errol starts tapping on the window - can't find Rubyeye. Very +chatty & odd - says it's been 117 years for him (3 days for us). +Looks maintained. Doesn't remember where he's been - core seems +to be bursting with energy. Remembers looking for Rubyeye +& looking for the dwarves - darkness being with him for 40 years. +Just gave the answer "lost". Really old - Abraxus looked after him - really +nice city. Came back in the barrier through the Coalmount hills +portal - fight going on - 1 black & 3 green Dragons (veridian?). +Says he's hungry - has been eating gems for the past 40 years. +Apparently we've always owned him - thinks I'm Evalina +& everyone is themselves - from when we went to the past. +Abraxus gave him to us. Abraxus is Professor Moreley! +Moreley waiting for us downstairs, feeling he is very confused +& not making sense. + +Back to evocation - Errol didn't find any orbs. +Go to 3rd year upper dorm. Find a globe with a +rock inside. - Turn it into lava in the evocation +classroom. + +Novelty from home - go somewhere to buy shit gifts. +Go to the shop - very quiet on the way. +Persuade the door to open - socks & trinkets - illusion of a gnome +shopkeeper. Ask for a snowglobe from Snowscreen. + +## Page 210 + +[unclear] get racing automatons - voice activated. + +Need to make the snowglobe bigger! Alteration. +Door between necromancy & alteration appears to be made +of bone. +Manage to get into the room by shrinking, eating the +cake & growing with the potion. Take the rest +of the cakes & potions from the desks. + +Go back to tuck shop. +- Next one in apparently obvious room - both exactly where + you would expect to find them. - Storm (weather) & Life (Herbs). + +Head over to weather & as passing the shield wall the +vulture man [unclear: Exhausted] is lying prone. Seems dead but +suspect his soul is still there. +Morgana tries to reincarnate the spirit not the body +of Metatous. + +Some of us head up to weather. +Room seems to lead to the outside & on a clifftop. +Temperate weather. Close the door & twist the handle so +it points to a storm section of the door & reopen +to a storm. + +- Spot something floating in the water - retrieve the orb by + changing the weather back & shape water. Change the + weather back to storm & hold the orb to the sky + & lightning hits a small piece of seasoned stone in the orb. + Have a Storm Orb. + +- Morgana feels like the soul is not complete & tries to + gather the rest of the parts of the soul. + +- Herbs - Geldrin gets a mushroom [unclear] on him & it tries to communicate + with him. "Flesh bag what are you doing say we are friends with + Limos vita" - searches his memories & says he is trapped like + they are. + +## Page 211 + +Somebody is already spreading them around. +A cat horned flesh bag. + +- Morgana - blanks out during the spell. + Vision - standing in a library aisle (infinite) + red carpet with dried blood. Says "not Terror". + Book says "Grand temple city" blank except one + page. Has hubward - she left him astray - at [unclear: Hyane] + down the corridor - Berry eyes close & asks what she is + doing here? Comes back in the room. + +- Invar gets Dirk to open the door - we may not + come in, the creature must be contained... + Tendril then speaks to Dirk & asks to be freed. + Dirk says no & it says he has blockers + too - then shows him a vision of a sickly + goliath. Enters their tent & is then pulled out by + a green dragon (dragonborn?). + Manage to push the door open enough for Geldrin + to get in. + Automation holding the door back. Tendrils + want to be freed. + Automaton is there to stop mushroom escaping. Has only + ever been in two places. Student of Lord [unclear: Dunthing] took + it to study it. + Wants to give them 5 pieces & plant a mile + apart, earthwise from a river. Agree to wait 5 + years. + +- Morgana - body starts to form on the floor - elven body, + male, greenish hair. + He feels a lot of divine energy. + Says his name is Garadwal! + +Supplemental map / diagram: +- Grand floor (?) / 1st floor. +- 2nd: Jewel room. +- Central map shows a study hall, a 3rd year room, and a 4th year room. +- Notes include: "Corridor Silas-Heshen", "Transmutation", and "doorway to office". +- Margin note: Transmutation - [unclear] lifting - Silt [unclear]. + +## Page 212 + +He doesn't recognise us - last thing he remembers +is the desert & his people... No Dome was up when +he last remembers. + +Tell him what has happened to him. He seems to be +good now. + +When Benn banished Garadwal he wasn't where he +thought he would be. Morgana thinks a lot of +Garadwal was in the vulture body. +Emeraldus - one of his children? +- Decide to call him Groot for now. +- Go back to the basement. + +Garadwal senses spirits protect this area. +Put the orbs into the relevant slots - slight glow. +Some shining on the locked door, but nothing +else happens. +Door seems to have changed & now shows runes. +Looks to be ancient draconic. +"You've got this far. I'll do my best to aid you +in the battle you are about to have. The creature +you are about to face will destroy your +memories & you will not remember the spell you +are about to cast." + +Try to tell him what he might encounter in there. +40 ft long creature, alien type, squelchy creature. +Face is anguished, half scared & half in pain (humanoid). +Skeletal wings - spectral dragon holding it down. +Mr Moreley trying to stop it from its full +abilities. He gets pulled back into the school +& the creature raises up. + +## Page 213 + +Ichor sprays. + +Me - cave to small creatures clad in metal, +firing repeating crossbows, +running past, hearing roaring of a dragon. + +Dirk - thriving goliath city, lots of different races trading. + +Geldrin - metal tower with zeppelins flying around. +- Dragon skull isn't there any more. +Feel like the mind altering is happening from the back. + +Morgana - field of grass, daisies, hand on shoulder, warm & +calming feeling. Barefooted faceless woman clad in silks. + +Creature dies - but invisible entity is escaping +through the door. Attack it but forget it +is there. Dirk runs through it but thinks it +was a wall - is now visible & running +through the orb room. +The room starts to disappear & 4 doors appear in +the map room. 1 of the orbs is not lit up - +amoursorate is the one not lit. + +Illusion of Joy is the other side of the map table. +Says she is here because we have met her +and she is lost & always has been, then disappears. + +Morgana is a head & when she comes into the room +an illusion toad appears next to her with something in its +mouth. + +Geldrin appears in a dark room in front of Kasha's throne +& she wants to claim her debt for Garadwal & wants +him like him as is her [unclear: father]. +Back in the room & his bag starts dripping blood. +Tells Garadwal Kasha wants his soul. +Investigates the non glowing orb & there is a tiny scratch in +it. + +## Page 214 + +Geldrin asks for cake & to try to hear the orb. +Find a rug on the floor that says "lost" in different +languages. + +Main door has disappeared. +Orb has a skull in the middle with ruby eyes. +Says he was close to working it out. Gave a message +to Errol, can't stay for much longer, and then disappears. +Lightning reappears in the orb. + +Water room contains the water excellence we battled, +dragging the mermaid we rescued. +Dirk asks why he's here & it replies because you +have seen me & now it will be your end. + +Garadwal removes Morgana's feeble mind. She sees +2 storm rubyeyes before coming back to herself. +- Remove the salt orb & the prison door shuts. + +Geldrin asks Errol for Rubyeye's message & he says he +doesn't have one. Geldrin calls him out for lying +& he opens his desk & a ruby drops out. +Ruby has something playing in it - see Enis & Browning sort of +a huddle - what did Squeal ask for? Browning says the weather +to come through the barrier - but that's not what he +said - actually says "the loss of everything". Enis +says cryptic but we may use it to help us. + +2nd one has red glowing eyes with white minds for eyes, +a water excellence & a whirlwind being. +Tell Errol to play message - but he refuses. + +Morgana turns into a bat to use echo location - found +something, but forgot she found something & turned back. +Give Geldrin the lost ring. He puts it on & it disappears. +Dirk loses compassion & Geldrin no longer wants to learn things. + +Message says "Bread & Circus" & pretends it's Rubyeye. + +## Page 215 + +Morgana opens the coral door again - same +things in there but an army of fish men now. +Tells them to come get her - tries to disbelieve it & +sees leech type creatures - tells us to kill them. + +Geldrin throws a fireball to the ceiling & we see +lots of trails to the creature & some to the rooms. + +Dunner Door - Statue of Sierra is in one piece. +Lodest surrounded by vulture men & Anastasia +is chained up. Lodest hunts him in. + +Another door - having a nice stroll & heading towards Valententhide's +prison with purpose. Shock it & doesn't seem to notice +& continues towards the door to the prison. Door glows. +Morgana hits the mermaid & we take damage. + +Dirk, Garadwal, me & Morgana all protect the glowing +thing in the rooms & wake up back in the original room. +Geldrin & Invar also wake up. +Dead! +We all wake up & memories come flooding back. Level up! +All memories from others flood through us all at once then +dissipates. + +- Invar & Elliana remember Morgana is more familiar to them + than they remember. +- Platinum - Cardonald's cat - says Errol is possessed + by one of Squeal's things. +Heads out, then heading to "Joshua". Eyes turn. + +Message from Rubyeye - Squeal - be careful at riversmeet. +Enis set a trap on the room for Rubyeye, went +to a safe place - wife's place & is imprisoned. + +Cardonald - her & goliaths spotted tainted dragons - going to +try to root them out. + +## Page 216 + +Amoursorate - look after my son. + +Dothral (Joshua) only been aware for 20 years. +Soul crashing into the tower awoke a few constructs. + +Magpie lands on Morgana & says it can help her. The chorus +sent it. Going to be difficult soon but she'll know the right +path when it comes. Can't say any more as Morgana told it +not to say anything else. She can't remember doing that. +Magpie says it's time - they couldn't help before but they can now. +Willowwispa was flying away furious. + +Dothral - woke up around Rhime watches around 20 years. +Next to a door & something propelled him through it forcefully. + +Day 46 + +Move mattresses into the map room to rest. 2:00. +Geldrin goes to check if the power armour suit +is still there with Dothral. Bring it back to the +map room. + +Sleep. + +Platinum last knew where Cardonald was approx 2 days +ago in Tradesmells. She's just been hard to recall. +Cardonald obsessed with the idea of Dothral over the +last few days. + +Six people drop down the hole: +gnoll - Longfang?? - thought dragon in Lake Azure might be dead. +sparrow aarakocra - Mercy. +pesky elf - (bellow men). +Mercy stops Longfang from opening the door - it's trapped +there on reconnaissance - boss says one here - quick mystic listening. +Try to rip blade out & I open the door. +Bubble around the elf & Mercy pulls through the blade. + +## Page 217 + +Invar brings Garadwal out of feeble mind. +Looks like he's in shock as now remembers +everything. Needs to find his brothers & teleports away. + +Morgana tries to reincarnate the baby sphynx. +Can feel where some light spirit was & +feels like someone else is also pulling at the +spirit. She blacks out & gets pulled in front +of Kasha. She states it is hers & Morgana can't +have it. Kasha is taking it as alternative payment. +Morgana tries to persuade her that the original +payment will be made as promised. +Asks Igraine to help & Abraxas & [unclear: Typh] now come at +Morgana's feet. This allows her wholly, she wafts towards +Heather. Feels a strange warmth & Invar blacks out +& appears next to Morgana. + +Kasha says this hasn't happened for many years +& can see why we have been chosen +but she cannot be fooled like the others & +will not be taken like them, and lets them +have the goliath child. Spell completed too quickly - somebody +else cast it. + +Baby feels hot & unwell - seems to be reflecting the state +of the goliath civilisation. + +Go back up the hole. +Invar's robes now have his surname on it but it's been +there all the time, & he now recognises it. +Exit via main entrance - abandoned tents - empty of people +& things, furniture etc. still there. 11:00. +Go to the town - bustling city. + +## Page 218 + +Go to the council offices in the middle of the bridge. +2 guardsmen outside just there. +Lady Igraine is away on official business, went this morning (?!?) +(family business) towards Grand Towers. +Can see the Exchequer & get to go straight +in (skip the queue). + +He says we were at the mage school (just what they +call it?) Lots of animals sighted recently & dragon +flew off & was wounded. + +Morgana hears him think "I wish they would leave" & get some +guards to follow them. +Morgana has a new bird on her shoulder. +Bartholomew. Betty is pretty. Swooped by him & +said he's been there since we got to town. + +Go to And Pool. Elliana skulks off to spy on the +guards. +Nothing following us at the moment. + +Man came in just before me & after the rest, half elf, +clothes over leather armor, following quite well. +Elliana sits at a different table, see him start writing +on paper. +He starts to leave with a sending stone. Try to get the +paper & grapple him. Geldrin intimidates him to give me the +stone. The exchequer wanted to know where we +were - changed the stone to say a different pub. ("I'm the drink".) +Exchequer said we looked shifty & stole the baby. + +- Exchequer doesn't have a name & the seneschal is + usually in charge if Lady Igraine is away. No aarakocra + is important in the town. Spy guy says there is one & + he's worked for him for years... Guards going to take us + to Lady Igraine. + +## Page 219 + +Take us to the other door & over the bridge to +the other side. + +- Guards stop us from going in saying Lady Igraine + doesn't want to be disturbed. Elliana knocks to bang on the door + but guards stop her. Morgana turns into a bee to check + the room & it is empty. She was there 6 hours + ago. Go back to the Exchequer office. Burst into the room. + Half-elven man talking to some traders. Not the same + guy. Receptionist says he has been in there all day & he + hasn't seen us before. + +Morgana goes to the toilet & casts locate creature on +the bird. Bartholomew turns into the "Exchequer" with 2 small +daggers. Morgana turns into a bear & roars. We all +hear & start to head over. Some of the people +in the waiting room run & some others pull out daggers. +Chairs move strangely - llamia? + +Elliana was heading to see the guards to question them. +Why they told us about the exchequer when he doesn't +exist. + +The people in the waiting room turn into a llamia & some rats +& more on the outside of the room. +"We don't fireball babies" DM quote. +Bartholomew turned into a massive vulture thing with lightning +crackling at his fingers. See me to recognise Elliana, +says "I'm doing your bidding". + +Kill all of the rats & llamia & vulture. +Go to get the two guards from the door. +Guard who told us about the exchequer is confused & can't really remember, +but the exchequer told him we were coming. +Also about the lady going on family business. + +Side note: 2x Llamia inc. daggers. 80 hexagon coins, dark grey rose, +Bartholomew silver chain green pendant. + +## Page 220 + +Seneschal - orders people to search for the town folk +& for any more infiltrators in the town hall. +Guards have their memories altered. +Head to Lady Igraine's room. +No obvious signs of struggle except for an earring on the floor. +Realise a rat had run away. +Clerical officers Williams & Terrance get deputy badges! +Williams mid 30s male, Terrance 40s male. + +Go to Williams house (on wayshrill bridge), address given by actually +an accountant. Looks like it's been abandoned for a few +weeks. No signs of struggle. +Bit of post in the office - nothing seems to connect aside from +a purchase of 500 gold worth of jade - client name? +Address is "I'm the drink" 3 weeks ago. + +Go to Terrance house - outskirts of town. +Officer Biggs & another already there. Terrance was there +this morning & has been more attentive recently - smelling +musty. Chopped all of the heads off the neighbours' sunflowers. +For work at 7:30 this morning, gets home around 14:00. +Thinks he will be at the "I'm the drink". Doesn't +usually frequent there. Remembered her birthday was next week, +which he doesn't usually. Heard a cat-sized rat in the garden recently. +Wife is wearing jade earrings her husband gave her for +her birthday. + +Go to "I'm the Drink" pub on the outskirts of the bridges, +bit dingy looking. Medfolk bartender. Alanna says his Pact leader, +human man (18ish), comes over & asks me if I need him to +do anything?! No sign of him being underbelly. +Tell him to go & find Terrance & bring him to us. +He insinuates he is part of the disguised crew. +Geldrin disguises his staff as jade & props it obviously. + +## Page 221 + +Half elf comes in - interrupts & heads straight to Geldrin. +Been a bit of a set back to the plans - had a good +working in the town hall but not so much after the +scuffle. Taking a lot of power - going to go there herself? +Lots of forgotten passages - people gone missing using the +passages. Need reinforcement. Think it's been hidden somewhere. +Can't risk abduction again & they didn't find it when he +was abducted. + +Mind magic not working properly since something happened +at the school. + +He'll get the town hall back under control & get +others to look for the artifact - no suspected location for +it. +Another problem - Brothers loose - undead sphynx? +He's 6th in charge. 1-5 unaccounted for. +Will talk to Garrick (in another town). +Lady Igraine hasn't been taken again. + +Talks to Garrick via a mirror - told him to get it for us. +1 hour later - 15 year old & a guy we don't recognise +instantly runs off. Chase him. +Found him at the races probably trying to get a +new identity. +Have some leads: +Harthall artifact was put in one of the prisons. +Harthall meant to be looking after mind effects, maybe +stopped her from remembering. Somewhere near Snowscreen. +No team currently checking it out. Some people near +Pinesprings but some adventurers killed them all. +Brothers - one disappeared - the other controlling an +undead sphynx. + +## Page 222 + +Igraine came back this morning. They had 2 guards +on the door & she's now missing. + +Terrance is 4th in charge - doesn't know it was us +who killed everything else in town. +Thinks they should leave the town & reinforce the prisons. +The mirror is in the seneschal's office. + +5th in charge (greasy halfling) returns with "the mirror" & says they're +all going to get on the boat & sail off. +Make him 1st in command. + +He takes us to the boat. People milling around on the +quay, loading things onto the boat. +Moonbeam kills the greasy halfling. +Fireball hits the boat & incinerates everything & + +- Dive into the water & find 50,000g of jade. +Nobody seems to have come to investigate. +Morgana sees a white rabbit out of the corner of her eye +that got here on the back of the protector (from snowy area) +on lectern - thinks it remembers us. + +Rewards by the militia happen at "I'm the Drink" & "The Olde Clay Jug". +Get the other half of the sending stone from +the guy in the pub from "The Exchequer" & give to the seneschal. +Go to the Olde Clay Jug. + +- Spot one of the waitresses with a tray with leaves. Can't + ask to see Highgate. Ask her on the way past. + She goes through the "Earth hath no" door. Dwarf we were + speaking to leaves & another dwarf sits in his place. + +## Page 223 + +Bollar men looking for us. +He agrees to help the militia & find the missing +town folk. +Friends back home (ice dwarf) say a mutual friend we +sent out of the barrier took the opportunity to do +something before trying to get back in - she hasn't +found a way in. Visited Lord Bleakstorm. + +Mirror hums - back of a female Lady hair - says +she can take us there & is a friend. Voice +is cold & wishes for the same thing we seek, & any debts +she perceives will be repaid. +The end of all things - Valententhide! - will let +us use her pathways - wants the artifact & +will come at the cost of some identities +& some eyes & some pride. Shut her off. + +Decide to go to Harthall's lab after resting & eating +chicken. diff --git a/data/4-days-cleaned/day-46.md b/data/4-days-cleaned/day-46.md new file mode 100644 index 0000000..e6615d3 --- /dev/null +++ b/data/4-days-cleaned/day-46.md @@ -0,0 +1,175 @@ +--- +day: day-46 +date: unknown +source_pages: + - 205 + - 206 + - 207 + - 208 + - 209 + - 210 + - 211 + - 212 + - 213 + - 214 + - 215 + - 216 + - 217 + - 218 + - 219 + - 220 + - 221 + - 222 + - 223 +complete: true +--- + +# Narrative + +Day 46 began in the old Riversmeet mage school / Menagerie after midnight. Morgana turned into a bee and scouted toward the kitchen at about 12:30. The drama classroom was larger inside than outside, like an amphitheatre with a huge tree-filled set, and was still well kept. Near the door between the hall and kitchen she heard animalistic snoring behind the scenery. Three cages stood there: one empty, and two holding chimeras. Both had lion and dragon heads; one also had a goat head, and the other had snakes. The corridor contained many hybrid-animal pictures, and the hall had a dome-like barrier against the door. + +The party found a first-year dorm with no bedding despite the late hour. In a possible surgical or experiment room, a horse lay cut open but still alive on a slab. Men with squid heads were speaking to an elf with green or moss-like hair. One said, "There's no need for her to be here." The elf replied that there was, with the meddlers around and her mother gone. This was identified as Willowispa. + +The party tried using the broom to reach the kitchen, but the darkness worsened. The door disappeared, leaving two black holes with a black ring around them. A second attempt with the broom opened into a cathedral, with the door in the ceiling. Morgana tried to detect Dirk's father and felt they were in Harthall. The place had strange wood and a vacuum-like feel, and the holes then vanished. Morgana tried to leave a note saying they might have left Valententhide's home. She saw Valententhide, yelped, and asked if she was Lord Squall. Valententhide told someone to go warn someone. + +The party eventually reached the kitchen. A salt pot would not move, but its top behaved like a safe dial. The sequence `6/11/10/13/7` opened it and revealed salt. Mr Moreley appeared from the well and said Evocation would make sense when they got there, with no point in riddles. + +In the main hall, the party found a storage area for stock beasts and human wizards. Geldrin tried to deceive the wizards, but one pulled out copper wire and a fight began. The party released an owlbear, and Morgana tried to free the remaining animals. A ledger documented beast sales that had stopped in the last few weeks. A necklace bore snake and scorpion symbols of Noxia. The animals were released out the back door. + +The party was then attacked and plunged into darkness. Willowispa attacked them, changed into a dragon outside, and flew off. Two wizards came through the room doors; one looked like one of the twins. When the grub was killed, the party heard a scream from the basement. They used the broom to try to reach the basement. One door opened onto blue sky rather than pitch black. When they went through, the door vanished. Bosh flew down and saw coins glinting in the distance. Paying a penny reopened the door. + +The basement contained a relief map, roughly from dome time, with eight divots around the outside, possibly for the orbs. Two doors stood to either side: one had no handle, and one had a handle but was magically trapped, with dried blood seeping underneath and a breaking head on the other side. Traps went off from the outside as designed. An antechamber had three doors. The people who had been in the room were dead, with evidence they had been trying to decipher the traps. Other wizards had apparently been ordered to get in at all costs and had spent twenty years trying to get through. Three were killed by the trap. There was no visible way into a plain room, though the wizards had broken through the ceiling. The party found a gap between the mortar that seemed to be a door but could not open it. + +Through the hole, the party seemed to reach the third-year dorm, with about ten people sleeping there. They locked all the dorm doors and went to Evocation. The corridor floor between the third-year dorm and main hall was covered in four rays from different areas: an orange stained-glass-like ray from Dannersend showing Garadwal from one angle with the word "Terror" visible, a copper ray with perfect concentric circles, a white fur-like ray like dog or ghost fur, and a cheap-looking hexagonal design split into six primary and secondary colour segments. Pictures on the walls matched the rug styles: dark shirts, tabaxi or elves, a dwarf or copper dragonborn, and a tiny fluffling or thri-kreen male. A far rug was labelled "A gift from the Coppers." + +The music room had a musical lock on the door up to Evocation. The classroom had been ransacked, but a large metal table remained intact with a circle of dark runes. The runes glowed when Geldrin approached with flint and steel. A copper-scaled dragonborn with a human-like head approached. The party subdued him, though no one could see him. He was a copper-goliath mix called one of the Tarnished, apparently the offspring of a prisoner and [unclear] sons. When the party fetched a rock from the excavation hole, a squid-headed man attacked and died. The party found a jellyfish brooch and a 5th-level scroll of Magic Missile. + +Another Tarnished came toward Evocation, armed with a coin necklace and a curved sword with a purple crystal in the hilt. The sword activated the summoning circle. This Tarnished wanted to make a deal, saying Willowispa had told everyone the party was there and they were in danger. The party decided to go with them. The Tarnished had to obey Verdigren and would be in trouble otherwise. The summoning circle had a Disintegrate spell trapped on it, activated by command. Another invisible copper Tarnished dropped a note reading "propell." The Tarnished were sacrificial and had not known the sword would not work. They had a hideout fifteen miles below Tradesmells. The party sent the information to the Basilisk. The Tarnished began fighting among themselves; the sword-bearing one killed the other, and Geldrin destroyed the circle with them on it. + +The party returned to the basement to sleep. Three hours in, Geldrin's Alarm went off. Hushed voices said they had hidden things, that dragons had not known it was Mother, and that they would not be happy. The notes ask whether there were male and female Willowispa. When the party woke from their shifts, their minds were blank, and for some of them memory took longer to return. Morgana felt it was a spiritual effect from something always present in the building but stronger there. + +At 8:00, the party left the room and found eleven severed heads lining the hole. The heads looked torn off and apparently had not been killed there. Most of the wizards seemed to be dead. In Elemental Lore, an ornate handle with all the elements on it formed part of the lock. A counter stood at one end, and thirty or forty cages held animals that all seemed dead. Errol tapped on the window, saying he could not find Rubyeye. He was chatty and odd, saying it had been 117 years for him but three days for the party. He looked maintained, did not remember where he had been, and his core seemed to be bursting with energy. He remembered looking for Rubyeye and the dwarves, darkness being with him for forty years, and giving only the answer "lost." He had been with Abraxus in a really nice city, returned inside the Barrier through the Coalmount Hills portal, and saw a fight involving one black and three green dragons, perhaps Veridian. He had been eating gems for forty years. He thought the party had always owned him, thought the narrator was Evalina, and recognised the others from the time they went to the past. Abraxus had given him to them. Abraxus was Professor Moreley. Moreley was waiting downstairs, very confused and not making sense. + +Back at Evocation, Errol had not found any orbs. The party went to the third-year upper dorm and found a globe with a rock inside, then turned it into lava in the Evocation classroom. They wanted a novelty from home and went looking for poor gifts. The shop was very quiet. They persuaded its door to open and found socks, trinkets, and an illusion of a gnome shopkeeper. They asked for a snowglobe from Snowscreen. + +The party apparently obtained or considered racing automatons that were voice activated. They needed to make the snowglobe bigger in Alteration. The door between Necromancy and Alteration seemed to be made of bone. The party got into the room by shrinking, eating cake, and growing again with a potion. They took the remaining cakes and potions from the desks. At the tuck shop, they learned the next targets were in obvious rooms, exactly where expected: Storm in Weather and Life in Herbs. + +On the way to Weather, near the shield wall, a vulture man, possibly [unclear: Exhausted], lay prone. He seemed dead, but the party suspected his soul remained. Morgana tried to reincarnate Metatous's spirit rather than his body. Some of the party went to Weather. The room seemed to open outside onto a clifftop in temperate weather. They closed the door, turned the handle to point to a storm section, and reopened it into a storm. They spotted something floating in the water and retrieved the orb by changing the weather back and using Shape Water. After changing back to storm and holding the orb to the sky, lightning struck a small piece of seasoned stone in the orb. They gained a Storm Orb. + +Morgana felt the vulture man's soul was incomplete and tried to gather the remaining soul parts. In Herbs, Geldrin got a mushroom [unclear] on him that tried to communicate. It called him a flesh bag, asked what he was doing, and said they were friends with Limos Vita. It searched Geldrin's memories and said he was trapped like they were. Someone was already spreading them around, described as a cat-horned flesh bag. + +During the spell, Morgana blanked out. She had a vision of an infinite library aisle with a red carpet stained by dried blood. A voice or sign said "not Terror." A book labelled "Grand temple city" was blank except for one page. It mentioned hubward, that she left him astray, and [unclear: Hyane] down the corridor. Berry eyes closed and asked what Morgana was doing there, and Morgana returned to the room. + +Invar got Dirk to open a door while a warning said the party might not come in and that the creature had to be contained. A tendril spoke to Dirk and asked to be freed. Dirk refused, and it said he had blockers too, then showed him a vision of a sickly goliath entering a tent and being pulled out by a green dragon or dragonborn. The party managed to push the door open enough for Geldrin to get inside. An automaton was holding the door back and was there to stop the mushroom escaping. The mushroom tendrils wanted freedom. The automaton had only ever been in two places; a student of Lord [unclear: Dunthing] had taken it to study. The mushroom wanted to give the party five pieces to plant a mile apart, earthwise from a river. The party agreed to wait five years. + +Morgana's reincarnation formed a male elven body with greenish hair on the floor. He felt full of divine energy and said his name was Garadwal. He did not recognise the party. The last thing he remembered was the desert and his people, before any Dome existed. The party told him what had happened, and he seemed good for the moment. When Benn banished Garadwal, he had not gone where expected. Morgana thought much of Garadwal had been in the vulture body. Emeraldus was wondered to be one of his children. The party decided to call him Groot for the time being. + +The party returned to the basement. Garadwal sensed spirits protecting the area. They placed the orbs into their relevant slots, producing a slight glow and some light on the locked door, but nothing else happened. The door changed and showed ancient Draconic runes: "You've got this far. I'll do my best to aid you in the battle you are about to have. The creature you are about to face will destroy your memories & you will not remember the spell you are about to cast." The party tried to tell Garadwal what he might encounter. A forty-foot alien, squelchy creature appeared, with an anguished humanoid face half scared and half in pain. Skeletal wings and a spectral dragon were holding it down. Mr Moreley was trying to restrain its full abilities, but he was pulled back into the school and the creature rose. + +Ichor sprayed, and the party experienced visions. The narrator saw a cave with small creatures clad in metal, firing repeating crossbows, running past while a dragon roared. Dirk saw a thriving goliath city with many races trading. Geldrin saw a metal tower with zeppelins flying around, and the dragon skull was gone. The party felt the mind-altering effect coming from the back. Morgana saw a grassy field of daisies, a hand on her shoulder, and a warm, calming feeling from a barefoot faceless woman in silks. + +The creature died, but an invisible entity escaped through the door. The party attacked it, but forgot it was there. Dirk ran through it and thought it was a wall. It became visible and ran through the orb room. The room began to disappear, and four doors appeared in the map room. One orb was not lit: Amoursorate's. An illusion of Joy appeared on the far side of the map table, saying she was there because the party had met her and she was lost and always had been, then disappeared. Morgana was a head when she came into the room, and an illusion toad appeared beside her with something in its mouth. + +Geldrin appeared in a dark room before Kasha's throne. Kasha wanted to claim her debt for Garadwal and wanted him because he was like her [unclear: father]. Geldrin returned to the room with his bag dripping blood and told Garadwal that Kasha wanted his soul. When the party investigated the non-glowing orb, they found a tiny scratch in it. Geldrin asked for cake and tried to hear the orb. A rug on the floor said "lost" in several languages. The main door had disappeared. The orb contained a skull with ruby eyes, which said he had been close to working it out, had given Errol a message, could not stay much longer, and then vanished. Lightning reappeared in the orb. + +The water room held the water Excellence the party had battled, dragging the mermaid they had rescued. When Dirk asked why it was there, it replied that because they had seen it, now it would be their end. Garadwal removed Morgana's Feeble Mind. Before returning to herself, she saw two storm Rubyeyes. The party removed the salt orb, and the prison door shut. + +Geldrin asked Errol for Rubyeye's message. Errol said he did not have one, but when Geldrin called out the lie, Errol opened his desk and a ruby dropped out. The ruby played a scene of Enis and Browning in a huddle. Browning asked what Squeal had asked for. He said the weather to come through the Barrier, but the notes clarify that was not what Squeal said; Squeal actually asked for "the loss of everything." Enis said it was cryptic but might help them. A second message showed red glowing eyes with white minds for eyes, a water Excellence, and a whirlwind being. Errol refused to play the message. Morgana turned into a bat and found something by echolocation, then forgot she had found it and turned back. The lost ring was given to Geldrin. When he put it on, it disappeared. Dirk lost compassion, and Geldrin no longer wanted to learn things. A message said "Bread & Circus" and pretended to be Rubyeye. + +Morgana reopened the coral door. The same things were there, but now with an army of fish men. She challenged them, tried to disbelieve the vision, saw leech-like creatures, and told the party to kill them. Geldrin fired a Fireball at the ceiling, revealing many trails to the creature and some to the rooms. Through the Dunner door, the statue of Sierra was in one piece, Lodest was surrounded by vulture men, and Anastasia was chained up. Lodest hunted him in. Another door showed someone taking a pleasant stroll toward Valententhide's prison with purpose. A shock did not seem to register, and the figure continued toward the prison door, which glowed. When Morgana hit the mermaid, the party took damage. + +Dirk, Garadwal, the narrator, and Morgana protected the glowing thing in the rooms and woke back in the original room. Geldrin and Invar also woke. The notes record "Dead!" and then everyone woke with memories flooding back. The party levelled up. Other people's memories flooded through them all at once and then dissipated. Invar and Elliana remembered that Morgana was more familiar to them than they remembered. Platinum, Cardonald's cat, said Errol was possessed by one of Squeal's things. Platinum headed out toward "Joshua," and his eyes turned. A message from Rubyeye / Squeal warned the party to be careful at Riversmeet. Enis had set a trap in the room for Rubyeye, who went to a safe place, his wife's place, and was imprisoned. Cardonald and the goliaths had spotted tainted dragons and were going to root them out. Amoursorate said, "look after my son." + +Dothral, also called Joshua, had only been aware for twenty years. A soul crashing into the tower had awakened a few constructs. A magpie landed on Morgana and said it could help her. The Chorus had sent it. Difficult times were coming, but Morgana would know the right path when it came. The magpie could say no more because Morgana had told it not to say anything else, though she could not remember doing so. It said it was time; the Chorus could not help before but could now. Willowispa was flying away furious. Dothral had awakened around Rhime watches about twenty years earlier, near a door, and something had forcefully propelled him through it. + +The notes mark Day 46 again as the party moved mattresses into the map room to rest at 2:00. Geldrin checked whether the power-armour suit was still there with Dothral and brought it back to the map room. The party slept. Platinum last knew Cardonald's location about two days earlier in Tradesmells; she had been hard to recall, and in the last few days she had become obsessed with the idea of Dothral. + +Six people dropped down the hole. They included a gnoll, probably Longfang, who thought the dragon in Lake Azure might be dead; a sparrow aarakocra called Mercy; and a pesky elf connected to the bellow men. Mercy stopped Longfang from opening the trapped door, saying they were on reconnaissance and the boss had said one was here, with quick mystic listening. The party tried to rip out the blade and opened the door. A bubble surrounded the elf, and Mercy pulled through the blade. + +Invar brought Garadwal out of Feeble Mind. Garadwal looked shocked as he now remembered everything. He needed to find his brothers and teleported away. Morgana tried to reincarnate the baby sphinx. She could feel where some light spirit had been and also felt someone else pulling at the spirit. She blacked out and was drawn before Kasha, who said the spirit was hers and Morgana could not have it. Kasha was taking it as alternative payment. Morgana argued that the original payment would be made as promised. She asked Igraine, Abraxas, and [unclear: Typh] for help; they came to Morgana's feet, allowing her wholly. She drifted toward Heather. A strange warmth came, and Invar blacked out and appeared next to Morgana. Kasha said this had not happened for many years, saw why the party had been chosen, but warned she could not be fooled like the others and would not be taken like them. She allowed them to have the goliath child. The spell completed too quickly, as if someone else had cast it. The baby felt hot and unwell, apparently reflecting the state of goliath civilisation. + +The party went back up the hole. Invar's robes now showed his surname; it had supposedly been there the whole time, and he now recognised it. They exited by the main entrance. The tents were abandoned and empty of people and belongings, though furniture remained. It was 11:00. They went into the town, which was bustling. + +At the council offices in the middle of the bridge, two guards stood outside. They said Lady Igraine had gone away that morning on official or family business toward Grand Towers. The party was allowed to see the Exchequer and skip the queue. He said they had been at the mage school, noted that many animals had been sighted recently and that a wounded dragon had flown off. Morgana heard him think that he wished they would leave and that guards should follow them. Morgana also had a new bird on her shoulder, Bartholomew, who said Betty was pretty and that he had been there since they arrived in town. + +The party went to And Pool. Elliana slipped away to spy on the guards. A half-elf in clothing over leather armour came in soon after the party and began writing on paper. He left with a sending stone. The party grappled him and Geldrin intimidated him into surrendering the stone. The Exchequer wanted to know where they were. The party changed the message to point to a different pub, "I'm the Drink." The Exchequer had said the party looked shifty and had stolen the baby. The spy said the Exchequer had no name, that the seneschal was usually in charge when Lady Igraine was away, and that no aarakocra was important in town, although the spy insisted one existed and that he had worked for him for years. Guards were going to take the party to Lady Igraine. + +The guards took the party across the bridge to another door but stopped them entering, saying Lady Igraine did not want to be disturbed. Morgana became a bee and found the room empty; Lady Igraine had been there six hours earlier. The party returned to the Exchequer's office and burst in. A half-elven man was speaking to traders, but he was not the same person. The receptionist said he had been there all day and had not seen the party before. Morgana went to the toilet and cast Locate Creature on the bird. Bartholomew turned into the "Exchequer" with two small daggers. Morgana became a bear and roared. People in the waiting room ran while others drew daggers, and chairs moved strangely, possibly due to lamias. Elliana was on her way to question the guards about why they had mentioned an Exchequer who did not exist. The waiting-room people transformed into a lamia, rats, and more outside the room. The notes preserve the quote, "We don't fireball babies." Bartholomew became a massive vulture-like thing with lightning crackling at his fingers. He seemed to recognise Elliana and said, "I'm doing your bidding." The party killed the rats, lamia, and vulture. A guard who had told them about the Exchequer was confused and could not really remember, except that the Exchequer had told him the party was coming and that Lady Igraine was away on family business. The loot notes record two lamias including daggers, eighty hexagon coins, a dark grey rose, and Bartholomew's silver chain with a green pendant. + +The seneschal ordered people to search for townsfolk and any remaining infiltrators in the town hall. The guards had altered memories. In Lady Igraine's room there were no obvious signs of struggle except an earring on the floor, and the party realised a rat had run away. Clerical officers Williams and Terrance received deputy badges. Williams was a man in his mid-thirties; Terrance was a man in his forties. + +At Williams's house on Wayshrill Bridge, whose address came from an accountant, the party found it abandoned for a few weeks with no signs of struggle. Some post in the office connected only to a purchase of 500 gold worth of jade under an uncertain client name, addressed to "I'm the Drink" three weeks earlier. At Terrance's house on the outskirts, Officer Biggs and another person were already present. Terrance had been there that morning and had recently become more attentive while smelling musty. He had chopped the heads off the neighbours' sunflowers, left for work at 7:30, and usually got home around 14:00. His wife thought he would be at "I'm the Drink," though he did not usually go there. He had remembered her birthday, which he usually did not, and she had recently heard a cat-sized rat in the garden. She wore jade earrings her husband had given her for her birthday. + +The party went to "I'm the Drink," a dingy pub on the outskirts of the bridges. A medfolk bartender was there. Alanna, apparently a human Pact leader around eighteen, came over and asked whether the party needed him to do anything. There was no sign of him being Underbelly. The party told him to find Terrance and bring him to them. He implied he was part of the disguised crew. Geldrin disguised his staff as jade and propped it up obviously. + +A half-elf entered, interrupted, and headed straight to Geldrin. He said there had been a setback to the plans: they had had a good working in the town hall, but less so after the scuffle. It was taking a lot of power, and someone might go there herself. There were many forgotten passages; people had gone missing using them. They needed reinforcement and thought the artifact had been hidden somewhere. They could not risk another abduction and had not found it when he was abducted. Mind magic had not been working properly since something happened at the school. He would get the town hall back under control and get others to look for the artifact, though they had no suspected location. He also reported the brothers were loose, perhaps with an undead sphinx. He was sixth in charge; numbers one through five were unaccounted for. He would speak to Garrick in another town. Lady Igraine had not been taken again. + +The half-elf spoke to Garrick through a mirror and told him to get it for them. An hour later, a fifteen-year-old and an unknown man ran off, and the party chased them. They found him at the races, probably trying to get a new identity. The leads gained were that the Harthall artifact had been put in one of the prisons; Harthall was meant to be looking after mind effects and may have stopped her remembering; it was somewhere near Snowscreen; no team was currently checking it; some people near Pinesprings had been killed by adventurers; and of the brothers, one had disappeared while the other controlled an undead sphinx. + +The party learned that Igraine had returned that morning, had two guards on her door, and was now missing. Terrance was fourth in charge and did not know the party had killed everything else in town. He thought they should leave town and reinforce the prisons. The mirror was in the seneschal's office. The fifth in charge, a greasy halfling, returned with "the mirror" and said they were all going to get on a boat and sail off. The party made him first in command. He took them to the quay, where people were loading things onto the boat. Moonbeam killed the greasy halfling, and Fireball struck the boat and incinerated everything. Diving into the water, the party found 50,000 gp worth of jade. No one seemed to come investigate. Morgana saw a white rabbit out of the corner of her eye. It had arrived on the back of the protector from the snowy area on the lectern and seemed to remember the party. + +Militia rewards were distributed at "I'm the Drink" and "The Olde Clay Jug." The party got the other half of the sending stone from the pub man connected to the Exchequer and gave it to the seneschal. At The Olde Clay Jug, they spotted a waitress carrying a tray with leaves. They could not ask to see Highgate, but asked her as she passed. She went through the "Earth hath no" door. The dwarf the party had been speaking to left, and another dwarf sat in his place. + +Bollar men were looking for the party. He agreed to help the militia and find the missing townsfolk. Friends back home, including an ice dwarf, said a mutual friend sent out of the Barrier had taken the opportunity to do something before trying to get back in, had not found a way back, and had visited Lord Bleakstorm. A mirror hummed, and the back of a female lady's hair appeared. A cold voice said she could take the party there and was a friend. She wished for the same thing they sought and said any debts she perceived would be repaid. The party recognised the "end of all things" as Valententhide. She would let them use her pathways, wanted the artifact, and said the cost would be some identities, some eyes, and some pride. The party shut her off and decided to go to Harthall's lab after resting and eating chicken. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Morgana, Dirk, Dirk's father, Geldrin, Bosh, Invar, Elliana, Willowispa / Willowwispa, Valententhide, Lord Squall, Mr Moreley / Abraxus / Professor Moreley, Rubyeye / Ruby Eye / Brutor, Errol, Evalina, Verdigren, The Basilisk, Mother, Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing], Garadwal / Groot, Benn, Emeraldus, Joy, Kasha / Kashe, Amoursorate, Enis, Browning, Squeal, a water Excellence, Sierra, Lodest, Anastasia, Platinum, Cardonald, Joshua / Dothral, The Chorus, Longfang, Mercy, [unclear: Typh], Igraine, Abraxas, Heather, Lady Igraine, the Exchequer, Bartholomew, Betty, the seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, Harthall, Highgate, Bollar men, Lord Bleakstorm, and the cold female mirror voice identified as Valententhide. + +Groups and factions mentioned include the party, squid-headed men, human wizards, stock-beast handlers, the twins, the Tarnished, copper-goliath offspring, dragons, goliaths, the Dunnersend / Dannersend rug imagery, the Coppers, tabaxi, elves, dwarf / copper dragonborn figures, thri-kreen or fluffling figures, vulture men, fish men, leech creatures, bellow men, medfolk, the Pact, Underbelly by absence, militia, town hall infiltrators, guards with altered memories, lamias, rats, an undead sphinx thread, adventurers near Pinesprings, and ice dwarf friends. + +Places mentioned include the Riversmeet Menagerie / old mage school, kitchen, drama classroom, hall, first-year dorm, Harthall, Valententhide's home, cathedral, basement, Coalmount Hills portal, Evocation, Elemental Lore, third-year dorm, third-year upper dorm, music room, Dannersend / Dunnersend, Tradesmells, Snowscreen, Alteration, Necromancy, Weather, Herbs, infinite library, Grand temple city, [unclear: Hyane], desert before the Dome, orb room, map room, water room, Dunner door, Valententhide's prison, Rhime watches, Lake Azure, goliath civilisation, Riversmeet town, council offices on the bridge, Grand Towers, And Pool, "I'm the Drink," Lady Igraine's room, Wayshrill Bridge, Terrance's house, The Olde Clay Jug, "Earth hath no" door, Pinesprings, Harthall's lab, the prisons, and Lord Bleakstorm's location. + +Creatures and creature-like beings mentioned include chimeras, owlbear, horse on surgical slab, squid-headed men, Willowispa as dragon, grub, dead animals in cages, the invisible entity, the 40-foot memory-destroying alien creature, spectral dragon, faceless woman in silks, illusion toad, water Excellence, mermaid, fish men, leech-like creatures, vulture-like Bartholomew, cat-sized rat, white rabbit, baby sphinx / goliath child, undead sphinx, and possible tainted dragons. + +# Items, Rewards, and Resources + +Items, documents, and physical resources mentioned include the broom, salt pot safe with sequence `6/11/10/13/7`, salt, beast-sales ledger, Noxia-symbol snake-and-scorpion necklace, basement relief map with eight divots, magical traps, musical lock, dark-rune summoning circle, jellyfish brooch, 5th-level Magic Missile scroll, coin necklace, curved sword with purple-crystal hilt, note reading "propell," Alarm spell, elemental ornate handle, globe with rock, lava-transformed rock, socks and trinkets, Snowscreen snowglobe, racing automatons, cakes and potions, Storm Orb, seasoned stone, mushroom pieces, ancient Draconic warning runes, orbs in slots, Amoursorate's scratched orb, rug saying "lost," skull-and-ruby-eyes orb, ruby messages, lost ring, coral door, power-armour suit, Invar's robe surname, deputy badges, sending stones, 500 gp jade purchase, jade earrings, jade-disguised staff, mirror, 80 hexagon coins, dark grey rose, Bartholomew's silver chain with green pendant, 50,000 gp worth of jade, militia rewards, tray with leaves, and the mirror through which Valententhide offered pathways. + +Spells, visions, and magical effects mentioned include Morgana's bee scouting, broom door travel, darkness, dome barrier, paying a penny to open a door, trap magic, Disintegrate trap on the summoning circle, command activation, alarm magic, memory blanking, shrinking and growth through cake and potion, reincarnation of Metatous / Garadwal, Weather room controls, Shape Water, lightning charging the Storm Orb, mushroom telepathic memory search, Morgana's infinite-library vision, Dirk's sickly-goliath vision, Garadwal's reincarnated divine body, Feeble Mind and its removal, ancient Draconic battle warning, memory destruction, party visions during ichor spray, invisibility and forced forgetting of the escaping entity, Joy's illusion, Kasha's claim, messages in rubies, echolocation followed by forgetting, emotion / trait loss through the lost ring, Fireball revealing trails, party-wide memory flood and level up, Dothral's soul-crash awakening constructs, Chorus magpie guidance, baby sphinx reincarnation and divine dispute, mind magic failing after the school event, altered guard memories, Locate Creature on Bartholomew, Moonbeam, Fireball on the boat, and Valententhide's proposed pathway magic. + +Strategic resources and plans mentioned include the clue that eight orbs / spheres correspond to basement divots, Rubyeye's message that Squeal asked for "the loss of everything," Platinum's warning that Errol was possessed by one of Squeal's things, the warning to be careful at Riversmeet, the report that Rubyeye was trapped at his wife's place by Enis, Cardonald and goliaths pursuing tainted dragons, Dothral's connection to awakened constructs, Garadwal's search for his brothers, the Harthall artifact hidden in one of the prisons near Snowscreen, the mind-effect failure after the school event, town hall infiltrators using passages and identities, the militia search for missing townsfolk, the recovered sending-stone half, the lead through the "Earth hath no" door, the mutual friend outside the Barrier who visited Lord Bleakstorm, and Valententhide's offer of pathways at the price of identities, eyes, and pride. + +# Clues, Mysteries, and Open Threads + +The Menagerie / old mage school still contains layered rooms, planar routes, time effects, living or dead experiment subjects, traps, and spiritual memory interference. The precise mechanism joining Harthall, Valententhide's home, the cathedral, the kitchen, the basement, and historical school spaces remains unresolved. + +Willowispa's statement about her mother being gone, the possible male and female Willowispa voices, the hidden things unknown to dragons, and the reference to Mother remain active clues. + +The basement relief map has eight divots, and the orbs placed into the slots only partly activated the locked door. Amoursorate's orb was unlit and scratched. The full list of orbs, their sources, and the meaning of the scratched Amoursorate orb remain unresolved. + +Errol's 117-year subjective absence, forty years of darkness, memory gaps, gem-eating, and possession by one of Squeal's things remain unresolved, as does why he thought Abraxus / Moreley had given him to the party. + +The Tarnished, their Verdigren orders, their hideout fifteen miles below Tradesmells, their sacrificial ignorance, and their connection to copper-goliath offspring remain active leads. + +Metatous's incomplete soul, the mushroom organism, Limos Vita, the cat-horned flesh bag spreading mushroom pieces, and the requested five plantings a mile apart earthwise from a river after five years remain unresolved. + +Garadwal was reincarnated in an elven, green-haired, divine-energy body, remembered the pre-Dome desert after being restored, and left to find his brothers. Whether he is now ally, threat, divided being, or restored protector remains open. + +The memory-destroying creature, spectral dragon, Mr Moreley's restraint, the invisible escaping entity, and the party's forced forgetting suggest a major source of memory alteration survived or escaped. + +Kasha claimed a debt for Garadwal and later tried to claim the baby sphinx / goliath child as alternative payment. Her statement that she cannot be fooled or taken like the others raises questions about which gods or powers were fooled and by whom. + +Rubyeye's preserved messages indicate Squeal asked not for weather through the Barrier but for "the loss of everything." The later "Bread & Circus" impersonation of Rubyeye is unresolved. + +The lost ring removed or altered traits: Dirk lost compassion, and Geldrin no longer wanted to learn. The status of those losses and the ring remains unresolved. + +The visions behind the doors, including the restored statue of Sierra, Lodest with vulture men and Anastasia chained, and movement toward Valententhide's prison, may represent current or historical prison states. + +The memory flood restored or revealed relationships, including Invar and Elliana remembering Morgana as more familiar than expected. The source and implications of those restored memories remain unresolved. + +Dothral / Joshua, Amoursorate's request to look after her son, Dothral's twenty-year awareness, and the constructs awakened by a soul crash remain open threads. + +The Chorus magpie told Morgana it can now help and that she will know the right path, despite Morgana apparently having previously told it to be silent and not remembering doing so. + +The baby sphinx / goliath child was reincarnated too quickly by someone else and became hot and unwell, reflecting the state of goliath civilisation. Its identity, soul source, and condition remain unresolved. + +Riversmeet town hall was infiltrated through false officials, altered memories, rats, lamias, Bartholomew, Terrance, Williams, and unknown chains of command. The missing Lady Igraine, missing townsfolk, and remaining infiltrators are unresolved. + +The Harthall artifact is said to be hidden in one of the prisons near Snowscreen, tied to Harthall's work on mind effects. Which prison holds it, and why it matters to the infiltrators, remains unresolved. + +The huge jade cache on the boat, the 500 gp jade purchase, jade earrings, and jade disguise point to a coordinated resource or control mechanism. + +The "Earth hath no" door, Highgate request, waitress with leaves, and dwarf replacement are unresolved leads at The Olde Clay Jug. + +Valententhide offered pathways to Harthall's lab or the party's goal but demanded the artifact and warned of costs in identities, eyes, and pride. The party rejected the immediate offer and planned to rest, eat chicken, and go to Harthall's lab. diff --git a/data/6-wiki/clues/day-46-coverage-audit.md b/data/6-wiki/clues/day-46-coverage-audit.md new file mode 100644 index 0000000..8cd75fb --- /dev/null +++ b/data/6-wiki/clues/day-46-coverage-audit.md @@ -0,0 +1,45 @@ +--- +title: Day 46 Coverage Audit +type: coverage audit +sources: + - data/4-days-cleaned/day-46.md +--- + +# Day 46 Coverage Audit + +This audit records where each Day 46 mention-section subject was placed in the wiki. + +| Subject | Coverage outcome | +|---|---| +| Morgana, Dirk, Geldrin, Invar, Elliana, Bosh | Party members; covered through Day 46 cleaned narrative and relevant existing pages where present. | +| Willowispa / Willowwispa | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); open threads added. | +| Valententhide / Lord Squall / cold mirror voice | Existing [Valententhide](../people/valententhide.md); Day 46 pathway offer added to [Open Threads](../open-threads.md). | +| Mr Moreley / Abraxus / Professor Moreley | Existing [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); Day 46 context in cleaned narrative and open threads. | +| Rubyeye / Ruby Eye / Brutor | Updated [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | +| Errol | Covered through [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Open Threads](../open-threads.md), and Day 46 cleaned narrative. | +| Evalina | Existing identity thread; preserved in Day 46 cleaned narrative. | +| The Tarnished, Verdigren | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); open threads added. | +| The Basilisk | Existing [Basilisk / Busalish](../people/basilisk-busalish.md); Day 46 message preserved in cleaned narrative. | +| Mother | Existing [The Mother](../people/the-mother.md); Day 46 Willowispa/Mother uncertainty added to [Open Threads](../open-threads.md). | +| Metatous, Limos Vita, Berry eyes, Lord [unclear: Dunthing] | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Garadwal / Groot, Benn, Emeraldus | Updated [Garadwal](../people/garadwal.md); Benn and Emeraldus added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Joy | Updated [Joy](../people/joy.md). | +| Kasha / Kashe | Existing deity/pact coverage; Day 46 baby-spirit and Garadwal claims preserved in cleaned narrative and [Open Threads](../open-threads.md). | +| Amoursorate, Dothral / Joshua | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); orb context added to [Void Spheres](../items/void-spheres.md). | +| Enis, Browning, Squeal | Existing Rubyeye/Browning context; Squeal added to [Minor Figures from Day 46](../people/minor-figures-day-46.md) and [Open Threads](../open-threads.md). | +| Water Excellence | Existing [Excellences](../concepts/excellences.md); Day 46 context preserved in cleaned narrative. | +| Sierra, Lodest, Anastasia | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Platinum, Cardonald | Platinum added to [Minor Figures from Day 46](../people/minor-figures-day-46.md); Cardonald covered by existing Cardonald/Rubyeye context and cleaned narrative. | +| The Chorus and chorus magpie | Existing [The Chorus](../people/the-chorus.md); magpie added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Longfang, Mercy, [unclear: Typh], Heather | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Lady Igraine, Igraine, Abraxas | Existing deity/political context; preserved in cleaned narrative and Day 46 rollups where supporting. | +| The Exchequer / Bartholomew, Betty, seneschal, Williams, Terrance, Officer Biggs, Alanna, Garrick, greasy halfling, Bollar men | Added to [Minor Figures from Day 46](../people/minor-figures-day-46.md). | +| Harthall, Highgate, Lord Bleakstorm | Existing or rollup coverage; Highgate and Harthall lab leads added to [Minor Places from Day 46](../places/minor-places-day-46.md) and [Open Threads](../open-threads.md). | +| Squid-headed men, human wizards, stock-beast handlers, twins, copper-goliath offspring, fish men, leech creatures, lamias, rats, undead sphinx, tainted dragons | Covered in cleaned narrative; specific named/plot-bearing groups in [Minor Figures from Day 46](../people/minor-figures-day-46.md) or [Open Threads](../open-threads.md). | +| Riversmeet Menagerie / old mage school and internal rooms | Updated [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md); room details in [Minor Places from Day 46](../places/minor-places-day-46.md). | +| Harthall, Valententhide's home, cathedral route | Added to [Minor Places from Day 46](../places/minor-places-day-46.md). | +| Coalmount Hills portal | Preserved in cleaned narrative; existing prison/barrier context. | +| Dannersend / Dunnersend, Tradesmells, Snowscreen, infinite library, Grand temple city, [unclear: Hyane], pre-Dome desert, Rhime watches, Lake Azure, And Pool, Wayshrill Bridge, `I'm the Drink`, The Olde Clay Jug, `Earth hath no` door, Pinesprings, Harthall's lab | Added to [Minor Places from Day 46](../places/minor-places-day-46.md) or existing specific pages where applicable. | +| Salt pot safe, sequence `6/11/10/13/7`, beast ledger, Noxia necklace, relief map, musical lock, Evocation circle, jellyfish brooch, Magic Missile scroll, purple-crystal sword, note `propell`, snowglobe, cakes, potions, Storm Orb, mushroom pieces, Draconic warning, scratched Amoursorate orb, `lost` rug, ruby messages, lost ring, power armour, deputy badges, sending stones, jade resources, hexagon coins, dark grey rose, silver chain with green pendant, mirror | Added to [Minor Items from Day 46](../items/minor-items-day-46.md); Storm Orb and Amoursorate orb also updated in [Void Spheres](../items/void-spheres.md); Ruby messages updated in [Brutor Ruby Eye](../people/brutor-ruby-eye.md). | +| Spells, visions, and magical effects | Preserved in cleaned narrative; plot-bearing effects added to [Open Threads](../open-threads.md). | +| Strategic resources and plans | Preserved in cleaned narrative; Harthall artifact, jade cache, town-hall infiltration, Squeal request, Valententhide offer, and `Earth hath no` door added to [Open Threads](../open-threads.md). | diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 9a6b447..a3d13ec 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -33,6 +33,7 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-46.md --- # Pentacity Campaign Wiki @@ -52,6 +53,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Party Treasury](inventories/party-treasury.md) - [NPC Status](people/status.md) - [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md) +- [Day 46 Coverage Audit](clues/day-46-coverage-audit.md) ## People @@ -88,6 +90,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [TJ Biggins](people/tj-biggins.md) - [Lady Yadreya Egrine](people/lady-yadreya-egrine.md) - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md) +- [Minor Figures from Day 46](people/minor-figures-day-46.md) ## Places @@ -103,6 +106,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Freeport](places/freeport.md) - [Turtle Point](places/turtle-point.md) - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md) +- [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md) +- [Minor Places from Day 46](places/minor-places-day-46.md) ## Factions @@ -123,6 +128,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md) - [Freeport Auction Lots](items/freeport-auction-lots.md) - [Hearthwall Auction Lots](items/hearthwall-auction-lots.md) +- [Void Spheres](items/void-spheres.md) +- [Minor Items from Day 46](items/minor-items-day-46.md) ## Concepts and Events diff --git a/data/6-wiki/items/minor-items-day-46.md b/data/6-wiki/items/minor-items-day-46.md new file mode 100644 index 0000000..2e9d994 --- /dev/null +++ b/data/6-wiki/items/minor-items-day-46.md @@ -0,0 +1,33 @@ +--- +title: Minor Items from Day 46 +type: items rollup +sources: + - data/4-days-cleaned/day-46.md +--- + +# Minor Items from Day 46 + +| Item or resource | Context | Outcome | +|---|---|---| +| Salt pot safe and sequence `6/11/10/13/7` | Kitchen safe opened to reveal salt while Mr Moreley gave an Evocation clue. | Rollup/open thread; [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Beast-sales ledger | Main hall ledger documented beast sales that had stopped in the last few weeks. | Rollup/open thread. | +| Noxia-symbol necklace | Snake-and-scorpion necklace found in the beast-storage area. | [Noxia](../people/noxia.md) / rollup. | +| Basement relief map with eight divots | Map from dome time, likely corresponding to the orbs. | [Void Spheres](void-spheres.md). | +| Musical lock and dark-rune Evocation circle | Evocation access and summoning-circle trap, including Disintegrate. | Rollup/open thread. | +| Jellyfish brooch and 5th-level Magic Missile scroll | Found after the squid-headed man died. | Party inventory / rollup, custody unclear. | +| Purple-crystal curved sword and coin necklace | Armed Tarnished carried these; the sword activated the summoning circle. | Rollup/open thread. | +| Note reading `propell` | Dropped by an invisible copper Tarnished. | Rollup/open thread. | +| Snowscreen snowglobe, cakes, and potions | Used or sought for Alteration-room access and size changes. | Rollup. | +| Storm Orb | Retrieved from the Weather room by changing weather, using Shape Water, and charging the orb with lightning. | [Void Spheres](void-spheres.md). | +| Mushroom pieces | Mushroom entity wanted five pieces planted a mile apart, earthwise from a river, after five years. | Rollup/open thread. | +| Ancient Draconic warning runes | Warned of a memory-destroying creature and forgotten spell before the battle. | Rollup/open thread. | +| Scratched Amoursorate orb | The only unlit orb after the creature fight; had a tiny scratch. | [Void Spheres](void-spheres.md), open thread. | +| Rug saying `lost` | Found in multiple languages near the skull-and-ruby-eyes orb. | Rollup/open thread. | +| Ruby messages | Errol hid Rubyeye/Squeal-related messages, including `loss of everything` and `Bread & Circus`. | [Brutor Ruby Eye](../people/brutor-ruby-eye.md), open thread. | +| Lost ring | Put on Geldrin, then disappeared; Dirk lost compassion and Geldrin lost desire to learn. | [Rings of Joy, Envoi, and Dirk](rings-of-joy-envoi-and-dirk.md) / open thread. | +| Power armour suit | Checked and brought back to the map room with Dothral. | Party inventory / rollup. | +| Deputy badges | Williams and Terrance were made clerical officers during the Riversmeet investigation. | Rollup. | +| Sending stones | Used by spies and recovered from `I'm the Drink`; one half was given to the seneschal. | Rollup/status. | +| Jade purchases, earrings, staff disguise, and 50,000 gp jade cache | Jade appeared in a 500 gp purchase, Terrance's wife's earrings, Geldrin's bait, and the destroyed boat's cargo. | Party treasury/open thread. | +| 80 hexagon coins, dark grey rose, silver chain with green pendant | Loot from Bartholomew / lamia fight. | Party treasury/inventory, custody unclear. | +| Mirror | Used by infiltrators to contact Garrick; later cold female mirror voice offered Valententhide's pathways. | Rollup/open thread. | diff --git a/data/6-wiki/items/void-spheres.md b/data/6-wiki/items/void-spheres.md index 1d896f9..ec0f79e 100644 --- a/data/6-wiki/items/void-spheres.md +++ b/data/6-wiki/items/void-spheres.md @@ -6,10 +6,12 @@ aliases: - void orb - eight spheres - Brotor's gift + - Storm Orb first_seen: day-44 -last_updated: day-44 +last_updated: day-46 sources: - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md --- # Void Spheres @@ -27,6 +29,11 @@ The void spheres are a set of eight containment or power objects discovered thro - The party learned they need eight spheres in total. - Instructions said to gather dust, take it to the Aurises who put it in the ball, and return to the Air room. - The next leads were Ruby Eye's old stomping ground / Air common room and the kitchen, where the `seasoning` was kept. +- On Day 46, the basement relief map had eight divots around its outside, apparently for the orbs. +- The party opened the kitchen salt pot with `6/11/10/13/7`, recovered salt, and then followed clues toward Weather and Herbs. +- In the Weather room, the party changed the room between temperate and storm weather, used Shape Water, and charged an orb with lightning to gain the Storm Orb. +- Placing the orbs in their relevant slots created a slight glow and changed the locked door to show ancient Draconic runes warning of a memory-destroying creature and a forgotten spell. +- After the battle, four doors appeared in the map room and Amoursorate's orb was the one not lit; it had a tiny scratch. ## Related Entries @@ -39,3 +46,5 @@ The void spheres are a set of eight containment or power objects discovered thro - What do the eight spheres contain or power? - Is the void sphere connected to Garadwal, Brotor / Brutor, Mr Moreley, or Squall's Belt? - Who are the Aurises? +- Why is Amoursorate's orb scratched and unlit? +- How does the Storm Orb relate to the earlier void sphere and kitchen `seasoning` clue? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index cc800df..beca7e2 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -39,6 +39,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md --- # Open Threads @@ -158,5 +159,19 @@ sources: - What was Professor Arnisimus Goldenfields's role in Goldenswell waterwheel plans, Larn cat symbolism, and the old school? - What did the baby Attabre spirit, Emeraldus's line, killed green dragons, and creation of Wyrmdown reveal about Goliath history? - What does `Battery is the clue`, the sixth sphinx, and Mother hive for the worm using Attabre excellence mean? +- What are Willowispa's hidden things, her absent mother, and the possible male/female Willowispa voices in the old school? +- Who are the Tarnished, what is Verdigren, and what is hidden fifteen miles below Tradesmells? +- What is Metatous's incomplete soul, and why did Morgana's reincarnation produce Garadwal instead? +- What are Limos Vita, the mushroom organism, and the cat-horned flesh bag spreading mushroom pieces? +- What escaped after the memory-destroying creature died in the map room, and why did the party forget it while it fled? +- Why is Amoursorate's orb scratched and unlit, and what does `look after my son` mean for Dothral / Joshua? +- What did Squeal really mean by asking for `the loss of everything`, and why did a message saying `Bread & Circus` impersonate Rubyeye? +- What did the lost ring remove from Dirk and Geldrin, and can compassion or curiosity be restored? +- Who or what caused the Day 46 memory flood, and why did Invar and Elliana remember Morgana as more familiar than expected? +- Who is controlling Riversmeet through false officials, lamias, rats, jade, altered memories, and the town-hall passages? +- Which prison near Snowscreen holds the Harthall artifact, and how does it affect Harthall's memory work? +- What is the purpose of the 50,000 gp jade cache from the boat, and how does it connect to Terrance's wife's jade earrings and the 500 gp jade order? +- Where does the `Earth hath no` door at The Olde Clay Jug lead, and who is Highgate? +- What did Valententhide intend to charge in identities, eyes, and pride for use of her pathways? - What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? - What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index d903067..36f3a12 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,7 +5,7 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-44 +last_updated: day-46 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md @@ -21,6 +21,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md --- # Brutor Ruby Eye @@ -50,6 +51,9 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - Day 43 records that Ruby Eye was no longer welcome at the pale-skinned, black-dreadlocked king's city; later Cardonald could not find Ruby Eye and thought he might not be on the same plane. - Day 44 places young Ruby Eye in the old Riversmeet mage school, working on a final project to remove his eye, recruiting Geldrin into a group with Everard, Thomas / Enis, and Valenth, and using a self-reincarnation spell. - Mr Moreley recognized Geldrin's ancient dragon scroll as something still being worked on and suspected Harthall was keeping things from the Gold Dragon Council; a later draconic book was left where only Ruby Eye would find it and said `Battery is the clue`. +- On Day 46, Errol hid ruby messages connected to Rubyeye, Enis, Browning, and Squeal. One clarified that Squeal did not ask for weather through the Barrier but for `the loss of everything`; another message with red glowing eyes, a water Excellence, and a whirlwind being was refused by Errol. +- A false message said `Bread & Circus` and pretended to be Rubyeye, while Platinum said Errol was possessed by one of Squeal's things. +- A Rubyeye / Squeal warning said to be careful at Riversmeet and that Enis had trapped Rubyeye in a room before Rubyeye went to his wife's place and was imprisoned. ## Timeline @@ -66,6 +70,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - `day-42`: Ruby Eye proves his identity with ring lore, explains Joy-related sacrifices, and then goes missing. - `day-43`: Cardonald cannot locate Ruby Eye or Errol, possibly because they are not on the same plane. - `day-44`: The party encounters young Ruby Eye in old mage-school history and finds a draconic book intended for him. +- `day-46`: Hidden ruby messages and Errol's possession complicate Rubyeye's status, Squeal's request, and Rubyeye's imprisonment at his wife's place. ## Related Entries @@ -89,3 +94,5 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - Where is Ruby Eye after Day 42, and why can Cardonald and Bleakstorm not locate him? - What was Ruby Eye's eye-removal final project meant to accomplish? - What does `Battery is the clue` mean in the book left for Ruby Eye? +- What is Squeal, and why did it ask for `the loss of everything`? +- Is Rubyeye truly imprisoned at his wife's place, and how does that relate to his earlier disappearance? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 9cbd906..42cff2f 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -12,8 +12,9 @@ aliases: - Garaduel - Guradwal - Gardwell + - Groot first_seen: day-01 -last_updated: day-43 +last_updated: day-46 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-06.md @@ -28,6 +29,7 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-46.md --- # Garadwal @@ -57,6 +59,11 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - The same book says Gardwell looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. - On Day 43, Garadwal spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. - Garadwal appeared in Ashkellon for the sphinx-family reunion, refused to lay down weapons, killed the narrator, fought Benu, and was banished at 5:00. +- On Day 46, Morgana's attempt to reincarnate Metatous's incomplete spirit instead formed an elven male body with greenish hair and divine energy, who identified himself as Garadwal. +- This reincarnated Garadwal initially did not recognise the party and last remembered the desert and his people before the Dome existed; the party temporarily called him Groot. +- Morgana suspected much of Garadwal had been in the vulture body, and Emeraldus was wondered to be one of his children. +- Garadwal sensed spirits protecting the basement and helped by removing Morgana's Feeble Mind. +- After Invar restored Garadwal from Feeble Mind, Garadwal remembered everything, said he needed to find his brothers, and teleported away. ## Timeline @@ -72,6 +79,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-36`: Garadwal is tied to Pride's consumption, Browning's Grand Towers trap, Geldrin's skull-throne bargain, and the Garaduel automaton variant. - `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Altabre's children, the Dumnens, and the hidden feather relic. - `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. +- `day-46`: Garadwal is unexpectedly reincarnated from an incomplete vulture-man soul, helps in the old mage school, remembers everything after restoration, and teleports away to find his brothers. ## Related Entries @@ -92,3 +100,5 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Was Garadwal once a protector or leader before consuming the void lieutenant? - Is Excellence's brother the same figure as Garadwal, and why did Goliaths ask Excellence to trap him? - What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? +- Was Day 46 Garadwal a restored whole person, a partial soul from Metatous's body, or another divided form? +- Who are Garadwal's brothers, and is one connected to the undead sphinx reported near the Harthall artifact lead? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index 72653aa..1a518d3 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -4,7 +4,7 @@ type: person aliases: - invisible Joy first_seen: day-05 -last_updated: day-44 +last_updated: day-46 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -15,6 +15,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md --- # Joy @@ -36,6 +37,7 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - In the Ashkellon library sequence, Joy warned that `they've got him` and told the party to go, probably referring to Ruby Eye. - Day 43 records Joy's dislike of Emi's dark-skinned elf apprentice. - Day 44 notes Joy in the old school context around Enis / Thomas, Hannah, and Cardonald's daughter. +- On Day 46, an illusion of Joy appeared beyond the map table after the memory-destroying creature died, saying she was there because the party had met her and that she was lost and always had been. ## Timeline @@ -60,3 +62,4 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - Was the Crater's Edge child Joy, a clone, a projection, or bait? - Why did Joy need to live eternally, and can she ever leave the Barrier? - Who had Ruby Eye when Joy warned `they've got him`? +- Why does Day 46 Joy describe herself as lost and always having been lost? diff --git a/data/6-wiki/people/minor-figures-day-46.md b/data/6-wiki/people/minor-figures-day-46.md new file mode 100644 index 0000000..a4aacb8 --- /dev/null +++ b/data/6-wiki/people/minor-figures-day-46.md @@ -0,0 +1,40 @@ +--- +title: Minor Figures from Day 46 +type: people rollup +sources: + - data/4-days-cleaned/day-46.md +--- + +# Minor Figures from Day 46 + +This rollup keeps one-off, uncertain, and supporting named figures from Day 46 searchable without creating placeholder pages. + +| Figure | Context | Outcome | +|---|---|---| +| Willowispa / Willowwispa | Green-haired elf / dragon figure in the old school; said her mother was gone, warned others about the party, and later flew away furious. | Rollup/open thread; connected to tainted dragons and Mother clues. | +| The Tarnished | Copper-goliath offspring connected to a prisoner and [unclear] sons; one armed with a purple-crystal sword served Verdigren, and sacrificial Tarnished died on the Evocation circle. | Rollup/open thread; hideout fifteen miles below Tradesmells. | +| Verdigren | Authority the armed Tarnished had to obey. | Rollup/open thread. | +| Metatous | Vulture man whose body seemed dead but whose incomplete soul remained; Morgana tried to reincarnate his spirit. | Rollup/open thread. | +| Limos Vita | Name invoked by the communicating mushroom as a friend or contact. | Rollup/open thread. | +| Berry eyes | Figure or presence in Morgana's infinite-library vision who asked what she was doing there. | Rollup/open thread. | +| Lord [unclear: Dunthing] | A student of this lord took the mushroom organism to study. | Rollup/open thread. | +| Benn | Previously banished Garadwal; Garadwal did not arrive where expected. | Rollup; [Garadwal](garadwal.md). | +| Emeraldus | Wondered to be one of Garadwal's children during the Garadwal reincarnation sequence. | Rollup/open thread. | +| Amoursorate | Linked to the scratched unlit orb and asked the party to look after her son. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | +| Squeal | Source behind Errol's possession and Rubyeye-message confusion; asked for `the loss of everything` rather than weather through the Barrier. | Rollup/open thread. | +| Sierra, Lodest, Anastasia | Seen through a Dunner door: Sierra's statue restored, Lodest surrounded by vulture men, Anastasia chained. | Rollup/open thread. | +| Platinum | Cardonald's cat; warned that Errol was possessed by one of Squeal's things and headed toward Joshua. | Rollup/open thread. | +| Dothral / Joshua | Construct- or soul-linked figure aware for twenty years; woke near Rhime watches after being propelled through a door. | Rollup/open thread. | +| Chorus magpie | Landed on Morgana, said The Chorus sent it, and said the Chorus can now help. | [The Chorus](the-chorus.md) / rollup. | +| Longfang | Gnoll reconnaissance figure who thought the dragon in Lake Azure might be dead. | Rollup/open thread. | +| Mercy | Sparrow aarakocra who stopped Longfang from opening a trapped door and pulled a blade through a bubble around the elf. | Rollup/open thread. | +| [unclear: Typh] | Invoked with Igraine and Abraxas during Morgana's Kasha dispute over the baby spirit. | Rollup/open thread. | +| Heather | Destination or figure Morgana drifted toward during the Kasha / baby-spirit scene. | Rollup/open thread. | +| The Exchequer / Bartholomew | False nameless official and bird / vulture infiltrator in Riversmeet, killed after posing as authority and manipulating guard memories. | Rollup/open thread. | +| Betty | Mentioned by Bartholomew as pretty. | Rollup. | +| Williams and Terrance | Clerical officers deputized during the Riversmeet infiltrator investigation; Terrance was fourth in the infiltrator chain. | Rollup/open thread. | +| Officer Biggs | Present at Terrance's house during the investigation. | Rollup. | +| Alanna | Human Pact leader at `I'm the Drink`, apparently part of a disguised crew and sent to find Terrance. | Rollup/open thread; [The Pact](../factions/the-pact.md). | +| Garrick | Contact in another town reached through a mirror by the half-elf infiltrator. | Rollup/open thread. | +| Greasy halfling | Fifth in the infiltrator command chain; returned with the mirror, was made first in command, then killed by Moonbeam. | Rollup/status. | +| Bollar men | Looked for the party and agreed to help the militia find missing townsfolk. | Rollup/open thread. | diff --git a/data/6-wiki/places/minor-places-day-46.md b/data/6-wiki/places/minor-places-day-46.md new file mode 100644 index 0000000..3766c7f --- /dev/null +++ b/data/6-wiki/places/minor-places-day-46.md @@ -0,0 +1,25 @@ +--- +title: Minor Places from Day 46 +type: places rollup +sources: + - data/4-days-cleaned/day-46.md +--- + +# Minor Places from Day 46 + +| Place | Context | Outcome | +|---|---|---| +| Old mage-school kitchen, drama classroom, hall, first-year dorm, Evocation, Elemental Lore, Alteration, Weather, Herbs | Day 46 rooms explored while completing the old school / orb sequence. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md). | +| Cathedral / Harthall / Valententhide's home route | Broom misfire opened to a cathedral-like place, felt like Harthall and Valententhide's home. | Rollup/open thread. | +| Basement map room and orb room | Site of eight-divot map, orb placement, memory-destroying creature battle, and Joy illusion. | [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](../items/void-spheres.md). | +| Dannersend / Dunnersend ray | Corridor rug image showed Garadwal and the word `Terror`. | Rollup; [Garadwal](../people/garadwal.md). | +| Tradesmells underground hideout | Tarnished hideout said to be fifteen miles below Tradesmells. | Rollup/open thread. | +| Snowscreen | Snowglobe source and later area near the prison where the Harthall artifact may be hidden. | Rollup/open thread. | +| Infinite library / Grand temple city / [unclear: Hyane] | Morgana's vision during reincarnation magic. | Rollup/open thread. | +| Pre-Dome desert | Garadwal's last memory before reincarnation. | [Garadwal](../people/garadwal.md). | +| Rhime watches | Dothral woke near here around twenty years ago before being propelled through a door. | Rollup/open thread. | +| Lake Azure | Longfang thought the dragon there might be dead. | Rollup/open thread. | +| Riversmeet council bridge, And Pool, `I'm the Drink`, Wayshrill Bridge, The Olde Clay Jug | Town investigation locations around the false Exchequer, missing Igraine, infiltrators, rewards, and the `Earth hath no` door. | Rollup/open thread. | +| Harthall artifact prison near Snowscreen | Infiltrator lead said Harthall put an artifact in one of the prisons near Snowscreen. | Open thread. | +| Pinesprings | Adventurers killed some people there while following a related lead. | Rollup/open thread. | +| Harthall's lab | The party chose to head there after rest and chicken. | Rollup/open thread. | diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md index 2e8e77b..b0e1789 100644 --- a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -8,11 +8,12 @@ aliases: - old mage school - mage school first_seen: day-35 -last_updated: day-44 +last_updated: day-46 sources: - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md --- # Riversmeet Menagerie and Old Mage School @@ -31,6 +32,9 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - Inside, the party entered old-school time or planes: apothecary, infirmary, head teacher's office, Divination, transmutation, study hall, common rooms, lessons, Air common room, tower tunnels, classrooms, and astronomy. - The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Enis, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Tortish Harthall / Harthwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. - Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. +- On Day 46, the party continued through the school, encountering chimeras, squid-headed experimenters, Willowispa, Tarnished copper-goliath offspring, a basement map with eight orb divots, the Storm Orb, a mushroom organism, Metatous's incomplete soul, and Garadwal's reincarnation. +- The school contained or released a memory-destroying creature and an invisible escaping entity; the party's memories were blanked and later flooded back after they protected a glowing thing in linked rooms. +- Day 46 also connected the school to Riversmeet's current town-hall infiltration, because mind magic used by the infiltrators began malfunctioning after something happened at the school. ## Related Entries @@ -46,3 +50,5 @@ Riversmeet's Menagerie is the former mage school, later locked down by mages, an - What are the eight spheres, and who created or hid them? - What happened to Hannah after being wiped from time and space? - What is the current state of the twenty wizards who locked down the Menagerie? +- What memory-destroying entity escaped after the orb-room battle, and did it cause or worsen the Riversmeet mind-magic failure? +- What is the relationship between Willowispa, Mother, the Tarnished, and the hidden objects in the school? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 9937add..5018e6a 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -39,6 +39,7 @@ sources: - data/4-days-cleaned/day-42.md - data/4-days-cleaned/day-43.md - data/4-days-cleaned/day-44.md + - data/4-days-cleaned/day-46.md --- # Sources @@ -81,6 +82,7 @@ sources: - `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hearthwill](people/lady-hearthwill.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). - `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-46.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](items/void-spheres.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Joy](people/joy.md), [Minor Figures from Day 46](people/minor-figures-day-46.md), [Minor Places from Day 46](places/minor-places-day-46.md), [Minor Items from Day 46](items/minor-items-day-46.md), [Open Threads](open-threads.md), [Coverage Audit](clues/day-46-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index f831d5b..fec6b5b 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -36,6 +36,7 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-46.md --- # Timeline @@ -81,3 +82,5 @@ sources: - `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadwal](people/garadwal.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Heathwall. - `day-43`: Goldenswell and Harthall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. - `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). +- `day-45`: No cleaned day file exists in this build. +- `day-46`: The party continues through the [Riversmeet Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), recovers the Storm Orb, reincarnates [Garadwal](people/garadwal.md), defeats a memory-destroying creature, learns Squeal asked for `the loss of everything`, exposes Riversmeet town-hall infiltrators, recovers a huge jade cache, and chooses to pursue Harthall's lab rather than accept [Valententhide](people/valententhide.md)'s costly pathways. -
a0607edMore pagesby Bas Mostert
data/2-pages/190.txt | 43 ++ data/2-pages/191.txt | 38 ++ data/2-pages/192.txt | 35 ++ data/2-pages/193.txt | 41 ++ data/2-pages/194.txt | 43 ++ data/2-pages/195.txt | 36 ++ data/2-pages/196.txt | 41 ++ data/2-pages/197.txt | 39 ++ data/2-pages/198.txt | 40 ++ data/2-pages/199.txt | 35 ++ data/2-pages/200.txt | 36 ++ data/2-pages/201.txt | 41 ++ data/2-pages/202.txt | 40 ++ data/2-pages/203.txt | 38 ++ data/2-pages/204.txt | 33 ++ data/2-pages/205.txt | 41 ++ data/2-pages/206.txt | 36 ++ data/2-pages/207.txt | 38 ++ data/2-pages/208.txt | 40 ++ data/2-pages/209.txt | 35 ++ data/3-days/day-42.md | 628 +++++++++++++++++++++ data/3-days/day-43.md | 459 +++++++++++++++ data/3-days/day-44.md | 568 +++++++++++++++++++ data/4-days-cleaned/day-42.md | 182 ++++++ data/4-days-cleaned/day-43.md | 150 +++++ data/4-days-cleaned/day-44.md | 183 ++++++ data/6-wiki/aliases.md | 30 +- data/6-wiki/clues/days-42-44-coverage-audit.md | 71 +++ .../clues/known-passwords-and-inscriptions.md | 30 +- data/6-wiki/concepts/barrier.md | 15 +- data/6-wiki/concepts/elemental-prisons.md | 15 +- data/6-wiki/concepts/excellences.md | 7 +- .../concepts/gods-bargains-behind-the-barrier.md | 12 +- data/6-wiki/inventories/party-inventory.md | 22 +- data/6-wiki/items/minor-items-days-42-44.md | 35 ++ data/6-wiki/items/rings-of-joy-envoi-and-dirk.md | 13 +- data/6-wiki/items/void-spheres.md | 41 ++ data/6-wiki/open-threads.md | 50 ++ data/6-wiki/people/attabre-altabre.md | 44 ++ data/6-wiki/people/benu.md | 26 +- data/6-wiki/people/brutor-ruby-eye.md | 18 +- data/6-wiki/people/edward-browning.md | 11 +- data/6-wiki/people/envoi.md | 11 +- data/6-wiki/people/galimma-peridot-queen.md | 39 ++ data/6-wiki/people/garadwal.md | 15 +- data/6-wiki/people/icefang.md | 11 +- data/6-wiki/people/joy.md | 11 +- data/6-wiki/people/lady-hearthwill.md | 8 +- data/6-wiki/people/minor-figures-days-42-44.md | 71 +++ data/6-wiki/people/noxia.md | 44 ++ data/6-wiki/people/papae-munera.md | 41 ++ data/6-wiki/people/peridita.md | 9 +- data/6-wiki/people/status.md | 26 +- data/6-wiki/people/trixus.md | 44 ++ data/6-wiki/people/valententhide.md | 49 ++ data/6-wiki/people/valenth-cardonald.md | 14 +- data/6-wiki/places/ashkellon.md | 44 ++ data/6-wiki/places/bleakstorm.md | 42 ++ data/6-wiki/places/grand-towers.md | 9 +- data/6-wiki/places/minor-places-days-42-44.md | 24 + .../riversmeet-menagerie-and-old-mage-school.md | 48 ++ data/6-wiki/sources.md | 6 + data/6-wiki/timeline.md | 3 + 63 files changed, 3921 insertions(+), 27 deletions(-)Show diff
diff --git a/data/2-pages/190.txt b/data/2-pages/190.txt new file mode 100644 index 0000000..a4d00ee --- /dev/null +++ b/data/2-pages/190.txt @@ -0,0 +1,43 @@ +Page: 190 +Source: data/1-source/IMG_9857.jpg + +Transcription: +Elder comes in & Morgana tries to check him over. +Stalwart - Purification ritual removed his ailment. +Morgana casts lesser restoration & heals his maladies, & +goes out to heal some children. Sets up a +garden & sings a song with curing them & turns +into a crow & flys off. - Create Legend! + +Anastasia worried where Verdigren went to... + +Geldrin tries to think of a way to get Hephestus to tell +the truth. No luck & Invar carries him away. +Comes down to the ground to meet us. + +Ask Trixus to help the Elders communicate with Attabre. +Send Anastasia's bird to Cardonald to get her to come to +us for the teleport circle to Riversmeet. +Cardonald appears. - Still not found Rubyeye & can't +find Errol either - not on the same plane? +Cardonald says Harthall means alot to her - which one? +Icefang - Things wouldn't be as good as they are +without him. + +Give Geldrin all of the teleport circles: +- 7 prisons - no defences +- lab - ? defences +- 3 Grand Towers - factory, control room, meeting lounge +- gate @ mountains earthwise of Coalmount hills (Dunnendale) +- Copper mines @ Arrofarc +- Impact site earthwise of Goldenswell +- Menagerie - Riversmeet +- Ashhellier +- 5 pylons - Aegis on sands - Broken. + +Dirk & Anastasia have a good night! + +Statue of Morgana is being built as we wake up, +none of us know who it is. + +Report fr[unclear] diff --git a/data/2-pages/191.txt b/data/2-pages/191.txt new file mode 100644 index 0000000..192cf19 --- /dev/null +++ b/data/2-pages/191.txt @@ -0,0 +1,38 @@ +Page: 191 +Source: data/1-source/IMG_9858.jpg + +Transcription: +Cardonald has a familiar give her a report +which may aid for the Howling Tombs. + +- group of adventurers is tinkering around & +have found Harthall's old lab & a key which may +help gain access to the tombs. Her familiar is going +with them so will report if anything else. + +One of Geldrin's scrolls is an arcane type of Draconic, +mega powerful of teleport nature. +Addendum in Draconic says perhaps this will aid us in +understanding where they went for seeing aspect to it. + +Teleport to Riversmeet - outskirts - meadow area. +Ruins of a house - looks like it was melted... no +natural wear to the building. Gravestone to the left +of the house - Rubyeye's house - where his wife was killed. + +Head over to Riversmeet. +Morgana buys a load of fruit & veg on the way in. +Very hot - because he has a plot which seems to protect +from the elements - go to check it - seems like Igraine's blessing? + +Head closer into town & see two oxen/horse cross +pulling a sideless cart with a "throne" on it +& a man in just his pants and two women hanging +on his sides. Kids run up to him & throw coins +& say "yay it's the dragon slayer" - muscly but not useful. +Parents tell them to wait for the show - apparently he's a +wrestler - regular matchless in Riversmeet. + +Ask where Lady Igraine is - manor house in the centre bridge. 10:00 +Temples of Hydrum, Igraine, Larn, & Kasha - first temple to Kasha we've seen. +Freeport guards are in the town. diff --git a/data/2-pages/192.txt b/data/2-pages/192.txt new file mode 100644 index 0000000..5235304 --- /dev/null +++ b/data/2-pages/192.txt @@ -0,0 +1,35 @@ +Page: 192 +Source: data/1-source/IMG_9859.jpg + +Transcription: +Lady Igraine is at the outpost set at the +Menagerie. +Hedge around the Menagerie (strong hedge type). +She's sat with a Black Dragonborn & comes out +of the tent to see us. +can't get in - wall of force? +Magician came to repay a favour. + +- about 20 wizards in there. +Refused inspections recently & prevented the militia from +going in. + +Try to dispell the magic to get through. +Mould earth to get under the hedge. +Send Geldrin's familiar to look around the outside of the +building. Building looks good but there are lots +of cages where things seem to have broken out. +(Griffon, Dragon, wolf, Human) Door handles on each. +Try to open one of them & gets frazzled. +Go through hole which has been dug by Geldrin. +Enter the grounds. +Invar looks into a window & disappears. +Geldrin disintegrates the door & has a vision +of Valentinheide killing Emi's wife. +Dirk disappears - Banished. +Geldrin appears to be enrolling in mage school. +(Acroneth, Crindler, Belocoose, Sphynx on another plane.) + +Go into the building after killing an acid beast. +Get hit by a fireball from an invisible foe. +Knock 3 times on the Divination wall to get stairs. diff --git a/data/2-pages/193.txt b/data/2-pages/193.txt new file mode 100644 index 0000000..589b805 --- /dev/null +++ b/data/2-pages/193.txt @@ -0,0 +1,41 @@ +Page: 193 +Source: data/1-source/IMG_9860.jpg + +Transcription: +End up on the 8th floor of a tower. +Not sure which one or how it happened. +This is the apothecary. - Nurse is Matron Cardonald. Her +daughter is in Geldrin's year - Valent's Daughter +Arreanae - Mum. + +Gremlin type creature (Janitor) takes us to the head teacher. +Pictures: +- pale skinned man with white hair holding a sceptre, + elven/human (Tortish Harthall) (blue crystal) +- elderly man - Geldrin saw in a bed in grand towers + founders of the college (Humerous Torn) + +Office windows have views of the compass point. +Chair has dragons on gold, silver, copper & a big white +one at the back of them all. +4th years are the ones causing issues - They are +from Broken Bounds. They are principal Grey - letter closing the school - transfer to Grand +Towers from Browning 47AD. + +Jade/grey on the desk motion at points Dirk +speaks to it in Aquan - Dribble is in there & +acts like something is swelling this energy. +Drawers open with head teacher's necklace. +Water elemental - fresh - we release it & +it will join us for a while around the school. + +A different plane for the infirmary & Head Teacher office. +Door back to the school takes us to a different room. +Picture outside - eyes keep opening & closing - elderly man. +Manage to move him to one side to reveal a chest +which is able to be pulled out of the picture... +Invar tricks this on the other picture & manages to +get the sceptre from the painting which is a key +to the box. +Open the box & a glowing orb (alteration) & a piece +of paper inside. diff --git a/data/2-pages/194.txt b/data/2-pages/194.txt new file mode 100644 index 0000000..d1f1893 --- /dev/null +++ b/data/2-pages/194.txt @@ -0,0 +1,43 @@ +Page: 194 +Source: data/1-source/IMG_9861.jpg + +Transcription: +Geldrin removes the orb & becomes overwhelmed +with emotion & regret for all the people killed & hurt (empathy). +Note: "mine felt right here yours is under real." + +Book on the sphynx on the other plane - written by +serpans, all superous - describe a place like ours +but different in many ways. First chapter is the book +about the sphynx who teleported their city underground to +protect it. Male & female & goat headed one who always +speaks in rhymes. + +Go back down to the school - into an auditorium +style classroom - 1 buggy up right of where we came +in time seems to have passed as expected. +Transmutation classroom. + +In the study hall / book 4 armed Vulture men +look like melting a pot on a pottery wheel with +2 wizards observing. One looks mindflayer. +Vulture - Melchroy mutual form? +Attack the "wizards" - Die. + +Notes - Documenting the pots it was making prior +to this (3 weeks ago) it was doing pottery. Other notes elsewhere. +Pets - rudimentary - Dunner style pots. +Bandage his wounds - & he hands me a pot & +some food. +Poetry seems to be about Dirk's home. + +All the time spent upstairs hasn't passed much time in the actual +realm. +Lord Hacethorn - last potion & herb teacher (wrote the book on Rubyeye). +Founders of the college - 547 years before the dome. 2453 AC (after cataclysm) +white haired elven man - Tortish Harthwall. +elderly man - Humerous Torn. + +Go back to the principal's office & back out. +Come out in the Divination classroom full of students +& Isobanne teaching - it's Sereneday. diff --git a/data/2-pages/195.txt b/data/2-pages/195.txt new file mode 100644 index 0000000..22a8219 --- /dev/null +++ b/data/2-pages/195.txt @@ -0,0 +1,36 @@ +Page: 195 +Source: data/1-source/IMG_9862.jpg + +Transcription: +She tells us we are late... +I try to keep the door open & she spots me & sends +me to detention (5th floor). 18 year old human man - Enis (was called Thomas) +plus a girlfriend - 1st year called Hannah. Joy. + +Dirk manages to get to the infirmary, asks Nurse for date. +3rd Sereneday of Hummeron, 2968 AC (32 BD) +Mama Cardonald thinks Enis is a bad influence +on her daughter as always in detention. + +At the end of class Bosh & Cardonald head to the study +hall & pull out a book. Dragon skull (Mr Moreley) covering the study hall. +Geldrin speaks to the Dragon - a gold dragon - Geldrin +shows him the ancient dragon scroll & Mr Moreley is +confused as it's something still being worked on - will consult the +Gold Dragon Council as thinks Harthall is keeping things +from them. Rubyeye & Cardonald eavesdropping. Want to ask +Geldrin something. Rubyeye goes to speak to him. Final +project to remove his eye. Asks Geldrin to join them. +Everard, Thomas & Valenth. +Book about Grand Tower written in god language when +trying to read it they get a vision of the top +of the tower. + +Cardonald working on Automations - wants to do a thing +for the headteacher - then a bird & a cat. +They want to become famous. +Rubyeye's parents wanted him to go down priestly. + +Mama Cardonald good friends with some of the Thinglaens (Goliah). +Currently in the automations. Can't speak to them, not one of +the 4 usual elementals. Thinks they are light. diff --git a/data/2-pages/196.txt b/data/2-pages/196.txt new file mode 100644 index 0000000..5210f7d --- /dev/null +++ b/data/2-pages/196.txt @@ -0,0 +1,41 @@ +Page: 196 +Source: data/1-source/IMG_9863.jpg + +Transcription: +Valenth in Extra Enchantment lesson. Rubyeye - Necromancy lesson. + +Geldrin & Morgana go to necromancy lesson - class is full & everyone +seems to have their own seat but nobody comes to claim the +ones they are sitting in. +Rubyeye drawing Mr Morely. Gives the same spell to reincarnate himself. + +Dirk & Invar talking to a bald man - doesn't match anybody +last working at the school? [Tory? teacher?] - tries to find them +on the list. Find out their time tables. 14:00 +Go to get their robes. +Dirk - Fire - House Eltur - Frederick Sims. +Invar - Earth - House Intor. +Robe also has a hammer & a shield on them. +Because hammerguards are patrons of the school & gets certain privileges - +extra embroidery & 10% off the tuck shop. + +Detention finishes - re-appear in 1st year rec room. +Hall-ork shows me to the cloakroom (Grisnak). +Orcs are being re-located as part of the peace +Gnolls too: anybody who is uncivilised. +No record of me in the list - my race doesn't exist yet. +Say my name is Evalina Harthall. Robe doesn't +fit as made for human. Request a new robe. +Miana (Evalina) - air - +extra embroidery, [unclear] & flag. + +Go to history - teacher's voice is familiar - Oldish man - +Lord Bleakstorm - lesson - sisters fell out as one +Far grove cities - Waterrose - Great Farmouth - very private. +Don't tell children about their histories. Admonishions came +from their lots, a 40ish human & says he's been on travels with +a grove for 100s years - travelled for over 1,000 years?!? +Book: Tale of Two Sisters. +Lord of Bleakstorm & the Gnomes. +Heard the whispers of holy Bright on the wind. Helped his people +& she gave him the gift of everlasting. diff --git a/data/2-pages/197.txt b/data/2-pages/197.txt new file mode 100644 index 0000000..140e284 --- /dev/null +++ b/data/2-pages/197.txt @@ -0,0 +1,39 @@ +Page: 197 +Source: data/1-source/IMG_9864.jpg + +Transcription: +Class dismissed, everyone leaves except some guy +at the back - Everard Browning - asks a question about him +living forever, & gnomes & their devices. +Dirk asks about travelling through time - Bright doesn't +work in a linear way, if we were to go back in + +Morgana - Earth. +Geldrin - Water. + +Go to Enchanting - think Geldrin & Morgana should be there but +they follow Rubyeye. +Teacher is an elf - bright red hair - Mr Cardonald. + +Calls me aside. +Is it true I'm marrying Argethum? But still seeing +Harthall's childhood sweetheart. Not good if she's seeing +the prince behind Harthall's back. Says I have an +interesting form & he wouldn't recognise me if it wasn't +for his Truesight (sees me as a dragon??). Says he's concerned +for me as friend of his daughter. Worried about breaking +the Pact with the Gold dragons. Says my form is interesting. + +Abjuration - go through a door & Enis is there. +Rubyeye asks Enis to show him the book & Enis asks who +is with him. Rubyeye saying he's thinking of asking them to join their +Say they're going to test them later. +Enis asks Geldrin for a second - been touched by a god +"lady of destruction". Enis has been looking into some dark magic. +- in a Divination classroom. + +Enchanting - Dangers of cursed items - 2 potions (healing) one cursed, +Identify spell won't identify it, neither will detect magic. +Need to be aware of mimics at all time. +Abjuration - no teacher appears - should be Mr Grey. +Everyone starts leaving but some people seem to stay. diff --git a/data/2-pages/198.txt b/data/2-pages/198.txt new file mode 100644 index 0000000..b13378d --- /dev/null +++ b/data/2-pages/198.txt @@ -0,0 +1,40 @@ +Page: 198 +Source: data/1-source/IMG_9865.jpg + +Transcription: +Gathering around a really dark skinned elf with +a bottle with green liquid in it. Doesn't know what it is. +Liquid goes up the side of the bottle when poked. +Morgana tries to speak to it & feels something reach out +to her - doesn't know its name but comes from the +desert. Morgana buys it - it wants to go back to +the rest of it in the desert. + +Agree to Rubyeye @ 10 in the air room. +- meet up again in 1st year common room. +Slime maybe the blood of Noxia. + +Dirk & Invar go to the library to get Lord of +Bleakstorm & the Gnomes & Tale of two Sisters. 5pm +Tale of two Sisters - very expensive book, picture at the +front of two women embracing, barbie doll type +body features. + +Morgana and I go to try & open the secret door +but fail. +Go to dining hall & ruin the classroom so the janitor appears & +the knock pattern & do in a different classroom but +it doesn't work. I then get sent to detention. + +Morgana goes back to tell everyone what happened. + +Two Sisters book - high ranking queens of the elemental plane. +They got on but like oil & water so were never together. +Bright - low sky. Valentenhule - high sky & when +lesser races were made Bright grew close to them & +enjoyed playing with them. But Valentenhule was haughty +& grew to enjoy harm to the beings & both grew from their +Valententhides position in the high/dark sky caused the void +to open. +Bright position in the low sky witnessed the humans be enslaved by +the ice elementals & when they broke free she awarded them for it. diff --git a/data/2-pages/199.txt b/data/2-pages/199.txt new file mode 100644 index 0000000..ad058ff --- /dev/null +++ b/data/2-pages/199.txt @@ -0,0 +1,35 @@ +Page: 199 +Source: data/1-source/IMG_9866.jpg + +Transcription: +Gnome book - Bleakstorm thought they were cast outs & +chosen to show anything but recently started showing off +seas but the gnomes seemed to have an agreement with the +merfolk as always turned away from a port he knows +exists, Great Farmouth. Thinks grand towers was made with gnomish technology. +Gnomes used to use random names to not show their +family name. + +Morgana tries to find detention & heads to principal's office +on the map. + +Altith (Icefang) tries to contact me & we were meant to +meet after I met with Argathum. +Man appears (Icefang), everything will fall apart. Dad will +be mad. Humans getting ideas above their station. Gods will +take over snow screen. + +Need the Janitor's broom to open the door. + +T look silver with a hint of green... +2 green dragons, Emeraldus & another. +Goliaths were meant to go & attack them & be one of + +Icefang tries to see the future +ask if Browning does - what happens? Broken tower fields +Burning blue/black/green/red dragons flying around - small +settlements of people hiding & elementals destroying things. +Says "The future could be desperate, the people are not ready yet." +Cold identify - something came with us. +Suggest we go see Browning. +Ask him for the Broom. diff --git a/data/2-pages/200.txt b/data/2-pages/200.txt new file mode 100644 index 0000000..48b9e54 --- /dev/null +++ b/data/2-pages/200.txt @@ -0,0 +1,36 @@ +Page: 200 +Source: data/1-source/IMG_9867.jpg + +Transcription: +Go to the air common room. 10pm +Door is flanked by pictures of a dwarf with bushy beard +& blue dragonborn. + +4 mages - Browning, Valenth, Brotor, Enis, & Hannah. +A featureless woman has her hands on Hannah's +shoulders. +Thanks me for bringing the broom as it's part of the plan. +Everard thinks he's found a way into the tower through +the tunnels so need the broom to get there. Want to see +secrets of emotional elimination & memories & Automations. +Help to defend the land as don't think the elemental +truce will last much longer. +Agree to go with them. +Tallith didn't hire the Janitor for nothing - he used to work +with the elves. + +Valententhides - says her sister's magic protects us for now. +Hannah - priestess of Attabre - thinks the elves have the +same magic as the [?]. + +Open a door to a dark corridor. +- Valententhide says we shouldn't have seen this. Bright +has shown us too much. We shouldn't even see +Hannah as she has been wiped from time & space. +Everard enters & we follow in the corridor & close the +door. +Valententhide hovers over us & lets go of Hannah. +Opens into a janitor's closet - Reborn stone? +Throw a coin into Bright statue & door disappears. +- Dirk party - appears at a bathhouse room - human - Blackhold - +- we try to find everyone - do! diff --git a/data/2-pages/201.txt b/data/2-pages/201.txt new file mode 100644 index 0000000..785a2de --- /dev/null +++ b/data/2-pages/201.txt @@ -0,0 +1,41 @@ +Page: 201 +Source: data/1-source/IMG_9868.jpg + +Transcription: +Go to open the door back to the school. +A silver dragon appears - earth flows through & a +silver/green claw bursts through. Geldrin forces it closed. +"Taken my form give it back" (Avalina) Took everything +from her - manage to close the door & give +Geldrin the broom (couldn't give it to Enis, Thomas, +Browning?). + +Open in an empty room - shelves, stacks of paper etc. +White room, blue viewing, gorgeous red desks, young elven +child sat at each desk - lesson for simple maths. +Enis says it's taking too long - give the broom & we +end up in a field. + +Next small room made of Brass - Brass city. +Browning takes the broom - Air common room & gives me +back the broom. They go out & the door slams shut. +Re-opens to a dusky room like the air common room. +Windows are black - glass cracking sounds so we exit +& seem to be back in our time. + +Don't remember Hannah - only the image of her turning to dust +in the cave - don't even remember her name. + +Noxia glob - some of the rest has returned home - +Magic doors now feel cold. + +Go through the door & see shadows of Valententhides face. +Feel like we are being pulled up. +Get out of the door & other side of the barrier +to the room above the air common room. +Door here is made of black crystal - almost see through enchanted. + +Suit of armour (Goliath/goblin size), pet gnomish hole +set up like you can just stand on it & put it on. +Purple crystals on it linked with copper wire connected to +a hatch - contains an automaton core. diff --git a/data/2-pages/202.txt b/data/2-pages/202.txt new file mode 100644 index 0000000..7be4eac --- /dev/null +++ b/data/2-pages/202.txt @@ -0,0 +1,40 @@ +Page: 202 +Source: data/1-source/IMG_9869.jpg + +Transcription: +Rug has cityscape with buildings & walkways. +Nothing written under the rug but there is a label saying +"Great Farmouth". + +Armour is an enhanced suit of armour with a world of magic missiles, +power suit & a shield. +Get Bosh out & go downstairs. +Quarters - go in - homely farmhouse feel to the room (no dust). +Professor Arnisimus Goldenfields. +Papers on the desk - Waterwheel Blueprints - Goldenswell. +Desk picture - Bleach Blond Halfling stood with human female blonde +hair - family? "To my love Arnisimus". +7 x cat collars. +Bleach velvet box contains golden chain with a symbol of a fireplace & a cat +(symbol for Larn). +Lesson plans etc. + +Door to 1st year common & to conjuration class. 11:00pm +Bird House type. +Things above the blackboard in different colours. Morgana takes the green one. +Pixie sleeping inside - wakes her up. Thinks it's 49AD not 1012AD. +Thought they were leaving for Grand Towers tomorrow - with the others +(Green/Red/Blue). Teachers of conjuration... "The sisters". +They can't leave the classroom - elementally of Igraine. +Try to get a new core using Tremaion's skull to help. +Get it & succeed. +I wonder that Morgana works for The Chorus as +she is one of Igraine's greatest executers. +Thinks Vita was one too but became his own thing +when working with Mr Bleakthorn. +Mr Moreley can't leave the school too. + +Baby Attabre spirit they brought in - The sisters were excited +to see it, was going to the goliaths as they were becoming +Emeraldus line - Goliath's killed remaining 2 green dragons +& created Wyrmdown. diff --git a/data/2-pages/203.txt b/data/2-pages/203.txt new file mode 100644 index 0000000..34a1d08 --- /dev/null +++ b/data/2-pages/203.txt @@ -0,0 +1,38 @@ +Page: 203 +Source: data/1-source/IMG_9870.jpg + +Transcription: +Go to Mr Moreley's Classroom. Via 2nd year common. +Something leaves through the other door to the common room +when we get there. +Mr Moreley's room is fully painted as a mural of Snowscreen. +Large desk, pedestal with a cushion & sphere of glass +on it, smoke inside. +Powerful defense mechanism if don't have the password. +Containment device - same as Enis's. +Mural - Gold, Silver, Copper & white dragons. +Dirk throws javelin at the box - doesn't do anything. + +One of each colour dragon head on the mural is a +button - work out the pattern & it opens the gates +of Snowscreen to reveal an alcove containing a book +in draconic - for Rubyeye. +Left somewhere only Rubyeye will find it. Going +to try to stop what they are doing here - used +the plans for the dome once we have a [unclear] future for [unclear]. +Battery is the clue. + +Picture of a baby sphynx (6th Sphynx) in the book. +Created a Mother hive for the "worm" using the +Attabre excellence. + +Head up to astronomy - big telescope & blackboards +showing what the moons actually look like. +Telescope shows a full moon but it's only a half moon +at the moment. Room moves when the telescope is moved. +Constellations are named - one is called Bell/Squall. +Scrying spell on the telescopes to home in on certain +points. +Pri-moon has lots of "Meteor" impacts on it. +Second moon - very perfect seasonal stone with a chunk missing. +Tri-moon - Deep Purple. diff --git a/data/2-pages/204.txt b/data/2-pages/204.txt new file mode 100644 index 0000000..14f07f0 --- /dev/null +++ b/data/2-pages/204.txt @@ -0,0 +1,33 @@ +Page: 204 +Source: data/1-source/IMG_9871.jpg + +Transcription: +Dirk puts head into missing door hole & gets a voice(?) +talking to him. Wants to know if he is Brotor, has a gift +for Brotor. Mr Moreley took the void. Gift is part of +the void. + +Squall's Belt - doesn't look like constellation - looks like a dark eclipse +shape darker than the rest of the sky. Writings on it, +unsure what it is - just a dark patch in the sky. + +Geldrin puts the hockey puck in the void & it says +"it's its lord!" +Say we have Brotor's eye & it tries to enter Dirk's mind & +confirms it is free & disappears, leaving an orb of void +behind (same as the smoke one in Mr Moreley's room). +Need 8 spheres in total!! + +Back to Mr Moreley's room - broke the void +out & dragon on the wall says you found it then +still need to be discrete - Next one is in Rubyeye's old +stomping ground - will need to contain it & meet him +there - Air common Room - go back there. + +Paper on the desk - "The window like your +paintings" - got an empty glass orb - how to fill it with the dust, +gather it all & take it to the Aurises who put it +in the ball & go back to the air room. +Stems from the head of a dragon. We found it. +Next one is obvious - kept the "seasoning" where it should +be - Kitchen. diff --git a/data/2-pages/205.txt b/data/2-pages/205.txt new file mode 100644 index 0000000..6c7be4c --- /dev/null +++ b/data/2-pages/205.txt @@ -0,0 +1,41 @@ +Page: 205 +Source: data/1-source/IMG_9872.jpg + +Transcription: +Day 46 + +Morgana turns into a bee to go scout out the kitchen. 12:30 +Druma classroom is bigger on the inside & like an amphitheatre +with huge set with trees & feels well looked after. +As go towards the door between Hall & kitchen hears +animalistic snoring behind the huge settings. 3 x cages - 1 empty, +other 2 have Chimeras in them. Both have Lion & Dragon heads, +but 1 has a goat head for its 3rd head & the other has +snakes. + +Corridor has lots of hybrid animal pictures. +Hall seems to have a dome barrier against the door. +Kitchen - +1st year dorm - No bedding in here even though it's past midnight. +P.S. - Benches & surgical tables - experiment room. Horse on one of +the slabs & is cut open but still alive. People in there are "Men" +with squid heads - talking to an elf with green (moss) hair. +"There's no need for her to be here." She says there is +with the meddlers around and her mother has gone. (Willowispa) + +Use broom to try to get to kitchen - darkness is worse. +Door disappears. - 2 black holes & ring of black around them. +Try broom again on the floor - seems to come out in a +cathedral & the door is in the ceiling - Morgana tries +to detect Dirk's dad & feels like we are in Harthall. +Strange wood & vacuum feel - the holes have now gone?? +Morgana tries to leave note saying we may have left Valententhides +home. Sees her & yelps - asks if she is the +lord Squall - tells him to go warn someone. + +Go to the kitchen. +Salt pot won't move - top moves like a safe notch. +Click 6/11/10/13/7, opens to reveal salt. +Mr Moreley appears from the well. +Evocation - understand when we get there - no point in +riddles. diff --git a/data/2-pages/206.txt b/data/2-pages/206.txt new file mode 100644 index 0000000..69afb8b --- /dev/null +++ b/data/2-pages/206.txt @@ -0,0 +1,36 @@ +Page: 206 +Source: data/1-source/IMG_9873.jpg + +Transcription: +Main Hall storage area for stock beasts. Human +wizards. Geldrin tries to deceive them. +One pulls out a copper wire - attack them. Release +Owlbear. +Morgana tries to free the rest of the animals. +- ledger documenting sales of beasts - stopped in the + last few weeks. +- necklace - snake & scorpion - Noxia symbols. +Animals are released out of the back door. + +Get attacked & plunged into darkness. Willowispa attacks us. +Comes into a dragon outside & flys off. +2 wizards come through the doors of the room. +One looks like one of the "twins". The grub is killed +& we hear a scream from underground (basement). +Use the Broom to try to go to the basement. Open the +door & it's blue sky instead of pitch black - go +through the door & it disappears. Try to open the +door & it doesn't open. Bosh flys down & finds some +coins glinting in the distance. Pay a penny & it then opens. + +Relief map in the room (approx dome time) with +8 divots around the outside - for the orbs? +* (page 35 for location?) +2 doors either side, one no handle, the other has +a handle but magically trapped with dried blood +seeping under the door. Breaking head from the other side +of the door. Traps go off on the other side of +the room as designed to go off from the outside. +Antichamber type room with 3 doors. +They see & the people who were in the room are dead & evidence they were +trying to decipher the traps. diff --git a/data/2-pages/207.txt b/data/2-pages/207.txt new file mode 100644 index 0000000..d4dd5c2 --- /dev/null +++ b/data/2-pages/207.txt @@ -0,0 +1,38 @@ +Page: 207 +Source: data/1-source/IMG_9874.jpg + +Transcription: +Wizards instructed to get in at all costs. Seem to have +spent 20 years trying to get through the door. +3 people killed by the trap - no visible way in the room. +Very plain & the wizards got in by breaking through the ceiling. +Found a gap between the mortar which seems to be a door +but we can't open it. + +Through the hole & seem to be in the 3rd year dorm, +which to bring people out of the hole. Approx 10 +people sleeping here. +Lock all of the doors to the 3rd year dorm & go +to Evocation. + +Floor of the corridor between 3rd dorm & main hall seems to be +covered in 4 rays from different areas: +- Dannersend - Orange with stained glass effect showing Garadwal + at one angle & can see the word "Terror". +- Another copper with perfect concentric circles. +- Another fur - white - like dog fur (Kite/ghost fur). +- Last on Hexagon split into 6 segments (primary & secondary colours) + looks cheap. + +Pictures on the walls - seem to match with the style +of the rug: +- dark shirts +- Tabaxi/elves +- Dwarf/copper dragonborn +- Tiny fluffling/Thri-kreen male + +Far rug has a label on - "A gift from the Coppers". +Music room has a musical lock on the door up to Evocation. +Classroom has been ransacked - large metal table is intact & +has a circle of dark runes. Runes glow when Geldrin +approaches with a flint & steel. diff --git a/data/2-pages/208.txt b/data/2-pages/208.txt new file mode 100644 index 0000000..c36aca6 --- /dev/null +++ b/data/2-pages/208.txt @@ -0,0 +1,40 @@ +Page: 208 +Source: data/1-source/IMG_9875.jpg + +Transcription: +Someone approaches the room - Dragonborn - Copper scales, +head is human like - manage to subdue. No-one can see him. +He's a copper goliath mix "The Tarnished" (prisoner & [unclear] sons offspring). + +Go get a rock from the excavation hole & get attacked +by a squid head man - dies. +Jellyfish brooch, scroll of magic missiles (5th level). + +More footsteps towards Evocation. Another "tarnished" with a +coin necklace & curved sword with a purple crystal on hilt (armed). +Sword activates summoning circle. +Wants to make a deal - come to help us as Willowispa +told everyone we were here & we are in danger. +Decide to go with them. Has to do what Verdigren tells +him & will be in trouble if he doesn't do it. + +Summoning Circle has disintegrate spell trapped on it. +Command spell to activate. +Invisible person - another copper tarnished - drops a note +says "propell". +They are sacrificial & had no idea the sword wouldn't +work. +Got a hideout 15 miles below Tradesmells underground. +Send the information to The Basilisk. +They start to fight amongst themselves. +Sword one kills the other. +Geldrin destroys the circle with them on there. + +Decide to go back to the basement to sleep. +3 hours in & Geldrin's Alarm goes off. +Hushed voices saying they've hidden things - dragons didn't know it was +mother, won't be happy. There male & female Willowispa? +Wake up from our shifts with a blank mind. Takes longer for it to come back for +some of us. +Morgana feels it's a spiritual effect - something in the +building - always around but stronger here. diff --git a/data/2-pages/209.txt b/data/2-pages/209.txt new file mode 100644 index 0000000..938267b --- /dev/null +++ b/data/2-pages/209.txt @@ -0,0 +1,35 @@ +Page: 209 +Source: data/1-source/IMG_9876.jpg + +Transcription: +Go out of the room - 11 severed heads line the +hole. Torn off etc. Looks like they weren't killed here. Seems like +most wizards are dead. 8am. + +Go to Elemental lore - ornate handle with all the elements +on it - part of the lock. +Counter at one end - 30/40 cages containing animals - all seem dead. +Errol starts tapping on the window - can't find Rubyeye. Very +chatty & odd - says it's been 117 years for him (3 days for us). +Looks maintained. Doesn't remember where he's been - core seems +to be bursting with energy. Remembers looking for Rubyeye +& looking for the dwarves - darkness being with him for 40 years. +Just gave the answer "lost". Really old - Abraxus looked after him - really +nice city. Came back in the barrier through the Coalmount hills +portal - fight going on - 1 black & 3 green Dragons (veridian?). +Says he's hungry - has been eating gems for the past 40 years. +Apparently we've always owned him - thinks I'm Evalina +& everyone is themselves - from when we went to the past. +Abraxus gave him to us. Abraxus is Professor Moreley! +Moreley waiting for us downstairs, feeling he is very confused +& not making sense. + +Back to evocation - Errol didn't find any orbs. +Go to 3rd year upper dorm. Find a globe with a +rock inside. - Turn it into lava in the evocation +classroom. + +Novelty from home - go somewhere to buy shit gifts. +Go to the shop - very quiet on the way. +Persuade the door to open - socks & trinkets - illusion of a gnome +shopkeeper. Ask for a snowglobe from Snowscreen. diff --git a/data/3-days/day-42.md b/data/3-days/day-42.md new file mode 100644 index 0000000..908465e --- /dev/null +++ b/data/3-days/day-42.md @@ -0,0 +1,628 @@ +--- +day: day-42 +date: unknown +source_pages: + - 166 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 +source_ranges: + - data/2-pages/166.txt:39-48 + - data/2-pages/167.txt + - data/2-pages/168.txt + - data/2-pages/169.txt + - data/2-pages/170.txt + - data/2-pages/171.txt + - data/2-pages/172.txt + - data/2-pages/173.txt + - data/2-pages/174.txt + - data/2-pages/175.txt + - data/2-pages/176.txt + - data/2-pages/177.txt + - data/2-pages/178.txt + - data/2-pages/179.txt:5-39 +complete: true +--- + +# Raw Notes + +## Page 166 + +Day 42 + +Dirk also has an odd dream too but is +a Goliath munching out a fat belly dragon. +Feel like we have a link to them. + +Wake up & go to meet the council in a large tent +Cardonald / Ruby eye / Goliath Elders - Dirk Senior - Ogrim Thunyalus - Gren Boulderfist - +Anita Sandsong - One who seems to be the leader of the sickly goliaths +Blisterfoot + +## Page 167 + +Rubyeye & Cardonald have been looking into things - memories coming back since +Eva slayed The Mother. + +Believes Envi maybe trapped - unsure whos side he is on. +Goliaths Empire - slew Perodika's parents & built a city on their bones. Wyrmdoom +was there for a few hundred years after the barrier went up + +Envi part of the deals with the dark demons. +Need a plan - Best course of action is to infiltrate the Goliaths +in the city & turn them against the dragons. + +Galimma turns up (Peridot Queen) - Calls herself a master spy +will give information freely - if we agree to be left alone +to go about her business choose some mates & live her +life without threat & may kill the husbands +& the odd person. Shed some gold etc. won't be evil but +won't be good. Promises to put a sign on the lair +to notify of risk. + +5 maybe left from the first coupling. +another of Lortesh's sons with a captive wife +3 twisted & 5 other dragons: +- Emeredge - Askellon +- Willowspra - Vahthell - oldest daughter. +- Toxicanthus - Wyrmdoom +- Rotwrake - Thundeya +- Verdigrim - Tradesmells +Lortesh & Perodika's children + +Emeredge resides in Askellon +Twisted - Lapis + Heady + Plague + +Army to attack Tradesmells +We & some others to head to Ashkellon. Maybe? + +Ask Blisterfoot if any of the other rescued Goliaths are +from the towns or member of the resistance. +Returns with somebody claiming to be part of the resistance +in Ashkellon - Three finger Dune shwelter + +Secured who sold as a slave was one of Emeredge's +Dune dwellers. Had a Communication device like a brick with black +feathers. Flew to the other birds, had to tell it to fly slower to be +quiet + +whenever they tried to contact out those people who tried +ended up disappearing. + +Will help us to find the resistance + +## Page 168 + +Ruby eye transforms Invar into a Goliath. +Geldrin - Invisible + +Teleport to Ashkellon - In the throne room. - On Tazer + +On the throne - Dragonborn idling picking his nails +Araks. - Confused why we are here & tries to +leave to speak to his master. & gets killed on the +way out. - Put him back on the throne with +a dagger in his back. Zekish. + +Exit the room. scraggy female goliath walks out with a pile of +towels & the guards let her through others come in & out regularly. + +Entrance to the throne room is just storage to heal etc. Emmeredge. +Young boy coming up the stairs with a tray with food +for Arswales. - Dragon we killed - Minthwe cuts him off +duty in 2 hours + +- Tell the guards to leave us alone +- go to wash room - tell goliaths to take the dirty soap. +Linen - look new. & lady in here seems more nervous than +the others. - Dress is bigger than necessary. gave birth a few hours +ago said they'd taken it but she'd stashed it in the +linen basket + +Emmeredge likes Comedy & Acrobatics. +- Baby is called Badger + +Call for the shift to end early. - Guard goes to get +the rest of them & we walk out with them all. + +Every corner seems to be a dragon born. & we head to the +outskirts of the city where there are less guards & enter a +building + +Got in touch with the resistance through Dune shwelter +& the bird is coming tonight - meet at the [Gugghut] 4hrs. +Their next shift is in approx 18 hours + +## Page 169 + +large female dragon born walking down the street +looking at the house. hard to be in pairs. +Dirk goes out the back & sees a neighbour +spying on the house. sneak around the house +have axes & armour - surprised. + +- female dragon turns into the Goliaths' Queen lady +& the neighbours are with her - Anastasia. +- Explain the plan to her +The barrier is weak & they are speaking to her +more. + +Anastasia gives Dirk a ring - Envi's 5th ring +15:00 +Now Attune to 3 of them. +If successful the baby should be called "Badger born in freedom." + +Teleport to a hole higher up in the tower to try to rescue +Envi. zoom up the soft tower. +old birds nest seem to have been pushed aside for a landing +spot. + +Dirk sees elders - seem to be on repeat (their minds) +- Head up stairs. +Goliath skulls in Arches decorating the room - old coins dotted around room. +gives us chills. used to be dragon lair? Lortesh? + +Morgana inspects the coins - One is larger then our normal currency +Goliath currency. - Domain of Pengalis top +Dirk - low moan from the wall - all skulls skinned alive. +Next floor - Invar hears a voice - you wear the ring of the betrayer - I can +help - reflection in the ring, featureless woman takes damage + +Alarmed floor - Barracks style antechamber. - next room filled with Beds +& chests. nothing in them - oddly. +room off the side contains statues of 5 gods - but goliathified +Seara - Scorcher - Shielded [armel] (Tor) None descrip Elven Like somebody doesn't +know who they are sculpting - lionheaded guy +Inscriptions - Sefu - for the justice for the Hunt +Holdhum - guides our hands & warms our hearts +Tor - Protects +Lion Head - Attabo - from the stories the people of the cats told +El [corna] - Bridge - to keep our peoples free + +offering bowls in front of the statues + +## Page 170 + +Geldrin adds a towers penny to Bridge - Statues head moved to look +at geldrin - words - This place is safe. + +Morgana - adds nip to Attabo's bowl - words A drug to dull the loss +Geldrin adds brass City Platinum - words A payment made +Seara's - Lortesh's Scale - hair of Nature is Highly pleased +Your hunt will be successful however betrayal is at hand. + +Foot steps go up the stairs +Morgana Etches a symbol to Igraine & a bottle of cider +- Cider empties - do not trust him - I did - he promised +me tribute & Never received +offers another Drink - lying in field of white roses. +Laughter of children - chuckling of Dwarf man & Elf (Adilth?) +Dragon soaring above - no Barrier - Elven woman pregnant appears +he made a statue to me & the image of another in his +home & promised me things but chose the easy path +because I couldn't give her life back. Promised things +for her life - came to an arrangement & he took a darker +path. Elderly human man, looks sad, rubs beard & back in room + +- Royal room - mess Hall? - feels like honoured guard space +old pictures on the wall one out of place of +Benu / Guradwal / Goat headed sphinx +back - to the Warriors of the Lion from the Dunemin +backing & canvas comes apart - 2 large feathers +tied the the top with orange & blue feathers +with beads. - Give to Geldrin + +- kitchenette - Chimney seems to go to daylight communal chimney + +Tor Statue - add a note with Badger born in freedom to +the offering bowl - words - Tor Protects all + +Put cloak in the fire in Stitcher's bowl +Smoke image of Ruby-eye & Lute talking +about the hot hands - she says tell you what +I'll make you all cloaks +words - A gift crafted for a friend is the key to it all +Feeling of solace - No spirits in the main room. + +Morgana goes to investigate through the fire place +floor 25 +2 floors up & finds a bedroom - lavish but looks +recently used. +Anti-chamber - crystal - Red +Blue. + +## Page 171 + +Floor 28 - Bedroom - Air december - crystal - red [in fire?] / blue on wall +again rug is a picture of a dwarf +Holding a dragon's head - one of the dwarf's eyes +is bleeding - Goliath touching his shoulder. + +Floor 28 Library-esque room with an ornate map +of the pentacity slates and a red dome above. +towers at ground towers - here - gap in the sea? +Palace approx where Shousorrow is. +See some one come out from the bookcase +Dragonborn with Goliath on his knees carrying +books - Dragonborn wearing orange/blue robes. +Goliath is hunched round so books on belly +but head makes him look like on knees + +Floor 30 - Are place covered in Goliath faces - eyes scratched out. +Floor covered in coins - walls are transparent - +from this direction (they weren't from the outside) +4 x Dragonborn playing cards - look like they have +armour welded into their scales - 4 ornate swords. +Morgane feels a great evil similar to the feeling +when cleansing Azureside. From the floor below. +Then sees a field of white flowers & feels solace. +Morgane comes back down & tells us what she's seen. +Head up to floor 24. + +Morgane saw a corridor on this one. +long corridor ending in a fireplace +1st left - 2 guards & heavy breathing of something at the corner. +1st right - similar guards & something human large & asleep hunched [between?] +quietly [giggling?] +purple glow 2 sets of feet female giggling +2 dragon born guards. +(2nd left - barrier - looks empty - door is alarmed. +2nd right - barrier - hoofs behind barrier - above them 2 guard. + +Pair of Green Dragonborn go down the stairs. 2/3 floors down. + +4 copper pylons creating the barrier - something made of air +in the barrier +asks to be let out & will help us +guards have a wheel to open the dome - Hephestus +reads morgane's mind & says don't let him out! +Hephestus wants to clean the land. + +## Page 172 + +2nd right - 2 x dragonborn - glowing axes. +goat man - walking backwards & forwards in the Dome +lets us done this for so long + +1st left - guards - vicious whips with barbs +sphynx - goat head + +1st right - guards - mirrors - cracked. +Elven woman - buttercups in her hair - copper hair +standing rocking slightly laughing. Locked door behind us. + +Floor 25 +(Door at top of tower it opens) +6 doors. Willow wispa is coming - mum's told +sword / shield / Axe / Tower / Book / Bridge / Axe. +writing [been?] to come +Lock door behind us sleeping & talking +Another hour before shift starts - boring. + +Floor 26 +somebody walks towards the door run up to floor +27 & see a goliath walking out with a tray. +Into Floor 27 Library +Slen librarian +2 guards walk into the room. +Calls me The Exiled not allowed up here. +Not with willow-wispa - Calameir is coming here. + +- killed guards. + +- browse the library. - throw a romance book to Blisk. +take a few books from each section +find a Poem about Valentenhide's fall similar/word for word +to the one found in Dumnenend + +- Approx 8 guards(?) go up stairs + +Dirk retrieves Bone chips from the 2 killed guards which are +each etched with Dragon's & one on them. - Dragon Currency +10 mins later 3 sets of steps try to come downstairs +come into the room. +One has the wand totem brought from the sister +in Dumnenend. + +Dirk sees Joy - she's sorry - they've got him we should go +now - (we think that is Rubyeye) + +## Page 173 + +- have 5 x goodberries from morgane. + +go up to 28th floor +teleportation circle & 2 x domes - one with Ruby +eye in it the other has 2 x ghost figures +(Emri & Joy) + +Ruby eyes was an illusion + +- Emri's seems to have a "leak" & requests +the skull of Treamon & doesn't answer the question +about the rings. + +Ruby eye dispelled the magic keeping him trapped +he teaches the rings to us as proof it is him. +activate in "the Barrier" so Joy can't leave. +We don't understand the sacrifices he & her mother made +to keep Joy safe. +His pacts with Kashe were his downfall +asked why Joy needed to live eternally & so many +sacrifices needed to be made to do so + +29th floor - New carvings of scorpions Tellfether etc. +sense evil from the door. + +go into the room. +purple crackling energy with 10 x 10ft green blob dripping in +the middle of the energy. +2 figures around it medusa, statue figure +child of the mother with a worm & eyeless dog + +Bronze & telescope at the back of the room (like Emri's) +painting clockwise at the wall. +Shield spell appeared on the floor - shielded us +Health pipe on my belt - healed people +Coin appeared in Thuvia's hand - got rid of the dragons +Dirk's sword grew flames. + +## Page 174 + +Dragon vision on the ceiling shows Dragons terrorising +the town. [new?] used the coin from Bridge +& all but the fat dragon vanishes. + +Geldrin uses Treamon's skull to cause a meteor strike +on the dragon & the town + +activate the shield with the, coin +Brother fracture used to do shield disappears +& the goliaths in the city all gain weapons & shields +& heal slightly. + +As the blessings activate - a tiny hole is noticeable in +the barrier. +Emmeredge dies! +Noxia smashes the floor & breaks 2 floors & we all fall +down - through Emri's floor +Book in Geldrin's bag hums & Kesha wants to help for +no cost now... Does not take the offer right now +Kill the Noxia Beast avatar + +Talk to Cardenald - Tradesmells totally empty - no dragons - +no goliaths... +Rubyeye is missing + +Check on Emri - he's still in prisoned - Cardenald speaks to him +he's not complete. bits of his soul are missing - one is the guilt +but misery others too. +Formation of the barriers is not the only thing they learnt. Elves tried +to remove other parts of their soul in an effort to perfect +themselves, they learnt this +- large man under the mountain = battery + +Benu's other kin - Trixius. + +- head down to the prison rooms. + +[boxed note] +Skull (week) +charge +cooldown. + +[boxed note] +guilt +sorrow +compassion +Joy? +Mercy + +## Page 175 + +Hephestus door has Banishment on it level 9 + +Goat headed sphynx - Elemental of light - Trixus. + +Elf lady - Dragon - copper? - Metallic good? (childhood chants) + +Goat Man - Thromgores boy? - Steven - (Shuert locked up elsewhere) + +Emri put him in here - he helped to contain Valentenhide. + +- Steve just wants to Bob stuff & he seems sincere. +Been here for 1,000 years. Elf/Dragon not been here long. + +- Dragon lady - hungry - open barrier to give her food - doesn't try to escape +as the barrier makes her safe - says he's gone now & seems +sad - guards say he's dead - he's gone recently - Lorleh? +have we seen her boy - doesn't know why she is +here - ate about 1 week ago - let her out & +give food - find a maggot in her ear. remove it +she uncontrollably cries. remembers everything - Copper +Dragon - home is Snow Screen - used to play with +King & queen's son in Snow Screen. (Now Snow Sorrow) +[Ice fang] (Atlih) + +- Gold Dragons? +Verdugrim - he's/Lorleh's son - the tarnished - bred [all?] Verdugrim's +dragonborn & goliaths + +(Mama) Eveline Heathsall was betrothed to argentum & became +a Heathsall. + +Igrine came to see her while she was sleeping +& she said she was lucky she wasn't +captive any where else as she couldn't speak to +her, somewhere else. + +ice fury was approx 30-40 years older than her. + +go to see Trixus (Benu's little Brother). +asleep - loud noises don't wake him +open the barrier +has 4 x brass rings on each paw + +## Page 176 + +under the Slumber version of the +imprisonment spell. +runes on rings: +A Blessing from Altabre, Protector of the Brass +city, Salvation to his Children. First of his name +5th of his kind. + +Shuert comes through the portal & falls through +to the library, & comes to find Steven +promises he has Ruby eye... + +go to check out the treasure hall. +Lots of goliath currency, Brass city, Dumnen & also +Massive triangular coins currency of Snow sorrow, one +has a female sphynx resting its hand on a +dragon. - take copper dragon down & put Tixun's +hand on her head - he has a brief stir & +recognition but stays asleep. + +- Library - book on Benu, Garadwal & Trixus - last 3 of Altabre's +children who walk on the earth. - came from +Fire Gardwell looked after the Dumnen's - enjoyed the +gifts. - Igrine gave them the gifts to heal their +people +Trixus - helped to create Brass city - Tabaxi, confused +& lost but Trixus helped them, industrious & proactive +in creating things - Not sure where the brass is +coming from - (Blessing from Shulcher?) +Benu - Protector of the elves - helped construct the +great tower - doesn't do alot of protection - seems to +train them in Art & poetry etc. & they became obsessed +with it. Benu sees errors in its ways - some point +Benu leaves (no info why) & hides. +waiting as if the historian wants to be noticed to +get a protector. + +Book mentions knowledge of 5 Sphinx's dated 700 BD & dated (returned +to Altabre?) + +## Page 177 + +Geldrin places Snow Sorrow coin onto Altabre's offering bowl +white creature comes in & destroys the city female +Sphynx comes out & lays a hand on its head & they +both disappear. she disappears in sparkles, white dragon +remained - vision ended. +words - The father wishes freedom for all his children. +statue seems to be looking at Geldrin. +- sphynx turned into the dragon? +Symbolism of the shield Trixus? + +Observatory room +flesh crafting wand +lots of books - One about Noxia wanting to walk on the earth +written by a Goliath. - Study of what Noxia left behind. +in the fight between Noxia & Sierra. - Drops of Noxia +blood corrupted the earth & ensured things didn't grow. + +- Dragon Born forces leaving the city going! Earth Waker, side. +Decide to go to Bleakstorm... 17:30 +* Blizzards when we teleport outside - outside the +castle around 10 mins walk +* citizen walks past and says it's a pleasure to +see more visitors. +* Approach the partially ice dwarf guarding it along +with a strapping Goliath - Portraits is an illusion and on +is real. + +Lord Bleakstorm was here but he apparently left the other +Being attacked by ice elementals - Altwares have been happening +since leaders left approx 1,000 years ago. The half +Elf was from Everdard originally. we don't know +how this works. + +## Page 178 + +Detects Time - Device - Notes Dirk is missing a day. + +Bleakstorm has been cursed & Blessed - I only exist because +of him - he was there when we were set free. +he's made a deal with both a good & bad person. + +The Half Elf seems to know us all & our feats. +5 is a good number. + +- call him out as Lord Bleakstorm. & we appear next +to him in a throne room. Lots of pictures around. +The room showing acts prior to the barrier all seem +to be done by the same person. + +- Broke some rules, coming to see us & he can't break +on occasion + +- Request sanctuary for the dragon friend - he recognizes +her & needs to look into her name. + +He will not forgive Emri, as took away his only friend. +& entrusted him despite saying no to it. +Wasn't the dragons who took him, he was +tricked into releasing his friend, +He often trusts his god which she appreciates. + +- Promised the elementals we would free his friend. (leechus) + +- Tips outside the barrier can be difficult but + +Perodita heading to Heathwall +Bridge's sister is nasty trickery (Atana?) Valentenhide +we have 7 hours before she gets to Heathwall. +can go back in time but there is a cost +Ruby eye is out of his sight + +## Page 179 + +Trixus got a task he was not going to +achieve. + +Send a message to the Basilisk about Perodita +heading to Heathwall - Didn't send us outside the +Barrier. + +Gardwal getting stronger inside the barrier at +Gravel basers. + +1 hr 35 mins + +ask if we can free Perodita. - will need to ask +Bridge. - go through a doorway onto an invisible +walkway - Reopen the door to clouds. +the clouds transform into a female face +proposal to free Perodita - she seems to like that +idea - requests us to pay homage to her +if we agree to release Valentenhide then she +will ensure she adheres to the god rule. +grants our idea & we appear at Heathwall +& see Perodita vanish!! + +Head over to Heathwall. - speak to Lady Parthabbit +Lady Heathwall isn't in she's gone Airwise to help +us with the battle heading to Emmerave. + +* resend message to the Basilisk. + +- T.J. Boggins is still here eating meat & watching +opera. + +- Jin Woo is absent. + +[boxed note] diff --git a/data/3-days/day-43.md b/data/3-days/day-43.md new file mode 100644 index 0000000..420a440 --- /dev/null +++ b/data/3-days/day-43.md @@ -0,0 +1,459 @@ +--- +day: day-43 +date: unknown +source_pages: + - 179 + - 180 + - 181 + - 182 + - 183 + - 184 + - 185 + - 186 + - 187 + - 188 + - 189 + - 190 +source_ranges: + - data/2-pages/179.txt:40-43 + - data/2-pages/180.txt + - data/2-pages/181.txt + - data/2-pages/182.txt + - data/2-pages/183.txt + - data/2-pages/184.txt + - data/2-pages/185.txt + - data/2-pages/186.txt + - data/2-pages/187.txt + - data/2-pages/188.txt + - data/2-pages/189.txt + - data/2-pages/190.txt:5-38 +complete: true +--- + +# Raw Notes + +## Page 179 + +Head for breakfast after a restful night's sleep +All the wizards appear to have been called back +to grand towers +More & more people seem to be finding lost documents + +## Page 180 + +Information [crossed out] memories started to come +back around a week ago (aligned with when +we killed The Mother) + +- Goldenswell still out of sorts since the kidnappings +- Two kobolds in the city now - lieutenant ??, + travelled from Airwise - similar story to [us]. +- meet his lieutenant Grimby the 3rd. + Had a job working for a wizard, evil wizard + & some adventurers helped him escape + capturing woodcutters for her Army. (Klesha) + Bodalisk told us about them + + lovely Envoy came to him how to kill his townsfolk. + (Dragon?) - silvery green. + +Just woke up at pine springs in the snow run +off because of a huge bird sparkling electricity. +then ran off to the forest. + +he was kidnapped as he used to sleep on +top of his mother. + +The place he came from had lots of words, +the same as this place. (Harthall) + +- there was a door in one of the rooms with + a goat man in - had gone when he left [unclear] +- (Shriek?) + +- Wroth - trapped Envy when he trapped Mama Harthall + as envy is in Mama Harthall's head like he is + in Rubyeye's + +Geldrin finds a disintegrated scroll in Jin Woo's room +& on the back is written "In her gaze, End of Days" + +## Page 181 + +Morgana finds a Auction House Receipt +Chess board with the wizards as the carved +pieces one of the rooks looks like brakemen. + +Auction House Receipt is for a large picture +frame with a massive moth + +Pub is called "11th Duke of Harthall's wife" +Moustached fat dude - on his arm was a really good +looking Raven-haired half elf. + +Near the Cathedral of Attabre is a +ominous church - sign - Lord Argenthum's Rest. + +Dwarf blacksmith pulls Invar to the side & says +it's good to see others look around & [says] +they are here for other reasons - not just to sell +wares & gives him a box + +Golden Dragonborn +Tomes of places they have only just discovered. + Ashkhellion - Goliah City. + Tradesmells. + Thadkhell + Wormdoo + Oldym + Broken bounds. + Blacksmirk + Last past Airwise + +Invar opens box slightly and it glows bright & is warm +closes it to open it fully later + +Crowd of people gathering around a vulture man with +a glass box containing a glowing open book. +get into the queue to go see what the book is +person in the front is an elf with bushy +the ends of his ears & asks the book + +## Page 182 + +Morgana asks where rubyeye is & nothing happens now +asks who can help find Rubyeye - a picture is +drawn of a pale dwarf with black dreadlocks - with a crown +over words say picture smudged +One more glance a death dance + +Geldrin - how do you exile Trixus? +picture of Benu & Trixus & Garadwel with 2 sphynx behind +them - "a family reunited" is written underneath +One just an outline. +Geldrin then hears a whisper in his ear +"one brief look - last breath look +turns round - sees a featherless women reflected in +Invar's armor & collapse to the floor. +(Valentenshide) + +Book written by Benu. +& 5 books in total - Goldenswell, Snowsorrow, Dumnensend, +Freeport & Harthall + +Ask book for location of papael'munsera - blank page. + +Tote dwarf civilization + 2nd came the dwarves first of logs & five of + the deep - 3 great citys of each - many lost over + the years but each still exist. + +Benu's family names: + missing one - no name given + Anadreste + Benu + Gardwel - name hidden on the page + Trixus + +I feel a hand on my hand - nothing there [vulture man] +says "in her stare honey laid bare" vulture man doesn't +remember speaking + +## Page 183 + +Their was page one so ask what is on page +2 - elements seem to be clashing & a bright light +raises of the page & leaves a black hole & lots +of different elements appear & converge into the world +we currently know. + +shows the last page - shows "The End" then shows +"one more glance a death dance" +one brief look last breath look +In her stare Bones laid bare +in her gaze the end of days" + +Book slams shut - never done that before. +reminds us of Dumnensend & a kids poetry book + +Morgana has the book last poem in the +book is that one - 2nd to last is a +council meeting with plans to take out Valentenshide + +Golden dragon born looks for Dwarven lost cities. +finds 2 books - written by a scholar - Lord Hawthorn +extracted from civilization after the death of the +princess Maesthon (dead - claimed) & Grin gray +(Atltrino) +location - in 1 volcano +each book references the other city - neither +references a 3rd city. +references authors' friend Rubyeye who is married to +a princess of Grincray - written so the reader doesn't believe +she is a princess of Grincray. (Princess of the lost ones) + +Morgana asks a Shutiny to speak to the chorus of the kings +the location of Grim & Cray +Door entrance to both city's + +## Page 184 + +Dragonborn - finds book on Hawthorn - was +a botanist - not sure why he's writing about dwarfs +otres - Biography written by Rubyeye but borrowed 94k +one of the first people who left, [90] years ago. +Developed the giant bees & winter flowering plants +Bred some of the animals at "the menagerie" +created winter Rose. +Blossoming tree gifted to Goldenswell? + +Back to the Castle to wait for the bird. +Decide to open the box Invar has. +Contains a small black orb where lava stone goes +to go through the racks - & snake heads as eyes. +doesn't respond to Morgana trying to speak +to it. Speaks lots of languages. +Been in the box for one min moon 300 days. +Icefang said we could release him - papa'e munera +just a part of him - knows where the rest of +him is & will take us there to free him & [unrasorak] +blessed by Anadreste + +Friends extracted him from the lake - Dwarves & +seen errors of their ways & want to release +him now. + +Ruby eye is no longer welcome at the city. +king is paleskinned with black dreads + +- Shurling arrives - chorus knows where the entrance + to Grincray is but need to go through Mashir + +- flesh crafting wands - something still out there + stopping all of the lost knowledge being retrieved + +## Page 185 + +Lady Harthall appears. +She went with some forces from Dumnensend to +defend near where we were fighting. lots of +"Dragon born" defending + +Emeraire Hartmor araltar - thought Bridlator was going +to attack Harthall - she did before she disappeared. +Started to remember things - Remembers Icefang more & +he cared for her - They both assaulted Perodita, he +was starting to lose his mind. She had appear unexpected for +her youth. + +Tell her about the copper dragon & snow sorrows & big +flash of recognition. Remembers Gold dragons +Tell her about Jin Woo +Grand Towers done + +- Menagerie - mages who work there have not returned to + Grand Towers & have locked the menagerie down + no-one can get in - it used to be the mage school + Emi's apprentice was a dark skinned elf - Joy didn't + like him - Mr Browning also didn't like him. Browning + was a nice man (but this isn't what we have seen) + +Storms bad as of last reports. +Heathmoor plagues are very bad. doesn't share +similarities of barrier sickness - land is healing but +the people are not. + +carrying news from rear Ironcraft Air site - tradesman +went to pick up some one but he had +"Disappeared" + +the guilt is Emi's Guilt. + +## Page 186 + +Goldenswell - Earl need to be fair & ok +8ish weeks ago pulled his armies & left Harthall +in the lurch + +- Claymeadows - The believers are killed her niece +- lovely Brooching - person Harthall would like to see + replace the Earl of Goldenswell. + Harthden demolished by the giants. + situation difficult to rally Threepaws to anything + +Options: + Rally forces Goldenswell + snow sorrow + Dwarves + +find out what is going on with Grand Towers +use Gardwell's feather to speak to him. +Feather is a one person walkie talkie. + +Try to speak to Garadwel - it vibrates & chill in the +air - calls as his allies - huge we came to +see the errors of our ways - "he has kept them +here - barrier is his - Betrayer sits amongst us (daughter) +Mother was a useful ally - only the cause that mattered +only one more - Anroch or the Grab. +friends trapped him. Everyone against him - before he convinced +the vessel. Where is his brother? Told him +to help us bring down the barrier. trapped the mages +5th sphynx - was father + +Once barrier is down all the wrongs against him +will be rectified. + +## Page 187 + +People didn't build things as he'd taught them +& instead ran off to live like primitives. +Benu failed as abandoned his post - Trixus didn't as he +didn't abandon his post. + +Dad - +Tells Garadwell the Vulture men are back at +Dumnensend and Hephestos is still alive... + +Quick update - via sending stone - Grand Towers dome +is down - Garadwell probably gone to Ashkhellion. +Do we go to Ashkhellion & get Benu first? +Go to the library to speak to the Vulture Man. +goes to get his sending stone to speak to Ashtrigwos +to tell Benu to meet us at the tower in Ashkhellion. +Geldrin asks for magical scrolls & got them Just +Before the teleportation circle completes. Go to Ashkhellion + +Appear higher up in the tower & Harthall transforms to +a dragon to catch us. +go to the prison room. there is a dwarven man +with the barrier opener around Hephestos prison. +Asks if he wants to see his brother first. & he transforms +to normal self. +Notices Trixus is sleepy... +ceiling above vanishes - Benu appears. +Lady Harthall drops to her knees & starts to glow +humanoid is the size of the tower & wakes Trixus +(A family re-united) + +## Page 188 + +Steven not in his barrier + +Benu lands between us & Trixus/Garadwal (Trixus still in barrier) +Ask Gardwel to lay down his weapons & he refuses +Try to get the dome opener & Garadwal kills me. +Benu attacks Garadwal. Geldrin uses tremor skill to release Trixus. +revive me & see Valentenshide manage to look away. +Benu & Garadwal break through the walls & fight +outside. - fight ensues - Garadwal is banished 5:00 +Benu tells Trixus what has happened to Garadwal. Trixus +asks where Benu was when his people were in trouble. +Dark clouds above the dune - Perodita appears but looks very +bedraggled compared to a day ago. Says she will get back +in - wants the flesh-crafting wands. +Trixus father put him to sleep. +go back to the tower & retrieve barrier tools +Benu knows of a way to live peacefully without the +barrier. + +Hephestos is just his soul - wants to make a pact with us +so we will let him out. wants to give us +a piece of information to help him get out. +was asked to attack the dome. ?Browning? + +Need to save Garadwel +Trixus says +Trixus & Benu transform into humanoids to go to +the shrine room to see if they can check if Garadwel +is there + +Ask a Brass city Platinum to the offering bowl to help +with communicate with the god. +Attabre comes through - Garadwal is not with him. +what do we seek. we seek justice. Benu disappears. +he seek atonement for his crimes. justice. Trixus is looking but ok. +Attabre angry with Benu. +Goliaths were due to get a protector like Trixus. +Tell Harthall about The ancient + +## Page 189 + +Thoughts on the Barrier - possibly a bad thing but +done for Noble & Proud reasons + +Trixus can help with the memories - spell within the +Barrier is interfering - Attabre magic + Another +Location of the spell is waterwise at the Mages College +at Riversmeet. + +Trixus doesn't like the barrier - Doesn't think the +elves should have been able to remove their pride. + +Riversmeet - speak to Lady Igraine +Take Harthall to meet Anastasia (Dirk & Me & Morgana) +Take Trixus to see Emi (Invar & Geldrin) split party... + +Emi +Calls Trixus "The useless one" - Elves needed help to remove the emotions +Then +Cardenald put a talking door on one of the prisons +Him & Browning should have been in charge but they were +betrayed. +Elves protector - taught them how to remove emotions - Benu... +Trixus may be able to put Emi's emotions back but he will need +them to be able to put them back. + +Anastasia +Fly down to the courtyard. Goliath's scared... large Goliath comes +& warily takes us to Anastasia - in a building but quite as damaged. +Stalwart - first of the restored Iron Knights. Elders managed to remove +the sickness. +Dragons sent back to their homes - went on warpath. +Tradesmells - Dragons are missing from here +Ar[unclear] - Armies not left +Vathkell - Emeraire - Dragon armies dispersed +Thungle - Armies not left +Trying to create Armies to attack + +Tell her Perodita is outside +of the barrier + +Arrange pincer movement on Vathkell with Dirk's dad's army. + +## Page 190 + +Elder comes in & Morgana tries to check him over. +Stalwart - Purification ritual removed his ailment. +Morgana casts lesser restoration & heals his maladies, & +goes out to heal some children. Sets up a +garden & sings a song with curing them & turns +into a crow & flys off. - Create Legend! + +Anastasia worried where Verdigren went to... + +Geldrin tries to think of a way to get Hephestus to tell +the truth. No luck & Invar carries him away. +Comes down to the ground to meet us. + +Ask Trixus to help the Elders communicate with Attabre. +Send Anastasia's bird to Cardonald to get her to come to +us for the teleport circle to Riversmeet. +Cardonald appears. - Still not found Rubyeye & can't +find Errol either - not on the same plane? +Cardonald says Harthall means alot to her - which one? +Icefang - Things wouldn't be as good as they are +without him. + +Give Geldrin all of the teleport circles: +- 7 prisons - no defences +- lab - ? defences +- 3 Grand Towers - factory, control room, meeting lounge +- gate @ mountains earthwise of Coalmount hills (Dunnendale) +- Copper mines @ Arrofarc +- Impact site earthwise of Goldenswell +- Menagerie - Riversmeet +- Ashhellier +- 5 pylons - Aegis on sands - Broken. + +Dirk & Anastasia have a good night! diff --git a/data/3-days/day-44.md b/data/3-days/day-44.md new file mode 100644 index 0000000..adcee38 --- /dev/null +++ b/data/3-days/day-44.md @@ -0,0 +1,568 @@ +--- +day: day-44 +date: unknown +source_pages: + - 190 + - 191 + - 192 + - 193 + - 194 + - 195 + - 196 + - 197 + - 198 + - 199 + - 200 + - 201 + - 202 + - 203 + - 204 +source_ranges: + - data/2-pages/190.txt:40-43 + - data/2-pages/191.txt + - data/2-pages/192.txt + - data/2-pages/193.txt + - data/2-pages/194.txt + - data/2-pages/195.txt + - data/2-pages/196.txt + - data/2-pages/197.txt + - data/2-pages/198.txt + - data/2-pages/199.txt + - data/2-pages/200.txt + - data/2-pages/201.txt + - data/2-pages/202.txt + - data/2-pages/203.txt + - data/2-pages/204.txt +complete: true +--- + +# Raw Notes + +## Page 190 + +Statue of Morgana is being built as we wake up, +none of us know who it is. + +Report fr[unclear] + +## Page 191 + +Cardonald has a familiar give her a report +which may aid for the Howling Tombs. + +- group of adventurers is tinkering around & +have found Harthall's old lab & a key which may +help gain access to the tombs. Her familiar is going +with them so will report if anything else. + +One of Geldrin's scrolls is an arcane type of Draconic, +mega powerful of teleport nature. +Addendum in Draconic says perhaps this will aid us in +understanding where they went for seeing aspect to it. + +Teleport to Riversmeet - outskirts - meadow area. +Ruins of a house - looks like it was melted... no +natural wear to the building. Gravestone to the left +of the house - Rubyeye's house - where his wife was killed. + +Head over to Riversmeet. +Morgana buys a load of fruit & veg on the way in. +Very hot - because he has a plot which seems to protect +from the elements - go to check it - seems like Igraine's blessing? + +Head closer into town & see two oxen/horse cross +pulling a sideless cart with a "throne" on it +& a man in just his pants and two women hanging +on his sides. Kids run up to him & throw coins +& say "yay it's the dragon slayer" - muscly but not useful. +Parents tell them to wait for the show - apparently he's a +wrestler - regular matchless in Riversmeet. + +Ask where Lady Igraine is - manor house in the centre bridge. 10:00 +Temples of Hydrum, Igraine, Larn, & Kasha - first temple to Kasha we've seen. +Freeport guards are in the town. + +## Page 192 + +Lady Igraine is at the outpost set at the +Menagerie. +Hedge around the Menagerie (strong hedge type). +She's sat with a Black Dragonborn & comes out +of the tent to see us. +can't get in - wall of force? +Magician came to repay a favour. + +- about 20 wizards in there. +Refused inspections recently & prevented the militia from +going in. + +Try to dispell the magic to get through. +Mould earth to get under the hedge. +Send Geldrin's familiar to look around the outside of the +building. Building looks good but there are lots +of cages where things seem to have broken out. +(Griffon, Dragon, wolf, Human) Door handles on each. +Try to open one of them & gets frazzled. +Go through hole which has been dug by Geldrin. +Enter the grounds. +Invar looks into a window & disappears. +Geldrin disintegrates the door & has a vision +of Valentinheide killing Emi's wife. +Dirk disappears - Banished. +Geldrin appears to be enrolling in mage school. +(Acroneth, Crindler, Belocoose, Sphynx on another plane.) + +Go into the building after killing an acid beast. +Get hit by a fireball from an invisible foe. +Knock 3 times on the Divination wall to get stairs. + +## Page 193 + +End up on the 8th floor of a tower. +Not sure which one or how it happened. +This is the apothecary. - Nurse is Matron Cardonald. Her +daughter is in Geldrin's year - Valent's Daughter +Arreanae - Mum. + +Gremlin type creature (Janitor) takes us to the head teacher. +Pictures: +- pale skinned man with white hair holding a sceptre, + elven/human (Tortish Harthall) (blue crystal) +- elderly man - Geldrin saw in a bed in grand towers + founders of the college (Humerous Torn) + +Office windows have views of the compass point. +Chair has dragons on gold, silver, copper & a big white +one at the back of them all. +4th years are the ones causing issues - They are +from Broken Bounds. They are principal Grey - letter closing the school - transfer to Grand +Towers from Browning 47AD. + +Jade/grey on the desk motion at points Dirk +speaks to it in Aquan - Dribble is in there & +acts like something is swelling this energy. +Drawers open with head teacher's necklace. +Water elemental - fresh - we release it & +it will join us for a while around the school. + +A different plane for the infirmary & Head Teacher office. +Door back to the school takes us to a different room. +Picture outside - eyes keep opening & closing - elderly man. +Manage to move him to one side to reveal a chest +which is able to be pulled out of the picture... +Invar tricks this on the other picture & manages to +get the sceptre from the painting which is a key +to the box. +Open the box & a glowing orb (alteration) & a piece +of paper inside. + +## Page 194 + +Geldrin removes the orb & becomes overwhelmed +with emotion & regret for all the people killed & hurt (empathy). +Note: "mine felt right here yours is under real." + +Book on the sphynx on the other plane - written by +serpans, all superous - describe a place like ours +but different in many ways. First chapter is the book +about the sphynx who teleported their city underground to +protect it. Male & female & goat headed one who always +speaks in rhymes. + +Go back down to the school - into an auditorium +style classroom - 1 buggy up right of where we came +in time seems to have passed as expected. +Transmutation classroom. + +In the study hall / book 4 armed Vulture men +look like melting a pot on a pottery wheel with +2 wizards observing. One looks mindflayer. +Vulture - Melchroy mutual form? +Attack the "wizards" - Die. + +Notes - Documenting the pots it was making prior +to this (3 weeks ago) it was doing pottery. Other notes elsewhere. +Pets - rudimentary - Dunner style pots. +Bandage his wounds - & he hands me a pot & +some food. +Poetry seems to be about Dirk's home. + +All the time spent upstairs hasn't passed much time in the actual +realm. +Lord Hacethorn - last potion & herb teacher (wrote the book on Rubyeye). +Founders of the college - 547 years before the dome. 2453 AC (after cataclysm) +white haired elven man - Tortish Harthwall. +elderly man - Humerous Torn. + +Go back to the principal's office & back out. +Come out in the Divination classroom full of students +& Isobanne teaching - it's Sereneday. + +## Page 195 + +She tells us we are late... +I try to keep the door open & she spots me & sends +me to detention (5th floor). 18 year old human man - Enis (was called Thomas) +plus a girlfriend - 1st year called Hannah. Joy. + +Dirk manages to get to the infirmary, asks Nurse for date. +3rd Sereneday of Hummeron, 2968 AC (32 BD) +Mama Cardonald thinks Enis is a bad influence +on her daughter as always in detention. + +At the end of class Bosh & Cardonald head to the study +hall & pull out a book. Dragon skull (Mr Moreley) covering the study hall. +Geldrin speaks to the Dragon - a gold dragon - Geldrin +shows him the ancient dragon scroll & Mr Moreley is +confused as it's something still being worked on - will consult the +Gold Dragon Council as thinks Harthall is keeping things +from them. Rubyeye & Cardonald eavesdropping. Want to ask +Geldrin something. Rubyeye goes to speak to him. Final +project to remove his eye. Asks Geldrin to join them. +Everard, Thomas & Valenth. +Book about Grand Tower written in god language when +trying to read it they get a vision of the top +of the tower. + +Cardonald working on Automations - wants to do a thing +for the headteacher - then a bird & a cat. +They want to become famous. +Rubyeye's parents wanted him to go down priestly. + +Mama Cardonald good friends with some of the Thinglaens (Goliah). +Currently in the automations. Can't speak to them, not one of +the 4 usual elementals. Thinks they are light. + +## Page 196 + +Valenth in Extra Enchantment lesson. Rubyeye - Necromancy lesson. + +Geldrin & Morgana go to necromancy lesson - class is full & everyone +seems to have their own seat but nobody comes to claim the +ones they are sitting in. +Rubyeye drawing Mr Morely. Gives the same spell to reincarnate himself. + +Dirk & Invar talking to a bald man - doesn't match anybody +last working at the school? [Tory? teacher?] - tries to find them +on the list. Find out their time tables. 14:00 +Go to get their robes. +Dirk - Fire - House Eltur - Frederick Sims. +Invar - Earth - House Intor. +Robe also has a hammer & a shield on them. +Because hammerguards are patrons of the school & gets certain privileges - +extra embroidery & 10% off the tuck shop. + +Detention finishes - re-appear in 1st year rec room. +Hall-ork shows me to the cloakroom (Grisnak). +Orcs are being re-located as part of the peace +Gnolls too: anybody who is uncivilised. +No record of me in the list - my race doesn't exist yet. +Say my name is Evalina Harthall. Robe doesn't +fit as made for human. Request a new robe. +Miana (Evalina) - air - +extra embroidery, [unclear] & flag. + +Go to history - teacher's voice is familiar - Oldish man - +Lord Bleakstorm - lesson - sisters fell out as one +Far grove cities - Waterrose - Great Farmouth - very private. +Don't tell children about their histories. Admonishions came +from their lots, a 40ish human & says he's been on travels with +a grove for 100s years - travelled for over 1,000 years?!? +Book: Tale of Two Sisters. +Lord of Bleakstorm & the Gnomes. +Heard the whispers of holy Bright on the wind. Helped his people +& she gave him the gift of everlasting. + +## Page 197 + +Class dismissed, everyone leaves except some guy +at the back - Everard Browning - asks a question about him +living forever, & gnomes & their devices. +Dirk asks about travelling through time - Bright doesn't +work in a linear way, if we were to go back in + +Morgana - Earth. +Geldrin - Water. + +Go to Enchanting - think Geldrin & Morgana should be there but +they follow Rubyeye. +Teacher is an elf - bright red hair - Mr Cardonald. + +Calls me aside. +Is it true I'm marrying Argethum? But still seeing +Harthall's childhood sweetheart. Not good if she's seeing +the prince behind Harthall's back. Says I have an +interesting form & he wouldn't recognise me if it wasn't +for his Truesight (sees me as a dragon??). Says he's concerned +for me as friend of his daughter. Worried about breaking +the Pact with the Gold dragons. Says my form is interesting. + +Abjuration - go through a door & Enis is there. +Rubyeye asks Enis to show him the book & Enis asks who +is with him. Rubyeye saying he's thinking of asking them to join their +Say they're going to test them later. +Enis asks Geldrin for a second - been touched by a god +"lady of destruction". Enis has been looking into some dark magic. +- in a Divination classroom. + +Enchanting - Dangers of cursed items - 2 potions (healing) one cursed, +Identify spell won't identify it, neither will detect magic. +Need to be aware of mimics at all time. +Abjuration - no teacher appears - should be Mr Grey. +Everyone starts leaving but some people seem to stay. + +## Page 198 + +Gathering around a really dark skinned elf with +a bottle with green liquid in it. Doesn't know what it is. +Liquid goes up the side of the bottle when poked. +Morgana tries to speak to it & feels something reach out +to her - doesn't know its name but comes from the +desert. Morgana buys it - it wants to go back to +the rest of it in the desert. + +Agree to Rubyeye @ 10 in the air room. +- meet up again in 1st year common room. +Slime maybe the blood of Noxia. + +Dirk & Invar go to the library to get Lord of +Bleakstorm & the Gnomes & Tale of two Sisters. 5pm +Tale of two Sisters - very expensive book, picture at the +front of two women embracing, barbie doll type +body features. + +Morgana and I go to try & open the secret door +but fail. +Go to dining hall & ruin the classroom so the janitor appears & +the knock pattern & do in a different classroom but +it doesn't work. I then get sent to detention. + +Morgana goes back to tell everyone what happened. + +Two Sisters book - high ranking queens of the elemental plane. +They got on but like oil & water so were never together. +Bright - low sky. Valentenhule - high sky & when +lesser races were made Bright grew close to them & +enjoyed playing with them. But Valentenhule was haughty +& grew to enjoy harm to the beings & both grew from their +Valententhides position in the high/dark sky caused the void +to open. +Bright position in the low sky witnessed the humans be enslaved by +the ice elementals & when they broke free she awarded them for it. + +## Page 199 + +Gnome book - Bleakstorm thought they were cast outs & +chosen to show anything but recently started showing off +seas but the gnomes seemed to have an agreement with the +merfolk as always turned away from a port he knows +exists, Great Farmouth. Thinks grand towers was made with gnomish technology. +Gnomes used to use random names to not show their +family name. + +Morgana tries to find detention & heads to principal's office +on the map. + +Altith (Icefang) tries to contact me & we were meant to +meet after I met with Argathum. +Man appears (Icefang), everything will fall apart. Dad will +be mad. Humans getting ideas above their station. Gods will +take over snow screen. + +Need the Janitor's broom to open the door. + +T look silver with a hint of green... +2 green dragons, Emeraldus & another. +Goliaths were meant to go & attack them & be one of + +Icefang tries to see the future +ask if Browning does - what happens? Broken tower fields +Burning blue/black/green/red dragons flying around - small +settlements of people hiding & elementals destroying things. +Says "The future could be desperate, the people are not ready yet." +Cold identify - something came with us. +Suggest we go see Browning. +Ask him for the Broom. + +## Page 200 + +Go to the air common room. 10pm +Door is flanked by pictures of a dwarf with bushy beard +& blue dragonborn. + +4 mages - Browning, Valenth, Brotor, Enis, & Hannah. +A featureless woman has her hands on Hannah's +shoulders. +Thanks me for bringing the broom as it's part of the plan. +Everard thinks he's found a way into the tower through +the tunnels so need the broom to get there. Want to see +secrets of emotional elimination & memories & Automations. +Help to defend the land as don't think the elemental +truce will last much longer. +Agree to go with them. +Tallith didn't hire the Janitor for nothing - he used to work +with the elves. + +Valententhides - says her sister's magic protects us for now. +Hannah - priestess of Attabre - thinks the elves have the +same magic as the [?]. + +Open a door to a dark corridor. +- Valententhide says we shouldn't have seen this. Bright +has shown us too much. We shouldn't even see +Hannah as she has been wiped from time & space. +Everard enters & we follow in the corridor & close the +door. +Valententhide hovers over us & lets go of Hannah. +Opens into a janitor's closet - Reborn stone? +Throw a coin into Bright statue & door disappears. +- Dirk party - appears at a bathhouse room - human - Blackhold - +- we try to find everyone - do! + +## Page 201 + +Go to open the door back to the school. +A silver dragon appears - earth flows through & a +silver/green claw bursts through. Geldrin forces it closed. +"Taken my form give it back" (Avalina) Took everything +from her - manage to close the door & give +Geldrin the broom (couldn't give it to Enis, Thomas, +Browning?). + +Open in an empty room - shelves, stacks of paper etc. +White room, blue viewing, gorgeous red desks, young elven +child sat at each desk - lesson for simple maths. +Enis says it's taking too long - give the broom & we +end up in a field. + +Next small room made of Brass - Brass city. +Browning takes the broom - Air common room & gives me +back the broom. They go out & the door slams shut. +Re-opens to a dusky room like the air common room. +Windows are black - glass cracking sounds so we exit +& seem to be back in our time. + +Don't remember Hannah - only the image of her turning to dust +in the cave - don't even remember her name. + +Noxia glob - some of the rest has returned home - +Magic doors now feel cold. + +Go through the door & see shadows of Valententhides face. +Feel like we are being pulled up. +Get out of the door & other side of the barrier +to the room above the air common room. +Door here is made of black crystal - almost see through enchanted. + +Suit of armour (Goliath/goblin size), pet gnomish hole +set up like you can just stand on it & put it on. +Purple crystals on it linked with copper wire connected to +a hatch - contains an automaton core. + +## Page 202 + +Rug has cityscape with buildings & walkways. +Nothing written under the rug but there is a label saying +"Great Farmouth". + +Armour is an enhanced suit of armour with a world of magic missiles, +power suit & a shield. +Get Bosh out & go downstairs. +Quarters - go in - homely farmhouse feel to the room (no dust). +Professor Arnisimus Goldenfields. +Papers on the desk - Waterwheel Blueprints - Goldenswell. +Desk picture - Bleach Blond Halfling stood with human female blonde +hair - family? "To my love Arnisimus". +7 x cat collars. +Bleach velvet box contains golden chain with a symbol of a fireplace & a cat +(symbol for Larn). +Lesson plans etc. + +Door to 1st year common & to conjuration class. 11:00pm +Bird House type. +Things above the blackboard in different colours. Morgana takes the green one. +Pixie sleeping inside - wakes her up. Thinks it's 49AD not 1012AD. +Thought they were leaving for Grand Towers tomorrow - with the others +(Green/Red/Blue). Teachers of conjuration... "The sisters". +They can't leave the classroom - elementally of Igraine. +Try to get a new core using Tremaion's skull to help. +Get it & succeed. +I wonder that Morgana works for The Chorus as +she is one of Igraine's greatest executers. +Thinks Vita was one too but became his own thing +when working with Mr Bleakthorn. +Mr Moreley can't leave the school too. + +Baby Attabre spirit they brought in - The sisters were excited +to see it, was going to the goliaths as they were becoming +Emeraldus line - Goliath's killed remaining 2 green dragons +& created Wyrmdown. + +## Page 203 + +Go to Mr Moreley's Classroom. Via 2nd year common. +Something leaves through the other door to the common room +when we get there. +Mr Moreley's room is fully painted as a mural of Snowscreen. +Large desk, pedestal with a cushion & sphere of glass +on it, smoke inside. +Powerful defense mechanism if don't have the password. +Containment device - same as Enis's. +Mural - Gold, Silver, Copper & white dragons. +Dirk throws javelin at the box - doesn't do anything. + +One of each colour dragon head on the mural is a +button - work out the pattern & it opens the gates +of Snowscreen to reveal an alcove containing a book +in draconic - for Rubyeye. +Left somewhere only Rubyeye will find it. Going +to try to stop what they are doing here - used +the plans for the dome once we have a [unclear] future for [unclear]. +Battery is the clue. + +Picture of a baby sphynx (6th Sphynx) in the book. +Created a Mother hive for the "worm" using the +Attabre excellence. + +Head up to astronomy - big telescope & blackboards +showing what the moons actually look like. +Telescope shows a full moon but it's only a half moon +at the moment. Room moves when the telescope is moved. +Constellations are named - one is called Bell/Squall. +Scrying spell on the telescopes to home in on certain +points. +Pri-moon has lots of "Meteor" impacts on it. +Second moon - very perfect seasonal stone with a chunk missing. +Tri-moon - Deep Purple. + +## Page 204 + +Dirk puts head into missing door hole & gets a voice(?) +talking to him. Wants to know if he is Brotor, has a gift +for Brotor. Mr Moreley took the void. Gift is part of +the void. + +Squall's Belt - doesn't look like constellation - looks like a dark eclipse +shape darker than the rest of the sky. Writings on it, +unsure what it is - just a dark patch in the sky. + +Geldrin puts the hockey puck in the void & it says +"it's its lord!" +Say we have Brotor's eye & it tries to enter Dirk's mind & +confirms it is free & disappears, leaving an orb of void +behind (same as the smoke one in Mr Moreley's room). +Need 8 spheres in total!! + +Back to Mr Moreley's room - broke the void +out & dragon on the wall says you found it then +still need to be discrete - Next one is in Rubyeye's old +stomping ground - will need to contain it & meet him +there - Air common Room - go back there. + +Paper on the desk - "The window like your +paintings" - got an empty glass orb - how to fill it with the dust, +gather it all & take it to the Aurises who put it +in the ball & go back to the air room. +Stems from the head of a dragon. We found it. +Next one is obvious - kept the "seasoning" where it should +be - Kitchen. diff --git a/data/4-days-cleaned/day-42.md b/data/4-days-cleaned/day-42.md new file mode 100644 index 0000000..28c4323 --- /dev/null +++ b/data/4-days-cleaned/day-42.md @@ -0,0 +1,182 @@ +--- +day: day-42 +date: unknown +source_pages: + - 166 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 +complete: true +--- + +# Narrative + +Day 42 began after another strange dream. Dirk also had an odd dream, in which he was a Goliath munching out a fat-bellied dragon. The feeling from the dream was that the party had a link to these dragons or figures. + +The party woke and went to meet the council in a large tent. Present or named at the meeting were Cardonald, Ruby Eye, several Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, one figure who seemed to be the leader of the sickly Goliaths, and Blisterfoot. Ruby Eye and Cardonald had been looking into matters. Memories had started returning since Eva slew The Mother. They believed Envi might be trapped, though it was still unclear whose side he was on. The history discussed was grim: the Goliath Empire slew Perodika's parents and built a city on their bones. Wyrmdoom had been there for a few hundred years after the barrier went up. Envi had been part of the deals with the dark demons. + +The group needed a plan. The best course proposed was to infiltrate the Goliaths in the city and turn them against the dragons. Galimma, the Peridot Queen, then arrived and called herself a master spy. She offered to give information freely if the party agreed to leave her alone so she could go about her business, choose some mates, and live her life without threat. She was candid that she might kill the husbands and the odd person, shed some gold, and would not be evil but would not be good either. She promised to put a sign on her lair to notify people of the risk. + +Galimma gave information about Lortesh and Perodika's children and related dragons. There might be five left from the first coupling. Another of Lortesh's sons had a captive wife. The listed dragons included Emeredge in Askellon; Willowspra / Willow-wispa in Vahthell, described as the oldest daughter; Toxicanthus in Wyrmdoom; Rotwrake in Thundeya; and Verdigrim in Tradesmells. Three were described as twisted, with references to Lapis, Heady, and Plague. The army would attack Tradesmells, while the party and some others would head to Askellon, though the note preserves some uncertainty with "maybe." + +The party asked Blisterfoot whether any of the other rescued Goliaths were from the towns or members of the resistance. Blisterfoot returned with someone claiming to be part of the resistance in Ashkellon: Three Finger Dune Shwelter. This person, who had been sold as a slave, was one of Emeredge's dune dwellers. He had a communication device like a brick with black feathers. It flew to other birds, and he had to tell it to fly slower to stay quiet. Whenever the resistance tried to contact the outside, those who made the attempt ended up disappearing. Three Finger Dune Shwelter agreed to help the party find the resistance. + +Ruby Eye transformed Invar into a Goliath, while Geldrin became invisible. The party teleported to Ashkellon and arrived in the throne room, on [uncertain: Tazer]. On the throne was a dragonborn idly picking his nails. He was called Araks, was confused about why the party was there, and tried to leave to speak to his master. He was killed on the way out. The party put him back on the throne with a dagger in his back. The name Zekish was also noted in connection with this scene. + +The party exited the room. A scraggy female Goliath walked out carrying a pile of towels, and the guards let her through; others seemed to come and go regularly. The entrance to the throne room seemed to be storage, possibly for healing or similar purposes, associated with Emmeredge. A young boy came up the stairs carrying a tray of food for [uncertain: Arswales], apparently the dragon the party had killed. Minthwe cut him off duty in two hours. The party told the guards to leave them alone and went to the wash room. They told the Goliaths to take the dirty soap. The linen looked new, and one woman there seemed more nervous than the others. Her dress was larger than necessary. She had given birth a few hours earlier; the child had been taken, but she had hidden the baby in the linen basket. Emmeredge liked comedy and acrobatics. The baby was called Badger. + +The party called for the shift to end early. A guard went to get the rest of the workers, and the party walked out with them all. Every corner seemed to have a dragonborn guard. The group headed to the outskirts of the city, where there were fewer guards, and entered a building. They got in touch with the resistance through Dune Shwelter. The bird was coming that night, and they were to meet at the [uncertain: Gugghut] in four hours. Their next shift was in about eighteen hours. + +A large female dragonborn walked down the street and looked at the house. It was hard for people to remain in pairs. Dirk went out the back and saw a neighbour spying on the house. Sneaking around the house revealed people with axes and armour, surprised by the party. The female dragonborn turned into the Goliaths' queen lady, Anastasia, and the neighbours were with her. The party explained the plan. Anastasia said the barrier was weak and that they were speaking to her more. She gave Dirk a ring, Envi's fifth ring. By 15:00, the party could now attune to three of them. It was agreed that if they succeeded, the baby should be called "Badger born in freedom." + +The party teleported to a hole higher up in the tower to try to rescue Envi, zooming up the soft tower. An old bird's nest seemed to have been pushed aside for a landing spot. Dirk saw elders whose minds seemed to be on repeat. The party headed upstairs. One room was decorated with Goliath skulls in arches, with old coins dotted around. The sight gave them chills and suggested it might once have been a dragon lair, perhaps connected to Lortesh. Morgana inspected the coins and found one larger than normal currency, a Goliath coin marked "Domain of Pengalis" at the top. Dirk heard a low moan from the wall; all the skulls had been skinned alive. + +On the next floor, Invar heard a voice say, "you wear the ring of the betrayer - I can help." In the reflection in the ring, a featureless woman took damage. Another floor was alarmed and had a barracks-style antechamber. The next room was filled with beds and chests, though the chests were oddly empty. A side room contained statues of five gods, but "Goliathified." The statues or figures were Seara, Scorcher, Shielded [uncertain: armel] / Tor, a nondescript elven-like figure sculpted as though the maker did not know who they were sculpting, and a lion-headed figure. Inscriptions named Sefu, "for the justice for the Hunt"; Holdhum, who "guides our hands & warms our hearts"; Tor, who "Protects"; the lion-headed Attabo, "from the stories the people of the cats told"; and El [uncertain: corna] / Bridge, "to keep our peoples free." Offering bowls stood before the statues. + +Geldrin added a tower's penny to Bridge's bowl. The statue's head moved to look at Geldrin, and words came: "This place is safe." Morgana added nip to Attabo's bowl and heard, "A drug to dull the loss." Geldrin added Brass City platinum and heard, "A payment made." At Seara's bowl, Lortesh's scale or hair of Nature was highly pleased, and the party heard that the hunt would be successful, but betrayal was at hand. Footsteps went up the stairs. + +Morgana etched a symbol to Igraine and offered a bottle of cider. The cider emptied, and words came: "do not trust him - I did - he promised me tribute & Never received." Morgana offered another drink and saw a vision of lying in a field of white roses, with children's laughter and the chuckling of a dwarf man and an elf, perhaps [uncertain: Adilth]. A dragon soared above with no barrier. A pregnant elven woman appeared. The message continued that he made a statue to the speaker and the image of another in his home, promised things, but chose the easy path because the speaker could not give her life back. He promised things for her life, came to an arrangement, and took a darker path. An elderly human man looked sad, rubbed his beard, and the vision returned to the room. + +The party found what might have been a royal room, mess hall, or honoured guard space. Old pictures hung on the wall, one out of place: Benu / Guradwal / a goat-headed sphinx. On the back, it was dedicated to the Warriors of the Lion from the Dunemin. The backing and canvas came apart, revealing two large feathers tied at the top with orange and blue feathers and beads. The feathers were given to Geldrin. A kitchenette had a chimney that seemed to go to daylight through a communal chimney. + +At Tor's statue, the party added a note with "Badger born in freedom" to the offering bowl and heard, "Tor Protects all." They put a cloak in the fire in Stitcher's bowl. Smoke showed an image of Ruby Eye and Lute talking about hot hands; Lute said, "tell you what I'll make you all cloaks." The words came: "A gift crafted for a friend is the key to it all." The party felt solace. There were no spirits in the main room. + +Morgana investigated through the fireplace. On floor 25, two floors up, she found a lavish bedroom that looked recently used, an antechamber, and crystals, red and blue. On floor 28, another bedroom had an air [unclear: december] feel, with a red crystal [uncertain: in fire?] and a blue crystal on the wall. A rug showed a dwarf holding a dragon's head; one of the dwarf's eyes was bleeding, and a Goliath touched his shoulder. Also on floor 28 was a library-like room with an ornate map of the Pentacity slates and a red dome above. Towers were marked at ground towers, here, a gap in the sea, and a palace approximately where Shousorrow is. A dragonborn in orange and blue robes emerged from a bookcase, accompanied by a Goliath carrying books on his belly in a hunched posture that made him look as if he were on his knees. + +On floor 30, the area was covered in Goliath faces with eyes scratched out. The floor was covered in coins. The walls were transparent from this direction, though they had not been from outside. Four dragonborn played cards, apparently with armour welded into their scales, and had four ornate swords. Morgana felt a great evil from the floor below, similar to the feeling when cleansing Azureside. She then saw a field of white flowers and felt solace. Morgana returned and told the party what she had seen. The group headed up to floor 24. + +Morgana saw a corridor on that level: a long corridor ending in a fireplace. The first left had two guards and heavy breathing from something around the corner. The first right had similar guards and something human-sized but large and asleep, hunched [unclear: between?], while quiet [uncertain: giggling?] could be heard. There was a purple glow, two sets of feet, female giggling, and two dragonborn guards. The second left had a barrier, looked empty, and its door was alarmed. The second right had a barrier, hooves behind it, and two guards above. A pair of green dragonborn went down the stairs two or three floors. Four copper pylons created a barrier around something made of air. It asked to be let out and said it would help the party. The guards had a wheel to open the dome. Hephestus read Morgana's mind and said not to let it out. Hephestus wanted to clean the land. + +The party investigated the prison rooms. Behind the second right were two dragonborn with glowing axes and a goat man walking backwards and forwards in the dome, saying, "lets us done this for so long" [unclear]. Behind the first left were guards with vicious barbed whips and a sphinx with a goat head. Behind the first right were guards and cracked mirrors. An elven woman with buttercups in her hair and copper hair stood rocking slightly and laughing. A locked door was behind the party. + +On floor 25, a door at the top of the tower opened. There were six doors. Willow-wispa was coming; the notes record "mum's told" and the sequence sword / shield / axe / tower / book / bridge / axe, with writing [uncertain: been?] to come. The party locked the door behind themselves while others were sleeping and talking. There was another hour before the shift started, and the guards were bored. + +On floor 26, someone walked toward the door, so the party ran up to floor 27 and saw a Goliath walking out with a tray. They went into the floor 27 library. Slen the librarian was there. Two guards entered, called someone "The Exiled," and said they were not allowed up here, not with Willow-wispa, because Calameir was coming. The party killed the guards. They browsed the library, threw a romance book to Blisk, and took a few books from each section. They found a poem about Valentenhide's fall similar or word-for-word to the one found in Dumnenend. About eight guards went upstairs. Dirk retrieved bone chips from the two killed guards, each etched with a dragon and one on them; these were dragon currency. Ten minutes later, three sets of steps tried to come downstairs and entered the room. One had the wand totem brought from the sister in Dumnenend. Dirk saw Joy, who said she was sorry, that "they've got him," and that the party should go now. The party thought "him" was Ruby Eye. + +Morgana had five goodberries. The party went up to the 28th floor. They found a teleportation circle and two domes: one with Ruby Eye in it, and another with two ghost figures, Emri and Joy. Ruby Eye was an illusion. Emri's dome seemed to have a leak. He requested the skull of Treamon and did not answer questions about the rings. Ruby Eye dispelled the magic keeping him trapped and taught the party the rings as proof it was him. The rings activate in "the Barrier" so Joy cannot leave. Ruby Eye said the party did not understand the sacrifices he and Joy's mother made to keep Joy safe. His pacts with Kashe were his downfall. The party asked why Joy needed to live eternally and why so many sacrifices needed to be made for it. + +On the 29th floor, new carvings of scorpions, Tellfether, and other details were present. Evil could be sensed from the door. The party entered the room. Purple crackling energy surrounded a ten-by-ten-foot green blob dripping in the middle. Two figures were around it: a medusa and a statue figure. Also present were a child of the Mother with a worm and an eyeless dog. Bronze and a telescope like Emri's stood at the back of the room, with a painting clockwise on the wall. A shield spell appeared on the floor and shielded the party. A health pipe on the narrator's belt healed people. A coin appeared in Thuvia's hand and got rid of the dragons. Dirk's sword grew flames. + +A dragon vision on the ceiling showed dragons terrorising the town. The party used the coin from Bridge, and all but the fat dragon vanished. Geldrin used Treamon's skull to cause a meteor strike on the dragon and the town. The party activated the shield with the coin. Brother fracture used to do shield disappeared [unclear], and the Goliaths in the city all gained weapons and shields and healed slightly. As the blessings activated, a tiny hole became noticeable in the barrier. Emmeredge died. Noxia smashed the floor, broke two floors, and the party fell down through Emri's floor. A book in Geldrin's bag hummed, and Kesha wanted to help at no cost now, but Geldrin did not take the offer. The party killed the Noxia Beast avatar. + +The party spoke to Cardenald. Tradesmells was totally empty: no dragons and no Goliaths. Ruby Eye was missing. They checked on Emri, who was still imprisoned. Cardenald spoke to him and said he was not complete; bits of his soul were missing, including guilt and misery, and possibly sorrow, compassion, Joy, and mercy. The formation of the barriers was not the only thing the elves learned. They also tried to remove other parts of their souls in an effort to perfect themselves. The large man under the mountain was described as a battery. Benu's other kin was named Trixius. The party headed down to the prison rooms. Notes also recorded Treamon's skull with week / charge / cooldown [unclear]. + +Hephestus's door had a ninth-level Banishment on it. The goat-headed sphinx was Trixus, an elemental of light. The elf lady was a copper dragon, possibly metallic and good according to childhood chants. The goat man was Thromgore's boy, Steven, with Shuert locked up elsewhere. Emri had put Steven here; Steven had helped to contain Valentenhide. Steven just wanted to "Bob stuff" and seemed sincere. He had been imprisoned for one thousand years. The elf / dragon had not been there long. + +The dragon lady was hungry. The party opened the barrier to give her food, and she did not try to escape because the barrier made her safe. She said "he's gone now" and seemed sad. The guards said he was dead, or that he had gone recently; the name Lorleh was noted. She asked whether the party had seen her boy. She did not know why she was there and had eaten about one week earlier. The party let her out and gave her food. They found a maggot in her ear and removed it. She uncontrollably cried and remembered everything. She was a copper dragon from Snow Screen, which is now Snow Sorrow. She used to play with the king and queen's son in Snow Screen. The names [uncertain: Ice fang] and Atlih were noted. Gold dragons were also mentioned. Verdugrim was said to be his or Lorleh's son, "the tarnished," and had bred [uncertain: all?] Verdugrim's dragonborn and Goliaths. Eveline Heathsall, called Mama, was betrothed to Argentum and became a Heathsall. Igraine had come to the copper dragon while she was sleeping and said she was lucky she was not captive anywhere else, because Igraine could not speak to her somewhere else. Ice Fury was approximately thirty to forty years older than her. + +The party went to see Trixus, Benu's little brother. He was asleep, and loud noises did not wake him. They opened the barrier. Trixus had four brass rings on each paw. The runes on the rings read: "A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind." Shuert came through the portal, fell through to the library, came to find Steven, and promised he had Ruby Eye. + +The party checked the treasure hall. It contained lots of Goliath currency, Brass City currency, Dumnen currency, and massive triangular coins of Snow Sorrow. One coin showed a female sphinx resting its hand on a dragon. The party took the copper dragon down and put Trixus's hand on her head. He briefly stirred with recognition but stayed asleep. + +In the library, the party found a book on Benu, Garadwal, and Trixus, described as the last three of Altabre's children who walk on the earth. They came from Fire. Gardwell looked after the Dumnens and enjoyed the gifts. Igraine gave them the gifts to heal their people. Trixus helped create Brass City. The tabaxi were confused and lost, and Trixus helped them; they became industrious and proactive in creating things. It was not clear where the brass came from, perhaps a blessing from [uncertain: Shulcher]. Benu was protector of the elves and helped construct the great tower, but did little protection, instead seeming to train them in art and poetry until they became obsessed with it. Benu saw errors in its ways, eventually left for an unknown reason, and hid. The historian seemed to be waiting to be noticed to get a protector. The book mentioned knowledge of five sphinxes and was dated 700 BD, with a note about returning to Altabre. + +Geldrin placed a Snow Sorrow coin into Altabre's offering bowl. A white creature came in and destroyed the city; a female sphinx came out and laid a hand on its head, and both disappeared. The sphinx disappeared in sparkles, while the white dragon remained as the vision ended. The words came: "The father wishes freedom for all his children." The statue seemed to look at Geldrin. The party wondered whether the sphinx turned into the dragon and what the symbolism of the shield and Trixus meant. + +In an observatory room, the party found a flesh-crafting wand and many books. One book, written by a Goliath, concerned Noxia wanting to walk on the earth and the study of what Noxia left behind in the fight between Noxia and Sierra. Drops of Noxia's blood corrupted the earth and ensured things did not grow. Dragonborn forces were leaving the city and going to the Earth Waker side. The party decided to go to Bleakstorm at 17:30. + +When they teleported outside Bleakstorm, blizzards surrounded them. They arrived outside the castle, about ten minutes' walk away. A citizen walked past and said it was a pleasure to see more visitors. They approached the partially ice dwarf guarding the castle, along with a strapping Goliath. The portraits were an illusion and one was real. Lord Bleakstorm had been there but apparently left. The place was being attacked by ice elementals. Altwares had been happening since the leaders left about one thousand years ago. The half-elf was originally from Everdard, and the party did not know how this worked. + +A device detected time and noted that Dirk was missing a day. Bleakstorm had been cursed and blessed. The half-elf said he existed only because of Bleakstorm and that Bleakstorm was there when they were set free. Bleakstorm had made a deal with both a good and a bad person. The half-elf seemed to know all the party and their feats and said five was a good number. When the party called him out as Lord Bleakstorm, they appeared next to him in a throne room surrounded by many pictures. The pictures showing acts before the barrier all seemed to show the same person. + +Bleakstorm said he had broken some rules by coming to see the party, and that he could not break them except on occasion. The party requested sanctuary for their dragon friend. He recognized her and needed to look into her name. He would not forgive Emri, because Emri took away his only friend and had entrusted him despite Bleakstorm saying no to it. It was not the dragons who took him; he was tricked into releasing his friend. Bleakstorm often trusts his god, which she appreciates. The party had promised the elementals they would free his friend, [uncertain: leechus]. He warned that trips outside the barrier could be difficult. + +Bleakstorm reported that Perodita was heading to Heathwall. Bridge's sister was nasty trickery, perhaps [uncertain: Atana] / Valentenhide. The party had seven hours before Perodita reached Heathwall. Bleakstorm could send people back in time, but there was a cost. Ruby Eye was out of his sight. Trixus had been given a task he was not going to achieve. The party sent a message to the Basilisk about Perodita heading to Heathwall, but Bleakstorm did not send the party outside the barrier. Gardwal was getting stronger inside the barrier at Gravel Basers. The party had one hour and thirty-five minutes. + +The party asked whether they could free Perodita. Bleakstorm said they would need to ask Bridge. They went through a doorway onto an invisible walkway. When the door reopened, there were clouds. The clouds transformed into a female face. The party proposed freeing Perodita. The face seemed to like the idea and requested that the party pay homage to her. If they agreed to release Valentenhide, she would ensure Valentenhide adhered to the god rule. She granted the party's idea, and they appeared at Heathwall, where they saw Perodita vanish. + +The party headed over to Heathwall and spoke to Lady Parthabbit. Lady Heathwall was not in; she had gone airwise to help the party with the battle heading to Emmerave. The party resent a message to the Basilisk. T.J. Boggins was still there, eating meat and watching opera. Jin Woo was absent. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Dirk, Cardonald / Cardenald, Ruby Eye / Rubyeye, Goliath elders, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, the leader of the sickly Goliaths, Blisterfoot, Eva, The Mother, Envi / Envy, Perodika / Perodita, Galimma the Peridot Queen, Lortesh, Emeredge / Emmeredge, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Three Finger Dune Shwelter, Araks, Zekish, the scraggy female Goliath, [uncertain: Arswales], Minthwe, Badger, Anastasia, Lortesh, Pengalis, Invar, the featureless woman, Seara, Scorcher, [uncertain: Shielded armel], Tor, Sefu, Holdhum, Attabo, El [uncertain: corna] / Bridge, Geldrin, Morgana, Igraine, [uncertain: Adilth], the elderly human man in the white-roses vision, Benu, Guradwal / Garadwal / Gardwal / Gardwell, the goat-headed sphinx, the Warriors of the Lion, the Dunemin, Lute, Shousorrow, the orange-and-blue-robed dragonborn, the book-carrying Goliath, Hephestus / Hephestos, Slen the librarian, The Exiled, Calameir, Blisk, Joy, Emri / Emi, Treamon / Tremaion, Kashe / Kesha, Tellfether, the medusa, the statue figure, the child of the Mother, Thuvia, Brother fracture, Noxia, the Noxia Beast avatar, Trixius / Trixus / Tixun, Thromgore, Steven / Steve, Shuert / Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Ice Fury, Eveline Heathsall / Mama, Argentum, Altabre / Attabre, [uncertain: Shulcher], Sierra, Earth Waker, Lord Bleakstorm, the partially ice dwarf, the strapping Goliath, the half-elf from Everdard, [uncertain: leechus], Bridge's sister, [uncertain: Atana] / Valentenhide / Valentenhule, Basilisk / Basalisk, Lady Parthabbit, Lady Heathwall, T.J. Boggins, and Jin Woo. + +Groups and factions mentioned include the party, the council, the Goliath Empire, dark demons, Goliaths in the city, dragons, Lortesh and Perodika's children, twisted dragons, the army attacking Tradesmells, the Ashkellon resistance, Emeredge's dune dwellers, dragonborn guards, Goliath workers, neighbours allied with Anastasia, elders whose minds were on repeat, the gods represented by Goliathified statues, spirits, dragonborn with armour welded into their scales, guards with glowing axes, guards with barbed whips, dragonborn forces, Goliaths of the city, elves who learned soul-removal techniques, gold dragons, copper dragons, Verdugrim's dragonborn and Goliaths, tabaxi of Brass City, Dumnens, elves under Benu, five sphinxes, ice elementals at Bleakstorm, elementals promised freedom, and Heathwall's forces heading airwise. + +Places mentioned include the large council tent, Wyrmdoom / Wormdoom, Askellon / Ashkellon / Ashkhellion, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Emeredge's city, the throne room, [uncertain: Tazer], the wash room, the outskirts of the city, the resistance building, the [uncertain: Gugghut], the soft tower, the old bird's nest landing spot, the skull-arched room, the possible dragon lair, the Domain of Pengalis, the alarmed barracks floor, the statue room, the royal room / mess hall / honoured guard space, the Dunemin, the kitchenette and communal chimney, floors 24, 25, 26, 27, 28, 29, and 30 of the tower, the lavish bedroom, the library-like map room, the Pentacity slates, the sea gap, Shousorrow, the prison rooms, Dumnenend / Dumnensend, the teleportation circle, Emri's prison floor, the Noxia chamber, the treasure hall, Snow Screen / Snow Sorrow, Brass City, Fire, the great tower, the observatory room, Bleakstorm castle, Everdard, the throne room at Bleakstorm, outside the barrier, Gravel Basers, the invisible walkway, the clouds / Bridge encounter, Heathwall, and Emmerave. + +Creatures and creature-like entities mentioned include the fat-bellied dragon in Dirk's dream, dark demons, the black-feather communication bird, dragonborn, Goliaths, the baby Badger, the featureless woman reflected in the ring, the lion-headed god figure, the dragon in the no-barrier vision, the four card-playing dragonborn with welded armour, something made of air in a barrier, the goat man, the goat-headed sphinx, the copper-haired elven woman / copper dragon, the medusa, the statue figure, the child of the Mother with a worm, the eyeless dog, the fat dragon in the dragon vision, the Noxia Beast avatar, Trixus the elemental of light, Steven the goat man, the copper dragon from Snow Screen, gold dragons, the female sphinx on Snow Sorrow currency, the white creature / white dragon in the Altabre vision, and ice elementals. + +# Items, Rewards, and Resources + +Items, currencies, and physical resources mentioned include Envi's fifth ring given to Dirk, the brick-like communication device with black feathers, the dagger placed in Araks's back, towels, dirty soap, new linen, the linen basket where Badger was hidden, axes and armour held by Anastasia's neighbours, old coins in the skull room, Goliath currency marked Domain of Pengalis, empty chests, offering bowls, a tower's penny, nip offered to Attabo, Brass City platinum, Lortesh's scale / hair of Nature, the bottle of cider offered to Igraine, the out-of-place picture of Benu / Guradwal / goat-headed sphinx, the two large feathers with orange and blue feathers and beads, the note reading "Badger born in freedom," the cloak burned in Stitcher's bowl, red and blue crystals, the dwarf-and-dragon-head rug, the ornate map of the Pentacity slates, coins covering floor 30, four ornate swords, four copper pylons, barrier-opening wheels, glowing axes, barbed whips, cracked mirrors, the romance book thrown to Blisk, books taken from each library section, the poem about Valentenhide's fall, bone-chip dragon currency from killed guards, the wand totem from the sister in Dumnenend, five goodberries from Morgana, the teleportation circle, Treamon's skull, the rings taught by Ruby Eye, bronze and a telescope like Emri's, the coin from Bridge, Thuvia's coin, Dirk's flaming sword effect, the health pipe on the narrator's belt, Geldrin's humming book, the skull charge / cooldown note, Trixus's four brass rings on each paw, Goliath currency, Brass City currency, Dumnen currency, massive triangular Snow Sorrow coins, the Snow Sorrow coin with a female sphinx and dragon, the book on Benu, Garadwal, and Trixus, the flesh-crafting wand, the book on Noxia, and the time-detecting device at Bleakstorm. + +Spells, blessings, visions, and magical effects mentioned include Ruby Eye transforming Invar into a Goliath, Geldrin becoming invisible, teleporting to Ashkellon, Anastasia transforming from a female dragonborn to the Goliath queen lady, Anastasia sensing the weakened barrier, attunement to three of Envi's rings, elders' minds repeating, the ring-reflection voice of the featureless woman, the alarmed floor, Goliathified god statues reacting to offerings, Bridge declaring the place safe, Attabo accepting nip, the Brass City platinum as payment, Seara / Nature declaring the hunt successful but betrayal at hand, Igraine's cider vision of white roses and past betrayal, Tor's protection blessing, Stitcher's smoke image of Ruby Eye and Lute, the statement that a gift crafted for a friend is the key to it all, Morgana's fireplace scouting, transparent walls on floor 30, Morgana sensing great evil and then seeing white flowers, copper-pylon barriers, Hephestus reading Morgana's mind, ninth-level Banishment on Hephestus's door, the Slumber version of Imprisonment on Trixus, the copper dragon's memory returning after a maggot was removed from her ear, Altabre's offering-bowl vision, Noxia's blood corrupting earth, the blizzard at Bleakstorm, time detection showing Dirk missing a day, Bleakstorm's cursed and blessed state, time travel with a cost, and Bridge's cloud-face granting the proposal to free Perodita. + +Strategic resources and communications mentioned include the plan to infiltrate the Goliaths and turn them against the dragons, Galimma's information bargain and promised lair warning sign, the army's attack on Tradesmells, Three Finger Dune Shwelter's resistance contact, the resistance bird meeting at the [uncertain: Gugghut], Badger's proposed freedom name as a morale or symbolic sign, the tower's internal map and prison layout, the gods' offering bowls as sources of protection and information, the small hole in the barrier noticed after the blessings, the Goliaths gaining weapons, shields, and slight healing, Shuert's promise that he had Ruby Eye, the observatory books on Noxia, the decision to go to Bleakstorm, Bleakstorm's intelligence on Perodita, Heathwall, Ruby Eye, Garadwal, and time travel, the message sent and resent to Basilisk, and Lady Heathwall's movement airwise to help with the battle heading to Emmerave. + +# Clues, Mysteries, and Open Threads + +Dirk's Goliath-and-fat-bellied-dragon dream suggested a link to the dragons or Goliaths, but its source and meaning remain unknown. + +Memories were returning since Eva slew The Mother. Envi might be trapped, but whose side he is on remains uncertain. Envi was also part of deals with dark demons, and his fifth ring is now with Dirk. + +The Goliath Empire killed Perodika's parents and built a city on their bones. Wyrmdoom remained there for centuries after the barrier went up. How this history connects to current Goliath sickness, the dragons, and Perodika's own path remains central. + +Galimma / the Peridot Queen offered useful information while openly negotiating for freedom to take mates, possibly kill husbands and the odd person, and live neither good nor evil. Her reliability, boundaries, and future threat level remain unresolved. + +The dragon family list preserves many uncertain or variant names: Emeredge / Emmeredge, Askellon / Ashkellon, Willowspra / Willow-wispa, Vahthell, Toxicanthus, Wyrmdoom, Rotwrake, Thundeya, Verdigrim / Verdugrim, Tradesmells, Lapis, Heady, and Plague. Their exact identities, locations, and relationships to Lortesh and Perodika should be preserved carefully. + +Resistance members trying to contact the outside disappeared. Three Finger Dune Shwelter's black-feather communication brick may be vital, but the cause of the disappearances is not known. + +Araks and the name Zekish are attached to the throne-room killing, but the exact identity of [uncertain: Arswales], the relationship between Araks, Zekish, and Emmeredge, and the political consequences of leaving Araks dead on the throne remain unclear. + +Badger, born in captivity and hidden in a linen basket, became a symbol through the proposed name "Badger born in freedom." Whether the child remained safe after the party's actions is not recorded. + +The skull arches, skinned-alive Goliath skulls, Goliath currency of Pengalis, and possible Lortesh dragon lair suggest old atrocities in the tower. The party did not fully resolve who made the skull display or why the skulls still moaned. + +The ring voice addressed Invar as wearing "the ring of the betrayer" and showed a featureless woman taking damage. This may connect to Valentenhide / Bridge's sister or another betrayed figure, but the identity is unresolved. + +The Goliathified statues and offering responses produced multiple clues: Bridge declared safety, Attabo framed nip as a drug to dull loss, Seara / Nature warned that betrayal was at hand, Igraine warned not to trust someone who promised tribute and chose a darker path, Tor protects all, and Stitcher said a gift crafted for a friend is the key to it all. The intended targets of these warnings and the "gift crafted for a friend" remain open. + +The white-roses vision included a dwarf man, an elf perhaps [uncertain: Adilth], children, a no-barrier sky, a pregnant elven woman, a sad elderly human man, and a bargain for a life that turned darker. The identities of the figures and their link to Igraine, Emri, or the barrier are uncertain. + +The out-of-place picture of Benu / Guradwal / goat-headed sphinx and the Warriors of the Lion from the Dunemin hid two large orange-and-blue-feathered relics. The feathers' full purpose remains unresolved, though later one feather functioned as communication with Garadwal. + +The map of the Pentacity slates, red dome, ground towers, sea gap, and palace near Shousorrow may be a strategic map of barrier infrastructure or old power sites. Its exact reading remains open. + +The prison rooms contained air, light, goat, sphinx, dragon, mirror, and other entities behind barriers. Hephestus wanted to clean the land but read Morgana's mind and warned not to free the air entity. Whether Hephestus can be trusted is unresolved. + +Willow-wispa was coming, Calameir was coming, and someone was called The Exiled. Their roles in the tower hierarchy remain unclear. + +The poem about Valentenhide's fall matched the one found in Dumnenend, implying a wider shared tradition, warning, or historical record. + +Joy warned that "they've got him" and that the party should go, probably referring to Ruby Eye. Ruby Eye was then missing after the battle. His location and captors are unresolved. + +Emri requested Treamon's skull, would not answer questions about the rings, and was missing pieces of his soul. His guilt, misery, sorrow, compassion, Joy, and mercy may have been removed or separated. Trixus may be needed later to restore them. + +Ruby Eye said his pacts with Kashe were his downfall and that sacrifices by him and Joy's mother kept Joy safe and eternal. Why Joy needed eternal life, whether she can leave the barrier, and what those sacrifices cost remain unresolved. + +The Noxia chamber, green dripping blob, medusa, statue figure, child of the Mother, worm, eyeless dog, telescope, shield spell, health pipe, Thuvia's coin, Bridge coin, and Treamon's skull all interacted during a major battle. The party killed the Noxia Beast avatar and Emmeredge died, but Noxia's larger status remains open. + +Activating blessings gave Goliaths weapons, shields, and healing, and revealed a tiny hole in the barrier. The significance of the hole and whether it can be expanded or exploited remains unknown. + +Tradesmells was totally empty of dragons and Goliaths, while Ruby Eye was missing. What emptied Tradesmells and where its people or dragons went remain major open questions. + +The elves learned not only barrier formation but also the removal of soul-parts in an attempt to perfect themselves. The large man under the mountain being a battery is an important clue that remains unexplained. + +The copper dragon from Snow Screen / Snow Sorrow remembered after a maggot was removed from her ear. Her boy, Lorleh, Atlih / Ice Fang, Ice Fury, Eveline Heathsall, Argentum, Igraine's ability to reach her, and Verdugrim's breeding of dragonborn and Goliaths all need later preservation. + +Trixus, Benu's little brother and Altabre's child, remained under Slumber Imprisonment despite barriers being opened. His rings identify Altabre as Protector of Brass City and first of his name, fifth of his kind. The "father wishes freedom for all his children" vision suggests Altabre wants the sphinxes freed. + +The histories of Benu, Garadwal, and Trixus show flawed protectors: Garadwal with the Dumnens, Trixus with Brass City and the tabaxi, and Benu with the elves and the great tower. Benu's departure and hiding remain unexplained. + +Noxia's blood corrupted land after a fight with Sierra and caused things not to grow. This may connect to earlier poisoned or cursed lands. + +Bleakstorm detected Dirk missing a day. The missing day, Bleakstorm's deals with a good and bad person, and his ability to send people back in time at a cost are unresolved. + +Bleakstorm will not forgive Emri for taking away his only friend after being told not to entrust him. The friend, [uncertain: leechus], and the promise to free him remain open. + +Perodita was heading to Heathwall, Garadwal was getting stronger at Gravel Basers, Ruby Eye was out of Bleakstorm's sight, and Bridge agreed to help free Perodita if the party agreed to release Valentenhide under the god rule. Perodita vanished at Heathwall, and Lady Heathwall had gone airwise toward Emmerave. + +T.J. Boggins remained at Heathwall eating meat and watching opera, while Jin Woo was absent. Their immediate relevance is not stated. diff --git a/data/4-days-cleaned/day-43.md b/data/4-days-cleaned/day-43.md new file mode 100644 index 0000000..cd7b492 --- /dev/null +++ b/data/4-days-cleaned/day-43.md @@ -0,0 +1,150 @@ +--- +day: day-43 +date: unknown +source_pages: + - 179 + - 180 + - 181 + - 182 + - 183 + - 184 + - 185 + - 186 + - 187 + - 188 + - 189 + - 190 +complete: true +--- + +# Narrative + +Day 43 began after a restful night's sleep. The party headed for breakfast. All the wizards seemed to have been called back to Grand Towers, and more and more people were finding lost documents. Memories or information had started to come back about a week earlier, aligning with the party killing The Mother. + +Goldenswell was still out of sorts after the kidnappings. Two kobolds were now in the city, one of them a lieutenant who had travelled from airwise and whose story was similar to the party's. The party met his lieutenant, Grimby the 3rd. Grimby had once worked for an evil wizard and had been helped by adventurers to escape. The wizard had been capturing woodcutters for her army; the name Klesha was noted, and the Basilisk had told the party about them. A lovely Envoy had come to Grimby and taught him how to kill his townsfolk. The Envoy may have been a dragon, described as silvery green. Grimby woke up at Pine Springs in the snow, ran off because of a huge bird sparkling with electricity, and then ran into the forest. He had been kidnapped because he used to sleep on top of his mother. The place he came from had many words, the same as Harthall. There had been a door in one of the rooms with a goat man in it, but the goat man was gone when he left [unclear]. The name Shriek was noted uncertainly. + +The party also discussed Wroth. Wroth trapped Envy when he trapped Mama Harthall, because Envy was in Mama Harthall's head the same way he is in Ruby Eye's. Geldrin found a disintegrated scroll in Jin Woo's room. On the back was written: "In her gaze, End of Days." Morgana found an auction house receipt for a large picture frame with a massive moth. She also found or noted a chess board with the wizards as carved pieces; one rook looked like [uncertain: brakemen]. The pub was called "11th Duke of Harthall's wife." A moustached fat man was there with a very good-looking raven-haired half-elf on his arm. Near the Cathedral of Attabre was an ominous church with the sign "Lord Argenthum's Rest." + +A dwarf blacksmith pulled Invar aside and said it was good to see others looking around. He said they were there for other reasons, not just to sell wares, and gave Invar a box. A golden dragonborn had tomes about places they had only just discovered: Ashkhellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, and Last Past Airwise. Invar opened the box slightly. It glowed bright and warm, and he closed it to open fully later. + +A crowd gathered around a vulture man with a glass box containing a glowing open book. The party queued to see it. The person at the front was an elf with bushy ear-ends. Morgana asked where Ruby Eye was, but nothing happened. When she asked who could help find Ruby Eye, the book drew a pale dwarf with black dreadlocks and a crown, but the words beneath were smudged. The book warned: "One more glance a death dance." Geldrin asked how to exile Trixus. The book showed Benu, Trixus, and Garadwel, with two sphinxes behind them and the words "a family reunited" underneath. One figure was only an outline. Geldrin then heard a whisper in his ear: "one brief look - last breath look." He turned and saw a featherless woman reflected in Invar's armour, then collapsed to the floor. Valentenshide was noted. + +The book was written by Benu, and there were five books in total: Goldenswell, Snowsorrow, Dumnensend, Freeport, and Harthall. When the party asked the book for the location of papael'munsera, the page was blank. The party also learned about tote dwarf civilization: second came the dwarves, first of logs and five of the deep, with three great cities of each. Many had been lost over the years, but each still existed. Benu's family names were listed as a missing unnamed one, Anadreste, Benu, Gardwel with the name hidden on the page, and Trixus. The vulture man, or a force through him, said "in her stare honey laid bare," though he did not remember speaking. + +The party asked what was on page two. The elements seemed to clash; a bright light rose from the page and left a black hole, while many different elements appeared and converged into the world the party knows. The last page showed "The End," then the repeated death-rhyme: "one more glance a death dance," "one brief look last breath look," "In her stare Bones laid bare," and "in her gaze the end of days." The book slammed shut, which it had never done before. This reminded the party of Dumnensend and a children's poetry book. Morgana had the book whose last poem was that one; the second-to-last was a council meeting with plans to take out Valentenshide. + +The golden dragonborn searched for dwarven lost cities and found two books written by a scholar, Lord Hawthorn, who was extracted from civilization after the death of Princess Maesthon and [uncertain: Grin gray] / [uncertain: Atltrino]. The location was in one volcano. Each book referenced the other city, and neither referenced a third. The books referenced the author's friend Ruby Eye, who was married to a princess of Grincray, but written so the reader would not believe she was really a princess of Grincray, described as a princess of the lost ones. Morgana asked a [uncertain: Shutiny] to speak to the Chorus of the Kings about the location of Grim & Cray. The answer was that the door was the entrance to both cities. + +The dragonborn found a book on Hawthorn. Hawthorn was a botanist, and it was unclear why he wrote about dwarves or [uncertain: otres]. The biography was written by Ruby Eye but borrowed 94k, and Hawthorn was one of the first people who left, [uncertain: 90] years ago. He developed giant bees and winter-flowering plants, bred some animals at the Menagerie, created winter rose, and may have gifted a blossoming tree to Goldenswell. + +The party returned to the castle to wait for the bird. They decided to open Invar's box. It contained a small black orb where lava stone went through the racks, and snake heads as eyes. It did not respond to Morgana's attempt to speak with it, but it spoke many languages. It said it had been in the box for one min moon, 300 days. Icefang said the party could release him. The name papa'e munera was given; the orb was only part of him. It knew where the rest of him was and would take the party there to free him and [uncertain: unrasorak]. It was blessed by Anadreste. Friends had extracted him from the lake. The dwarves had seen the errors of their ways and now wanted to release him. Ruby Eye was no longer welcome at the city, and the king there was pale-skinned with black dreads. + +Shurling arrived. The Chorus knew where the entrance to Grincray was, but they needed to go through Mashir. The flesh-crafting wands were discussed; something was still out there stopping all of the lost knowledge from being retrieved. + +Lady Harthall appeared. She had gone with forces from Dumnensend to defend near where the party had been fighting, where many "dragonborn" were defending. Emeraire Hartmor araltar thought Bridlator was going to attack Harthall, and she had done so before she disappeared. Lady Harthall had started remembering things. She remembered Icefang more clearly and that he cared for her. She and Icefang both assaulted Perodita; Icefang was starting to lose his mind. Perodita had appeared unexpectedly for her youth. When the party told Lady Harthall about the copper dragon and Snow Sorrows, she had a big flash of recognition and remembered gold dragons. They told her about Jin Woo. Grand Towers were done. + +The Menagerie was then discussed. The mages who worked there had not returned to Grand Towers and had locked the Menagerie down; no one could get in. It used to be the mage school. Emi's apprentice was a dark-skinned elf. Joy did not like him, and Mr Browning also did not like him. Browning was described as a nice man, though the note adds that this is not what the party has seen. Storms were bad in the latest reports. Heathmoor plagues were very bad. The land was healing, but the people were not, and the plagues did not share similarities with barrier sickness. News from a rear Ironcraft air site said a tradesman went to pick someone up but that person had "disappeared." The guilt was Emi's guilt. + +Lady Harthall also discussed Goldenswell. The Earl needed to be fair and acceptable, but about eight weeks earlier he had pulled his armies and left Harthall in the lurch. In Claymeadows, the believers had killed her niece. Lovely Brooching was someone Harthall would like to see replace the Earl of Goldenswell. Harthden had been demolished by giants. The situation made it difficult to rally Threepaws to anything. Strategic options included rallying forces from Goldenswell, Snow Sorrow, and the dwarves; finding out what was happening with Grand Towers; and using Garadwal's feather to speak to him. The feather was a one-person walkie-talkie. + +The party tried to speak to Garadwel through the feather. It vibrated, and there was a chill in the air. Garadwel called them his allies and said they had come to see the errors of their ways. He said "he" had kept them here, that the barrier was his, that the betrayer sat amongst them, perhaps the daughter, and that Mother had been a useful ally. Only the cause mattered. Only one more remained: Anroch or the Grab [unclear]. His friends had trapped him. Everyone had been against him before he convinced the vessel. He asked where his brother was, and the party told him to help bring down the barrier. He had trapped the mages. The fifth sphinx was father. Once the barrier was down, all wrongs against him would be rectified. + +Garadwel said people did not build things as he taught them and instead ran off to live like primitives. Benu failed because he abandoned his post. Trixus, by contrast, did not fail because he did not abandon his post. The party or narrator addressed "Dad" and told Garadwel that the vulture men were back at Dumnensend and that Hephestos was still alive. + +A quick update came by sending stone: the Grand Towers dome was down, and Garadwell had probably gone to Ashkhellion. The party debated whether to go to Ashkhellion and get Benu first. They went to the library to speak to the vulture man. He went to get his sending stone to speak to [uncertain: Ashtrigwos], to tell Benu to meet the party at the tower in Ashkhellion. Geldrin asked for magical scrolls and got them just before the teleportation circle completed. The party went to Ashkhellion. + +They appeared higher up in the tower, and Harthall transformed into a dragon to catch them. They went to the prison room. There was a dwarven man with the barrier opener around Hephestos's prison. Garadwal asked whether he wanted to see his brother first and then transformed to his normal self. He noticed Trixus was sleepy. The ceiling above vanished, and Benu appeared. Lady Harthall dropped to her knees and started to glow. A humanoid the size of the tower woke Trixus. The family was reunited. + +Steven was no longer in his barrier. Benu landed between the party and Trixus / Garadwal, while Trixus was still in a barrier. The party asked Garadwel to lay down his weapons, but he refused. The narrator tried to get the dome opener, and Garadwal killed them. Benu attacked Garadwal. Geldrin used a tremor skill to release Trixus. The narrator was revived and saw Valentenshide manage to look away. Benu and Garadwal broke through the walls and fought outside. A fight ensued, and Garadwal was banished at 5:00. + +Benu told Trixus what had happened to Garadwal. Trixus asked where Benu had been when his people were in trouble. Dark clouds gathered above the dune. Perodita appeared, looking very bedraggled compared with the previous day. She said she would get back in and wanted the flesh-crafting wands. Trixus said father had put him to sleep. The party returned to the tower and retrieved the barrier tools. Benu knew of a way to live peacefully without the barrier. + +Hephestos was only his soul. He wanted to make a pact with the party so they would let him out and wanted to give them information to help him get out. He had been asked to attack the dome, perhaps by Browning. The party needed to save Garadwel. Trixus and Benu transformed into humanoids and went to the shrine room to check whether Garadwel was there. The party added Brass City platinum to the offering bowl to help communicate with the god. Attabre came through. Garadwal was not with him. When Attabre asked what the party sought, they answered that they sought justice. Benu disappeared. Attabre said he sought atonement for his crimes, justice. Trixus was looking but seemed okay. Attabre was angry with Benu. Goliaths were due to get a protector like Trixus. The party began to tell Harthall about the ancient [unclear]. + +The party reflected that the barrier was possibly a bad thing, but had been made for noble and proud reasons. Trixus could help with the memories, but a spell within the barrier was interfering. The magic involved Attabre and another force. The location of the spell was waterwise at the Mages College at Riversmeet. Trixus did not like the barrier and did not think the elves should have been able to remove their pride. The party planned to go to Riversmeet and speak to Lady Igraine. They split: Dirk, the narrator, and Morgana took Harthall to meet Anastasia; Invar and Geldrin took Trixus to see Emi. + +With Emi, Trixus was called "the useless one." Emi said the elves needed help to remove emotions. Cardenald had put a talking door on one of the prisons. Emi said he and Browning should have been in charge but were betrayed. The elves' protector who taught them how to remove emotions was Benu. Trixus might be able to put Emi's emotions back, but he would need the emotions in order to put them back. + +With Anastasia, the party flew down to the courtyard. The Goliaths were scared. A large Goliath came and warily took the party to Anastasia in a building that was quiet and damaged. Stalwart was the first of the restored Iron Knights. The elders had managed to remove the sickness. Dragons had been sent back to their homes and had gone on the warpath. Tradesmells' dragons were missing. Ar[unclear] armies had not left. Vathkell / Vathkell under Emeraire had its dragon armies dispersed. Thungle armies had not left. Anastasia was trying to create armies to attack. The party told her that Perodita was outside the barrier. They arranged a pincer movement on Vathkell with Dirk's father's army. + +An elder came in, and Morgana checked him over. Stalwart's purification ritual had removed his ailment. Morgana cast Lesser Restoration, healed his maladies, then went out to heal some children. She set up a garden, sang a song while curing them, turned into a crow, and flew off; the notes mark this as creating a legend. Anastasia was worried about where Verdigren went. + +Geldrin tried to think of a way to get Hephestus to tell the truth. He had no luck, and Invar carried Hephestus away. The group came down to the ground and met the others. They asked Trixus to help the elders communicate with Attabre. Anastasia's bird was sent to Cardonald to get her to come to the party for the teleportation circle to Riversmeet. Cardonald appeared. She still had not found Ruby Eye and could not find Errol either; perhaps they were not on the same plane. Cardonald said Harthall meant a lot to her. The notes ask which one, and then mention Icefang: things would not be as good as they are without him. + +Cardonald gave Geldrin all of the teleportation circles: seven prisons with no defences; a lab with uncertain defences; three Grand Towers locations, namely factory, control room, and meeting lounge; a gate at the mountains earthwise of Coalmount Hills in Dunnendale; copper mines at Arrofarc; an impact site earthwise of Goldenswell; the Menagerie at Riversmeet; Ashhellier; and five pylons, with Aegis on Sands marked broken. The day ended with the note that Dirk and Anastasia had a good night. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include the party, the wizards recalled to Grand Towers, The Mother, Grimby the 3rd, the kobold lieutenant from airwise, the evil wizard Klesha, the adventurers who helped Grimby escape, the Basilisk / Bodalisk, the lovely Envoy, Grimby's mother, Wroth, Envy / Envi, Mama Harthall, Ruby Eye / Rubyeye, Geldrin, Jin Woo, Morgana, [uncertain: brakemen], the 11th Duke of Harthall's wife, the moustached fat man, the raven-haired half-elf, Lord Argenthum / Argenthum, Invar, the dwarf blacksmith, the golden dragonborn, the vulture man, the bushy-eared elf, the pale dwarf with black dreadlocks and a crown, Trixus, Benu, Garadwel / Garadwal / Garadwell / Gardwel, Valentenshide / Valentenshide, papael'munsera / papa'e munera, Anadreste, Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones, [uncertain: Shutiny], the Chorus of the Kings, Shurling, Icefang, [uncertain: unrasorak], the pale-skinned king with black dreads, Lady Harthall, Emeraire Hartmor araltar, Bridlator, Perodita, the copper dragon, the gold dragons, Emi / Emri, Emi's dark-skinned elf apprentice, Joy, Mr Browning, the tradesman from the rear Ironcraft air site, the Earl of Goldenswell, Harthall's niece killed in Claymeadows, lovely Brooching, Threepaws, Anroch or the Grab [unclear], "Dad," Hephestos / Hephestus, [uncertain: Ashtrigwos], Lady Harthall as dragon, the dwarven man with the barrier opener, Steven, Attabre / Attabre, Lady Igraine, Anastasia, Dirk, Invar, Cardenald / Cardonald, Stalwart, the restored Iron Knights, Dirk's father, Verdigren / Verdigrim, Errol, and Icefang. + +Groups and factions mentioned include the wizards called back to Grand Towers, kidnapped victims, kobolds in the city, woodcutters captured for Klesha's army, townsfolk Grimby was taught to kill, the people of Harthall, vulture men, dwarves of logs and the deep, Benu's family, sphinxes, the Gold Dragon Council, dwarven lost cities, friends who extracted papa'e munera from the lake, dwarves who saw the errors of their ways, forces from Dumnensend, "dragonborn" defenders, mages at the Menagerie, the mage school, storms, Heathmoor plague victims, Goldenswell's armies, believers in Claymeadows, giants who demolished Harthden, forces of Goldenswell, Snow Sorrow, and the dwarves, Garadwal's allies, Mother as Garadwal's ally, mages trapped by Garadwal, Goliaths, elves, tabaxi or related peoples implied by Brass City, Anastasia's Goliaths, elders, dragons sent back to their homes, Tradesmells dragons, dragon armies, children healed by Morgana, and teleportation-circle destinations. + +Places mentioned include Grand Towers, Goldenswell, Pine Springs, the forest, Harthall, Jin Woo's room, the pub called "11th Duke of Harthall's wife," the Cathedral of Attabre, Lord Argenthum's Rest, Ashkhellion / Ashhellier / Ashkellion, Goliath City, Tradesmells, Thadkhell, Wormdoo, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Snowsorrow / Snow Sorrow, Dumnensend, Freeport, one volcano containing lost dwarf-city locations, Grincray / Grim & Cray, Mashir, the castle, the lake from which papa'e munera was extracted, the city where Ruby Eye is no longer welcome, Harthall, the Menagerie, Riversmeet, the rear Ironcraft air site, Claymeadows, Harthden, Grand Towers dome, the library, Ashkhellion tower, the prison room, Hephestos's prison, the shrine room, the barrier, the Mages College at Riversmeet, Anastasia's courtyard and damaged building, Tradesmells, Ar[unclear], Vathkell / Vathkell, Thungle, Coalmount Hills, Dunnendale, Arrofarc, the impact site earthwise of Goldenswell, Aegis on Sands, seven prisons, the lab, and the Grand Towers factory / control room / meeting lounge. + +Creatures and creature-like beings mentioned include kobolds, the silvery-green Envoy / possible dragon, the huge bird sparkling with electricity, the goat man behind a door, the vulture man, the featherless woman reflected in Invar's armour, sphinxes, papa'e munera as a black orb or fragment, dragonborn, the copper dragon from Snow Sorrow, gold dragons, Benu, Trixus, Garadwal, Perodita, Hephestos as a soul, and Morgana as a crow. + +# Items, Rewards, and Resources + +Items, documents, and physical resources mentioned include lost documents, the disintegrated scroll in Jin Woo's room, the phrase "In her gaze, End of Days," the auction house receipt for a large picture frame with a massive moth, the chess board with wizard carved pieces, Invar's glowing warm box from the dwarf blacksmith, tomes of newly discovered places, the vulture man's glass box, the glowing open book written by Benu, the five Benu books for Goldenswell, Snowsorrow, Dumnensend, Freeport, and Harthall, the books on dwarven lost cities by Lord Hawthorn, the book on Hawthorn written by Ruby Eye, giant bees, winter-flowering plants, animals bred at the Menagerie, winter rose, a possible blossoming tree gifted to Goldenswell, the small black orb / papa'e munera fragment in Invar's box, lava stone racks, snake-head eyes, flesh-crafting wands, Garadwal's feather used as a one-person walkie-talkie, sending stones, magical scrolls obtained by Geldrin, the barrier opener / dome opener, barrier tools retrieved from the tower, Brass City platinum offered at the shrine, Anastasia's bird, and Cardonald's list of teleportation circles. + +Spells, visions, and magical effects mentioned include memories returning after The Mother was killed, Grimby's displacement to Pine Springs, Wroth trapping Envy in Mama Harthall's head, the Benu book drawing images in response to questions, the featherless woman reflected in Invar's armour causing Geldrin to collapse, elemental creation imagery from page two, the book slamming shut, the death-rhyme about Valentenshide's gaze and stare, the Chorus of the Kings locating Grincray through Mashir, the black orb speaking many languages, papa'e munera knowing where the rest of him was, Grand Towers dome going down, teleportation to Ashkhellion, Lady Harthall transforming into a dragon, the ceiling vanishing for Benu's arrival, the tower-sized humanoid waking Trixus, Garadwal killing and the narrator being revived, Geldrin's tremor skill releasing Trixus, Garadwal's banishment, Attabre's shrine manifestation, a barrier spell interfering with memories, Trixus potentially restoring Emi's removed emotions, Stalwart's purification ritual, Morgana's Lesser Restoration on Stalwart, Morgana healing children through song and a garden, and Cardonald failing to locate Ruby Eye or Errol, perhaps because they were not on the same plane. + +Strategic resources and plans mentioned include the information recovered from lost documents, possible aid from Grimby's story, the pale dwarf with black dreadlocks and a crown as a lead for finding Ruby Eye, the family-reunited clue for exiling or resolving Trixus, the door entrance to both Grincray cities, the route through Mashir, Lady Harthall's reports about the Menagerie and plagues, possible forces from Goldenswell, Snow Sorrow, and dwarves, the need to investigate Grand Towers, using Garadwal's feather, summoning Benu to Ashkhellion, recovering barrier tools, Benu's claim that peaceful life without the barrier is possible, Trixus's ability to help with memories, the plan to speak to Lady Igraine at Riversmeet, the split-party visits to Anastasia and Emi, the pincer movement on Vathkell with Dirk's father's army, Trixus helping elders communicate with Attabre, and teleportation circles to prisons, the lab, Grand Towers, Dunnendale, Arrofarc, Goldenswell, the Menagerie, Ashhellier, and pylons. + +# Clues, Mysteries, and Open Threads + +Memories and documents began returning after The Mother was killed. The full set of recovered documents, what is still blocked, and why the memory restoration started about a week ago remain open. + +Grimby the 3rd's story connects Klesha, a silvery-green Envoy, murdered townsfolk, Pine Springs, a huge sparkling-electric bird, Harthall-like words, and a missing goat man behind a door. The exact chronology, identity of Shriek, and link to Envy remain unclear. + +Wroth trapped Envy in Mama Harthall's head the way Envy is in Ruby Eye's. This suggests Envy can be contained inside people or minds, but the mechanism and current risk to Mama Harthall and Ruby Eye are unresolved. + +The scroll phrase "In her gaze, End of Days" joined the Benu book's warnings: "One more glance a death dance," "one brief look last breath look," and "In her stare Bones laid bare." These warnings must be preserved with Valentenshide / Valentenhide. + +The auction house receipt for a massive moth picture frame, the wizard-piece chess board, and the rook resembling [uncertain: brakemen] are unexplained but may be clues. + +The dwarf blacksmith gave Invar the glowing box for reasons beyond selling wares. The black orb inside identified itself as part of papa'e munera and wanted to reunite with the rest of itself and [uncertain: unrasorak]. Its blessing by Anadreste, extraction from the lake, and connection to dwarves who changed their minds remain unresolved. + +The vulture man's book identified a pale dwarf with black dreadlocks and a crown as someone who could help find Ruby Eye, but the caption was smudged. The same book showed Benu, Trixus, Garadwel, and two sphinxes as "a family reunited," with one outline figure. This was later partly fulfilled, but the outline figure and exile question remain significant. + +Benu's five books, the blank page for papael'munsera, and the listed family names of Anadreste, Benu, hidden Gardwel, Trixus, and one missing unnamed sibling establish a family structure that remains incomplete. + +The page-two elemental clash and black hole appeared to depict world creation or current-world formation. The exact cosmology remains unclear. + +The children's poetry book and Dumnensend poem preserve plans to take out Valentenshide. The origin and accuracy of those poems are unknown. + +The dwarven lost-city books refer to Lord Hawthorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Grincray, a volcano, a princess of the lost ones, and Ruby Eye's marriage. The third city is not referenced by either book, making it a gap. + +Hawthorn was a botanist who wrote about dwarves, developed giant bees, winter-flowering plants, winter rose, Menagerie animals, and perhaps a Goldenswell tree. Why he was extracted, how Ruby Eye's biography borrowed 94k, and how Hawthorn connects to the lost cities remain open. + +Shurling reported that the Chorus knew the entrance to Grincray but needed to go through Mashir. The relationship between Mashir, Grincray, and the two-city door remains unresolved. + +Something is still preventing all lost knowledge from being retrieved. This blocker may be connected to flesh-crafting wands, memory interference, or barrier magic. + +Lady Harthall remembered Icefang, gold dragons, and the assault on Perodita. Icefang cared for her but was starting to lose his mind. The effects of this recovered memory on Harthall, Perodita, and Snow Sorrow remain unresolved. + +The Menagerie, formerly the mage school, is locked down by mages who did not return to Grand Towers. Emi's dark-skinned elf apprentice, Joy's dislike of him, and Browning's contradictory reputation are important unresolved leads. + +Heathmoor plagues are severe, differ from barrier sickness, and are not healing with the land. Their cause and cure remain open. + +The rear Ironcraft air-site disappearance, the Earl of Goldenswell withdrawing armies, the murdered niece in Claymeadows, Harthden's demolition by giants, and Threepaws' rallying difficulty create multiple political and military threads. + +Garadwal's feather conversation revealed his belief that the barrier is his, that a betrayer or daughter sits among the party, that Mother was a useful ally, that only one more remains, perhaps Anroch or the Grab, that his friends trapped him, that he convinced the vessel, and that the fifth sphinx was father. These claims are self-serving but vital. + +Benu's failure, Trixus's non-abandonment, Garadwal's rage, and Attabre's anger at Benu leave the sphinx family conflict unresolved despite Garadwal's banishment. + +Steven was missing from his barrier after the confrontation. His whereabouts and whether this is dangerous are unknown. + +Perodita appeared bedraggled outside the barrier, wanted flesh-crafting wands, and intended to get back in. Her current goals and condition remain open. + +Hephestos is only his soul, wants a pact, and says he was asked to attack the dome, possibly by Browning. Geldrin could not find a way to make him tell the truth. + +Trixus can help with memories, but a spell inside the barrier interferes. The spell location is waterwise at the Mages College at Riversmeet and includes Attabre magic plus another force. + +Emi's emotions were removed with help from Benu, and Trixus may restore them only if the emotions can be found. The missing guilt, and perhaps other emotions, remain central. + +Anastasia's reports show varied dragon-army states: Tradesmells dragons missing, Ar[unclear] armies not left, Vathkell / Emeraire armies dispersed, and Thungle armies not left. Verdigren's whereabouts worry Anastasia. + +Ruby Eye and Errol could not be found by Cardonald and may not be on the same plane. This remains urgent. + +Cardonald's teleport-circle list is a major strategic asset. Several entries are uncertain or dangerous, especially the seven prisons, lab, Grand Towers factory / control room / meeting lounge, broken Aegis on Sands pylon site, and Menagerie at Riversmeet. diff --git a/data/4-days-cleaned/day-44.md b/data/4-days-cleaned/day-44.md new file mode 100644 index 0000000..a262b41 --- /dev/null +++ b/data/4-days-cleaned/day-44.md @@ -0,0 +1,183 @@ +--- +day: day-44 +date: unknown +source_pages: + - 190 + - 191 + - 192 + - 193 + - 194 + - 195 + - 196 + - 197 + - 198 + - 199 + - 200 + - 201 + - 202 + - 203 + - 204 +complete: true +--- + +# Narrative + +Day 44 began with a statue of Morgana being built as the party woke up, though none of them knew who it was. There was also an incomplete report, recorded only as "Report fr[unclear]." + +Cardonald had a familiar give her a report that might help with the Howling Tombs. A group of adventurers had been tinkering around and found Harthall's old lab and a key that might help gain access to the tombs. Cardonald's familiar was going with them and would report if anything else was discovered. + +One of Geldrin's scrolls was an arcane form of Draconic and extremely powerful, with a teleportation nature. A Draconic addendum said it might help the party understand where "they" went because it had a seeing aspect. The party teleported to Riversmeet, arriving on the outskirts in a meadow area. They found the ruins of a house that looked melted rather than naturally weathered. A gravestone stood to the left of the house. This was Ruby Eye's house, where his wife had been killed. + +The party headed into Riversmeet. On the way, Morgana bought a load of fruit and vegetables. The weather was very hot, but one person had a plot that seemed protected from the elements. When the party checked it, it seemed like Igraine's blessing. Closer to town, they saw two oxen-horse crossbreeds pulling a sideless cart with a throne on it. A man wearing only his pants sat there with two women hanging on his sides. Children ran up, threw coins, and shouted, "yay it's the dragon slayer." He was muscly but not useful. Parents told the children to wait for the show; he was apparently a wrestler, with regular matches in Riversmeet. + +The party asked where Lady Igraine was. They learned that her manor house was on the central bridge, and the time was 10:00. Temples to Hydrum, Igraine, Larn, and Kasha stood in town; this was the first temple to Kasha the party had seen. Freeport guards were in Riversmeet. Lady Igraine was not at the manor but at the outpost set up at the Menagerie. A strong hedge surrounded the Menagerie. Igraine sat with a black dragonborn and came out of the tent to see the party. They could not get in because of a wall of force or similar effect. A magician had come to repay a favour. About twenty wizards were inside. They had recently refused inspections and prevented the militia from entering. + +The party tried to dispel the magic and get through. Geldrin used Mold Earth to get under the hedge and sent his familiar to look around the outside of the building. The building looked good, but many cages had signs that things had broken out, including griffon, dragon, wolf, and human cages, each with door handles. When the familiar tried to open one cage, it was frazzled. The party went through the hole Geldrin dug and entered the grounds. Invar looked into a window and disappeared. Geldrin disintegrated the door and had a vision of Valentinheide killing Emi's wife. Dirk disappeared, apparently banished. Geldrin appeared to be enrolling in mage school. The names Acroneth, Crindler, Belocoose, and a sphinx on another plane were noted. After killing an acid beast, the party entered the building. They were hit by a fireball from an invisible foe. They knocked three times on the Divination wall and got stairs. + +They ended up on the eighth floor of a tower, though they were not sure which tower or how it had happened. This was the apothecary. The nurse was Matron Cardonald; her daughter was in Geldrin's year and was Valent's daughter Arreanae. The word "Mum" was noted. A gremlin-type janitor took the party to the head teacher. Pictures showed a pale-skinned man with white hair holding a sceptre, elven or human, named Tortish Harthall and associated with a blue crystal, and an elderly man Geldrin had seen in a bed in Grand Towers, one of the college founders, named Humerous Torn. The office windows had views of the compass points. The chair showed dragons in gold, silver, copper, and a big white one behind them all. + +The fourth-year students were causing issues. They were from Broken Bounds. Principal Grey had a letter closing the school and transferring students to Grand Towers from Browning, dated 47 AD. A jade or grey object on the desk moved at points. Dirk spoke to it in Aquan. Dribble was in there and acted as if something was swelling this energy. Drawers opened with the head teacher's necklace. A fresh water elemental was released and agreed to join the party for a while around the school. The infirmary and head teacher's office seemed to be on a different plane. The door back to the school led to a different room. + +Outside, a picture's eyes kept opening and closing; it showed an elderly man. The party moved him aside and found a chest that could be pulled out of the picture. Invar tricked another picture and managed to get the sceptre from it, which was a key to the box. The party opened the box and found a glowing orb of alteration and a piece of paper. Geldrin removed the orb and became overwhelmed with emotion and regret for everyone killed and hurt, apparently empathy. The note read: "mine felt right here yours is under real." + +A book on the sphinx on the other plane had been written by serpans, all [uncertain: superous]. It described a place like the party's world but different in many ways. The first chapter concerned sphinxes who teleported their city underground to protect it: a male, a female, and a goat-headed one who always spoke in rhymes. + +The party went back down to the school and entered an auditorium-style transmutation classroom. One buggy was upright of where they came in, and time seemed to have passed as expected. In the study hall or book area, they saw four-armed vulture men who looked like they were melting a pot on a pottery wheel while two wizards observed. One looked mindflayer-like. The party attacked the "wizards," and they died. The notes documented the pots the vulture man had been making: three weeks earlier he had been doing pottery, with other notes elsewhere. The pets were rudimentary Dunner-style pots. The party bandaged his wounds, and he handed over a pot and some food. The poetry seemed to be about Dirk's home. Time spent upstairs had not passed much time in the actual realm. + +The party learned that Lord Hacethorn had been the last potion and herb teacher and had written the book on Ruby Eye. The founders of the college were dated 547 years before the dome, 2453 AC after cataclysm: the white-haired elven man Tortish Harthwall and the elderly man Humerous Torn. The party returned to the principal's office and back out, emerging into the Divination classroom full of students, where Isobanne was teaching. It was Sereneday. + +Isobanne told the party they were late. The narrator tried to keep the door open, was spotted, and was sent to detention on the fifth floor. An eighteen-year-old human man named Enis, who had been called Thomas, was there, along with a girlfriend or first-year called Hannah. Joy was also noted. Dirk reached the infirmary and asked Nurse Cardonald for the date: the 3rd Sereneday of Hummeron, 2968 AC, or 32 BD. Mama Cardonald thought Enis was a bad influence on her daughter because he was always in detention. + +At the end of class, Bosh and Cardonald went to the study hall and pulled out a book. A dragon skull named Mr Moreley covered the study hall. Geldrin spoke to the dragon, a gold dragon. Geldrin showed him the ancient dragon scroll. Mr Moreley was confused because it was something still being worked on, and he said he would consult the Gold Dragon Council because he thought Harthall was keeping things from them. Ruby Eye and Cardonald were eavesdropping and wanted to ask Geldrin something. Ruby Eye went to speak to him. His final project was to remove his eye. He asked Geldrin to join them. Everard, Thomas, and Valenth were named. A book about Grand Tower was written in god language; when the party tried to read it, they got a vision of the top of the tower. Cardonald was working on automations and wanted to do something for the head teacher, then a bird and a cat. They wanted to become famous. Ruby Eye's parents wanted him to follow a priestly path. Mama Cardonald was good friends with some of the Thinglaens / Goliaths. They were currently in the automations. She could not speak to them, and they were not one of the four usual elementals; she thought they were light. + +Valenth was in an extra enchantment lesson, and Ruby Eye was in necromancy. Geldrin and Morgana went to the necromancy lesson. The class was full and everyone seemed to have assigned seats, but nobody came to claim the seats the party used. Ruby Eye was drawing Mr Moreley and gave the same spell to reincarnate himself. Dirk and Invar spoke to a bald man, perhaps a [uncertain: Tory? teacher?], who tried to find them on the list and found their timetables at 14:00. They went to get robes. Dirk was Fire House Eltur as Frederick Sims. Invar was Earth House Intor. The robes also had a hammer and shield because the Hammerguards were patrons of the school, granting certain privileges, extra embroidery, and 10% off the tuck shop. + +After detention, the narrator reappeared in the first-year rec room. A half-orc named Grisnak showed them to the cloakroom. Orcs were being relocated as part of the peace, as were gnolls and anyone considered uncivilised. The list had no record of the narrator because the narrator's race did not exist yet. The narrator gave the name Evalina Harthall. The robe did not fit because it was made for a human, so a new robe was requested. Miana / Evalina was assigned Air, with extra embroidery, [unclear], and a flag. + +The party went to history. The teacher's voice was familiar: an older man, Lord Bleakstorm. The lesson concerned sisters who fell out, one Far Grove city, Waterrose, and Great Farmouth, which was very private. Children were not told their histories. Admonishions came from their lots. A fortyish human said he had been travelling with a grove for hundreds of years, perhaps over one thousand years. A book, Tale of Two Sisters, and another, Lord of Bleakstorm and the Gnomes, were noted. Bleakstorm heard the whispers of holy Bright on the wind, helped his people, and Bright gave him the gift of everlasting. + +Class ended, and everyone left except a person at the back: Everard Browning. He asked a question about Bleakstorm living forever, and about gnomes and their devices. Dirk asked about travelling through time. Bright does not work in a linear way; the note trails off after "if we were to go back in." Morgana was Earth, and Geldrin was Water. The party went to Enchanting, though Geldrin and Morgana thought they should be there but instead followed Ruby Eye. The Enchanting teacher was a bright-red-haired elf, Mr Cardonald. He called the narrator aside and asked whether it was true she was marrying Argathum while still seeing Harthall's childhood sweetheart. He warned that it was not good if she was seeing the prince behind Harthall's back. He said her form was interesting and he would not have recognised her if not for Truesight, which saw her as a dragon. He was concerned for her as a friend of his daughter and worried about breaking the Pact with the Gold dragons. + +In Abjuration, the party went through a door and Enis was there. Ruby Eye asked Enis to show him the book, and Enis asked who was with him. Ruby Eye said he was thinking of asking them to join, and that they would test them later. Enis asked Geldrin for a moment and said Geldrin had been touched by a god, the "lady of destruction." Enis had been looking into some dark magic in a Divination classroom. Enchanting covered the dangers of cursed items: two healing potions, one cursed, and neither Identify nor Detect Magic could reveal which one. Students needed to be aware of mimics at all times. In Abjuration, no teacher appeared; the teacher should have been Mr Grey. Most people began leaving, but some stayed. + +The remaining students gathered around a very dark-skinned elf with a bottle of green liquid. The elf did not know what it was. The liquid moved up the side of the bottle when poked. Morgana tried to speak to it and felt something reach out. It did not know its name but came from the desert. Morgana bought it, and it wanted to go back to the rest of itself in the desert. The party agreed to meet Ruby Eye at 10 in the Air room and regrouped in the first-year common room. The slime might be the blood of Noxia. + +Dirk and Invar went to the library to get Lord of Bleakstorm and the Gnomes and Tale of Two Sisters around 17:00. Tale of Two Sisters was a very expensive book with a front picture of two women embracing, with Barbie-doll-type body features. Morgana and the narrator tried to open the secret door but failed. They went to the dining hall and ruined a classroom so the janitor would appear. They tried the knock pattern in a different classroom, but it did not work, and the narrator was sent to detention. Morgana returned to tell everyone what had happened. + +Tale of Two Sisters described high-ranking queens of the elemental plane. They got on but were like oil and water and were never together. Bright was the low sky, while Valentenhule was the high sky. When lesser races were made, Bright grew close to them and enjoyed playing with them. Valentenhule was haughty and came to enjoy harming the beings. Both grew from their roles. Valententhide's position in the high or dark sky caused the void to open. Bright's position in the low sky let her witness humans enslaved by ice elementals, and when they broke free she rewarded them. + +Lord of Bleakstorm and the Gnomes said Bleakstorm thought the gnomes were cast-outs chosen to show anything but recently started showing off seas. The gnomes seemed to have an agreement with merfolk, because they always turned away from a port he knew existed: Great Farmouth. Bleakstorm thought Grand Towers was made with gnomish technology. Gnomes used random names to hide their family names. + +Morgana tried to find detention and headed to the principal's office on the map. Altith / Icefang tried to contact the narrator and said they had been meant to meet after the narrator met with Argathum. A man appeared, Icefang. He warned that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. The party needed the janitor's broom to open the door. The note also says "T look silver with a hint of green," with two green dragons named Emeraldus and another. Goliaths were meant to go and attack them and be one of [unclear]. Icefang tried to see the future. When asked what happened if Browning did, the vision showed broken tower fields, burning blue, black, green, and red dragons flying around, small settlements of people hiding, and elementals destroying things. Icefang said, "The future could be desperate, the people are not ready yet." Cold Identify revealed that something had come with the party. Icefang suggested they go see Browning and ask him for the broom. + +The party went to the Air common room at 22:00. Its door was flanked by pictures of a dwarf with a bushy beard and a blue dragonborn. Four or five mages were present: Browning, Valenth, Brotor, Enis, and Hannah. A featureless woman had her hands on Hannah's shoulders. She thanked the party for bringing the broom because it was part of the plan. Everard thought he had found a way into the tower through the tunnels, and they needed the broom to get there. They wanted to see secrets of emotional elimination, memories, and automations, and to help defend the land because they did not think the elemental truce would last much longer. The party agreed to go with them. Tallith had not hired the janitor for nothing; he used to work with the elves. Valententhide said her sister's magic protected the party for now. Hannah, a priestess of Attabre, thought the elves had the same magic as the [unclear]. + +They opened a door to a dark corridor. Valententhide said the party should not have seen this, that Bright had shown them too much, and that they should not even be able to see Hannah because she had been wiped from time and space. Everard entered, and the party followed into the corridor and closed the door. Valententhide hovered over them and let go of Hannah. The corridor opened into a janitor's closet. Reborn stone was noted. A coin thrown into Bright's statue made the door disappear. Dirk's group appeared in a bathhouse room with a human and the name Blackhold noted. The party tried to find everyone and succeeded. + +When they tried to open the door back to the school, a silver dragon appeared. Earth flowed through, and a silver-green claw burst through. Geldrin forced it closed. A voice said, "Taken my form give it back" and connected this to Avalina, saying it had taken everything from her. The party managed to close the door and give Geldrin the broom; they could not give it to Enis, Thomas, or Browning [uncertain]. + +They opened into an empty room with shelves and stacks of paper. It was a white room with blue viewing and gorgeous red desks, where young elven children sat at each desk for simple maths. Enis said it was taking too long. The party gave the broom, and they ended up in a field. The next small room was made of brass: Brass City. Browning took the broom in the Air common room, then gave it back. The group went out, and the door slammed shut. It reopened to a dusky room like the Air common room, with black windows and cracking glass sounds. The party exited and seemed to return to their own time. They no longer remembered Hannah, except the image of her turning to dust in the cave; they did not even remember her name. The Noxia glob had some of the rest returned home, and magic doors now felt cold. + +The party went through the door and saw shadows of Valententhide's face. They felt as if they were being pulled up. They got out through the door on the other side of the barrier, to the room above the Air common room. The door there was made of black crystal, nearly transparent and enchanted. They found a suit of armour sized for a Goliath or goblin, with a gnomish hole set up so someone could stand on it and put it on. Purple crystals were linked with copper wire to a hatch containing an automaton core. A rug showed a cityscape with buildings and walkways. A label said "Great Farmouth." The armour was an enhanced suit with a world of magic missiles, a power suit, and a shield. + +The party got Bosh out and went downstairs. In one set of quarters, the room had a homely farmhouse feel and no dust. It belonged to Professor Arnisimus Goldenfields. Papers on the desk were waterwheel blueprints for Goldenswell. A desk picture showed a bleach-blond halfling standing with a blonde human woman, probably family, inscribed "To my love Arnisimus." There were seven cat collars. A bleach velvet box contained a golden chain with a symbol of a fireplace and a cat, the symbol of Larn. Lesson plans and other papers were present. + +At 23:00, doors led to the first-year common room and the conjuration class. The conjuration classroom had a birdhouse type of setup and coloured things above the blackboard. Morgana took the green one, waking a pixie inside. The pixie thought it was 49 AD, not 1012 AD. They thought they were leaving for Grand Towers tomorrow with the others, Green, Red, and Blue. The teachers of conjuration were "the sisters." They could not leave the classroom and were an elemental of Igraine. The party tried to get a new core using Treamon's skull and succeeded. The pixie wondered whether Morgana worked for the Chorus because she was one of Igraine's greatest executers. They thought Vita was also one, but became his own thing while working with Mr Bleakthorn. Mr Moreley could not leave the school either. A baby Attabre spirit had been brought in. The sisters were excited to see it. It was going to the Goliaths as they were becoming Emeraldus's line. The Goliaths killed the remaining two green dragons and created Wyrmdown. + +The party went to Mr Moreley's classroom via the second-year common room. Something left through the other door to the common room when they arrived. Mr Moreley's room was fully painted as a mural of Snowscreen. It had a large desk, a pedestal with a cushion, and a glass sphere with smoke inside. There was a powerful defence mechanism if someone lacked the password. The containment device was the same as Enis's. The mural showed gold, silver, copper, and white dragons. Dirk threw a javelin at the box, but it did nothing. One dragon head of each colour on the mural was a button. The party worked out the pattern, opening the gates of Snowscreen to reveal an alcove with a draconic book for Ruby Eye. It had been left somewhere only Ruby Eye would find it. The writer was going to try to stop what they were doing here and used the plans for the dome once they had a [unclear] future for [unclear]. "Battery is the clue." The book contained a picture of a baby sphinx, a sixth sphinx. It said a Mother hive for the "worm" had been created using the Attabre excellence. + +The party headed up to astronomy. There was a big telescope and blackboards showing what the moons actually look like. The telescope showed a full moon even though the moon was currently only half. The room moved when the telescope moved. Constellations were named; one was called Bell / Squall. Scrying spells on the telescopes could home in on certain points. Pri-moon had many "meteor" impacts. The second moon was a very perfect seasonal stone with a chunk missing. Tri-moon was deep purple. + +Dirk put his head into a missing door hole and heard a voice that wanted to know whether he was Brotor. It had a gift for Brotor. Mr Moreley had taken the void, and the gift was part of the void. Squall's Belt did not look like a constellation, but like a dark eclipse shape darker than the rest of the sky. There was writing on it, though the party was unsure what it was beyond a dark patch in the sky. Geldrin put the hockey puck into the void, and it said, "it's its lord!" The party said they had Brotor's eye. The void tried to enter Dirk's mind, confirmed it was free, and disappeared, leaving an orb of void behind like the smoke orb in Mr Moreley's room. The party needed eight spheres in total. + +Back in Mr Moreley's room, after breaking the void out, the dragon on the wall said they had found it but still needed to be discreet. The next one was in Ruby Eye's old stomping ground; they would need to contain it and meet him there, in the Air common room. A paper on the desk read, "The window like your paintings." The party got an empty glass orb and instructions for filling it with dust: gather it all, take it to the Aurises who put it in the ball, and go back to the Air room. The source was from the head of a dragon. They had found it. The next one was obvious: the "seasoning" was kept where it should be, in the kitchen. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Morgana, Cardonald / Matron Cardonald / Nurse Cardonald, Harthall, Geldrin, Ruby Eye / Rubyeye, Ruby Eye's wife, Lady Igraine, Hydrum, Larn, Kasha / Kashe, the dragon slayer wrestler, the two women on the wrestler's cart, Freeport guards, the black dragonborn with Igraine, Invar, Dirk, Valentinheide / Valententhide / Valentenhule / Valentenshide, Emi, Acroneth, Crindler, Belocoose, the sphinx on another plane, Arreanae, Valent's daughter, the gremlin janitor, Tortish Harthall / Tortish Harthwall, Humerous Torn, Principal Grey / Mr Grey, Browning / Everard Browning, Dribble, the head teacher, Isobanne, Enis / Thomas, Hannah, Joy, Bosh, Mr Moreley, the Gold Dragon Council, Everard, Valenth, Thinglaens / Goliaths, Ruby Eye's parents, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Evalina Harthall / Avalina / Miana, Lord Bleakstorm, Bright, Argathum / Argenthum, Mr Cardonald, the lady of destruction, the very dark-skinned elf with green liquid, Altith / Icefang, Emeraldus, Brotor / Brutor, Tallith, Blackhold, Professor Arnisimus Goldenfields, Arnisimus's love, Treamon / Tremaion, Vita, Mr Bleakthorn, Attabre, the sisters, Aurises, and Brotor as the intended recipient of the void gift. + +Groups and factions mentioned include the party, adventurers who found Harthall's old lab, Cardonald's familiar, Riversmeet townsfolk, children watching the wrestler, parents at the show, Freeport guards, about twenty wizards inside the Menagerie, militia barred from inspection, griffon / dragon / wolf / human cage subjects, fourth-year students from Broken Bounds, students of the old mage school, Gold Dragon Council, Hammerguards as school patrons, orcs and gnolls being relocated as part of the peace, Far Grove cities, humans enslaved by ice elementals, gnomes, merfolk, mages in the Air common room, elves connected to the janitor, automations, elemental truce parties, young elven children in the white classroom, conjuration teachers called the sisters, Igraine elementals, the Chorus, Goliaths becoming Emeraldus's line, remaining two green dragons, and the Aurises. + +Places mentioned include the location of Morgana's statue, Howling Tombs, Harthall's old lab, Riversmeet, the meadow outskirts, Ruby Eye's melted house ruins and gravestone, the central bridge manor house, the temples of Hydrum, Igraine, Larn, and Kasha, the Menagerie, the outpost at the Menagerie, the strong hedge, the Menagerie grounds, the tower eighth floor, the apothecary, infirmary, head teacher's office, Broken Bounds, Grand Towers, Divination wall and classroom, the different plane holding infirmary and office, transmutation classroom, study hall, the actual realm, the principal's office, fifth-floor detention, first-year rec room / common room, necromancy lesson, Fire House Eltur, Earth House Intor, tuck shop, cloakroom, history class, Far Grove, Waterrose, Great Farmouth, Air common room, Abjuration classroom, Enchanting classroom, dining hall, the principal's office map, Snow Screen / Snowscreen, tower tunnels, dark corridor, janitor's closet, bathhouse room, Blackhold, empty white classroom, Brass City, the room above the Air common room, first-year common room, conjuration classroom, Mr Moreley's classroom, second-year common room, astronomy room, Pri-moon, the second moon, Tri-moon, Squall's Belt, Ruby Eye's old stomping ground, the kitchen, Goldenswell, Wyrmdown / Wyrmdoom, and the desert where the green liquid wanted to return. + +Creatures and creature-like beings mentioned include oxen-horse crossbreeds, griffon, dragon, wolf, human cage subjects, the acid beast, water elemental Dribble, the fresh water elemental released by the party, four-armed vulture men, mindflayer-like wizard, gold dragon skull Mr Moreley, automations containing Thinglaens / light entities, a half-orc, orcs, gnolls, Bright and Valentenhule as elemental-plane queens, ice elementals, two green dragons including Emeraldus, the featureless woman holding Hannah, a silver dragon, the silver-green claw, Noxia-blood slime / green liquid, pixie in the green classroom object, Igraine elemental, baby Attabre spirit, gold / silver / copper / white dragons in the mural, baby sphinx / sixth sphinx, Mother hive for the worm, and the void entity / void orb. + +# Items, Rewards, and Resources + +Items, documents, and physical resources mentioned include Morgana's statue, Cardonald's familiar's report, Harthall's old lab key for the Howling Tombs, Geldrin's powerful arcane Draconic teleportation scroll with seeing aspect, Morgana's fruit and vegetables, the wrestler's coin-collecting throne cart, the strong Menagerie hedge, cages for griffon / dragon / wolf / human, the head teacher pictures, the blue crystal, the dragon chair, Principal Grey's 47 AD letter transferring students to Grand Towers, the jade / grey desk object containing Dribble, the head teacher's necklace, the picture chest, the sceptre key, the glowing alteration orb, the note reading "mine felt right here yours is under real," the book on the sphinx on the other plane, Dunner-style pots, the pot and food given by the vulture man, the poetry about Dirk's home, the ancient dragon scroll shown to Mr Moreley, Ruby Eye's self-reincarnation spell, student robes, Hammerguard embroidery, 10% tuck shop privilege, Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, the janitor's broom, the bottle of green liquid / possible Noxia blood, the cursed and uncursed healing potions from Enchanting, the coin thrown into Bright's statue, Reborn stone, the black crystal door, the Goliath / goblin-sized power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, world of magic missiles, shield, waterwheel blueprints for Goldenswell, Arnisimus's desk picture, seven cat collars, bleach velvet box, golden chain with fireplace-and-cat Larn symbol, lesson plans, coloured conjuration objects, Treamon's skull, the new core made with Treamon's skull, Mr Moreley's glass sphere with smoke, the Snowscreen mural, the draconic book for Ruby Eye, baby sphinx picture, big telescope, astronomy blackboards, telescope scrying spells, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, and the "seasoning" in the kitchen. + +Spells, visions, and magical effects mentioned include the teleportation to Riversmeet, Igraine's apparent element-protection blessing on a plot, wall of force around the Menagerie, attempted dispel, Mold Earth under the hedge, Geldrin's familiar being frazzled by a cage, Invar disappearing through a window, Geldrin disintegrating a door, Geldrin's vision of Valentinheide killing Emi's wife, Dirk's banishment, the mage-school enrollment effect, the invisible foe's fireball, the three-knock Divination-wall stair trigger, the infirmary and office being on a different plane, the water elemental joining the party, the picture chest and sceptre extraction, the alteration orb overwhelming Geldrin with empathy, unusual time passage between planes, the old-school date of 3rd Sereneday of Hummeron, 2968 AC / 32 BD, god-language Grand Tower book vision, Ruby Eye's planned eye removal, automations containing light-like entities, Ruby Eye's reincarnation spell, Truesight revealing the narrator as a dragon, Enis recognising Geldrin as touched by the lady of destruction, Identify and Detect Magic failing to distinguish cursed potions, Morgana speaking to the green liquid, Icefang's future vision, Cold Identify revealing something came with the party, Bright's non-linear time, the featureless woman manipulating Hannah, Bright's statue erasing a door, Geldrin closing the silver-dragon door, the party losing memory of Hannah after returning, magic doors feeling cold, shadows of Valententhide's face, the door pulling the party up beyond the barrier, the pixie being out of time by 963 years, the sisters unable to leave the classroom, Mr Moreley's password defence, the colour-dragon mural button pattern, telescope scrying, the void trying to enter Dirk's mind, and containment of void dust in glass orbs. + +Strategic resources and plans mentioned include the Howling Tombs lead through Harthall's old lab and key, the Draconic teleport / seeing scroll as a way to understand where someone went, the investigation of Ruby Eye's house, Lady Igraine's Menagerie siege, the water elemental's temporary school aid, the alteration / empathy orb and note hinting at another location, the book on sphinxes and underground city, the student schedules and disguises, Ruby Eye recruiting Geldrin into the old student group, Browning's plan to reach the tower through tunnels using the janitor's broom, the old group's search for emotional elimination, memories, and automations, Icefang's warning about a desperate future if Browning acts, the party reaching the room above the Air common room beyond the barrier, the enhanced armour and automaton core, the conjuration-room core replacement, Mr Moreley's draconic book clue that "Battery is the clue," the discovery that eight spheres are needed, and the next sphere leads: Ruby Eye's old stomping ground / Air common room and the kitchen seasoning. + +# Clues, Mysteries, and Open Threads + +The statue of Morgana being built at the start of the day suggests her healing of the Goliath children has already become legend, but the party did not know who the statue represented. + +The incomplete "Report fr[unclear]" remains unresolved. + +Cardonald's familiar reported that other adventurers found Harthall's old lab and a key for the Howling Tombs. The tomb access, the lab's contents, and the adventurers' identities are open threads. + +Geldrin's powerful arcane Draconic teleport / seeing scroll may reveal where "they" went, but who "they" are and how to use it remain unclear. + +Ruby Eye's melted house and his wife's grave are tied directly to Valentinheide killing Emi's wife. The exact sequence of Ruby Eye, Emi, wife, house, and Valentinheide remains important. + +Riversmeet contains temples to Hydrum, Igraine, Larn, and Kasha; the Kasha temple is the first the party has seen, making it notable. + +The Menagerie was locked down by about twenty wizards who refused inspection. The wall of force, magician repaying a favour, broken cages for griffon / dragon / wolf / human, and invisible fireball attacker suggest active containment failures or deliberate concealment. + +Invar and Dirk disappeared separately during the entry, Geldrin experienced old-school enrollment, and the party entered the former mage school's time or plane. The rules governing this displacement remain unclear. + +The names Acroneth, Crindler, Belocoose, and the sphinx on another plane appear during Geldrin's enrollment effect and should be preserved, but their identities are unclear. + +Matron Cardonald, Arreanae, Valent, Tortish Harthall, Humerous Torn, Principal Grey, and Browning all appear in the old school structure. Their relationships and exact historical dates matter for the Grand Towers / mage school history. + +The fresh water elemental Dribble was trapped in a jade / grey desk object and felt energy swelling. The source of the swelling energy and Dribble's longer-term role are unknown. + +The alteration orb overwhelmed Geldrin with empathy and regret. The note "mine felt right here yours is under real" implies another emotion-orb location, but the meaning of "under real" is uncertain. + +The sphinx book by serpans describes a parallel place and sphinxes who moved their city underground. This may connect to Trixus, Benu, Garadwal, the sixth sphinx, or Grincray, but the exact connection is not established. + +The four-armed vulture men making pots, the mindflayer-like observer, Dunner-style pots, and poetry about Dirk's home remain unexplained. + +The party entered the date 3rd Sereneday of Hummeron, 2968 AC / 32 BD. The relationship between this historical visit, current 1012 AD references, and the school planes remains unresolved. + +Mr Moreley saw Geldrin's ancient dragon scroll as still being worked on and suspected Harthall was hiding things from the Gold Dragon Council. This suggests the party brought future knowledge into the past. + +Ruby Eye's final project was to remove his eye, and he asked Geldrin to join a group including Everard, Thomas / Enis, and Valenth. This appears to be a key origin point for later events. + +Cardonald's automations contained Thinglaens / Goliaths or light-like entities, not one of the four usual elementals. The ethical and magical nature of these automations remains unresolved. + +The narrator's assumed identity as Evalina Harthall / Miana / Avalina, seen by Truesight as a dragon, triggered concern about Argathum, Harthall's childhood sweetheart, and the Gold Dragon Pact. Whether this is a past-life, disguise, stolen form, or time paradox is unresolved. + +Lord Bleakstorm's lesson and the books Tale of Two Sisters and Lord of Bleakstorm and the Gnomes preserve history about Bright, Valentenhule / Valententhide, Great Farmouth, gnomes, merfolk, Grand Towers technology, and everlasting life. These are major lore threads. + +Enis recognised Geldrin as touched by the lady of destruction and was researching dark magic. Hannah was later described as wiped from time and space. Their role in the tower expedition is critical. + +The green liquid / possible Noxia blood came from the desert, wanted to return to the rest of itself, and may have partially returned home after the time-door events. It remains dangerous and unresolved. + +Icefang warned that humans were getting above their station, the gods would take over Snow Screen, and a Browning future involved broken tower fields, burning chromatic dragons, hidden settlements, and destructive elementals. Something came with the party. + +The janitor's broom was required to open the tower route, and Tallith had hired the janitor because he used to work with elves. The janitor's identity, broom's mechanics, and Tallith's motives remain unclear. + +The featureless woman / Valententhide held Hannah and said Bright had shown the party too much. Hannah should not have been visible because she was wiped from time and space. After returning, the party remembered only Hannah turning to dust in a cave and not her name. + +The silver dragon / silver-green claw demanded its form back from Avalina, saying she had taken everything. This is a major unresolved identity and form-theft clue. + +The party passed through rooms showing young elven children, Brass City, the Air common room, and a dusky cracking-window version before returning. The sequence may reveal old tower or planar routes. + +The black crystal door, enhanced power armour, automaton core, Great Farmouth rug, and gnomish hole setup point to gnome or Grand Towers technology. The armour's owner and use are not stated. + +Professor Arnisimus Goldenfields's quarters contain Goldenswell waterwheel blueprints, Larn cat symbolism, seven cat collars, and family imagery. His role in the school and later events remains open. + +The pixie in the conjuration room thought it was 49 AD, named the sisters as conjuration teachers, said they could not leave, and identified them as an elemental of Igraine. The party created or replaced a core with Treamon's skull. + +The baby Attabre spirit, Goliaths becoming Emeraldus's line, remaining two green dragons being killed by Goliaths, and creation of Wyrmdown are major historical clues. + +Mr Moreley's room hid a draconic book for Ruby Eye. Its message says the writer tried to stop what they were doing, used dome plans after a [unclear] future for [unclear], and that "Battery is the clue." It also mentions a sixth sphinx and a Mother hive for the worm using Attabre excellence. + +The astronomy room's telescope shows lunar truth different from visible reality: Pri-moon has many impacts, the second moon is a perfect seasonal stone with a missing chunk, and Tri-moon is deep purple. Squall's Belt is a dark eclipse-like patch with writing rather than a normal constellation. + +The void entity had a gift for Brotor, recognised Brotor's eye, tried to enter Dirk's mind, declared itself free, and left an orb of void. The party now knows they need eight spheres total. + +The next containment leads are Ruby Eye's old stomping ground / Air common room and the kitchen, where the next obvious "seasoning" sphere is kept. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 2eb366a..58d8c85 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -30,20 +30,24 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Aliases and Variant Spellings -- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Garadwel, Garaduel [uncertain automaton spelling], Terror of the Sands, nightmare of the darkness. +- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Garadwel, Garaduel [uncertain automaton spelling], Guradwal, Gardwell, Terror of the Sands, nightmare of the darkness. - [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. - [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. -- [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent]. -- [Edward Browning](people/edward-browning.md): Edward Browning, Browning; Skutey Galvin is linked in a warrant note but not merged. +- [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent], Brotor / Brutor [context: void gift and Brotor's eye uncertain]. +- [Edward Browning](people/edward-browning.md): Edward Browning, Browning, Everard Browning, Everard; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. -- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi [also possible separate Coalmont Falls figure], Ennui, The Mage, Visage Envoi. -- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valenthide, Valententhide, Valententide / Vallententide [uncertain historical/art reference]. +- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi [also possible separate Coalmont Falls figure], Envy [mind-containment context uncertain], Ennui, The Mage, Visage Envoi. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valent, Arreanae's mother [uncertain]. Valenthide/Valententhide variants now also have a separate unresolved page. +- [Valententhide / Valentenhule](people/valententhide.md): Valententhide, Valentenshide, Valentinheide, Valentenhide, Valentenhule, Valententide, Bridge's sister, the featureless woman; not silently merged with Valenth Cardonald. - [The Mother](people/the-mother.md): The Mother, Mother. -- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, The Choking Death, The whispers in the dark, Mother of many. +- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, Perodita, The Choking Death, The whispers in the dark, Mother of many. - [Basilisk / Busalish](people/basilisk-busalish.md): Basilisk, Basaluk, Basalisk, Busalish, Busalish's guild. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. @@ -76,7 +80,7 @@ sources: - [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. - [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. - [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. -- [Icefang](people/icefang.md): Icefang, Ice Fang, elderly gentleman in the mental palace. +- [Icefang](people/icefang.md): Icefang, Ice Fang, Altith, Atlih [uncertain], Ice Fury [uncertain related], elderly gentleman in the mental palace. - [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md): gods' bargains, barrier bargains, Noxia's terms, Otasha's unborn nerfili baby bargain, Leptrop workaround. - [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md): Jelly Fish Broach, Jelly Fish Brooch, Scorpion, Snowlee, Jelly Fish, Ant. - [Valenthielles Prison](places/valenthielles-prison.md): Valenthielles prison, Valenthielle's prison. @@ -86,6 +90,18 @@ sources: - [Snake Slayers](items/snake-slayers.md): Snake Slayers, the crossbow. - [Searu's Arrow](items/searus-arrow.md): Searu's Arrow, Searu's arrows, Searu's staff. - [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. +- [Trixus](people/trixus.md): Trixus, Trixius, Tixun, Benu's little brother, elemental of light. +- [Attabre / Altabre](people/attabre-altabre.md): Attabre, Altabre, Protector of the Brass city, father of the sphinxes. +- [Galimma, the Peridot Queen](people/galimma-peridot-queen.md): Galimma, Peridot Queen. +- [Papa'e Munera](people/papae-munera.md): Papa'e Munera, papa'e munera, papael'munsera, papa I Meurina, black orb. +- [Noxia](people/noxia.md): Noxia, Noxia Beast avatar, Noxia blood, lady of destruction. +- [Ashkellon](places/ashkellon.md): Ashkellon, Askellon, Ashkhellion, Ashhellier, Goliath City, Emeredge's city. +- [Bleakstorm](places/bleakstorm.md): Bleakstorm, Lord Bleakstorm, Bleakstorm castle. +- [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md): Riversmeet, Menagerie, Mages College at Riversmeet, old mage school, mage school. +- [Void Spheres](items/void-spheres.md): void spheres, orb of void, void orb, eight spheres, Brotor's gift. +- [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md): Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Hephestus / Hephestos, Slen, The Exiled, Calameir, Steven / Steve, Shuert, Grimby the 3rd, Klesha, Shriek, Shurling, Stalwart, Enis / Thomas, Hannah, Mr Moreley, Dribble, Arnisimus Goldenfields, Aurises. +- [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md): Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Grincray / Grim & Cray, Mashir, Howling Tombs, Great Farmouth, Squall's Belt. +- [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md): Envi's fifth ring, ring of the betrayer, black-feather communication brick, Domain of Pengalis coin, Trixus's brass rings, Papa'e Munera black orb, Garadwal's feather, alteration orb, janitor's broom, green liquid / possible Noxia blood, power armour, draconic book for Ruby Eye, kitchen seasoning. - [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Mama Harthall, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. - [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. - [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md): shell of [uncertain: Tremoon], crystal shell, lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. diff --git a/data/6-wiki/clues/days-42-44-coverage-audit.md b/data/6-wiki/clues/days-42-44-coverage-audit.md new file mode 100644 index 0000000..3f96eee --- /dev/null +++ b/data/6-wiki/clues/days-42-44-coverage-audit.md @@ -0,0 +1,71 @@ +--- +title: Days 42-44 Wiki Coverage Audit +type: coverage audit +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Days 42-44 Wiki Coverage Audit + +This audit records explicit outcomes for the cleaned-day mention ledgers. It is intentionally broad because days 42-44 introduce many one-off, uncertain, and variant subjects. + +## Day 42 Outcomes + +| Subject or cluster | Outcome | +|---|---| +| Ashkellon / Askellon / Ashkhellion, tower, throne room, resistance, prison rooms, Noxia chamber, treasure hall | Standalone page: [Ashkellon](../places/ashkellon.md). | +| Galimma / Peridot Queen | Standalone page: [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md). | +| Benu, Garadwal / Guradwal / Gardwell, Trixus / Trixius, Attabre / Altabre | Existing or new standalone pages updated: [Benu](../people/benu.md), [Garadwal](../people/garadwal.md), [Trixus](../people/trixus.md), [Attabre / Altabre](../people/attabre-altabre.md). | +| Ruby Eye, Envi / Envy, Joy, Perodika / Perodita, Icefang / Atlih, Lady Hearthwall, Basilisk / Basalisk, T.J. Boggins | Existing pages updated or status/source indexed. | +| Noxia, Noxia Beast avatar, green blob, medusa, child of the Mother, eyeless dog, Noxia blood lore | Standalone page: [Noxia](../people/noxia.md); status/open threads updated. | +| Bleakstorm, Lord Bleakstorm, time device, [uncertain: leechus] | Standalone page: [Bleakstorm](../places/bleakstorm.md); open/status rollups updated. | +| Envi's fifth ring, ring of the betrayer, ring-reflection voice | Existing item page updated: [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md); aliases and open threads updated. | +| Offering responses, statue inscriptions, Trixus ring inscription, Badger phrase | [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | +| Three Finger Dune Shwelter, Araks, Zekish, Badger, Anastasia, Minthwe, Slen, The Exiled, Calameir, Steven, Shuert, Lorleh, Eveline Heathsall, Argentum, Thuvia, Brother fracture and other one-off figures | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key lifecycle updates in [NPC Status](../people/status.md). | +| Wyrmdoom, Vahthell, Thundeya, Tradesmells, Domain of Pengalis, Dunemin, Snow Screen / Snow Sorrow, Gravel Basers, Heathwall, Emmerave and other minor places | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), with existing pages linked where present. | +| Black-feather communication brick, Domain of Pengalis coin, feather relics, coins/currencies, Treamon's skull, flesh-crafting wand, Trixus's brass rings, time device and other specific resources | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), and [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md). | +| Dreams, skull arches, tiny Barrier hole, Tradesmells empty, Emri soul-parts, copper dragon memory, Altabre freedom vision, Noxia earth corruption, Bleakstorm time/cost, Perodita at Heathwall | [Open Threads](../open-threads.md), plus related standalone pages. | + +## Day 43 Outcomes + +| Subject or cluster | Outcome | +|---|---| +| Riversmeet Menagerie / Mages College at Riversmeet as upcoming memory-spell site | Standalone page created and updated from day 43-44: [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Papa'e Munera / papael'munsera / black orb, Anadreste, [uncertain: unrasorak] | Standalone page: [Papa'e Munera](../people/papae-munera.md); aliases, inventory, open threads updated. | +| Garadwal feather claims, Benu, Trixus, Attabre, Ashkellon reunion, Garadwal banishment | Existing/new standalone pages updated; NPC Status and open threads updated. | +| Grimby the 3rd, Klesha, lovely Envoy, Shriek, Wroth, Mama Harthall, Lord Hawthorn, Princess Maesthon, Grincray figures, Shurling, Stalwart, restored Iron Knights, Errol | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md) and status/open threads; existing pages updated where identity clearly matched. | +| Goldenswell, Pine Springs, Harthall, Lord Argenthum's Rest, Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise, Grincray / Grim & Cray, Mashir, Claymeadows, Harthden, Arrofarc, Aegis on Sands | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), plus [Grand Towers](../places/grand-towers.md) and open threads. | +| Disintegrated scroll, death-rhyme warnings, moth receipt, wizard chessboard, Benu books, Hawthorn books, flesh-crafting wands, Garadwal's feather, sending stones, magical scrolls, barrier tools, Cardonald teleport circles | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), and [Party Inventory](../inventories/party-inventory.md). | +| Memories/documents returning, Envy in Mama Harthall, pale dwarf lead for Ruby Eye, Benu family structure, elemental creation imagery, third lost dwarf city, Menagerie lockdown, Heathmoor plagues, Garadwal claims, Steven missing, Hephestos pact, memory-interference spell, Ruby Eye/Errol missing | [Open Threads](../open-threads.md), [NPC Status](../people/status.md), and related standalone pages. | + +## Day 44 Outcomes + +| Subject or cluster | Outcome | +|---|---| +| Riversmeet, Menagerie, old mage school, Ruby Eye's house, school rooms, Air common room, astronomy, old-school time/plane rules | Standalone page: [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Valententhide / Valentinheide / Valentenhule, Bright, Hannah, featureless woman, death-rhyme cluster | Standalone unresolved page: [Valententhide / Valentenhule](../people/valententhide.md); [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md) and open threads updated. | +| Noxia green liquid / blood, lady of destruction, Noxia-return-to-desert clue | [Noxia](../people/noxia.md), [Minor Items](../items/minor-items-days-42-44.md), inventory, and open threads. | +| Void orb, eight spheres, Squall's Belt, Brotor's gift, Aurises, kitchen seasoning lead | Standalone item page: [Void Spheres](../items/void-spheres.md); inventory and clues updated. | +| Ruby Eye, Browning / Everard, Icefang / Altith, Joy, Attabre, Grand Towers, Barrier, Bleakstorm | Existing pages updated. | +| Cardonald variants, Arreanae, Tortish Harthall / Harthwall, Humerous Torn, Principal Grey, Dribble, Enis / Thomas, Bosh, Mr Moreley, Valenth, Brotor, Grisnak, Evalina / Avalina / Miana, Mr Cardonald, Professor Arnisimus Goldenfields, Vita, Mr Bleakthorn, sisters | [Minor Figures from Days 42, 43, and 44](../people/minor-figures-days-42-44.md), with key status/open-thread updates. | +| Howling Tombs, Harthall's old lab, temples of Hydrum / Igraine / Larn / Kasha, Far Grove, Waterrose, Great Farmouth, Blackhold, Brass City, Pri-moon, second moon, Tri-moon, Squall's Belt | [Minor Places from Days 42, 43, and 44](../places/minor-places-days-42-44.md), standalone pages where appropriate. | +| Harthall lab key, Draconic teleport/seeing scroll, alteration orb, janitor broom, power armour, automaton core, Larn chain/cat collars, Treamon's-skull core, Mr Moreley's book, telescope, empty glass orb, dust instructions | [Minor Items from Days 42, 43, and 44](../items/minor-items-days-42-44.md), [Party Inventory](../inventories/party-inventory.md), [Void Spheres](../items/void-spheres.md). | +| Morgana statue, incomplete report, Ruby Eye wife/house sequence, Menagerie lockdown, displacement rules, old school historical date, future knowledge, Ruby Eye final project, automations, Evalina/Avalina identity, Hannah erasure, silver-green claw, baby Attabre spirit, sixth sphinx, lunar truth, next sphere leads | [Open Threads](../open-threads.md). | + +## Unresolved Merge Decisions + +| Names | Decision | +|---|---| +| Valententhide / Valentenshide / Valentinheide / Valentenhule vs [Valenth Cardonald](../people/valenth-cardonald.md) | Kept separate and cross-linked. Day 44 strongly supports a high-sky / Bright's sister figure distinct from Cardonald, but older notes collide. | +| Lute vs [Luth](../people/luth.md) | Not merged; Lute appears in a Ruby Eye cloak vision, while Luth is an existing Dunnersend figure. | +| Icefang / Altith / Atlih / Ice Fury | Preserved as variants or uncertain related names on [Icefang](../people/icefang.md); not normalized. | +| Emri / Emi vs [Envoi](../people/envoi.md) | Existing Envoi page updated for Envi/Envy; Emri / Emi remains uncertain and is tracked in status/open threads rather than silently merged. | +| Brotor vs Brutor Ruby Eye | Preserved as a context-dependent alias on Ruby Eye and [Void Spheres](../items/void-spheres.md), not treated as certain. | +| Papa'e Munera / Papa I Meurina | Merged on [Papa'e Munera](../people/papae-munera.md) as likely but uncertain due earlier prison-name variant. | +| Galimma / Peridot Queen vs Peridita / Poison Dragon | Kept separate, with cross-links and open questions. | + +## Subjects Only In Rollups + +Most one-off supporting figures, minor locations, and specific but low-state items from the cleaned-day ledgers are intentionally searchable only in the day-42-44 rollups: [Minor Figures](../people/minor-figures-days-42-44.md), [Minor Places](../places/minor-places-days-42-44.md), and [Minor Items](../items/minor-items-days-42-44.md). Major, recurring, or stateful subjects received standalone pages or updates as listed above. diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 77f148e..5c5923f 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -1,7 +1,7 @@ --- title: Known Passwords and Inscriptions type: stateful clues -last_updated: day-41 +last_updated: day-44 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -19,6 +19,9 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Known Passwords and Inscriptions @@ -103,3 +106,28 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Seaward Barrier flickers | began 2-3 weeks earlier, increasing, random, longest 3 seconds, clustered around 9 am, none around midnight, moving horizontally toward pylon | `data/4-days-cleaned/day-12.md` | | Azureside evacuation | evacuation would take about half a day | `data/4-days-cleaned/day-41.md` | | Perodika influence range | light returned to normal around ten miles away | `data/4-days-cleaned/day-41.md` | + +## Day 42-44 Clues and Inscriptions + +| Text, symbol, or clue | Source | Notes | +|---|---|---| +| `Badger born in freedom` | `data/4-days-cleaned/day-42.md` | Proposed name/sign for the rescued baby Badger; offered to Tor's bowl. | +| `Domain of Pengalis` | `data/4-days-cleaned/day-42.md` | Inscription on larger Goliath coin found in skull-arched room. | +| `you wear the ring of the betrayer - I can help` | `data/4-days-cleaned/day-42.md` | Ring-reflection voice to Invar; featureless woman took damage in reflection. | +| `This place is safe` | `data/4-days-cleaned/day-42.md` | Bridge statue response to tower's penny. | +| `A drug to dull the loss` | `data/4-days-cleaned/day-42.md` | Attabo response to nip. | +| `A payment made` | `data/4-days-cleaned/day-42.md` | Brass City platinum offering response. | +| `the hunt would be successful, but betrayal was at hand` | `data/4-days-cleaned/day-42.md` | Seara / Nature response to Lortesh's scale or hair. | +| `do not trust him - I did - he promised me tribute & Never received` | `data/4-days-cleaned/day-42.md` | Igraine cider response, followed by white-roses vision. | +| `Tor Protects all` | `data/4-days-cleaned/day-42.md` | Tor response to `Badger born in freedom` note. | +| `A gift crafted for a friend is the key to it all` | `data/4-days-cleaned/day-42.md` | Stitcher bowl smoke image response showing Ruby Eye and Lute. | +| `A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` | `data/4-days-cleaned/day-42.md` | Runes on Trixus's four brass rings. | +| `The father wishes freedom for all his children` | `data/4-days-cleaned/day-42.md` | Altabre offering-bowl response after Snow Sorrow coin. | +| `In her gaze, End of Days`; `One more glance a death dance`; `one brief look last breath look`; `In her stare Bones laid bare`; `in her gaze the end of days` | `data/4-days-cleaned/day-43.md` | Valentenshide / Valentenhide death-rhyme cluster from scroll and Benu book. | +| `a family reunited` | `data/4-days-cleaned/day-43.md` | Benu book image of Benu, Trixus, Garadwel, and two sphinxes, one only an outline. | +| `in her stare honey laid bare` | `data/4-days-cleaned/day-43.md` | Vulture man / force phrase; he did not remember speaking. | +| `Battery is the clue` | `data/4-days-cleaned/day-44.md` | Draconic book for Ruby Eye in Mr Moreley's room. | +| `mine felt right here yours is under real` | `data/4-days-cleaned/day-44.md` | Note with alteration / empathy orb. | +| `Taken my form give it back` | `data/4-days-cleaned/day-44.md` | Silver dragon / silver-green claw voice connected to Avalina. | +| `The window like your paintings` | `data/4-days-cleaned/day-44.md` | Paper on Mr Moreley's desk after the void was freed. | +| `seasoning` | `data/4-days-cleaned/day-44.md` | Next void-sphere clue: the seasoning was in the kitchen. | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index 4a92772..a3ae733 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -6,7 +6,7 @@ aliases: - dome - containment system first_seen: day-01 -last_updated: day-41 +last_updated: day-44 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-04.md @@ -33,6 +33,9 @@ sources: - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Barrier @@ -58,6 +61,11 @@ The Barrier is the central protective shield, dome, or containment system around - Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Harthwall did not know about. - Ruby Eye and Wrath both wanted the shell of [uncertain: Tremoon] because it helped people get in and out of the Barrier. - Day 41 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. +- Day 42 says the Barrier was weak, that the party could attune to three of Envi's rings, and that a tiny hole became noticeable after Ashkellon blessings gave Goliaths weapons, shields, and healing. +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) said the rings activate in `the Barrier` so Joy cannot leave and that sacrifices kept Joy safe. +- [Bleakstorm](../places/bleakstorm.md) warned that trips outside the Barrier could be difficult and could send people back in time at a cost. +- Day 43 says the Barrier may have been made for noble and proud reasons but was possibly bad; [Trixus](../people/trixus.md) did not like it, and a spell within the Barrier interfered with memory restoration. +- Day 44 old-school history says [Bright](../people/valententhide.md) does not work linearly in time, old mages used routes through doors and tower tunnels, and the party reached a room above the Air common room on the other side of the Barrier. ## Timeline @@ -76,6 +84,9 @@ The Barrier is the central protective shield, dome, or containment system around - `day-35`: The Barrier thickens and pulls while prisoner carts move, and outside-dome accounts describe a sand dome keeping elementals out. - `day-36`: The Barrier's divine bargains, hidden costs, shell-passage tools, and multiple prison/facility interactions become clearer. - `day-41`: Four new towers create a new Barrier around Grand Towers during a wider regional crisis. +- `day-42`: Ashkellon blessings expose a tiny hole in the Barrier, while Ruby Eye clarifies ring activation and Joy's inability to leave. +- `day-43`: Trixus identifies a memory-interfering spell inside the Barrier at Riversmeet. +- `day-44`: Old mage-school routes and Bright-related time effects show more historical Barrier-adjacent mechanisms. ## Related Entries @@ -96,3 +107,5 @@ The Barrier is the central protective shield, dome, or containment system around - Are the Barrier, sand dome, and `Bun` different names for one system or overlapping shields? - Can the divine bargains be renegotiated without worsening infertility, barrier sickness, or prisoner exploitation? - What is the strategic consequence of the new Grand Towers Barrier? +- Can the tiny hole revealed at Ashkellon be safely expanded, repaired, or used? +- What spell at Riversmeet interferes with memory restoration inside the Barrier? diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 94c8040..c2805a1 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -7,7 +7,7 @@ aliases: - barrier batteries - elemental batteries first_seen: day-14 -last_updated: day-31 +last_updated: day-44 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md @@ -18,6 +18,9 @@ sources: - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Elemental Prisons @@ -41,6 +44,11 @@ The elemental prisons are ancient containment systems that may hold or exploit p - The life prison was converted into flesh by high-level Carnamancy and siphoned by The Mother; Limnuvela survived by holding the Barrier up. - The Guilt claimed it could reset the control room and fix a prison, and later admitted it accidentally opened a prison while controlling a wizard. - Treamen, the Earth Excellence, was killed and left a jagged purple crystal skull artifact made partly from [uncertain: shield] crystal. +- Day 42 Ashkellon prison rooms contained air, light, goat, sphinx, copper-dragon, mirror, and other entities behind barriers, including [Trixus](../people/trixus.md), Steven, Hephestus, and a copper dragon from Snow Screen / Snow Sorrow. +- Emri was still imprisoned and missing soul-parts including guilt, misery, and possibly sorrow, compassion, Joy, and mercy; the elves had learned to remove soul-parts in an attempt to perfect themselves. +- Day 43 says Hephestos was only his soul, wanted a pact, and may have been asked to attack the dome; Trixus could help with memories but a spell inside the Barrier interfered. +- Cardonald's Day 43 teleportation-circle list included seven prisons with no defences, a lab with uncertain defences, Grand Towers factory/control/meeting lounge, Menagerie, Ashhellier, and five pylons. +- Day 44 recovered historical material on emotional elimination, automations, and a possible core or sphere network from the old mage school. ## Timeline @@ -53,6 +61,9 @@ The elemental prisons are ancient containment systems that may hold or exploit p - `day-27`: The Guilt offers to fix a prison and gives an Abyssal-inscribed ring. - `day-30`: Valententhide, Galatrayer, Salinay, and barrier energy depletion become urgent. - `day-31`: Treamen the Earth Excellence dies, leaving a skull artifact. +- `day-42`: Ashkellon exposes multiple prison rooms and confirms Trixus, Steven, Hephestus, the copper dragon, and Emri-related soul-part issues. +- `day-43`: Trixus is released, Hephestos's soul status is discussed, and the Riversmeet memory-interference spell is located. +- `day-44`: Riversmeet school history reveals old emotional-elimination and automation research connected to later prison and Barrier problems. ## Related Entries @@ -70,3 +81,5 @@ The elemental prisons are ancient containment systems that may hold or exploit p - How do sand and void fit the quasi-elemental model? - Why do some sources say eight imprisoned beings while Cardonal lists seven prisons? - Which prison did The Guilt accidentally open, and can its help be trusted? +- Which of the Ashkellon barrier rooms were prisons, protections, or both? +- Where are Emi's missing soul-parts or emotions, and can Trixus restore them? diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 280b97d..6139065 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -9,7 +9,7 @@ aliases: - The Guilt - Treamen first_seen: day-17 -last_updated: day-36 +last_updated: day-44 sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-19.md @@ -24,6 +24,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-44.md --- # Excellences @@ -51,6 +53,8 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - A Day 35 side note listed Pride, Lust, greed, wrath, envy, gluttony, and sloth near Lady Envy and dome information; the relationship to Excellences is unresolved. - Day 36 states The Guilt was an Avatar of Pride, Pride had been eaten by [Garadwal](../people/garadwal.md), Pride was a dark entity who wanted people to be proud, and Pride tried to disable as much as possible before being consumed. - Day 36 introduces [Wrath](../people/wrath.md), who described Wrath, Pride, Envy, and six others as nine little demons of Darkness; whether these are Excellences remains unresolved. +- Day 42 identifies [Trixus](../people/trixus.md) as an elemental of light and says Emri was missing soul-parts including guilt and misery, possibly overlapping the sin/emotion taxonomy. +- Day 44 old-school history found an alteration orb that overwhelmed Geldrin with empathy and regret, and a note implying another emotion-orb location. ## Timeline @@ -85,3 +89,4 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - Who wants The Guilt removed from council memory? - Is Lady Envy part of an Excellence/sin-title pattern, or a separate llamia leader? - Are the nine little demons of Darkness the same taxonomy as Excellences, a rival taxonomy, or overlapping titles? +- Are the removed soul-parts / emotions, empathy orb, The Guilt, and nine little demons part of one system? diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md index ae84c43..637ed8c 100644 --- a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -8,9 +8,12 @@ aliases: - Otasha's unborn nerfili baby bargain - Leptrop workaround first_seen: day-36 -last_updated: day-36 +last_updated: day-44 sources: - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Gods' Bargains Behind the Barrier @@ -28,6 +31,9 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - Ennik and Browning made many of the deals. - Harthwall did not know about half the deals made. - Ruby Eye and Carduneld discussed renegotiating some deals, breaking the inferlite curse, and addressing Barrier damage. +- Day 42 Ashkellon offering bowls answered offerings to Bridge, Attabo, Seara / Nature, Igraine, Tor, Stitcher, and Altabre, producing warnings about safety, loss, betrayal, protection, tribute, crafted gifts, and freedom for Altabre's children. +- Day 43 Attabre manifested at the Ashkellon shrine, sought atonement and justice, was angry with Benu, and was connected to Goliaths receiving a protector like Trixus. +- Day 44 old-school lore described Bright and Valentenhule as elemental-plane queens, Hannah as a priestess of Attabre, and a baby Attabre spirit intended for the Goliaths as they became Emeraldus's line. ## Related Entries @@ -35,9 +41,13 @@ Day 36 revealed that the Barrier depended on multiple bargains with gods, each a - [Grand Towers](../places/grand-towers.md) - [Bridget's Doors](bridgets-doors.md) - [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) +- [Attabre / Altabre](../people/attabre-altabre.md) +- [Valententhide / Valentenhule](../people/valententhide.md) ## Open Questions - What were all twelve divine terms? - Which terms are still enforceable, which have been bypassed, and which can be renegotiated? - Are infertility, barrier sickness, nerfili babies, and inferlite curse all results of these bargains? +- What did the Ashkellon offering responses mean by betrayal being at hand and a gift crafted for a friend being the key? +- How do Bright, Valentenhule, Bridge, and Attabre fit among the twelve divine terms? diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index a060d74..4715fd9 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -1,7 +1,7 @@ --- title: Party Inventory type: stateful inventory -last_updated: day-41 +last_updated: day-44 sources: - data/4-days-cleaned/day-03.md - data/4-days-cleaned/day-05.md @@ -18,6 +18,9 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Party Inventory @@ -47,6 +50,12 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Silver serpent pendant talisman | party | `day-35` | `data/4-days-cleaned/day-35.md` | Found on the snake-bodied boss; magical talisman described as +1 cleric cash rolls [unclear] with Noxia catch spells. | | Bob's shell | party | `day-35` | `data/4-days-cleaned/day-35.md` | Given by Skum when he appeared to rescue Elementarium. | | Snowflake coin | narrator / party | `day-36` | `data/4-days-cleaned/day-36.md` | Lord Bleakstorm gave a one-use portal coin to Bleakstorm. | +| Envi's fifth ring | Dirk | `day-42` | `data/4-days-cleaned/day-42.md` | Given by Anastasia; by 15:00 the party could attune to three of the rings. | +| Two orange-and-blue feather relics | Geldrin / party | `day-42` | `data/4-days-cleaned/day-42.md` | Hidden behind the Benu / Guradwal picture; later Garadwal's feather functioned as one-person communication. | +| Papa'e Munera black orb fragment | Invar / party | `day-43` | `data/4-days-cleaned/day-43.md` | Invar opened the dwarf blacksmith's box; the fragment wants reunion with the rest of itself and [uncertain: unrasorak]. | +| Garadwal's feather | party | `day-43` | `data/4-days-cleaned/day-43.md` | Used as a one-person walkie-talkie to speak with Garadwal. | +| Cardonald teleportation-circle list | party | `day-43` | `data/4-days-cleaned/day-43.md` | Lists seven prisons, lab, Grand Towers sites, Dunnendale gate, Arrofarc mines, Goldenswell impact site, Menagerie, Ashhellier, and pylons. | +| Void orb / sphere | party | `day-44` | `data/4-days-cleaned/day-44.md` | Left after the void entity recognized Brotor's eye and vanished; party needs eight spheres total. | ## No Longer Held or Transferred @@ -98,3 +107,14 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Bracelet of locating | `day-41` | `data/4-days-cleaned/day-41.md` | Given to Errol for Dirk's dad; Errol reported no bracelet halfway from Sunset Vista to Azureside. | | Searu's Arrow | `day-41` | `data/4-days-cleaned/day-41.md` | +2 spear/arrow with once-per-day auto-critical and possible three-hit slaying effect; holder not explicit. | | Godmount pills | `day-41` | `data/4-days-cleaned/day-41.md` | Basalisk said they might help, with note `he's an idiot`; not confirmed received. | +| Three Finger Dune Shwelter's black-feather communication brick | `day-42` | `data/4-days-cleaned/day-42.md` | It flew to other birds; whether the party retained access is unclear. | +| Treamon's skull | `day-42`, `day-44` | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-44.md` | Used for meteor strike and to make a new core; charge/cooldown unclear. | +| Flesh-crafting wand | `day-42`, `day-43` | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Found in observatory room; Perodita later wanted flesh-crafting wands. Custody and count unclear. | +| Barrier opener / dome opener and barrier tools | `day-43` | `data/4-days-cleaned/day-43.md` | Retrieved from Ashkellon after Trixus/Garadwal confrontation; final holder unclear. | +| Magical scrolls obtained by Geldrin | `day-43` | `data/4-days-cleaned/day-43.md` | Received just before teleportation to Ashkellion; exact scrolls unclear. | +| Geldrin's arcane Draconic teleport/seeing scroll | `day-44` | `data/4-days-cleaned/day-44.md` | Extremely powerful; may reveal where `they` went. | +| Alteration / empathy orb | `day-44` | `data/4-days-cleaned/day-44.md` | Geldrin removed it and was overwhelmed with empathy/regret; final custody unclear. | +| Janitor's broom | `day-44` | `data/4-days-cleaned/day-44.md` | Required to open the tower route; custody after Browning took and returned it unclear. | +| Green liquid / possible Noxia blood | `day-44` | `data/4-days-cleaned/day-44.md` | Morgana bought it; it came from the desert and wanted to return to the rest of itself. | +| Power armour, automaton core, black crystal door apparatus | `day-44` | `data/4-days-cleaned/day-44.md` | Found above the Air common room; custody/use not recorded. | +| Empty glass orb and void-dust instructions | `day-44` | `data/4-days-cleaned/day-44.md` | Instructions say to gather dust, take it to the Aurises, and return to Air room. | diff --git a/data/6-wiki/items/minor-items-days-42-44.md b/data/6-wiki/items/minor-items-days-42-44.md new file mode 100644 index 0000000..f0c3b60 --- /dev/null +++ b/data/6-wiki/items/minor-items-days-42-44.md @@ -0,0 +1,35 @@ +--- +title: Minor Items from Days 42, 43, and 44 +type: items rollup +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Minor Items from Days 42, 43, and 44 + +| Item or resource | Context | Outcome | +|---|---|---| +| Envi's fifth ring, ring-reflection voice, three-ring attunement | Anastasia gave Dirk the fifth ring; Invar heard `ring of the betrayer`. | [Rings of Joy, Envoi, and Dirk](rings-of-joy-envoi-and-dirk.md), inventory/open thread. | +| Black-feather communication brick and bird | Three Finger Dune Shwelter's resistance communication device. | Party Inventory unclear custody / [Ashkellon](../places/ashkellon.md). | +| Linen basket, dirty soap, new linen, towel pile, dagger in Araks's back | Ashkellon worker-rescue details. | Rollup/status. | +| Domain of Pengalis Goliath coin, old tower coins, dragon bone-chip currency, Goliath / Brass City / Dumnen / Snow Sorrow currencies | Tower and treasure-hall currencies. | Party Treasury / rollup. | +| Offering bowls, tower's penny, nip, Brass City platinum, Lortesh's scale / hair of Nature, cider bottle, note `Badger born in freedom`, cloak in Stitcher's bowl | Goliathified god-statue offerings and responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md), treasury/inventory. | +| Two large feathers with orange and blue feathers and beads | Hidden behind Benu / Guradwal picture; later Garadwal communication used a feather. | Party Inventory; [Garadwal](../people/garadwal.md). | +| Red and blue crystals, dwarf-and-dragon-head rug, ornate map of Pentacity slates, four ornate swords, four copper pylons, barrier-opening wheels | Ashkellon tower infrastructure and prison items. | [Ashkellon](../places/ashkellon.md), [Elemental Prisons](../concepts/elemental-prisons.md). | +| Treamon's skull, health pipe, Bridge coin, Thuvia's coin, Geldrin's humming book, flesh-crafting wand, books on Noxia and Benu/Garadwal/Trixus | Day-42 battle and research items. | Party Inventory / [Noxia](../people/noxia.md), [Trixus](../people/trixus.md). | +| Trixus's brass rings | Rings on Trixus's paws with Altabre inscription. | [Trixus](../people/trixus.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Time-detecting device at Bleakstorm | Detected Dirk missing a day. | [Bleakstorm](../places/bleakstorm.md), open thread. | +| Disintegrated scroll, `In her gaze, End of Days`, moth picture-frame receipt, wizard chess board, Invar's glowing box, tomes of newly discovered places | Day-43 Harthall / Goldenswell clues. | Rollup/open threads; [Papa'e Munera](../people/papae-munera.md). | +| Benu's glowing open book and five Benu books | Drew answers and death warnings; five books in Goldenswell, Snowsorrow, Dumnensend, Freeport, Harthall. | [Benu](../people/benu.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Hawthorn lost-city books, Ruby Eye biography of Hawthorn, giant bees, winter rose, winter-flowering plants | Dwarven lost-city and Hawthorn botanical resources. | Rollup/open thread. | +| Papa'e Munera black orb | Fragment of Papa'e Munera in Invar's box. | [Papa'e Munera](../people/papae-munera.md), inventory. | +| Garadwal's feather, sending stones, magical scrolls, barrier opener / dome opener, barrier tools, Cardonald teleportation circles | Day-43 strategic resources. | Party Inventory / [Garadwal](../people/garadwal.md), [Elemental Prisons](../concepts/elemental-prisons.md). | +| Harthall old lab key, Geldrin's arcane Draconic teleport/seeing scroll, fruit and vegetables, wrestler throne cart | Day-44 opening resources. | Inventory/open threads. | +| Head teacher necklace, picture chest, sceptre key, alteration/empathy orb, note `mine felt right here yours is under real` | Old school office clues. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md), inventory/open thread. | +| Dunner-style pot and food, ancient dragon scroll, Ruby Eye self-reincarnation spell, student robes, Hammerguard embroidery | Old school social/classroom items. | Rollup; inventory where custody unclear. | +| Tale of Two Sisters, Lord of Bleakstorm and the Gnomes, janitor's broom, cursed/uncursed healing potions, green liquid / possible Noxia blood | Day-44 books and route/curse items. | [Bleakstorm](../places/bleakstorm.md), [Noxia](../people/noxia.md), inventory/open thread. | +| Reborn stone, black crystal door, power armour, purple crystals, copper wire, automaton core, Great Farmouth rug, waterwheel blueprints, Larn chain and cat collars | Room above Air common room and Goldenfields quarters. | Rollup/open threads. | +| Coloured conjuration objects, pixie object, Treamon's-skull core, Mr Moreley's smoke sphere, draconic book for Ruby Eye, baby sphinx picture | Conjuration and Mr Moreley clues. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md), [Void Spheres](void-spheres.md). | +| Big telescope, astronomy blackboards, hockey puck, Brotor's eye, orb of void, empty glass orb, dust-filling instructions, kitchen `seasoning` | Void sphere chain. | [Void Spheres](void-spheres.md). | diff --git a/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md b/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md index 0f544d7..ca4950b 100644 --- a/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md +++ b/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md @@ -5,12 +5,15 @@ aliases: - Joy's Teddy Ring - Dirk's Ring - Envoi's ring + - Envi's fifth ring + - ring of the betrayer first_seen: day-05 -last_updated: day-16 +last_updated: day-42 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-42.md --- # Rings of Joy, Envoi, and Dirk @@ -26,20 +29,28 @@ Several rune rings connect [Joy](../people/joy.md), [Envoi](../people/envoi.md), - Dirk's ring glowed when placed on a statue with another ring. - Envoi wore five rings. - Envoi's small ring was described as `a sacrifice made to live eternal, father & daughter`. +- On `day-42`, Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. +- In Ashkellon, a voice addressed Invar as wearing `the ring of the betrayer`, and a featureless woman took damage in the ring's reflection. +- Ruby Eye said the rings activate in `the Barrier` so Joy cannot leave and taught the party ring lore as proof of identity. ## Timeline - `day-05`: The party finds Joy's teddy ring and Dirk's similar ring becomes significant. - `day-06`: Ring, pact, clone, and Joy grave clues converge. - `day-16`: Envoi's ring and five-ring history deepen the sacrifice theme. +- `day-42`: Envi's fifth ring, three-ring attunement, the `ring of the betrayer` voice, and Ruby Eye's Barrier activation explanation become active clues. ## Related Entries - [Joy](../people/joy.md) - [Envoi](../people/envoi.md) - [Barrier Observatory](../places/barrier-observatory.md) +- [Barrier](../concepts/barrier.md) +- [Valententhide / Valentenhule](../people/valententhide.md) ## Open Questions - Did the rings bind souls, enable clones, preserve Envoi, resurrect Joy, or all of these? - Who was the other party to the bargain? +- Why do the rings activate in the Barrier, and why does that prevent Joy from leaving? +- Who is the betrayer named by the ring voice? diff --git a/data/6-wiki/items/void-spheres.md b/data/6-wiki/items/void-spheres.md new file mode 100644 index 0000000..1d896f9 --- /dev/null +++ b/data/6-wiki/items/void-spheres.md @@ -0,0 +1,41 @@ +--- +title: Void Spheres +type: item set +aliases: + - orb of void + - void orb + - eight spheres + - Brotor's gift +first_seen: day-44 +last_updated: day-44 +sources: + - data/4-days-cleaned/day-44.md +--- + +# Void Spheres + +## Summary + +The void spheres are a set of eight containment or power objects discovered through the old mage-school astronomy and Mr Moreley clues. + +## Known Details + +- A voice in the astronomy room had a gift for Brotor and said Mr Moreley had taken the void; the gift was part of the void. +- Squall's Belt appeared as a dark eclipse shape with writing rather than a normal constellation. +- Geldrin put the hockey puck into the void, and the void recognized `its lord` after the party said they had Brotor's eye. +- The void tried to enter Dirk's mind, confirmed it was free, and disappeared, leaving an orb of void like the smoke orb in Mr Moreley's room. +- The party learned they need eight spheres in total. +- Instructions said to gather dust, take it to the Aurises who put it in the ball, and return to the Air room. +- The next leads were Ruby Eye's old stomping ground / Air common room and the kitchen, where the `seasoning` was kept. + +## Related Entries + +- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) +- [Garadwal](../people/garadwal.md) + +## Open Questions + +- What do the eight spheres contain or power? +- Is the void sphere connected to Garadwal, Brotor / Brutor, Mr Moreley, or Squall's Belt? +- Who are the Aurises? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 834d3cd..cc800df 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -36,6 +36,9 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Open Threads @@ -110,3 +113,50 @@ sources: - What price or betrayal risk comes with the Peridot Queen's aid through Basalisk? - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused the narrator's cracked-eggshell dragon dream and temporary mental-stat disadvantage? +- What does Dirk's Goliath-and-fat-bellied-dragon dream mean about links to dragons, Goliaths, or ancestral figures? +- Is [Envoi](people/envoi.md) trapped, allied, hostile, or divided between Ruby Eye, Mama Harthall, the rings, and dark-demon deals? +- What exact relationships connect [Peridita](people/peridita.md), Lortesh's children, Emeredge, Willow-wispa, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Lapis, Heady, Plague, and [Galimma](people/galimma-peridot-queen.md)? +- What happened to resistance members who used Three Finger Dune Shwelter's black-feather communication device to contact the outside? +- Did Badger survive after Ashkellon, and did the name `Badger born in freedom` become a real resistance symbol? +- Who made the Ashkellon skull arches, skinned Goliath skulls, Domain of Pengalis coins, and possible Lortesh lair, and why did the skulls still moan? +- Who is the featureless woman seen through the `ring of the betrayer`, and is she [Valententhide](people/valententhide.md)? +- What do the Ashkellon offering responses mean: betrayal at hand, tribute never received, and `a gift crafted for a friend is the key to it all`? +- Can [Hephestus / Hephestos](people/minor-figures-days-42-44.md) be trusted, and what air entity did he warn Morgana not to free? +- Where is [Brutor Ruby Eye](people/brutor-ruby-eye.md) after Day 42, who has him, and why can neither Cardonald nor Bleakstorm find him? +- What is the larger status of [Noxia](people/noxia.md) after the Noxia Beast avatar died, and is Noxia blood causing corrupted lands? +- What emptied Tradesmells of dragons and Goliaths? +- What are Emri / Emi's missing soul-parts or emotions, where are they, and can [Trixus](people/trixus.md) restore them? +- Why did [Attabre / Altabre](people/attabre-altabre.md) put Trixus to sleep, and why is Attabre angry with Benu? +- What day is Dirk missing according to [Bleakstorm](places/bleakstorm.md)'s time device? +- What cost comes with Bleakstorm's time travel, and who is his lost friend [uncertain: leechus]? +- What does Bridge require to free Perodita, and what does releasing [Valententhide](people/valententhide.md) under the god rule mean? +- Who is the pale dwarf with black dreadlocks and a crown who can help find Ruby Eye? +- What are the full Benu-book family names, including Anadreste, the hidden Gardwel name, Trixus, and the missing unnamed sibling? +- What are the lost dwarf cities of Grincray / Grim & Cray, why is Mashir the route, and why is there no third-city book? +- What is [Papa'e Munera](people/papae-munera.md), where is the rest of him, and who or what is [uncertain: unrasorak]? +- What blocks lost knowledge retrieval, and is it tied to flesh-crafting wands, Barrier magic, or the Riversmeet memory-interference spell? +- What are the Heathmoor plagues if they are not barrier sickness, and why are the people not healing with the land? +- Why are Ruby Eye and Errol possibly not on the same plane? +- What do Cardonald's teleportation-circle destinations reveal about undefended prisons, the lab, Grand Towers, Menagerie, Ashhellier, and broken Aegis on Sands? +- Who built Morgana's statue, and how fast did her Goliath-child healing become legend? +- What is in Harthall's old lab, and how does its key help access the Howling Tombs? +- How should Geldrin's arcane Draconic teleport/seeing scroll be used to understand where `they` went? +- What exactly happened at Ruby Eye's melted house, his wife's grave, and Valentinheide killing Emi's wife? +- Why was the Riversmeet Kasha temple notable, and what local role do Hydrum, Igraine, Larn, and Kasha temples play? +- What are the rules of the Riversmeet Menagerie / old mage-school displacement, time, and planar rooms? +- Who are Acroneth, Crindler, Belocoose, and the sphinx on another plane? +- What does the empathy alteration orb mean by `mine felt right here yours is under real`? +- How do the serpans' sphinx book, underground city, Grincray, [Trixus](people/trixus.md), and the sixth sphinx connect? +- What future knowledge did Mr Moreley recognize in Geldrin's ancient dragon scroll, and what was Harthall hiding from the Gold Dragon Council? +- What was Ruby Eye's eye-removal final project, and why did he recruit Geldrin to join Everard, Thomas / Enis, and Valenth? +- What is the narrator's Evalina Harthall / Miana / Avalina identity, and why did a silver dragon or silver-green claw demand its form back? +- What did [Bright](people/valententhide.md), Valentenhule, Great Farmouth, gnomes, merfolk, and Grand Towers technology really have to do with each other? +- What did Enis mean by Geldrin being touched by the lady of destruction, and what dark magic was Enis researching? +- What is the green liquid / possible Noxia blood from the desert, and what came with the party? +- Who was Hannah, how was she wiped from time and space, and why did the party forget her name? +- Who owned or was meant to use the black crystal door power armour, automaton core, Great Farmouth rug, and gnomish setup? +- What was Professor Arnisimus Goldenfields's role in Goldenswell waterwheel plans, Larn cat symbolism, and the old school? +- What did the baby Attabre spirit, Emeraldus's line, killed green dragons, and creation of Wyrmdown reveal about Goliath history? +- What does `Battery is the clue`, the sixth sphinx, and Mother hive for the worm using Attabre excellence mean? +- What do the astronomy room's true moons and Squall's Belt reveal about Pri-moon, the second moon, Tri-moon, and hidden sky writing? +- What are the [Void Spheres](items/void-spheres.md), why are eight needed, and what are the Ruby Eye old stomping ground and kitchen `seasoning` leads? diff --git a/data/6-wiki/people/attabre-altabre.md b/data/6-wiki/people/attabre-altabre.md new file mode 100644 index 0000000..64c85da --- /dev/null +++ b/data/6-wiki/people/attabre-altabre.md @@ -0,0 +1,44 @@ +--- +title: Attabre / Altabre +type: god or father figure +aliases: + - Attabre + - Altabre + - Protector of the Brass city + - father of the sphinxes +first_seen: day-42 +last_updated: day-44 +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Attabre / Altabre + +## Summary + +Attabre or Altabre is a god or father figure tied to Brass City, Benu, Garadwal, Trixus, Anadreste, and a baby Attabre spirit destined for the Goliaths. + +## Known Details + +- Trixus's brass rings name Altabre as Protector of the Brass city, `Salvation to his Children`, first of his name and fifth of his kind. +- A shrine offering on `day-42` produced the words: `The father wishes freedom for all his children.` +- Day 43's Benu book listed family names as a missing unnamed one, Anadreste, Benu, hidden Gardwel, and Trixus. +- Attabre manifested at the Ashkellon shrine after Brass City platinum was offered and said he sought atonement and justice. +- Attabre was angry with Benu, and Goliaths were due to get a protector like Trixus. +- Day 44 mentions Hannah as a priestess of Attabre and a baby Attabre spirit brought in for the Goliaths as they became Emeraldus's line. + +## Related Entries + +- [Trixus](trixus.md) +- [Benu](benu.md) +- [Garadwal](garadwal.md) +- [Papa'e Munera](papae-munera.md) +- [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) + +## Open Questions + +- Who is the fifth sphinx described as father? +- Is Attabre the same as Altabre, or are these variant spellings of a title and a deity? +- What task did Attabre give Trixus, and why was Trixus not going to achieve it? diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md index 82ff762..8f43b1c 100644 --- a/data/6-wiki/people/benu.md +++ b/data/6-wiki/people/benu.md @@ -1,18 +1,22 @@ --- title: Benu type: person +aliases: + - goat-headed sphinx first_seen: day-29 -last_updated: day-30 +last_updated: day-43 sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md --- # Benu ## Summary -Benu is a Dunnersend ally or authority figure who helped secure support for future wars and could provide temple, messaging, and hero's feast support. +Benu is a Dunnersend ally or authority figure later revealed as one of Altabre's sphinx children, connected to [Garadwal](garadwal.md), [Trixus](trixus.md), the elves, and the great tower. ## Known Details @@ -20,12 +24,30 @@ Benu is a Dunnersend ally or authority figure who helped secure support for futu - Benu stayed in Dunnersend and planned to build a temple in the city. - Benu could message Cardenald and ask her to meet at the Dunnersend shrine. - Benu could create a hero's feast before the army moved. +- Day 42 found an out-of-place picture of Benu / Guradwal / a goat-headed sphinx dedicated to the Warriors of the Lion from the Dunemin; hidden behind it were two large orange-and-blue-feathered relics. +- A book in Ashkellon described Benu, Garadwal, and Trixus as the last three of Altabre's children who walk on earth. +- Benu was protector of the elves and helped construct the great tower, but did little protection and instead trained them in art and poetry until they became obsessed with it. +- The book says Benu saw errors in its ways, left for an unknown reason, and hid. +- On Day 43, Benu appeared at Ashkellon when summoned by vulture-men contact, stood between the party and Trixus / Garadwal, fought Garadwal, and later disappeared when Attabre answered the shrine. +- Emi said the elves' protector who taught them how to remove emotions was Benu. + +## Timeline + +- `day-29`: Benu helps secure Dunnersend support and remains to build a temple. +- `day-30`: Benu can contact Cardenald and provide hero's feast support. +- `day-42`: Ashkellon sources connect Benu to Garadwal, Trixus, Altabre, the elves, the great tower, and hidden feather relics. +- `day-43`: Benu appears in Ashkellon, fights Garadwal, and is implicated in elven emotion-removal techniques. ## Related Entries - [Dunnersend](../places/dunnersend.md) - [Lortesh](lortesh.md) +- [Trixus](trixus.md) +- [Attabre / Altabre](attabre-altabre.md) +- [Ashkellon](../places/ashkellon.md) ## Open Questions - What office, faith, or authority does Benu hold in Dunnersend? +- Why did Benu abandon or fail his post, and why is Attabre angry with him? +- How much responsibility does Benu bear for elven soul-part or emotion removal? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 336c0b7..d903067 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,7 +5,7 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-36 +last_updated: day-44 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md @@ -18,6 +18,9 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Brutor Ruby Eye @@ -42,6 +45,11 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - On Day 36, Ruby Eye appeared still convalescing, travelled in the party's bag, and wanted the crystal shell / shell of [uncertain: Tremoon] because it helped with passage through the Barrier. - Day 36 revealed Ruby Eye's pact with [Wrath](wrath.md), made after he saw how much power Browning had through Pride; Ruby Eye later shouted Wrath back into his eye. - Ruby Eye explained that the Grand Towers trinkets were part of a bargain, that gods required favours, priest communication, and boons, and that Ennik and Browning made many deals. +- On Day 42, a false Ruby Eye illusion was found in an Ashkellon dome while the real Ruby Eye dispelled trap magic, taught the party ring activation as proof of identity, and said the rings activate in the Barrier so Joy cannot leave. +- Ruby Eye said his pacts with Kashe were his downfall and that sacrifices by him and Joy's mother kept Joy safe; after the battle, Ruby Eye was missing and out of Bleakstorm's sight. +- Day 43 records that Ruby Eye was no longer welcome at the pale-skinned, black-dreadlocked king's city; later Cardonald could not find Ruby Eye and thought he might not be on the same plane. +- Day 44 places young Ruby Eye in the old Riversmeet mage school, working on a final project to remove his eye, recruiting Geldrin into a group with Everard, Thomas / Enis, and Valenth, and using a self-reincarnation spell. +- Mr Moreley recognized Geldrin's ancient dragon scroll as something still being worked on and suspected Harthall was keeping things from the Gold Dragon Council; a later draconic book was left where only Ruby Eye would find it and said `Battery is the clue`. ## Timeline @@ -55,6 +63,9 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - `day-28`: Rubyeye explains Grand Towers and prison-control architecture. - `day-30`: Cardenald resurrects Rubyeye, and he resumes active support. - `day-36`: Ruby Eye returns to Grand Towers and Harthwall-related crises, explains bargain lore, and is revealed to have been entangled with Wrath. +- `day-42`: Ruby Eye proves his identity with ring lore, explains Joy-related sacrifices, and then goes missing. +- `day-43`: Cardonald cannot locate Ruby Eye or Errol, possibly because they are not on the same plane. +- `day-44`: The party encounters young Ruby Eye in old mage-school history and finds a draconic book intended for him. ## Related Entries @@ -64,6 +75,8 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - [Envoi](envoi.md) - [Infestus](infestus.md) - [Cardonald's Desert Laboratory](../places/desert-laboratory.md) +- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) +- [Void Spheres](../items/void-spheres.md) ## Open Questions @@ -73,3 +86,6 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - What book did Rubyeye obtain from Aquaria, and did it contribute to the death at the desert laboratory? - Why is Rubyeye connected to both the missing dwarf city and the missing Goliath city? - Are the skull visions showing Rubyeye's last witnessed events, current surveillance through moon reflections, or both? +- Where is Ruby Eye after Day 42, and why can Cardonald and Bleakstorm not locate him? +- What was Ruby Eye's eye-removal final project meant to accomplish? +- What does `Battery is the clue` mean in the book left for Ruby Eye? diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md index 0ea5335..9b70783 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/edward-browning.md @@ -3,8 +3,10 @@ title: Edward Browning type: person aliases: - Browning + - Everard Browning + - Everard first_seen: day-23 -last_updated: day-41 +last_updated: day-44 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md @@ -14,6 +16,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Edward Browning @@ -35,6 +39,10 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Day 36 Grand Towers visions show Browning with Pride's power, wanting the biggest tower and to be the greatest wizard of all time, trapping Garadwal downstairs, making Ruby Eye obey him, activating a device that made Harthwall disappear, and contacting a giant green dragon to help get rid of his husband. - Day 36 memory tampering showed Icefang shouting at Browning before a dark elf dropped a grub in Icefang's ear. - Day 41 reports four towers springing out of the ground around Grand Towers and making a new Barrier; Browning's responsibility is not confirmed but remains highly relevant. +- Day 43 reports that Mr Browning did not like Emi's dark-skinned elf apprentice, that Hephestos may have been asked to attack the dome by Browning, and that Browning's reputation as a nice man conflicts with what the party has seen. +- Day 44 places Everard Browning as a student or young mage in the old Riversmeet mage school, asking about Bleakstorm's immortality and planning to reach the tower through tunnels with the janitor's broom. +- Browning's old group wanted to see secrets of emotional elimination, memories, and automations to help defend the land because they did not think the elemental truce would last. +- Icefang warned that if Browning acted, the future could be desperate, with broken tower fields, chromatic dragons, hidden settlements, and elementals destroying things. ## Related Entries @@ -51,3 +59,4 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Who is Skutey Galvin, and what was the Justicar impersonation? - What bargain did Browning make with Pride, and did he engineer Pride's consumption by Garadwal? - Did Browning cause or exploit the new four-tower Barrier around Grand Towers? +- Did Browning's student-era tunnel expedition cause the later Grand Towers, automations, memory, or emotion-removal disasters? diff --git a/data/6-wiki/people/envoi.md b/data/6-wiki/people/envoi.md index b6f7ab4..0223c7f 100644 --- a/data/6-wiki/people/envoi.md +++ b/data/6-wiki/people/envoi.md @@ -10,7 +10,7 @@ aliases: - The Mage - Visage Envoi first_seen: day-05 -last_updated: day-30 +last_updated: day-43 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -20,6 +20,8 @@ sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md --- # Envoi @@ -41,6 +43,10 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - Enwi had been tapping life force from his prison, and that replicated shade to the system weakened all prisons. - The Mother repurposed Envi's clone in Envi's lab, and her spellbook used the same cipher and spells as Envi's. - Enwi's gloves were later located in the Goliath Tower in the Oasis, implying Enwi died and went there without being released. +- Day 42 council lore said Envi might be trapped, but whose side he was on remained uncertain, and that Envi had been part of deals with dark demons. +- Anastasia gave Dirk Envi's fifth ring; by 15:00 the party could attune to three of the rings. +- Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices were made to keep Joy safe and eternal. +- Day 43 says Wroth trapped Envy in Mama Harthall's head the same way Envy is in Ruby Eye's, suggesting Envy can be contained in people or minds. ## Timeline @@ -52,6 +58,8 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - `day-25`: Enwi's life-force siphoning is identified as a prison-system-wide weakness. - `day-26`: The Mother uses Envi's clone and cipher during the life-prison and Baytail Accord crisis. - `day-30`: Enwi's gloves are located in the Goliath Tower in the Oasis, and Enwi's ring pact is noted. +- `day-42`: Envi's possible imprisonment, dark-demon deals, fifth ring, and Joy-related ring activation become central. +- `day-43`: Wroth's Envy-in-Mama-Harthall account reframes Envy/Envi containment in minds. ## Related Entries @@ -68,3 +76,4 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - Did his attempt to save Joy damage the Barrier? - Are Envoi, Enwi, Envi, and Ennui all the same person, or are some separate figures? - Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? +- Is Envi / Envy trapped, allied, hostile, or divided between rings, Ruby Eye, and Mama Harthall? diff --git a/data/6-wiki/people/galimma-peridot-queen.md b/data/6-wiki/people/galimma-peridot-queen.md new file mode 100644 index 0000000..b9ebf41 --- /dev/null +++ b/data/6-wiki/people/galimma-peridot-queen.md @@ -0,0 +1,39 @@ +--- +title: Galimma, the Peridot Queen +type: dragon or person +aliases: + - Galimma + - Peridot Queen +first_seen: day-13 +last_updated: day-42 +sources: + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md +--- + +# Galimma, the Peridot Queen + +## Summary + +Galimma, the Peridot Queen, is a self-described master spy and dangerous green/peridot dragon figure whose aid is conditional and self-interested. + +## Known Details + +- Earlier notes warned not to anger the Peridot Queen and later connected possible Peridot Queen imagery to Elementarium's green-eyed vision. +- On `day-41`, Basalisk said the Peridot Queen had contracted him to help while acting for herself. +- On `day-42`, Galimma offered information if the party agreed to leave her alone to choose mates, live freely, and put a warning sign on her lair. +- She candidly said she might kill husbands and the odd person, shed some gold, and would be neither good nor evil. +- She named or described remaining dragons connected to Lortesh and Perodika, including Emeredge, Willowspra / Willow-wispa, Toxicanthus, Rotwrake, and Verdigrim / Verdugrim. + +## Related Entries + +- [Peridita](peridita.md) +- [Lortesh](lortesh.md) +- [Basilisk / Busalish](basilisk-busalish.md) + +## Open Questions + +- Is Galimma related to Peridita, a separate peridot/green dragon, or the laughing female dragon from Morgana's vision? +- What future risk follows from agreeing to leave her alone? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 84841c0..9cbd906 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -10,8 +10,10 @@ aliases: - nightmare of the darkness - Garadwel - Garaduel + - Guradwal + - Gardwell first_seen: day-01 -last_updated: day-36 +last_updated: day-43 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-06.md @@ -24,6 +26,8 @@ sources: - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md --- # Garadwal @@ -49,6 +53,10 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Grand Towers orb lore says Garadwal was locked downstairs, heard a chair-guy through his greater gravel children, and walked into Browning's trap. - Geldrin offered Garadwal to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. - At Coalmont Falls, an automaton introduced himself as Garaduel before activating recall protocol; this spelling is preserved as a possible variant or separate automaton identity. +- Day 42 Ashkellon lore preserved Benu / Guradwal / goat-headed sphinx imagery, a hidden feather relic, and a book identifying Benu, Garadwal, and [Trixus](trixus.md) as the last three of [Altabre](attabre-altabre.md)'s children walking on earth. +- The same book says Gardwell looked after the Dumnens and enjoyed gifts, while Igraine gave the protectors gifts to heal their people. +- On Day 43, Garadwal spoke through the feather, claimed the Barrier was his, said Mother had been a useful ally, called someone the betrayer or daughter, said only one more remained perhaps Anroch or the Grab [unclear], and asked where his brother was. +- Garadwal appeared in Ashkellon for the sphinx-family reunion, refused to lay down weapons, killed the narrator, fought Benu, and was banished at 5:00. ## Timeline @@ -62,6 +70,8 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadwal moving actively. - `day-29`: Excellence says he protected the vultures after Gardwal failed, and his brother was apparently looking for him. - `day-36`: Garadwal is tied to Pride's consumption, Browning's Grand Towers trap, Geldrin's skull-throne bargain, and the Garaduel automaton variant. +- `day-42`: Ashkellon records connect Garadwal to Benu, Trixus, Altabre's children, the Dumnens, and the hidden feather relic. +- `day-43`: Garadwal's feather conversation and Ashkellon family reunion culminate in his banishment after fighting Benu. ## Related Entries @@ -71,6 +81,8 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - [Black Scales](../factions/black-scales.md) - [Cardonald's Desert Laboratory](../places/desert-laboratory.md) - [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) +- [Trixus](trixus.md) +- [Ashkellon](../places/ashkellon.md) ## Open Questions @@ -79,3 +91,4 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Has he escaped, partially escaped, or only influenced agents from prison? - Was Garadwal once a protector or leader before consuming the void lieutenant? - Is Excellence's brother the same figure as Garadwal, and why did Goliaths ask Excellence to trap him? +- What did Garadwal mean by the betrayer or daughter sitting among the party, and by only one more remaining? diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md index 3ea62e8..162f770 100644 --- a/data/6-wiki/people/icefang.md +++ b/data/6-wiki/people/icefang.md @@ -5,10 +5,13 @@ aliases: - Ice Fang - elderly gentleman in the mental palace first_seen: day-25 -last_updated: day-36 +last_updated: day-44 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Icefang @@ -25,6 +28,10 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - He said the Barrier was a good thing but too many sacrifices had been made. - In the Highden battle, a massive frost dragon burst from a black hole, seized the skeletal dragon, called Harthall `My Child`, crashed through the Barrier, and was retrieved by a water elemental. - Cardunel planned to bury Icefang near Snow Sorrow. +- Day 42 copper-dragon history says Ice Fury was about thirty to forty years older than the copper dragon, while [uncertain: Ice fang] / Atlih was noted near her boy and Snow Screen / Snow Sorrow. +- Day 43 says Lady Harthall remembered Icefang more clearly, that he cared for her, and that he and Lady Harthall assaulted Perodita while Icefang was starting to lose his mind. +- Day 44 has Altith / Icefang contact the narrator, warn that everything would fall apart, that Dad would be mad, that humans were getting ideas above their station, and that the gods would take over Snow Screen. +- Icefang's future vision if Browning acted showed broken tower fields, burning blue, black, green, and red dragons, hidden settlements, and destructive elementals. ## Related Entries @@ -38,3 +45,5 @@ Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tamper - Who ordered or carried out Icefang's memory tampering? - What was the `paysoil`, and why would it not work without Icefang? - What is Icefang's exact family relationship to Harthall? +- Are Icefang, Altith, Atlih, and Ice Fury separate names or related Snow Screen figures? +- What did Icefang mean by Dad being mad and the gods taking over Snow Screen? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index 7142726..72653aa 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -4,7 +4,7 @@ type: person aliases: - invisible Joy first_seen: day-05 -last_updated: day-30 +last_updated: day-44 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -12,6 +12,9 @@ sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Joy @@ -29,6 +32,10 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - Dirk later saw or heard invisible Joy saying they were in pain and that it burned, asking for help. - During a barrier surge at Envi's lab, Valenth saw Joy heading away, not toward a specific circle. - Errol later saw a tiefling child, possibly Joy, looking out of a window at quiet Crater's Edge around midnight. +- On Day 42, Joy appeared with Emri as two ghost figures in an Ashkellon dome; Ruby Eye said the rings activate in the Barrier so Joy cannot leave, and that his and Joy's mother's sacrifices kept Joy safe and eternal. +- In the Ashkellon library sequence, Joy warned that `they've got him` and told the party to go, probably referring to Ruby Eye. +- Day 43 records Joy's dislike of Emi's dark-skinned elf apprentice. +- Day 44 notes Joy in the old school context around Enis / Thomas, Hannah, and Cardonald's daughter. ## Timeline @@ -51,3 +58,5 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - Was Joy poisoned by Slowbane or harmed by shield-crystal-like sickness? - Is Joy's soul trapped, cloned, divided, or otherwise bound by the pact? - Was the Crater's Edge child Joy, a clone, a projection, or bait? +- Why did Joy need to live eternally, and can she ever leave the Barrier? +- Who had Ruby Eye when Joy warned `they've got him`? diff --git a/data/6-wiki/people/lady-hearthwill.md b/data/6-wiki/people/lady-hearthwill.md index 6c6defd..7202cbe 100644 --- a/data/6-wiki/people/lady-hearthwill.md +++ b/data/6-wiki/people/lady-hearthwill.md @@ -8,11 +8,13 @@ aliases: - Lady Harthall - Harthall first_seen: day-30 -last_updated: day-36 +last_updated: day-43 sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md --- # Lady Hearthwill @@ -34,6 +36,9 @@ Lady Hearthwill, possibly the same person as Lady Hearthwall / Lady Harthwall, i - Harthwall transformed in the courtyard and was slightly bigger than the Peridot Queen. - Harthwall's Raven had exploded, and several explosions occurred across her city. - Harthall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. +- Day 42 records Lady Heathwall away airwise to help with the battle heading to Emmerave. +- Day 43 records Lady Harthall remembering Icefang, gold dragons, and her and Icefang's assault on Perodita; she also reported forces from Dumnensend, the Menagerie lockdown, Heathmoor plagues, and Goldenswell politics. +- Lady Harthall transformed into a dragon at Ashkellon to catch the party after teleportation. ## Related Entries @@ -48,3 +53,4 @@ Lady Hearthwill, possibly the same person as Lady Hearthwall / Lady Harthwall, i - Which front was she fighting on, and what authority does she hold over the anti-giant response? - Was her poison or curse part of the same operation that abducted Lady Thorpe? - What is Harthall's true parentage, and is Icefang her father? +- How do Harthall's recovered memories of Icefang, gold dragons, and Perodita alter her current political or military choices? diff --git a/data/6-wiki/people/minor-figures-days-42-44.md b/data/6-wiki/people/minor-figures-days-42-44.md new file mode 100644 index 0000000..e1074be --- /dev/null +++ b/data/6-wiki/people/minor-figures-days-42-44.md @@ -0,0 +1,71 @@ +--- +title: Minor Figures from Days 42, 43, and 44 +type: people rollup +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Minor Figures from Days 42, 43, and 44 + +This rollup keeps one-off, uncertain, and supporting named figures searchable without creating placeholder pages. + +## Day 42 + +| Figure | Context | Outcome | +|---|---|---| +| Cardonald / Cardenald, Ruby Eye, Dirk Senior, Ogrim Thunyalus, Gren Boulderfist, Anita Sandsong, leader of sickly Goliaths, Blisterfoot | Council tent planning against dragons after memories returned. | Existing pages where present; rollup for one-off council figures. | +| Eva and The Mother | Memories returning since Eva slew The Mother. | Existing [The Mother](the-mother.md); Eva rollup. | +| Emeredge / Emmeredge, Willowspra / Willow-wispa, Toxicanthus, Rotwrake, Verdigrim / Verdugrim, Lapis, Heady, Plague | Dragon family list from Galimma. | Rollup; [Peridita](peridita.md), [Lortesh](lortesh.md), [Galimma](galimma-peridot-queen.md). | +| Three Finger Dune Shwelter | Ashkellon resistance contact and former slave with black-feather communication brick. | Rollup/status; [Ashkellon](../places/ashkellon.md). | +| Araks, Zekish, [uncertain: Arswales], Minthwe | Throne-room and worker-shift figures in Ashkellon. | Rollup/status; Araks killed. | +| Badger | Baby hidden in linen basket; proposed name `Badger born in freedom`. | NPC Status and rollup. | +| Anastasia | Goliath queen lady; gave Dirk Envi's fifth ring and coordinated resistance. | Rollup/status. | +| Pengalis | Named on Goliath coin as Domain of Pengalis. | Places/items rollups; identity unresolved. | +| Sefu, Holdhum, Tor, Attabo, El [uncertain: corna] / Bridge, Seara, Scorcher, [uncertain: Shielded armel] | Goliathified god statues and offering responses. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md); gods rollup via [Gods' Bargains](../concepts/gods-bargains-behind-the-barrier.md). | +| Igraine, [uncertain: Adilth], elderly human man, dwarf man, pregnant elven woman | White-roses cider vision figures. | Rollup/open thread. | +| Warriors of the Lion and Dunemin | Dedication on hidden Benu / Guradwal picture. | Rollup/open thread. | +| Lute | Seen in Stitcher smoke image with Ruby Eye about cloaks and hot hands. | Existing [Luth](luth.md) uncertain; not merged. | +| Orange-and-blue-robed dragonborn and book-carrying Goliath | Seen by Morgana in tower map room. | Rollup/open thread. | +| Hephestus / Hephestos | Air-barrier prisoner or soul; warned not to free air entity and later wanted a pact. | Rollup/open thread; [Elemental Prisons](../concepts/elemental-prisons.md). | +| Slen the librarian, The Exiled, Calameir, Blisk | Library and tower hierarchy figures while Willow-wispa was coming. | Rollup/open thread. | +| Emri / Emi and Joy | Ghost figures in dome; Emri requested Treamon's skull and lacked soul-parts. | Existing [Envoi](envoi.md) / [Joy](joy.md), status/open threads. | +| Treamon / Tremaion, Kashe / Kesha, Tellfether, medusa, statue figure, child of the Mother, Thuvia, Brother fracture | Noxia chamber battle figures and tools. | Rollup; [Noxia](noxia.md); Brother Fracture existing status. | +| Thromgore, Steven / Steve, Shuert, Lorleh, [uncertain: Ice fang] / Atlih, Eveline Heathsall / Mama, Argentum | Prison-room and copper dragon history figures. | Rollup/status; [Icefang](icefang.md) where applicable. | +| [uncertain: Shulcher], Sierra, Earth Waker | Book and Noxia-corruption history figures. | Rollup/open thread; [Noxia](noxia.md). | +| Partially ice dwarf, strapping Goliath, half-elf from Everdard, [uncertain: leechus] | Bleakstorm castle figures and lost-friend clue. | [Bleakstorm](../places/bleakstorm.md) / rollup. | +| Lady Parthabbit, Lady Heathwall, T.J. Boggins, Jin Woo | Heathwall arrival figures; TJ remained eating meat and watching opera, Jin Woo absent. | Existing or rollup/status. | + +## Day 43 + +| Figure | Context | Outcome | +|---|---|---| +| Grimby the 3rd, kobold lieutenant, Klesha, lovely Envoy, Grimby's mother, Shriek | Kobold displacement story involving Pine Springs, townsfolk killing, Harthall-like words, and missing goat man. | Rollup/open thread. | +| Wroth, Envy / Envi, Mama Harthall | Wroth trapped Envy in Mama Harthall's head like Envy in Ruby Eye's. | Existing/rollup; [Envoi](envoi.md). | +| [uncertain: brakemen], moustached fat man, raven-haired half-elf, Lord Argenthum / Argenthum | Goldenswell / Harthall street, receipt, chess, pub, and church details. | Rollup/open thread. | +| Dwarf blacksmith, golden dragonborn, vulture man, bushy-eared elf, pale dwarf with black dreadlocks and crown | Box and Benu-book scene figures. | Rollup; pale dwarf unresolved Ruby Eye lead. | +| Anadreste and missing unnamed sibling | Benu-family list and Papa'e Munera blessing. | [Attabre / Altabre](attabre-altabre.md), [Papa'e Munera](papae-munera.md). | +| Lord Hawthorn / Hacethorn, Princess Maesthon, [uncertain: Grin gray] / [uncertain: Atltrino], Princess of Grincray / princess of the lost ones | Dwarven lost-city and Hawthorn book figures. | Rollup/open thread. | +| [uncertain: Shutiny], Chorus of the Kings, Shurling, pale-skinned king with black dreads | Grincray / Mashir route figures. | Rollup; [The Chorus](the-chorus.md). | +| Lady Harthall, Emeraire Hartmor araltar, Bridlator, Emi's dark-skinned elf apprentice, Mr Browning, tradesman from rear Ironcraft air site | War, Menagerie, plague, and disappearance reports. | Existing pages or rollup/open thread. | +| Earl of Goldenswell, Harthall's niece, Lovely Brooching, Threepaws | Political/military rallying and succession details. | Rollup/open thread. | +| Anroch or the Grab [unclear], `Dad`, [uncertain: Ashtrigwos] | Garadwal feather conversation and Benu-summoning details. | Rollup/open thread. | +| Stalwart, restored Iron Knights, Dirk's father, Errol | Restored Goliath / war coordination and missing-plane clue. | Status rollup. | + +## Day 44 + +| Figure | Context | Outcome | +|---|---|---| +| Cardonald's familiar and unnamed adventurers | Reported Harthall's old lab and key for the Howling Tombs. | Status/open thread rollup. | +| Dragon slayer wrestler and two women | Riversmeet street performer on throne cart. | Rollup. | +| Black dragonborn with Igraine, Freeport guards, militia, twenty wizards | Menagerie siege. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md) / rollup. | +| Acroneth, Crindler, Belocoose, sphinx on another plane | Names from Geldrin's enrollment effect. | Rollup/open thread. | +| Arreanae, Valent's daughter, gremlin janitor, Tortish Harthall / Harthwall, Humerous Torn, Principal Grey / Mr Grey, Dribble | Old mage-school offices, founders, and trapped water elemental. | [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Serpans, four-armed vulture men, mindflayer-like wizard, Isobanne | Sphinx book and study-hall/classroom figures. | Rollup/open thread. | +| Enis / Thomas, Hannah, Bosh, Mr Moreley | Old student group and erased Hannah thread. | [Valententhide](valententhide.md), [Riversmeet Menagerie](../places/riversmeet-menagerie-and-old-mage-school.md). | +| Everard, Valenth, Brotor / Brutor, [uncertain: Tory? teacher?], Frederick Sims, Grisnak, Miana / Evalina Harthall / Avalina | Student identities and old school group. | Existing pages where present; rollup. | +| Bright, Argathum / Argenthum, Mr Cardonald, lady of destruction, very dark-skinned elf with green liquid | Lessons, god-touch, and possible Noxia blood clues. | [Valententhide](valententhide.md), [Noxia](noxia.md), rollup. | +| Altith / Icefang, Emeraldus, Tallith, Blackhold | Future warning, janitor/broom, and route figures. | [Icefang](icefang.md), rollup. | +| Professor Arnisimus Goldenfields and Arnisimus's love | Quarters with Goldenswell waterwheel plans, Larn symbol, seven cat collars. | Rollup/open thread. | +| Vita, Mr Bleakthorn, the sisters, Aurises | Conjuration, Igraine elementals, and void-dust instruction figures. | Rollup; [Void Spheres](../items/void-spheres.md). | diff --git a/data/6-wiki/people/noxia.md b/data/6-wiki/people/noxia.md new file mode 100644 index 0000000..b3b724b --- /dev/null +++ b/data/6-wiki/people/noxia.md @@ -0,0 +1,44 @@ +--- +title: Noxia +type: god, corruption, or enemy force +aliases: + - Noxia Beast avatar + - Noxia blood + - lady of destruction +first_seen: day-31 +last_updated: day-44 +sources: + - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Noxia + +## Summary + +Noxia is a destructive divine or corrupting force tied to scorpion symbolism, barrier bargain terms, corrupted earth, a Noxia chamber in Ashkellon, and possible Noxia blood found in Riversmeet's old mage school. + +## Known Details + +- Earlier auction and bargain clues connected Noxia to a holy symbol, bargain trinkets, and barrier sickness. +- On `day-42`, the party found a Noxia chamber with purple crackling energy, a green dripping blob, a medusa, a statue figure, a child of the Mother with a worm, an eyeless dog, bronze, and a telescope like Emri's. +- The party killed the Noxia Beast avatar, while a later observatory book said Noxia wanted to walk on the earth and that Noxia's blood corrupted land after a fight with Sierra. +- On `day-44`, Enis recognized Geldrin as touched by the `lady of destruction`, and a bottle of green liquid from the desert may have been Noxia blood. +- The green liquid wanted to return to the rest of itself in the desert; after time-door events, some of it had returned home. + +## Related Entries + +- [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) +- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) +- [Ashkellon](../places/ashkellon.md) + +## Open Questions + +- Is Noxia a god, a corruption, a creature, or all three? +- Did Noxia's blood cause the Azureside / Heartmoor diseased land or other poisoned regions? +- What remains after the Noxia Beast avatar's death? diff --git a/data/6-wiki/people/papae-munera.md b/data/6-wiki/people/papae-munera.md new file mode 100644 index 0000000..5c5f826 --- /dev/null +++ b/data/6-wiki/people/papae-munera.md @@ -0,0 +1,41 @@ +--- +title: Papa'e Munera +type: fragmented being +aliases: + - papa'e munera + - papael'munsera + - papael'munsera + - papa I Meurina + - black orb +first_seen: day-23 +last_updated: day-43 +sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-43.md +--- + +# Papa'e Munera + +## Summary + +Papa'e Munera is a fragmented being associated with dwarven lost-city lore, a black orb in Invar's box, Anadreste's blessing, and possible elemental-prison naming. + +## Known Details + +- Earlier prison lore included Papa I Meurina among named or described prisoners. +- On `day-43`, a dwarf blacksmith gave Invar a glowing warm box containing a small black orb with lava-stone racks and snake-head eyes. +- The orb spoke many languages, said it had been boxed for one min moon / 300 days, and identified itself as only part of papa'e munera. +- It knew where the rest of itself was and wanted the party to free him and [uncertain: unrasorak]. +- It was blessed by Anadreste and had been extracted from a lake by friends; dwarves had seen the errors of their ways and now wanted to release him. +- The Benu book's page was blank when asked for the location of papael'munsera. + +## Related Entries + +- [Attabre / Altabre](attabre-altabre.md) +- [Trixus](trixus.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) + +## Open Questions + +- Is Papa'e Munera one of the prison beings, a sphinx-family member, or a separate dwarven-lost-city entity? +- Where is the rest of him, and who or what is [uncertain: unrasorak]? diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 3e2349b..19834a9 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -9,13 +9,15 @@ aliases: - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-41 +last_updated: day-43 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md --- # Peridita @@ -33,6 +35,9 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. - Day 40 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. - Day 41 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. +- Day 42 council history said the Goliath Empire killed Perodika's parents and built a city on their bones; Perodita later headed toward Heathwall and vanished there after Bridge agreed to help free her if the party agreed to release Valentenhide under the god rule. +- Galimma's dragon-family information preserves Perodika's children or related dragons with uncertain names and locations. +- Day 43 says Lady Harthall and Icefang both assaulted Perodita, Icefang was starting to lose his mind, and Perodita later appeared bedraggled outside the Barrier wanting flesh-crafting wands and intending to get back in. ## Related Entries @@ -46,3 +51,5 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - What is her exact relationship to Lortesh / Kortesh Gravesings and the Green Dragons? - Is the laughing female dragon / Peridot Queen vision connected to Peridita, or is it a separate dragon figure? - Are Perodika, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? +- What does freeing Perodita require from Bridge, and what does releasing Valentenhide under the god rule cost? +- Why does Perodita want flesh-crafting wands? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 7539d64..8dd1dd5 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -1,7 +1,7 @@ --- title: NPC Status type: stateful people rollup -last_updated: day-41 +last_updated: day-44 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -32,6 +32,9 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # NPC Status @@ -65,6 +68,10 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Greysock Soulspindle | reincarnated as elf | `data/4-days-cleaned/day-41.md` | Elderly gnome cobbler changed after battle; Captain Sprat fetched clothes. | | Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-41.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | | Joel / revived dwarf | revived, ran home | `data/4-days-cleaned/day-41.md` | Ticking female stabbed Joel through; after the fight the dwarf was revived. | +| Badger | rescued from immediate captivity, later safety unknown | `data/4-days-cleaned/day-42.md` | Baby hidden in linen basket in Ashkellon; party proposed `Badger born in freedom` as a name if the plan succeeded. | +| Copper dragon from Snow Screen / Snow Sorrow | freed and memory restored | `data/4-days-cleaned/day-42.md` | Maggot removed from her ear; remembered Snow Screen, her boy, Lorleh, Igraine, and Verdugrim's breeding. | +| [Trixus](trixus.md) | released from barrier but still recovering/uncertain | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Initially under Slumber Imprisonment; later released and could possibly help with memories. | +| Stalwart and restored Iron Knights | restored/active | `data/4-days-cleaned/day-43.md` | Stalwart was the first restored Iron Knight; purification ritual removed ailment, and Morgana healed children. | ## Dead or Believed Dead @@ -92,6 +99,10 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Black-eyed snake-bottom boss | killed | `data/4-days-cleaned/day-40.md` | Dollarmen boss at Cheery & Cherry, revealed by Moonbeam. | | [unclear] Cezzerliksygh | killed | `data/4-days-cleaned/day-41.md` | Uncertain named battle figure. | | [unclear] Neutron to chitra Entoldust Darkness Born | killed | `data/4-days-cleaned/day-41.md` | Uncertain named battle figure. | +| Araks | killed by party | `data/4-days-cleaned/day-42.md` | Dragonborn in Ashkellon throne room; body returned to throne with dagger in back. | +| Emmeredge | dead | `data/4-days-cleaned/day-42.md` | Died during the Ashkellon Noxia-chamber battle. | +| Noxia Beast avatar | killed | `data/4-days-cleaned/day-42.md` | Avatar killed, but Noxia's larger status remains open. | +| Garadwal | banished | `data/4-days-cleaned/day-43.md` | Benu and Garadwal fought outside Ashkellon; Garadwal was banished at 5:00. | ## Missing, Disappeared, or Unresolved @@ -119,6 +130,11 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Lord Bleakstorm | dead but active outside dome | `data/4-days-cleaned/day-36.md` | Delivered Icefang's message and gave snowflake coin; cannot remain inside dome long. | | Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | | Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | Basalisk reported all contact lost with Snow Sorrow and Perens going missing. | +| [Brutor Ruby Eye](brutor-ruby-eye.md) | missing / possibly off-plane | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Joy warned `they've got him`; after Ashkellon Ruby Eye was missing, out of Bleakstorm's sight, and Cardonald could not find him. | +| Emri / Emi | imprisoned and incomplete | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Missing guilt, misery, possibly sorrow, compassion, Joy, and mercy; Trixus might restore emotions if the emotions can be found. | +| Steven / Steve | missing from barrier after confrontation | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Thromgore's boy had helped contain Valentenhide and wanted to `Bob stuff`; later no longer in his barrier. | +| Errol | missing / possibly off-plane | `data/4-days-cleaned/day-43.md` | Cardonald could not find Ruby Eye or Errol, perhaps because they were not on the same plane. | +| Hannah | wiped from time and space | `data/4-days-cleaned/day-44.md` | Valententhide said Hannah should not be visible; after return the party remembered only Hannah turning to dust in a cave, not her name. | ## Captive, Imprisoned, or Detained @@ -136,6 +152,9 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Harthwall | imprisoned then released/curse unresolved | `data/4-days-cleaned/day-36.md` | Wrath put her in the ground with imprisonment using a silver dragon statue. | | Valenthielles | left in prison by recent visitors | `data/4-days-cleaned/day-36.md` | Dark prison entity said visitors cleaned up quickly and left Valenthielles there. | | Icefang's ice elemental | imprisoned at Rimewock / Rimewatch | `data/4-days-cleaned/day-36.md` | Water elementals required the party to agree to free it. | +| Hephestus / Hephestos | imprisoned soul or barrier entity | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Door had ninth-level Banishment; later described as only his soul and wanted a pact to be let out. | +| Papa'e Munera fragment | boxed fragment with party | `data/4-days-cleaned/day-43.md` | Black orb in Invar's box; wants reunion with the rest of itself and [uncertain: unrasorak]. | +| Dribble and fresh water elemental | released and temporarily allied | `data/4-days-cleaned/day-44.md` | Dribble was in a jade/grey desk object; a fresh water elemental agreed to join the party around the school for a while. | ## Allies and Contacts @@ -160,6 +179,9 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Frilleshanks and Joel | Snake Slayers support | `data/4-days-cleaned/day-40.md` | Frilleshanks streamlined Snake Slayers; Joel would help operate it. | | Ulfarun | remaining Dollarmen leader | `data/4-days-cleaned/day-40.md` | Became next in command after boss died; Gnoll Longfang tried to stab him. | | Grinan, Hayes, and Searu's settlement | temporary allies/hosts | `data/4-days-cleaned/day-41.md` | Granted hospitality and advised seeking those wronged by the dragon. | +| Three Finger Dune Shwelter | resistance guide/contact | `data/4-days-cleaned/day-42.md` | Ashkellon resistance member and Emeredge's dune dweller; agreed to help find resistance. | +| Anastasia | Goliath queen/resistance ally | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-43.md` | Gave Dirk Envi's fifth ring; later coordinated restored Goliaths and a pincer movement on Vathkell. | +| [Galimma, the Peridot Queen](galimma-peridot-queen.md) | information broker, dangerous ally | `data/4-days-cleaned/day-42.md` | Offered intelligence in return for being left alone to live on her own terms. | ## Hostile or Dangerous @@ -180,3 +202,5 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-40.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | | [Peridita](peridita.md) / Perodika | active regional dragon threat | `data/4-days-cleaned/day-41.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | | Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-41.md` | Ran off during the Azureside battle. | +| [Peridita](peridita.md) | outside Barrier, active threat | `data/4-days-cleaned/day-43.md` | Appeared bedraggled outside the Barrier, wanted flesh-crafting wands, and intended to get back in. | +| [Noxia](noxia.md) | larger threat unresolved | `data/4-days-cleaned/day-42.md`, `data/4-days-cleaned/day-44.md` | Noxia Beast avatar killed, but Noxia blood and desert green liquid remain active clues. | diff --git a/data/6-wiki/people/trixus.md b/data/6-wiki/people/trixus.md new file mode 100644 index 0000000..f17a090 --- /dev/null +++ b/data/6-wiki/people/trixus.md @@ -0,0 +1,44 @@ +--- +title: Trixus +type: sphinx or elemental of light +aliases: + - Trixius + - Tixun + - Benu's little brother + - elemental of light +first_seen: day-42 +last_updated: day-43 +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md +--- + +# Trixus + +## Summary + +Trixus, also Trixius or Tixun, is Benu's little brother, one of Altabre's children, and an elemental of light imprisoned in Ashkellon. + +## Known Details + +- On `day-42`, the goat-headed sphinx prisoner was identified as Trixus, an elemental of light and Benu's little brother. +- He had four brass rings on each paw inscribed: `A Blessing from Altabre, Protector of the Brass city, Salvation to his Children. First of his name 5th of his kind.` +- A book on Benu, Garadwal, and Trixus described them as the last three of Altabre's children who walk on the earth. +- Trixus helped create Brass City and helped the tabaxi become industrious and proactive. +- He remained under a Slumber version of Imprisonment even after the party opened barriers. +- On `day-43`, the family reunion with [Benu](benu.md), [Garadwal](garadwal.md), and Trixus occurred in Ashkellon; Geldrin released Trixus with a tremor skill. +- Trixus said father had put him to sleep, questioned Benu's absence when his people were in trouble, and may be able to help restore memories or emotions. + +## Related Entries + +- [Benu](benu.md) +- [Garadwal](garadwal.md) +- [Attabre / Altabre](attabre-altabre.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Ashkellon](../places/ashkellon.md) + +## Open Questions + +- Why did Altabre put Trixus to sleep? +- Can Trixus restore Emi's removed emotions, and where are those emotions held? +- Is Trixus one of the Barrier prisoners, one of the five sphinx children, or both? diff --git a/data/6-wiki/people/valententhide.md b/data/6-wiki/people/valententhide.md new file mode 100644 index 0000000..a5730c4 --- /dev/null +++ b/data/6-wiki/people/valententhide.md @@ -0,0 +1,49 @@ +--- +title: Valententhide / Valentenhule +type: god, elemental-plane queen, or betrayed figure +aliases: + - Valententhide + - Valentenshide + - Valentinheide + - Valentenhide + - Valentenhule + - Valententide + - Bridge's sister + - the featureless woman +first_seen: day-30 +last_updated: day-44 +sources: + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Valententhide / Valentenhule + +## Summary + +Valententhide, Valentenhule, Valentinheide, or Valentenshide is a high-sky or dark-sky figure tied to betrayal, lethal gaze warnings, Hannah's erasure, Bright, Bridge, and the old mage-school expedition. This page keeps her separate from [Valenth Cardonald](valenth-cardonald.md) because the identity merge is unresolved. + +## Known Details + +- Day 32 preserved `Valententide's Betrayal` and skull visions of a featherless female associated with Throngore and darkness. +- On `day-42`, a ring voice addressed Invar as wearing `the ring of the betrayer`, and Bleakstorm described Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. +- On `day-43`, the Benu book and scroll warnings preserved `One more glance a death dance`, `one brief look last breath look`, `In her stare Bones laid bare`, and `In her gaze the end of days`. +- On `day-44`, Geldrin saw Valentinheide killing Emi's wife, and Tale of Two Sisters described Bright as the low sky and Valentenhule as the high sky whose position caused the void to open. +- Valententhide held Hannah, said Bright had shown the party too much, and said Hannah had been wiped from time and space. +- After the party returned, they no longer remembered Hannah's name, only an image of her turning to dust in a cave. + +## Related Entries + +- [Valenth Cardonald](valenth-cardonald.md) +- [Bridget's Doors](../concepts/bridgets-doors.md) +- [Riversmeet Menagerie and Old Mage School](../places/riversmeet-menagerie-and-old-mage-school.md) +- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) + +## Open Questions + +- Is Valententhide Bridge's sister, Bright's sister, the high-sky queen, a prison entity, or several confused accounts? +- How did she kill Emi's wife, and what did Ruby Eye know about it? +- Why was Hannah visible if she was wiped from time and space? diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index a87f03c..f72adde 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -9,8 +9,10 @@ aliases: - Valenth Caerdunel - Valenthide - Valententhide + - Valent + - Arreanae's mother [uncertain] first_seen: day-20 -last_updated: day-32 +last_updated: day-44 sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-23.md @@ -19,6 +21,9 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Valenth Cardonald @@ -39,6 +44,9 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - Valenthide/Valententhide is also recorded as a prisoner or prison, with Galetea/Galatrayer as an automation guard; whether this is the same name or a related being remains uncertain. - Day 32 auction art included `Valententide's Betrayal`, showing a crab claw and talon shielding Throngore over a featherless female; skull visions also showed Vallententide grabbed by a crab claw and disappearing, and later notes say Valententide had been attacked by Throngore with darkness. - Cardencalde did not answer Eroll on Day 32, which was strange because Eroll contacts her directly; whether Cardencalde is Cardenald is uncertain. +- Day 42-44 evidence increasingly points to [Valententhide / Valentenhule](valententhide.md) as a separate high-sky or betrayed figure, but the spelling collision remains unresolved and is not silently merged. +- Day 43 Cardonald / Cardenald coordinated Ashkellon, searched unsuccessfully for Ruby Eye and Errol, and gave Geldrin teleportation circles for prisons, Grand Towers, lab, Menagerie, Ashhellier, and pylon sites. +- Day 44 old-school scenes include Matron / Nurse Cardonald, her daughter Arreanae, and Mr Cardonald, while Valenth appears in Ruby Eye's old student group. ## Timeline @@ -48,6 +56,9 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - `day-27`: Cardenald helps calculate the shard trajectory and is sent to destroy the Salinas statue. - `day-30`: Cardenald resurrects Rubyeye and investigates Valententhide/Galatrayer. - `day-31`: Rubyeye takes Valenta back to her lab for repairs after the battle. +- `day-42`: Cardonald helps interpret Emri's missing soul-parts after Ashkellon and reports Tradesmells empty. +- `day-43`: Cardonald cannot locate Ruby Eye or Errol and provides the party with major teleport-circle intelligence. +- `day-44`: Cardonald variants appear in the old mage-school timeline, while Valenth is named among Ruby Eye's group. ## Related Entries @@ -62,5 +73,6 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - Is Valenth the same person as Ruby Eye's best friend? - Did the object-transfer plan succeed, and if so what object contains her? - Are Valenth/Cardonal/Cardenald and Valenthide/Valententhide separate beings, a spelling collision, or a person-prison relationship? +- Is the old-school Valenth the same as Cardonald, Arreanae's parent, or another member of the same family/name cluster? - What exactly happened to her body, Silver's body, Valenta, and the sentient jewellery experiments? - What was `Valententide's Betrayal`, and is Valententide/Vallententide part of the same identity cluster as Valenth/Valenthide? diff --git a/data/6-wiki/places/ashkellon.md b/data/6-wiki/places/ashkellon.md new file mode 100644 index 0000000..df2f61a --- /dev/null +++ b/data/6-wiki/places/ashkellon.md @@ -0,0 +1,44 @@ +--- +title: Ashkellon +type: place +aliases: + - Askellon + - Ashkellon + - Ashkhellion + - Ashhellier + - Goliath City + - Emeredge's city +first_seen: day-42 +last_updated: day-43 +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md +--- + +# Ashkellon + +## Summary + +Ashkellon, also Askellon / Ashkhellion / Ashhellier, is Emeredge's Goliath city and tower, where the party infiltrated dragonborn-held Goliath society, rescued captives, fought Emmeredge, and reunited Benu, Garadwal, and Trixus. + +## Known Details + +- Galimma identified Emeredge in Askellon among Lortesh and Perodika's remaining children or related dragons. +- Three Finger Dune Shwelter claimed to be part of the Ashkellon resistance and helped the party contact resistance members through a black-feather communication device. +- The party teleported into a throne room, killed Araks, and moved workers and Badger out from the wash-room area. +- The tower contained skull arches, Goliathified god statues, offering bowls, prison rooms, a library, map rooms, a Noxia chamber, treasure hall, and elemental or dragon prisoners. +- Emmeredge died during the day-42 Noxia-chamber battle, and Ashkellon Goliaths gained weapons, shields, and healing when blessings activated. +- On `day-43`, Benu appeared there, Trixus was released, Garadwal was banished, and the party recovered barrier tools. + +## Related Entries + +- [Galimma, the Peridot Queen](../people/galimma-peridot-queen.md) +- [Trixus](../people/trixus.md) +- [Benu](../people/benu.md) +- [Garadwal](../people/garadwal.md) +- [Noxia](../people/noxia.md) + +## Open Questions + +- What was the full tower hierarchy under Emeredge, Willow-wispa, Calameir, The Exiled, and the dragonborn guards? +- What is the significance of the tiny hole in the Barrier revealed after Ashkellon blessings activated? diff --git a/data/6-wiki/places/bleakstorm.md b/data/6-wiki/places/bleakstorm.md new file mode 100644 index 0000000..24f5979 --- /dev/null +++ b/data/6-wiki/places/bleakstorm.md @@ -0,0 +1,42 @@ +--- +title: Bleakstorm +type: place and person cluster +aliases: + - Lord Bleakstorm + - Bleakstorm castle +first_seen: day-32 +last_updated: day-44 +sources: + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-44.md +--- + +# Bleakstorm + +## Summary + +Bleakstorm is both a cursed/blessed castle location and the title or identity of Lord Bleakstorm, a time-aware figure tied to Bright, gnomes, Snow Screen, and trips outside the Barrier. + +## Known Details + +- Earlier notes mentioned Lord Bleakstorm as an auction/history figure and later as a dead but active outside-dome messenger. +- On `day-42`, the party teleported to Bleakstorm castle, where blizzards, ice elementals, portraits, a time-detecting device, and a half-elf from Everdard were present. +- The device detected time and noted Dirk was missing a day. +- Bleakstorm said he could send people back in time at a cost, could not see Ruby Eye, and warned about difficult trips outside the Barrier. +- He reported Perodita heading to Heathwall, Garadwal growing stronger at Gravel Basers, and Bridge's sister as nasty trickery, perhaps [uncertain: Atana] / Valentenhide. +- On `day-44`, Lord Bleakstorm appeared as a history teacher in the old mage school and taught about Bright, Valentenhule, Great Farmouth, and gnomes. +- `Lord of Bleakstorm and the Gnomes` says Bleakstorm connected gnomes, merfolk, Great Farmouth, and possible gnomish Grand Towers technology. + +## Related Entries + +- [Valententhide / Valentenhule](../people/valententhide.md) +- [Barrier](../concepts/barrier.md) +- [Riversmeet Menagerie and Old Mage School](riversmeet-menagerie-and-old-mage-school.md) + +## Open Questions + +- What day is Dirk missing, and what did Bleakstorm's time device detect? +- Who is Bleakstorm's lost friend [uncertain: leechus]? +- What is Great Farmouth, and how do gnomes and merfolk hide or reach it? diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md index 429f2b3..f660232 100644 --- a/data/6-wiki/places/grand-towers.md +++ b/data/6-wiki/places/grand-towers.md @@ -6,7 +6,7 @@ aliases: - Grand Towers passage - Grand Towers boardroom first_seen: day-16 -last_updated: day-41 +last_updated: day-44 sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-23.md @@ -15,6 +15,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Grand Towers @@ -31,6 +33,9 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadwal trapped downstairs, Harthwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. - Geldrin reached floor 98 and found Browning before alarms and golems forced the party to flee. - On `day-41`, Basalisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. +- On `day-43`, all wizards seemed to have been recalled to Grand Towers, the Grand Towers dome later went down, and Cardonald's teleport-circle list included the factory, control room, and meeting lounge. +- On `day-44`, Principal Grey's old-school letter from Browning, dated 47 AD, ordered the school closed and students transferred to Grand Towers. +- Old-school books and visions suggested Grand Towers used god-language texts, gnomish technology, automations, emotional elimination, memories, tower tunnels, and possibly the same hidden routes later used by Browning's group. ## Related Entries @@ -45,3 +50,5 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - What exactly is Browning doing on or near floor 98? - What do the new four towers around Grand Towers protect, trap, or power? - Which Grand Towers systems are controlled by Browning, the wizards, Excellences, gods, automatons, or prisoners? +- What happened when the Grand Towers dome went down on Day 43? +- How much of Grand Towers originated in Riversmeet school, gnomish technology, and Browning's student-era discoveries? diff --git a/data/6-wiki/places/minor-places-days-42-44.md b/data/6-wiki/places/minor-places-days-42-44.md new file mode 100644 index 0000000..72cbdeb --- /dev/null +++ b/data/6-wiki/places/minor-places-days-42-44.md @@ -0,0 +1,24 @@ +--- +title: Minor Places from Days 42, 43, and 44 +type: places rollup +sources: + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Minor Places from Days 42, 43, and 44 + +| Place | Context | Outcome | +|---|---|---| +| Council tent, Wyrmdoom / Wormdoom, Vahthell / Vathkell, Thundeya / Thungle, Tradesmells, [uncertain: Tazer], [uncertain: Gugghut] | Day-42 planning and dragon-family geography. | Rollup; [Ashkellon](ashkellon.md), [Peridita](../people/peridita.md). | +| Ashkellon throne room, wash room, resistance building, soft tower, skull-arched room, statue room, prison rooms, Noxia chamber, treasure hall, observatory room | Major Ashkellon tower sites. | [Ashkellon](ashkellon.md). | +| Domain of Pengalis, Dunemin, Pentacity slates, sea gap, Shousorrow, Snow Screen / Snow Sorrow, Fire, great tower, Gravel Basers | Historical and map locations from Ashkellon. | Rollup/open threads. | +| Bleakstorm castle, Everdard, invisible walkway, clouds / Bridge encounter, Heathwall, Emmerave | Day-42 time/Bridge/Heathwall sequence. | [Bleakstorm](bleakstorm.md), rollup. | +| Goldenswell, Pine Springs, Harthall, 11th Duke of Harthall's wife, Cathedral of Attabre, Lord Argenthum's Rest | Day-43 Goldenswell/Harthall locations. | Rollup/open threads. | +| Thadkhell, Oldym, Broken Bounds, Blacksmirk, Last Past Airwise | Tomes about newly discovered places. | Rollup/open threads. | +| Grincray / Grim & Cray, Mashir, lake of Papa'e Munera, rear Ironcraft air site, Claymeadows, Harthden, Threepaws | Dwarven lost-city and political/military locations. | Rollup/open threads. | +| Riversmeet, Ruby Eye's melted house ruins and gravestone, central bridge manor house, temples of Hydrum / Igraine / Larn / Kasha | Day-44 Riversmeet investigation. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | +| Harthall's old lab, Howling Tombs, Menagerie outpost, Menagerie grounds, apothecary, infirmary, head teacher's office, old classrooms, Air common room, astronomy room | Day-44 Menagerie and school spaces. | [Riversmeet Menagerie](riversmeet-menagerie-and-old-mage-school.md). | +| Far Grove, Waterrose, Great Farmouth, tower tunnels, Blackhold, white classroom, Brass City, room above Air common room, kitchen, Ruby Eye's old stomping ground | Historical/planar route locations in the old school. | Rollup; [Bleakstorm](bleakstorm.md), [Void Spheres](../items/void-spheres.md). | +| Pri-moon, second moon, Tri-moon, Squall's Belt | Astronomy-room celestial locations or objects. | Rollup/open threads; [Void Spheres](../items/void-spheres.md). | diff --git a/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md new file mode 100644 index 0000000..2e8e77b --- /dev/null +++ b/data/6-wiki/places/riversmeet-menagerie-and-old-mage-school.md @@ -0,0 +1,48 @@ +--- +title: Riversmeet Menagerie and Old Mage School +type: place +aliases: + - Riversmeet + - Menagerie + - Mages College at Riversmeet + - old mage school + - mage school +first_seen: day-35 +last_updated: day-44 +sources: + - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md +--- + +# Riversmeet Menagerie and Old Mage School + +## Summary + +Riversmeet's Menagerie is the former mage school, later locked down by mages, and became the party's entry into historical school planes, emotion-orb clues, Grand Towers origins, automations, void spheres, and time-erased Hannah. + +## Known Details + +- Day 35 identified Lady Yadreya Egrine as Baroness of Riversmeet and connected her menagerie to stolen experimental creatures later recognized as memory grubs. +- Day 43 reported that mages at the Menagerie did not return to Grand Towers and locked it down; it used to be the mage school. +- Day 43 also identified the interfering memory spell as waterwise at the Mages College at Riversmeet, involving Attabre magic plus another force. +- On `day-44`, the party reached Riversmeet, found Ruby Eye's melted house ruins and gravestone, and joined Lady Igraine's siege outside the Menagerie. +- The Menagerie grounds had broken cages for griffon, dragon, wolf, and human subjects and a wall of force or similar effect. +- Inside, the party entered old-school time or planes: apothecary, infirmary, head teacher's office, Divination, transmutation, study hall, common rooms, lessons, Air common room, tower tunnels, classrooms, and astronomy. +- The old school involved Cardonald, Ruby Eye, Everard Browning, Thomas / Enis, Hannah, Valenth, Bosh, Mr Moreley, Principal Grey, Tortish Harthall / Harthwall, Humerous Torn, Hammerguards, and Grand Towers transfer plans. +- Major discoveries included an empathy alteration orb, the green liquid / possible Noxia blood, power armour, an automaton core, a baby Attabre spirit, a draconic book for Ruby Eye, a sixth sphinx clue, void containment, and the need for eight spheres. + +## Related Entries + +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) +- [Edward Browning](../people/edward-browning.md) +- [Valententhide / Valentenhule](../people/valententhide.md) +- [Noxia](../people/noxia.md) +- [Void Spheres](../items/void-spheres.md) + +## Open Questions + +- Are the school spaces time travel, preserved planes, memory rooms, or another mechanism? +- What are the eight spheres, and who created or hid them? +- What happened to Hannah after being wiped from time and space? +- What is the current state of the twenty wizards who locked down the Menagerie? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 7654231..9937add 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -36,6 +36,9 @@ sources: - data/4-days-cleaned/day-36.md - data/4-days-cleaned/day-40.md - data/4-days-cleaned/day-41.md + - data/4-days-cleaned/day-42.md + - data/4-days-cleaned/day-43.md + - data/4-days-cleaned/day-44.md --- # Sources @@ -75,6 +78,9 @@ sources: - `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hearthwill](people/lady-hearthwill.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). - `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-42.md`: [Ashkellon](places/ashkellon.md), [Galimma, the Peridot Queen](people/galimma-peridot-queen.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Noxia](people/noxia.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Valententhide / Valentenhule](people/valententhide.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-43.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Garadwal](people/garadwal.md), [Benu](people/benu.md), [Trixus](people/trixus.md), [Attabre / Altabre](people/attabre-altabre.md), [Papa'e Munera](people/papae-munera.md), [Valententhide / Valentenhule](people/valententhide.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Peridita](people/peridita.md), [Icefang](people/icefang.md), [Lady Hearthwill](people/lady-hearthwill.md), [Edward Browning](people/edward-browning.md), [Barrier](concepts/barrier.md), [Elemental Prisons](concepts/elemental-prisons.md), [Grand Towers](places/grand-towers.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). +- `data/4-days-cleaned/day-44.md`: [Riversmeet Menagerie and Old Mage School](places/riversmeet-menagerie-and-old-mage-school.md), [Valententhide / Valentenhule](people/valententhide.md), [Noxia](people/noxia.md), [Void Spheres](items/void-spheres.md), [Bleakstorm](places/bleakstorm.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Icefang](people/icefang.md), [Joy](people/joy.md), [Attabre / Altabre](people/attabre-altabre.md), [Grand Towers](places/grand-towers.md), [Barrier](concepts/barrier.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Minor Figures from Days 42, 43, and 44](people/minor-figures-days-42-44.md), [Minor Places from Days 42, 43, and 44](places/minor-places-days-42-44.md), [Minor Items from Days 42, 43, and 44](items/minor-items-days-42-44.md), [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-42-44-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 988a251..f831d5b 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -78,3 +78,6 @@ sources: - `day-37` through `day-69`: Not included in this wiki pass. - `day-40`: At [Azureside and Heartmoor](places/azureside-heartmoor.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). - `day-41`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears Basalisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). +- `day-42`: The party receives [Galimma](people/galimma-peridot-queen.md)'s dragon intelligence, infiltrates [Ashkellon](places/ashkellon.md), rescues Badger and workers, explores the tower's gods/prisons/Noxia chamber, kills Emmeredge and the Noxia Beast avatar, frees the copper dragon, learns more about [Benu](people/benu.md), [Garadwal](people/garadwal.md), and [Trixus](people/trixus.md), then consults [Bleakstorm](places/bleakstorm.md) and reaches Heathwall. +- `day-43`: Goldenswell and Harthall investigations reveal Grimby, Papa'e Munera, Benu's books, Grincray/Mashir, Hawthorn, Menagerie lockdown, Garadwal's feather claims, the Ashkellon sphinx-family reunion, Garadwal's banishment, Trixus's memory role, Anastasia's restored Goliaths, and Cardonald's teleport-circle list. +- `day-44`: In Riversmeet, the party investigates Ruby Eye's house and the [Menagerie / old mage school](places/riversmeet-menagerie-and-old-mage-school.md), enters historical school spaces, uncovers [Valententhide](people/valententhide.md), Bright, Hannah, Browning's old group, Noxia blood, power armour, Mr Moreley's book for Ruby Eye, lunar truths, Squall's Belt, and the first [Void Sphere](items/void-spheres.md). -
5818961Fix daysby Bas Mostert
data/2-pages/158.txt | 2 +- data/2-pages/162.txt | 2 +- data/2-pages/166.txt | 2 +- data/3-days/{day-70.md => day-40.md} | 4 +-- data/3-days/{day-71.md => day-41.md} | 4 +-- data/4-days-cleaned/{day-70.md => day-40.md} | 4 +-- data/4-days-cleaned/{day-71.md => day-41.md} | 4 +-- data/6-wiki/aliases.md | 10 +++--- ...ge-audit.md => days-36-40-41-coverage-audit.md} | 14 ++++---- .../clues/known-passwords-and-inscriptions.md | 12 +++---- data/6-wiki/concepts/barrier.md | 8 ++--- data/6-wiki/factions/dollarmen.md | 10 +++--- data/6-wiki/factions/the-pact.md | 14 ++++---- data/6-wiki/inventories/party-inventory.md | 18 +++++----- ...ys-36-70-71.md => minor-items-days-36-40-41.md} | 8 ++--- data/6-wiki/items/searus-arrow.md | 6 ++-- data/6-wiki/items/snake-slayers.md | 12 +++---- data/6-wiki/open-threads.md | 8 ++--- data/6-wiki/people/basilisk-busalish.md | 6 ++-- data/6-wiki/people/edward-browning.md | 6 ++-- ...-36-70-71.md => minor-figures-days-36-40-41.md} | 14 ++++---- data/6-wiki/people/peridita.md | 10 +++--- data/6-wiki/people/searu.md | 6 ++-- data/6-wiki/people/status.md | 38 +++++++++++----------- data/6-wiki/places/azureside-heartmoor.md | 10 +++--- data/6-wiki/places/grand-towers.md | 6 ++-- ...s-36-70-71.md => minor-places-days-36-40-41.md} | 10 +++--- data/6-wiki/sources.md | 10 +++--- data/6-wiki/timeline.md | 8 ++--- 29 files changed, 133 insertions(+), 133 deletions(-)Show diff
diff --git a/data/2-pages/158.txt b/data/2-pages/158.txt index 72717e9..748fde2 100644 --- a/data/2-pages/158.txt +++ b/data/2-pages/158.txt @@ -28,7 +28,7 @@ recall protocol & they disappear. Tent - head back to Coalmont Falls in the Merfolk lodge 01:00 -Day 70 +Day 40 Talk about the pit made against the merfolk at the start of the dome - Sir [Counting Fibo] was to remove it diff --git a/data/2-pages/162.txt b/data/2-pages/162.txt index 7bf5053..1108451 100644 --- a/data/2-pages/162.txt +++ b/data/2-pages/162.txt @@ -14,7 +14,7 @@ a right glass for the right beer kind of pub Frilleshanks helps geldrin streamline "Snake Slayers" his apprentice will help operate it (Joel) Dwarf -Day 71 +Day 41 2 dragons seem to approach 07:00 One - lithe - unremarkable features - veridian Hue diff --git a/data/2-pages/166.txt b/data/2-pages/166.txt index 54e3ef6..5126225 100644 --- a/data/2-pages/166.txt +++ b/data/2-pages/166.txt @@ -36,7 +36,7 @@ dragons. Mum eats one of the dragons & leaves Disadvantage - wisdom, charisma & Intelligence for the rest of the day -Day 72 +Day 42 Dirk also has an odd dream too but is a Goliath munching out a fat belly dragon. diff --git a/data/3-days/day-70.md b/data/3-days/day-40.md similarity index 99% rename from data/3-days/day-70.md rename to data/3-days/day-40.md index 6d5e3f9..a791610 100644 --- a/data/3-days/day-70.md +++ b/data/3-days/day-40.md @@ -1,5 +1,5 @@ --- -day: day-70 +day: day-40 date: unknown source_pages: - 158 @@ -20,7 +20,7 @@ complete: true ## Page 158 -Day 70 +Day 40 Talk about the pit made against the merfolk at the start of the dome - Sir [Counting Fibo] was to remove it diff --git a/data/3-days/day-71.md b/data/3-days/day-41.md similarity index 99% rename from data/3-days/day-71.md rename to data/3-days/day-41.md index d344e78..8029489 100644 --- a/data/3-days/day-71.md +++ b/data/3-days/day-41.md @@ -1,5 +1,5 @@ --- -day: day-71 +day: day-41 date: unknown source_pages: - 162 @@ -20,7 +20,7 @@ complete: true ## Page 162 -Day 71 +Day 41 2 dragons seem to approach 07:00 One - lithe - unremarkable features - veridian Hue diff --git a/data/4-days-cleaned/day-70.md b/data/4-days-cleaned/day-40.md similarity index 99% rename from data/4-days-cleaned/day-70.md rename to data/4-days-cleaned/day-40.md index 343cd3e..925e785 100644 --- a/data/4-days-cleaned/day-70.md +++ b/data/4-days-cleaned/day-40.md @@ -1,5 +1,5 @@ --- -day: day-70 +day: day-40 date: unknown source_pages: - 158 @@ -12,7 +12,7 @@ complete: true # Narrative -Day 70 began with discussion of the pit made against the merfolk at the start of the dome. Sir [uncertain: Counting Fibo] was supposed to remove it. +Day 40 began with discussion of the pit made against the merfolk at the start of the dome. Sir [uncertain: Counting Fibo] was supposed to remove it. The party tried to teleport and made it to the outskirts of Azureside. The cherry trees there looked diseased, and there were abandoned bushels. Morgana felt as though the earth itself was plagued, connected to the Poison Dragon. diff --git a/data/4-days-cleaned/day-71.md b/data/4-days-cleaned/day-41.md similarity index 99% rename from data/4-days-cleaned/day-71.md rename to data/4-days-cleaned/day-41.md index 810b73b..08b7f5a 100644 --- a/data/4-days-cleaned/day-71.md +++ b/data/4-days-cleaned/day-41.md @@ -1,5 +1,5 @@ --- -day: day-71 +day: day-41 date: unknown source_pages: - 162 @@ -12,7 +12,7 @@ complete: true # Narrative -Day 71 began at about 07:00, when two dragons seemed to approach. One was lithe, with unremarkable features and a veridian hue. The other was the toothless dragon the party had seen before. By about 09:00, Greysocks was walking toward the town square but stopped a few streets away. The smaller dragon landed on a building. A black puff of smoke appeared, and a black smoke dragon manifested, apparently summoning the cobbler. Greysocks looked up at the tower, and the smoke dragon also looked up at the tower. The black smoke dragon waved a claw and disappeared. +Day 41 began at about 07:00, when two dragons seemed to approach. One was lithe, with unremarkable features and a veridian hue. The other was the toothless dragon the party had seen before. By about 09:00, Greysocks was walking toward the town square but stopped a few streets away. The smaller dragon landed on a building. A black puff of smoke appeared, and a black smoke dragon manifested, apparently summoning the cobbler. Greysocks looked up at the tower, and the smoke dragon also looked up at the tower. The black smoke dragon waved a claw and disappeared. Battle began. A ticking female stabbed Joel through. Inkysvagh the Horror ran off. [Unclear] Cezzerliksygh was killed. [Unclear] Neutron to chitra Entoldust Darkness Born was also killed. After the fight, the party revived the dwarf, who ran off home. Greysocks was reincarnated as an elf, and the jeweller was reincarnated as a halfling. The party returned to the cobbler's shop and told them about the changes. Captain Sprat went to get clothes for the changed cobbler or cobblers. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 35d3d9c..2eb366a 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -28,8 +28,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Aliases and Variant Spellings @@ -86,6 +86,6 @@ sources: - [Snake Slayers](items/snake-slayers.md): Snake Slayers, the crossbow. - [Searu's Arrow](items/searus-arrow.md): Searu's Arrow, Searu's arrows, Searu's staff. - [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. -- [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Mama Harthall, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. -- [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. -- [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md): shell of [uncertain: Tremoon], crystal shell, lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. +- [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Mama Harthall, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. +- [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. +- [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md): shell of [uncertain: Tremoon], crystal shell, lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. diff --git a/data/6-wiki/clues/days-36-70-71-coverage-audit.md b/data/6-wiki/clues/days-36-40-41-coverage-audit.md similarity index 85% rename from data/6-wiki/clues/days-36-70-71-coverage-audit.md rename to data/6-wiki/clues/days-36-40-41-coverage-audit.md index 284f8ef..073bfe1 100644 --- a/data/6-wiki/clues/days-36-70-71-coverage-audit.md +++ b/data/6-wiki/clues/days-36-40-41-coverage-audit.md @@ -1,13 +1,13 @@ --- -title: Days 36, 70, and 71 Coverage Audit +title: Days 36, 40, and 41 Coverage Audit type: coverage audit sources: - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- -# Days 36, 70, and 71 Coverage Audit +# Days 36, 40, and 41 Coverage Audit Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `Items, Rewards, and Resources`, and `Clues, Mysteries, and Open Threads` sections was assigned an explicit outcome. @@ -21,9 +21,9 @@ Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `I ## Rollups Used -- [Minor Figures from Days 36, 70, and 71](../people/minor-figures-days-36-70-71.md) covers one-off NPCs, uncertain names, local leaders, messengers, animals, killed attackers, and supporting named figures. -- [Minor Places from Days 36, 70, and 71](../places/minor-places-days-36-70-71.md) covers minor locations, rooms, inns, route points, settlements, and uncertain place names. -- [Minor Items from Days 36, 70, and 71](../items/minor-items-days-36-70-71.md) covers specific minor objects, payments, offerings, spell effects, codes, samples, resources, and tools. +- [Minor Figures from Days 36, 40, and 41](../people/minor-figures-days-36-40-41.md) covers one-off NPCs, uncertain names, local leaders, messengers, animals, killed attackers, and supporting named figures. +- [Minor Places from Days 36, 40, and 41](../places/minor-places-days-36-40-41.md) covers minor locations, rooms, inns, route points, settlements, and uncertain place names. +- [Minor Items from Days 36, 40, and 41](../items/minor-items-days-36-40-41.md) covers specific minor objects, payments, offerings, spell effects, codes, samples, resources, and tools. ## Ambiguous Merges Preserved diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 3dc4470..77f148e 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -1,7 +1,7 @@ --- title: Known Passwords and Inscriptions type: stateful clues -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -17,8 +17,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Known Passwords and Inscriptions @@ -75,7 +75,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Five runes in a pentagram around a twenty-foot statue | `data/4-days-cleaned/day-36.md` | Underwater chamber associated with !Asmoorade! at Coalmont Falls. | | Ticking rune door | `data/4-days-cleaned/day-36.md` | Door in freshly cut Coalmont facility corridor; would not open normally. | | `My Child` | `data/4-days-cleaned/day-36.md` | Icefang said this while passing Harthall during the frost-dragon intervention. | -| `all of the Pacts are off` | `data/4-days-cleaned/day-71.md` | Perodika / green smoke dragon declaration while possessing people. | +| `all of the Pacts are off` | `data/4-days-cleaned/day-41.md` | Perodika / green smoke dragon declaration while possessing people. | ## Riddles and Layout Clues @@ -101,5 +101,5 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Freeport auction | mother-of-pearl elemental chariot to be sold in 7 days | `data/4-days-cleaned/day-22.md` | | Hearthwall auction | Grand Auction House auction occurred around 2 pm; `11:00` also noted | `data/4-days-cleaned/day-32.md` | | Seaward Barrier flickers | began 2-3 weeks earlier, increasing, random, longest 3 seconds, clustered around 9 am, none around midnight, moving horizontally toward pylon | `data/4-days-cleaned/day-12.md` | -| Azureside evacuation | evacuation would take about half a day | `data/4-days-cleaned/day-71.md` | -| Perodika influence range | light returned to normal around ten miles away | `data/4-days-cleaned/day-71.md` | +| Azureside evacuation | evacuation would take about half a day | `data/4-days-cleaned/day-41.md` | +| Perodika influence range | light returned to normal around ten miles away | `data/4-days-cleaned/day-41.md` | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index 112e109..4a92772 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -6,7 +6,7 @@ aliases: - dome - containment system first_seen: day-01 -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-04.md @@ -32,7 +32,7 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-41.md --- # Barrier @@ -57,7 +57,7 @@ The Barrier is the central protective shield, dome, or containment system around - Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said Lady Envy's sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. - Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Harthwall did not know about. - Ruby Eye and Wrath both wanted the shell of [uncertain: Tremoon] because it helped people get in and out of the Barrier. -- Day 71 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. +- Day 41 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. ## Timeline @@ -75,7 +75,7 @@ The Barrier is the central protective shield, dome, or containment system around - `day-32`: The Tri-moon appears in daylight ahead of schedule, daylight shows it as a crystal, and the Barrier seems normal. - `day-35`: The Barrier thickens and pulls while prisoner carts move, and outside-dome accounts describe a sand dome keeping elementals out. - `day-36`: The Barrier's divine bargains, hidden costs, shell-passage tools, and multiple prison/facility interactions become clearer. -- `day-71`: Four new towers create a new Barrier around Grand Towers during a wider regional crisis. +- `day-41`: Four new towers create a new Barrier around Grand Towers during a wider regional crisis. ## Related Entries diff --git a/data/6-wiki/factions/dollarmen.md b/data/6-wiki/factions/dollarmen.md index a6ab52b..5dd4a1b 100644 --- a/data/6-wiki/factions/dollarmen.md +++ b/data/6-wiki/factions/dollarmen.md @@ -5,10 +5,10 @@ aliases: - Dollarmans - Dollarmen assassins first_seen: day-36 -last_updated: day-70 +last_updated: day-40 sources: - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-40.md --- # Dollarmen @@ -20,20 +20,20 @@ The Dollarmen, also written Dollarmans, are assassins or organized raiders encou ## Known Details - On `day-36`, a half-orc and human female near Brookville Springs identified themselves as Dollarmans, assassins. They seemed to want a fight but were under orders not to. -- On `day-70`, Dollarmen operated through the Cheery & Cherry in Azureside, stole dragon offerings, used local henchmen, and were tied to a black-eyed snake-bottom boss with animal-themed rings. +- On `day-40`, Dollarmen operated through the Cheery & Cherry in Azureside, stole dragon offerings, used local henchmen, and were tied to a black-eyed snake-bottom boss with animal-themed rings. - The Azureside boss mentioned the Council with Mercy from Brookville Springs but claimed he worked for nobody. - Ulfarun became next in command after the boss died, and Gnoll Longfang immediately tried to stab Ulfarun in the back. ## Timeline - `day-36`: Dollarmans appear outside Brookville Springs under unknown orders. -- `day-70`: The party defeats the Azureside Dollarmen boss at the Cheery & Cherry and leaves Ulfarun as next in command after internal violence. +- `day-40`: The party defeats the Azureside Dollarmen boss at the Cheery & Cherry and leaves Ulfarun as next in command after internal violence. ## Related Entries - [Brookville Springs](../places/brookville-springs.md) - [Azureside and Heartmoor](../places/azureside-heartmoor.md) -- [Minor Figures from Days 36, 70, and 71](../people/minor-figures-days-36-70-71.md) +- [Minor Figures from Days 36, 40, and 41](../people/minor-figures-days-36-40-41.md) ## Open Questions diff --git a/data/6-wiki/factions/the-pact.md b/data/6-wiki/factions/the-pact.md index 7cf606f..0005466 100644 --- a/data/6-wiki/factions/the-pact.md +++ b/data/6-wiki/factions/the-pact.md @@ -4,7 +4,7 @@ type: faction aliases: - Pact first_seen: day-16 -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-17.md @@ -12,8 +12,8 @@ sources: - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # The Pact @@ -34,8 +34,8 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - After saving Baytail Accord and the Hatchery, the party became known as `Saviours of the Pact`. - The Pact has a route outside the Barrier; leaders believe a birth curse exists outside or around the Barrier and that the Barrier protects them from it. - Baytail Accord's first baby girl in 20 years was born after the crisis, with Princess Aquana present. -- Day 70 confirms Alana as the Pact leader at Azureside / Heartmoor while Carl was absent and the guild was trying to run town affairs. -- Day 71 mentions the Pact Keeper and a matriarch no one had seen leave her domain, immediately before Perodika declared all Pacts off. +- Day 40 confirms Alana as the Pact leader at Azureside / Heartmoor while Carl was absent and the guild was trying to run town affairs. +- Day 41 mentions the Pact Keeper and a matriarch no one had seen leave her domain, immediately before Perodika declared all Pacts off. - The party guided Azureside evacuation and coordinated messages with Basalisk, Cardonald, and Rubyeye while the Pacts appeared under direct attack. ## Timeline @@ -46,8 +46,8 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - `day-21`: Pact forces coordinate for the shield crystal mission. - `day-23`: Merfolk diplomatic and beyond-Barrier Pact context expands the Pact's geography. - `day-26`: The party saves Baytail Accord, joins Pact leaders, and learns about birth records, outside routes, and regional reports. -- `day-70`: Alana and the guild try to run Heartmoor/Azureside amid plague and dragon-payment pressure. -- `day-71`: Perodika declares all Pacts off, threatening every town and forcing evacuation toward Threeleigh. +- `day-40`: Alana and the guild try to run Heartmoor/Azureside amid plague and dragon-payment pressure. +- `day-41`: Perodika declares all Pacts off, threatening every town and forcing evacuation toward Threeleigh. ## Related Entries diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 20b80c5..a060d74 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -1,7 +1,7 @@ --- title: Party Inventory type: stateful inventory -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-03.md - data/4-days-cleaned/day-05.md @@ -16,8 +16,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Party Inventory @@ -72,7 +72,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Mother-of-pearl elemental chariot auction | possibly occurred, identity uncertain | `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it; a chariot at the Hearthwall auction was tied to an Excellence and taken to the Palace, but identity with the mother-of-pearl chariot is not confirmed. | | Jelly Fish Broach retrieval | promised attempt | `data/4-days-cleaned/day-36.md` | Mercy's contractor wanted the party to retrieve it from Grand Towers floor 74 for a female buyer outside the Barrier. | | Free Icefang's ice elemental | promised to water elementals | `data/4-days-cleaned/day-36.md` | Water elementals required this before helping with dragon flames. | -| Peridot Queen aid | offered through Basalisk | `data/4-days-cleaned/day-71.md` | Aid is explicitly self-interested and conditional. | +| Peridot Queen aid | offered through Basalisk | `data/4-days-cleaned/day-41.md` | Aid is explicitly self-interested and conditional. | ## Unclear Custody or Status @@ -93,8 +93,8 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Lucky cyclops eye | `day-36` | `data/4-days-cleaned/day-36.md` | Rubbed near The Guilt's dangerous chest but did not go anywhere. | | Dirk's rod for speaking with water elementals | `day-36` | `data/4-days-cleaned/day-36.md` | Used at the river to negotiate help against dragon flames; current custody not restated. | | Black dragon book from Ruby Eye's lab | `day-36` | `data/4-days-cleaned/day-36.md` | Held by skeletal dragon; words spoken from it were not understood. | -| Bok and Bosh | `day-70` | `data/4-days-cleaned/day-70.md` | Two blackjack clubs made from scorpion leather and jellyfish tendril cords; notes say they felt amazing and hard to stop using. | -| Snake Slayers / crossbow | `day-70`, `day-71` | `data/4-days-cleaned/day-70.md`, `data/4-days-cleaned/day-71.md` | Frilleshanks streamlined Snake Slayers; a crossbow in a wooden chest was later taken by Bosh, identity uncertain. | -| Bracelet of locating | `day-71` | `data/4-days-cleaned/day-71.md` | Given to Errol for Dirk's dad; Errol reported no bracelet halfway from Sunset Vista to Azureside. | -| Searu's Arrow | `day-71` | `data/4-days-cleaned/day-71.md` | +2 spear/arrow with once-per-day auto-critical and possible three-hit slaying effect; holder not explicit. | -| Godmount pills | `day-71` | `data/4-days-cleaned/day-71.md` | Basalisk said they might help, with note `he's an idiot`; not confirmed received. | +| Bok and Bosh | `day-40` | `data/4-days-cleaned/day-40.md` | Two blackjack clubs made from scorpion leather and jellyfish tendril cords; notes say they felt amazing and hard to stop using. | +| Snake Slayers / crossbow | `day-40`, `day-41` | `data/4-days-cleaned/day-40.md`, `data/4-days-cleaned/day-41.md` | Frilleshanks streamlined Snake Slayers; a crossbow in a wooden chest was later taken by Bosh, identity uncertain. | +| Bracelet of locating | `day-41` | `data/4-days-cleaned/day-41.md` | Given to Errol for Dirk's dad; Errol reported no bracelet halfway from Sunset Vista to Azureside. | +| Searu's Arrow | `day-41` | `data/4-days-cleaned/day-41.md` | +2 spear/arrow with once-per-day auto-critical and possible three-hit slaying effect; holder not explicit. | +| Godmount pills | `day-41` | `data/4-days-cleaned/day-41.md` | Basalisk said they might help, with note `he's an idiot`; not confirmed received. | diff --git a/data/6-wiki/items/minor-items-days-36-70-71.md b/data/6-wiki/items/minor-items-days-36-40-41.md similarity index 96% rename from data/6-wiki/items/minor-items-days-36-70-71.md rename to data/6-wiki/items/minor-items-days-36-40-41.md index 8ecf6e1..7152487 100644 --- a/data/6-wiki/items/minor-items-days-36-70-71.md +++ b/data/6-wiki/items/minor-items-days-36-40-41.md @@ -1,13 +1,13 @@ --- -title: Minor Items from Days 36, 70, and 71 +title: Minor Items from Days 36, 40, and 41 type: items rollup sources: - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- -# Minor Items from Days 36, 70, and 71 +# Minor Items from Days 36, 40, and 41 | Item or resource | Context | Outcome | |---|---|---| diff --git a/data/6-wiki/items/searus-arrow.md b/data/6-wiki/items/searus-arrow.md index f49cc3a..f08fa0a 100644 --- a/data/6-wiki/items/searus-arrow.md +++ b/data/6-wiki/items/searus-arrow.md @@ -5,10 +5,10 @@ aliases: - Searu's Arrow - Searu's arrows - Searu's staff -first_seen: day-71 -last_updated: day-71 +first_seen: day-41 +last_updated: day-41 sources: - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-41.md --- # Searu's Arrow diff --git a/data/6-wiki/items/snake-slayers.md b/data/6-wiki/items/snake-slayers.md index e851c63..bf44e02 100644 --- a/data/6-wiki/items/snake-slayers.md +++ b/data/6-wiki/items/snake-slayers.md @@ -4,11 +4,11 @@ type: weapon or siege tool aliases: - Snake Slayers - the crossbow -first_seen: day-70 -last_updated: day-71 +first_seen: day-40 +last_updated: day-41 sources: - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Snake Slayers @@ -19,9 +19,9 @@ Snake Slayers is a crossbow or anti-dragon weapon that Frilleshanks helped strea ## Known Details -- On `day-70`, Dirt and Alana sought help with the crossbow, and Frilleshanks helped Geldrin streamline `Snake Slayers`. +- On `day-40`, Dirt and Alana sought help with the crossbow, and Frilleshanks helped Geldrin streamline `Snake Slayers`. - Frilleshanks's apprentice Joel, a dwarf, would help operate it. -- On `day-71`, a wooden chest under an upstairs desk at the Cheery & Cherry contained a crossbow that Bosh took; whether this was Snake Slayers is not confirmed. +- On `day-41`, a wooden chest under an upstairs desk at the Cheery & Cherry contained a crossbow that Bosh took; whether this was Snake Slayers is not confirmed. ## Related Entries diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 0eeb3e7..834d3cd 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -34,8 +34,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Open Threads @@ -103,10 +103,10 @@ sources: - What hierarchy sent the [Dollarmen](factions/dollarmen.md) boss to the `easy town`, and what is the Council with Mercy from Brookville Springs? - What exactly are [Snake Slayers](items/snake-slayers.md), and is Bosh's crossbow the same weapon? - Are Perodika, [Peridita](people/peridita.md), the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother dragon one being, related beings, or separate threats? -- What is the day-71 blocker that interfered with messages and teleportation, and does it share range or source with Perodika's ten-mile smoke influence? +- What is the day-41 blocker that interfered with messages and teleportation, and does it share range or source with Perodika's ten-mile smoke influence? - What happened to Aurouze and his two companions after the Savannah hunt? - What trapped ally, corruptions, and Goliath resistance did [Searu](people/searu.md)'s flame vision point toward while the dragon was away? -- What are the simultaneous day-71 crises at Emmeraine, Dunnensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? +- What are the simultaneous day-41 crises at Emmeraine, Dunnensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? - What price or betrayal risk comes with the Peridot Queen's aid through Basalisk? - What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? - What caused the narrator's cracked-eggshell dragon dream and temporary mental-stat disadvantage? diff --git a/data/6-wiki/people/basilisk-busalish.md b/data/6-wiki/people/basilisk-busalish.md index 5f3d08a..364668d 100644 --- a/data/6-wiki/people/basilisk-busalish.md +++ b/data/6-wiki/people/basilisk-busalish.md @@ -7,7 +7,7 @@ aliases: - Basalisk - Busalish first_seen: day-23 -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md @@ -16,7 +16,7 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-41.md --- # Basilisk / Busalish @@ -36,7 +36,7 @@ Basilisk, Basaluk, Basalisk, or Busalish is a recurring contact who receives par - Busalish's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` - The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. - On Day 36, the party sent Basilisk a note about current events from Highden. -- On Day 71, Basalisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. +- On Day 41, Basalisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. - Basalisk planned to meet the Peridot Queen by Trade Smells and get Cardonald to take the party back to the army. ## Related Entries diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md index b3ab447..0ea5335 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/edward-browning.md @@ -4,7 +4,7 @@ type: person aliases: - Browning first_seen: day-23 -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md @@ -13,7 +13,7 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-41.md --- # Edward Browning @@ -34,7 +34,7 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Browning / Skutey Galvin was wanted for impersonating a Justicar, but the notes do not establish whether Skutey Galvin is Browning, an alias, or a separate impersonator. - Day 36 Grand Towers visions show Browning with Pride's power, wanting the biggest tower and to be the greatest wizard of all time, trapping Garadwal downstairs, making Ruby Eye obey him, activating a device that made Harthwall disappear, and contacting a giant green dragon to help get rid of his husband. - Day 36 memory tampering showed Icefang shouting at Browning before a dark elf dropped a grub in Icefang's ear. -- Day 71 reports four towers springing out of the ground around Grand Towers and making a new Barrier; Browning's responsibility is not confirmed but remains highly relevant. +- Day 41 reports four towers springing out of the ground around Grand Towers and making a new Barrier; Browning's responsibility is not confirmed but remains highly relevant. ## Related Entries diff --git a/data/6-wiki/people/minor-figures-days-36-70-71.md b/data/6-wiki/people/minor-figures-days-36-40-41.md similarity index 96% rename from data/6-wiki/people/minor-figures-days-36-70-71.md rename to data/6-wiki/people/minor-figures-days-36-40-41.md index ee1d3a4..47e5eea 100644 --- a/data/6-wiki/people/minor-figures-days-36-70-71.md +++ b/data/6-wiki/people/minor-figures-days-36-40-41.md @@ -1,13 +1,13 @@ --- -title: Minor Figures from Days 36, 70, and 71 +title: Minor Figures from Days 36, 40, and 41 type: people rollup sources: - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- -# Minor Figures from Days 36, 70, and 71 +# Minor Figures from Days 36, 40, and 41 This rollup keeps one-off, uncertain, and supporting named figures searchable without creating placeholder pages. @@ -17,7 +17,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi |---|---|---| | Skum, Elementarium, Lady Thorpe, rescuees, Huthnall | Rescue aftermath; rescuees were sent to Huthnall to remove Lady Thorpe's ear worm. | Status rollup; Lady Thorpe has an existing page. | | Lady Newgate's sister, Newgate's gargoyle, Newgate doppel/imposter, broken Bird | Claymeadow transport/contact thread. | Rollup and open thread. | -| Peridot Queen | Not seen by Elementarium for about a month; day-71 aid later came through Basalisk. | NPC Status / open thread. | +| Peridot Queen | Not seen by Elementarium for about a month; day-41 aid later came through Basalisk. | NPC Status / open thread. | | Lead human and pigeon by the main building | Pigeon reported the lead human gone after explosions. | Rollup. | | Captain paid 25 platinum | Ran toward Brookville Springs after payment. | Party Treasury and rollup. | | Seneshell | Ran Hazy Days; explained Pride, The Guilt, and Grand Towers. Possibly distinct from day-35 Mr Seneshell. | Rollup; unresolved merge preserved. | @@ -49,7 +49,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | [Mathwall], Lady Lyraine, Dirk's father, Jin Woo, Hydrath | War coordination, teleport, statue references. | Rollup. | | Hanner, Derek, Nelkish, Anthrosite, Envi, Rumplky, [strils] | Coalmont Falls / !Asmoorade! facility figures. | [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md). | -## Day 70 +## Day 40 | Figure | Context | Outcome | |---|---|---| @@ -64,7 +64,7 @@ This rollup keeps one-off, uncertain, and supporting named figures searchable wi | Door guard, dwarf guarding stairs, black-eyed snake-bottom boss, Ulfarun, Gnoll Longfang | Cheery & Cherry Dollarmen hierarchy. | [Dollarmen](../factions/dollarmen.md) and NPC Status. | | Frilleshanks, Jerome, Joel | Jeweler, innkeep, apprentice tied to Snake Slayers and Saphire Shores. | [Snake Slayers](../items/snake-slayers.md), rollup. | -## Day 71 +## Day 41 | Figure | Context | Outcome | |---|---|---| diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 2277deb..3e2349b 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -9,13 +9,13 @@ aliases: - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-35.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Peridita @@ -31,8 +31,8 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Day 26 says Perodita's new mate was Kortesh Gravesings, also her son, called `The Twisted`. - Azureside records tied Green Dragons to the destruction of the Goliaths and lack of contact for about 900 years. - On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. -- Day 70 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. -- Day 71 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. +- Day 40 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. +- Day 41 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. ## Related Entries diff --git a/data/6-wiki/people/searu.md b/data/6-wiki/people/searu.md index 878de3d..0c54c95 100644 --- a/data/6-wiki/people/searu.md +++ b/data/6-wiki/people/searu.md @@ -4,10 +4,10 @@ type: person or divine figure aliases: - old lady / settlement leader - Savannah settlement leader -first_seen: day-71 -last_updated: day-71 +first_seen: day-41 +last_updated: day-41 sources: - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-41.md --- # Searu diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 468b565..7539d64 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -1,7 +1,7 @@ --- title: NPC Status type: stateful people rollup -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -30,8 +30,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # NPC Status @@ -62,9 +62,9 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Invar | curse memory partly restored | `data/4-days-cleaned/day-36.md` | Remembered he knew remove curse; bracelet fell off his wrist; still did not remember being kidnapped. | | [Lady Hearthwill](lady-hearthwill.md) / Harthall | curse partly addressed, active in battle | `data/4-days-cleaned/day-36.md` | Wrath claimed she would recover in days but was lying; she transformed and later fought at Highden. | | Arik Bellburn | injured then healed | `data/4-days-cleaned/day-36.md` | Bridget clergyman in Bellburn. | -| Greysock Soulspindle | reincarnated as elf | `data/4-days-cleaned/day-71.md` | Elderly gnome cobbler changed after battle; Captain Sprat fetched clothes. | -| Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-71.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | -| Joel / revived dwarf | revived, ran home | `data/4-days-cleaned/day-71.md` | Ticking female stabbed Joel through; after the fight the dwarf was revived. | +| Greysock Soulspindle | reincarnated as elf | `data/4-days-cleaned/day-41.md` | Elderly gnome cobbler changed after battle; Captain Sprat fetched clothes. | +| Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-41.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | +| Joel / revived dwarf | revived, ran home | `data/4-days-cleaned/day-41.md` | Ticking female stabbed Joel through; after the fight the dwarf was revived. | ## Dead or Believed Dead @@ -88,10 +88,10 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Pride | eaten by Garadwal | `data/4-days-cleaned/day-36.md` | Dark entity, boss of The Guilt; tried to disable as much as possible before consumption. | | The betrayer | killed | `data/4-days-cleaned/day-36.md` | Killed in fight with mutated animals near Valenthielles prison; exact identity not stated. | | Soot | bones scattered | `data/4-days-cleaned/day-36.md` | Skeletal dragon's flames vanished after Geldrin's skull-throne bargain; bones scattered. | -| Half-elf wizard, dragonborn rogue, pigeon aarakocra rogue | killed | `data/4-days-cleaned/day-70.md` | Bell-tower attackers in Azureside. | -| Black-eyed snake-bottom boss | killed | `data/4-days-cleaned/day-70.md` | Dollarmen boss at Cheery & Cherry, revealed by Moonbeam. | -| [unclear] Cezzerliksygh | killed | `data/4-days-cleaned/day-71.md` | Uncertain named battle figure. | -| [unclear] Neutron to chitra Entoldust Darkness Born | killed | `data/4-days-cleaned/day-71.md` | Uncertain named battle figure. | +| Half-elf wizard, dragonborn rogue, pigeon aarakocra rogue | killed | `data/4-days-cleaned/day-40.md` | Bell-tower attackers in Azureside. | +| Black-eyed snake-bottom boss | killed | `data/4-days-cleaned/day-40.md` | Dollarmen boss at Cheery & Cherry, revealed by Moonbeam. | +| [unclear] Cezzerliksygh | killed | `data/4-days-cleaned/day-41.md` | Uncertain named battle figure. | +| [unclear] Neutron to chitra Entoldust Darkness Born | killed | `data/4-days-cleaned/day-41.md` | Uncertain named battle figure. | ## Missing, Disappeared, or Unresolved @@ -117,8 +117,8 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | The Guilt | unconscious in dangerous chest | `data/4-days-cleaned/day-36.md` | Avatar of Pride; condition tied to Pride being eaten by Garadwal. | | Icefang | dead or dying, to be buried | `data/4-days-cleaned/day-36.md` | Returned as frost dragon, badly injured, retrieved by water elemental; Cardunel planned burial near Snow Sorrow. | | Lord Bleakstorm | dead but active outside dome | `data/4-days-cleaned/day-36.md` | Delivered Icefang's message and gave snowflake coin; cannot remain inside dome long. | -| Aurouze and two companions | missing | `data/4-days-cleaned/day-71.md` | Hayes said they did not return from hunting, though the hunters with them did. | -| Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-71.md` | Basalisk reported all contact lost with Snow Sorrow and Perens going missing. | +| Aurouze and two companions | missing | `data/4-days-cleaned/day-41.md` | Hayes said they did not return from hunting, though the hunters with them did. | +| Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-41.md` | Basalisk reported all contact lost with Snow Sorrow and Perens going missing. | ## Captive, Imprisoned, or Detained @@ -156,10 +156,10 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Benu](benu.md) | Dunnersend ally | `data/4-days-cleaned/day-29.md`, `data/4-days-cleaned/day-30.md` | Helped secure support in wars to come, stayed to build a temple, could message Cardenald, and could create a hero's feast. | | Granny and Scurry | trusted Underbelly contacts in Highden | `data/4-days-cleaned/day-36.md` | Granny was an old gnoll liaison; Scurry was a Highden lizardfolk courier. | | Captain Briarthorn | Highden commander | `data/4-days-cleaned/day-36.md` | Moss couch elf captain of an elf hundred planning a river battle point. | -| Alana | Pact leader at Azureside / Heartmoor | `data/4-days-cleaned/day-70.md` | Ran matters with the guild while Carl was away. | -| Frilleshanks and Joel | Snake Slayers support | `data/4-days-cleaned/day-70.md` | Frilleshanks streamlined Snake Slayers; Joel would help operate it. | -| Ulfarun | remaining Dollarmen leader | `data/4-days-cleaned/day-70.md` | Became next in command after boss died; Gnoll Longfang tried to stab him. | -| Grinan, Hayes, and Searu's settlement | temporary allies/hosts | `data/4-days-cleaned/day-71.md` | Granted hospitality and advised seeking those wronged by the dragon. | +| Alana | Pact leader at Azureside / Heartmoor | `data/4-days-cleaned/day-40.md` | Ran matters with the guild while Carl was away. | +| Frilleshanks and Joel | Snake Slayers support | `data/4-days-cleaned/day-40.md` | Frilleshanks streamlined Snake Slayers; Joel would help operate it. | +| Ulfarun | remaining Dollarmen leader | `data/4-days-cleaned/day-40.md` | Became next in command after boss died; Gnoll Longfang tried to stab him. | +| Grinan, Hayes, and Searu's settlement | temporary allies/hosts | `data/4-days-cleaned/day-41.md` | Granted hospitality and advised seeking those wronged by the dragon. | ## Hostile or Dangerous @@ -177,6 +177,6 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | | Lady Envy | llamia boss | `data/4-days-cleaned/day-35.md` | Named by TJ Biggins as boss of the llamia; relation to Excellence/sin-title pattern unresolved. | | [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Harthwall, and was shouted back into Ruby Eye's eye. | -| [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-70.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | -| [Peridita](peridita.md) / Perodika | active regional dragon threat | `data/4-days-cleaned/day-71.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | -| Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-71.md` | Ran off during the Azureside battle. | +| [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-40.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | +| [Peridita](peridita.md) / Perodika | active regional dragon threat | `data/4-days-cleaned/day-41.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | +| Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-41.md` | Ran off during the Azureside battle. | diff --git a/data/6-wiki/places/azureside-heartmoor.md b/data/6-wiki/places/azureside-heartmoor.md index b04b47a..d4d1e88 100644 --- a/data/6-wiki/places/azureside-heartmoor.md +++ b/data/6-wiki/places/azureside-heartmoor.md @@ -9,12 +9,12 @@ aliases: - Cheery & cherry - Saphire Shores first_seen: day-26 -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Azureside and Heartmoor @@ -25,12 +25,12 @@ Azureside and nearby Heartmoor are Pact-linked settlements affected by diseased ## Known Details -- Azureside has cherry orchards that looked diseased on `day-70`, with abandoned bushels and plagued earth Morgana connected to the Poison Dragon. +- Azureside has cherry orchards that looked diseased on `day-40`, with abandoned bushels and plagued earth Morgana connected to the Poison Dragon. - Alana, Pact leader, said plague had overtaken Heartmoor after Carl left town; Alana and the guild were trying to run things. - The cobbler's shop served as town hall, with Greysock Soulspindle, Ahlabre / Alizabesh Azure, and Captain Spratt present. - A seaweed-stone temple was immune to dragon acid. - The Cheery & Cherry was a dodgy pub used by Dollarmen and their black-eyed snake-bottom boss. -- On `day-71`, Azureside was evacuated toward Threeleigh after Perodika's smoke caused panic, possession, choking, woodlice, invisible-bug hallucinations, and a threat that all Pacts were off. +- On `day-41`, Azureside was evacuated toward Threeleigh after Perodika's smoke caused panic, possession, choking, woodlice, invisible-bug hallucinations, and a threat that all Pacts were off. ## Related Entries diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md index 7915125..429f2b3 100644 --- a/data/6-wiki/places/grand-towers.md +++ b/data/6-wiki/places/grand-towers.md @@ -6,7 +6,7 @@ aliases: - Grand Towers passage - Grand Towers boardroom first_seen: day-16 -last_updated: day-71 +last_updated: day-41 sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-23.md @@ -14,7 +14,7 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-41.md --- # Grand Towers @@ -30,7 +30,7 @@ Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, - Floor 65 contained a central pillar and shelves of memory orbs like Ruby Eye's lab. - Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadwal trapped downstairs, Harthwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. - Geldrin reached floor 98 and found Browning before alarms and golems forced the party to flee. -- On `day-71`, Basalisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. +- On `day-41`, Basalisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. ## Related Entries diff --git a/data/6-wiki/places/minor-places-days-36-70-71.md b/data/6-wiki/places/minor-places-days-36-40-41.md similarity index 94% rename from data/6-wiki/places/minor-places-days-36-70-71.md rename to data/6-wiki/places/minor-places-days-36-40-41.md index ff44560..e84d42a 100644 --- a/data/6-wiki/places/minor-places-days-36-70-71.md +++ b/data/6-wiki/places/minor-places-days-36-40-41.md @@ -1,13 +1,13 @@ --- -title: Minor Places from Days 36, 70, and 71 +title: Minor Places from Days 36, 40, and 41 type: places rollup sources: - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- -# Minor Places from Days 36, 70, and 71 +# Minor Places from Days 36, 40, and 41 | Place | Context | Outcome | |---|---|---| @@ -30,7 +30,7 @@ sources: | Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, monastery | Coalmont Falls services and nearby missing-logger/Zigglecog references. | Coalmont page / rollup. | | Lake, underwater obsidian archway, Dull Peake, Domain of Anthrosite, underground chamber, underwater barrier, freshly cut stone corridor, ticking-rune door, geyser pit, Envi's circular room, merfolk lodge | Coalmont prison/facility sites. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md). | | Pit made against the merfolk | Dome-start pit Sir [uncertain: Counting Fibo] was supposed to remove. | Open thread / rollup. | -| Cobbler's shop / town hall, Firevine, town square, seaweed-stone temple, lake, bell tower, Cheery & Cherry, sewers, cursed lands, Saphire Shores | Azureside/Heartmoor day-70 sites. | [Azureside and Heartmoor](azureside-heartmoor.md), [Dollarmen](../factions/dollarmen.md). | +| Cobbler's shop / town hall, Firevine, town square, seaweed-stone temple, lake, bell tower, Cheery & Cherry, sewers, cursed lands, Saphire Shores | Azureside/Heartmoor day-40 sites. | [Azureside and Heartmoor](azureside-heartmoor.md), [Dollarmen](../factions/dollarmen.md). | | Threeleigh, Donly, horizon of green shape, Aire | Evacuation and route after Perodika attack. | Open thread / rollup. | | Savannah hunters' encampment and red-eyed settlement | Hospitality settlement where Searu appeared. | [Searu](../people/searu.md). | | Tower in the flames and Goliath settlement below tower | Perodika/Searu vision location. | Open thread / rollup. | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 3cda5db..7654231 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -34,8 +34,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Sources @@ -72,9 +72,9 @@ sources: - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hearthwill](people/lady-hearthwill.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). -- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hearthwill](people/lady-hearthwill.md), [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md), [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md), [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md), [Coverage Audit](clues/days-36-70-71-coverage-audit.md). -- `data/4-days-cleaned/day-70.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md), [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md), [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-70-71-coverage-audit.md). -- `data/4-days-cleaned/day-71.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md), [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md), [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-70-71-coverage-audit.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hearthwill](people/lady-hearthwill.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-40.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). +- `data/4-days-cleaned/day-41.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 40, and 41](people/minor-figures-days-36-40-41.md), [Minor Places from Days 36, 40, and 41](places/minor-places-days-36-40-41.md), [Minor Items from Days 36, 40, and 41](items/minor-items-days-36-40-41.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-40-41-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 0b4075b..988a251 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -34,8 +34,8 @@ sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md - data/4-days-cleaned/day-36.md - - data/4-days-cleaned/day-70.md - - data/4-days-cleaned/day-71.md + - data/4-days-cleaned/day-40.md + - data/4-days-cleaned/day-41.md --- # Timeline @@ -76,5 +76,5 @@ sources: - `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. - `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns Pride was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Harthwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. - `day-37` through `day-69`: Not included in this wiki pass. -- `day-70`: At [Azureside and Heartmoor](places/azureside-heartmoor.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). -- `day-71`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears Basalisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). +- `day-40`: At [Azureside and Heartmoor](places/azureside-heartmoor.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). +- `day-41`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears Basalisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). -
864e813More pagesby Bas Mostert
data/2-pages/153.txt | 38 + data/2-pages/154.txt | 37 + data/2-pages/155.txt | 38 + data/2-pages/156.txt | 38 + data/2-pages/157.txt | 38 + data/2-pages/158.txt | 38 + data/2-pages/159.txt | 40 + data/2-pages/160.txt | 43 + data/2-pages/161.txt | 38 + data/2-pages/162.txt | 35 + data/2-pages/163.txt | 41 + data/2-pages/164.txt | 42 + data/2-pages/165.txt | 45 + data/2-pages/166.txt | 48 + data/2-pages/167.txt | 55 + data/2-pages/168.txt | 43 + data/2-pages/169.txt | 49 + data/2-pages/170.txt | 51 + data/2-pages/171.txt | 48 + data/2-pages/172.txt | 50 + data/2-pages/173.txt | 41 + data/2-pages/174.txt | 52 + data/2-pages/175.txt | 46 + data/2-pages/176.txt | 42 + data/2-pages/177.txt | 36 + data/2-pages/178.txt | 39 + data/2-pages/179.txt | 43 + data/2-pages/180.txt | 40 + data/2-pages/181.txt | 42 + data/2-pages/182.txt | 41 + data/2-pages/183.txt | 38 + data/2-pages/184.txt | 37 + data/2-pages/185.txt | 38 + data/2-pages/186.txt | 36 + data/2-pages/187.txt | 33 + data/2-pages/188.txt | 42 + data/2-pages/189.txt | 45 + data/3-days/day-36.md | 1131 ++++++++++++++++++++ data/3-days/day-70.md | 162 +++ data/3-days/day-71.md | 202 ++++ data/4-days-cleaned/day-36.md | 229 ++++ data/4-days-cleaned/day-70.md | 107 ++ data/4-days-cleaned/day-71.md | 107 ++ data/6-wiki/aliases.md | 35 +- data/6-wiki/clues/days-36-70-71-coverage-audit.md | 35 + .../clues/known-passwords-and-inscriptions.md | 16 +- data/6-wiki/concepts/barrier.md | 13 +- data/6-wiki/concepts/bridgets-doors.md | 38 + data/6-wiki/concepts/excellences.md | 7 +- .../concepts/gods-bargains-behind-the-barrier.md | 43 + .../goldenswell-prison-network-and-memory-grubs.md | 6 +- data/6-wiki/factions/dollarmen.md | 42 + data/6-wiki/factions/the-pact.md | 10 +- data/6-wiki/factions/underbelly.md | 5 +- data/6-wiki/inventories/party-inventory.md | 18 +- data/6-wiki/inventories/party-treasury.md | 7 +- data/6-wiki/items/grand-towers-bargain-trinkets.md | 41 + data/6-wiki/items/minor-items-days-36-70-71.md | 34 + data/6-wiki/items/searus-arrow.md | 35 + data/6-wiki/items/snake-slayers.md | 34 + data/6-wiki/open-threads.md | 24 + data/6-wiki/people/basilisk-busalish.md | 7 +- data/6-wiki/people/brutor-ruby-eye.md | 7 +- data/6-wiki/people/edward-browning.md | 9 +- data/6-wiki/people/garadwal.md | 10 +- data/6-wiki/people/icefang.md | 40 + data/6-wiki/people/lady-hearthwill.md | 12 +- data/6-wiki/people/minor-figures-days-36-70-71.md | 80 ++ data/6-wiki/people/peridita.md | 8 +- data/6-wiki/people/searu.md | 34 + data/6-wiki/people/status.md | 38 +- data/6-wiki/people/wrath.md | 41 + data/6-wiki/places/azureside-heartmoor.md | 48 + data/6-wiki/places/brookville-springs.md | 40 + .../places/coalmont-falls-and-asmoorade-prison.md | 47 + data/6-wiki/places/grand-towers.md | 47 + data/6-wiki/places/highden-fell.md | 40 + data/6-wiki/places/minor-places-days-36-70-71.md | 38 + data/6-wiki/places/rimewatch-ice-prison.md | 5 +- data/6-wiki/places/valenthielles-prison.md | 39 + data/6-wiki/sources.md | 6 + data/6-wiki/timeline.md | 7 + 82 files changed, 4507 insertions(+), 23 deletions(-)Show diff
diff --git a/data/2-pages/153.txt b/data/2-pages/153.txt new file mode 100644 index 0000000..9af0b7b --- /dev/null +++ b/data/2-pages/153.txt @@ -0,0 +1,38 @@ +Page: 153 +Source: data/1-source/IMG_9817.jpg + +Transcription: +[Mathwall] - Querying what is going on at goldenswell? +- Want to speak to lady Lyraine @ Rivers meet. + +Dirt's dad & army - are now in Sunset Vista +on their way to fight Green Dragon + +[Mathwall] sending lady [rabbit] to speak to Lady Lyraine. +Go to Azurescale to speak to the Merfolk & gather +information about the Goliath city. + - Statue to Hydrath. + +Jin Woo - Teleport to the cherry orchard at Azureside + - End up in Calcmont +Appeer by statue pregnant female cat lady. Rose in one +hand & scythe in another. + +Try again but end up in Coalmont Falls! +Brown/greenish mining town. - steam powered mine-carts. +Waterfall occasionally turns black. Don't know why. +Need into town. + +Smokesblood Stout Brewery/Inn. +Morgana turns into an octopus & tries to find +out why the water turns black - thinks its +the creature, bottom of the waterfall - black sediment. + +Fellspour & Prick Inn for a room. not busy at the moment. +Bar man says Blackdragon Born come through occasionally. +Town has been pretty quiet. Heard about dragon +attacks fire wise. Pinespring loggers going missing - shut down +logging industry. + +Zigglecog's mine carts wealthy family - daughter left town +to become a monk at the monastery diff --git a/data/2-pages/154.txt b/data/2-pages/154.txt new file mode 100644 index 0000000..ce99374 --- /dev/null +++ b/data/2-pages/154.txt @@ -0,0 +1,37 @@ +Page: 154 +Source: data/1-source/IMG_9818.jpg + +Transcription: +Cave is where the creature lives, & makes the +water go black (so the fish has heard) they don't +go in the cave) + +Morgana goes into the cavern to investigate it, +gets very choppy & hard to traverse. +comes out of the cave & investigates. +hears a Roar from the cave & the +water then turns black. it moves faster +than the normal flow of the river. + +Morgana takes a sample - smells like water +(Didn't do it when Jin Woo was here 100 or 80 + +Doesn't stain anything, no residue. +Bar keep not sure how long its been happening, he's been +here 9 years. Pack keeper Hanner may know. +Travel down to the lake to speak to her. + +Has happened for the last 1,000 years. used +to be around once a month but now twice +a day. + +Follows a pattern with elemental schools of magic. +Morgana Communes with nature - large black creature +with 6 arms. shackled by his arms under +the water - appears unconscious. chains lead up through +the ground into an alien material - arch way of Obsidian. + +Suggest Merfolk go investigate the cave as may +be able to get further + +some water elementals in the lake. diff --git a/data/2-pages/155.txt b/data/2-pages/155.txt new file mode 100644 index 0000000..53fef00 --- /dev/null +++ b/data/2-pages/155.txt @@ -0,0 +1,38 @@ +Page: 155 +Source: data/1-source/IMG_9819.jpg + +Transcription: +head up to the river to investigate the black +water. + +Merfolk & Hanner & Morgana to check in the river +Rest of us and a Merfolk to investigate on land +(Derek) + +Land. Shield crystal picked up on the compass. +Try to follow the paths into the mountains +but veer off based on where the compass takes us +Find a mine & go through - run out of this +but find a good path to lake. 16:00 + +Water Morgana swims down the river - but water up to +a "wall" then stops and is much easier to swim through. + +Land stumble across old road (ancient) +Find an old sign pointing to "Dull Peake" same +way the compass is pointing +Dirt spots a dark figure - Dragonborn with red eyes. +Try to look up at it & it sees me look at it. + +water - come out in an under ground chamber with +ledges leading off into further darkness. Hanner +uses a light orb highlights a statue 20ft +high with runes x5 in a pentagram hovering +around it. tell us about it +cyclone bottom - sounds like one of the main prisoner +!Asmoorade! +Morgana trys to touch a rune & it throws +lightning. + +Land - Beating of wings - Dragonborn walks into view - Dull +death sooty scales - large overbite - Nelkish diff --git a/data/2-pages/156.txt b/data/2-pages/156.txt new file mode 100644 index 0000000..92bc804 --- /dev/null +++ b/data/2-pages/156.txt @@ -0,0 +1,38 @@ +Page: 156 +Source: data/1-source/IMG_9820.jpg + +Transcription: +Walks confidently over to us. "Domain of Anthrosite" +works for Infestus. - tells him we returned his brothers +skull to Infestus. Pure blood not half blood. like me. +No quarrel with our kind as per the agreement +made. + +Water - Continue down the stream leaving the +statue behind river & approaches a barrier of sort. +doesn't hurt to touch. cruched. + +Land Mention Garaduel's plans & Anthrosite +states he will allow us in to use the +Portal to speak to infestus. +Didn't kill us on sight as Geldrin wears the +robes of the wizards which is part of +their agreement. - they bring food etc. + +Water Morgana tries to misty step through +the barrier & succeeds. can see the +Merfolk but can't touch them. Dispell doesn't +work. +cavern seems to broaden out to the left. + +Land Derek tells us about the barrier. & they are +close by but quite far below us. +Jin Woo thinks we should have gone to see Infestus +Continue back down the road & it seems to +stop suddenly. + +Water - Morganan is stuck & can't misty step +again. Trys to dry out a torch to light to +see further down the cavern. + +Thorn whips a crack in the wall & diff --git a/data/2-pages/157.txt b/data/2-pages/157.txt new file mode 100644 index 0000000..e91bb47 --- /dev/null +++ b/data/2-pages/157.txt @@ -0,0 +1,38 @@ +Page: 157 +Source: data/1-source/IMG_9821.jpg + +Transcription: +seems to open a door in the wall. +Partially going in & the mindless moss stops dead +& it seems like freshly cut out stone. keeps +going & gets to a door with a ticking rune +carved on it. but it will not open + +Land. describe Envi to Derek & the carving looks +like him + +Water Morgana travels further down the river. +room opening up in all directions & all signs of +life is disappearing. +Noise from the prisoner? & water turns black + +Land - Black snow flakes, white goes white +is black flakes in the scoop. + +Water - cavern seems to be getting bigger & downhill +water hasn't changed direction. +sees a giant jet black figure standing in a +hole in the ground (100ft) 4 large arms stretched +out. Water is coming out of the pit in the +ground. seems like it's a statue but feels +like it's alive. standing in a pit of water & +water looks like its shooting up like a +geyser. + +Tent Errol findly a cave we can go to & +try to get there. +- go in out of the wind. + +Water go back & tell Hanner about the figure +say winter roses at the door +& it comes to life diff --git a/data/2-pages/158.txt b/data/2-pages/158.txt new file mode 100644 index 0000000..72717e9 --- /dev/null +++ b/data/2-pages/158.txt @@ -0,0 +1,38 @@ +Page: 158 +Source: data/1-source/IMG_9822.jpg + +Transcription: +thinks it's Rubyeye. Can't open the barrier +as it might let other people in. Rumplky opens +the door & Envi says probably best to come in. + +Morgana follows the corridor to a circular room +with 2 suits of armor & a pillar with +purple cores on for the automatons who will +help with what we are here for - to revive +him! Does one of them + +trys to leave - Door starts to close. & does the +other. Automatons don't detect any rings. +Door between automatons opens & there +is a upright hand on a plinth, & a [strils] +Envi in a tube of viscous fluid. +let her out & will find the rings it does +& the robots follow. +get out of the chamber & one of the +through. forces a hole in the barrier & +a automaton comes through - Automaton +introduces himself as garaduel & activates +recall protocol & they disappear. + +Tent - head back to Coalmont Falls in the +Merfolk lodge 01:00 + +Day 70 + +Talk about the pit made against the merfolk at the start +of the dome - Sir [Counting Fibo] was to remove it + +Try to teleport - make it to the outskirts of Azureside. +Cherry trees look diseased & abandoned bushels etc. +Morgana felt like the earth was plagued - Poison Dragon diff --git a/data/2-pages/159.txt b/data/2-pages/159.txt new file mode 100644 index 0000000..7530825 --- /dev/null +++ b/data/2-pages/159.txt @@ -0,0 +1,40 @@ +Page: 159 +Source: data/1-source/IMG_9823.jpg + +Transcription: +Head over to Azureside. + +Meet up with Pact leader Alana. Plague has overtaken +the town Heartmoor + +Carl left town & Alana & the guild have been trying +to run the town +lots of damage to the town + +Enter a Cobblers - which is acting as a town hall +Male elderly Gnome - Cobbler outfit. Greysock Soulspindle +Female elderly Human - Priest Robes - Ahlabre - Alizabesh Azure +Thuggish male Half-Orc - Sailor look -> Captain Spratt + +Problems pretty bad for the last 6 months & poor +for the last 6 months. + +Dragon coming tomorrow for payment in the + +Some thugs are stealing the offerings left for the dragons +& from other towns folk possibly hanging around Firevine. +* Cheery & cherry - dodgy pub - possibly there. +* Set up the town square for an ambush for the +Thugs. + +Temple made out of seaweed stone - immune to the acid +from the dragons. + +Plague is nothing I've come across - Paralitha - Cholera; Death + +Plague seems to be a concoction of different ailments magical +involvement to link them together. Contagious + +Morgana - feels venomous creatures trying to fight against +her in the healing of the land. +feels a presence airwise. diff --git a/data/2-pages/160.txt b/data/2-pages/160.txt new file mode 100644 index 0000000..d8dc795 --- /dev/null +++ b/data/2-pages/160.txt @@ -0,0 +1,43 @@ +Page: 160 +Source: data/1-source/IMG_9824.jpg + +Transcription: +sees a female figure above the lake. +Monstrosity scorpion tails & snake heads female +face - swarm of birds comes & smashes through +restore the ground to its natural state (even better) + +hidden awaiting the thugs to come & steal the offering 15:00 +2x shadows moving in from Firevine of the city. +go into the buildings - seem to hide. one points up to +figures slink off back into the town away from the +square - human looking. + +Fire ball sets off at the top of the bell tower. + +wizard attacking the tower Half elf - wizard +Dragon born - rogue +Pigeon Aarakoca - rogue +} Dead. + +2 shoes in another building. +get 2 Blackjack clubs from the rogues - I think they are +amazing & I can't use any other weapons. - Bok & Bosh + +Subdue the other 2 henchmen types. - humanoids. +Question them - (Tim Anderson) & Barry +Guys asked help - the 3 dead ones +says they all meet at the pub (Cheery & Cherry) we +sent the sailor to for rumor spreading. + +Did 3 jobs for them - they came into town about a +week ago, rumors they are working from the sewers. +seems like it was them at first and then these other +people come in + +Blackjacks made from scorpion leather (cured & tanned skin) +with jelly fish tendril cords. 15:30 + +go to cheery & cherry +guard on the door has the same armour as the Dragonborn +& Aarakoca. diff --git a/data/2-pages/161.txt b/data/2-pages/161.txt new file mode 100644 index 0000000..793e03a --- /dev/null +++ b/data/2-pages/161.txt @@ -0,0 +1,38 @@ +Page: 161 +Source: data/1-source/IMG_9825.jpg + +Transcription: +guard goes into get the "boss" +apparently they were told not to interfere with +us + +Pub is filled with people, possibly townsfolk about +6 stick out as the same people we have +encountered. Dwarf guarding the stairs. +assume the guard has gone upstairs to the room +where the "Boss" is, is a human, black eyes. normal otherwise +Flanked by 2 Hyenas, rings Snake, wasp, jellyfish, +scorpion. tells the guard to bring us in. go in. + +Boss is with the Dollarmen - Council with Mercy +from Brookville Springs says he doesn't work for +anybody. Apparently this is the easy town - he's the shit +one so got sent to the easy place as not good enough +for any thing else. +Warns us off from venturing further into the cursed lands. +Attack "Boss" - Morgana's Moonbeam shows his bottom half +as a snake - utterly murdered!! + +Subdue one of the Henchmen - kill the rest. +Geldrin leaves the room clutching the skin book to intimidate + +Ulfarun next in charge elf +Gnoll Longfang tries to stab Ulfarun in the back to + +Tell Ulfarun all the pillagers of the village & stealing + +* Dirt plays cards with the remaining Dollarmen 16:30 + +Dragons come pretty early - Different each time. +Last one was - Dark smoke coming from her +before 2 headed diff --git a/data/2-pages/162.txt b/data/2-pages/162.txt new file mode 100644 index 0000000..7bf5053 --- /dev/null +++ b/data/2-pages/162.txt @@ -0,0 +1,35 @@ +Page: 162 +Source: data/1-source/IMG_9826.jpg + +Transcription: +Geldrin, Invar & Morgana go to try to repair + +Dirt & Alana head over to the Cobblers tell them about the +Dollarmen. a ask for help with the crossbow. + +Frilleshanks - gnome jeweler might be able to help. +Jerome - Innkeep at Saphire Shores, - Goodking house style +a right glass for the right beer kind of pub + +Frilleshanks helps geldrin streamline "Snake Slayers" +his apprentice will help operate it (Joel) Dwarf + +Day 71 + +2 dragons seem to approach 07:00 +One - lithe - unremarkable features - veridian Hue +other - No teeth dragon (we've seen before) 09:00 +Grey socks walking towards the town square stops +a few streets away. + +little one lands on a building. +Black puff of smoke & black smoke dragon appears +summoning the cobbler. Greysocks looks up at the tower +smoke dragon looks up at the tower. + +Black smoke dragon waves a claw & disappears. +Roll initiative +ticking female - stabs Joel through +Inkysvagh the horror - runs off +[unclear] - Cezzerliksygh - Dead. +[unclear] Neutron to chitra Entoldust Darkness Born - Dead diff --git a/data/2-pages/163.txt b/data/2-pages/163.txt new file mode 100644 index 0000000..75a4af1 --- /dev/null +++ b/data/2-pages/163.txt @@ -0,0 +1,41 @@ +Page: 163 +Source: data/1-source/IMG_9827.jpg + +Transcription: +revive the dwarf & he runs +off home + +re-incarnate Greysocks to an elf with the Jeweller to +a halfling. + +Go back to the cobblers shop & tell them about +the changes. Captain Sprat goes to get him clothes + +Send Errol to Dirk's dad & give him the +bracelet of locating + +Invar casts Prayer of healing 2hrs passed since +dragon flees off + +- Errol comes back - 1/2 way from Sunset Vista +to Azureside & no bracelet. +Council trying to convince militia to "suit up". + +Hear a big explosion over at the Cheery & Cherry +make our way over to the pub. Longfury standing +out side. Clearing that he is in charge. Send him +off to the town square to attack a dragon if +it appears. Toons folk then appear to put out the +fire. Mighty explosion for a gnoll so investigate the +cause of the explosion. Moonshine vodka helped the explosion +find some cracked copper spheres & assume fire elementals +were released. + +wooden chest under the desk upstairs inside is +a crossbow - Bosh takes it +screams from the town square. +longfury standing on the boxes taunting the dragon +Tell him to hide + +3hrs 10mins passed +12:10 diff --git a/data/2-pages/164.txt b/data/2-pages/164.txt new file mode 100644 index 0000000..fe9bcc4 --- /dev/null +++ b/data/2-pages/164.txt @@ -0,0 +1,42 @@ +Page: 164 +Source: data/1-source/IMG_9828.jpg; data/1-source/IMG_9829.jpg + +Transcription: +Seek an audience with the Pact keeper +never seen the matriarch leave their domain. + +Go back to cobblers & advise to call a mass +town meeting to either evacuate or join us to fight. +take about 1/2 day to evacuate +Start to spread the message about the evacuation +& the town starts to darken & wisps of smoke starts +to roll over the ground & roads. + +Geldrin & Dirk hear whispers from the smoke but can't +hear anything in particular being said. +Townsfolk panic & one turns round with woodlice +streaming out of his mouth & others swatting invisible +bugs. Guide everyone out of the village over to +Threeleigh. + +Perodika + +Smoke turns into 30ft tall dragon beautiful green +Scales. Possesses people & speaks to Dirk: +- All of the Pacts are off & I will everyone in every town. +- Nowhere to run or hide. devour the army first then devour + what she likes +- I think you underestimate me - I am the choking death & + the mother of many. then chokes some of the townsfolk + +Send message to Basalisk +Errol message to Cardonald & rubyeye they say they're coming +to us. Seem to nearly get through but can't as +there is a blocker in the area. will try to get to +Threeleigh or maybe out of the area + +Head to Donly & tell Errol to get Dirk's Dad to direct +towards Donly to meet up. + +See green shape in the Horizon with 3/4 flying around. +light returns to normal she has around 10 mile range. diff --git a/data/2-pages/165.txt b/data/2-pages/165.txt new file mode 100644 index 0000000..14c37bb --- /dev/null +++ b/data/2-pages/165.txt @@ -0,0 +1,45 @@ +Page: 165 +Source: data/1-source/IMG_9830.jpg; data/1-source/IMG_9831.jpg + +Transcription: +Basalisk wants to meet in Donly or Sunset Vista as +blocker unable to teleport to us. + +Hunters encampment in the Savannah - ask for landmarks & head over. +17:00 + +Smallish settlement. - Celebration seems to be happening in town - humanoids +dark skin with red tones - Remind me of Dunnerai completely red eyes. +grant us hospitality - Grinan speaks to us first. + +Morgana speaks to a dog - Hayes - they went hunting +aurouze & his 2 companions didn't come back but +the hunters he went with did come back. +Grinan comes back with a really old lady. (leader) + +Seen in the Aire - Not just azureside which will +fall. We need as much aide as we can muster. + +Head long attack is not how to do it +Those she has wronged can be the greatest ally + +Tower appears in the flames many green dragons +flying - hundreds of Goliaths living below - her +mistress demands the pain. its been going on that +long the goliaths are not in as much pain so +she needs to cause more people pain. Goliaths have a +resistance - small group fighting back. Best time to look around +as she is not at home. & Find a trapped ally. +look into other things and corruptions. + +Attacked her once - respected her and her churches. she +transformed to Searu - her staff changes to one of +her arrows. + +Basalisk appears - we're nothing but trouble - Emmeraine is +under attack. - father @ Dunnensend mobilising army. Muthall +mobilising to Emmeraine. + +Hearthsmoor fisherman, beast plaguing the town +- about 1 hour ago 4x towers sprang out of the ground +making a new barrier around grand towers diff --git a/data/2-pages/166.txt b/data/2-pages/166.txt new file mode 100644 index 0000000..54e3ef6 --- /dev/null +++ b/data/2-pages/166.txt @@ -0,0 +1,48 @@ +Page: 166 +Source: data/1-source/IMG_9832.jpg + +Transcription: +Galdenseell still not providing aide. +Lost all contact with Snow Sorrow. Perens going missing. +Contracted by an interested party (who wishes to lend her aid) +(Peridot Queen) out to get things for herself. +So she will help until something better comes along. + +Agents in PineSprings ran into some undead creatures +Godmount pills may help but he's an idiot. +Don't think we should bring the barrier down. +They will co-ordinate the defense of the other towns +Basalisk will arrange to meet Peridot Queen by Trade Smells +get Cardonald to come get us & take us back +to the army. + +Morgana sends a pigeon to the crows. +Searu's Arrow - Spear +2, once per day for go +attack roll to auto crit. & if all 3 strike a target +in consecutive rounds the target is slain! & arrows +return to fire place. + +- Hayes - gets told to look after leader. + +- Cardonald arrives & we teleport to the army. + +Sleep - But see cracked egg shells all around. +in my dreams dragons around me in the egg shells +cave entrance - Bigger dragon shape - safe & secure +at the same time - no lip dragon comes over & nuzzles +me & roll over & have 6 legs & other deformed +dragons. Mum eats one of the dragons & leaves + +Disadvantage - wisdom, charisma & Intelligence +for the rest of the day + +Day 72 + +Dirk also has an odd dream too but is +a Goliath munching out a fat belly dragon. +Feel like we have a link to them. + +Wake up & go to meet the council in a large tent +Cardonald / Ruby eye / Goliath Elders - Dirk Senior - Ogrim Thunyalus - Gren Boulderfist - +Anita Sandsong - One who seems to be the leader of the sickly goliaths +Blisterfoot diff --git a/data/2-pages/167.txt b/data/2-pages/167.txt new file mode 100644 index 0000000..59dc7bd --- /dev/null +++ b/data/2-pages/167.txt @@ -0,0 +1,55 @@ +Page: 167 +Source: data/1-source/IMG_9833.jpg + +Transcription: +Rubyeye & Cardonald have been looking into things - memories coming back since +Eva slayed The Mother. + +Believes Envi maybe trapped - unsure whos side he is on. +Goliaths Empire - slew Perodika's parents & built a city on their bones. Wyrmdoom +was there for a few hundred years after the barrier went up + +Envi part of the deals with the dark demons. +Need a plan - Best course of action is to infiltrate the Goliaths +in the city & turn them against the dragons. + +Galimma turns up (Peridot Queen) - Calls herself a master spy +will give information freely - if we agree to be left alone +to go about her business choose some mates & live her +life without threat & may kill the husbands +& the odd person. Shed some gold etc. won't be evil but +won't be good. Promises to put a sign on the lair +to notify of risk. + +5 maybe left from the first coupling. +another of Lortesh's sons with a captive wife +3 twisted & 5 other dragons: +- Emeredge - Askellon +- Willowspra - Vahthell - oldest daughter. +- Toxicanthus - Wyrmdoom +- Rotwrake - Thundeya +- Verdigrim - Tradesmells +Lortesh & Perodika's children + +Emeredge resides in Askellon +Twisted - Lapis + Heady + Plague + +Army to attack Tradesmells +We & some others to head to Ashkellon. Maybe? + +Ask Blisterfoot if any of the other rescued Goliaths are +from the towns or member of the resistance. +Returns with somebody claiming to be part of the resistance +in Ashkellon - Three finger Dune shwelter + +Secured who sold as a slave was one of Emeredge's +Dune dwellers. Had a Communication device like a brick with black +feathers. Flew to the other birds, had to tell it to fly slower to be +quiet + +whenever they tried to contact out those people who tried +ended up disappearing. + +Will help us to find the resistance diff --git a/data/2-pages/168.txt b/data/2-pages/168.txt new file mode 100644 index 0000000..0ac2ba8 --- /dev/null +++ b/data/2-pages/168.txt @@ -0,0 +1,43 @@ +Page: 168 +Source: data/1-source/IMG_9834.jpg + +Transcription: +Ruby eye transforms Invar into a Goliath. +Geldrin - Invisible + +Teleport to Ashkellon - In the throne room. - On Tazer + +On the throne - Dragonborn idling picking his nails +Araks. - Confused why we are here & tries to +leave to speak to his master. & gets killed on the +way out. - Put him back on the throne with +a dagger in his back. Zekish. + +Exit the room. scraggy female goliath walks out with a pile of +towels & the guards let her through others come in & out regularly. + +Entrance to the throne room is just storage to heal etc. Emmeredge. +Young boy coming up the stairs with a tray with food +for Arswales. - Dragon we killed - Minthwe cuts him off +duty in 2 hours + +- Tell the guards to leave us alone +- go to wash room - tell goliaths to take the dirty soap. +Linen - look new. & lady in here seems more nervous than +the others. - Dress is bigger than necessary. gave birth a few hours +ago said they'd taken it but she'd stashed it in the +linen basket + +Emmeredge likes Comedy & Acrobatics. +- Baby is called Badger + +Call for the shift to end early. - Guard goes to get +the rest of them & we walk out with them all. + +Every corner seems to be a dragon born. & we head to the +outskirts of the city where there are less guards & enter a +building + +Got in touch with the resistance through Dune shwelter +& the bird is coming tonight - meet at the [Gugghut] 4hrs. +Their next shift is in approx 18 hours diff --git a/data/2-pages/169.txt b/data/2-pages/169.txt new file mode 100644 index 0000000..7d3338f --- /dev/null +++ b/data/2-pages/169.txt @@ -0,0 +1,49 @@ +Page: 169 +Source: data/1-source/IMG_9835.jpg + +Transcription: +large female dragon born walking down the street +looking at the house. hard to be in pairs. +Dirk goes out the back & sees a neighbour +spying on the house. sneak around the house +have axes & armour - surprised. + +- female dragon turns into the Goliaths' Queen lady +& the neighbours are with her - Anastasia. +- Explain the plan to her +The barrier is weak & they are speaking to her +more. + +Anastasia gives Dirk a ring - Envi's 5th ring +15:00 +Now Attune to 3 of them. +If successful the baby should be called "Badger born in freedom." + +Teleport to a hole higher up in the tower to try to rescue +Envi. zoom up the soft tower. +old birds nest seem to have been pushed aside for a landing +spot. + +Dirk sees elders - seem to be on repeat (their minds) +- Head up stairs. +Goliath skulls in Arches decorating the room - old coins dotted around room. +gives us chills. used to be dragon lair? Lortesh? + +Morgana inspects the coins - One is larger then our normal currency +Goliath currency. - Domain of Pengalis top +Dirk - low moan from the wall - all skulls skinned alive. +Next floor - Invar hears a voice - you wear the ring of the betrayer - I can +help - reflection in the ring, featureless woman takes damage + +Alarmed floor - Barracks style antechamber. - next room filled with Beds +& chests. nothing in them - oddly. +room off the side contains statues of 5 gods - but goliathified +Seara - Scorcher - Shielded [armel] (Tor) None descrip Elven Like somebody doesn't +know who they are sculpting - lionheaded guy +Inscriptions - Sefu - for the justice for the Hunt +Holdhum - guides our hands & warms our hearts +Tor - Protects +Lion Head - Attabo - from the stories the people of the cats told +El [corna] - Bridge - to keep our peoples free + +offering bowls in front of the statues diff --git a/data/2-pages/170.txt b/data/2-pages/170.txt new file mode 100644 index 0000000..0a8e2e8 --- /dev/null +++ b/data/2-pages/170.txt @@ -0,0 +1,51 @@ +Page: 170 +Source: data/1-source/IMG_9836.jpg + +Transcription: +Geldrin adds a towers penny to Bridge - Statues head moved to look +at geldrin - words - This place is safe. + +Morgana - adds nip to Attabo's bowl - words A drug to dull the loss +Geldrin adds brass City Platinum - words A payment made +Seara's - Lortesh's Scale - hair of Nature is Highly pleased +Your hunt will be successful however betrayal is at hand. + +Foot steps go up the stairs +Morgana Etches a symbol to Igraine & a bottle of cider +- Cider empties - do not trust him - I did - he promised +me tribute & Never received +offers another Drink - lying in field of white roses. +Laughter of children - chuckling of Dwarf man & Elf (Adilth?) +Dragon soaring above - no Barrier - Elven woman pregnant appears +he made a statue to me & the image of another in his +home & promised me things but chose the easy path +because I couldn't give her life back. Promised things +for her life - came to an arrangement & he took a darker +path. Elderly human man, looks sad, rubs beard & back in room + +- Royal room - mess Hall? - feels like honoured guard space +old pictures on the wall one out of place of +Benu / Guradwal / Goat headed sphinx +back - to the Warriors of the Lion from the Dunemin +backing & canvas comes apart - 2 large feathers +tied the the top with orange & blue feathers +with beads. - Give to Geldrin + +- kitchenette - Chimney seems to go to daylight communal chimney + +Tor Statue - add a note with Badger born in freedom to +the offering bowl - words - Tor Protects all + +Put cloak in the fire in Stitcher's bowl +Smoke image of Ruby-eye & Lute talking +about the hot hands - she says tell you what +I'll make you all cloaks +words - A gift crafted for a friend is the key to it all +Feeling of solace - No spirits in the main room. + +Morgana goes to investigate through the fire place +floor 25 +2 floors up & finds a bedroom - lavish but looks +recently used. +Anti-chamber - crystal - Red +Blue. diff --git a/data/2-pages/171.txt b/data/2-pages/171.txt new file mode 100644 index 0000000..c197297 --- /dev/null +++ b/data/2-pages/171.txt @@ -0,0 +1,48 @@ +Page: 171 +Source: data/1-source/IMG_9837.jpg + +Transcription: +Floor 28 - Bedroom - Air december - crystal - red [in fire?] / blue on wall +again rug is a picture of a dwarf +Holding a dragon's head - one of the dwarf's eyes +is bleeding - Goliath touching his shoulder. + +Floor 28 Library-esque room with an ornate map +of the pentacity slates and a red dome above. +towers at ground towers - here - gap in the sea? +Palace approx where Shousorrow is. +See some one come out from the bookcase +Dragonborn with Goliath on his knees carrying +books - Dragonborn wearing orange/blue robes. +Goliath is hunched round so books on belly +but head makes him look like on knees + +Floor 30 - Are place covered in Goliath faces - eyes scratched out. +Floor covered in coins - walls are transparent - +from this direction (they weren't from the outside) +4 x Dragonborn playing cards - look like they have +armour welded into their scales - 4 ornate swords. +Morgane feels a great evil similar to the feeling +when cleansing Azureside. From the floor below. +Then sees a field of white flowers & feels solace. +Morgane comes back down & tells us what she's seen. +Head up to floor 24. + +Morgane saw a corridor on this one. +long corridor ending in a fireplace +1st left - 2 guards & heavy breathing of something at the corner. +1st right - similar guards & something human large & asleep hunched [between?] +quietly [giggling?] +purple glow 2 sets of feet female giggling +2 dragon born guards. +(2nd left - barrier - looks empty - door is alarmed. +2nd right - barrier - hoofs behind barrier - above them 2 guard. + +Pair of Green Dragonborn go down the stairs. 2/3 floors down. + +4 copper pylons creating the barrier - something made of air +in the barrier +asks to be let out & will help us +guards have a wheel to open the dome - Hephestus +reads morgane's mind & says don't let him out! +Hephestus wants to clean the land. diff --git a/data/2-pages/172.txt b/data/2-pages/172.txt new file mode 100644 index 0000000..c901b5a --- /dev/null +++ b/data/2-pages/172.txt @@ -0,0 +1,50 @@ +Page: 172 +Source: data/1-source/IMG_9838.jpg + +Transcription: +2nd right - 2 x dragonborn - glowing axes. +goat man - walking backwards & forwards in the Dome +lets us done this for so long + +1st left - guards - vicious whips with barbs +sphynx - goat head + +1st right - guards - mirrors - cracked. +Elven woman - buttercups in her hair - copper hair +standing rocking slightly laughing. Locked door behind us. + +Floor 25 +(Door at top of tower it opens) +6 doors. Willow wispa is coming - mum's told +sword / shield / Axe / Tower / Book / Bridge / Axe. +writing [been?] to come +Lock door behind us sleeping & talking +Another hour before shift starts - boring. + +Floor 26 +somebody walks towards the door run up to floor +27 & see a goliath walking out with a tray. +Into Floor 27 Library +Slen librarian +2 guards walk into the room. +Calls me The Exiled not allowed up here. +Not with willow-wispa - Calameir is coming here. + +- killed guards. + +- browse the library. - throw a romance book to Blisk. +take a few books from each section +find a Poem about Valentenhide's fall similar/word for word +to the one found in Dumnenend + +- Approx 8 guards(?) go up stairs + +Dirk retrieves Bone chips from the 2 killed guards which are +each etched with Dragon's & one on them. - Dragon Currency +10 mins later 3 sets of steps try to come downstairs +come into the room. +One has the wand totem brought from the sister +in Dumnenend. + +Dirk sees Joy - she's sorry - they've got him we should go +now - (we think that is Rubyeye) diff --git a/data/2-pages/173.txt b/data/2-pages/173.txt new file mode 100644 index 0000000..b24e243 --- /dev/null +++ b/data/2-pages/173.txt @@ -0,0 +1,41 @@ +Page: 173 +Source: data/1-source/IMG_9839.jpg + +Transcription: +- have 5 x goodberries from morgane. + +go up to 28th floor +teleportation circle & 2 x domes - one with Ruby +eye in it the other has 2 x ghost figures +(Emri & Joy) + +Ruby eyes was an illusion + +- Emri's seems to have a "leak" & requests +the skull of Treamon & doesn't answer the question +about the rings. + +Ruby eye dispelled the magic keeping him trapped +he teaches the rings to us as proof it is him. +activate in "the Barrier" so Joy can't leave. +We don't understand the sacrifices he & her mother made +to keep Joy safe. +His pacts with Kashe were his downfall +asked why Joy needed to live eternally & so many +sacrifices needed to be made to do so + +29th floor - New carvings of scorpions Tellfether etc. +sense evil from the door. + +go into the room. +purple crackling energy with 10 x 10ft green blob dripping in +the middle of the energy. +2 figures around it medusa, statue figure +child of the mother with a worm & eyeless dog + +Bronze & telescope at the back of the room (like Emri's) +painting clockwise at the wall. +Shield spell appeared on the floor - shielded us +Health pipe on my belt - healed people +Coin appeared in Thuvia's hand - got rid of the dragons +Dirk's sword grew flames. diff --git a/data/2-pages/174.txt b/data/2-pages/174.txt new file mode 100644 index 0000000..3e8be49 --- /dev/null +++ b/data/2-pages/174.txt @@ -0,0 +1,52 @@ +Page: 174 +Source: data/1-source/IMG_9840.jpg; data/1-source/IMG_9841.jpg + +Transcription: +Dragon vision on the ceiling shows Dragons terrorising +the town. [new?] used the coin from Bridge +& all but the fat dragon vanishes. + +Geldrin uses Treamon's skull to cause a meteor strike +on the dragon & the town + +activate the shield with the, coin +Brother fracture used to do shield disappears +& the goliaths in the city all gain weapons & shields +& heal slightly. + +As the blessings activate - a tiny hole is noticeable in +the barrier. +Emmeredge dies! +Noxia smashes the floor & breaks 2 floors & we all fall +down - through Emri's floor +Book in Geldrin's bag hums & Kesha wants to help for +no cost now... Does not take the offer right now +Kill the Noxia Beast avatar + +Talk to Cardenald - Tradesmells totally empty - no dragons - +no goliaths... +Rubyeye is missing + +Check on Emri - he's still in prisoned - Cardenald speaks to him +he's not complete. bits of his soul are missing - one is the guilt +but misery others too. +Formation of the barriers is not the only thing they learnt. Elves tried +to remove other parts of their soul in an effort to perfect +themselves, they learnt this +- large man under the mountain = battery + +Benu's other kin - Trixius. + +- head down to the prison rooms. + +[boxed note] +Skull (week) +charge +cooldown. + +[boxed note] +guilt +sorrow +compassion +Joy? +Mercy diff --git a/data/2-pages/175.txt b/data/2-pages/175.txt new file mode 100644 index 0000000..b2c559c --- /dev/null +++ b/data/2-pages/175.txt @@ -0,0 +1,46 @@ +Page: 175 +Source: data/1-source/IMG_9842.jpg + +Transcription: +Hephestus door has Banishment on it level 9 + +Goat headed sphynx - Elemental of light - Trixus. + +Elf lady - Dragon - copper? - Metallic good? (childhood chants) + +Goat Man - Thromgores boy? - Steven - (Shuert locked up elsewhere) + +Emri put him in here - he helped to contain Valentenhide. + +- Steve just wants to Bob stuff & he seems sincere. +Been here for 1,000 years. Elf/Dragon not been here long. + +- Dragon lady - hungry - open barrier to give her food - doesn't try to escape +as the barrier makes her safe - says he's gone now & seems +sad - guards say he's dead - he's gone recently - Lorleh? +have we seen her boy - doesn't know why she is +here - ate about 1 week ago - let her out & +give food - find a maggot in her ear. remove it +she uncontrollably cries. remembers everything - Copper +Dragon - home is Snow Screen - used to play with +King & queen's son in Snow Screen. (Now Snow Sorrow) +[Ice fang] (Atlih) + +- Gold Dragons? +Verdugrim - he's/Lorleh's son - the tarnished - bred [all?] Verdugrim's +dragonborn & goliaths + +(Mama) Eveline Heathsall was betrothed to argentum & became +a Heathsall. + +Igrine came to see her while she was sleeping +& she said she was lucky she wasn't +captive any where else as she couldn't speak to +her, somewhere else. + +ice fury was approx 30-40 years older than her. + +go to see Trixus (Benu's little Brother). +asleep - loud noises don't wake him +open the barrier +has 4 x brass rings on each paw diff --git a/data/2-pages/176.txt b/data/2-pages/176.txt new file mode 100644 index 0000000..1606bb0 --- /dev/null +++ b/data/2-pages/176.txt @@ -0,0 +1,42 @@ +Page: 176 +Source: data/1-source/IMG_9843.jpg + +Transcription: +under the Slumber version of the +imprisonment spell. +runes on rings: +A Blessing from Altabre, Protector of the Brass +city, Salvation to his Children. First of his name +5th of his kind. + +Shuert comes through the portal & falls through +to the library, & comes to find Steven +promises he has Ruby eye... + +go to check out the treasure hall. +Lots of goliath currency, Brass city, Dumnen & also +Massive triangular coins currency of Snow sorrow, one +has a female sphynx resting its hand on a +dragon. - take copper dragon down & put Tixun's +hand on her head - he has a brief stir & +recognition but stays asleep. + +- Library - book on Benu, Garadwal & Trixus - last 3 of Altabre's +children who walk on the earth. - came from +Fire Gardwell looked after the Dumnen's - enjoyed the +gifts. - Igrine gave them the gifts to heal their +people +Trixus - helped to create Brass city - Tabaxi, confused +& lost but Trixus helped them, industrious & proactive +in creating things - Not sure where the brass is +coming from - (Blessing from Shulcher?) +Benu - Protector of the elves - helped construct the +great tower - doesn't do alot of protection - seems to +train them in Art & poetry etc. & they became obsessed +with it. Benu sees errors in its ways - some point +Benu leaves (no info why) & hides. +waiting as if the historian wants to be noticed to +get a protector. + +Book mentions knowledge of 5 Sphinx's dated 700 BD & dated (returned +to Altabre?) diff --git a/data/2-pages/177.txt b/data/2-pages/177.txt new file mode 100644 index 0000000..b52e4bf --- /dev/null +++ b/data/2-pages/177.txt @@ -0,0 +1,36 @@ +Page: 177 +Source: data/1-source/IMG_9844.jpg + +Transcription: +Geldrin places Snow Sorrow coin onto Altabre's offering bowl +white creature comes in & destroys the city female +Sphynx comes out & lays a hand on its head & they +both disappear. she disappears in sparkles, white dragon +remained - vision ended. +words - The father wishes freedom for all his children. +statue seems to be looking at Geldrin. +- sphynx turned into the dragon? +Symbolism of the shield Trixus? + +Observatory room +flesh crafting wand +lots of books - One about Noxia wanting to walk on the earth +written by a Goliath. - Study of what Noxia left behind. +in the fight between Noxia & Sierra. - Drops of Noxia +blood corrupted the earth & ensured things didn't grow. + +- Dragon Born forces leaving the city going! Earth Waker, side. +Decide to go to Bleakstorm... 17:30 +* Blizzards when we teleport outside - outside the +castle around 10 mins walk +* citizen walks past and says it's a pleasure to +see more visitors. +* Approach the partially ice dwarf guarding it along +with a strapping Goliath - Portraits is an illusion and on +is real. + +Lord Bleakstorm was here but he apparently left the other +Being attacked by ice elementals - Altwares have been happening +since leaders left approx 1,000 years ago. The half +Elf was from Everdard originally. we don't know +how this works. diff --git a/data/2-pages/178.txt b/data/2-pages/178.txt new file mode 100644 index 0000000..dd8d47d --- /dev/null +++ b/data/2-pages/178.txt @@ -0,0 +1,39 @@ +Page: 178 +Source: data/1-source/IMG_9845.jpg + +Transcription: +Detects Time - Device - Notes Dirk is missing a day. + +Bleakstorm has been cursed & Blessed - I only exist because +of him - he was there when we were set free. +he's made a deal with both a good & bad person. + +The Half Elf seems to know us all & our feats. +5 is a good number. + +- call him out as Lord Bleakstorm. & we appear next +to him in a throne room. Lots of pictures around. +The room showing acts prior to the barrier all seem +to be done by the same person. + +- Broke some rules, coming to see us & he can't break +on occasion + +- Request sanctuary for the dragon friend - he recognizes +her & needs to look into her name. + +He will not forgive Emri, as took away his only friend. +& entrusted him despite saying no to it. +Wasn't the dragons who took him, he was +tricked into releasing his friend, +He often trusts his god which she appreciates. + +- Promised the elementals we would free his friend. (leechus) + +- Tips outside the barrier can be difficult but + +Perodita heading to Heathwall +Bridge's sister is nasty trickery (Atana?) Valentenhide +we have 7 hours before she gets to Heathwall. +can go back in time but there is a cost +Ruby eye is out of his sight diff --git a/data/2-pages/179.txt b/data/2-pages/179.txt new file mode 100644 index 0000000..40a1d40 --- /dev/null +++ b/data/2-pages/179.txt @@ -0,0 +1,43 @@ +Page: 179 +Source: data/1-source/IMG_9846.jpg + +Transcription: +Trixus got a task he was not going to +achieve. + +Send a message to the Basilisk about Perodita +heading to Heathwall - Didn't send us outside the +Barrier. + +Gardwal getting stronger inside the barrier at +Gravel basers. + +1 hr 35 mins + +ask if we can free Perodita. - will need to ask +Bridge. - go through a doorway onto an invisible +walkway - Reopen the door to clouds. +the clouds transform into a female face +proposal to free Perodita - she seems to like that +idea - requests us to pay homage to her +if we agree to release Valentenhide then she +will ensure she adheres to the god rule. +grants our idea & we appear at Heathwall +& see Perodita vanish!! + +Head over to Heathwall. - speak to Lady Parthabbit +Lady Heathwall isn't in she's gone Airwise to help +us with the battle heading to Emmerave. + +* resend message to the Basilisk. + +- T.J. Boggins is still here eating meat & watching +opera. + +- Jin Woo is absent. + +[boxed note] +Head for breakfast after a restful night's sleep +All the wizards appear to have been called back +to grand towers +More & more people seem to be finding lost documents diff --git a/data/2-pages/180.txt b/data/2-pages/180.txt new file mode 100644 index 0000000..8618ae5 --- /dev/null +++ b/data/2-pages/180.txt @@ -0,0 +1,40 @@ +Page: 180 +Source: data/1-source/IMG_9847.jpg + +Transcription: +Information [crossed out] memories started to come +back around a week ago (aligned with when +we killed The Mother) + +- Goldenswell still out of sorts since the kidnappings +- Two kobolds in the city now - lieutenant ??, + travelled from Airwise - similar story to [us]. +- meet his lieutenant Grimby the 3rd. + Had a job working for a wizard, evil wizard + & some adventurers helped him escape + capturing woodcutters for her Army. (Klesha) + Bodalisk told us about them + + lovely Envoy came to him how to kill his townsfolk. + (Dragon?) - silvery green. + +Just woke up at pine springs in the snow run +off because of a huge bird sparkling electricity. +then ran off to the forest. + +he was kidnapped as he used to sleep on +top of his mother. + +The place he came from had lots of words, +the same as this place. (Harthall) + +- there was a door in one of the rooms with + a goat man in - had gone when he left [unclear] +- (Shriek?) + +- Wroth - trapped Envy when he trapped Mama Harthall + as envy is in Mama Harthall's head like he is + in Rubyeye's + +Geldrin finds a disintegrated scroll in Jin Woo's room +& on the back is written "In her gaze, End of Days" diff --git a/data/2-pages/181.txt b/data/2-pages/181.txt new file mode 100644 index 0000000..a883979 --- /dev/null +++ b/data/2-pages/181.txt @@ -0,0 +1,42 @@ +Page: 181 +Source: data/1-source/IMG_9848.jpg + +Transcription: +Morgana finds a Auction House Receipt +Chess board with the wizards as the carved +pieces one of the rooks looks like brakemen. + +Auction House Receipt is for a large picture +frame with a massive moth + +Pub is called "11th Duke of Harthall's wife" +Moustached fat dude - on his arm was a really good +looking Raven-haired half elf. + +Near the Cathedral of Attabre is a +ominous church - sign - Lord Argenthum's Rest. + +Dwarf blacksmith pulls Invar to the side & says +it's good to see others look around & [says] +they are here for other reasons - not just to sell +wares & gives him a box + +Golden Dragonborn +Tomes of places they have only just discovered. + Ashkhellion - Goliah City. + Tradesmells. + Thadkhell + Wormdoo + Oldym + Broken bounds. + Blacksmirk + Last past Airwise + +Invar opens box slightly and it glows bright & is warm +closes it to open it fully later + +Crowd of people gathering around a vulture man with +a glass box containing a glowing open book. +get into the queue to go see what the book is +person in the front is an elf with bushy +the ends of his ears & asks the book diff --git a/data/2-pages/182.txt b/data/2-pages/182.txt new file mode 100644 index 0000000..be66ac8 --- /dev/null +++ b/data/2-pages/182.txt @@ -0,0 +1,41 @@ +Page: 182 +Source: data/1-source/IMG_9849.jpg + +Transcription: +Morgana asks where rubyeye is & nothing happens now +asks who can help find Rubyeye - a picture is +drawn of a pale dwarf with black dreadlocks - with a crown +over words say picture smudged +One more glance a death dance + +Geldrin - how do you exile Trixus? +picture of Benu & Trixus & Garadwel with 2 sphynx behind +them - "a family reunited" is written underneath +One just an outline. +Geldrin then hears a whisper in his ear +"one brief look - last breath look +turns round - sees a featherless women reflected in +Invar's armor & collapse to the floor. +(Valentenshide) + +Book written by Benu. +& 5 books in total - Goldenswell, Snowsorrow, Dumnensend, +Freeport & Harthall + +Ask book for location of papael'munsera - blank page. + +Tote dwarf civilization + 2nd came the dwarves first of logs & five of + the deep - 3 great citys of each - many lost over + the years but each still exist. + +Benu's family names: + missing one - no name given + Anadreste + Benu + Gardwel - name hidden on the page + Trixus + +I feel a hand on my hand - nothing there [vulture man] +says "in her stare honey laid bare" vulture man doesn't +remember speaking diff --git a/data/2-pages/183.txt b/data/2-pages/183.txt new file mode 100644 index 0000000..bb4c794 --- /dev/null +++ b/data/2-pages/183.txt @@ -0,0 +1,38 @@ +Page: 183 +Source: data/1-source/IMG_9850.jpg + +Transcription: +Their was page one so ask what is on page +2 - elements seem to be clashing & a bright light +raises of the page & leaves a black hole & lots +of different elements appear & converge into the world +we currently know. + +shows the last page - shows "The End" then shows +"one more glance a death dance" +one brief look last breath look +In her stare Bones laid bare +in her gaze the end of days" + +Book slams shut - never done that before. +reminds us of Dumnensend & a kids poetry book + +Morgana has the book last poem in the +book is that one - 2nd to last is a +council meeting with plans to take out Valentenshide + +Golden dragon born looks for Dwarven lost cities. +finds 2 books - written by a scholar - Lord Hawthorn +extracted from civilization after the death of the +princess Maesthon (dead - claimed) & Grin gray +(Atltrino) +location - in 1 volcano +each book references the other city - neither +references a 3rd city. +references authors' friend Rubyeye who is married to +a princess of Grincray - written so the reader doesn't believe +she is a princess of Grincray. (Princess of the lost ones) + +Morgana asks a Shutiny to speak to the chorus of the kings +the location of Grim & Cray +Door entrance to both city's diff --git a/data/2-pages/184.txt b/data/2-pages/184.txt new file mode 100644 index 0000000..f793d3c --- /dev/null +++ b/data/2-pages/184.txt @@ -0,0 +1,37 @@ +Page: 184 +Source: data/1-source/IMG_9851.jpg + +Transcription: +Dragonborn - finds book on Hawthorn - was +a botanist - not sure why he's writing about dwarfs +otres - Biography written by Rubyeye but borrowed 94k +one of the first people who left, [90] years ago. +Developed the giant bees & winter flowering plants +Bred some of the animals at "the menagerie" +created winter Rose. +Blossoming tree gifted to Goldenswell? + +Back to the Castle to wait for the bird. +Decide to open the box Invar has. +Contains a small black orb where lava stone goes +to go through the racks - & snake heads as eyes. +doesn't respond to Morgana trying to speak +to it. Speaks lots of languages. +Been in the box for one min moon 300 days. +Icefang said we could release him - papa'e munera +just a part of him - knows where the rest of +him is & will take us there to free him & [unrasorak] +blessed by Anadreste + +Friends extracted him from the lake - Dwarves & +seen errors of their ways & want to release +him now. + +Ruby eye is no longer welcome at the city. +king is paleskinned with black dreads + +- Shurling arrives - chorus knows where the entrance + to Grincray is but need to go through Mashir + +- flesh crafting wands - something still out there + stopping all of the lost knowledge being retrieved diff --git a/data/2-pages/185.txt b/data/2-pages/185.txt new file mode 100644 index 0000000..2c7779c --- /dev/null +++ b/data/2-pages/185.txt @@ -0,0 +1,38 @@ +Page: 185 +Source: data/1-source/IMG_9852.jpg + +Transcription: +Lady Harthall appears. +She went with some forces from Dumnensend to +defend near where we were fighting. lots of +"Dragon born" defending + +Emeraire Hartmor araltar - thought Bridlator was going +to attack Harthall - she did before she disappeared. +Started to remember things - Remembers Icefang more & +he cared for her - They both assaulted Perodita, he +was starting to lose his mind. She had appear unexpected for +her youth. + +Tell her about the copper dragon & snow sorrows & big +flash of recognition. Remembers Gold dragons +Tell her about Jin Woo +Grand Towers done + +- Menagerie - mages who work there have not returned to + Grand Towers & have locked the menagerie down + no-one can get in - it used to be the mage school + Emi's apprentice was a dark skinned elf - Joy didn't + like him - Mr Browning also didn't like him. Browning + was a nice man (but this isn't what we have seen) + +Storms bad as of last reports. +Heathmoor plagues are very bad. doesn't share +similarities of barrier sickness - land is healing but +the people are not. + +carrying news from rear Ironcraft Air site - tradesman +went to pick up some one but he had +"Disappeared" + +the guilt is Emi's Guilt. diff --git a/data/2-pages/186.txt b/data/2-pages/186.txt new file mode 100644 index 0000000..c4e81ef --- /dev/null +++ b/data/2-pages/186.txt @@ -0,0 +1,36 @@ +Page: 186 +Source: data/1-source/IMG_9853.jpg + +Transcription: +Goldenswell - Earl need to be fair & ok +8ish weeks ago pulled his armies & left Harthall +in the lurch + +- Claymeadows - The believers are killed her niece +- lovely Brooching - person Harthall would like to see + replace the Earl of Goldenswell. + Harthden demolished by the giants. + situation difficult to rally Threepaws to anything + +Options: + Rally forces Goldenswell + snow sorrow + Dwarves + +find out what is going on with Grand Towers +use Gardwell's feather to speak to him. +Feather is a one person walkie talkie. + +Try to speak to Garadwel - it vibrates & chill in the +air - calls as his allies - huge we came to +see the errors of our ways - "he has kept them +here - barrier is his - Betrayer sits amongst us (daughter) +Mother was a useful ally - only the cause that mattered +only one more - Anroch or the Grab. +friends trapped him. Everyone against him - before he convinced +the vessel. Where is his brother? Told him +to help us bring down the barrier. trapped the mages +5th sphynx - was father + +Once barrier is down all the wrongs against him +will be rectified. diff --git a/data/2-pages/187.txt b/data/2-pages/187.txt new file mode 100644 index 0000000..e5bfcb1 --- /dev/null +++ b/data/2-pages/187.txt @@ -0,0 +1,33 @@ +Page: 187 +Source: data/1-source/IMG_9854.jpg + +Transcription: +People didn't build things as he'd taught them +& instead ran off to live like primitives. +Benu failed as abandoned his post - Trixus didn't as he +didn't abandon his post. + +Dad - +Tells Garadwell the Vulture men are back at +Dumnensend and Hephestos is still alive... + +Quick update - via sending stone - Grand Towers dome +is down - Garadwell probably gone to Ashkhellion. +Do we go to Ashkhellion & get Benu first? +Go to the library to speak to the Vulture Man. +goes to get his sending stone to speak to Ashtrigwos +to tell Benu to meet us at the tower in Ashkhellion. +Geldrin asks for magical scrolls & got them Just +Before the teleportation circle completes. Go to Ashkhellion + +Appear higher up in the tower & Harthall transforms to +a dragon to catch us. +go to the prison room. there is a dwarven man +with the barrier opener around Hephestos prison. +Asks if he wants to see his brother first. & he transforms +to normal self. +Notices Trixus is sleepy... +ceiling above vanishes - Benu appears. +Lady Harthall drops to her knees & starts to glow +humanoid is the size of the tower & wakes Trixus +(A family re-united) diff --git a/data/2-pages/188.txt b/data/2-pages/188.txt new file mode 100644 index 0000000..e7f9c33 --- /dev/null +++ b/data/2-pages/188.txt @@ -0,0 +1,42 @@ +Page: 188 +Source: data/1-source/IMG_9855.jpg + +Transcription: +Steven not in his barrier + +Benu lands between us & Trixus/Garadwal (Trixus still in barrier) +Ask Gardwel to lay down his weapons & he refuses +Try to get the dome opener & Garadwal kills me. +Benu attacks Garadwal. Geldrin uses tremor skill to release Trixus. +revive me & see Valentenshide manage to look away. +Benu & Garadwal break through the walls & fight +outside. - fight ensues - Garadwal is banished 5:00 +Benu tells Trixus what has happened to Garadwal. Trixus +asks where Benu was when his people were in trouble. +Dark clouds above the dune - Perodita appears but looks very +bedraggled compared to a day ago. Says she will get back +in - wants the flesh-crafting wands. +Trixus father put him to sleep. +go back to the tower & retrieve barrier tools +Benu knows of a way to live peacefully without the +barrier. + +Hephestos is just his soul - wants to make a pact with us +so we will let him out. wants to give us +a piece of information to help him get out. +was asked to attack the dome. ?Browning? + +Need to save Garadwel +Trixus says +Trixus & Benu transform into humanoids to go to +the shrine room to see if they can check if Garadwel +is there + +Ask a Brass city Platinum to the offering bowl to help +with communicate with the god. +Attabre comes through - Garadwal is not with him. +what do we seek. we seek justice. Benu disappears. +he seek atonement for his crimes. justice. Trixus is looking but ok. +Attabre angry with Benu. +Goliaths were due to get a protector like Trixus. +Tell Harthall about The ancient diff --git a/data/2-pages/189.txt b/data/2-pages/189.txt new file mode 100644 index 0000000..b419007 --- /dev/null +++ b/data/2-pages/189.txt @@ -0,0 +1,45 @@ +Page: 189 +Source: data/1-source/IMG_9856.jpg + +Transcription: +Thoughts on the Barrier - possibly a bad thing but +done for Noble & Proud reasons + +Trixus can help with the memories - spell within the +Barrier is interfering - Attabre magic + Another +Location of the spell is waterwise at the Mages College +at Riversmeet. + +Trixus doesn't like the barrier - Doesn't think the +elves should have been able to remove their pride. + +Riversmeet - speak to Lady Igraine +Take Harthall to meet Anastasia (Dirk & Me & Morgana) +Take Trixus to see Emi (Invar & Geldrin) split party... + +Emi +Calls Trixus "The useless one" - Elves needed help to remove the emotions +Then +Cardenald put a talking door on one of the prisons +Him & Browning should have been in charge but they were +betrayed. +Elves protector - taught them how to remove emotions - Benu... +Trixus may be able to put Emi's emotions back but he will need +them to be able to put them back. + +Anastasia +Fly down to the courtyard. Goliath's scared... large Goliath comes +& warily takes us to Anastasia - in a building but quite as damaged. +Stalwart - first of the restored Iron Knights. Elders managed to remove +the sickness. +Dragons sent back to their homes - went on warpath. +Tradesmells - Dragons are missing from here +Ar[unclear] - Armies not left +Vathkell - Emeraire - Dragon armies dispersed +Thungle - Armies not left +Trying to create Armies to attack + +Tell her Perodita is outside +of the barrier + +Arrange pincer movement on Vathkell with Dirk's dad's army. diff --git a/data/3-days/day-36.md b/data/3-days/day-36.md new file mode 100644 index 0000000..37919e0 --- /dev/null +++ b/data/3-days/day-36.md @@ -0,0 +1,1131 @@ +--- +day: day-36 +date: unknown +source_pages: + - 130 + - 131 + - 132 + - 133 + - 134 + - 135 + - 136 + - 137 + - 138 + - 139 + - 140 + - 141 + - 142 + - 143 + - 144 + - 145 + - 146 + - 147 + - 148 + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 +source_ranges: + - data/2-pages/130.txt:9-46 + - data/2-pages/131.txt + - data/2-pages/132.txt + - data/2-pages/133.txt + - data/2-pages/134.txt + - data/2-pages/135.txt + - data/2-pages/136.txt + - data/2-pages/137.txt + - data/2-pages/138.txt + - data/2-pages/139.txt + - data/2-pages/140.txt + - data/2-pages/141.txt + - data/2-pages/142.txt + - data/2-pages/143.txt + - data/2-pages/144.txt + - data/2-pages/145.txt + - data/2-pages/146.txt + - data/2-pages/147.txt + - data/2-pages/148.txt + - data/2-pages/149.txt + - data/2-pages/150.txt + - data/2-pages/151.txt + - data/2-pages/152.txt + - data/2-pages/153.txt + - data/2-pages/154.txt + - data/2-pages/155.txt + - data/2-pages/156.txt + - data/2-pages/157.txt + - data/2-pages/158.txt:5-30 +complete: true +--- + +# Raw Notes + +## Page 130 + +[Day 36] +[3/3 revenge] + +Approx 5hrs outside of Brookville Springs 04:00 + +Skum stays sat by Elementarium's head the whole +time. + +Invar remembers he knows how to remove curses. +hears a clink where a bracelet falls off +his wrist. He doesn't remember being kidnapped. + +Send Errol to Lady Newgate's sister for some transport +to meet us outside Brookville Springs at Bridge +Statue. + +Elementarium hasn't seen Peridot Queen in approx 1 month +since we were last in town. + +Rescuees will go back to Huthnall & remove +the worm from Lady Thorpe's ear. + +Head around Brookville Springs to the Statue of Bridge +(female shape with no other female features, has a face +with palms up towards the sky) + +No offerings or guards at the statue but +a copper piece randomly around 5 feet around it. +Just a temple in Seaward where they take bets - god of freedom luck, +gargoyle & trickery. + +Stay by statue until Newgate's gargoyle arrives. +- People leaving have a hurried energy + warning them not best to go in, loads of explosions + all over town. Brothels / guard house etc. Golumns? + +Bangs - all human buildings go bang, one human blows +up - purple bangs. + +## Page 131 + +Lead human gone (pigeon says - sits on +ledge by main building) + +Stopped today, happened on Trimoons day - late at night, +nothing today. +(When we were leaving Goldenswell there was one +on the fritz) + +? were they meant to explode or told to? + +Gargoyle arrives - not tampered. + +Message from Claymeadow - explosions all over +town - Newgate's doppel/imposter in quarters - Their Bird +doesn't work. + +Arrange to contact them via Errol & +locate us with the mages ring. + +Pay Captain a further 25 platinum and he +legs it towards Brookville Springs. + +Lots of patrols of 3x guardsmen. - high alert. +Geldrin doesn't locate any golumn's in town. +leader gone - vanished. 12:00 + +Head to centre of town. Anything seems to be ok +except violence. + +Metal chest (guardsmen) said leader had gone missing +on bang night. + +Head over to "Hazy Days" +Dirk Invar & Morgana queue up for some smokes. + +Questions server. +The guilt - gone disappears - night of the Trimoons +guards coming in & he went missing around +midnight - some people say they saw him leave. +guards were looking for him. +Seneshell running the place - won't be able to see +him unless we are residents. Pitboss may work. + +## Page 132 + +head over to the main building 15:00 +get into the queue for the main building. +grease the palms of the guards to get in to see +the Seneshell - All 12 gods in the entrance +hall. + +Thick plush red carpet - chaise lounge, female sparrow +arakocra on it tattoo'd & wearing feathers (Briker / Magi) +and a green lamp are the only things in the +room. + +He lent an olive branch & we didn't take +it & now he's stuck (his master) he's not +left town, he's back in his room. + +The explosions where the Guilt's bosses +guardsman - the reason he's unconscious is +the reason for the explosions. The boss (Pride) +has been eaten. (Garadwal!!) + +We are much the same as her as just work +for someone. +Dark entity - Pride - wants people to be proud. + +- For us her big bad is a bit tougher. +- Guilt's Boss was running things at Grand + Towers. + +Suggest we speak to Browning. + +Guilt is an Avatar of Pride. +"[uncertain: Morrowred]" had sold out the leaders. + +Pride tried to have as many things out of +commission before he was consumed. + +## Page 133 + +Pride was neither good nor bad. +Guilt has a portal to Grand Towers +& Mercy will show us her a favour +at a later date. + +Ask to see The Guilt. He sends us out of +the room & there is a grinding & dragging +across plush carpet. There is a chest similar +to the one in Envy's lab open & the guilt +is in there. + +chest is dangerous when armed - There +is a code to disarm. + +Send Errol to get Ruby eye. + +No sign of the underbelly. +Lucky cyclops eye - rub. - didn't go + +Head back to the statue via the outskirts of +town. + +see a few shifty people on a corner. Half orc & human +female +try to get some potions. they try to +shut off & call themselves "the Dollarmans" Assassins +let them go - seem like the want to fight me +but are under orders not to. + +Make it to the statue & obsidian bird there - Terry +"Metallics" bird. Message from Incara to be taken in +private. "have important information be wary if your compatriots +wizards are working against us - they're the reason for +their infertility. Not yet confirm." + +[margin note: will go down the passage after we get ruby eye] + +## Page 134 + +Big flash - Rubyeye appears. - Valenth still repairing. + +- Valenth & Ruby eye have been convalescing. +asks about the crystal shell - told him we off it +at Harthwall. + +Doesn't know about Envy. +lots of giants rampaging at his clan's settlement. + +Asks about Lady Envy ??? & lady Harthwall. +Made some enemies but the dome is proof of his efforts. + +Wants to retrieve the shell of [uncertain: Tremoon]. doesn't want +it falling into the wrong hands. More interested in it than +he is telling on. + +goes into the bag so that we could "sneak" him in. + +Go back to Mercy's place behind her is a +half elf with rounded ears - Bar keep at the +Drunken Duck. Mercy told him about what +is going on & came down to ease our +worries. Independent contractors for the guilt, +concerned citizens hire for money. +Wants to cash in the favour now. +Something he wants from the towers. - belongs to the +74th floor - private mage area - small trinket - Jelly Fish Broach +has an interested party who wants it retrieved. +who is the buyer? not our current mutual antagonist +female outside of the barrier. + +## Page 135 + +Promise to attempt to retrieve it. + +Takes us through the grand Towers passage +- Corridor filled with pictures of the guilt looking at us +wall isn't really there. Void the other side of the wall. +through the door there is more corridor. +turn around & open the door again & enter +the what seems like a broom cupboard in grand towers + +into a room & find a coat rack filled with robes +head out for every one. + +Floor 70-90 schools of magic +60-70 store rooms / admin offices +0-60 apartments +74 - enchantment classes. + +Rooms look very dusty - are not used regularly. no +animal presence (spiders/rats) + +Get Ruby eye out - we are on floor 65. +nothing of note on this floor. + +Try to open the door & some magical pull on the +lock, but open it. + +Pillar in the middle with shelves with orbs +like ruby eyes lab - pick one to view. +see guy sitting in a chair (Icefangs human form) +Nice room. Covered in snow & another guy in the +front (pic in the auction pic & private pics) guy shaking +his head. They're up to no good. we won't let you have +him. The paysoil won't work without him. can't let you +entomb him under the snow, Guards in black snowflake tabbard. +calm human & says he's right doesn't [unclear] + +## Page 136 + +She replies with they're old enough to tell them what +to do + +Rubyeye says he's never seen it before. don't think he's +lying. + +Follow him down the corridor - elevator room. (teleport circle) + +Geldrin goes with Rubyeye - looks to a random level as moves up +maze of ropes etc. Ruby eye says they're going to see +Browning - Gideone chair. Gazzy plugged in old man. +2 people at the feet of the chair tinkering. not worried +about their presence. + +Pop another ball in the front. +- board room in grand towers. Ruby eye, Harthwall all 5 +except browning this vision?) trinkets in front of him +Scorpion +Snowlee +Jelly Fish +Ant +other wizards look uncomfortable - getter a put into +pouch, deal is done - how many more - about +7 signed up 5 more to go. look uncomfortable +with it. there must be another way. +Ruby eye not happy - they're good people, but the +only people who will suffer, it will save millions +in the long run + +mages know Geldrin following his progress, succeeded in the barrier +safely. a chair guy altered pride to be eaten by +garadwal. speaking through his greater gravel children. +garadwal locked downstairs here him when it +are ready walked into Browning's trap. + +Rubyeye says they will sort Garadwal out like Browning +is his boss... Rubyeye knows what is good for him. + +## Page 137 + +Now orb - save person. Are elementals flying around. +Completed towers. at a panel fighting happening. +touching the panel. Harthwall asks if nearly ready +to kill them off. +Browning says ready - he turns into a dragon & he +then activates the device & she disappears he says +it's too late it's started! + +Ruby eye - we need to go - now! + +New orb - Browning sitting in same room calls out crystal ball +see giant green dragon appear, help get rid of husband +yes use them as cattle wherever we are done +throws blanket over as Valenth walks in. + +Geldrin back - was on floor 98 found Browning. +Need to get out of here now. tell us about Garadwal. +Hear an alarm - 4 golems appear in the circles - run back +down the corridor + +Pile through the corridor we came through & +all black - no corridor - close & re-open door - looks like +a church, similar to early Bridget temples. +Door from the room opens to the outside - but no dome! +Lots of doors off the courtyard +- try to go up the tower - open the door & a red robed +goliath is sat there shocked as we walk through. +clergyman, Arik Bellburn of Bridget. Says we came from +the dome. Bridget has freed us. I have skin of +evil. Morgana - Bleak glimmer. Geldrin - lost winner - +we are in the town of Bellburn. +Prayed for freedom from their oppressors (envy) & Bridget sent us. + +## Page 138 + +hear a dragon - Speaks draconic - I have come for payment +Ruby eye says we need to go +Suddenly sound of battle, sounds of Goliath fighting Harthwall's +silver dragon on top of a building saying she's come +for payment Envy will have her due. + +Dragon looks similar to original Harthwall +except she looks more mean & grimaced. has +a green tinge to her scales. + +All of the goliaths seem to have maces made from +Seaward stone. + +Rubyeye wants to leave thinks Harthwall hates +him + +Start to enter the fight. try to get Harthwall's attention. +Harthwall calls out Ruby eye & tells him to +come & remove the curse he put on her! 17:00 + +Ruby eye casts imprisonment on her - shouts "Burial" +which echoes like an unearthly command. + +Ruby eye sounds odd - like somebody is doing +an impression of him. Seems furious with Dirk after +he hit him with a magic missile. + +changing touches me & I think Dirk's sword is +the most amazing thing ever for a brief moment. +hear a voice - feel my brothers touch upon you +& want inverse hammer. +"Ruby eye" turns into +Red skinned tiefling via morgana's Moon beam +Wrath + +Made a pact with Ruby eye to help kill Black Dragon +& his fault Harthwall is out here + +## Page 139 + +Scared of Browning who teamed +up with Pride. + +Cursed the silver & black dragons so they can't +take their human form. + +Promises us power in exchange for fighting our enemies. +9 of them in total - little demons of Darkness. +Wrath, Pride, Envy. + +- Wrath puts Harthwall in the ground (imprisonment) using a silver dragon +statue. +Wizards worked with them to help make the dome +to protect from them... +Says we are not working for him in any +way shape or form. assist if mutually +beneficial + +- wants [uncertain: tremoon's] shell, as he saw the wizards +make it - helps to get in & out of the barrier. +Such a big deal + +Arik was injured - healed up. +goliaths pay the blackscales sometimes & the ore kobolds. +Doors are sacred to Bridget + +Hellfling - Mayor Longbottom - wants to accommodate us +for the evening. Woke up in the church one day +she's originally from Goldenswell. says there +is no way back into the dome + +Wrath was part of Ruby eye but left him +when we "took him out" +Ruby-eye is still in the bag + +Morgana asks Bridget if she will get us back in the dome. +takes her to the chorus - has good & bad results + +## Page 140 + +Dirk & Geldrin put a grand towers penny onto +the statue of Bridget. It disappears & her eyes +glow green. Dirk goes through the door - Bridget +eyes glow red. - Dirk comes out in Seaward! + +Tell the priest about penny on hand - she goes and shouts at Arik +about why they never gave Bridget money. + +Dirk has gone back to yesterday. + +Geldrin drops 2 pennys onto Bridget's hand, her +eyes glow green then yellow. we all go in the +closet. +We come out into a blue & white tiled +reception room in a great palace no furniture. +reminds us of seaward. Dirk feels 400-500 miles +away Earth/water wise. We're still outside the +dome +guards outside the door, don't expect us to +be here, blue tabbard, chases Morgana & +catches her by the door. try to confuse +him with the looks of the room. he calls for +the Baron (?). Close the door & re-open blackness +Dirk hadn't moved before the door opened & then +when opened Dirk was no where. +close the door & nothing happens. step out & +go back through the door. come into Brookville springs. + +Sopparra says wrath was a Goliath when we went in +(Mercy) + +## Page 141 + +Dirk stays in Seaward & hears a few explosions +around midnight. + +get Ruby eye out & he shouts at Wrath & wrath +gets back into his eye. + +Dirk - most Earthwise cities have had explosions - +Harthwall / Goldenswell areas. +Grol finds Dirk & he sends a message back. 20:00 + +Rubyeye teleports us all to Dirk. + +The trinkets were part of one of the bargains - shouldn't +be much use now. + +The gods required a favour each and communication +to their priests & a boon. + +Bridget - way in but +Noxia - trinkets & barrier causes suffering sickness living near +& touch + +Nerfili & babies - Arile. +They always had issues, Browning made sure they needed us + +Otasha - more than just suffering - gave her the unborn +nerfili babies across the +whole race - Barrier seems to stop this slightly. +Lady Harthwall - not happy about it & didn't +know about half the deals made. + +Found a way around most of the bargains +got around god of Darkness by making him the god. +(Leptrop) + +Otasha didn't want the barrier as getting +a lot of business. Allowed to make her a bargain. + +Ennik & Browning did many of the deals. +Harthwall - Taken of the group - speak to Valenth about how she +ended up with envy + +## Page 142 + +Ruby eye's pact with wrath was only due to +need for more power & he saw how much power +Browning had with Pride. + +Browning had with Pride. +Browning wanted the biggest tower & to be the greatest wizard +of all time + +teleport over to Harthwall, on target +by statue of her. + +go to the castle gates. +Sheriff Fathrabit takes us to Harthwall & says +the other Nobles arrived... + +bring out wrath. it isn't his normal thing. +definitely his sisters work, says there you go +give it a few days and she'll be fine - lying. +Wants a favour - to tell Envy that he did it. +Harthwall wants to transform so leaves the chamber +into the courtyard & transforms. +Harthwall is slightly bigger than Peridot Queen. + +Seaward no many knowns. Nobody stated +the racist automatons had exploded. +Harthwall's Raven exploded. several explosions across +the city + +Day 34 + +get Breakfast in the grand Hall in Harthwall. +Lady Harthwall feels much better. +Fighting has been pushed back to stone rampart +Earthwise. Lots of mutations +large explosion seen in the area by the retreating +troops. +Harthwall will defend the pylon we go & get the +betrayer. + +[margin note: Da Pig Plaguers] + +## Page 143 + +Reports back from the captured leaders +they have all managed to re-take their cities +with minimal casualties. + +Three paws on the ground reports safe arrival +of the goliaths. + +Scry on "The Mother" +Mountainous terrain - On a wierd 2 legged horse +little tiefling girl - surrounded by odd creatures, +small band of them. +All together by a small crater in the side of the +barrier - close to the mountain +- Valenthielles prison. +imprisoned her last time due to the help of the + +Carduneld dabbled with Envy but didn't enter any +Meet with brother fracture in the +bazaar, Andy [uncertain: Kallamar?] with him, +they were on their way to the front lines due + +Direct Brother Fracture to Lady fat Rabbit. +- go to the teleport circle in Valenthielles prison. +- 20 ft square room, with no doors, made of seamless stone. +Rock statue when touching the wall. Felt a slight difference +in temperature. + +Decide to go down the middle door as this +is where the guard/prison was. +Lucas hits the door & nothing happens - hits door +again & they have cracked their doorstop after a while. + +## Page 144 + +Use Heamon's skull to try to open the door +- doesn't work. + +Put a Grand Towers Penny on the wall & the door + +10ft of corridor & then darkness, Joy is thick & + +Day light makes the darkness retreat back to +shape of a female figure. + +Morgana touches it & takes damage. +Door at the end of the corridor +but a peep hole at the end of the next trapped. +Dirk looks through and takes damage. +Open the door - smoke at the end of the room, +symbols on the floor for the prison, smoke +on the far side of the room where the explosion +may have taken place. + +She lays her hand on Dirk's shoulder and +asks to come with us. I turn around & +take damage. + +had visitors recently - very friendly & promised to come +back but they won't be back soon, got +cleaned up pretty quickly. +- teleported outside the prison & left valenthielles in +there. + +## Page 145 + +Morgana sees Joy in the trees motionless +looking very odd - illusion. + +Various mutated animals belch out of the woods. +Enter combat with them all & the betrayer. +Carduneld joins us. +! Dead ! + +Carduneld & Rubyeye talk - they should probably +it will put us in danger. + +Try to ask what they know, but they don't +want to tell us. They think we should focus on the + +Rubyeye regaining some of his memories. unsure if they +should re-negotiate some of the deals made with the +Look into if they can break the curse on the inferlite +& the damage the barrier causes. They want to +look into it. + +Not just Rubyeye's memories that were tampered with - Icefangs +were too. + +Think we should talk to Mama Hearthall but need +Head to Stone Rampart Earthwise +- Rubyeye & Carduneld leave. + +go to the cathedral +- priests walking around dealing with people. +2 humans with blistering skin, priest heals them +& comes over to us. + +## Page 146 + +Highden Fell - Armies retreated to the fire wise +mountain - 2nd level. 14:00 + +Issues with sickness - internal consumption, from the +crystal. + +Tell him about the crystal sickness & should get +people to spend time away from the city. +tells us to go see the Earl - In the other foot. +Statue was created by the 5 mayors. + +Head over to see the Earl. +Park in the middle of the legs - plants are in +bloom. +Militia - jagged rock keep on their tabards - lots of activity, +leave a message with a lieutenant to speak +She didn't have it as was born in Highden & + +Frog appears to Laura and wants my attention +and motions for me to follow. Don't & Sevor-ice +can't follow - possible bullying. +get another sending Stone - new number +- somebody from the underbelly. +Highden lizard folk on the building, +it mumbles something as we leave & I shut up. + +Hello - casting invisibility - Morgana casts thorn +whip on it. Skulking, was scared of us +was sent to deliver something to me. +Boss told him to come. + +## Page 147 + +wants to go somewhere private + +Gnoll sat in a rocking chair - old & blanket covering, +"granny" Underbelly liaison. +lizard called Scurry. + +Knows what we have done in town. +Doesn't know if Hearthall is here yet. +- underbelly getting back on track now Lady Coke is +back. +- they are the only two to trust. +- Highden is a wreck. +- troops taken over the inn - Never sees the sun. +Send Basilisk a note of current happenings. +- Use the pulley lift system to go to the inn + +Guard on the door. 60 ft Giant. Not the size of the +Tor statue. leads us up the stairs to the +Commander. + +Elven Commander - laurel of white roses around his +head, not muscular, like the elves we've seen, has +a beard & green peachfuzz which isn't standard of elves +(Moss couch elf) +- Captain Briarthorn - elf hundred. + +- Hopes to use the natural terrain of the river as the +battle point. +tribes folk in the thousands. goliaths?!? +Blue dragon was spotted with them but hasn't +been for a while. +will mobilise the troops now the mother has been slain. + +## Page 148 + +They have some "excting" Obsidian Ravens. +Advised to stop using them - all messages back +have been not to support the cause. +Gerald goes to get the quartermaster. +Raven is a stealth version. doesn't think there is +anything wrong. + +Send a message to Dirk. Dirk said he'd be +there in a minute & it come back saying he +couldn't come. Told the quarter master to send +messages telling troops to come regardless of a +reply. +Loan Errol to the commander for 2 hours. + +Go to another Inn "Three full moons." +Talk to Gary a house farmer - Dog called +Shep. + +Go to see Captain Briarthorn - Lady Hearthall +is there fully armoured up. +Plans - Giants close to where they want to +ambush them. Dragon to try to break off +some of the larger giants & we can attack +Some towns responded via Errol & are sending +small troops to aid. + +Arrange to meet "Hearthall" in the forest. +Plan to cause a fire to break away the big ones +from the army. + +Whilst on the dragon - see a black plume of smoke +on the edge of vision at the mountain. +Plume - Hearthall Highden?? Magical in nature. + +## Page 149 + +as we got closer smoke shape is coming +attack us. + +Hearthall protects us from the Dragons flame, +giant attacks us. Bashes Inver into the ground with +his mace & all the others close in to attack us. +Dirk clings to his arm & climbs up his leg. +Morgana summons a Bear & grapples around +his arms. + +Defeat all of the Giants! +Hearthall & skeletal dragon fighting each other. +Skeletal dragon has the book from Rubyeye's lab. +The words he spoke from the book he didn't understand. +Teleport out to the armies. +Dragon heads over to us. + +feel like I'm sick & salt water in nose - feels like after +I held the White Rune. + +Dirk has a brain tickle - familiar +another feels in a room with other Goliaths sickly threat +on female green dragon armour. +chin ticks like Shibble grossing, chest around table is +intense, female smiles & says "you need to go back to now" + +Geldrin - circular table mages were around discussing +her - slides a paper to her. +man - knee deep in a ford. as he crosses - woman says no no no +red thorns everywhere. + +## Page 150 + +Hearthall - saw her mother buried in the ground. + +go to the river - speak to water elementals or to +help with the flames from the dragons. +Dirk uses the rod to speak to the elementals. +Water Elementals say we need to agree to free +Icefang Ice elemental in the prison at Rimewock, + +Geldrin summon the void elemental to help us +says we will owe him another favour as Garadwel +Garadwel revenge is the previous favour - +- Do not free Valentenhide & let Kasher Reign +- Not oppose Kasher - will bring somebody else to the fight +- Agree to the water Elemental. + +Geldrin tells the void we can't accept the +manage to tell him it maybe trapped. when +he gave him a dead grub (like the ear grubs) +a wanders. + +Appear (in our minds) in a palace style room +plush carpets. Sat looking at us is an elderly gentle man, +Icefang, looks older than his paintings. appears sane +& at ease, he says I disagreed. +- mage table - Icefang shouting at Browning, dark elf +appears & drops a grub in his ear. Never would +have dropped a rope, glad he's sane before the +end. We need to right the wrongs we can't +Don't feel sorry for him he's lived a good life for the half +he can remember. + +## Page 151 + +The barrier was a good thing but too many +sacrifices were made. Black hole appears under + +Snow flakes appear & a massive frost dragon +bursts through the hole & takes the +skeletal dragon with it to the barrier & +passes Hearthall & says "My Child" came back through. +Icefang crashes through the barrier & +soot crashes down from the barrier very badly +injured. I feel the salt water feeling again. + +Icefang crashes into the river. & soot +shouts he'll take us all with us. + +Dark Cavern throne made of skulls - walks towards +it & the figure sitting on it pale human female +bleeding eye sockets & skeletal hands & feet. "hello +my child what is it you wish" dispel dragon magic. +"Only just put it on and took him as payment" "watched +him with great interest since hatching didn't" "have some of the +other deals caused you" No but taking the mother down +was, offers to give her Garadwel. She agrees & +Geldrin chants & soots flames vanish & bones scatter. +I Breath weapon the dragon head. +Water elemental retrieves Icefang & lays him on + +Hearthall doesn't know who her father was always told he +passed away in battle whilst her mother was pregnant. +Tirars vision was at Rellport point us leeches +attack in the river & make you believe they're not +actually there so they can feed on as much blood +as they want. + +## Page 152 + +Hearthall - saw her mum in the ground being trapped +by hundred tiny red creatures. + +Portal appears & Valenth & Rubyeye appear - she knew +before we told her. + +Ruby eye realised they did it to him. +Dark elf was he from Envy's apprentice +they've been making plans +- curveball, one - swap Valentenhide with Kasher. + +Coin appears & thistles on the ground blue. +Portal appears - carriage pulled by 2 cows +& really dressed up guards. Door opens as an +elderly gentleman appears (one in the vision of the birth +of Provita) Lord Bleakstorm. Chant a message from Icefang +from outside of the dome. +he looks no different than his pictures as he is dead. +Hasn't freed the auroch as he can't be inside the +dome for long as Browning will find he is here +& send his minions on him. +gives me a Snowflake coin - Portal to Bleakstorm - one use. + +Info - Kobolds are very good at digging barrier + +Nothing in the grub - has similar properties of a +leech crossed with a larval state of a fly. + +Cardunel to take Icefang to be buried near +Snow sorrow. + +Geldrin going to try to free Justicarus by pretending to be +Grand Towers medical team. + +Arrive back at the troops camp. Dirk's jaw will +remain for the next 24hr. + +## Page 153 + +[Mathwall] - Querying what is going on at goldenswell? +- Want to speak to lady Lyraine @ Rivers meet. + +Dirt's dad & army - are now in Sunset Vista +on their way to fight Green Dragon + +[Mathwall] sending lady [rabbit] to speak to Lady Lyraine. +Go to Azurescale to speak to the Merfolk & gather +information about the Goliath city. + - Statue to Hydrath. + +Jin Woo - Teleport to the cherry orchard at Azureside + - End up in Calcmont +Appeer by statue pregnant female cat lady. Rose in one +hand & scythe in another. + +Try again but end up in Coalmont Falls! +Brown/greenish mining town. - steam powered mine-carts. +Waterfall occasionally turns black. Don't know why. +Need into town. + +Smokesblood Stout Brewery/Inn. +Morgana turns into an octopus & tries to find +out why the water turns black - thinks its +the creature, bottom of the waterfall - black sediment. + +Fellspour & Prick Inn for a room. not busy at the moment. +Bar man says Blackdragon Born come through occasionally. +Town has been pretty quiet. Heard about dragon +attacks fire wise. Pinespring loggers going missing - shut down +logging industry. + +Zigglecog's mine carts wealthy family - daughter left town +to become a monk at the monastery + +## Page 154 + +Cave is where the creature lives, & makes the +water go black (so the fish has heard) they don't +go in the cave) + +Morgana goes into the cavern to investigate it, +gets very choppy & hard to traverse. +comes out of the cave & investigates. +hears a Roar from the cave & the +water then turns black. it moves faster +than the normal flow of the river. + +Morgana takes a sample - smells like water +(Didn't do it when Jin Woo was here 100 or 80 + +Doesn't stain anything, no residue. +Bar keep not sure how long its been happening, he's been +here 9 years. Pack keeper Hanner may know. +Travel down to the lake to speak to her. + +Has happened for the last 1,000 years. used +to be around once a month but now twice +a day. + +Follows a pattern with elemental schools of magic. +Morgana Communes with nature - large black creature +with 6 arms. shackled by his arms under +the water - appears unconscious. chains lead up through +the ground into an alien material - arch way of Obsidian. + +Suggest Merfolk go investigate the cave as may +be able to get further + +some water elementals in the lake. + +## Page 155 + +head up to the river to investigate the black +water. + +Merfolk & Hanner & Morgana to check in the river +Rest of us and a Merfolk to investigate on land +(Derek) + +Land. Shield crystal picked up on the compass. +Try to follow the paths into the mountains +but veer off based on where the compass takes us +Find a mine & go through - run out of this +but find a good path to lake. 16:00 + +Water Morgana swims down the river - but water up to +a "wall" then stops and is much easier to swim through. + +Land stumble across old road (ancient) +Find an old sign pointing to "Dull Peake" same +way the compass is pointing +Dirt spots a dark figure - Dragonborn with red eyes. +Try to look up at it & it sees me look at it. + +water - come out in an under ground chamber with +ledges leading off into further darkness. Hanner +uses a light orb highlights a statue 20ft +high with runes x5 in a pentagram hovering +around it. tell us about it +cyclone bottom - sounds like one of the main prisoner +!Asmoorade! +Morgana trys to touch a rune & it throws +lightning. + +Land - Beating of wings - Dragonborn walks into view - Dull +death sooty scales - large overbite - Nelkish + +## Page 156 + +Walks confidently over to us. "Domain of Anthrosite" +works for Infestus. - tells him we returned his brothers +skull to Infestus. Pure blood not half blood. like me. +No quarrel with our kind as per the agreement +made. + +Water - Continue down the stream leaving the +statue behind river & approaches a barrier of sort. +doesn't hurt to touch. cruched. + +Land Mention Garaduel's plans & Anthrosite +states he will allow us in to use the +Portal to speak to infestus. +Didn't kill us on sight as Geldrin wears the +robes of the wizards which is part of +their agreement. - they bring food etc. + +Water Morgana tries to misty step through +the barrier & succeeds. can see the +Merfolk but can't touch them. Dispell doesn't +work. +cavern seems to broaden out to the left. + +Land Derek tells us about the barrier. & they are +close by but quite far below us. +Jin Woo thinks we should have gone to see Infestus +Continue back down the road & it seems to +stop suddenly. + +Water - Morganan is stuck & can't misty step +again. Trys to dry out a torch to light to +see further down the cavern. + +Thorn whips a crack in the wall & + +## Page 157 + +seems to open a door in the wall. +Partially going in & the mindless moss stops dead +& it seems like freshly cut out stone. keeps +going & gets to a door with a ticking rune +carved on it. but it will not open + +Land. describe Envi to Derek & the carving looks +like him + +Water Morgana travels further down the river. +room opening up in all directions & all signs of +life is disappearing. +Noise from the prisoner? & water turns black + +Land - Black snow flakes, white goes white +is black flakes in the scoop. + +Water - cavern seems to be getting bigger & downhill +water hasn't changed direction. +sees a giant jet black figure standing in a +hole in the ground (100ft) 4 large arms stretched +out. Water is coming out of the pit in the +ground. seems like it's a statue but feels +like it's alive. standing in a pit of water & +water looks like its shooting up like a +geyser. + +Tent Errol findly a cave we can go to & +try to get there. +- go in out of the wind. + +Water go back & tell Hanner about the figure +say winter roses at the door +& it comes to life + +## Page 158 + +thinks it's Rubyeye. Can't open the barrier +as it might let other people in. Rumplky opens +the door & Envi says probably best to come in. + +Morgana follows the corridor to a circular room +with 2 suits of armor & a pillar with +purple cores on for the automatons who will +help with what we are here for - to revive +him! Does one of them + +trys to leave - Door starts to close. & does the +other. Automatons don't detect any rings. +Door between automatons opens & there +is a upright hand on a plinth, & a [strils] +Envi in a tube of viscous fluid. +let her out & will find the rings it does +& the robots follow. +get out of the chamber & one of the +through. forces a hole in the barrier & +a automaton comes through - Automaton +introduces himself as garaduel & activates +recall protocol & they disappear. + +Tent - head back to Coalmont Falls in the +Merfolk lodge 01:00 diff --git a/data/3-days/day-70.md b/data/3-days/day-70.md new file mode 100644 index 0000000..6d5e3f9 --- /dev/null +++ b/data/3-days/day-70.md @@ -0,0 +1,162 @@ +--- +day: day-70 +date: unknown +source_pages: + - 158 + - 159 + - 160 + - 161 + - 162 +source_ranges: + - data/2-pages/158.txt:31-38 + - data/2-pages/159.txt + - data/2-pages/160.txt + - data/2-pages/161.txt + - data/2-pages/162.txt:5-16 +complete: true +--- + +# Raw Notes + +## Page 158 + +Day 70 + +Talk about the pit made against the merfolk at the start +of the dome - Sir [Counting Fibo] was to remove it + +Try to teleport - make it to the outskirts of Azureside. +Cherry trees look diseased & abandoned bushels etc. +Morgana felt like the earth was plagued - Poison Dragon + +## Page 159 + +Head over to Azureside. + +Meet up with Pact leader Alana. Plague has overtaken +the town Heartmoor + +Carl left town & Alana & the guild have been trying +to run the town +lots of damage to the town + +Enter a Cobblers - which is acting as a town hall +Male elderly Gnome - Cobbler outfit. Greysock Soulspindle +Female elderly Human - Priest Robes - Ahlabre - Alizabesh Azure +Thuggish male Half-Orc - Sailor look -> Captain Spratt + +Problems pretty bad for the last 6 months & poor +for the last 6 months. + +Dragon coming tomorrow for payment in the + +Some thugs are stealing the offerings left for the dragons +& from other towns folk possibly hanging around Firevine. +* Cheery & cherry - dodgy pub - possibly there. +* Set up the town square for an ambush for the +Thugs. + +Temple made out of seaweed stone - immune to the acid +from the dragons. + +Plague is nothing I've come across - Paralitha - Cholera; Death + +Plague seems to be a concoction of different ailments magical +involvement to link them together. Contagious + +Morgana - feels venomous creatures trying to fight against +her in the healing of the land. +feels a presence airwise. + +## Page 160 + +sees a female figure above the lake. +Monstrosity scorpion tails & snake heads female +face - swarm of birds comes & smashes through +restore the ground to its natural state (even better) + +hidden awaiting the thugs to come & steal the offering 15:00 +2x shadows moving in from Firevine of the city. +go into the buildings - seem to hide. one points up to +figures slink off back into the town away from the +square - human looking. + +Fire ball sets off at the top of the bell tower. + +wizard attacking the tower Half elf - wizard +Dragon born - rogue +Pigeon Aarakoca - rogue +} Dead. + +2 shoes in another building. +get 2 Blackjack clubs from the rogues - I think they are +amazing & I can't use any other weapons. - Bok & Bosh + +Subdue the other 2 henchmen types. - humanoids. +Question them - (Tim Anderson) & Barry +Guys asked help - the 3 dead ones +says they all meet at the pub (Cheery & Cherry) we +sent the sailor to for rumor spreading. + +Did 3 jobs for them - they came into town about a +week ago, rumors they are working from the sewers. +seems like it was them at first and then these other +people come in + +Blackjacks made from scorpion leather (cured & tanned skin) +with jelly fish tendril cords. 15:30 + +go to cheery & cherry +guard on the door has the same armour as the Dragonborn +& Aarakoca. + +## Page 161 + +guard goes into get the "boss" +apparently they were told not to interfere with +us + +Pub is filled with people, possibly townsfolk about +6 stick out as the same people we have +encountered. Dwarf guarding the stairs. +assume the guard has gone upstairs to the room +where the "Boss" is, is a human, black eyes. normal otherwise +Flanked by 2 Hyenas, rings Snake, wasp, jellyfish, +scorpion. tells the guard to bring us in. go in. + +Boss is with the Dollarmen - Council with Mercy +from Brookville Springs says he doesn't work for +anybody. Apparently this is the easy town - he's the shit +one so got sent to the easy place as not good enough +for any thing else. +Warns us off from venturing further into the cursed lands. +Attack "Boss" - Morgana's Moonbeam shows his bottom half +as a snake - utterly murdered!! + +Subdue one of the Henchmen - kill the rest. +Geldrin leaves the room clutching the skin book to intimidate + +Ulfarun next in charge elf +Gnoll Longfang tries to stab Ulfarun in the back to + +Tell Ulfarun all the pillagers of the village & stealing + +* Dirt plays cards with the remaining Dollarmen 16:30 + +Dragons come pretty early - Different each time. +Last one was - Dark smoke coming from her +before 2 headed + +## Page 162 + +Geldrin, Invar & Morgana go to try to repair + +Dirt & Alana head over to the Cobblers tell them about the +Dollarmen. a ask for help with the crossbow. + +Frilleshanks - gnome jeweler might be able to help. +Jerome - Innkeep at Saphire Shores, - Goodking house style +a right glass for the right beer kind of pub + +Frilleshanks helps geldrin streamline "Snake Slayers" +his apprentice will help operate it (Joel) Dwarf diff --git a/data/3-days/day-71.md b/data/3-days/day-71.md new file mode 100644 index 0000000..d344e78 --- /dev/null +++ b/data/3-days/day-71.md @@ -0,0 +1,202 @@ +--- +day: day-71 +date: unknown +source_pages: + - 162 + - 163 + - 164 + - 165 + - 166 +source_ranges: + - data/2-pages/162.txt:17-35 + - data/2-pages/163.txt + - data/2-pages/164.txt + - data/2-pages/165.txt + - data/2-pages/166.txt:5-38 +complete: true +--- + +# Raw Notes + +## Page 162 + +Day 71 + +2 dragons seem to approach 07:00 +One - lithe - unremarkable features - veridian Hue +other - No teeth dragon (we've seen before) 09:00 +Grey socks walking towards the town square stops +a few streets away. + +little one lands on a building. +Black puff of smoke & black smoke dragon appears +summoning the cobbler. Greysocks looks up at the tower +smoke dragon looks up at the tower. + +Black smoke dragon waves a claw & disappears. +Roll initiative +ticking female - stabs Joel through +Inkysvagh the horror - runs off +[unclear] - Cezzerliksygh - Dead. +[unclear] Neutron to chitra Entoldust Darkness Born - Dead + +## Page 163 + +revive the dwarf & he runs +off home + +re-incarnate Greysocks to an elf with the Jeweller to +a halfling. + +Go back to the cobblers shop & tell them about +the changes. Captain Sprat goes to get him clothes + +Send Errol to Dirk's dad & give him the +bracelet of locating + +Invar casts Prayer of healing 2hrs passed since +dragon flees off + +- Errol comes back - 1/2 way from Sunset Vista +to Azureside & no bracelet. +Council trying to convince militia to "suit up". + +Hear a big explosion over at the Cheery & Cherry +make our way over to the pub. Longfury standing +out side. Clearing that he is in charge. Send him +off to the town square to attack a dragon if +it appears. Toons folk then appear to put out the +fire. Mighty explosion for a gnoll so investigate the +cause of the explosion. Moonshine vodka helped the explosion +find some cracked copper spheres & assume fire elementals +were released. + +wooden chest under the desk upstairs inside is +a crossbow - Bosh takes it +screams from the town square. +longfury standing on the boxes taunting the dragon +Tell him to hide + +3hrs 10mins passed +12:10 + +## Page 164 + +Seek an audience with the Pact keeper +never seen the matriarch leave their domain. + +Go back to cobblers & advise to call a mass +town meeting to either evacuate or join us to fight. +take about 1/2 day to evacuate +Start to spread the message about the evacuation +& the town starts to darken & wisps of smoke starts +to roll over the ground & roads. + +Geldrin & Dirk hear whispers from the smoke but can't +hear anything in particular being said. +Townsfolk panic & one turns round with woodlice +streaming out of his mouth & others swatting invisible +bugs. Guide everyone out of the village over to +Threeleigh. + +Perodika + +Smoke turns into 30ft tall dragon beautiful green +Scales. Possesses people & speaks to Dirk: +- All of the Pacts are off & I will everyone in every town. +- Nowhere to run or hide. devour the army first then devour + what she likes +- I think you underestimate me - I am the choking death & + the mother of many. then chokes some of the townsfolk + +Send message to Basalisk +Errol message to Cardonald & rubyeye they say they're coming +to us. Seem to nearly get through but can't as +there is a blocker in the area. will try to get to +Threeleigh or maybe out of the area + +Head to Donly & tell Errol to get Dirk's Dad to direct +towards Donly to meet up. + +See green shape in the Horizon with 3/4 flying around. +light returns to normal she has around 10 mile range. + +## Page 165 + +Basalisk wants to meet in Donly or Sunset Vista as +blocker unable to teleport to us. + +Hunters encampment in the Savannah - ask for landmarks & head over. +17:00 + +Smallish settlement. - Celebration seems to be happening in town - humanoids +dark skin with red tones - Remind me of Dunnerai completely red eyes. +grant us hospitality - Grinan speaks to us first. + +Morgana speaks to a dog - Hayes - they went hunting +aurouze & his 2 companions didn't come back but +the hunters he went with did come back. +Grinan comes back with a really old lady. (leader) + +Seen in the Aire - Not just azureside which will +fall. We need as much aide as we can muster. + +Head long attack is not how to do it +Those she has wronged can be the greatest ally + +Tower appears in the flames many green dragons +flying - hundreds of Goliaths living below - her +mistress demands the pain. its been going on that +long the goliaths are not in as much pain so +she needs to cause more people pain. Goliaths have a +resistance - small group fighting back. Best time to look around +as she is not at home. & Find a trapped ally. +look into other things and corruptions. + +Attacked her once - respected her and her churches. she +transformed to Searu - her staff changes to one of +her arrows. + +Basalisk appears - we're nothing but trouble - Emmeraine is +under attack. - father @ Dunnensend mobilising army. Muthall +mobilising to Emmeraine. + +Hearthsmoor fisherman, beast plaguing the town +- about 1 hour ago 4x towers sprang out of the ground +making a new barrier around grand towers + +## Page 166 + +Galdenseell still not providing aide. +Lost all contact with Snow Sorrow. Perens going missing. +Contracted by an interested party (who wishes to lend her aid) +(Peridot Queen) out to get things for herself. +So she will help until something better comes along. + +Agents in PineSprings ran into some undead creatures +Godmount pills may help but he's an idiot. +Don't think we should bring the barrier down. +They will co-ordinate the defense of the other towns +Basalisk will arrange to meet Peridot Queen by Trade Smells +get Cardonald to come get us & take us back +to the army. + +Morgana sends a pigeon to the crows. +Searu's Arrow - Spear +2, once per day for go +attack roll to auto crit. & if all 3 strike a target +in consecutive rounds the target is slain! & arrows +return to fire place. + +- Hayes - gets told to look after leader. + +- Cardonald arrives & we teleport to the army. + +Sleep - But see cracked egg shells all around. +in my dreams dragons around me in the egg shells +cave entrance - Bigger dragon shape - safe & secure +at the same time - no lip dragon comes over & nuzzles +me & roll over & have 6 legs & other deformed +dragons. Mum eats one of the dragons & leaves + +Disadvantage - wisdom, charisma & Intelligence +for the rest of the day diff --git a/data/4-days-cleaned/day-36.md b/data/4-days-cleaned/day-36.md new file mode 100644 index 0000000..c6ec583 --- /dev/null +++ b/data/4-days-cleaned/day-36.md @@ -0,0 +1,229 @@ +--- +day: day-36 +date: unknown +source_pages: + - 130 + - 131 + - 132 + - 133 + - 134 + - 135 + - 136 + - 137 + - 138 + - 139 + - 140 + - 141 + - 142 + - 143 + - 144 + - 145 + - 146 + - 147 + - 148 + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 +complete: true +--- + +# Narrative + +Day 36 began at about 04:00, approximately five hours outside Brookville Springs. Skum stayed seated by Elementarium's head the whole time. Invar remembered that he knew how to remove curses, heard a clink, and a bracelet fell off his wrist. He did not remember being kidnapped. + +The party sent Errol to Lady Newgate's sister to arrange transport to meet them outside Brookville Springs at the Bridge Statue. Elementarium had not seen the Peridot Queen for about a month, since the party was last in town. The rescuees were to go back to Huthnall and remove the worm from Lady Thorpe's ear. + +The party went around Brookville Springs toward the Statue of Bridge. The statue was a female shape with no other female features, a face, and palms turned up toward the sky. There were no offerings or guards, but a copper piece lay randomly about five feet around it. The notes also connected Bridget to a temple in Seaward where people took bets, as a god of freedom, luck, gargoyles, and trickery. + +The party waited by the statue until Newgate's gargoyle arrived. People leaving Brookville Springs had a hurried energy and warned that it was not best to go in because explosions were happening all over town, including brothels, the guard house, and perhaps golems. Human buildings were going bang with purple blasts, and one human blew up. A pigeon on a ledge by the main building reported that the lead human was gone. The explosions had stopped today but happened late at night on Trimoons day. The party recalled that when they left Goldenswell, one automaton had been on the fritz. They wondered whether the exploding things were meant to explode or had been told to do so. + +The gargoyle arrived and did not appear tampered with. A message from Claymeadow said explosions were occurring all over town, Newgate's doppel/imposter was in quarters, and their Bird did not work. The party arranged to contact them through Errol and to be located through the mage's ring. They paid the captain a further 25 platinum, and he ran toward Brookville Springs. + +Brookville Springs was on high alert, with many patrols of three guardsmen. Geldrin did not locate any golems in town. By 12:00 the leader was gone, vanished. The party headed to the town center. Things seemed all right except for violence. A metal chest or guardsman said the leader had gone missing on the bang night. + +The party went to Hazy Days. Dirk, Invar, and Morgana queued for smokes and questioned a server. They learned that the Guilt was gone or had disappeared on the night of the Trimoons, around midnight. Guards had been coming in, guards were looking for him, and some people said they had seen him leave. Seneshell was running the place, and the party would not be able to see him unless they were residents, though a pitboss might work. + +At about 15:00 the party went to the main building and queued to get in. They greased the palms of the guards to see Seneshell. The entrance hall contained all twelve gods. Inside was a thick plush red carpet, a chaise lounge, a tattooed female sparrow aarakocra wearing feathers, described as Briker / Magi, and a green lamp. Seneshell said that the Guilt had offered an olive branch, the party had not taken it, and now the Guilt was stuck. The Guilt's master had not left town and was back in his room. + +Seneshell explained that the explosions were the Guilt's boss's guardsmen. The reason the Guilt was unconscious was also the reason for the explosions. The Guilt's boss, Pride, had been eaten by Garadwal. Seneshell said the party were much the same as her, because they also just worked for someone. Pride was a dark entity who wanted people to be proud. For the party, her big bad was a bit tougher. The Guilt's boss had been running things at Grand Towers. Seneshell suggested the party speak to Browning. The Guilt was an Avatar of Pride. [uncertain: Morrowred] had sold out the leaders. Pride had tried to put as many things out of commission as possible before he was consumed. Pride was neither good nor bad. + +The Guilt had a portal to Grand Towers, and Mercy would show the party a favour later. The party asked to see the Guilt. Seneshell sent them out of the room. They heard grinding and dragging across the plush carpet. When they returned, there was a chest similar to the one in Envy's lab, open, with the Guilt inside. The chest was dangerous when armed and had a code to disarm it. The party sent Errol to get Ruby Eye. There was no sign of the Underbelly. The party rubbed the lucky cyclops eye, but it did not go anywhere. + +The party headed back to the statue by the outskirts of town. They saw a few shifty people on a corner, including a half-orc and a human female. The party tried to get potions, but the people tried to shut them off and called themselves the Dollarmans, assassins. The party let them go. They seemed to want to fight but were under orders not to. + +At the statue, an obsidian bird named Terry, Metallics' bird, waited with a private message from Incara: the party should be wary if their compatriot wizards were working against them, because the wizards were the reason for their infertility, though this was not yet confirmed. A margin note said the party would go down the passage after getting Ruby Eye. + +There was a big flash and Ruby Eye appeared. Valenth was still repairing, and Valenth and Ruby Eye had both been convalescing. Ruby Eye asked about the crystal shell. The party told him they had left it at Harthwall. Ruby Eye did not know about Envy. He said many giants were rampaging at his clan's settlement. He asked about Lady Envy and Lady Harthwall. He had made enemies, but the dome was proof of his efforts. He wanted to retrieve the shell of [uncertain: Tremoon] and did not want it falling into the wrong hands; he seemed more interested in it than he admitted. Ruby Eye went into the bag so the party could sneak him in. + +The party returned to Mercy's place. Behind Mercy stood a half-elf with rounded ears, the barkeep from the Drunken Duck. Mercy had told him what was going on, and he had come down to ease the party's worries. They were independent contractors for the Guilt, concerned citizens hired for money. He wanted to cash in the favour now. He wanted something from Grand Towers: a small trinket from the private mage area on the 74th floor, a Jelly Fish Broach. An interested party wanted it retrieved. The buyer was not the party's current mutual antagonist, but a female outside the barrier. The party promised to attempt to retrieve it. + +Mercy took the party through the Grand Towers passage. The corridor was filled with pictures of the Guilt looking at them. A wall was not really there; beyond it was void. Through the door was more corridor. When they turned around and opened the door again, they entered what seemed to be a broom cupboard in Grand Towers. They moved into a room with a coat rack full of robes and headed out. Floors 70 to 90 were schools of magic, 60 to 70 were storerooms and administration offices, 0 to 60 were apartments, and floor 74 held enchantment classes. The rooms were dusty, not used regularly, and had no animal presence such as spiders or rats. + +The party got Ruby Eye out on floor 65. There was nothing of note on that floor. They tried a door and felt a magical pull on the lock, but opened it. Inside was a central pillar with shelves of orbs, like Ruby Eye's lab. They picked one to view. The vision showed a man sitting in a chair, Icefang in human form, in a nice room covered in snow. Another man, seen in the auction picture and private pictures, stood in front and shook his head. They said they were up to no good, would not let someone have him, and that the paysoil would not work without him. They could not let him be entombed under the snow. Guards wore black snowflake tabards. A calm human said he was right but did not [unclear]. A woman replied that they were old enough to tell them what to do. Ruby Eye said he had never seen the vision before, and the party did not think he was lying. + +They followed Ruby Eye down the corridor to an elevator room with a teleport circle. Geldrin went with Ruby Eye, looking to a random level as they moved upward through a maze of ropes and similar workings. Ruby Eye said they were going to see Browning. They saw a Gideone chair, Gazzy plugged into an old man, and two people tinkering at the chair's feet, not worried by their presence. + +The party put another ball in the front. This vision showed a Grand Towers boardroom. Ruby Eye, Harthwall, and all five except Browning were present. Trinkets lay in front of them: Scorpion, Snowlee, Jelly Fish, Ant, and others. The other wizards looked uncomfortable. Someone put something into a pouch, and the deal was done. When asked how many more, the answer was about seven signed up and five more to go. The wizards looked uncomfortable, saying there must be another way. Ruby Eye was unhappy and said they were good people, but the only people who would suffer; it would save millions in the long run. + +The mages knew Geldrin was following their progress and that he had succeeded in the barrier safely. A chair guy had altered Pride to be eaten by Garadwal, speaking through his greater gravel children. Garadwal was locked downstairs and heard him when he was ready; he had walked into Browning's trap. Ruby Eye said they would sort Garadwal out, as if Browning was his boss, and said Ruby Eye knew what was good for him. + +Another orb showed a person being saved while elementals flew around. The towers were completed, and fighting happened at a panel. Harthwall asked if they were nearly ready to kill them off. Browning said ready, turned into a dragon, activated the device, and Harthwall disappeared. Browning said it was too late and it had started. Ruby Eye said they needed to go now. + +A further orb showed Browning in the same room calling out through a crystal ball. A giant green dragon appeared. He asked for help getting rid of his husband. The dragon agreed, saying they could use them as cattle wherever they were done. Browning threw a blanket over the view as Valenth walked in. + +Geldrin returned, saying he had been on floor 98 and had found Browning. The party needed to get out immediately, and Geldrin told the others about Garadwal. They heard an alarm. Four golems appeared in the circles, and the party ran back down the corridor. They piled through the corridor they had used, but it was all black with no corridor. They closed and reopened the door, and it looked like a church similar to early Bridget temples. The door from the room opened outside, with no dome visible. + +The party found a courtyard with many doors. They tried to go up the tower. Behind a door, a red-robed goliath sat, shocked as they walked through. He was a clergyman named Arik Bellburn of Bridget. He said the party had come from the dome and Bridget had freed them. He described the narrator as having skin of evil, Morgana as Bleak glimmer, and Geldrin as lost winner. They were in the town of Bellburn. The people had prayed for freedom from their oppressors, Envy, and Bridget sent the party. + +The party heard a dragon. In Draconic, it said it had come for payment. Ruby Eye said they needed to go. Suddenly there were sounds of battle. Goliaths were fighting Harthwall's silver dragon on top of a building. The dragon said she had come for payment and Envy would have her due. This dragon looked similar to the original Harthwall but meaner and grimacing, with a green tinge to her scales. The goliaths all seemed to have maces made from Seaward stone. Ruby Eye wanted to leave and thought Harthwall hated him. + +The party entered the fight and tried to get Harthwall's attention. Harthwall called out Ruby Eye and told him to come remove the curse he had put on her. It was about 17:00. Ruby Eye cast imprisonment on Harthwall, shouting "Burial" in a voice that echoed like an unearthly command. Ruby Eye sounded odd, like someone doing an impression of him, and seemed furious with Dirk after Dirk hit him with a magic missile. A changing touch made the narrator think Dirk's sword was the most amazing thing ever for a brief moment. The narrator heard a voice, felt "my brother's touch" upon them, and wanted the inverse hammer. Morgana's moonbeam revealed that "Ruby Eye" was actually a red-skinned tiefling: Wrath. + +Wrath had made a pact with Ruby Eye to help kill the black dragon, and it was his fault Harthwall was outside. Wrath was scared of Browning, who had teamed up with Pride. Wrath had cursed the silver and black dragons so they could not take human form. He promised the party power in exchange for fighting their enemies. He said there were nine of them in total, little demons of Darkness: Wrath, Pride, Envy, and others. Wrath put Harthwall in the ground with imprisonment using a silver dragon statue. He said the wizards had worked with the demons to help make the dome to protect against them. He insisted the party were not working for him in any way, shape, or form, but could assist if mutually beneficial. Wrath wanted [uncertain: Tremoon's] shell because he saw the wizards make it and it helped people get in and out of the barrier. + +Arik had been injured and was healed. The goliaths paid the Blackscales and sometimes the ore kobolds. Doors were sacred to Bridget. A hellfling mayor, Mayor Longbottom, wanted to accommodate the party for the evening. She had woken up in the church one day, was originally from Goldenswell, and said there was no way back into the dome. Wrath had been part of Ruby Eye but left him when the party "took him out." Ruby Eye was still in the bag. Morgana asked Bridget if she would get them back into the dome, and Bridget took her to the chorus, with good and bad results. + +Dirk and Geldrin put a Grand Towers penny onto Bridget's statue. It disappeared and Bridget's eyes glowed green. Dirk went through the door. Bridget's eyes glowed red, and Dirk came out in Seaward. The party told the priest about the penny on the hand, and she shouted at Arik about why they had never given Bridget money. Dirk had gone back to yesterday. + +Geldrin dropped two pennies onto Bridget's hand. Her eyes glowed green and then yellow. The party went into the closet and emerged into a blue-and-white tiled reception room in a great palace with no furniture, reminiscent of Seaward. Dirk felt 400 to 500 miles away earthwise/waterwise; they were still outside the dome. Guards outside the door in blue tabards did not expect the party to be there. A guard chased Morgana and caught her by the door. They tried to confuse him with the room's appearance, and he called for the Baron. The party closed the door and reopened it to blackness. Dirk had not moved before the door opened, but when it opened Dirk was gone. The party closed the door, stepped out, went back through it, and came into Brookville Springs. Sopparra, identified with Mercy in the notes, said Wrath had been a goliath when they went in. + +Dirk remained in Seaward and heard several explosions around midnight. The party got Ruby Eye out, and Ruby Eye shouted at Wrath until Wrath got back into his eye. Dirk reported that most earthwise cities had had explosions, including the Harthwall and Goldenswell areas. Grol found Dirk, and Dirk sent a message back around 20:00. Ruby Eye teleported the party to Dirk. + +Ruby Eye explained that the trinkets were part of one of the bargains and should not be much use now. The gods had each required a favour, communication to their priests, and a boon. Bridget gave a way in. Noxia's terms involved the trinkets and barrier sickness caused by living near or touching the barrier. Nerfili and babies were connected to Arile. They always had issues, and Browning made sure they needed the wizards. Otasha's terms were more than suffering: she received the unborn nerfili babies across the whole race, though the barrier seemed to stop this slightly. Lady Harthwall was unhappy and did not know about half the deals made. The wizards had found ways around most bargains, including getting around the god of Darkness by making him the god, Leptrop. Otasha did not want the barrier because she was getting a lot of business but allowed a bargain to be made. Ennik and Browning did many of the deals. Harthwall had been taken out of the group, and the party needed to speak to Valenth about how she ended up with Envy. + +Ruby Eye said his pact with Wrath came only from needing more power after seeing how much power Browning had with Pride. Browning wanted the biggest tower and to be the greatest wizard of all time. The party teleported to Harthwall, arriving on target by her statue, and went to the castle gates. Sheriff Fathrabit took them to Harthwall and said the other nobles had arrived. + +The party brought out Wrath. Wrath said the curse was not his normal thing and was definitely his sister's work. He said, "there you go," and claimed that Harthwall would be fine in a few days, but he was lying. He wanted a favour: for the party to tell Envy that he did it. Harthwall wanted to transform and left the chamber for the courtyard, where she transformed. Harthwall was slightly bigger than the Peridot Queen. In Seaward, there were not many known reports; nobody stated that the racist automatons had exploded. Harthwall's Raven had exploded, and there had been several explosions across the city. + +The notes then mark "Day 34." At breakfast in the great hall in Harthwall, Lady Harthwall felt much better. Fighting had been pushed back earthwise to Stone Rampart. There were many mutations, and retreating troops had seen a large explosion in that area. Harthwall would defend the pylon while the party went to get the betrayer. A margin note reads "Da Pig Plaguers." Reports from the captured leaders said they had all managed to retake their cities with minimal casualties. Three paws on the ground reported the safe arrival of the goliaths. + +The party scried on "The Mother." They saw mountainous terrain, a weird two-legged horse, a little tiefling girl, and a small band of odd creatures. They were together by a small crater in the side of the barrier near the mountain, close to Valenthielles prison. The Mother had been imprisoned last time with help from the [unfinished]. Carduneld had dabbled with Envy but had not entered any [unfinished]. The party met Brother Fracture in the bazaar, with Andy [uncertain: Kallamar?] with him. They had been on their way to the front lines. The party directed Brother Fracture to Lady Fat Rabbit. + +The party went to the teleport circle in Valenthielles prison. They arrived in a twenty-foot-square room with no doors, made of seamless stone. When they touched the wall, they felt a slight difference in temperature and found a rock statue. They decided to go down the middle door, where the guard or prison had been. Lucas hit the door, and nothing happened. After hitting it again, the party cracked their doorstop after a while. Heamon's skull did not open the door. They put a Grand Towers penny on the wall, and the door opened to ten feet of corridor and then darkness. Joy was thick. Daylight made the darkness retreat into the shape of a female figure. Morgana touched it and took damage. A door lay at the end of the corridor, but a peephole at the end of the next space was trapped. Dirk looked through and took damage. + +The party opened the door. Smoke lay at the end of the room. Symbols on the floor marked the prison, and smoke on the far side suggested where an explosion may have happened. The female figure laid her hand on Dirk's shoulder and asked to come with them. When the narrator turned around, they took damage. The entity had had recent visitors, very friendly, who promised to come back but would not be back soon. They had cleaned up quickly, teleported outside the prison, and left Valenthielles there. + +Morgana saw Joy in the trees, motionless and looking very odd; it was an illusion. Mutated animals belched out of the woods. The party entered combat with them and the betrayer. Carduneld joined the party. The betrayer was killed. Carduneld and Ruby Eye talked and thought some information would put the party in danger. The party tried to ask what they knew, but they did not want to say and thought the party should focus on the [unfinished]. Ruby Eye was regaining some memories. They were unsure whether they should renegotiate some of the deals made with the gods, and wanted to look into breaking the curse on the inferlite and the damage caused by the barrier. It was not only Ruby Eye's memories that had been tampered with; Icefang's had been too. They thought the party should talk to Mama Harthall, but first needed to head to Stone Rampart earthwise. Ruby Eye and Carduneld left. + +At the cathedral, priests walked around dealing with people. Two humans with blistering skin were healed by a priest, who then came to the party. Highden Fell's armies had retreated to the firewise mountain's second level by 14:00. There were issues with sickness, internal consumption, from the crystal. The party told him about crystal sickness and advised that people spend time away from the city. He told them to see the Earl, in the other foot. The statue had been created by the five mayors. + +The party went to see the Earl. In the park between the legs, plants were in bloom. Militia wore jagged rock keep tabards, and there was much activity. The party left a message with a lieutenant. A note says she did not have it because she was born in Highden and [unfinished]. A frog appeared to Laura and wanted the narrator's attention, motioning for them to follow. They did not follow, and Sevor-ice could not follow; possible bullying was noted. The party got another sending stone with a new number from someone in the Underbelly. A Highden lizardfolk was on the building, mumbled something as the party left, and the narrator shut up. The creature said hello and cast invisibility. Morgana cast thorn whip on it. It had been skulking because it was scared of the party and had been sent to deliver something by its boss. + +The lizardfolk wanted to go somewhere private. The party met an old gnoll in a rocking chair under a blanket, "granny," an Underbelly liaison. The lizard was named Scurry. Granny knew what the party had done in town but did not know if Harthall was there yet. The Underbelly was getting back on track now that Lady Coke was back. Granny and Scurry were the only two to trust. Highden was a wreck, troops had taken over the inn, and the place "never sees the sun." The party sent Basilisk a note about current events and used a pulley lift system to go to the inn. + +A guard on the door was a sixty-foot giant, though not the size of the Tor statue. He led the party upstairs to the commander. The commander was an elf with a laurel of white roses around his head, a beard, and green peach fuzz unlike standard elves, described as a Moss couch elf. He was Captain Briarthorn, of an elf hundred. He hoped to use the natural terrain of the river as the battle point. Thousands of tribesfolk, perhaps goliaths, were involved. A blue dragon had been spotted with them but had not been seen for a while. He would mobilize the troops now that the Mother had been slain. + +The command had some "exciting" obsidian ravens. The party advised them to stop using the ravens, because all messages back had been telling them not to support the cause. Gerald went to get the quartermaster. The raven was a stealth version, and the quartermaster did not think anything was wrong. A message was sent to Dirk. Dirk said he would be there in a minute, but the reply came back saying he could not come. The party told the quartermaster to send messages ordering troops to come regardless of any reply. Errol was loaned to the commander for two hours. + +The party went to another inn, the Three Full Moons, and talked to Gary, a house farmer with a dog named Shep. They returned to Captain Briarthorn, where Lady Harthall was fully armoured. The plan was that giants were close to where the defenders wanted to ambush them. The dragon would try to split off some of the larger giants, and the party would attack. Some towns had responded through Errol and were sending small troops to help. The party arranged to meet Harthall in the forest and planned to start a fire to separate the large giants from the army. While riding the dragon, they saw a black plume of smoke near the mountain at the edge of vision. The plume was magical in nature, perhaps Harthall/Highden. + +As they drew closer, the smoke shape came to attack them. Harthall protected the party from the dragon's flame. A giant attacked, bashing Invar into the ground with his mace while the others closed in. Dirk clung to the giant's arm and climbed up his leg. Morgana summoned a bear and grappled the giant's arms. The party defeated all the giants. Harthall and a skeletal dragon fought each other. The skeletal dragon had the book from Ruby Eye's lab, and the words he spoke from the book were words he did not understand. The party teleported out to the armies, and the dragon came toward them. + +The narrator felt sick, with salt water in their nose, like after holding the White Rune. Dirk had a familiar brain tickle and saw another feeling: a room with other goliaths, a sickly threat on female green dragon armour, a chin tick like Shibble grossing, and a chest around a table that was intense. A female smiled and said, "you need to go back to now." Geldrin saw a circular table where mages discussed her and slid a paper to her. Another vision showed a man knee-deep in a ford; as he crossed, a woman said no no no, and red thorns were everywhere. Harthall saw her mother buried in the ground. + +The party went to the river to speak to water elementals and ask for help with the dragon flames. Dirk used the rod to speak to the elementals. The water elementals required the party to agree to free Icefang's ice elemental in the prison at Rimewock. Geldrin summoned the void elemental to help. The void elemental said the party would owe him another favour, since Garadwal revenge was the previous favour. The requested terms were not to free Valentenhide and to let Kasher reign, and not to oppose Kasher; the void would bring someone else to the fight. The party agreed to the water elemental. Geldrin told the void they could not accept. The party managed to say that someone might be trapped. When given a dead grub like the ear grubs, [unclear: a wanders]. + +The party then appeared in their minds in a palace-style room with plush carpets. An elderly gentleman, Icefang, sat looking at them, older than in his paintings, sane and at ease. He said, "I disagreed." A memory showed the mage table, with Icefang shouting at Browning. A dark elf appeared and dropped a grub in his ear. Icefang said he never would have dropped a rope, was glad he was sane before the end, and said they needed to right the wrongs. The party should not feel sorry for him; he had lived a good life for the half he could remember. The barrier was a good thing, but too many sacrifices had been made. + +A black hole opened under the battle. Snowflakes appeared, and a massive frost dragon burst through the hole, seized the skeletal dragon, carried it to the barrier, passed Harthall, and said "My Child." Icefang came back through, crashed through the barrier, and soot crashed down from the barrier, badly injured. The narrator felt the salt water feeling again. Icefang crashed into the river, and Soot shouted that he would take them all with him. + +Geldrin entered or invoked a dark cavern with a throne made of skulls. He walked toward a pale human female seated on the throne, with bleeding eye sockets and skeletal hands and feet. She said, "hello my child what is it you wish." Geldrin asked to dispel dragon magic. She said she had only just put it on and had taken him as payment. She had watched him with great interest since hatching. When asked whether some of the other deals had caused her [unfinished], she said no, but taking the Mother down had. Geldrin offered her Garadwal. She agreed. Geldrin chanted, Soot's flames vanished, and his bones scattered. The narrator used breath weapon on the dragon head. A water elemental retrieved Icefang and laid him down. + +Harthall did not know who her father was; she had always been told he died in battle while her mother was pregnant. Tirar's vision was at Rellport: leeches attacked in the river and made victims believe they were not really there so they could feed on as much blood as they wanted. Harthall saw her mother in the ground, trapped by a hundred tiny red creatures. + +A portal appeared, and Valenth and Ruby Eye emerged. Valenth knew before the party told her. Ruby Eye realized that they had done it to him. The dark elf may have been from Envy's apprentice, and they had been making plans. One curveball plan was to swap Valentenhide with Kasher. A coin appeared and blue thistles lay on the ground. A portal opened to a carriage drawn by two cows and guarded by very dressed-up guards. An elderly gentleman appeared, the same one from the vision of Provita's birth: Lord Bleakstorm. He chanted a message from Icefang from outside the dome. He looked no different from his pictures because he was dead. He had not freed the auroch because he could not remain inside the dome long; Browning would find him and send minions after him. Lord Bleakstorm gave the narrator a snowflake coin, a one-use portal to Bleakstorm. + +The party learned that kobolds were very good at digging through the barrier. The grub contained nothing but had properties like a leech crossed with a larval fly. Cardunel would take Icefang to be buried near Snow Sorrow. Geldrin planned to try to free Justicarus by pretending to be the Grand Towers medical team. The party returned to the troops' camp. Dirk's jaw would remain changed for the next twenty-four hours. + +[Mathwall] asked what was happening at Goldenswell and wanted to speak to Lady Lyraine at Riversmeet. Dirk's father and army were now in Sunset Vista on their way to fight the green dragon. [Mathwall] was sending Lady [rabbit] to speak to Lady Lyraine. The party went to Azurescale to speak to the merfolk and gather information about the goliath city. There was a statue to Hydrath. + +Jin Woo teleported the party toward the cherry orchard at Azureside, but they arrived in Calcmont instead, by a statue of a pregnant female cat lady holding a rose in one hand and a scythe in the other. They tried again but ended up in Coalmont Falls, a brown-green mining town with steam-powered mine carts. The waterfall occasionally turned black, and the locals did not know why. The party needed into town and found the Smokesblood Stout Brewery/Inn. Morgana turned into an octopus to investigate why the water turned black. She thought it was the creature at the bottom of the waterfall and black sediment. The party took a room at the Fellspour & Prick Inn, which was not busy. The barman said black dragonborn came through occasionally. The town had been quiet, though he had heard about dragon attacks firewise. Pinespring loggers were going missing, shutting down the logging industry. The wealthy Zigglecog mine-cart family was mentioned; their daughter had left town to become a monk at the monastery. + +The cave was where the creature lived and what made the water turn black, at least according to the fish, who did not enter it. Morgana went into the cavern, where the water became choppy and hard to traverse. She came back out and investigated. A roar came from the cave, and the water turned black, moving faster than the normal river flow. Morgana took a sample; it smelled like water, did not stain anything, and left no residue. It had not done this when Jin Woo was there 100 or 80 [unclear]. The barkeep did not know how long it had been happening, though he had been there nine years. Pack keeper Hanner might know, so the party travelled down to the lake to speak with her. + +Hanner said the black water had happened for the last thousand years. It used to occur about once a month but now happened twice a day. The pattern followed elemental schools of magic. Morgana communed with nature and sensed a large black creature with six arms, shackled by its arms under the water, apparently unconscious. Its chains led up through the ground into an alien material, an obsidian archway. The party suggested the merfolk investigate the cave, since they might get farther. Some water elementals were in the lake. + +The party went upriver to investigate the black water. Merfolk, Hanner, and Morgana checked the river while the rest of the party and a merfolk named Derek investigated on land. On land, the shield crystal registered on the compass. The party tried to follow paths into the mountains but veered toward the compass reading. They found a mine, went through it, ran out of it, and found a good path to the lake at about 16:00. In the water, Morgana swam downriver until the water reached a "wall," then stopped and became much easier to swim through. On land, the party found an ancient old road and an old sign pointing to "Dull Peake," the same direction as the compass. Dirk spotted a dark figure: a dragonborn with red eyes. When the narrator looked up, the figure noticed. + +Underwater, Morgana came into an underground chamber with ledges leading into further darkness. Hanner used a light orb, revealing a twenty-foot statue with five runes hovering in a pentagram around it. The cyclone bottom sounded like one of the main prisoners: !Asmoorade! Morgana tried to touch a rune, and it threw lightning. On land, wingbeats sounded and the dragonborn walked into view. It had dull, deathly, sooty scales and a large overbite. Its name was Nelkish. + +Nelkish walked confidently toward the party and announced the Domain of Anthrosite. He worked for Infestus. The party told him they had returned his brother's skull to Infestus. He called the narrator pure blood, not half blood, like himself. He had no quarrel with their kind under the agreement made. In the water, Morgana continued down the stream, leaving the statue behind, and approached a barrier. Touching it did not hurt, but [unclear: cruched]. On land, the party mentioned Garadwal's plans, and Anthrosite said he would allow them in to use the portal to speak to Infestus. Nelkish had not killed them on sight because Geldrin wore the wizards' robes, which were part of the agreement; the wizards brought food and similar supplies. + +Morgana tried to misty step through the underwater barrier and succeeded. She could see the merfolk but could not touch them, and dispel did not work. The cavern broadened to the left. Derek told the land party about the barrier, and that the others were close by but far below. Jin Woo thought they should have gone to see Infestus. The land party continued down the road, which seemed to stop suddenly. Morgana was stuck and could not misty step again. She tried to dry a torch to see farther into the cavern. Thorn whip struck a crack in the wall and seemed to open a door. + +Beyond the crack, the mindless moss stopped dead, and the stone looked freshly cut. Morgana continued to a door with a ticking rune carved on it, but it would not open. On land, the party described Envi to Derek, and the carving looked like him. Morgana travelled farther down the river into a room opening in all directions, where all signs of life disappeared. A noise came from the prisoner, and the water turned black. On land, black snowflakes appeared; white turned white, and black flakes were in the scoop. + +The cavern kept getting bigger and downhill, though the water had not changed direction. Morgana saw a giant jet-black figure, one hundred feet tall, standing in a hole in the ground with four large arms stretched out. Water came out of the pit and shot upward like a geyser. It seemed like a statue but felt alive. The party sent Errol to find a cave they could shelter in and went in out of the wind. Morgana went back and told Hanner about the figure. She said "winter roses" at the door, and it came to life. + +The figure thought it was Ruby Eye. It could not open the barrier because that might let other people in. Rumplky opened the door, and Envi said it was probably best to come in. Morgana followed the corridor to a circular room with two suits of armour and a pillar with purple cores for automatons who would help with what she was there for: to revive him. She activated one. When she tried to leave, the door started to close, so she activated the other. The automatons did not detect any rings. The door between the automatons opened, revealing an upright hand on a plinth and a [strils] Envi in a tube of viscous fluid. Morgana let her out. The released figure would find the rings, and the robots followed. They left the chamber. One forced a hole in the barrier, and an automaton came through. The automaton introduced himself as Garaduel, activated recall protocol, and they disappeared. The party headed back to Coalmont Falls in the merfolk lodge at 01:00. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Skum, Elementarium, Invar, Errol, Lady Newgate, Lady Newgate's sister, the Peridot Queen, the rescuees, Lady Thorpe, Huthnall, Bridget / Bridge, the lead human, the pigeon by the main building, the captain paid 25 platinum, Geldrin, Dirk, Morgana, Seneshell, the Guilt, the Guilt's master, Pride, Garadwal / Garadwel / Garaduel, Browning, [uncertain: Morrowred], Mercy, the tattooed female sparrow aarakocra described as Briker / Magi, the half-orc and human female potion sellers / Dollarmans, Terry, Metallics, Incara, Ruby Eye / Rubyeye, Valenth, Lady Envy, Lady Harthwall / Hearthall, the half-elf with rounded ears / barkeep from the Drunken Duck, Icefang, the human in the snowy room, the man from the auction and private pictures, guards in black snowflake tabards, Harthwall, Gazzy, Gideone, Arik Bellburn, Wrath, Sopparra, Grol, Noxia, Nerfili, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, the other nobles, the Mother, the little tiefling girl, Valenthielles, Carduneld / Cardunel, Brother Fracture, Andy [uncertain: Kallamar?], Lady Fat Rabbit, Lucas, Heamon, Joy, the betrayer, Mama Harthall, the priest healing crystal sickness, the Earl, Laura, Sevor-ice, the Highden lizardfolk, Granny, Scurry, Lady Coke, Basilisk, Gerald, Captain Briarthorn, Gary, Shep, Invar, Soot, the pale human female on the skull throne, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Dirk's father, Lady [rabbit], Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Infestus, Envi, Rumplky, and [strils]. + +Groups and factions mentioned include guardsmen, patrols of three guardsmen, human buildings / human targets, golems, gargoyles, doppel/imposter, Claymeadow contacts, Hazy Days staff, residents, pitbosses, all twelve gods, Grand Towers wizards, Avatars of Pride, the Underbelly, the Dollarmans assassins, independent contractors for the Guilt, concerned citizens hiring for money, the mages, elementals, goliaths, oppressors of Bellburn, Blackscales, ore kobolds, hellflings, racist automatons, gods requiring favours, priests of the gods, nerfili babies, the god of Darkness, captured leaders, Three paws on the ground, odd creatures around the Mother, mutated animals, priests, Highden militia, the five mayors, troops, thousands of tribesfolk / possible goliaths, merfolk, water elementals, black dragonborn, Pinespring loggers, the Zigglecog family, kobolds, automatons, and Grand Towers medical team. + +Places mentioned include the road approximately five hours outside Brookville Springs, Brookville Springs, the Bridge Statue / Statue of Bridge, Seaward, the temple in Seaward where people take bets, Claymeadow, the main building, Hazy Days, Grand Towers, the Guilt's room, Envy's lab, the town outskirts, Mercy's place, the Drunken Duck, the Grand Towers passage, the void beyond the wall, the Grand Towers broom cupboard, floors 0-60 apartments, 60-70 storerooms / administration offices, 70-90 schools of magic, floor 74 enchantment classes and private mage area, floor 65, floor 98, the boardroom in Grand Towers, the elevator room / teleport circle, Bellburn, the early Bridget-like church, the Bellburn courtyard and tower, Goldenswell, the dome, the barrier, Harthwall, the castle gates, the courtyard where Harthwall transformed, Goldenswell areas, Stone Rampart earthwise, the pylon, the bazaar, Valenthielles prison, the twenty-foot-square seamless teleport room, the middle door / guard or prison area, the dark prison corridor, the smoky prison room, the cathedral, Highden Fell, the firewise mountain's second level, the Earl's other foot, the park between the legs, the inn taken by troops, the river battle point, Three Full Moons, the forest ambush site, the mountain plume, the river, Rimewock prison, the mental palace room, the dark cavern with skull throne, Rellport, Bleakstorm, Snow Sorrow, Goldenswell, Riversmeet, Sunset Vista, Azurescale, the goliath city, the statue to Hydrath, Azureside cherry orchard, Calcmont, Coalmont Falls, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, the monastery, the waterfall cave, the lake, the underwater obsidian archway, Dull Peake, the Domain of Anthrosite, Infestus's portal, the underground chamber with the twenty-foot statue, the underwater barrier, the freshly cut stone corridor, the ticking-rune door, the giant black figure's geyser pit, the shelter cave, Envi's circular room, and the merfolk lodge. + +# Items, Rewards, and Resources + +Money, payments, and offerings mentioned include the random copper piece around the Bridge Statue, the party greasing guards' palms to see Seneshell, 25 platinum paid to the captain, the Grand Towers penny used on Bridget's statue, Geldrin's two pennies placed on Bridget's hand, and the note that people should have given Bridget money. + +Transport and communication resources mentioned include Errol, Newgate's gargoyle, the Bird that did not work, the mage's ring used to locate the party, Terry the obsidian bird, Metallics' bird, the lucky cyclops eye that did not go anywhere, Ruby Eye travelling in the bag, the Grand Towers portal / passage, teleport circles, Mercy's route to Grand Towers, Ruby Eye's teleport to Dirk, obsidian ravens including stealth ravens, the sending stone with a new Underbelly number, the pulley lift to the inn, the dragon ride with Harthall, Lord Bleakstorm's cow-drawn carriage portal, the snowflake coin that is a one-use portal to Bleakstorm, Jin Woo's teleports, and the merfolk lodge. + +Magic, spells, curses, and supernatural effects mentioned include Invar's remove curse memory, the bracelet falling from Invar's wrist, purple building explosions, golem detection, the Guilt being unconscious in a dangerous armed chest with a disarm code, Pride being consumed by Garadwal, Mercy's favour, void beyond the passage wall, orb visions, the magical pull on the lock, memories viewed through orbs, Browning turning into a dragon, Browning activating the device, Harthwall disappearing, Bridget's door travel with green, red, and yellow eye glows, Wrath's disguise as Ruby Eye, Morgana's moonbeam revealing Wrath, Dirk's magic missile against fake Ruby Eye, Wrath's imprisonment spell and "Burial" command, the changing touch that altered the narrator's desire for Dirk's sword and inverse hammer, Harthwall's dragon curse, Ruby Eye shouting Wrath back into his eye, gods' bargains and boons, Noxia's barrier sickness, Otasha's unborn nerfili baby bargain, the god of Darkness / Leptrop workaround, Harthwall's transformation, scrying on the Mother, daylight pushing back Joy darkness, trapped peephole damage, Morgana taking damage from the dark female figure, illusions of Joy, crystal sickness / internal consumption, invisibility cast by the Highden lizardfolk, Morgana's thorn whip, messages through obsidian ravens returning false refusals, Harthall protecting the party from dragon flame, Morgana summoning a bear, the skeletal dragon's book from Ruby Eye's lab, teleporting out to the armies, the White Rune-like saltwater sensation, brain-tickle visions, water elemental communication through Dirk's rod, summoning the void elemental, the mental meeting with Icefang, dark elf ear-grub memory tampering, the black hole and frost dragon intervention, Geldrin's skull-throne bargain to dispel dragon magic, Soot's flames vanishing and bones scattering, the narrator's breath weapon, Valenth and Ruby Eye's portal arrival, the blue thistles and coin, Lord Bleakstorm's message from outside the dome, the grub's leech and larval-fly properties, Morgana's octopus form, commune with nature locating the six-armed prisoner, shield crystal compass reading, Hanner's light orb, rune lightning, Morgana's misty step through the underwater barrier, failed dispel, thorn whip opening the wall crack, black snowflakes, winter roses opening Envi's door, purple cores powering automatons, the automaton recall protocol, and the automaton forcing a hole in the barrier. + +Objects, trinkets, and named resources mentioned include the crystal shell / shell of [uncertain: Tremoon], the Jelly Fish Broach from the 74th floor private mage area, trinkets from the bargains, Scorpion, Snowlee, Jelly Fish, Ant, Ruby Eye's lab orbs, the chair / Gideone chair, the silver dragon statue used in Harthwall's imprisonment, Seaward stone maces, the inverse hammer, the Grand Towers penny, the barrier / dome, the racist automatons, Harthwall's Raven, the pylon, Heamon's skull, the prison symbols, the chest around the intense table in Dirk's vision, the White Rune, Icefang's ice elemental in Rimewock, dead ear grub, black dragon book from Ruby Eye's lab, the auroch not freed by Lord Bleakstorm, the snowflake coin, the statue to Hydrath, steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, the ancient Dull Peake sign, the five runes in a pentagram, the ticking rune door, the upright hand on a plinth, and Envi in a tube of viscous fluid. + +Rewards, obligations, and bargains mentioned include Mercy owing or showing a favour, Mercy's contractor wanting the Jelly Fish Broach as immediate payment for the favour, Wrath offering power in exchange for fighting the party's enemies, Wrath asking the party to tell Envy that he did it, Ruby Eye's pact with Wrath to kill the black dragon, the gods requiring a favour each plus communication to priests and a boon, the water elementals requiring the party to free Icefang's ice elemental at Rimewock, the void elemental requesting another favour involving not freeing Valentenhide and letting Kasher reign, Geldrin offering Garadwal to the skull-throne woman, Lord Bleakstorm giving the one-use snowflake portal coin, and Geldrin's plan to free Justicarus by posing as Grand Towers medical staff. + +# Clues, Mysteries, and Open Threads + +Brookville Springs had purple explosions across human buildings, including brothels and the guard house, and a human blew up. The explosions happened late on Trimoons day and had stopped by the time the party investigated. A Goldenswell automaton had previously been on the fritz, and the party questioned whether the exploding things were meant to explode or had been commanded to. The leader vanished on the bang night, the town was on high alert, and Geldrin found no golems in town. + +The message from Claymeadow reported explosions across town, Newgate's doppel/imposter in quarters, and a Bird that did not work. The party arranged contact by Errol and the mage's ring, leaving the exact state of Claymeadow, Newgate's sister, and the doppel/imposter unresolved. + +Seneshell said Pride had been eaten by Garadwal, leaving the Guilt unconscious in a chest like the one in Envy's lab. Pride was the Guilt's boss, a dark entity who wanted people to be proud, and the Guilt was an Avatar of Pride. [uncertain: Morrowred] had sold out the leaders. Pride had tried to disable as much as possible before being consumed. The relationship between Pride, the Guilt, Seneshell, Browning, Grand Towers, and Garadwal remains central. + +The Dollarmans identified themselves as assassins, included a half-orc and a human female, and seemed to want to fight but were under orders not to. Their employer and target remain unknown. + +Incara's private message through Terry warned that the party's compatriot wizards might be working against them and might be responsible for their infertility, though this was not yet confirmed. This ties to later revelations about the nerfili baby bargain and barrier effects, but the exact truth and scope remain uncertain. + +Ruby Eye wanted the shell of [uncertain: Tremoon] more than he admitted and said it helped with passage in and out of the barrier. Wrath also wanted it because he saw the wizards make it. The shell's exact function, current safety at Harthwall, and risk if obtained by the wrong faction remain unresolved. + +Mercy's contractor wanted the Jelly Fish Broach from the 74th floor private mage area in Grand Towers for a female buyer outside the barrier who was not the party's current mutual antagonist. The buyer, purpose, and consequences of retrieving the broach remain unknown. + +Grand Towers orb visions revealed hidden wizard bargains, possible memory tampering, Icefang's entombment under snow, black snowflake guards, trinkets including Scorpion, Snowlee, Jelly Fish, and Ant, and Browning's actions. Browning had Pride's power, wanted the biggest tower and to be the greatest wizard, trapped Garadwal downstairs, worked with a giant green dragon, and used a device that made Harthwall disappear. The notes preserve multiple uncertain or incomplete statements from these visions. + +Bellburn appears outside the dome and treats Bridget's doors as sacred. Arik Bellburn believed Bridget sent the party from the dome in answer to prayers against Envy. Bridget's door travel responded to Grand Towers pennies with different eye colours and sent Dirk to Seaward, then sent the group through a palace-like room and back to Brookville Springs. The exact rules of Bridget's doors, pennies, colour responses, time displacement, and locations remain unclear. + +Wrath impersonated Ruby Eye, cursed silver and black dragons so they could not take human form, and imprisoned Harthwall using a silver dragon statue. He described himself, Pride, Envy, and six other little demons of Darkness as nine total. He said the wizards worked with them to create the dome as protection from them. Wrath claims mutual benefit rather than control over the party, but his bargains and fear of Browning remain dangerous. + +Ruby Eye's memories and Icefang's memories had both been tampered with through ear-grub-like intervention. A dark elf dropped a grub into Icefang's ear at a mage table during a dispute with Browning. The dark elf may have been from Envy's apprentice. The party is left with questions about who else was altered, what they forgot, and which wizard decisions were made under coercion. + +The gods' bargains behind the barrier are only partially understood. Bridget gave a way in; Noxia's bargain involved trinkets and barrier sickness; Otasha received unborn nerfili babies across the race, with the barrier seeming to mitigate it; the god of Darkness was bypassed by making him the god, Leptrop; Ennik and Browning made many deals; Harthwall did not know about half of them. Ruby Eye and Carduneld considered renegotiating deals, breaking the inferlite curse, and addressing barrier damage. + +Valenthielles prison contained seamless stone, a prison corridor of damaging Joy-like darkness, trapped peepholes, smoke, prison symbols, and a dark female figure who had recent friendly visitors that cleaned up quickly, teleported outside, and left Valenthielles. The identity of the visitors, what they removed or cleaned, and the state of Valenthielles remain open. + +The Mother was found near a crater at the side of the barrier close to the mountain and Valenthielles prison, with odd creatures and a little tiefling girl on a weird two-legged horse. The Mother was slain off-screen in the notes after a fight involving mutated animals and the betrayer, but the Mother, the betrayer, the tiefling girl, the creatures, and the exact sequence have gaps. + +Highden suffered crystal sickness / internal consumption, blistering skin, military retreat, false obsidian raven messages, and a major battle against tribesfolk, giants, and dragons. The Underbelly was rebuilding under Lady Coke, with Granny and Scurry as trusted contacts, while Highden was described as a wreck that never sees the sun. + +The battle near Highden involved Harthall, a skeletal dragon with Ruby Eye's lab book, Soot, Icefang's intervention as a frost dragon, water elementals, a void elemental, the skull-throne woman, and a bargain offering Garadwal. Several visions occurred: Dirk's green-dragon-armour room, Geldrin's mage-table paper, the ford with red thorns, Harthall's mother buried and trapped by tiny red creatures, and Tirar's Rellport leech vision. Their full meanings remain unresolved. + +The skull-throne woman with bleeding eye sockets had taken Soot as payment and accepted Garadwal in exchange for dispelling dragon magic. Her identity, relationship to Geldrin, interest in Soot since hatching, and connection to other deals remain unclear. + +Lord Bleakstorm appeared dead but active, delivered a message from Icefang outside the dome, and gave a one-use portal coin to Bleakstorm. He could not stay inside the dome because Browning would detect him and send minions. He had not freed the auroch. His current power, limits, and exact role remain unresolved. + +Coalmont Falls has black water that has occurred for one thousand years, once monthly but now twice daily, following a pattern with elemental schools of magic. Morgana's commune with nature found a six-armed black creature shackled underwater, linked to alien material and an obsidian archway. The black water, black sediment, roar, and increasing frequency suggest the prisoner or prison is destabilizing. + +The underwater prison or facility contained a twenty-foot statue with five runes in a pentagram, the name !Asmoorade!, a barrier that Morgana crossed with misty step but could not dispel or recross, a freshly cut stone corridor, a ticking-rune door, black snowflakes, and a giant jet-black four-armed figure in a geyser pit. Envi, Rumplky, purple-cored automatons, the upright hand, [strils], and a tube of viscous fluid suggest a hidden revival process. The automaton introduced himself as Garaduel and recalled the automatons away after forcing a hole in the barrier, leaving the state of Envi, the rings, and the prison unknown. + +Anthrosite's domain and agreement with the wizards protected the party because Geldrin wore wizard robes and because Nelkish recognized the narrator as pure blood rather than half blood. Infestus's portal, the food-supply agreement, the returned skull of Nelkish's brother, and Garadwal's plans remain active threads. diff --git a/data/4-days-cleaned/day-70.md b/data/4-days-cleaned/day-70.md new file mode 100644 index 0000000..343cd3e --- /dev/null +++ b/data/4-days-cleaned/day-70.md @@ -0,0 +1,107 @@ +--- +day: day-70 +date: unknown +source_pages: + - 158 + - 159 + - 160 + - 161 + - 162 +complete: true +--- + +# Narrative + +Day 70 began with discussion of the pit made against the merfolk at the start of the dome. Sir [uncertain: Counting Fibo] was supposed to remove it. + +The party tried to teleport and made it to the outskirts of Azureside. The cherry trees there looked diseased, and there were abandoned bushels. Morgana felt as though the earth itself was plagued, connected to the Poison Dragon. + +The party headed into Azureside and met up with Alana, the Pact leader. Alana explained that plague had overtaken the town of Heartmoor. Carl had left town, and Alana and the guild had been trying to run things in his absence. The town had taken a lot of damage. + +The party entered a cobbler's shop that was being used as a town hall. Several local figures were present: Greysock Soulspindle, an elderly male gnome in a cobbler outfit; Ahlabre / Alizabesh Azure, an elderly human woman in priest robes; and Captain Spratt, a thuggish male half-orc with a sailor look. The town's problems had been bad for the last six months and poor for the last six months. + +The dragon was expected to come tomorrow for payment. Some thugs had been stealing the offerings left for the dragons and possibly stealing from other townsfolk. They were thought to be hanging around Firevine, and possibly at a dodgy pub called the Cheery & Cherry, with the notes preserving the odd phrasing "Cheery & cherry." The party set up the town square for an ambush against the thugs. + +The local temple was made out of seaweed stone, which was immune to the dragons' acid. The plague was unlike anything Paralitha had come across; cholera and death were noted in connection with it. The plague seemed to be a concoction of different ailments, with magical involvement linking them together, and it was contagious. + +Morgana tried to heal the land. She felt venomous creatures fighting against her efforts and felt a presence airwise. She saw a female figure above the lake: a monstrosity with scorpion tails, snake heads, and a female face. A swarm of birds came and smashed through, and the ground was restored to its natural state, perhaps even better than before. + +At about 15:00, the party hid and waited for the thugs to come steal the offering. Two shadows moved in from the Firevine side of the city. They went into buildings and seemed to hide. One pointed upward, then the figures slunk away from the square and back into town. They looked human. + +A fireball went off at the top of the bell tower. The party identified attackers at the tower: a half-elf wizard, a dragonborn rogue, and a pigeon aarakocra rogue. All three were killed. In another building, the party found two shoes. Two blackjack clubs were taken from the rogues. The notes describe them with enthusiasm: "I think they are amazing & I can't use any other weapons." The clubs were named Bok and Bosh. + +The party subdued two other henchman types, described as humanoids, and questioned them. Their names were Tim Anderson and Barry. They said the three dead attackers had asked them for help. They all met at the Cheery & Cherry, the pub to which the party had sent the sailor for rumor spreading. Tim Anderson and Barry had done three jobs for the attackers. The attackers had come into town about a week ago, and there were rumors that they were working from the sewers. It seemed like the local thugs were responsible at first, but then these other people came in. + +The blackjacks were made from scorpion leather, described as cured and tanned skin, with jellyfish tendril cords. At about 15:30, the party went to the Cheery & Cherry. A guard on the door had the same armour as the dragonborn and aarakocra. The guard went in to get the "boss," apparently because they had been told not to interfere with the party. + +The pub was filled with people, possibly townsfolk, but about six people stood out as the same sort of people the party had encountered. A dwarf guarded the stairs. The party assumed the guard had gone upstairs to the room where the boss was. The boss was human, with black eyes, and otherwise looked normal. He was flanked by two hyenas and wore rings associated with snake, wasp, jellyfish, and scorpion. He told the guard to bring the party in. + +The boss was with the Dollarmen. The Council with Mercy from Brookville Springs was mentioned, though the boss said he did not work for anybody. He claimed this was the easy town, and that he was the poor-quality one who had been sent to the easy place because he was not good enough for anything else. He warned the party away from venturing farther into the cursed lands. + +The party attacked the boss. Morgana's Moonbeam revealed his bottom half as a snake, and he was utterly murdered. The party subdued one of the henchmen and killed the rest. Geldrin left the room clutching the skin book to intimidate people. + +Ulfarun, an elf, was next in command. Gnoll Longfang tried to stab Ulfarun in the back. The party told Ulfarun about all the pillagers of the village and the stealing. At about 16:30, Dirt played cards with the remaining Dollarmen. + +The party learned that the dragons came pretty early and that a different dragon came each time. The last one had dark smoke coming from her, and before that there had been a two-headed dragon. + +Geldrin, Invar, and Morgana went to try to repair something, while Dirt and Alana headed over to the cobbler's town hall to tell the town leaders about the Dollarmen and ask for help with the crossbow. Frilleshanks, a gnome jeweler, might be able to help. Jerome, the innkeep at Saphire Shores, was also noted. Saphire Shores had a Goodking house style and was described as a "right glass for the right beer" kind of pub. + +Frilleshanks helped Geldrin streamline "Snake Slayers," and Frilleshanks's apprentice, Joel, a dwarf, would help operate it. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Sir [uncertain: Counting Fibo], Morgana, the Poison Dragon, Alana, Carl, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt, Paralitha, the female figure above the lake, the half-elf wizard at the bell tower, the dragonborn rogue, the pigeon aarakocra rogue, Tim Anderson, Barry, the sailor sent for rumor spreading, the door guard at the Cheery & Cherry, the dwarf guarding the stairs, the black-eyed boss / snake-bottom boss, Mercy from Brookville Springs, Geldrin, Ulfarun, Gnoll Longfang, Dirt, Invar, Frilleshanks, Jerome, Joel, and Frilleshanks's apprentice. + +Groups and factions mentioned include the merfolk, the Pact, Alana and the guild, townsfolk, thugs stealing dragon offerings, dragons, venomous creatures, humanoid henchmen, the three dead attackers, sewer-based rumored operators, the people at the Cheery & Cherry who stood out as matching earlier attackers, the Dollarmen, the Council with Mercy from Brookville Springs, pillagers of the village, and the remaining Dollarmen. + +Places mentioned include the pit made against the merfolk at the start of the dome, the dome, the outskirts of Azureside, Azureside, Heartmoor, the cobbler's shop acting as town hall, Firevine, the town square, the local temple made from seaweed stone, the lake, the bell tower, another building where two shoes were found, the Cheery & Cherry / Cheery & cherry dodgy pub, the sewers, upstairs at the pub, the cursed lands, Brookville Springs, Saphire Shores, and Goodking house style. + +Creatures and creature-like beings mentioned include the Poison Dragon, dragons collecting payments, venomous creatures opposing Morgana's healing, the female-faced monstrosity with scorpion tails and snake heads, a swarm of birds, the half-elf wizard, the dragonborn rogue, the pigeon aarakocra rogue, two hyenas flanking the boss, the boss's snake lower half, a dragon with dark smoke coming from her, and a two-headed dragon. + +# Items, Rewards, and Resources + +Items, offerings, and resources mentioned include the pit made against the merfolk, abandoned bushels near the diseased cherry trees, offerings left for the dragons, dragon payments expected tomorrow, the seaweed stone temple immune to dragon acid, the contagious magically linked plague concoction, the town square ambush setup, the fireball at the top of the bell tower, two shoes found in another building, two blackjack clubs named Bok and Bosh, scorpion leather made from cured and tanned skin, jellyfish tendril cords, the door guard's armour matching the dragonborn and aarakocra, the boss's rings associated with snake, wasp, jellyfish, and scorpion, Geldrin's skin book used for intimidation, cards played by Dirt with the remaining Dollarmen, the crossbow that Dirt and Alana sought help with, and "Snake Slayers" streamlined by Frilleshanks. + +Magic, spell effects, diseases, and environmental effects mentioned include the attempted teleport to the outskirts of Azureside, Morgana sensing the plagued earth, the Poison Dragon connection, the plague overtaking Heartmoor, cholera and death noted with Paralitha's assessment, magical involvement linking multiple ailments together, the plague being contagious, venomous creatures fighting Morgana's healing of the land, Morgana sensing a presence airwise, Morgana's vision of the female-faced scorpion-and-snake monstrosity above the lake, the swarm of birds smashing through, the ground being restored to its natural state or better, the fireball at the bell tower, Morgana's Moonbeam revealing the boss's snake lower half, the dragon with dark smoke coming from her, and the earlier two-headed dragon. + +Weapons, tools, and combat resources mentioned include the blackjacks Bok and Bosh, the fireball, Morgana's Moonbeam, the skin book used for intimidation, the crossbow needing help, and Snake Slayers. + +Locations with resources or services include the cobbler's shop serving as town hall, the seaweed stone temple, the Cheery & Cherry pub, Saphire Shores, the Goodking house-style pub described as a "right glass for the right beer" kind of pub, and Frilleshanks the gnome jeweler's ability to help streamline Snake Slayers. + +# Clues, Mysteries, and Open Threads + +The pit made against the merfolk at the start of the dome was supposed to be removed by Sir [uncertain: Counting Fibo]. The exact nature of the pit, why it was made against the merfolk, and whether Sir [uncertain: Counting Fibo] actually removed it remain unclear. + +Azureside's cherry trees looked diseased, and abandoned bushels were present. Morgana felt the earth was plagued and connected this to the Poison Dragon. The relationship between the diseased land, the abandoned harvest, the Poison Dragon, and Heartmoor's plague remains unresolved. + +Alana said plague had overtaken Heartmoor while Carl was away and Alana and the guild were trying to run the town. The town had suffered heavy damage. The cause of Carl's departure and the full extent of the guild's authority are not stated. + +The plague had been bad for six months and poor for six months, was unlike anything Paralitha had encountered, and appeared to combine different ailments through magical linkage. Cholera and death were noted. Its source, mechanism, and whether the dragons, Poison Dragon, venomous creatures, Dollarmen, or cursed lands are responsible remain open. + +The dragon was expected tomorrow for payment, and thugs were stealing offerings left for the dragons and possibly from townsfolk. The dragons came early, a different dragon came each time, the last one had dark smoke coming from her, and one before that was two-headed. The payment arrangement, the dragons' identities, and the consequences of missed payment remain unresolved. + +Morgana's healing of the land was opposed by venomous creatures and accompanied by a presence airwise. She saw a female-faced monstrosity above the lake with scorpion tails and snake heads before a swarm of birds smashed through and restored the ground. The identity of the female figure, the meaning of the birds, and the reason the ground became even better than natural are unclear. + +The ambush in the town square revealed two human-looking shadows from Firevine who hid in buildings, pointed upward, and retreated before the bell tower fireball. Whether these two shadows were scouts, bait, local thugs, Dollarmen, or connected to the sewer rumors is unresolved. + +The half-elf wizard, dragonborn rogue, and pigeon aarakocra rogue attacked the bell tower and died. Two other humanoid henchmen, Tim Anderson and Barry, said those three had asked them for help. The attackers had arrived about a week earlier, met at the Cheery & Cherry, and were rumored to be working from the sewers. It seemed as if the first problem was local thugs, then other people came in. + +The blackjacks Bok and Bosh were made from scorpion leather and jellyfish tendril cords. Their odd construction connects them to the boss's animal-themed rings and the venomous / poisonous imagery around the plague, but no direct link is confirmed. + +The Cheery & Cherry door guard had armour matching the dead dragonborn and aarakocra, suggesting a shared group or supplier. The pub contained about six people who stood out as the same sort of people the party had encountered. Their exact identities and roles are not recorded. + +The black-eyed boss was with the Dollarmen, mentioned the Council with Mercy from Brookville Springs, and claimed he worked for nobody. He described himself as the poor-quality one sent to an easy town because he was not good enough for anything else. His remarks imply a hierarchy or assignment system behind the Dollarmen, but who sent him and what the Council with Mercy relationship means are not clear. + +The boss warned the party away from venturing farther into the cursed lands. His warning may be self-serving, but it also suggests the cursed lands contain dangers or secrets important to the Dollarmen, dragons, plague, or Poison Dragon. + +Morgana's Moonbeam revealed the boss's bottom half as a snake. This transformation or hidden form, together with his black eyes, hyenas, and snake / wasp / jellyfish / scorpion rings, reinforces the venomous creature theme but is not explained. + +Ulfarun, an elf, became next in command after the boss was killed, but Gnoll Longfang immediately tried to stab Ulfarun in the back. The internal structure, loyalties, and succession politics among the Dollarmen at the Cheery & Cherry remain uncertain. + +Dirt played cards with the remaining Dollarmen at about 16:30. The outcome and any information gained from this card game are not recorded. + +Geldrin, Invar, and Morgana went to try to repair something, while Dirt and Alana asked for help with the crossbow. The object being repaired is not specified in the raw notes, but Frilleshanks later helped streamline Snake Slayers and Joel would help operate it. + +Frilleshanks, a gnome jeweler, could help with the crossbow / Snake Slayers, and his apprentice Joel, a dwarf, would help operate it. The exact nature of Snake Slayers and how it relates to the dragon threat or the coming payment remains to be clarified. + +Jerome, innkeep at Saphire Shores, and the Goodking house-style pub described as a "right glass for the right beer" establishment are noted without a clear immediate role, but they may be relevant contacts or locations. diff --git a/data/4-days-cleaned/day-71.md b/data/4-days-cleaned/day-71.md new file mode 100644 index 0000000..810b73b --- /dev/null +++ b/data/4-days-cleaned/day-71.md @@ -0,0 +1,107 @@ +--- +day: day-71 +date: unknown +source_pages: + - 162 + - 163 + - 164 + - 165 + - 166 +complete: true +--- + +# Narrative + +Day 71 began at about 07:00, when two dragons seemed to approach. One was lithe, with unremarkable features and a veridian hue. The other was the toothless dragon the party had seen before. By about 09:00, Greysocks was walking toward the town square but stopped a few streets away. The smaller dragon landed on a building. A black puff of smoke appeared, and a black smoke dragon manifested, apparently summoning the cobbler. Greysocks looked up at the tower, and the smoke dragon also looked up at the tower. The black smoke dragon waved a claw and disappeared. + +Battle began. A ticking female stabbed Joel through. Inkysvagh the Horror ran off. [Unclear] Cezzerliksygh was killed. [Unclear] Neutron to chitra Entoldust Darkness Born was also killed. After the fight, the party revived the dwarf, who ran off home. Greysocks was reincarnated as an elf, and the jeweller was reincarnated as a halfling. The party returned to the cobbler's shop and told them about the changes. Captain Sprat went to get clothes for the changed cobbler or cobblers. + +The party sent Errol to Dirk's dad and gave Errol the bracelet of locating. Invar cast Prayer of Healing. Two hours had passed since the dragon fled. Errol returned and reported that he had gone halfway from Sunset Vista to Azureside and found no bracelet. Meanwhile, the council was trying to convince the militia to "suit up." + +The party heard a large explosion from the Cheery & Cherry and went to the pub. Longfury was standing outside and made it clear that he was in charge. The party sent him off to the town square to attack a dragon if it appeared. Townsfolk then appeared to put out the fire. The explosion seemed too powerful for a gnoll, so the party investigated its cause. Moonshine vodka had helped the blast, and the party found cracked copper spheres, which they assumed had released fire elementals. Upstairs, under a desk, they found a wooden chest containing a crossbow, which Bosh took. + +Screams came from the town square. Longfury was standing on boxes, taunting the dragon. The party told him to hide. By this point, three hours and ten minutes had passed; the time was 12:10. + +The party sought an audience with the Pact Keeper. They learned or noted that no one had ever seen the matriarch leave their domain. They went back to the cobblers and advised calling a mass town meeting so the town could either evacuate or join the fight. Evacuation would take about half a day. As the party began spreading the evacuation message, the town darkened, and wisps of smoke started rolling over the ground and roads. + +Geldrin and Dirk heard whispers in the smoke but could not make out any particular words. Townsfolk panicked. One turned around with woodlice streaming from his mouth, while others swatted at invisible bugs. The party guided everyone out of the village toward Threeleigh. + +The name Perodika was noted. The smoke formed into a thirty-foot-tall dragon with beautiful green scales. It possessed people and spoke to Dirk. It declared that all of the Pacts were off and that it would kill everyone in every town. It said there was nowhere to run or hide, that it would devour the army first and then devour what she liked. It told Dirk, "I think you underestimate me," called itself "the choking death" and "the mother of many," and then choked some of the townsfolk. + +The party sent a message to Basalisk. Errol sent messages to Cardonald and Rubyeye, who said they were coming to the party. The message seemed to nearly get through but could not because there was a blocker in the area. They would try to get to Threeleigh, or perhaps out of the area. The party headed toward Donly and told Errol to get Dirk's dad to direct himself toward Donly so they could meet up. + +On the horizon, the party saw a green shape with three or four figures flying around it. Light returned to normal, suggesting the green dragon's influence had about a ten-mile range. + +Basalisk wanted to meet in Donly or Sunset Vista because the blocker prevented teleportation to the party. The party instead headed to a hunters' encampment in the Savannah after asking for landmarks. They reached a smallish settlement at about 17:00. A celebration seemed to be happening in town. The inhabitants were humanoids with dark skin and red tones, reminiscent of Dunnerai but with completely red eyes. They granted the party hospitality. Grinan spoke to the party first. + +Morgana spoke to a dog named Hayes. Hayes said they had gone hunting; Aurouze and his two companions had not come back, though the hunters they went with had returned. Grinan came back with a really old lady, apparently the settlement's leader. + +The party told the settlement that what had been seen in the Aire was not only Azureside and that Azureside would fall. They said they needed as much aid as they could muster. The leader or old lady warned that a headlong attack was not the way to do it. Those the dragon had wronged could be the party's greatest allies. + +A tower appeared in the flames, with many green dragons flying and hundreds of Goliaths living below. The vision or account said that "her mistress demands the pain." This had been going on so long that the Goliaths were no longer in as much pain, so she needed to cause more people pain. The Goliaths had some resistance, and a small group was fighting back. Because the dragon was not at home, it was the best time to look around, find a trapped ally, and look into other things and corruptions. + +The old lady or leader had attacked the dragon once. She had respected the dragon and her churches. She transformed to Searu, and her staff changed into one of Searu's arrows. + +Basalisk appeared and said the party was nothing but trouble. Emmeraine was under attack. The father at Dunnensend was mobilising an army, and Muthall was mobilising to Emmeraine. A Hearthsmoor fisherman had reported a beast plaguing the town, and about an hour earlier four towers had sprung out of the ground, making a new barrier around Grand Towers. + +Galdenseell was still not providing aid. All contact had been lost with Snow Sorrow, and Perens were going missing. Basalisk had been contracted by an interested party who wished to lend her aid: the Peridot Queen. The Peridot Queen was out to get things for herself, so she would help only until something better came along. Agents in PineSprings had run into undead creatures. Godmount pills might help, though the note adds that "he's an idiot." The party did not think they should bring the barrier down. Basalisk and the others would coordinate the defense of the other towns. Basalisk would arrange to meet the Peridot Queen by Trade Smells and get Cardonald to come get the party and take them back to the army. + +Morgana sent a pigeon to the crows. Searu's Arrow was identified or described as a +2 spear. Once per day, it could turn an attack roll into an automatic critical hit. If all three strikes hit a target in consecutive rounds, the target was slain. The arrows returned to the fire place. Hayes was told to look after the leader. + +Cardonald arrived, and the party teleported to the army. During sleep, the narrator saw cracked eggshells all around. In the dream, dragons were around them in the eggshells near a cave entrance. A bigger dragon shape felt safe and secure at the same time. The toothless or no-lip dragon came over and nuzzled the narrator. The narrator rolled over and had six legs. Other dragons were deformed. The mother ate one of the dragons and left. After the sleep or dream, the narrator had disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Greysocks, the lithe veridian-hued dragon, the toothless / no-lip dragon seen before, the little dragon, the black smoke dragon, the cobbler, the ticking female, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, the revived dwarf, the jeweller reincarnated as a halfling, Captain Sprat, Errol, Dirk's dad, Invar, Longfury, Bosh, the Pact Keeper, the matriarch who has never been seen leaving their domain, Geldrin, Dirk, Perodika, Basalisk, Cardonald, Rubyeye, Grinan, Morgana, Hayes the dog, Aurouze, Aurouze's two companions, the really old lady / settlement leader, Searu, the father at Dunnensend, the Hearthsmoor fisherman, the interested party, the Peridot Queen, Godmount, and the narrator who had the eggshell dragon dream. + +Groups and factions mentioned include the party, the council, the militia, townsfolk, gnolls, fire elementals, the cobblers, the Pacts, the army, the hunters at the Savannah encampment, the humanoid settlement with dark skin, red tones, and completely red eyes, Dunnerai, hunters who returned without Aurouze and his companions, green dragons, Goliaths, the Goliath resistance / small group fighting back, the dragon's churches, Muthall's forces, Galdenseell, Snow Sorrow, Perens, Basalisk's agents in PineSprings, undead creatures, the crows, and deformed dragons in the dream. + +Places mentioned include the town square, the tower, the cobbler's shop, Sunset Vista, Azureside, the Cheery & Cherry pub, the Pact Keeper's domain, the village being evacuated, Threeleigh, Donly, the horizon where the green shape appeared, the Aire, the Savannah, the hunters' encampment, the smallish settlement where a celebration was happening, the tower in the flames, the Goliath settlement below the tower, Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, Trade Smells, the army, a cave entrance in the dream, and the fire place associated with Searu's Arrow. + +# Items, Rewards, and Resources + +Items and equipment mentioned include the bracelet of locating given to Errol for Dirk's dad, clothes fetched by Captain Sprat for the reincarnated cobbler or cobblers, the wooden chest under the upstairs desk at the Cheery & Cherry, the crossbow inside the chest taken by Bosh, cracked copper spheres found after the explosion, moonshine vodka that helped the explosion, Searu's staff that changed into one of Searu's arrows, Searu's Arrow, Morgana's pigeon sent to the crows, Godmount pills, and eggshells in the narrator's dream. + +Spells, magical effects, and combat effects mentioned include reincarnating Greysocks into an elf, reincarnating the jeweller into a halfling, reviving the dwarf, Invar's Prayer of Healing, the black puff of smoke and manifestation of the black smoke dragon, the black smoke dragon waving a claw and disappearing, the ticking female stabbing Joel through, the assumed release of fire elementals from cracked copper spheres, the town-darkening smoke and wisps rolling along the ground and roads, whispers in the smoke heard by Geldrin and Dirk, woodlice streaming from a townsfolk's mouth, townsfolk swatting invisible bugs, the thirty-foot green-scaled smoke dragon possessing people, the dragon choking townsfolk, the area blocker that interfered with messaging and teleportation, the green dragon's apparent ten-mile range, the flame vision of the tower, the old lady transforming to Searu, Cardonald teleporting the party to the army, the narrator's cracked-eggshell dragon dream, and disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. + +Searu's Arrow was described as a +2 spear. Once per day, it could turn an attack roll into an automatic critical hit. If all three strikes hit a target in consecutive rounds, the target was slain. The arrows returned to the fire place. The exact wording of "all 3" and whether this refers to arrows, strikes, or consecutive spear attacks is preserved as uncertain. + +Strategic resources and communications mentioned include Errol's attempt to locate the bracelet halfway from Sunset Vista to Azureside, the council trying to convince the militia to suit up, the proposed mass town meeting, the half-day evacuation estimate, guidance of the village population toward Threeleigh, messages to Basalisk, Cardonald, and Rubyeye, Basalisk's preferred meeting points of Donly or Sunset Vista, the hunters' encampment landmarks, hospitality granted by the red-eyed settlement, advice that those wronged by the dragon could be allies, the opportunity to look around while the dragon was away from home, Basalisk and others coordinating defenses of other towns, Basalisk's planned meeting with the Peridot Queen by Trade Smells, and Cardonald taking the party back to the army. + +# Clues, Mysteries, and Open Threads + +Two dragons approached at the start of the day: a lithe dragon with a veridian hue and the toothless / no-lip dragon previously seen. The relationship between these dragons, the little dragon on the building, and the black smoke dragon that summoned the cobbler remains unclear. Both Greysocks and the smoke dragon looked up at the tower before the smoke dragon disappeared. + +The battle left several name-like entities uncertain or only briefly described: the ticking female who stabbed Joel, Inkysvagh the Horror who ran off, [unclear] Cezzerliksygh who died, and [unclear] Neutron to chitra Entoldust Darkness Born who died. Their affiliations, species, and connection to the dragons or smoke are not stated. + +Greysocks was reincarnated as an elf, and the jeweller was reincarnated as a halfling. The notes do not state whether these transformations were voluntary, necessary because of deaths, or accepted by the affected people. Captain Sprat fetched clothes afterward. + +Errol took the bracelet of locating to Dirk's dad, but after going halfway from Sunset Vista to Azureside he reported no bracelet. Whether the bracelet failed, was blocked, was absent, or was somewhere else is unresolved. + +The Cheery & Cherry explosion was more powerful than expected for a gnoll. Moonshine vodka contributed to it, and cracked copper spheres were found afterward. The party assumed fire elementals had been released, but the exact device, trigger, and responsible party are not confirmed. Bosh took the crossbow found in the wooden chest upstairs. + +The Pact Keeper and the matriarch remain important. No one had ever seen the matriarch leave their domain, and shortly afterward the smoke dragon declared that all Pacts were off. The exact relationship between the Pact Keeper, the matriarch, the Pacts, and the green dragon's threat remains unresolved. + +The smoke over the town caused whispers, panic, woodlice streaming from a person's mouth, people swatting invisible bugs, possession, and choking. The thirty-foot beautiful green-scaled dragon named or associated with Perodika called itself "the choking death" and "the mother of many," threatened every town, and intended to devour the army first. Its claims, range, and identity remain central open threads. + +The blocker in the area interfered with messages and prevented teleportation to the party. Basalisk wanted to meet in Donly or Sunset Vista because of this. The source, range, and nature of the blocker are not identified. + +The green shape on the horizon had three or four figures flying around it. When light returned to normal, the party inferred that the dragon had about a ten-mile range. The identity of the flying figures and the exact effect ending with the light shift are not specified. + +The Savannah hunters' settlement contained humanoids with dark skin, red tones, and completely red eyes, reminiscent of Dunnerai. They were celebrating and granted hospitality. Their identity, culture, and reason for the celebration are not stated. + +Hayes the dog reported that Aurouze and his two companions failed to return from a hunt, although the hunters who went with them did return. What happened to Aurouze and the two companions is unresolved. + +The old lady / leader said a headlong attack was the wrong approach and that those the dragon had wronged could be the party's greatest allies. The flame vision showed a tower, many green dragons, hundreds of Goliaths living below, the dragon's mistress demanding pain, Goliaths developing resistance to the long suffering, and a small resistance group fighting back. The trapped ally, other things, and corruptions to investigate while the dragon is away from home remain open objectives. + +The leader had once attacked the dragon, had respected the dragon and her churches, and transformed to Searu. The link between Searu, the dragon's churches, Searu's Arrow, and the old lady's past attack remains unclear. + +Basalisk reported multiple simultaneous crises: Emmeraine under attack, the father at Dunnensend mobilising an army, Muthall mobilising to Emmeraine, a Hearthsmoor fisherman reporting a beast plaguing the town, and four towers rising around Grand Towers to make a new barrier. How these events connect to the green dragon, the Pacts, and the wider barrier crisis remains unresolved. + +Galdenseell was still not providing aid. Contact with Snow Sorrow was lost, and Perens were going missing. Agents in PineSprings ran into undead creatures. The reasons for Galdenseell's refusal, Snow Sorrow's silence, the missing Perens, and the undead in PineSprings remain open. + +The Peridot Queen was willing to lend aid through Basalisk but was explicitly acting for herself and would help only until something better came along. Basalisk planned to meet her by Trade Smells. Her motives, price, and reliability remain suspect. + +The party did not think they should bring the barrier down, while four new towers had created a new barrier around Grand Towers. The strategic consequences of keeping, lowering, or altering barriers remain unresolved. + +The narrator's dream of cracked eggshells, deformed dragons, the toothless / no-lip dragon nuzzling them, the narrator having six legs, and the mother eating one dragon before leaving caused disadvantage on Wisdom, Charisma, and Intelligence for the rest of the day. The dream's source, whether it was a warning or influence, and the identity of the mother dragon remain unresolved. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 2f3c8c0..35d3d9c 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -27,20 +27,23 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # Aliases and Variant Spellings -- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Terror of the Sands, nightmare of the darkness. +- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Garadwel, Garaduel [uncertain automaton spelling], Terror of the Sands, nightmare of the darkness. - [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. - [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. -- [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, the skull [context-dependent]. +- [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, fake Ruby Eye [context: Wrath impersonation], the skull [context-dependent]. - [Edward Browning](people/edward-browning.md): Edward Browning, Browning; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. -- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi, Ennui, The Mage, Visage Envoi. -- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Valenth Caerdunel, Valenthide, Valententhide, Valententide / Vallententide [uncertain historical/art reference]. +- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi [also possible separate Coalmont Falls figure], Ennui, The Mage, Visage Envoi. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Carduneld / Cardunel [uncertain day-36 variant], Valenth Caerdunel, Valenthide, Valententhide, Valententide / Vallententide [uncertain historical/art reference]. - [The Mother](people/the-mother.md): The Mother, Mother. -- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, The Choking Death, The whispers in the dark, Mother of many. +- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, Perodika, The Choking Death, The whispers in the dark, Mother of many. - [Basilisk / Busalish](people/basilisk-busalish.md): Basilisk, Basaluk, Basalisk, Busalish, Busalish's guild. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. @@ -51,7 +54,7 @@ sources: - [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md): Noctus Cairinium Grimoire, Noch's Caardium, weird skin book, creepy book. - [The Thornhollows Family](people/thornhollows-family.md): Annabel/Annabella, Isabelle/Isabella, Clarabella/Clara bella/Cleara. - [Dunnersend](places/dunnersend.md): Dunnersend, Dunesend, Dunesend State, Dunesmead, Dunnen, Dunengend [uncertain related place], Dunend [uncertain spelling]. -- [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md): Rimewatch, Ice prison, Iceblus's prison, Iceland's prison, Howling Tombs. +- [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md): Rimewatch, Ice prison, Iceblus's prison, Iceland's prison, Howling Tombs, Rimewock prison. - [Lortesh](people/lortesh.md): Lortesh, Kortesh Gravesings, Hortekh, Uncle Hortekh, The Twisted. - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md): Xinquiss, Xinqus, Xinquss, Zinquiss. - [Morgana](people/morgana.md): Morgana. @@ -59,7 +62,7 @@ sources: - [Astraywoo](people/astraywoo.md): Astraywoo, athruygon? [uncertain]. - [Luth](people/luth.md): Luth. - [Freeport Auction Lots](items/freeport-auction-lots.md): auction house items, Freeport auction house lots. -- [Lady Hearthwill](people/lady-hearthwill.md): Lady Hearthwill, Hearthwill, Lady Hearthwall, Lady Harthwall, Lady Harthwall [uncertain same as Hearthwill]. +- [Lady Hearthwill](people/lady-hearthwill.md): Lady Hearthwill, Hearthwill, Lady Hearthwall, Lady Harthwall, Lady Harthall, Harthall, Lady Harthwall [uncertain same as Hearthwill]. - [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md): Lady R. Beauchamp?!?, Lady R. Beauchamp. - [The Freeport Baroness](people/freeport-baroness.md): Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. - [Lady Thorpe](people/lady-thorpe.md): Lady Thorpe, false Lady Thorpe, llama impostor. @@ -68,3 +71,21 @@ sources: - [Hearthwall Auction Lots](items/hearthwall-auction-lots.md): Hearthwall auction, Harthwall auction, Grand Auction House lots, Browning's scroll, Firefang, Smulty box, Ray of sorting and stirring, bracelet of locating. - [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): Goldenswell prison network, off-the-books prisoners, memory grubs, ear pupae, ear grubs, large grubs attached to ear canals. - [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scrambleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Barrett, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. +- [Brookville Springs](places/brookville-springs.md): Brookville Springs, Bridge Statue, Statue of Bridge, Hazy Days. +- [Bridget's Doors](concepts/bridgets-doors.md): Bridget, Bridge, Bridget / Bridge, Bridge Statue, Statue of Bridge, Bridget's door travel. +- [Grand Towers](places/grand-towers.md): Grand Towers, Grand Tower, Grand Towers passage, Grand Towers boardroom, floor 74 private mage area. +- [Dollarmen](factions/dollarmen.md): Dollarmen, Dollarmans, Dollarmen assassins, Dollarmans assassins. +- [Wrath](people/wrath.md): Wrath, fake Ruby Eye, red-skinned tiefling. +- [Icefang](people/icefang.md): Icefang, Ice Fang, elderly gentleman in the mental palace. +- [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md): gods' bargains, barrier bargains, Noxia's terms, Otasha's unborn nerfili baby bargain, Leptrop workaround. +- [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md): Jelly Fish Broach, Jelly Fish Brooch, Scorpion, Snowlee, Jelly Fish, Ant. +- [Valenthielles Prison](places/valenthielles-prison.md): Valenthielles prison, Valenthielle's prison. +- [Highden Fell](places/highden-fell.md): Highden Fell, Highden. +- [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md): Coalmont Falls, Calcmont, Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Dull Peake, !Asmoorade!, Domain of Anthrosite. +- [Azureside and Heartmoor](places/azureside-heartmoor.md): Azureside, Heartmoor, Firevine, Cheery & Cherry, Cheery & cherry, Saphire Shores. +- [Snake Slayers](items/snake-slayers.md): Snake Slayers, the crossbow. +- [Searu's Arrow](items/searus-arrow.md): Searu's Arrow, Searu's arrows, Searu's staff. +- [Searu](people/searu.md): Searu, old lady / settlement leader, Savannah settlement leader. +- [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md): Seneshell, [uncertain: Morrowred], Mercy, Sopparra, Briker / Magi, Terry, Metallics, Incara, Arik Bellburn, Grol, Arile, Otasha, Ennik, Leptrop, Sheriff Fathrabit, Lady Fat Rabbit, Andy [uncertain: Kallamar?], Lucas, Heamon, Mama Harthall, Laura, Sevor-ice, Scurry, Granny, Lady Coke, Captain Briarthorn, Gary, Shep, Soot, Tirar, Valentenhide / Valentinhide, Kasher, Lord Bleakstorm, Provita, Justicarus, [Mathwall], Lady Lyraine, Jin Woo, Hydrath, Hanner, Derek, Nelkish, Anthrosite, Rumplky, [strils], Sir [uncertain: Counting Fibo], Poison Dragon, Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat, Paralitha, Tim Anderson, Barry, Ulfarun, Gnoll Longfang, Frilleshanks, Jerome, Joel, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born, Longfury, Grinan, Hayes, Aurouze, Godmount. +- [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md): Huthnall, Claymeadow, Bellburn, Stone Rampart, Rellport, Bleakstorm, Riversmeet, Sunset Vista, Azurescale, Calcmont, Pinespring, PineSprings, monastery, Rimewock prison, Three Full Moons, Threeleigh, Donly, Savannah hunters' encampment, Aire, Emmeraine, Hearthsmoor, Galdenseell, Trade Smells. +- [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md): shell of [uncertain: Tremoon], crystal shell, lucky cyclops eye, Gideone chair, inverse hammer, Bok, Bosh, Godmount pills, bracelet of locating, cracked copper spheres, moonshine vodka. diff --git a/data/6-wiki/clues/days-36-70-71-coverage-audit.md b/data/6-wiki/clues/days-36-70-71-coverage-audit.md new file mode 100644 index 0000000..284f8ef --- /dev/null +++ b/data/6-wiki/clues/days-36-70-71-coverage-audit.md @@ -0,0 +1,35 @@ +--- +title: Days 36, 70, and 71 Coverage Audit +type: coverage audit +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md +--- + +# Days 36, 70, and 71 Coverage Audit + +Every subject in each cleaned day's `People, Factions, and Places Mentioned`, `Items, Rewards, and Resources`, and `Clues, Mysteries, and Open Threads` sections was assigned an explicit outcome. + +## Standalone Pages Created + +- [Dollarmen](../factions/dollarmen.md), [Brookville Springs](../places/brookville-springs.md), [Grand Towers](../places/grand-towers.md), [Bridget's Doors](../concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md), [Wrath](../people/wrath.md), [Icefang](../people/icefang.md), [Valenthielles Prison](../places/valenthielles-prison.md), [Highden Fell](../places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md), [Azureside and Heartmoor](../places/azureside-heartmoor.md), [Snake Slayers](../items/snake-slayers.md), [Searu's Arrow](../items/searus-arrow.md), and [Searu](../people/searu.md). + +## Existing Pages Updated or Used + +- [Barrier](../concepts/barrier.md), [Excellences](../concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), [Edward Browning](../people/edward-browning.md), [Garadwal](../people/garadwal.md), [Lady Hearthwill](../people/lady-hearthwill.md), [Peridita](../people/peridita.md), [The Pact](../factions/the-pact.md), [Underbelly](../factions/underbelly.md), [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md), [Basilisk / Busalish](../people/basilisk-busalish.md), [Valenth Cardonald](../people/valenth-cardonald.md), [Envoi](../people/envoi.md), [The Mother](../people/the-mother.md), [Party Inventory](../inventories/party-inventory.md), [Party Treasury](../inventories/party-treasury.md), [NPC Status](../people/status.md), [Known Passwords and Inscriptions](known-passwords-and-inscriptions.md), [Open Threads](../open-threads.md), [Timeline](../timeline.md), [Aliases](../aliases.md), and [Sources](../sources.md). + +## Rollups Used + +- [Minor Figures from Days 36, 70, and 71](../people/minor-figures-days-36-70-71.md) covers one-off NPCs, uncertain names, local leaders, messengers, animals, killed attackers, and supporting named figures. +- [Minor Places from Days 36, 70, and 71](../places/minor-places-days-36-70-71.md) covers minor locations, rooms, inns, route points, settlements, and uncertain place names. +- [Minor Items from Days 36, 70, and 71](../items/minor-items-days-36-70-71.md) covers specific minor objects, payments, offerings, spell effects, codes, samples, resources, and tools. + +## Ambiguous Merges Preserved + +- Seneshell on `day-36` was not merged with Mr Seneshell / snake-bodied boss from `day-35`. +- Carduneld / Cardunel was not silently merged with Valenth Cardonald beyond alias/search coverage. +- Envi in Coalmont Falls was not silently merged with Envoi despite existing alias overlap. +- Perodika is treated as likely related to Peridita because titles match, but the variant remains explicit. +- Poison Dragon, female lake monstrosity, lithe veridian dragon, toothless/no-lip dragon, little dragon, and black smoke dragon were not merged with Peridita. +- Sir [uncertain: Counting Fibo], [unclear] Cezzerliksygh, and [unclear] Neutron to chitra Entoldust Darkness Born retain uncertain names. diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 6070f4e..3dc4470 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -1,7 +1,7 @@ --- title: Known Passwords and Inscriptions type: stateful clues -last_updated: day-35 +last_updated: day-71 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -16,6 +16,9 @@ sources: - data/4-days-cleaned/day-22.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # Known Passwords and Inscriptions @@ -34,6 +37,9 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Baroness's circle and safe code | known to Baroness, not recorded | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) said the code works while the defences are up. | | `Thurtall!!` | possible teleport carpet trigger | `data/4-days-cleaned/day-17.md` | Shouted as a gargoyle rolled out a carpet with a teleport rune; whether it is a formal command word is not explicit. | | `Bun` | TJ's name for the dome | `data/4-days-cleaned/day-35.md` | TJ Biggins called the dome the `Bun` after Dirk explained it using a bun. | +| The Guilt's chest disarm code | known to chest users, not recorded | `data/4-days-cleaned/day-36.md` | Seneshell showed The Guilt inside a dangerous chest like the one in Envy's lab; it was dangerous when armed and had a code to disarm it. | +| `Burial` | Wrath imprisonment command | `data/4-days-cleaned/day-36.md` | Wrath, impersonating Ruby Eye, shouted `Burial` while imprisoning Harthwall with a silver dragon statue. | +| `winter roses` | Coalmont Falls door phrase | `data/4-days-cleaned/day-36.md` | Hanner said `winter roses` at the door in the underwater facility, and it came to life. | ## Inscriptions, Labels, Symbols, and Coded Phrases @@ -64,6 +70,12 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Serenity stone absence | `data/4-days-cleaned/day-35.md` | Bluemeadows militia-like man did not have a serenity stone. | | Pride, Lust, greed, wrath, envy, gluttony, sloth | `data/4-days-cleaned/day-35.md` | Side note near Lady Envy and dome information; relevance unresolved. | | `3 paws - Beauchamp` | `data/4-days-cleaned/day-35.md` | Note recorded after Lady Katherine Cole woke; meaning unclear. | +| Bridget statue green / red / yellow eye-glows | `data/4-days-cleaned/day-36.md` | Grand Towers pennies caused different colors and door travel; exact mapping unknown. | +| Black snowflake tabards and black snowflakes | `data/4-days-cleaned/day-36.md` | Seen in Grand Towers vision and Coalmont Falls weather/scoop. | +| Five runes in a pentagram around a twenty-foot statue | `data/4-days-cleaned/day-36.md` | Underwater chamber associated with !Asmoorade! at Coalmont Falls. | +| Ticking rune door | `data/4-days-cleaned/day-36.md` | Door in freshly cut Coalmont facility corridor; would not open normally. | +| `My Child` | `data/4-days-cleaned/day-36.md` | Icefang said this while passing Harthall during the frost-dragon intervention. | +| `all of the Pacts are off` | `data/4-days-cleaned/day-71.md` | Perodika / green smoke dragon declaration while possessing people. | ## Riddles and Layout Clues @@ -89,3 +101,5 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Freeport auction | mother-of-pearl elemental chariot to be sold in 7 days | `data/4-days-cleaned/day-22.md` | | Hearthwall auction | Grand Auction House auction occurred around 2 pm; `11:00` also noted | `data/4-days-cleaned/day-32.md` | | Seaward Barrier flickers | began 2-3 weeks earlier, increasing, random, longest 3 seconds, clustered around 9 am, none around midnight, moving horizontally toward pylon | `data/4-days-cleaned/day-12.md` | +| Azureside evacuation | evacuation would take about half a day | `data/4-days-cleaned/day-71.md` | +| Perodika influence range | light returned to normal around ten miles away | `data/4-days-cleaned/day-71.md` | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index 976b701..112e109 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -6,7 +6,7 @@ aliases: - dome - containment system first_seen: day-01 -last_updated: day-35 +last_updated: day-71 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-04.md @@ -31,6 +31,8 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-71.md --- # Barrier @@ -53,6 +55,9 @@ The Barrier is the central protective shield, dome, or containment system around - Day 32 records the Tri-moon visible during the day, 16 hours ahead of expected schedule, while the Barrier looked normal and the small chunk was visible. - Day 32 skull lore says Ruby Eye's skull had influence over the Barrier and could bend it. - Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said Lady Envy's sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. +- Day 36 reveals divine bargain terms behind the Barrier: Bridget gave a way in, Noxia's terms involved trinkets and barrier sickness, Otasha received unborn nerfili babies across the race, and Browning/Ennik made many deals Harthwall did not know about. +- Ruby Eye and Wrath both wanted the shell of [uncertain: Tremoon] because it helped people get in and out of the Barrier. +- Day 71 reports four towers springing out of the ground around [Grand Towers](../places/grand-towers.md), making a new Barrier, while the party did not think they should bring the wider Barrier down. ## Timeline @@ -69,6 +74,8 @@ The Barrier is the central protective shield, dome, or containment system around - `day-30`: Salinay is sealed, Barrier energy is depleted, and Valententhide is named as the cause. - `day-32`: The Tri-moon appears in daylight ahead of schedule, daylight shows it as a crystal, and the Barrier seems normal. - `day-35`: The Barrier thickens and pulls while prisoner carts move, and outside-dome accounts describe a sand dome keeping elementals out. +- `day-36`: The Barrier's divine bargains, hidden costs, shell-passage tools, and multiple prison/facility interactions become clearer. +- `day-71`: Four new towers create a new Barrier around Grand Towers during a wider regional crisis. ## Related Entries @@ -77,6 +84,8 @@ The Barrier is the central protective shield, dome, or containment system around - [Shield Crystals](../items/shield-crystals.md) - [Tri-moon Shard](../items/tri-moon-shard.md) - [Barrier Observatory](../places/barrier-observatory.md) +- [Gods' Bargains Behind the Barrier](gods-bargains-behind-the-barrier.md) +- [Grand Towers](../places/grand-towers.md) ## Open Questions @@ -85,3 +94,5 @@ The Barrier is the central protective shield, dome, or containment system around - What are the eight beings or poles? - Can Grand Towers controls be reset safely while The Guilt, Galatrayer, and the overseer remain uncertain? - Are the Barrier, sand dome, and `Bun` different names for one system or overlapping shields? +- Can the divine bargains be renegotiated without worsening infertility, barrier sickness, or prisoner exploitation? +- What is the strategic consequence of the new Grand Towers Barrier? diff --git a/data/6-wiki/concepts/bridgets-doors.md b/data/6-wiki/concepts/bridgets-doors.md new file mode 100644 index 0000000..6989928 --- /dev/null +++ b/data/6-wiki/concepts/bridgets-doors.md @@ -0,0 +1,38 @@ +--- +title: Bridget's Doors +type: concept +aliases: + - Bridget / Bridge + - Bridge + - Statue of Bridge + - Bridge Statue + - Bridget's door travel +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Bridget's Doors + +## Summary + +Bridget is connected to freedom, luck, gargoyles, trickery, sacred doors, and door-based travel that responds to Grand Towers pennies with colored eye-glows. + +## Known Details + +- Notes connect Bridget to a Seaward temple where people take bets, as a god of freedom, luck, gargoyles, and trickery. +- Bellburn goliaths treated doors as sacred to Bridget and believed Bridget freed them from Envy by sending the party from the dome. +- A Grand Towers penny placed on Bridget's statue made her eyes glow green, then red, and sent Dirk to Seaward and apparently back to yesterday. +- Geldrin's two pennies made Bridget's eyes glow green and yellow, sending the group through a blue-and-white palace-like reception room outside the dome before a later door route returned them to Brookville Springs. + +## Related Entries + +- [Brookville Springs](../places/brookville-springs.md) +- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) + +## Open Questions + +- What do Bridget's green, red, and yellow eye-glows mean? +- Do Grand Towers pennies control destination, time displacement, cost, or risk? +- Can Bridget's doors reliably enter or leave the dome? diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 3bef7ca..280b97d 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -9,7 +9,7 @@ aliases: - The Guilt - Treamen first_seen: day-17 -last_updated: day-35 +last_updated: day-36 sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-19.md @@ -23,6 +23,7 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md --- # Excellences @@ -48,6 +49,8 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - A Hearthwall auction chariot was linked to an Excellence defeated in the `battle of the unending seas`. - Day 35 council-memory manipulation made rescued prisoners forget that The Guilt was part of the council and distrust him. - A Day 35 side note listed Pride, Lust, greed, wrath, envy, gluttony, and sloth near Lady Envy and dome information; the relationship to Excellences is unresolved. +- Day 36 states The Guilt was an Avatar of Pride, Pride had been eaten by [Garadwal](../people/garadwal.md), Pride was a dark entity who wanted people to be proud, and Pride tried to disable as much as possible before being consumed. +- Day 36 introduces [Wrath](../people/wrath.md), who described Wrath, Pride, Envy, and six others as nine little demons of Darkness; whether these are Excellences remains unresolved. ## Timeline @@ -62,6 +65,7 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - `day-31`: The Brass City leader Excellence and Treamen the Earth Excellence are killed or defeated. - `day-32`: Auction history links a chariot to an Excellence defeated in the `battle of the unending seas`. - `day-35`: Memory grubs erase council members' memories of The Guilt's membership. +- `day-36`: Seneshell explains The Guilt's relationship to Pride, Garadwal's consumption of Pride, and Wrath's nine-demon Darkness framework. ## Related Entries @@ -80,3 +84,4 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - Why did The Guilt require five party members or expect there should be five? - Who wants The Guilt removed from council memory? - Is Lady Envy part of an Excellence/sin-title pattern, or a separate llamia leader? +- Are the nine little demons of Darkness the same taxonomy as Excellences, a rival taxonomy, or overlapping titles? diff --git a/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md new file mode 100644 index 0000000..ae84c43 --- /dev/null +++ b/data/6-wiki/concepts/gods-bargains-behind-the-barrier.md @@ -0,0 +1,43 @@ +--- +title: Gods' Bargains Behind the Barrier +type: concept +aliases: + - gods' bargains + - barrier bargains + - Noxia's terms + - Otasha's unborn nerfili baby bargain + - Leptrop workaround +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Gods' Bargains Behind the Barrier + +## Summary + +Day 36 revealed that the Barrier depended on multiple bargains with gods, each apparently requiring a favour, communication to priests, and a boon, with severe hidden costs. + +## Known Details + +- Bridget gave a way in. +- Noxia's terms involved trinkets and barrier sickness caused by living near or touching the Barrier. +- Otasha received unborn nerfili babies across the whole race, though the Barrier seemed to reduce this slightly. +- The god of Darkness was worked around by making him the god Leptrop. +- Ennik and Browning made many of the deals. +- Harthwall did not know about half the deals made. +- Ruby Eye and Carduneld discussed renegotiating some deals, breaking the inferlite curse, and addressing Barrier damage. + +## Related Entries + +- [Barrier](barrier.md) +- [Grand Towers](../places/grand-towers.md) +- [Bridget's Doors](bridgets-doors.md) +- [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) + +## Open Questions + +- What were all twelve divine terms? +- Which terms are still enforceable, which have been bypassed, and which can be renegotiated? +- Are infertility, barrier sickness, nerfili babies, and inferlite curse all results of these bargains? diff --git a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md index 2a06cf1..f65fb5b 100644 --- a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md +++ b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md @@ -8,10 +8,11 @@ aliases: - ear pupae - ear grubs first_seen: day-32 -last_updated: day-35 +last_updated: day-36 sources: - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md --- # Goldenswell Prison Network and Memory Grubs @@ -32,6 +33,8 @@ The Goldenswell prison operation was an off-the-books detention and prisoner-tra - Rescued council members had dried blood, eardrum injuries, deafness, and a pupa or large grub lodged in an ear canal. - Removing and killing Lady Cole's grub restored her memories, ended the feeling that she was being watched, and revealed that affected prisoners had forgotten The Guilt was a council member and had been told not to trust him. - Lady Yadreya Egrine recognized the grubs from the menagerie, where experimental creatures had been going missing. +- Day 36 showed a memory in which a dark elf dropped an ear grub into [Icefang](../people/icefang.md)'s ear during a mage-table dispute with Browning, implying the same or similar memory-control method affected ancient wizard decisions. +- Ruby Eye and Icefang's memories had both been tampered with; the dark elf may have been from Envy's apprentice. ## Related Entries @@ -50,3 +53,4 @@ The Goldenswell prison operation was an off-the-books detention and prisoner-tra - Who used the grubs to erase The Guilt from council memory and turn council members against him? - Did the menagerie supply the grubs, lose them, or investigate them after the fact? - What happened to the remaining prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and the still-unidentified cells? +- Who else among the old wizards or dragons had memories altered by ear-grub-like intervention? diff --git a/data/6-wiki/factions/dollarmen.md b/data/6-wiki/factions/dollarmen.md new file mode 100644 index 0000000..a6ab52b --- /dev/null +++ b/data/6-wiki/factions/dollarmen.md @@ -0,0 +1,42 @@ +--- +title: Dollarmen +type: faction +aliases: + - Dollarmans + - Dollarmen assassins +first_seen: day-36 +last_updated: day-70 +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md +--- + +# Dollarmen + +## Summary + +The Dollarmen, also written Dollarmans, are assassins or organized raiders encountered near Brookville Springs and later in Azureside. + +## Known Details + +- On `day-36`, a half-orc and human female near Brookville Springs identified themselves as Dollarmans, assassins. They seemed to want a fight but were under orders not to. +- On `day-70`, Dollarmen operated through the Cheery & Cherry in Azureside, stole dragon offerings, used local henchmen, and were tied to a black-eyed snake-bottom boss with animal-themed rings. +- The Azureside boss mentioned the Council with Mercy from Brookville Springs but claimed he worked for nobody. +- Ulfarun became next in command after the boss died, and Gnoll Longfang immediately tried to stab Ulfarun in the back. + +## Timeline + +- `day-36`: Dollarmans appear outside Brookville Springs under unknown orders. +- `day-70`: The party defeats the Azureside Dollarmen boss at the Cheery & Cherry and leaves Ulfarun as next in command after internal violence. + +## Related Entries + +- [Brookville Springs](../places/brookville-springs.md) +- [Azureside and Heartmoor](../places/azureside-heartmoor.md) +- [Minor Figures from Days 36, 70, and 71](../people/minor-figures-days-36-70-71.md) + +## Open Questions + +- Who gave the Brookville Springs Dollarmans orders not to fight? +- What is the Council with Mercy from Brookville Springs, and how does it relate to Dollarmen hierarchy? +- Are the venom-themed weapons, rings, and snake-bottom boss tied to the Poison Dragon or Peridita? diff --git a/data/6-wiki/factions/the-pact.md b/data/6-wiki/factions/the-pact.md index 9b76400..7cf606f 100644 --- a/data/6-wiki/factions/the-pact.md +++ b/data/6-wiki/factions/the-pact.md @@ -4,7 +4,7 @@ type: faction aliases: - Pact first_seen: day-16 -last_updated: day-26 +last_updated: day-71 sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-17.md @@ -12,6 +12,8 @@ sources: - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # The Pact @@ -32,6 +34,9 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - After saving Baytail Accord and the Hatchery, the party became known as `Saviours of the Pact`. - The Pact has a route outside the Barrier; leaders believe a birth curse exists outside or around the Barrier and that the Barrier protects them from it. - Baytail Accord's first baby girl in 20 years was born after the crisis, with Princess Aquana present. +- Day 70 confirms Alana as the Pact leader at Azureside / Heartmoor while Carl was absent and the guild was trying to run town affairs. +- Day 71 mentions the Pact Keeper and a matriarch no one had seen leave her domain, immediately before Perodika declared all Pacts off. +- The party guided Azureside evacuation and coordinated messages with Basalisk, Cardonald, and Rubyeye while the Pacts appeared under direct attack. ## Timeline @@ -41,6 +46,8 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - `day-21`: Pact forces coordinate for the shield crystal mission. - `day-23`: Merfolk diplomatic and beyond-Barrier Pact context expands the Pact's geography. - `day-26`: The party saves Baytail Accord, joins Pact leaders, and learns about birth records, outside routes, and regional reports. +- `day-70`: Alana and the guild try to run Heartmoor/Azureside amid plague and dragon-payment pressure. +- `day-71`: Perodika declares all Pacts off, threatening every town and forcing evacuation toward Threeleigh. ## Related Entries @@ -56,3 +63,4 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - What are the legal or magical limits of Pact authority? - What is the birth curse, and why did births inside the Barrier recently stop? - What does the glowing parchment under glass at Baytail Accord preserve or enforce? +- What are the Pact Keeper and matriarch's exact powers, and can Perodika truly void all Pacts? diff --git a/data/6-wiki/factions/underbelly.md b/data/6-wiki/factions/underbelly.md index 8cab964..26c4b3b 100644 --- a/data/6-wiki/factions/underbelly.md +++ b/data/6-wiki/factions/underbelly.md @@ -2,10 +2,11 @@ title: Underbelly type: faction first_seen: day-14 -last_updated: day-32 +last_updated: day-36 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md --- # Underbelly @@ -21,6 +22,8 @@ The Underbelly is an underground faction or community near Seaward's salt dragon - They were trying to free the salt dragon. - Associated figures include a black dragonborn boss and old gnome guide. - Day 32 shows Baytail imprisoned in Goldenswell and accused as head of the Underbelly. +- Day 36 in Highden says the Underbelly was getting back on track now that Lady Coke was back; Granny, an old gnoll liaison, and Scurry, a Highden lizardfolk courier, were the only two to trust. +- Highden was described as a wreck where troops had taken over the inn and the place `never sees the sun`. ## Timeline diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index 7b3a7b6..20b80c5 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -1,7 +1,7 @@ --- title: Party Inventory type: stateful inventory -last_updated: day-35 +last_updated: day-71 sources: - data/4-days-cleaned/day-03.md - data/4-days-cleaned/day-05.md @@ -15,6 +15,9 @@ sources: - data/4-days-cleaned/day-22.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # Party Inventory @@ -43,6 +46,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Jin-Loo's ring | party | `day-32` | `data/4-days-cleaned/day-32.md` | Eroll returned with a ring, and Jin-Loo appeared next to the party; the party kept the ring so Jin-Loo could find them again. | | Silver serpent pendant talisman | party | `day-35` | `data/4-days-cleaned/day-35.md` | Found on the snake-bodied boss; magical talisman described as +1 cleric cash rolls [unclear] with Noxia catch spells. | | Bob's shell | party | `day-35` | `data/4-days-cleaned/day-35.md` | Given by Skum when he appeared to rescue Elementarium. | +| Snowflake coin | narrator / party | `day-36` | `data/4-days-cleaned/day-36.md` | Lord Bleakstorm gave a one-use portal coin to Bleakstorm. | ## No Longer Held or Transferred @@ -66,6 +70,9 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Huntmaster aid | promised | `data/4-days-cleaned/day-20.md` | Huntmaster Thrune agreed to provide aid against the Excellence. | | Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | Basilisk was arranging contact in Fairshaws or Freeport carrying Winter Rose. | | Mother-of-pearl elemental chariot auction | possibly occurred, identity uncertain | `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it; a chariot at the Hearthwall auction was tied to an Excellence and taken to the Palace, but identity with the mother-of-pearl chariot is not confirmed. | +| Jelly Fish Broach retrieval | promised attempt | `data/4-days-cleaned/day-36.md` | Mercy's contractor wanted the party to retrieve it from Grand Towers floor 74 for a female buyer outside the Barrier. | +| Free Icefang's ice elemental | promised to water elementals | `data/4-days-cleaned/day-36.md` | Water elementals required this before helping with dragon flames. | +| Peridot Queen aid | offered through Basalisk | `data/4-days-cleaned/day-71.md` | Aid is explicitly self-interested and conditional. | ## Unclear Custody or Status @@ -82,3 +89,12 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Mother-of-pearl elemental chariot | `day-22` | `data/4-days-cleaned/day-22.md` | Party took it back, but sale is pending and the chained water elementals' desired outcome is unclear. | | Bangle attached to prisoner cart | `day-35` | `data/4-days-cleaned/day-35.md` | The party used invisibility to attach a bangle to the prisoner cart; exact function is not stated. | | Ear pupae / memory grubs | `day-35` | `data/4-days-cleaned/day-35.md` | Removed from rescued prisoners' ear canals; killing Lady Cole's grub restored memories and ended the watched feeling. | +| Shell of [uncertain: Tremoon] / crystal shell | `day-36` | `data/4-days-cleaned/day-36.md` | Left at Harthwall; Ruby Eye and Wrath wanted it because it helped passage through the Barrier. | +| Lucky cyclops eye | `day-36` | `data/4-days-cleaned/day-36.md` | Rubbed near The Guilt's dangerous chest but did not go anywhere. | +| Dirk's rod for speaking with water elementals | `day-36` | `data/4-days-cleaned/day-36.md` | Used at the river to negotiate help against dragon flames; current custody not restated. | +| Black dragon book from Ruby Eye's lab | `day-36` | `data/4-days-cleaned/day-36.md` | Held by skeletal dragon; words spoken from it were not understood. | +| Bok and Bosh | `day-70` | `data/4-days-cleaned/day-70.md` | Two blackjack clubs made from scorpion leather and jellyfish tendril cords; notes say they felt amazing and hard to stop using. | +| Snake Slayers / crossbow | `day-70`, `day-71` | `data/4-days-cleaned/day-70.md`, `data/4-days-cleaned/day-71.md` | Frilleshanks streamlined Snake Slayers; a crossbow in a wooden chest was later taken by Bosh, identity uncertain. | +| Bracelet of locating | `day-71` | `data/4-days-cleaned/day-71.md` | Given to Errol for Dirk's dad; Errol reported no bracelet halfway from Sunset Vista to Azureside. | +| Searu's Arrow | `day-71` | `data/4-days-cleaned/day-71.md` | +2 spear/arrow with once-per-day auto-critical and possible three-hit slaying effect; holder not explicit. | +| Godmount pills | `day-71` | `data/4-days-cleaned/day-71.md` | Basalisk said they might help, with note `he's an idiot`; not confirmed received. | diff --git a/data/6-wiki/inventories/party-treasury.md b/data/6-wiki/inventories/party-treasury.md index 9d84ca1..0cef0e9 100644 --- a/data/6-wiki/inventories/party-treasury.md +++ b/data/6-wiki/inventories/party-treasury.md @@ -1,7 +1,7 @@ --- title: Party Treasury type: stateful treasury -last_updated: day-35 +last_updated: day-36 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -17,6 +17,7 @@ sources: - data/4-days-cleaned/day-22.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md --- # Party Treasury @@ -44,6 +45,9 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 50 platinum pieces plus returned money, with 1 platinum down payment | `day-32` | `data/4-days-cleaned/day-32.md` | Offered or paid to the Goldenswell captain as a bribe to rescue prisoners and get him out of the city. | | One further platinum to the captain | `day-35` | `data/4-days-cleaned/day-35.md` | Paid for getting the party this far during the prisoner-cart operation. | | Coins handed to guards and back-gate bribe attempt | `day-35` | `data/4-days-cleaned/day-35.md` | Used to support the drill cover story and entry attempt. | +| 25 platinum | `day-36` | `data/4-days-cleaned/day-36.md` | Paid to the captain after Newgate's gargoyle delivered the Claymeadow message. | +| Greasing guards' palms | `day-36` | `data/4-days-cleaned/day-36.md` | Paid or bribed guards to see Seneshell; amount not recorded. | +| Grand Towers penny and two pennies | `day-36` | `data/4-days-cleaned/day-36.md` | Offered to Bridget's statue, causing colored eye-glows and door travel. | ## Promised, Offered, or Pending @@ -67,3 +71,4 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 50 platinum | `day-12` | `data/4-days-cleaned/day-12.md` | Isabella's gargoyle dropped a bag before flying off with her; later custody unclear. | | `50 per 200g` | `day-15` | `data/4-days-cleaned/day-15.md` | Downpayment phrase preserved as uncertain. | | 150 gp if fight / 5 gp if not | `day-19` | `data/4-days-cleaned/day-19.md` | Possible ship-fight arrangement; unclear or superseded by the 400 gp Kairbidius reward. | +| Random copper piece around Bridge Statue | `day-36` | `data/4-days-cleaned/day-36.md` | Observed about five feet around the statue; not clearly party money. | diff --git a/data/6-wiki/items/grand-towers-bargain-trinkets.md b/data/6-wiki/items/grand-towers-bargain-trinkets.md new file mode 100644 index 0000000..8b1ac2e --- /dev/null +++ b/data/6-wiki/items/grand-towers-bargain-trinkets.md @@ -0,0 +1,41 @@ +--- +title: Grand Towers Bargain Trinkets +type: item set +aliases: + - Jelly Fish Broach + - Jelly Fish Brooch + - Scorpion + - Snowlee + - Jelly Fish + - Ant +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Grand Towers Bargain Trinkets + +## Summary + +The Grand Towers bargain trinkets are named objects seen in orb visions and connected to divine bargains, Noxia's terms, and Mercy's request for a Jelly Fish Broach from the 74th floor private mage area. + +## Known Details + +- Mercy's contractor wanted the Jelly Fish Broach from the private mage area on the 74th floor of Grand Towers. +- The buyer was described as a female outside the Barrier who was not the party's current mutual antagonist. +- A Grand Towers boardroom vision showed trinkets in front of the wizards, including Scorpion, Snowlee, Jelly Fish, Ant, and others. +- Ruby Eye later said the trinkets were part of one of the bargains and should not be much use now. +- Noxia's terms involved the trinkets and barrier sickness. + +## Related Entries + +- [Grand Towers](../places/grand-towers.md) +- [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) +- [Party Inventory](../inventories/party-inventory.md) + +## Open Questions + +- Who is the female buyer outside the Barrier? +- What did each named trinket do, and are they truly no longer useful? +- Did the party ever retrieve the Jelly Fish Broach? diff --git a/data/6-wiki/items/minor-items-days-36-70-71.md b/data/6-wiki/items/minor-items-days-36-70-71.md new file mode 100644 index 0000000..8ecf6e1 --- /dev/null +++ b/data/6-wiki/items/minor-items-days-36-70-71.md @@ -0,0 +1,34 @@ +--- +title: Minor Items from Days 36, 70, and 71 +type: items rollup +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md +--- + +# Minor Items from Days 36, 70, and 71 + +| Item or resource | Context | Outcome | +|---|---|---| +| Random copper piece at Bridge Statue | Offering or loose coin near Bridget statue. | Party Treasury / [Bridget's Doors](../concepts/bridgets-doors.md). | +| 25 platinum paid to captain; greased palms; Grand Towers pennies | Day-36 payments and offerings. | [Party Treasury](../inventories/party-treasury.md). | +| Mage's ring, Newgate's gargoyle, broken Bird, Terry, lucky cyclops eye, teleport circles, obsidian ravens, stealth ravens, sending stone, pulley lift, merfolk lodge | Transport and communication resources. | Inventory/status/open threads. | +| The Guilt's dangerous chest and disarm code | Chest like Envy's lab; code exists but not recorded. | [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Shell of [uncertain: Tremoon] / crystal shell | At Harthwall; desired by Ruby Eye and Wrath for Barrier passage. | [Party Inventory](../inventories/party-inventory.md), open thread. | +| Jelly Fish Broach, Scorpion, Snowlee, Jelly Fish, Ant | Bargain trinkets. | [Grand Towers Bargain Trinkets](grand-towers-bargain-trinkets.md). | +| Ruby Eye's lab orbs, memory orbs, Gideone chair | Grand Towers vision devices. | [Grand Towers](../places/grand-towers.md). | +| Silver dragon statue, Seaward stone maces, inverse hammer | Bellburn / Wrath battle objects. | [Wrath](../people/wrath.md), rollup/open thread. | +| Heamon's skull, prison symbols, trapped peephole | Valenthielles prison objects/hazards. | [Valenthielles Prison](../places/valenthielles-prison.md). | +| White Rune-like saltwater sensation, brain-tickle visions, Dirk's rod, dead ear grub, black dragon book from Ruby Eye's lab | Highden battle clues/resources. | Inventory/open threads/memory-grub page. | +| Snowflake coin | One-use portal to Bleakstorm. | [Party Inventory](../inventories/party-inventory.md). | +| Steam-powered mine carts, black water sample, black sediment, alien-material obsidian archway, ancient Dull Peake sign, five runes in a pentagram, ticking-rune door, upright hand on plinth, Envi tube, purple cores | Coalmont Falls / !Asmoorade! facility details. | [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md), [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md). | +| Abandoned bushels, dragon offerings/payments, seaweed stone, contagious magically linked plague concoction, fireball, two shoes | Azureside plague and attack details. | [Azureside and Heartmoor](../places/azureside-heartmoor.md) / rollup. | +| Bok and Bosh | Blackjack clubs made from scorpion leather and jellyfish tendril cords. | [Party Inventory](../inventories/party-inventory.md) unclear custody. | +| Door guard armour, boss's snake/wasp/jellyfish/scorpion rings, Geldrin's skin book, cards | Dollarmen clues/resources. | [Dollarmen](../factions/dollarmen.md), open thread. | +| Crossbow / Snake Slayers | Frilleshanks streamlined it; Bosh later took a crossbow from a chest. | [Snake Slayers](snake-slayers.md). | +| Bracelet of locating | Given to Errol for Dirk's dad; no bracelet found. | [Party Inventory](../inventories/party-inventory.md), open thread. | +| Moonshine vodka and cracked copper spheres | Cheery & Cherry explosion; assumed fire elemental release. | Open thread / rollup. | +| Wooden chest and crossbow taken by Bosh | Found upstairs at Cheery & Cherry. | [Snake Slayers](snake-slayers.md), inventory uncertainty. | +| Searu's staff / Searu's Arrow | +2 spear/arrow with critical/slaying effect. | [Searu's Arrow](searus-arrow.md). | +| Morgana's pigeon to the crows, Godmount pills, cracked eggshells in dream | Communication, possible medicine, dream clue. | Rollup/open threads. | diff --git a/data/6-wiki/items/searus-arrow.md b/data/6-wiki/items/searus-arrow.md new file mode 100644 index 0000000..f49cc3a --- /dev/null +++ b/data/6-wiki/items/searus-arrow.md @@ -0,0 +1,35 @@ +--- +title: Searu's Arrow +type: magic weapon +aliases: + - Searu's Arrow + - Searu's arrows + - Searu's staff +first_seen: day-71 +last_updated: day-71 +sources: + - data/4-days-cleaned/day-71.md +--- + +# Searu's Arrow + +## Summary + +Searu's Arrow is a +2 spear or arrow-like weapon produced when the old settlement leader transformed to Searu and her staff changed. + +## Known Details + +- Searu's Arrow was described as a +2 spear. +- Once per day, it can turn an attack roll into an automatic critical hit. +- If all three strikes hit a target in consecutive rounds, the target is slain; whether `all 3` means arrows, strikes, or spear attacks is uncertain. +- The arrows returned to the fire place. + +## Related Entries + +- [Searu](../people/searu.md) +- [Party Inventory](../inventories/party-inventory.md) + +## Open Questions + +- Who currently holds Searu's Arrow? +- What are the exact mechanics of the `all 3` consecutive-hit death effect? diff --git a/data/6-wiki/items/snake-slayers.md b/data/6-wiki/items/snake-slayers.md new file mode 100644 index 0000000..e851c63 --- /dev/null +++ b/data/6-wiki/items/snake-slayers.md @@ -0,0 +1,34 @@ +--- +title: Snake Slayers +type: weapon or siege tool +aliases: + - Snake Slayers + - the crossbow +first_seen: day-70 +last_updated: day-71 +sources: + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md +--- + +# Snake Slayers + +## Summary + +Snake Slayers is a crossbow or anti-dragon weapon that Frilleshanks helped streamline in Azureside, with Joel expected to help operate it. + +## Known Details + +- On `day-70`, Dirt and Alana sought help with the crossbow, and Frilleshanks helped Geldrin streamline `Snake Slayers`. +- Frilleshanks's apprentice Joel, a dwarf, would help operate it. +- On `day-71`, a wooden chest under an upstairs desk at the Cheery & Cherry contained a crossbow that Bosh took; whether this was Snake Slayers is not confirmed. + +## Related Entries + +- [Azureside and Heartmoor](../places/azureside-heartmoor.md) +- [Party Inventory](../inventories/party-inventory.md) + +## Open Questions + +- Is the crossbow Bosh took the same as Snake Slayers? +- How does Snake Slayers work against the dragon threat? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 28e9f40..0eeb3e7 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -33,6 +33,9 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # Open Threads @@ -86,3 +89,24 @@ sources: - What is [TJ Biggins](people/tj-biggins.md)'s outside-dome context: Plantation of Newt [unclear] Vain, Lady Envy's sand dome, Loose Teeth, greenscale family, Blackscales tribute, Bumblebeers, Bleakshrouvers, mining, fire and earth raids, and paid entry into the dome? - What happened at Lady Yadreya Egrine's menagerie, and who stole the experimental creatures later recognized as memory grubs? - What does Morgana's forced-feeling kiss vision of a laughing female dragon, possibly the Peridot Queen, mean for Elementarium's green eyes and the silver dragon man who cast a spell on him? +- What caused the [Brookville Springs](places/brookville-springs.md) purple explosions, vanished leader, and Claymeadow's broken Bird / Newgate doppel crisis? +- Are [Pride](concepts/excellences.md), [The Guilt](concepts/excellences.md), [Wrath](people/wrath.md), Envy, and the other six little demons of Darkness Excellences, demons, gods' tools, or overlapping titles? +- What is the shell of [uncertain: Tremoon], why do Ruby Eye and Wrath want it, and is it safe at Harthwall? +- Who is the female outside the Barrier who wants the [Jelly Fish Broach](items/grand-towers-bargain-trinkets.md), and what are Scorpion, Snowlee, Jelly Fish, and Ant? +- How do [Bridget's Doors](concepts/bridgets-doors.md) decide destination, eye color, time displacement, and cost from Grand Towers pennies? +- Who tampered with Ruby Eye's and [Icefang](people/icefang.md)'s memories using ear grubs, and was the dark elf from Envy's apprentice? +- Can the [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md) be renegotiated without worsening barrier sickness, nerfili infertility, or divine claims? +- What did the recent visitors remove from [Valenthielles Prison](places/valenthielles-prison.md), and what is the Joy-like dark female figure? +- Who is the skull-throne woman who accepted Garadwal for Soot, and what claim did she already have on Soot? +- What is destabilizing [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), and what happened to Envi, Rumplky, the purple-cored automatons, the upright hand, and Garaduel? +- What caused Heartmoor's contagious magically linked plague, Azureside's diseased land, and the venomous female lake figure: the Poison Dragon, Perodika, Dollarmen, dragons, or another force? +- What hierarchy sent the [Dollarmen](factions/dollarmen.md) boss to the `easy town`, and what is the Council with Mercy from Brookville Springs? +- What exactly are [Snake Slayers](items/snake-slayers.md), and is Bosh's crossbow the same weapon? +- Are Perodika, [Peridita](people/peridita.md), the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother dragon one being, related beings, or separate threats? +- What is the day-71 blocker that interfered with messages and teleportation, and does it share range or source with Perodika's ten-mile smoke influence? +- What happened to Aurouze and his two companions after the Savannah hunt? +- What trapped ally, corruptions, and Goliath resistance did [Searu](people/searu.md)'s flame vision point toward while the dragon was away? +- What are the simultaneous day-71 crises at Emmeraine, Dunnensend, Hearthsmoor, Snow Sorrow, PineSprings, and Grand Towers, and are they coordinated? +- What price or betrayal risk comes with the Peridot Queen's aid through Basalisk? +- What do the four new towers and new Barrier around [Grand Towers](places/grand-towers.md) mean for the party's decision not to bring the wider Barrier down? +- What caused the narrator's cracked-eggshell dragon dream and temporary mental-stat disadvantage? diff --git a/data/6-wiki/people/basilisk-busalish.md b/data/6-wiki/people/basilisk-busalish.md index dad2d9f..5f3d08a 100644 --- a/data/6-wiki/people/basilisk-busalish.md +++ b/data/6-wiki/people/basilisk-busalish.md @@ -7,7 +7,7 @@ aliases: - Basalisk - Busalish first_seen: day-23 -last_updated: day-32 +last_updated: day-71 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md @@ -15,6 +15,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-71.md --- # Basilisk / Busalish @@ -33,6 +35,9 @@ Basilisk, Basaluk, Basalisk, or Busalish is a recurring contact who receives par - Day 32 records the party asking Busalish for guild help to check prisons while searching for Lady Thorpe. - Busalish's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` - The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. +- On Day 36, the party sent Basilisk a note about current events from Highden. +- On Day 71, Basalisk could not teleport to the party because of a blocker, wanted to meet in Donly or Sunset Vista, reported crises at Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Snow Sorrow, PineSprings, and missing Perens, and said the Peridot Queen had contracted him to lend aid while acting for herself. +- Basalisk planned to meet the Peridot Queen by Trade Smells and get Cardonald to take the party back to the army. ## Related Entries diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index af2be26..336c0b7 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,7 +5,7 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-32 +last_updated: day-36 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md @@ -17,6 +17,7 @@ sources: - data/4-days-cleaned/day-28.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md --- # Brutor Ruby Eye @@ -38,6 +39,9 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - On day 30 Cardenald resurrected him from the skull; Rubyeye returned with glowing red eyes, made a beard, and helped gather Counterspell scrolls and orbs. - On Day 32, Geldrin attuned to the skull and saw visions of Valententide, dragon fights, 629 AD, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, the Mother crater, Condennis Place, an underground dwarven city, the molten prison, Goldenswell prisoners, and a ruined Goliath City. - The skull was linked to ascension to godhood, the daytime Tri-moon event, influence over the Barrier, and the ability to show visions, crush foes, let him pass, and smite foes only when nearby. +- On Day 36, Ruby Eye appeared still convalescing, travelled in the party's bag, and wanted the crystal shell / shell of [uncertain: Tremoon] because it helped with passage through the Barrier. +- Day 36 revealed Ruby Eye's pact with [Wrath](wrath.md), made after he saw how much power Browning had through Pride; Ruby Eye later shouted Wrath back into his eye. +- Ruby Eye explained that the Grand Towers trinkets were part of a bargain, that gods required favours, priest communication, and boons, and that Ennik and Browning made many deals. ## Timeline @@ -50,6 +54,7 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - `day-25`: Rubyeye's prison-status readout becomes relevant to Rimewatch and the Ice prison. - `day-28`: Rubyeye explains Grand Towers and prison-control architecture. - `day-30`: Cardenald resurrects Rubyeye, and he resumes active support. +- `day-36`: Ruby Eye returns to Grand Towers and Harthwall-related crises, explains bargain lore, and is revealed to have been entangled with Wrath. ## Related Entries diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md index 2fb2e7a..b3ab447 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/edward-browning.md @@ -4,7 +4,7 @@ type: person aliases: - Browning first_seen: day-23 -last_updated: day-32 +last_updated: day-71 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md @@ -12,6 +12,8 @@ sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-71.md --- # Edward Browning @@ -30,6 +32,9 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Day 31 includes Browning's scroll at auction, which produces a new random spell each morning at 2:37. - Day 32 gives more detail on Browning's scroll: Geldrin tried to inspect arcane writing and cast Dispel Magic, making the words disappear; the scroll generated a new random spell every morning at 2:37, was valued at 600 gp, and sold for 6,200 gp. - Browning / Skutey Galvin was wanted for impersonating a Justicar, but the notes do not establish whether Skutey Galvin is Browning, an alias, or a separate impersonator. +- Day 36 Grand Towers visions show Browning with Pride's power, wanting the biggest tower and to be the greatest wizard of all time, trapping Garadwal downstairs, making Ruby Eye obey him, activating a device that made Harthwall disappear, and contacting a giant green dragon to help get rid of his husband. +- Day 36 memory tampering showed Icefang shouting at Browning before a dark elf dropped a grub in Icefang's ear. +- Day 71 reports four towers springing out of the ground around Grand Towers and making a new Barrier; Browning's responsibility is not confirmed but remains highly relevant. ## Related Entries @@ -44,3 +49,5 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - What exactly did Browning and Ennui find or build under Grand Towers? - What was the peace treaty tied to clearing fishes from the Barrier? - Who is Skutey Galvin, and what was the Justicar impersonation? +- What bargain did Browning make with Pride, and did he engineer Pride's consumption by Garadwal? +- Did Browning cause or exploit the new four-tower Barrier around Grand Towers? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index 2bda35a..84841c0 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -8,8 +8,10 @@ aliases: - Gardolwal - Terror of the Sands - nightmare of the darkness + - Garadwel + - Garaduel first_seen: day-01 -last_updated: day-29 +last_updated: day-36 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-06.md @@ -21,6 +23,7 @@ sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-36.md --- # Garadwal @@ -42,6 +45,10 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Infestus appeared in a dream sending Garadwal through a portal with a coin; another dream showed abnormal dragons near Garadwal's prison and a void voice asking `where is he I know you know`. - Garadwal moved through Blackscale, returned to the dome, and attacked Baytail Accord before teleporting away. - Dunnersend lore says Excellence protected the vultures after Gardwal failed, while Goliaths once asked Excellence for help trapping his brother. +- Day 36 says Garadwal ate Pride, leaving The Guilt unconscious and triggering Pride's attempted disabling of systems before consumption. +- Grand Towers orb lore says Garadwal was locked downstairs, heard a chair-guy through his greater gravel children, and walked into Browning's trap. +- Geldrin offered Garadwal to the pale skull-throne woman in exchange for dispelling dragon magic from Soot. +- At Coalmont Falls, an automaton introduced himself as Garaduel before activating recall protocol; this spelling is preserved as a possible variant or separate automaton identity. ## Timeline @@ -54,6 +61,7 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-25`: Rimewatch warnings describe dragons plotting to breathe the Terror of the Sands out of her prison. - `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadwal moving actively. - `day-29`: Excellence says he protected the vultures after Gardwal failed, and his brother was apparently looking for him. +- `day-36`: Garadwal is tied to Pride's consumption, Browning's Grand Towers trap, Geldrin's skull-throne bargain, and the Garaduel automaton variant. ## Related Entries diff --git a/data/6-wiki/people/icefang.md b/data/6-wiki/people/icefang.md new file mode 100644 index 0000000..3ea62e8 --- /dev/null +++ b/data/6-wiki/people/icefang.md @@ -0,0 +1,40 @@ +--- +title: Icefang +type: dragon or person +aliases: + - Ice Fang + - elderly gentleman in the mental palace +first_seen: day-25 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-36.md +--- + +# Icefang + +## Summary + +Icefang is a frost dragon or dragon figure connected to Rimewatch, memory tampering, Ruby Eye's orbs, Harthall, and the battle near Highden. + +## Known Details + +- A Grand Towers orb showed Icefang in human form in a snow-covered room while others said the paysoil would not work without him and that they could not let him be entombed under snow. +- During a mental meeting, Icefang appeared as an elderly gentleman and showed a memory of shouting at Browning before a dark elf dropped an ear grub into his ear. +- Icefang said he never would have dropped a rope, was glad to be sane before the end, and said the party needed to right the wrongs. +- He said the Barrier was a good thing but too many sacrifices had been made. +- In the Highden battle, a massive frost dragon burst from a black hole, seized the skeletal dragon, called Harthall `My Child`, crashed through the Barrier, and was retrieved by a water elemental. +- Cardunel planned to bury Icefang near Snow Sorrow. + +## Related Entries + +- [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Edward Browning](edward-browning.md) +- [Lady Hearthwill](lady-hearthwill.md) + +## Open Questions + +- Who ordered or carried out Icefang's memory tampering? +- What was the `paysoil`, and why would it not work without Icefang? +- What is Icefang's exact family relationship to Harthall? diff --git a/data/6-wiki/people/lady-hearthwill.md b/data/6-wiki/people/lady-hearthwill.md index c3e38b6..6c6defd 100644 --- a/data/6-wiki/people/lady-hearthwill.md +++ b/data/6-wiki/people/lady-hearthwill.md @@ -3,11 +3,16 @@ title: Lady Hearthwill type: person aliases: - Hearthwill + - Lady Hearthwall + - Lady Harthwall + - Lady Harthall + - Harthall first_seen: day-30 -last_updated: day-32 +last_updated: day-36 sources: - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md --- # Lady Hearthwill @@ -25,6 +30,10 @@ Lady Hearthwill, possibly the same person as Lady Hearthwall / Lady Harthwall, i - Lady Harthwall wanted to see the party after the false Lady Thorpe incident; doctors were making an antidote while she suffered great pain from a condition that seemed like magical poison or a religious curse, possibly Noxia. - Lady Harthwall had noticed that Lady Thorpe had not visited as much as expected, but had not realized her wife or partner had been replaced. - Eroll was used to send a message to Lady Harthwall after the Goldenswell rescue. +- On Day 36, Wrath impersonating Ruby Eye imprisoned Harthwall with a silver dragon statue, then later claimed to remove the curse while lying about full recovery. +- Harthwall transformed in the courtyard and was slightly bigger than the Peridot Queen. +- Harthwall's Raven had exploded, and several explosions occurred across her city. +- Harthall later fought at Highden, saw a vision of her mother buried and trapped by tiny red creatures, and learned Icefang called her `My Child`; she did not know who her father was. ## Related Entries @@ -38,3 +47,4 @@ Lady Hearthwill, possibly the same person as Lady Hearthwall / Lady Harthwall, i - Is Lady Hearthwill the same person as Lady Hearthwall / Lady Harthwall, or are these separate Hearthwall nobles? - Which front was she fighting on, and what authority does she hold over the anti-giant response? - Was her poison or curse part of the same operation that abducted Lady Thorpe? +- What is Harthall's true parentage, and is Icefang her father? diff --git a/data/6-wiki/people/minor-figures-days-36-70-71.md b/data/6-wiki/people/minor-figures-days-36-70-71.md new file mode 100644 index 0000000..ee1d3a4 --- /dev/null +++ b/data/6-wiki/people/minor-figures-days-36-70-71.md @@ -0,0 +1,80 @@ +--- +title: Minor Figures from Days 36, 70, and 71 +type: people rollup +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md +--- + +# Minor Figures from Days 36, 70, and 71 + +This rollup keeps one-off, uncertain, and supporting named figures searchable without creating placeholder pages. + +## Day 36 + +| Figure | Context | Outcome | +|---|---|---| +| Skum, Elementarium, Lady Thorpe, rescuees, Huthnall | Rescue aftermath; rescuees were sent to Huthnall to remove Lady Thorpe's ear worm. | Status rollup; Lady Thorpe has an existing page. | +| Lady Newgate's sister, Newgate's gargoyle, Newgate doppel/imposter, broken Bird | Claymeadow transport/contact thread. | Rollup and open thread. | +| Peridot Queen | Not seen by Elementarium for about a month; day-71 aid later came through Basalisk. | NPC Status / open thread. | +| Lead human and pigeon by the main building | Pigeon reported the lead human gone after explosions. | Rollup. | +| Captain paid 25 platinum | Ran toward Brookville Springs after payment. | Party Treasury and rollup. | +| Seneshell | Ran Hazy Days; explained Pride, The Guilt, and Grand Towers. Possibly distinct from day-35 Mr Seneshell. | Rollup; unresolved merge preserved. | +| The Guilt and Pride | The Guilt was Avatar of Pride; Pride was eaten by Garadwal. | [Excellences](../concepts/excellences.md). | +| [uncertain: Morrowred] | Said to have sold out the leaders. | Rollup; uncertain. | +| Mercy / Sopparra | Brookville Springs contact; Sopparra identified with Mercy. | [Brookville Springs](../places/brookville-springs.md) and rollup. | +| Briker / Magi | Tattooed female sparrow aarakocra in Seneshell's hall. | Rollup; uncertain variants. | +| Half-orc and human female potion sellers | Dollarmans assassins near Brookville Springs. | [Dollarmen](../factions/dollarmen.md). | +| Terry, Metallics, Incara | Obsidian bird, owner/associate, and infertility warning sender. | Rollup and open thread. | +| Half-elf with rounded ears / Drunken Duck barkeep | Came to Mercy's place and asked for Jelly Fish Broach favour. | [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) and rollup. | +| Human in snowy room, man from auction/private pictures, black snowflake guards | Grand Towers / Icefang vision figures. | [Grand Towers](../places/grand-towers.md), [Icefang](icefang.md). | +| Gazzy and Gideone | Chair / old-man Grand Towers vision details. | Rollup. | +| Arik Bellburn | Bridget clergyman in Bellburn. | Rollup and [Bridget's Doors](../concepts/bridgets-doors.md). | +| Grol | Found Dirk in Seaward after door travel. | Rollup. | +| Noxia, Arile, Otasha, Ennik, Leptrop | Divine bargain figures. | [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md). | +| Sheriff Fathrabit / Lady Fat Rabbit / Lady [rabbit] | Harthwall/Hearthwall authority and envoy references. | Rollup; variant preserved. | +| The Mother, little tiefling girl, odd creatures, betrayer | Valenthielles-side scrying/fight. | Existing [The Mother](the-mother.md), NPC Status, rollup. | +| Carduneld / Cardunel | Worked with Ruby Eye, planned Icefang burial; identity with Valenth/Cardonald uncertain. | Alias/open thread; not silently merged. | +| Brother Fracture and Andy [uncertain: Kallamar?] | Bazaar/front-line contacts. | Status / rollup. | +| Lucas and Heamon | Prison-door and skull details. | Rollup. | +| Mama Harthall | Suggested future contact. | Rollup; identity uncertain. | +| Highden priest, Earl, Laura, Sevor-ice | Highden contacts and odd frog/Sevor-ice moment. | Rollup. | +| Scurry, Granny, Lady Coke | Highden Underbelly contacts. | [Underbelly](../factions/underbelly.md) and status. | +| Gerald, Captain Briarthorn, Gary, Shep | Highden / Three Full Moons figures. | [Highden Fell](../places/highden-fell.md) and rollup. | +| Soot, pale skull-throne woman, Tirar | Highden battle and visions. | NPC Status and open threads. | +| Valentenhide / Valentinhide, Kasher | Void elemental bargain terms. | Open thread and rollup. | +| Lord Bleakstorm, Provita | Dead outside-dome messenger and birth-vision reference. | Inventory / rollup. | +| Justicarus | Geldrin planned to free by posing as Grand Towers medical team. | Open thread. | +| [Mathwall], Lady Lyraine, Dirk's father, Jin Woo, Hydrath | War coordination, teleport, statue references. | Rollup. | +| Hanner, Derek, Nelkish, Anthrosite, Envi, Rumplky, [strils] | Coalmont Falls / !Asmoorade! facility figures. | [Coalmont Falls and !Asmoorade! Prison](../places/coalmont-falls-and-asmoorade-prison.md). | + +## Day 70 + +| Figure | Context | Outcome | +|---|---|---| +| Sir [uncertain: Counting Fibo] | Supposed to remove the pit made against the merfolk. | Open thread; uncertain alias. | +| Poison Dragon | Morgana connected plagued Azureside earth to this dragon. | Open thread; not merged with Peridita. | +| Alana and Carl | Pact leader and absent town authority around Heartmoor. | [The Pact](../factions/the-pact.md), [Azureside and Heartmoor](../places/azureside-heartmoor.md). | +| Greysock Soulspindle, Ahlabre / Alizabesh Azure, Captain Spratt / Sprat | Azureside town hall figures. | Rollup/status. | +| Paralitha | Had not seen plague like this. | Rollup. | +| Female figure above the lake | Scorpion-tail, snake-head monstrosity. | Open thread; not merged. | +| Half-elf wizard, dragonborn rogue, pigeon aarakocra rogue | Dead bell-tower attackers. | NPC Status. | +| Tim Anderson and Barry | Subdued henchmen. | NPC Status / rollup. | +| Door guard, dwarf guarding stairs, black-eyed snake-bottom boss, Ulfarun, Gnoll Longfang | Cheery & Cherry Dollarmen hierarchy. | [Dollarmen](../factions/dollarmen.md) and NPC Status. | +| Frilleshanks, Jerome, Joel | Jeweler, innkeep, apprentice tied to Snake Slayers and Saphire Shores. | [Snake Slayers](../items/snake-slayers.md), rollup. | + +## Day 71 + +| Figure | Context | Outcome | +|---|---|---| +| Lithe veridian-hued dragon, toothless / no-lip dragon, little dragon, black smoke dragon | Dragons at Azureside before battle. | [Peridita](peridita.md) open question; not merged. | +| Ticking female, Inkysvagh the Horror, [unclear] Cezzerliksygh, [unclear] Neutron to chitra Entoldust Darkness Born | Battle figures, escaped or killed. | NPC Status and open thread. | +| Revived dwarf and jeweller reincarnated as halfling | Post-battle changed figures. | NPC Status. | +| Longfury | Gnoll who took charge at Cheery & Cherry and taunted dragon. | NPC Status / rollup. | +| Pact Keeper and matriarch | Domain/Pacts thread; matriarch never seen leaving. | [The Pact](../factions/the-pact.md) and open thread. | +| Perodika | Green smoke dragon, Choking Death, Mother of many. | [Peridita](peridita.md), with variant preserved. | +| Basalisk, Cardonald, Rubyeye, Dirk's dad | Messaging and teleportation coordination. | Existing pages/status. | +| Grinan, Hayes, Aurouze and two companions | Savannah settlement contact, dog, and missing hunters. | Status / open thread. | +| Old lady / settlement leader / Searu | Flame vision and Searu's Arrow. | [Searu](searu.md). | +| Father at Dunnensend, Hearthsmoor fisherman, interested party, Peridot Queen, Godmount | Regional crisis and aid report figures. | Rollup/open threads. | diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index 2868474..2277deb 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -4,15 +4,18 @@ type: dragon or person aliases: - Perodita - Perodetta + - Perodika - The Choking Death - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-35 +last_updated: day-71 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # Peridita @@ -28,6 +31,8 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Day 26 says Perodita's new mate was Kortesh Gravesings, also her son, called `The Twisted`. - Azureside records tied Green Dragons to the destruction of the Goliaths and lack of contact for about 900 years. - On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. +- Day 70 records Azureside plagued earth that Morgana connected to the Poison Dragon, a female scorpion-tail and snake-head monstrosity over the lake, and dragon payment demands involving a dark-smoke dragon and a two-headed dragon; these are not confirmed as Peridita. +- Day 71 names Perodika in the context of a thirty-foot beautiful green-scaled smoke dragon that possessed people, declared all Pacts off, called itself `the choking death` and `the mother of many`, threatened every town, and had about a ten-mile influence range. ## Related Entries @@ -40,3 +45,4 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Is Peridita the `mother` from the old warning, or could that refer to Duncan's mage? - What is her exact relationship to Lortesh / Kortesh Gravesings and the Green Dragons? - Is the laughing female dragon / Peridot Queen vision connected to Peridita, or is it a separate dragon figure? +- Are Perodika, Peridita, the Poison Dragon, the black smoke dragon, the toothless/no-lip dragon, and the dream mother one being, relatives, or separate dragon forces? diff --git a/data/6-wiki/people/searu.md b/data/6-wiki/people/searu.md new file mode 100644 index 0000000..878de3d --- /dev/null +++ b/data/6-wiki/people/searu.md @@ -0,0 +1,34 @@ +--- +title: Searu +type: person or divine figure +aliases: + - old lady / settlement leader + - Savannah settlement leader +first_seen: day-71 +last_updated: day-71 +sources: + - data/4-days-cleaned/day-71.md +--- + +# Searu + +## Summary + +Searu is the transformed identity or power of the old leader at the Savannah hunters' settlement who advised against a headlong attack on Perodika and revealed Searu's Arrow. + +## Known Details + +- The old lady or settlement leader had once attacked the dragon and had respected the dragon and her churches. +- She warned that those the dragon had wronged could be the party's greatest allies. +- A flame vision showed a tower, many green dragons, hundreds of Goliaths below, pain demanded by the dragon's mistress, Goliath resistance, and an opportunity to search while the dragon was away. +- She transformed to Searu, and her staff changed into one of Searu's arrows. + +## Related Entries + +- [Searu's Arrow](../items/searus-arrow.md) +- [Peridita](peridita.md) + +## Open Questions + +- Is Searu the leader's true identity, a divine form, or another power manifesting through her? +- What is Searu's relationship to the dragon's churches? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 00b76b4..468b565 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -1,7 +1,7 @@ --- title: NPC Status type: stateful people rollup -last_updated: day-35 +last_updated: day-71 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -29,6 +29,9 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # NPC Status @@ -56,6 +59,12 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Lady Katherine Neugate | rescued | `data/4-days-cleaned/day-35.md` | Captured for four days; affected by council memory manipulation. | | Lord [uncertain: Harmock] Hayes | rescued | `data/4-days-cleaned/day-35.md` | Rescued from prisoner cart; apparent council member. | | [Lady Yadreya Egrine](lady-yadreya-egrine.md) | rescued | `data/4-days-cleaned/day-35.md` | Baroness of Riversmeet; recognized the ear grubs from her menagerie. | +| Invar | curse memory partly restored | `data/4-days-cleaned/day-36.md` | Remembered he knew remove curse; bracelet fell off his wrist; still did not remember being kidnapped. | +| [Lady Hearthwill](lady-hearthwill.md) / Harthall | curse partly addressed, active in battle | `data/4-days-cleaned/day-36.md` | Wrath claimed she would recover in days but was lying; she transformed and later fought at Highden. | +| Arik Bellburn | injured then healed | `data/4-days-cleaned/day-36.md` | Bridget clergyman in Bellburn. | +| Greysock Soulspindle | reincarnated as elf | `data/4-days-cleaned/day-71.md` | Elderly gnome cobbler changed after battle; Captain Sprat fetched clothes. | +| Jeweller / Frilleshanks [uncertain same figure] | reincarnated as halfling | `data/4-days-cleaned/day-71.md` | Notes say the jeweller was reincarnated as a halfling; exact identity may be Frilleshanks but is not confirmed. | +| Joel / revived dwarf | revived, ran home | `data/4-days-cleaned/day-71.md` | Ticking female stabbed Joel through; after the fight the dwarf was revived. | ## Dead or Believed Dead @@ -76,6 +85,13 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Treamen | killed or defeated | `data/4-days-cleaned/day-31.md` | Earth Excellence whose jagged purple crystal skull artifact was recovered. | | Mr Seneshell / snake-bodied boss | killed | `data/4-days-cleaned/day-35.md` | Investigated the false drawer in white gloves, later transformed lower body into a snake and was killed by Geldrin's fireball. | | Llamia cart guards and external cart guards | killed | `data/4-days-cleaned/day-35.md` | Guards transformed into llamia during prisoner-cart battle; all bad guys were dead after the fight. | +| Pride | eaten by Garadwal | `data/4-days-cleaned/day-36.md` | Dark entity, boss of The Guilt; tried to disable as much as possible before consumption. | +| The betrayer | killed | `data/4-days-cleaned/day-36.md` | Killed in fight with mutated animals near Valenthielles prison; exact identity not stated. | +| Soot | bones scattered | `data/4-days-cleaned/day-36.md` | Skeletal dragon's flames vanished after Geldrin's skull-throne bargain; bones scattered. | +| Half-elf wizard, dragonborn rogue, pigeon aarakocra rogue | killed | `data/4-days-cleaned/day-70.md` | Bell-tower attackers in Azureside. | +| Black-eyed snake-bottom boss | killed | `data/4-days-cleaned/day-70.md` | Dollarmen boss at Cheery & Cherry, revealed by Moonbeam. | +| [unclear] Cezzerliksygh | killed | `data/4-days-cleaned/day-71.md` | Uncertain named battle figure. | +| [unclear] Neutron to chitra Entoldust Darkness Born | killed | `data/4-days-cleaned/day-71.md` | Uncertain named battle figure. | ## Missing, Disappeared, or Unresolved @@ -96,6 +112,13 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Cardencalde | unreachable by Eroll | `data/4-days-cleaned/day-32.md` | Did not answer direct contact, which was strange. | | Baytail | prisoner, accused head of Underbelly | `data/4-days-cleaned/day-32.md` | Seen in skull vision as a Goldenswell prisoner. | | Elementarium | rescued but altered/unresolved | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Imprisoned while an impostor appeared in town crier information; later rescued from prisoner cart and woke with green eyes. | +| Brookville Springs leader / lead human | vanished | `data/4-days-cleaned/day-36.md` | Missing on the bang night after purple explosions. | +| Newgate's sister and doppel/imposter | unresolved | `data/4-days-cleaned/day-36.md` | Claymeadow message reported Newgate's doppel/imposter in quarters and broken Bird. | +| The Guilt | unconscious in dangerous chest | `data/4-days-cleaned/day-36.md` | Avatar of Pride; condition tied to Pride being eaten by Garadwal. | +| Icefang | dead or dying, to be buried | `data/4-days-cleaned/day-36.md` | Returned as frost dragon, badly injured, retrieved by water elemental; Cardunel planned burial near Snow Sorrow. | +| Lord Bleakstorm | dead but active outside dome | `data/4-days-cleaned/day-36.md` | Delivered Icefang's message and gave snowflake coin; cannot remain inside dome long. | +| Aurouze and two companions | missing | `data/4-days-cleaned/day-71.md` | Hayes said they did not return from hunting, though the hunters with them did. | +| Snow Sorrow contacts and Perens | missing or unreachable | `data/4-days-cleaned/day-71.md` | Basalisk reported all contact lost with Snow Sorrow and Perens going missing. | ## Captive, Imprisoned, or Detained @@ -110,6 +133,9 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaws on the Earl's orders under treason accusations. | | [Silver](silver.md) | soul destroyed, construct taken over | `data/4-days-cleaned/day-23.md` | Dirk threw Silver into the Barrier, destroying the soul; Cardonal then took over the construct. | | Goldenswell off-the-books prisoners | captive or partly rescued | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Harthwall were identified; later transport rescue recovered several council members. | +| Harthwall | imprisoned then released/curse unresolved | `data/4-days-cleaned/day-36.md` | Wrath put her in the ground with imprisonment using a silver dragon statue. | +| Valenthielles | left in prison by recent visitors | `data/4-days-cleaned/day-36.md` | Dark prison entity said visitors cleaned up quickly and left Valenthielles there. | +| Icefang's ice elemental | imprisoned at Rimewock / Rimewatch | `data/4-days-cleaned/day-36.md` | Water elementals required the party to agree to free it. | ## Allies and Contacts @@ -128,6 +154,12 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadwal's location. | | [Morgana](morgana.md) | allied fifth party member | `data/4-days-cleaned/day-27.md`, `data/4-days-cleaned/day-28.md`, `data/4-days-cleaned/day-30.md` | Sent by The Chorus because visions went better with five party members; carries birds, heals, and can Polymorph. | | [Benu](benu.md) | Dunnersend ally | `data/4-days-cleaned/day-29.md`, `data/4-days-cleaned/day-30.md` | Helped secure support in wars to come, stayed to build a temple, could message Cardenald, and could create a hero's feast. | +| Granny and Scurry | trusted Underbelly contacts in Highden | `data/4-days-cleaned/day-36.md` | Granny was an old gnoll liaison; Scurry was a Highden lizardfolk courier. | +| Captain Briarthorn | Highden commander | `data/4-days-cleaned/day-36.md` | Moss couch elf captain of an elf hundred planning a river battle point. | +| Alana | Pact leader at Azureside / Heartmoor | `data/4-days-cleaned/day-70.md` | Ran matters with the guild while Carl was away. | +| Frilleshanks and Joel | Snake Slayers support | `data/4-days-cleaned/day-70.md` | Frilleshanks streamlined Snake Slayers; Joel would help operate it. | +| Ulfarun | remaining Dollarmen leader | `data/4-days-cleaned/day-70.md` | Became next in command after boss died; Gnoll Longfang tried to stab him. | +| Grinan, Hayes, and Searu's settlement | temporary allies/hosts | `data/4-days-cleaned/day-71.md` | Granted hospitality and advised seeking those wronged by the dragon. | ## Hostile or Dangerous @@ -144,3 +176,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Fairshaws/Fairport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | | [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | | Lady Envy | llamia boss | `data/4-days-cleaned/day-35.md` | Named by TJ Biggins as boss of the llamia; relation to Excellence/sin-title pattern unresolved. | +| [Wrath](wrath.md) | dangerous pact-bound demon | `data/4-days-cleaned/day-36.md` | Impersonated Ruby Eye, cursed dragons, imprisoned Harthwall, and was shouted back into Ruby Eye's eye. | +| [Dollarmen](../factions/dollarmen.md) | assassins / raiders | `data/4-days-cleaned/day-36.md`, `data/4-days-cleaned/day-70.md` | Appeared under orders near Brookville Springs and later controlled Cheery & Cherry operations in Azureside. | +| [Peridita](peridita.md) / Perodika | active regional dragon threat | `data/4-days-cleaned/day-71.md` | Beautiful green smoke dragon possessed people, declared all Pacts off, and threatened every town. | +| Inkysvagh the Horror | hostile or dangerous, escaped | `data/4-days-cleaned/day-71.md` | Ran off during the Azureside battle. | diff --git a/data/6-wiki/people/wrath.md b/data/6-wiki/people/wrath.md new file mode 100644 index 0000000..3a61eb4 --- /dev/null +++ b/data/6-wiki/people/wrath.md @@ -0,0 +1,41 @@ +--- +title: Wrath +type: person or demon +aliases: + - fake Ruby Eye + - red-skinned tiefling +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Wrath + +## Summary + +Wrath is one of nine little demons of Darkness, impersonated Ruby Eye, made a pact with Ruby Eye, cursed silver and black dragons, and imprisoned Harthwall. + +## Known Details + +- Wrath appeared as Ruby Eye until Morgana's moonbeam revealed a red-skinned tiefling. +- He cast imprisonment on Harthwall using a silver dragon statue and the command `Burial`. +- He had made a pact with Ruby Eye to help kill the black dragon and said it was his fault Harthwall was outside. +- Wrath was scared of Browning, who had teamed up with Pride. +- He cursed the silver and black dragons so they could not take human form. +- He wanted the shell of [uncertain: Tremoon] because he saw the wizards make it and it helped people get through the Barrier. +- Ruby Eye later shouted Wrath back into his eye. + +## Related Entries + +- [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Lady Hearthwill](lady-hearthwill.md) +- [Edward Browning](edward-browning.md) +- [Excellences](../concepts/excellences.md) +- [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) + +## Open Questions + +- What exactly is Wrath's pact with Ruby Eye, and how much control did Wrath have? +- Are Wrath, Pride, Envy, and the other six little demons Excellences or a separate Darkness hierarchy? +- Is Wrath still contained in Ruby Eye's eye? diff --git a/data/6-wiki/places/azureside-heartmoor.md b/data/6-wiki/places/azureside-heartmoor.md new file mode 100644 index 0000000..b04b47a --- /dev/null +++ b/data/6-wiki/places/azureside-heartmoor.md @@ -0,0 +1,48 @@ +--- +title: Azureside and Heartmoor +type: place +aliases: + - Azureside + - Heartmoor + - Firevine + - Cheery & Cherry + - Cheery & cherry + - Saphire Shores +first_seen: day-26 +last_updated: day-71 +sources: + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md +--- + +# Azureside and Heartmoor + +## Summary + +Azureside and nearby Heartmoor are Pact-linked settlements affected by diseased cherry trees, a contagious magically linked plague, dragon payment demands, Dollarmen thefts, and Perodika's smoke assault. + +## Known Details + +- Azureside has cherry orchards that looked diseased on `day-70`, with abandoned bushels and plagued earth Morgana connected to the Poison Dragon. +- Alana, Pact leader, said plague had overtaken Heartmoor after Carl left town; Alana and the guild were trying to run things. +- The cobbler's shop served as town hall, with Greysock Soulspindle, Ahlabre / Alizabesh Azure, and Captain Spratt present. +- A seaweed-stone temple was immune to dragon acid. +- The Cheery & Cherry was a dodgy pub used by Dollarmen and their black-eyed snake-bottom boss. +- On `day-71`, Azureside was evacuated toward Threeleigh after Perodika's smoke caused panic, possession, choking, woodlice, invisible-bug hallucinations, and a threat that all Pacts were off. + +## Related Entries + +- [The Pact](../factions/the-pact.md) +- [Dollarmen](../factions/dollarmen.md) +- [Peridita](../people/peridita.md) +- [Snake Slayers](../items/snake-slayers.md) +- [Searu's Arrow](../items/searus-arrow.md) + +## Open Questions + +- What caused the Heartmoor plague and Azureside land sickness? +- What is the payment arrangement with the dragons? +- What was the relationship between the Dollarmen, the Cheery & Cherry, the plague, and the cursed lands? +- What remains of Azureside after the evacuation? diff --git a/data/6-wiki/places/brookville-springs.md b/data/6-wiki/places/brookville-springs.md new file mode 100644 index 0000000..1547588 --- /dev/null +++ b/data/6-wiki/places/brookville-springs.md @@ -0,0 +1,40 @@ +--- +title: Brookville Springs +type: place +aliases: + - Bridge Statue + - Statue of Bridge +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Brookville Springs + +## Summary + +Brookville Springs is a town tied to Bridget's statue, Hazy Days, The Guilt, Seneshell, Mercy, Grand Towers access, and a wave of purple explosions after Pride was consumed by Garadwal. + +## Known Details + +- The Bridge Statue / Statue of Bridge stood outside town as a female-shaped statue with palms up; a copper piece lay nearby. +- On `day-36`, Brookville Springs was on high alert after purple explosions across human buildings, brothels, the guard house, possible golems, and at least one human. +- The town leader vanished on the bang night, and Geldrin found no golems in town. +- Hazy Days staff said The Guilt had disappeared on the night of the Trimoons; Seneshell was running the place. +- Seneshell revealed that Pride had been eaten by Garadwal, leaving The Guilt unconscious in a dangerous chest like one in Envy's lab. +- Mercy's place contained access to a Grand Towers passage and a favour tied to retrieving the Jelly Fish Broach. + +## Related Entries + +- [Grand Towers](grand-towers.md) +- [Excellences](../concepts/excellences.md) +- [Garadwal](../people/garadwal.md) +- [Dollarmen](../factions/dollarmen.md) +- [Bridget's Doors](../concepts/bridgets-doors.md) + +## Open Questions + +- What caused the purple explosions, and were the targets commanded to explode? +- What happened to the missing leader? +- What is the exact relationship between Mercy, Seneshell, The Guilt, Pride, and Grand Towers? diff --git a/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md new file mode 100644 index 0000000..45afdca --- /dev/null +++ b/data/6-wiki/places/coalmont-falls-and-asmoorade-prison.md @@ -0,0 +1,47 @@ +--- +title: Coalmont Falls and !Asmoorade! Prison +type: place +aliases: + - Coalmont Falls + - Calcmont + - Smokesblood Stout Brewery/Inn + - Fellspour & Prick Inn + - Dull Peake + - !Asmoorade! + - Domain of Anthrosite +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Coalmont Falls and !Asmoorade! Prison + +## Summary + +Coalmont Falls is a mining town where black water from a waterfall led the party toward an underwater prison or facility associated with !Asmoorade!, Anthrosite, Nelkish, Envi, purple-cored automatons, and Garaduel recall protocol. + +## Known Details + +- Coalmont Falls is a brown-green mining town with steam-powered mine carts; the waterfall turns black. +- Hanner said the black water had occurred for about one thousand years, once monthly but now twice daily, following a pattern of elemental schools of magic. +- Morgana sensed a large black six-armed creature shackled under the water, with chains leading into alien material and an obsidian archway. +- The underwater chamber had a twenty-foot statue with five runes in a pentagram and the name !Asmoorade!. +- A barrier trapped Morgana until she found a freshly cut stone corridor, ticking-rune door, giant black four-armed geyser figure, and revival chamber. +- Nelkish announced the Domain of Anthrosite, said he worked for Infestus, recognized the narrator as pure blood, and said Geldrin's wizard robes were part of an agreement. +- Envi in a tube of viscous fluid was released; an automaton introduced himself as Garaduel, activated recall protocol, and removed the automatons. + +## Related Entries + +- [Infestus](../people/infestus.md) +- [Garadwal](../people/garadwal.md) +- [Envoi](../people/envoi.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) + +## Open Questions + +- What is !Asmoorade!, and is it the six-armed prisoner, the statue, the prison, or a name invoked by the runes? +- Why has the black water frequency increased? +- What happened after Envi, the rings-seeking figure, purple-cored automatons, and Garaduel disappeared? +- What is the wizard agreement with Anthrosite and Infestus? diff --git a/data/6-wiki/places/grand-towers.md b/data/6-wiki/places/grand-towers.md new file mode 100644 index 0000000..7915125 --- /dev/null +++ b/data/6-wiki/places/grand-towers.md @@ -0,0 +1,47 @@ +--- +title: Grand Towers +type: place +aliases: + - Grand Tower + - Grand Towers passage + - Grand Towers boardroom +first_seen: day-16 +last_updated: day-71 +sources: + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-71.md +--- + +# Grand Towers + +## Summary + +Grand Towers is the central wizard-tower complex tied to the Barrier, Browning, Ruby Eye, Harthwall, wizard bargains, Grand Towers pennies, Grand Towers passages, and later the sudden rise of four new towers making a new barrier around the site. + +## Known Details + +- On `day-36`, Mercy led the party through a passage into Grand Towers, emerging through a broom cupboard and robe room. +- Floors 70 to 90 were schools of magic, floors 60 to 70 were storerooms and administration offices, floors 0 to 60 were apartments, and floor 74 held enchantment classes plus the private mage area where Mercy's contractor wanted the Jelly Fish Broach retrieved. +- Floor 65 contained a central pillar and shelves of memory orbs like Ruby Eye's lab. +- Orb visions showed Icefang in human form, black snowflake tabards, wizard bargain trinkets, Browning using Pride's power, Garadwal trapped downstairs, Harthwall disappearing after Browning activated a device, and Browning contacting a giant green dragon. +- Geldrin reached floor 98 and found Browning before alarms and golems forced the party to flee. +- On `day-71`, Basalisk reported that four towers had sprung out of the ground around Grand Towers, making a new barrier. + +## Related Entries + +- [Barrier](../concepts/barrier.md) +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) +- [Edward Browning](../people/edward-browning.md) +- [Gods' Bargains Behind the Barrier](../concepts/gods-bargains-behind-the-barrier.md) +- [Grand Towers Bargain Trinkets](../items/grand-towers-bargain-trinkets.md) + +## Open Questions + +- What exactly is Browning doing on or near floor 98? +- What do the new four towers around Grand Towers protect, trap, or power? +- Which Grand Towers systems are controlled by Browning, the wizards, Excellences, gods, automatons, or prisoners? diff --git a/data/6-wiki/places/highden-fell.md b/data/6-wiki/places/highden-fell.md new file mode 100644 index 0000000..ca5a8b2 --- /dev/null +++ b/data/6-wiki/places/highden-fell.md @@ -0,0 +1,40 @@ +--- +title: Highden Fell +type: place +aliases: + - Highden + - Highden Fell +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Highden Fell + +## Summary + +Highden Fell was a major battlefront on day 36, suffering crystal sickness, military retreat, false obsidian-raven messages, and attacks by tribesfolk, giants, and dragons. + +## Known Details + +- Priests treated people with blistering skin and internal-consumption crystal sickness. +- Highden Fell's armies had retreated to the firewise mountain's second level by 14:00. +- Captain Briarthorn commanded an elf hundred and planned to use the river as a battle point. +- The command had obsidian ravens whose replies falsely told troops not to support the cause. +- Harthall joined fully armored, and the party planned a forest ambush and fire to split large giants from the army. +- The battle involved giants, Harthall, a skeletal dragon with a book from Ruby Eye's lab, Soot, Icefang, water elementals, and Geldrin's bargain with the skull-throne woman. + +## Related Entries + +- [Icefang](../people/icefang.md) +- [Lady Hearthwill](../people/lady-hearthwill.md) +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Underbelly](../factions/underbelly.md) + +## Open Questions + +- What caused Highden's crystal sickness, and can time away from the city cure it? +- Who controlled the false obsidian-raven replies? +- Who is the skull-throne woman who took Soot and accepted Garadwal? diff --git a/data/6-wiki/places/minor-places-days-36-70-71.md b/data/6-wiki/places/minor-places-days-36-70-71.md new file mode 100644 index 0000000..ff44560 --- /dev/null +++ b/data/6-wiki/places/minor-places-days-36-70-71.md @@ -0,0 +1,38 @@ +--- +title: Minor Places from Days 36, 70, and 71 +type: places rollup +sources: + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md +--- + +# Minor Places from Days 36, 70, and 71 + +| Place | Context | Outcome | +|---|---|---| +| Huthnall | Rescuees' return destination. | Rollup. | +| Seaward betting temple of Bridget | Bridget temple where people take bets. | [Bridget's Doors](../concepts/bridgets-doors.md), existing [Seaward](seaward.md). | +| Claymeadow | Message reported explosions, Newgate doppel/imposter, broken Bird. | Open thread / rollup. | +| Hazy Days | Brookville Springs establishment run by Seneshell. | [Brookville Springs](brookville-springs.md). | +| Envy's lab | Dangerous chest comparison. | [Excellences](../concepts/excellences.md) / rollup. | +| Mercy's place, Drunken Duck, Grand Towers passage, broom cupboard, floor 65, floor 74, floor 98 | Grand Towers access route and sites. | [Brookville Springs](brookville-springs.md), [Grand Towers](grand-towers.md). | +| Bellburn, early Bridget-like church, Bellburn courtyard and tower | Outside-dome Bridget/goliath town and Harthwall fight area. | [Bridget's Doors](../concepts/bridgets-doors.md) / rollup. | +| Harthwall / Hearthwall castle gates and courtyard | Harthwall transformation and recovery. | [Lady Hearthwill](../people/lady-hearthwill.md). | +| Stone Rampart, pylon, bazaar | Day-36 war and travel points. | Rollup. | +| Valenthielles prison rooms | Seamless teleport room, middle door, dark corridor, smoky prison room. | [Valenthielles Prison](valenthielles-prison.md). | +| Cathedral, Earl's other foot, park between legs, inn taken by troops, river battle point, forest ambush site, mountain plume | Highden Fell sites. | [Highden Fell](highden-fell.md). | +| Three Full Moons | Inn where party met Gary and Shep. | Rollup. | +| Rimewock prison | Icefang's ice elemental prison. | [Rimewatch and the Ice Prison](rimewatch-ice-prison.md). | +| Mental palace room and dark cavern with skull throne | Icefang and Geldrin visions. | [Icefang](../people/icefang.md) / open thread. | +| Rellport, Bleakstorm, Snow Sorrow, Riversmeet, Sunset Vista | Vision, portal, burial, and war-coordination places. | Rollup/open threads. | +| Azurescale, Azureside cherry orchard, Calcmont, Coalmont Falls | Travel and black-water investigation route. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md), [Azureside and Heartmoor](azureside-heartmoor.md). | +| Smokesblood Stout Brewery/Inn, Fellspour & Prick Inn, Pinespring, monastery | Coalmont Falls services and nearby missing-logger/Zigglecog references. | Coalmont page / rollup. | +| Lake, underwater obsidian archway, Dull Peake, Domain of Anthrosite, underground chamber, underwater barrier, freshly cut stone corridor, ticking-rune door, geyser pit, Envi's circular room, merfolk lodge | Coalmont prison/facility sites. | [Coalmont Falls and !Asmoorade! Prison](coalmont-falls-and-asmoorade-prison.md). | +| Pit made against the merfolk | Dome-start pit Sir [uncertain: Counting Fibo] was supposed to remove. | Open thread / rollup. | +| Cobbler's shop / town hall, Firevine, town square, seaweed-stone temple, lake, bell tower, Cheery & Cherry, sewers, cursed lands, Saphire Shores | Azureside/Heartmoor day-70 sites. | [Azureside and Heartmoor](azureside-heartmoor.md), [Dollarmen](../factions/dollarmen.md). | +| Threeleigh, Donly, horizon of green shape, Aire | Evacuation and route after Perodika attack. | Open thread / rollup. | +| Savannah hunters' encampment and red-eyed settlement | Hospitality settlement where Searu appeared. | [Searu](../people/searu.md). | +| Tower in the flames and Goliath settlement below tower | Perodika/Searu vision location. | Open thread / rollup. | +| Emmeraine, Dunnensend, Hearthsmoor, Grand Towers, Galdenseell, Snow Sorrow, PineSprings, Trade Smells | Simultaneous crisis locations reported by Basalisk. | Open threads; existing pages where present. | +| Cave entrance in dream and fire place associated with Searu's Arrow | Dragon dream and Searu's Arrow return place. | [Searu's Arrow](../items/searus-arrow.md) / open thread. | diff --git a/data/6-wiki/places/rimewatch-ice-prison.md b/data/6-wiki/places/rimewatch-ice-prison.md index 5ad5c1f..664e314 100644 --- a/data/6-wiki/places/rimewatch-ice-prison.md +++ b/data/6-wiki/places/rimewatch-ice-prison.md @@ -7,11 +7,13 @@ aliases: - Iceblus's prison - Iceland's prison - Howling Tombs + - Rimewock prison first_seen: day-25 -last_updated: day-26 +last_updated: day-36 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-36.md --- # Rimewatch and the Ice Prison @@ -29,6 +31,7 @@ Rimewatch is an outpost around a pylon near the Ice prison, where storms, dragon - The prison entrance later appeared burst open, with a snow haunt, claw-torn tents, pale blue rocks, hollow rocks or possible eggs, and an ice-white eagle that killed Grubins. - Anrasurall, a robed Humein from Baytail Accord, tried to free someone with runes he was given; he said he got into the circle and fired out of the front before the bird killed him. - Six empty-seeming copper rune orbs were containment devices for elementals. +- On Day 36, water elementals required the party to agree to free Icefang's ice elemental in the prison at Rimewock / Rimewatch before they would help against dragon flames. ## Related Entries diff --git a/data/6-wiki/places/valenthielles-prison.md b/data/6-wiki/places/valenthielles-prison.md new file mode 100644 index 0000000..5fbbbce --- /dev/null +++ b/data/6-wiki/places/valenthielles-prison.md @@ -0,0 +1,39 @@ +--- +title: Valenthielles Prison +type: place +aliases: + - Valenthielles prison + - Valenthielle's prison +first_seen: day-36 +last_updated: day-36 +sources: + - data/4-days-cleaned/day-36.md +--- + +# Valenthielles Prison + +## Summary + +Valenthielles prison is a seamless-stone prison site near the Mother crater, containing Joy-like damaging darkness, trapped peepholes, smoke, prison symbols, and evidence of recent visitors. + +## Known Details + +- The teleport circle led to a twenty-foot-square seamless stone room with no doors until the party used a Grand Towers penny. +- A dark corridor contained thick Joy-like darkness that daylight pushed into a female shape. +- The female figure damaged those who turned around or touched it and asked to come with the party. +- A trapped peephole damaged Dirk. +- The smoky prison room contained floor symbols marking the prison and smoke suggesting an explosion. +- The entity said recent friendly visitors had cleaned up quickly, teleported outside the prison, and left Valenthielles there. + +## Related Entries + +- [Valenth Cardonald](../people/valenth-cardonald.md) +- [Joy](../people/joy.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [The Mother](../people/the-mother.md) + +## Open Questions + +- Who were the friendly visitors, and what did they clean up or remove? +- What is the female darkness figure? +- What is Valenthielles's current state after the visitors left? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 28f481c..3cda5db 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -33,6 +33,9 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # Sources @@ -69,6 +72,9 @@ sources: - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hearthwill](people/lady-hearthwill.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). - `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-36.md`: [Brookville Springs](places/brookville-springs.md), [Grand Towers](places/grand-towers.md), [Bridget's Doors](concepts/bridgets-doors.md), [Gods' Bargains Behind the Barrier](concepts/gods-bargains-behind-the-barrier.md), [Grand Towers Bargain Trinkets](items/grand-towers-bargain-trinkets.md), [Wrath](people/wrath.md), [Icefang](people/icefang.md), [Valenthielles Prison](places/valenthielles-prison.md), [Highden Fell](places/highden-fell.md), [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md), [Dollarmen](factions/dollarmen.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Edward Browning](people/edward-browning.md), [Garadwal](people/garadwal.md), [Lady Hearthwill](people/lady-hearthwill.md), [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md), [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md), [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md), [Coverage Audit](clues/days-36-70-71-coverage-audit.md). +- `data/4-days-cleaned/day-70.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Dollarmen](factions/dollarmen.md), [Snake Slayers](items/snake-slayers.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md), [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md), [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-70-71-coverage-audit.md). +- `data/4-days-cleaned/day-71.md`: [Azureside and Heartmoor](places/azureside-heartmoor.md), [Peridita](people/peridita.md), [The Pact](factions/the-pact.md), [Searu](people/searu.md), [Searu's Arrow](items/searus-arrow.md), [Snake Slayers](items/snake-slayers.md), [Grand Towers](places/grand-towers.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Barrier](concepts/barrier.md), [Minor Figures from Days 36, 70, and 71](people/minor-figures-days-36-70-71.md), [Minor Places from Days 36, 70, and 71](places/minor-places-days-36-70-71.md), [Minor Items from Days 36, 70, and 71](items/minor-items-days-36-70-71.md), [Open Threads](open-threads.md), [Coverage Audit](clues/days-36-70-71-coverage-audit.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 1b56ff9..0b4075b 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -33,6 +33,9 @@ sources: - data/4-days-cleaned/day-31.md - data/4-days-cleaned/day-32.md - data/4-days-cleaned/day-35.md + - data/4-days-cleaned/day-36.md + - data/4-days-cleaned/day-70.md + - data/4-days-cleaned/day-71.md --- # Timeline @@ -71,3 +74,7 @@ sources: - `day-32`: The party reaches Hearthwall, attends the [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), hides a [Shield Crystals](items/shield-crystals.md) piece with [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), exposes a false [Lady Thorpe](people/lady-thorpe.md), rescues the real Lady Thorpe from Goldenswell, and uncovers an off-the-books [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) operation while the Tri-moon appears during the day. - `day-33` and `day-34`: No cleaned day files were included in this wiki pass. - `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. +- `day-36`: The party investigates [Brookville Springs](places/brookville-springs.md) explosions, learns Pride was eaten by [Garadwal](people/garadwal.md), enters [Grand Towers](places/grand-towers.md), discovers hidden wizard bargains and [Wrath](people/wrath.md), fights through Harthwall and Highden crises, receives Lord Bleakstorm's snowflake coin, and uncovers the [Coalmont Falls and !Asmoorade! Prison](places/coalmont-falls-and-asmoorade-prison.md) facility. +- `day-37` through `day-69`: Not included in this wiki pass. +- `day-70`: At [Azureside and Heartmoor](places/azureside-heartmoor.md), the party confronts plague, dragon payments, and [Dollarmen](factions/dollarmen.md) operating from the Cheery & Cherry while Frilleshanks helps with [Snake Slayers](items/snake-slayers.md). +- `day-71`: Perodika / [Peridita](people/peridita.md) attacks Azureside with smoke, declares all Pacts off, the party evacuates toward Threeleigh, meets [Searu](people/searu.md), receives [Searu's Arrow](items/searus-arrow.md) lore, and hears Basalisk report simultaneous regional crises and four new towers around [Grand Towers](places/grand-towers.md). -
a97431eMore wikiby Bas Mostert
data/2-pages/114.txt | 48 ++ data/2-pages/115.txt | 51 ++ data/2-pages/116.txt | 44 ++ data/2-pages/117.txt | 44 ++ data/2-pages/118.txt | 48 ++ data/2-pages/119.txt | 44 ++ data/2-pages/120.txt | 46 ++ data/2-pages/121.txt | 43 ++ data/2-pages/122.txt | 43 ++ data/2-pages/123.txt | 42 ++ data/2-pages/124.txt | 46 ++ data/2-pages/125.txt | 42 ++ data/2-pages/126.txt | 45 ++ data/2-pages/127.txt | 44 ++ data/2-pages/128.txt | 39 ++ data/2-pages/129.txt | 40 ++ data/2-pages/130.txt | 46 ++ data/2-pages/131.txt | 47 ++ data/2-pages/132.txt | 40 ++ data/2-pages/133.txt | 41 ++ data/2-pages/134.txt | 35 ++ data/2-pages/135.txt | 40 ++ data/2-pages/136.txt | 42 ++ data/2-pages/137.txt | 37 ++ data/2-pages/138.txt | 42 ++ data/2-pages/139.txt | 42 ++ data/2-pages/140.txt | 35 ++ data/2-pages/141.txt | 46 ++ data/2-pages/142.txt | 45 ++ data/2-pages/143.txt | 36 ++ data/2-pages/144.txt | 33 ++ data/2-pages/145.txt | 36 ++ data/2-pages/146.txt | 35 ++ data/2-pages/147.txt | 37 ++ data/2-pages/148.txt | 38 ++ data/2-pages/149.txt | 35 ++ data/2-pages/150.txt | 35 ++ data/2-pages/151.txt | 37 ++ data/2-pages/152.txt | 41 ++ data/3-days/day-32.md | 533 +++++++++++++++++++++ data/3-days/day-35.md | 266 ++++++++++ data/4-days-cleaned/day-32.md | 139 ++++++ data/4-days-cleaned/day-35.md | 97 ++++ data/6-wiki/aliases.md | 18 +- .../clues/known-passwords-and-inscriptions.md | 21 +- data/6-wiki/concepts/barrier.md | 10 +- data/6-wiki/concepts/excellences.md | 12 +- .../goldenswell-prison-network-and-memory-grubs.md | 52 ++ data/6-wiki/events/tri-moon-countdown.md | 7 +- data/6-wiki/factions/black-scales.md | 5 +- data/6-wiki/factions/mage-judicators-justicars.md | 9 +- data/6-wiki/factions/underbelly.md | 5 +- data/6-wiki/index.md | 8 + data/6-wiki/inventories/party-inventory.md | 16 +- data/6-wiki/inventories/party-treasury.md | 9 +- data/6-wiki/items/hearthwall-auction-lots.md | 44 ++ .../items/mother-of-pearl-elemental-chariot.md | 6 +- data/6-wiki/items/shield-crystals.md | 6 +- data/6-wiki/items/tri-moon-shard.md | 7 +- data/6-wiki/open-threads.md | 13 + data/6-wiki/people/basilisk-busalish.md | 8 +- data/6-wiki/people/brutor-ruby-eye.md | 6 +- data/6-wiki/people/edward-browning.md | 6 +- data/6-wiki/people/lady-hearthwill.md | 14 +- data/6-wiki/people/lady-thorpe.md | 34 ++ data/6-wiki/people/lady-yadreya-egrine.md | 37 ++ data/6-wiki/people/minor-figures-days-32-35.md | 89 ++++ data/6-wiki/people/morgana.md | 10 +- data/6-wiki/people/peridita.md | 5 +- data/6-wiki/people/status.md | 19 +- data/6-wiki/people/the-chorus.md | 5 +- data/6-wiki/people/the-mother.md | 5 +- data/6-wiki/people/tj-biggins.md | 38 ++ data/6-wiki/people/valenth-cardonald.md | 6 +- data/6-wiki/people/xinquiss-zinquiss.md | 11 +- data/6-wiki/sources.md | 4 + data/6-wiki/timeline.md | 5 + 77 files changed, 3163 insertions(+), 32 deletions(-)Show diff
diff --git a/data/2-pages/114.txt b/data/2-pages/114.txt new file mode 100644 index 0000000..bf553d1 --- /dev/null +++ b/data/2-pages/114.txt @@ -0,0 +1,48 @@ +Page: 114 +Source: data/1-source/IMG_9775.jpg + +Transcription: + +Xinquiss comes in the room & sees us. +Takes us to a new room as his presents. +it is the shield crystal - agree to drop off a piece. + +* we add an auction for one of the Brass city +platinum pieces. + +Tell Xinquiss the quilt maybe an "excellence" or working for one. + +- Mith running the auction +Arabica pechen lady - one side of us - Candelissa Hustlebustle +Mermain / Shark tattoo - Tux & top hat - other side + +3rd row: Aon Ankt my Blood letting tutor + +- Lot 1 Bottle of booze, Elven - famous wine 28 yr 20g +Lot 2 100 yr old Candelissa +Lot 3 older one 350g Candelissa. +Lot 4 Smehlebeard whiskey 270g Janet Boulderdew +Lot 5 Crankfruit 75 yr bottle one - 280 years 400g +Lot 6 Blind gale XXX physick before imbibing +Lot 7 cherry wine (Sereza) 10g +Lot 8 +Lot 9 + +Me. coins: Lot 10 5 Black dragons 10g shiny man - dressed up by someone +Lot 11 Grand towers penny 3g - Raven no 1 +Lot 12 golden crown 2 silver clappers 15g +Lot 13 Dwarven copper coins 2 people bidding 1g +Lot 14 Electrum no sale +Lot 15 silver pieces - gnome great Fummouth. 8g Raven 2 +Lot 16 Brass city coin 160g Tobaxi - shaved head pink mohawk + +Art: Lot 17 talon of soot 50g remote bid. +Lot 18 painting - lord Bleakstorm refuses demands +female being relieved in caroline Harthwall(?) infant & a blue cow +male recognize? - Iceborg. Jayseel horns +image of someone lowering a rope down a hole 35g +for too much jewellery < human male + +Lot 19 obsidian & bone statue - crab claw & talon shielding Throngore +over a featherless female - "Valententide's Betrayal" 140g +Raven 1 diff --git a/data/2-pages/115.txt b/data/2-pages/115.txt new file mode 100644 index 0000000..9b4e3ee --- /dev/null +++ b/data/2-pages/115.txt @@ -0,0 +1,51 @@ +Page: 115 +Source: data/1-source/IMG_9778.jpg + +Transcription: + +Lot 20 Davina Browning covering her eyes with her +hands & eyes on them - "circling vultures" +10g Jewellery guy + +Lot 21 Love poetry blessings of Laurel 7g. +Lot 22 Red & Blew glass sculpture of Serra. 10g. + +Lot 23 Functioning moon pocket watch 175g +Lot 24 green rim spectacles - translate elf into common 112g +Lot 25 Mahogany box (Smulty box) 30g Bidder elf/flirting women goat legs +Lot 26 Ray of sorting & stirring 85g +Lot 27 Forest comb - elven - of delousing 35g. +Lot 28 Flute - mice carved - elven - turtle flute 65g. +Lot 29 hourglass of smoke instead of sand. 85g. + +Lot 30 holy symbol of Noxia Raven 1 175g +Lot 31 shield ring - runes of Lauren 600g werewolfish [uncertain: Repiteth] +Lot 32 Firefang 2050g Red & purple hair dwarf male +Lot 33 Chariot excellence defeated in "battle of the unending seas" +4 people bidding 2 Ravens/jewellery men/emissary + +Bidding war: Jewelled men on short paths Dally who walks +in the room - Harthwall partner +Lady Thorpe +11,900g, [uncertain: we got] 14,000g - already levelling it up onto a wagon? +Many guards outside. + +Lot 34 Browning spell scroll 6,200g - Jewellery guy + +- Skulk out to check on Lady Thorpe. +6 guards around. Transparent dragon silver dragon livery. +While feeling better - insisting on going back to the +front lines not going great. +looks a bit flustered - confused & flustered, something +odd about her mannerisms & feels uneasy in responses. +Don't think she knows who I am. +or she says she is. + +35. Mimic mouse trap +Arthur group +Conrad Harthwall +Numbhotall / Scrambleduck / Nambodall +Older human man & robed figure carrying along beside +Silver dragon born, backpack of scrolls & floating book. +gnome wooden shield with goldenduck on it +Justicars - looking for Xinquiss diff --git a/data/2-pages/116.txt b/data/2-pages/116.txt new file mode 100644 index 0000000..06ea37d --- /dev/null +++ b/data/2-pages/116.txt @@ -0,0 +1,44 @@ +Page: 116 +Source: data/1-source/IMG_9779.jpg + +Transcription: + +Don't recognise Inwar + +Laura wins Bracelet of locating 101g +Mith teleports away - Justicar tries to Counterspell(s) +Scrambleduck smashes stick on floor casting a spell. +(locating duck) +She turns round & I bang into something +invisible - go to attack her + +Browning - Skutey Galvin wanted for impersonating a +Justicar. + +Concentration spell fails & Lady Thorpe turns into +a llama - 2 guards behind me help me +& her guard tries to get me. + +Warrant for our arrest has been quashed by somebody +up high. + +waitress opens a trapdoor where Xinquiss is hiding. +- call myself Constantine Harthwall to the Justicar. +- guardsmen takes chariot & everything to the +Palace - Lady Harthwall wants to see us in the hours. +- Justicars take llamia to grand towers. + +Dith & Geldrin & Morgana escape with the shield crystal +down the trapdoor into a house & Xinquiss calls +Wroth to come & help hide the crystal - he does. + +Dith, Geldrin, & Morgana try to disguise themselves +& head back to the auction house. + +Eliana & Inwar enquire about them all & +get told about the trap door. 4:30 + +Head to the Castle. + +Halfling (higher rank) General - has a huge sword, +strides over to us (really ornate armour) diff --git a/data/2-pages/117.txt b/data/2-pages/117.txt new file mode 100644 index 0000000..1cbdb55 --- /dev/null +++ b/data/2-pages/117.txt @@ -0,0 +1,44 @@ +Page: 117 +Source: data/1-source/IMG_9780.jpg + +Transcription: + +Lady Fatrabbit (blossom) (Halfling) - also the sheriff. +Castle. Takes us through the Castle. +- Engravings on armour is a dedication to the +god of Law. Castle seems busy - shortstaffed. + +Lady Thorpe is missing. thinks it was fairly recently +as Lady Harthwall could have known it wasn't +her wife. + +Lady Fatrabbit leads us to a bedroom where +Lady Harthwall is. - Doctors making some antidote (for?) + +Suggest poison & trouble hiding her true form. +Llamia - may have done it. seems like a magical +poison - religious curse (Noxia?) (Great pain) + +Furres stretched thin - Goldenswell removed forces +wants us to help. + +Only noticed she has not visited her as much +as she expected. + +She was with her when they came back from +the front lines at Hilden with a few guards. +Creatures they were fighting did not seem cunning enough +to do this. + +- Geldrin casts scrying on Lady Thorpe. +- Stone room, chained up, looks like a dungeon +Dull image, no light, injured, malnourished, no fleshcrafting +1 door (cell door), grey mountain stone (not seaward/Runeyend) +same type of stone as the Harthwall Castle, Door looks +made of wood, iron bound reinforced with an iron +grate at the top. Dungeon in Ca looks similar to this +castle. +There is a dungeon in the castle & militia house. + +Want to check all of the Dungeons between +there and Hilden. diff --git a/data/2-pages/118.txt b/data/2-pages/118.txt new file mode 100644 index 0000000..8894e7b --- /dev/null +++ b/data/2-pages/118.txt @@ -0,0 +1,48 @@ +Page: 118 +Source: data/1-source/IMG_9781.jpg + +Transcription: + +Lady Fatrabbit leads us to the castle dungeons +# not there. +over to the militia house - looks like the militia +building in Everchard! Nobody stops her from walking +in. Doors look like the one Geldrin saw, it looks +very similar to the room he saw. +Fatrabbit asks guard for current roster of the prisoners. +Clay Meadow / Everchard / Redford point / Stonehedge / Goldenswell +stone structure different. + +Me & Dith go looking into all the cells, she's not +here. Barrett comes back with the roster everything seems +in line. + +- prison on the road to Stonehedge for longterm +prisoners who didn't take the death penalty. +metal doors. 19:00 + +Claymeadow - Lady Neegate - quiet lately due to a loss in +family. +Decide to go & make a plan before speaking to +the wizard, go to the Irate Unicorn. - shrine to Law here. + +Ask Busalish for help from the guild to check +the prisons. + +- go to see the wizard. +Tortle - can teleport us somewhere, will come +back tomorrow. + +Day 27 + +Bag humming & glowing, & note from +Busalish. +Redford & Everchard, No Lady Thorpe. +Refused & prevented from Goldenswell, met a few +things reporters etc. +little Bugy as someone tried to assassinate Sefris on the ground +(Cult of Salvation) +last night + +Skull is glowing & humming vibrating & humming +give to Geldrin diff --git a/data/2-pages/119.txt b/data/2-pages/119.txt new file mode 100644 index 0000000..3f66b0f --- /dev/null +++ b/data/2-pages/119.txt @@ -0,0 +1,44 @@ +Page: 119 +Source: data/1-source/IMG_9782.jpg + +Transcription: + +Connection destabilises all charms out of +the windows. + +Tri-moon visible in the day - doesn't usually happen. +seems to be hanging ominously. Usually see in +the dark - seeing in the daylight it shows it as a crystal. +Barrier looks normal & moon doesn't look any different +in size, can see the small chunk. 09:30 +Geldrin estimates it should be there around 2am +so 16 hours ahead of schedule. + +Tell everybody about Busalish note & 3 prisons. + +Go back to Tortle mage, (Jin-Loo). +Tell him about the Tri-moon - found it happened +3 times in the last 1,000 years (when records began) +104 AD +339 AD +629 AD +1012 AD +Asked him to find out of +anything significant happened on these +(Nothing) + +Go to Goldenswell (teleport) Museum Gardens + +Bleakstorm - possible name for the tree we teleported +next to. - from outside of barrier Airwise - very cold. + +Go over to the Militia House. - Morgana locates +Lady Thorpe in the building 2 floors down in the middle +of the building. 10:30 + +Plan for Geldrin to pretend to be a Justicar +into the building. (Half sun tattoo obscured by a +waterfall - yellow guards wearing) +Geldrin storms into the guarded room. The guard +who went to get the captain is leaning against +the window & servant does not look busy! diff --git a/data/2-pages/120.txt b/data/2-pages/120.txt new file mode 100644 index 0000000..3133325 --- /dev/null +++ b/data/2-pages/120.txt @@ -0,0 +1,46 @@ +Page: 120 +Source: data/1-source/IMG_9783.jpg + +Transcription: + +Captain is reading "101 who's who of the +Penta city states" picture of Scrambleduck. + +try to arrest them. + +Morgana & I go through the other door. +Find Lady Thorpe (set of traps went off) & we +carry her out. + +Meanwhile Geldrin is mauled & tries to get +thieves tools out to open them. Dith gets keys & unlocks. +Captain tries to send a message to say they've +been discovered send help. + +Take Captain & Lady Thorpe & a cart & +leave the city, manage to get out. +Come off the road & find a place to hide. + +Message Busalish to let him know we have +her, revive Lady Thorpe. + +Man who had 1/2 snake for a body +(lower 1/2) Travelling back with the Goldenswell army +when they decided to leave. + +Bug Geldrin stole from the Captain's office - 50 platinum +pieces (Frawshers currency) & a grand towers penny. + +Need to question the captain. + +- wake up the captain. get in trouble with the Duke +for attracting the militia. + +was told it was a sensitive situation & not +to let anybody in. Duke sends one of his +emissaries to feed her. Knows he's doing something dodgy +but doesn't know the full truth. Some woman, bag on head, +orders came from the Duke's office, few of the other guard +knew about it. +off the books prisoners have been done a few times +last one was a week or so ago & still down there diff --git a/data/2-pages/121.txt b/data/2-pages/121.txt new file mode 100644 index 0000000..e61fd19 --- /dev/null +++ b/data/2-pages/121.txt @@ -0,0 +1,43 @@ +Page: 121 +Source: data/1-source/IMG_9784.jpg + +Transcription: + +Woman & a man +female Halfling +Alf wants out allot - Elementarium + +Busalish message - Don't come to Strong hedge Compromised + +Elementarium was in the town Crier information 4 days +ago but imprisoned over 1 week ago. (There's an imposter in place) + +Try to contact Cardencalde via Eroll - she didn't answer +? why as it contacts her directly. +Sent message to Lady Harthwall via Eroll. 16:00 + +- other prisoners held on the same floor - 7 altogether +getting a few a week over the last month +had a few people try to get in - people trying +to survey the prison. Goblin (Scumi) with Bag of +skulls + +- Eroll returns with a ring - Jin-Loo +appears next to us - keep the ring so he can find us again. + +Skull ascend to godhood - is when the moon did it +is like Tri-moon (Treamen) +Geldrin tries to attune to the skull. + +- obsidian raven circles overhead like it is looking for +something. flies off towards grand towers. + +- Geldrin attunes to skull - Women (no belly button etc) crab claw grabs +Vallententide her & she disappeared. +Black & white dragon fighting & white dragon injured. +silver dragon rescues. +Veridian dragonborn - gnome & old man smile at DB & nod +629 AD +Throne room - Dwarven guards - walls crumble as giant +skeletal dragon breathes out (today!) Soot! +The things he gazed upon last. diff --git a/data/2-pages/122.txt b/data/2-pages/122.txt new file mode 100644 index 0000000..59a6bd2 --- /dev/null +++ b/data/2-pages/122.txt @@ -0,0 +1,43 @@ +Page: 122 +Source: data/1-source/IMG_9785.jpg + +Transcription: + +- Skull can crush foes let him pass, show visions +(only thing he has seen) +- The lord above place in the sky. + +Noxia can poison things to stop them being their +true form. + +- has influence over the barrier - can bend it +- was assaulted when he came to the god +meeting. - mortals + +- Valententide was attacked by Throngore - Darkness + +525 years before the veridian dragonborns - dragons fighting + +Gary corrupted sphinx heading towards grand towers. + +Shows us a projection of grand towers using the moon +reflections. +see a man walking through streets towards the +(prison device) + +Shows "The Mother" crater small town (this was the place he fell) +small girl sat at a table (halfling) seeing dogs together + +Condennis Place - empty - takes us to an underground +Dwarven city. laid out on a table with a skull +floating next to her and an old wizened dwarf +noting - wizard from Inwar's vision, looking after the molten +prison. & touched it & stopped it leaking. (ruby eyes wife? village) + +Militia house (same desk sergent sitting there now) +elven man - Elementarium +human - Male mid 40's scar on right cheek +halfling woman - Baytail accused head of underbelly +Empty cell - +half elven woman - bears a resemblance to someones sister - seen their +brothers before *1 diff --git a/data/2-pages/123.txt b/data/2-pages/123.txt new file mode 100644 index 0000000..5fa5f3f --- /dev/null +++ b/data/2-pages/123.txt @@ -0,0 +1,42 @@ +Page: 123 +Source: data/1-source/IMG_9786.jpg + +Transcription: + +Kobold - tattered robe - recognise the robe. +Halfling female brown speckled eyes (like tiger eye) pale skinned, +we have met - Isabella Neegale's aunt? Earl of Clay Meadows + +Goliath City - ruins - sickly Goliaths being attacked +by lions - overseen by brutal looking veridian +for tea. - all dragons mutated. +Tower purple glow nestled around it is a massive + +*1 first Justicar who chased us body guard's +sister + +needs to be next to his foes to smite them. + +The chorus - standing outside the house looking up +at the sky - never usually leaves the house. + +7 prisoners at Goldenswell +- Clay meadows +- Strong hedge +- Redford point +- Seaward +- Gnoll +- half elf woman (sister of the Twin Justicar guards we +met on the way to seaward) +- Harthwall - rescued + +Head Back to Goldenswell with the Captain via the +side roads. + +Disguise ourselves with winter clothes. +Duke's personal guard brought them in. +Bribe him with 50 platinum pieces & his money back +for his help. +give him 1 platinum as a down payment. +to get us into the prison rescue all the prisoners +and get him out of the city. diff --git a/data/2-pages/124.txt b/data/2-pages/124.txt new file mode 100644 index 0000000..6d7a5bd --- /dev/null +++ b/data/2-pages/124.txt @@ -0,0 +1,46 @@ +Page: 124 +Source: data/1-source/IMG_9787.jpg + +Transcription: + +offer the rest of the guards money. +Maybe the Duke's guards on the gates won't be bribed. + +go in through the Earthwise gate +guards likely to have been drinking 12:00 + +[Day 35] + +Gates opening & closing - guards look like militia. +guard leans over to the other noticing us + +Taken from the station - All a drill to test the +safety of the prisoners - Pay him for doing well +in the drill. + +- Guards chatting idly & handing out the coins. + roads quite quiet. + Few people milling around the building. Few militia + & a few Duke's guards. Change course to + the back of the building. + guard on the back gate lets us in - Morgana tries + to bribe him. + Duke's men all inside. Morgana turns into a spider + & goes inside to check what is going on. + Offices have been ransacked - guards still doing paperwork, + some being interviewed by the Duke's men. + at the curtained office (Captain's office) man in white gloves (human) + investigating the office & the false drawer. Acting really odd. + Mr Seneshell + Prisoners ready + +Someone comes in +Bring them out the front + +go to attach the bangle to the cart lots of +people around difficult to get there - get invisibility + +Try to swap the horses for fresh ones. Daisy / Applejack / +Carrot muncher / [uncertain: Harpvicarch] +kobold female & halfling escorted out +attach bangle & loosen a axle. diff --git a/data/2-pages/125.txt b/data/2-pages/125.txt new file mode 100644 index 0000000..e35ea7f --- /dev/null +++ b/data/2-pages/125.txt @@ -0,0 +1,42 @@ +Page: 125 +Source: data/1-source/IMG_9788.jpg + +Transcription: + +Barrier thickens - 2 groups hitting it +can feel the domes pull. + +give the captain a further platinum for getting +us this far - & we head out of the militia +house. 20 min later Morgana senses movement +towards Claymeadow. + +On the way out - see two watchmen one seems +off. Geldrin tries to check for automaton. +He is an automaton. + +Queue at the gates. go round to the front +of the queue to persuade guards to let us +through. Guards thought he had been removed +from duty. + +Other guy gets something out of his pocket & +goes around the other side of the wagon at +the front of the queue. check the cart & don't +find anything. + +Ask [unclear] to check on them - 2 carts +travelling on the road. no panic. +6 people on the exterior - cannot see interior to +tell if there are guards inside. +Start to catch up with the carts. + +were single file but they then +seem to spot us & move side by side with +crossbows pointed at us. 02:00 + +Tell us to maintain a distance & leave them +alone. Morgana tries to persuade the horses to stop. +They shoot at us. + +get on the top of the cart & shoot at them. diff --git a/data/2-pages/126.txt b/data/2-pages/126.txt new file mode 100644 index 0000000..2f85ad4 --- /dev/null +++ b/data/2-pages/126.txt @@ -0,0 +1,45 @@ +Page: 126 +Source: data/1-source/IMG_9789.jpg + +Transcription: + +Back doors open - man with white gloves +stands in the middle adjusting his gloves. + +2nd cart doors open, Batista fires at us. + +Enter Battle - Morgana stops the carts with thorns +& kills all external people / horses. +Geldrin kills 2 on the ballista with an acid +ball. + +Boss - lower half of body turns into a snake +& leaps towards us attacking Dirk & Morgana. +guards in the cart turn into llamia. + +- all the prisoners in the wagon appear to + be unconscious - Drugged in some way. + Geldrin kills snake guy with a fireball. + I kill a llamia after the fireball. + Morgana kills the other llamia with another + cart wheel. + +All dead (bad guys) + +Find a silver chain with a serpent pendant on the +snake guy. - Magical talisman +1 cleric cash rolls [unclear] +with Noxia catch spells. + +Prisoners are magically asleep. +- Lady Katherine Cole +- Elementarium +- kobold +- Lady Katherine Neugate (Isabella's Aunt) +- Lord [uncertain: Harmock] Hayes. - rallying point +- Half Elf female. + +Move the captives to our cart. + +Set fire to the carts & leave +head off the main road airwise towards +Bluemeadows. 04:00 diff --git a/data/2-pages/127.txt b/data/2-pages/127.txt new file mode 100644 index 0000000..f1668dc --- /dev/null +++ b/data/2-pages/127.txt @@ -0,0 +1,44 @@ +Page: 127 +Source: data/1-source/IMG_9790.jpg + +Transcription: + +[crossed out: River] Enter Bluemeadows + +At a church? +fields full of Bluebells in bloom - odd this time of year. +very hardy. look like crops. + +Geldrin adds a college of surgeons symbol +on the wagon & we head into town. + +Man on the steps looks like local militia. stops +comes to talk to us. - Doesn't have a serenity stone +Lady Esmerelda. +Bluebells used for Dye. + +Get provisions. +- Grey Gables is the next town Airwise. +- Kobold wakes up. - Mr TJ Biggins Plantation of + Newt [unclear] Vain - Run outside of the dome. + doesn't get on with the greenscale family. + or the loose teeth. or the blackscales + who go to their town for the tributes & then leave. + Thought we were Bumblebeers (people from down the + road - Red Goliaths but bigger. + +head out of town Airwise + +Lady Envy - Boss of Llamia's sand dome was to +keep elementals out. +his town is known for mining. +All the people come & get tributes from his town & leave. +Fire & earth raids on the town. + +- Saw a gnome last time the Bleakshrouvers came + to town. +- Pay enough coins can get in the dome. + Dirk shows him what the dome is using + a bun & now TJ calls it the "Bun" + +[side note] Pride. Lust. greed, wrath, envy, gluttony, sloth diff --git a/data/2-pages/128.txt b/data/2-pages/128.txt new file mode 100644 index 0000000..9524452 --- /dev/null +++ b/data/2-pages/128.txt @@ -0,0 +1,39 @@ +Page: 128 +Source: data/1-source/IMG_9791.jpg + +Transcription: + +7 moons passed between him waking +up in prison & waking up with us. Went to +sleep at home & woke up in prison. + +Half Elf lady stirs - youngish Rein lore elf +very elven looking. reminds us of the twin guards of the justicar. + +- Lady Yadreya Egrine. Baroness of Riversmeet. + Was with the menagerie - creatures gone missing, + the more experimental creatures. + New ones went missing about a month ago. + She wanted to know more about it. maybe + why she was taken - few days ago - had + a spell cast on her - in chamber, doing paperwork + when felt a spell being cast on her. + Lady [uncertain: Huthnall] - looking into corrupt slate, etc. + Inquisitor from Salvation - Thrice pass on the ground. + Lady [uncertain: Suisant] De'Beauchamp - Iron craft fire wise. + +Lady Katherine Neugate wakes up. +seems reticent to talk to us. +all seem to work off the same council. +Captured for 4 days. +mentions the same people who are missing from +the council neither mentioned the guilt +neither have met him. + +- Lady Katherine Cole wakes up (my Boss) + 3 days + 3 paws - Beauchamp. not the guilt. + all believe he was never part of the + council but he was. + +- all have dried blood in their ear canal. diff --git a/data/2-pages/129.txt b/data/2-pages/129.txt new file mode 100644 index 0000000..3578ca6 --- /dev/null +++ b/data/2-pages/129.txt @@ -0,0 +1,40 @@ +Page: 129 +Source: data/1-source/IMG_9792.jpg; data/1-source/IMG_9793.jpg + +Transcription: + +all seem to be ear drum injuries. +& a little deaf in that ear - looks like something +lodged in the ear drum - pupae in each one. + +- pull it out of Lady Cole - large grub + attached to the ear canal. Egrine has seen + them in the menagerie. + kill the grub & she has her memories back. + felt like she was being watched. + +Tarrak wakes up from the removal. +all had forgotten The Guilt was a member +of the council & were told not to trust him +& all don't feel like they are being watched. + +Third on the roof of the cart. +Skum appears on the roof to rescue +Elementarium - gives us Bob's shell. + +Never saw him at the Goldenswell guardhouse. +Sat there for 2 days. +human who walked like a horse missing +2 legs. + +silver dragon man who was wearing a cloak. +silver dragon man cast a spell on Elementarium +& he walked out with them to the cart. +he was imprisoned for approx 2 days. + +Morgana kisses Elementarium to try to wake him +up. feels like she forces him. sees a laughing female +Dragon. (Peridot Queen?) 12:00 + +Geldrin hits him he opens his eyes and they +are green. diff --git a/data/2-pages/130.txt b/data/2-pages/130.txt new file mode 100644 index 0000000..257ebb7 --- /dev/null +++ b/data/2-pages/130.txt @@ -0,0 +1,46 @@ +Page: 130 +Source: data/1-source/IMG_9794.jpg + +Transcription: + +We all sleep whilst the rescuees +drive us to Brookville Springs. 20:00 + +[Day 36] +[3/3 revenge] + +Approx 5hrs outside of Brookville Springs 04:00 + +Skum stays sat by Elementarium's head the whole +time. + +Invar remembers he knows how to remove curses. +hears a clink where a bracelet falls off +his wrist. He doesn't remember being kidnapped. + +Send Errol to Lady Newgate's sister for some transport +to meet us outside Brookville Springs at Bridge +Statue. + +Elementarium hasn't seen Peridot Queen in approx 1 month +since we were last in town. + +Rescuees will go back to Huthnall & remove +the worm from Lady Thorpe's ear. + +Head around Brookville Springs to the Statue of Bridge +(female shape with no other female features, has a face +with palms up towards the sky) + +No offerings or guards at the statue but +a copper piece randomly around 5 feet around it. +Just a temple in Seaward where they take bets - god of freedom luck, +gargoyle & trickery. + +Stay by statue until Newgate's gargoyle arrives. +- People leaving have a hurried energy + warning them not best to go in, loads of explosions + all over town. Brothels / guard house etc. Golumns? + +Bangs - all human buildings go bang, one human blows +up - purple bangs. diff --git a/data/2-pages/131.txt b/data/2-pages/131.txt new file mode 100644 index 0000000..b2980b8 --- /dev/null +++ b/data/2-pages/131.txt @@ -0,0 +1,47 @@ +Page: 131 +Source: data/1-source/IMG_9795.jpg + +Transcription: + +Lead human gone (pigeon says - sits on +ledge by main building) + +Stopped today, happened on Trimoons day - late at night, +nothing today. +(When we were leaving Goldenswell there was one +on the fritz) + +? were they meant to explode or told to? + +Gargoyle arrives - not tampered. + +Message from Claymeadow - explosions all over +town - Newgate's doppel/imposter in quarters - Their Bird +doesn't work. + +Arrange to contact them via Errol & +locate us with the mages ring. + +Pay Captain a further 25 platinum and he +legs it towards Brookville Springs. + +Lots of patrols of 3x guardsmen. - high alert. +Geldrin doesn't locate any golumn's in town. +leader gone - vanished. 12:00 + +Head to centre of town. Anything seems to be ok +except violence. + +Metal chest (guardsmen) said leader had gone missing +on bang night. + +Head over to "Hazy Days" +Dirk Invar & Morgana queue up for some smokes. + +Questions server. +The guilt - gone disappears - night of the Trimoons +guards coming in & he went missing around +midnight - some people say they saw him leave. +guards were looking for him. +Seneshell running the place - won't be able to see +him unless we are residents. Pitboss may work. diff --git a/data/2-pages/132.txt b/data/2-pages/132.txt new file mode 100644 index 0000000..9b9b96c --- /dev/null +++ b/data/2-pages/132.txt @@ -0,0 +1,40 @@ +Page: 132 +Source: data/1-source/IMG_9796.jpg + +Transcription: + +head over to the main building 15:00 +get into the queue for the main building. +grease the palms of the guards to get in to see +the Seneshell - All 12 gods in the entrance +hall. + +Thick plush red carpet - chaise lounge, female sparrow +arakocra on it tattoo'd & wearing feathers (Briker / Magi) +and a green lamp are the only things in the +room. + +He lent an olive branch & we didn't take +it & now he's stuck (his master) he's not +left town, he's back in his room. + +The explosions where the Guilt's bosses +guardsman - the reason he's unconscious is +the reason for the explosions. The boss (Pride) +has been eaten. (Garadwal!!) + +We are much the same as her as just work +for someone. +Dark entity - Pride - wants people to be proud. + +- For us her big bad is a bit tougher. +- Guilt's Boss was running things at Grand + Towers. + +Suggest we speak to Browning. + +Guilt is an Avatar of Pride. +"[uncertain: Morrowred]" had sold out the leaders. + +Pride tried to have as many things out of +commission before he was consumed. diff --git a/data/2-pages/133.txt b/data/2-pages/133.txt new file mode 100644 index 0000000..7273856 --- /dev/null +++ b/data/2-pages/133.txt @@ -0,0 +1,41 @@ +Page: 133 +Source: data/1-source/IMG_9797.jpg + +Transcription: + +Pride was neither good nor bad. +Guilt has a portal to Grand Towers +& Mercy will show us her a favour +at a later date. + +Ask to see The Guilt. He sends us out of +the room & there is a grinding & dragging +across plush carpet. There is a chest similar +to the one in Envy's lab open & the guilt +is in there. + +chest is dangerous when armed - There +is a code to disarm. + +Send Errol to get Ruby eye. + +No sign of the underbelly. +Lucky cyclops eye - rub. - didn't go + +Head back to the statue via the outskirts of +town. + +see a few shifty people on a corner. Half orc & human +female +try to get some potions. they try to +shut off & call themselves "the Dollarmans" Assassins +let them go - seem like the want to fight me +but are under orders not to. + +Make it to the statue & obsidian bird there - Terry +"Metallics" bird. Message from Incara to be taken in +private. "have important information be wary if your compatriots +wizards are working against us - they're the reason for +their infertility. Not yet confirm." + +[margin note: will go down the passage after we get ruby eye] diff --git a/data/2-pages/134.txt b/data/2-pages/134.txt new file mode 100644 index 0000000..62d6787 --- /dev/null +++ b/data/2-pages/134.txt @@ -0,0 +1,35 @@ +Page: 134 +Source: data/1-source/IMG_9798.jpg + +Transcription: + +Big flash - Rubyeye appears. - Valenth still repairing. + +- Valenth & Ruby eye have been convalescing. +asks about the crystal shell - told him we off it +at Harthwall. + +Doesn't know about Envy. +lots of giants rampaging at his clan's settlement. + +Asks about Lady Envy ??? & lady Harthwall. +Made some enemies but the dome is proof of his efforts. + +Wants to retrieve the shell of [uncertain: Tremoon]. doesn't want +it falling into the wrong hands. More interested in it than +he is telling on. + +goes into the bag so that we could "sneak" him in. + +Go back to Mercy's place behind her is a +half elf with rounded ears - Bar keep at the +Drunken Duck. Mercy told him about what +is going on & came down to ease our +worries. Independent contractors for the guilt, +concerned citizens hire for money. +Wants to cash in the favour now. +Something he wants from the towers. - belongs to the +74th floor - private mage area - small trinket - Jelly Fish Broach +has an interested party who wants it retrieved. +who is the buyer? not our current mutual antagonist +female outside of the barrier. diff --git a/data/2-pages/135.txt b/data/2-pages/135.txt new file mode 100644 index 0000000..76fd15a --- /dev/null +++ b/data/2-pages/135.txt @@ -0,0 +1,40 @@ +Page: 135 +Source: data/1-source/IMG_9799.jpg + +Transcription: + +Promise to attempt to retrieve it. + +Takes us through the grand Towers passage +- Corridor filled with pictures of the guilt looking at us +wall isn't really there. Void the other side of the wall. +through the door there is more corridor. +turn around & open the door again & enter +the what seems like a broom cupboard in grand towers + +into a room & find a coat rack filled with robes +head out for every one. + +Floor 70-90 schools of magic +60-70 store rooms / admin offices +0-60 apartments +74 - enchantment classes. + +Rooms look very dusty - are not used regularly. no +animal presence (spiders/rats) + +Get Ruby eye out - we are on floor 65. +nothing of note on this floor. + +Try to open the door & some magical pull on the +lock, but open it. + +Pillar in the middle with shelves with orbs +like ruby eyes lab - pick one to view. +see guy sitting in a chair (Icefangs human form) +Nice room. Covered in snow & another guy in the +front (pic in the auction pic & private pics) guy shaking +his head. They're up to no good. we won't let you have +him. The paysoil won't work without him. can't let you +entomb him under the snow, Guards in black snowflake tabbard. +calm human & says he's right doesn't [unclear] diff --git a/data/2-pages/136.txt b/data/2-pages/136.txt new file mode 100644 index 0000000..9bfa4b6 --- /dev/null +++ b/data/2-pages/136.txt @@ -0,0 +1,42 @@ +Page: 136 +Source: data/1-source/IMG_9800.jpg + +Transcription: + +She replies with they're old enough to tell them what +to do + +Rubyeye says he's never seen it before. don't think he's +lying. + +Follow him down the corridor - elevator room. (teleport circle) + +Geldrin goes with Rubyeye - looks to a random level as moves up +maze of ropes etc. Ruby eye says they're going to see +Browning - Gideone chair. Gazzy plugged in old man. +2 people at the feet of the chair tinkering. not worried +about their presence. + +Pop another ball in the front. +- board room in grand towers. Ruby eye, Harthwall all 5 +except browning this vision?) trinkets in front of him +Scorpion +Snowlee +Jelly Fish +Ant +other wizards look uncomfortable - getter a put into +pouch, deal is done - how many more - about +7 signed up 5 more to go. look uncomfortable +with it. there must be another way. +Ruby eye not happy - they're good people, but the +only people who will suffer, it will save millions +in the long run + +mages know Geldrin following his progress, succeeded in the barrier +safely. a chair guy altered pride to be eaten by +garadwal. speaking through his greater gravel children. +garadwal locked downstairs here him when it +are ready walked into Browning's trap. + +Rubyeye says they will sort Garadwal out like Browning +is his boss... Rubyeye knows what is good for him. diff --git a/data/2-pages/137.txt b/data/2-pages/137.txt new file mode 100644 index 0000000..c9a78e1 --- /dev/null +++ b/data/2-pages/137.txt @@ -0,0 +1,37 @@ +Page: 137 +Source: data/1-source/IMG_9801.jpg + +Transcription: + +Now orb - save person. Are elementals flying around. +Completed towers. at a panel fighting happening. +touching the panel. Harthwall asks if nearly ready +to kill them off. +Browning says ready - he turns into a dragon & he +then activates the device & she disappears he says +it's too late it's started! + +Ruby eye - we need to go - now! + +New orb - Browning sitting in same room calls out crystal ball +see giant green dragon appear, help get rid of husband +yes use them as cattle wherever we are done +throws blanket over as Valenth walks in. + +Geldrin back - was on floor 98 found Browning. +Need to get out of here now. tell us about Garadwal. +Hear an alarm - 4 golems appear in the circles - run back +down the corridor + +Pile through the corridor we came through & +all black - no corridor - close & re-open door - looks like +a church, similar to early Bridget temples. +Door from the room opens to the outside - but no dome! +Lots of doors off the courtyard +- try to go up the tower - open the door & a red robed +goliath is sat there shocked as we walk through. +clergyman, Arik Bellburn of Bridget. Says we came from +the dome. Bridget has freed us. I have skin of +evil. Morgana - Bleak glimmer. Geldrin - lost winner - +we are in the town of Bellburn. +Prayed for freedom from their oppressors (envy) & Bridget sent us. diff --git a/data/2-pages/138.txt b/data/2-pages/138.txt new file mode 100644 index 0000000..4a83e4e --- /dev/null +++ b/data/2-pages/138.txt @@ -0,0 +1,42 @@ +Page: 138 +Source: data/1-source/IMG_9802.jpg + +Transcription: + +hear a dragon - Speaks draconic - I have come for payment +Ruby eye says we need to go +Suddenly sound of battle, sounds of Goliath fighting Harthwall's +silver dragon on top of a building saying she's come +for payment Envy will have her due. + +Dragon looks similar to original Harthwall +except she looks more mean & grimaced. has +a green tinge to her scales. + +All of the goliaths seem to have maces made from +Seaward stone. + +Rubyeye wants to leave thinks Harthwall hates +him + +Start to enter the fight. try to get Harthwall's attention. +Harthwall calls out Ruby eye & tells him to +come & remove the curse he put on her! 17:00 + +Ruby eye casts imprisonment on her - shouts "Burial" +which echoes like an unearthly command. + +Ruby eye sounds odd - like somebody is doing +an impression of him. Seems furious with Dirk after +he hit him with a magic missile. + +changing touches me & I think Dirk's sword is +the most amazing thing ever for a brief moment. +hear a voice - feel my brothers touch upon you +& want inverse hammer. +"Ruby eye" turns into +Red skinned tiefling via morgana's Moon beam +Wrath + +Made a pact with Ruby eye to help kill Black Dragon +& his fault Harthwall is out here diff --git a/data/2-pages/139.txt b/data/2-pages/139.txt new file mode 100644 index 0000000..29eb0df --- /dev/null +++ b/data/2-pages/139.txt @@ -0,0 +1,42 @@ +Page: 139 +Source: data/1-source/IMG_9803.jpg + +Transcription: + +Scared of Browning who teamed +up with Pride. + +Cursed the silver & black dragons so they can't +take their human form. + +Promises us power in exchange for fighting our enemies. +9 of them in total - little demons of Darkness. +Wrath, Pride, Envy. + +- Wrath puts Harthwall in the ground (imprisonment) using a silver dragon +statue. +Wizards worked with them to help make the dome +to protect from them... +Says we are not working for him in any +way shape or form. assist if mutually +beneficial + +- wants [uncertain: tremoon's] shell, as he saw the wizards +make it - helps to get in & out of the barrier. +Such a big deal + +Arik was injured - healed up. +goliaths pay the blackscales sometimes & the ore kobolds. +Doors are sacred to Bridget + +Hellfling - Mayor Longbottom - wants to accommodate us +for the evening. Woke up in the church one day +she's originally from Goldenswell. says there +is no way back into the dome + +Wrath was part of Ruby eye but left him +when we "took him out" +Ruby-eye is still in the bag + +Morgana asks Bridget if she will get us back in the dome. +takes her to the chorus - has good & bad results diff --git a/data/2-pages/140.txt b/data/2-pages/140.txt new file mode 100644 index 0000000..707114e --- /dev/null +++ b/data/2-pages/140.txt @@ -0,0 +1,35 @@ +Page: 140 +Source: data/1-source/IMG_9804.jpg + +Transcription: + +Dirk & Geldrin put a grand towers penny onto +the statue of Bridget. It disappears & her eyes +glow green. Dirk goes through the door - Bridget +eyes glow red. - Dirk comes out in Seaward! + +Tell the priest about penny on hand - she goes and shouts at Arik +about why they never gave Bridget money. + +Dirk has gone back to yesterday. + +Geldrin drops 2 pennys onto Bridget's hand, her +eyes glow green then yellow. we all go in the +closet. +We come out into a blue & white tiled +reception room in a great palace no furniture. +reminds us of seaward. Dirk feels 400-500 miles +away Earth/water wise. We're still outside the +dome +guards outside the door, don't expect us to +be here, blue tabbard, chases Morgana & +catches her by the door. try to confuse +him with the looks of the room. he calls for +the Baron (?). Close the door & re-open blackness +Dirk hadn't moved before the door opened & then +when opened Dirk was no where. +close the door & nothing happens. step out & +go back through the door. come into Brookville springs. + +Sopparra says wrath was a Goliath when we went in +(Mercy) diff --git a/data/2-pages/141.txt b/data/2-pages/141.txt new file mode 100644 index 0000000..8d5110b --- /dev/null +++ b/data/2-pages/141.txt @@ -0,0 +1,46 @@ +Page: 141 +Source: data/1-source/IMG_9805.jpg + +Transcription: + +Dirk stays in Seaward & hears a few explosions +around midnight. + +get Ruby eye out & he shouts at Wrath & wrath +gets back into his eye. + +Dirk - most Earthwise cities have had explosions - +Harthwall / Goldenswell areas. +Grol finds Dirk & he sends a message back. 20:00 + +Rubyeye teleports us all to Dirk. + +The trinkets were part of one of the bargains - shouldn't +be much use now. + +The gods required a favour each and communication +to their priests & a boon. + +Bridget - way in but +Noxia - trinkets & barrier causes suffering sickness living near +& touch + +Nerfili & babies - Arile. +They always had issues, Browning made sure they needed us + +Otasha - more than just suffering - gave her the unborn +nerfili babies across the +whole race - Barrier seems to stop this slightly. +Lady Harthwall - not happy about it & didn't +know about half the deals made. + +Found a way around most of the bargains +got around god of Darkness by making him the god. +(Leptrop) + +Otasha didn't want the barrier as getting +a lot of business. Allowed to make her a bargain. + +Ennik & Browning did many of the deals. +Harthwall - Taken of the group - speak to Valenth about how she +ended up with envy diff --git a/data/2-pages/142.txt b/data/2-pages/142.txt new file mode 100644 index 0000000..5629e74 --- /dev/null +++ b/data/2-pages/142.txt @@ -0,0 +1,45 @@ +Page: 142 +Source: data/1-source/IMG_9806.jpg + +Transcription: + +Ruby eye's pact with wrath was only due to +need for more power & he saw how much power +Browning had with Pride. + +Browning had with Pride. +Browning wanted the biggest tower & to be the greatest wizard +of all time + +teleport over to Harthwall, on target +by statue of her. + +go to the castle gates. +Sheriff Fathrabit takes us to Harthwall & says +the other Nobles arrived... + +bring out wrath. it isn't his normal thing. +definitely his sisters work, says there you go +give it a few days and she'll be fine - lying. +Wants a favour - to tell Envy that he did it. +Harthwall wants to transform so leaves the chamber +into the courtyard & transforms. +Harthwall is slightly bigger than Peridot Queen. + +Seaward no many knowns. Nobody stated +the racist automatons had exploded. +Harthwall's Raven exploded. several explosions across +the city + +Day 34 + +get Breakfast in the grand Hall in Harthwall. +Lady Harthwall feels much better. +Fighting has been pushed back to stone rampart +Earthwise. Lots of mutations +large explosion seen in the area by the retreating +troops. +Harthwall will defend the pylon we go & get the +betrayer. + +[margin note: Da Pig Plaguers] diff --git a/data/2-pages/143.txt b/data/2-pages/143.txt new file mode 100644 index 0000000..1e8d781 --- /dev/null +++ b/data/2-pages/143.txt @@ -0,0 +1,36 @@ +Page: 143 +Source: data/1-source/IMG_9807.jpg + +Transcription: + +Reports back from the captured leaders +they have all managed to re-take their cities +with minimal casualties. + +Three paws on the ground reports safe arrival +of the goliaths. + +Scry on "The Mother" +Mountainous terrain - On a wierd 2 legged horse +little tiefling girl - surrounded by odd creatures, +small band of them. +All together by a small crater in the side of the +barrier - close to the mountain +- Valenthielles prison. +imprisoned her last time due to the help of the + +Carduneld dabbled with Envy but didn't enter any +Meet with brother fracture in the +bazaar, Andy [uncertain: Kallamar?] with him, +they were on their way to the front lines due + +Direct Brother Fracture to Lady fat Rabbit. +- go to the teleport circle in Valenthielles prison. +- 20 ft square room, with no doors, made of seamless stone. +Rock statue when touching the wall. Felt a slight difference +in temperature. + +Decide to go down the middle door as this +is where the guard/prison was. +Lucas hits the door & nothing happens - hits door +again & they have cracked their doorstop after a while. diff --git a/data/2-pages/144.txt b/data/2-pages/144.txt new file mode 100644 index 0000000..64dd250 --- /dev/null +++ b/data/2-pages/144.txt @@ -0,0 +1,33 @@ +Page: 144 +Source: data/1-source/IMG_9808.jpg + +Transcription: + +Use Heamon's skull to try to open the door +- doesn't work. + +Put a Grand Towers Penny on the wall & the door + +10ft of corridor & then darkness, Joy is thick & + +Day light makes the darkness retreat back to +shape of a female figure. + +Morgana touches it & takes damage. +Door at the end of the corridor +but a peep hole at the end of the next trapped. +Dirk looks through and takes damage. +Open the door - smoke at the end of the room, +symbols on the floor for the prison, smoke +on the far side of the room where the explosion +may have taken place. + +She lays her hand on Dirk's shoulder and +asks to come with us. I turn around & +take damage. + +had visitors recently - very friendly & promised to come +back but they won't be back soon, got +cleaned up pretty quickly. +- teleported outside the prison & left valenthielles in +there. diff --git a/data/2-pages/145.txt b/data/2-pages/145.txt new file mode 100644 index 0000000..54dd21e --- /dev/null +++ b/data/2-pages/145.txt @@ -0,0 +1,36 @@ +Page: 145 +Source: data/1-source/IMG_9809.jpg + +Transcription: + +Morgana sees Joy in the trees motionless +looking very odd - illusion. + +Various mutated animals belch out of the woods. +Enter combat with them all & the betrayer. +Carduneld joins us. +! Dead ! + +Carduneld & Rubyeye talk - they should probably +it will put us in danger. + +Try to ask what they know, but they don't +want to tell us. They think we should focus on the + +Rubyeye regaining some of his memories. unsure if they +should re-negotiate some of the deals made with the +Look into if they can break the curse on the inferlite +& the damage the barrier causes. They want to +look into it. + +Not just Rubyeye's memories that were tampered with - Icefangs +were too. + +Think we should talk to Mama Hearthall but need +Head to Stone Rampart Earthwise +- Rubyeye & Carduneld leave. + +go to the cathedral +- priests walking around dealing with people. +2 humans with blistering skin, priest heals them +& comes over to us. diff --git a/data/2-pages/146.txt b/data/2-pages/146.txt new file mode 100644 index 0000000..bedfbdd --- /dev/null +++ b/data/2-pages/146.txt @@ -0,0 +1,35 @@ +Page: 146 +Source: data/1-source/IMG_9810.jpg + +Transcription: + +Highden Fell - Armies retreated to the fire wise +mountain - 2nd level. 14:00 + +Issues with sickness - internal consumption, from the +crystal. + +Tell him about the crystal sickness & should get +people to spend time away from the city. +tells us to go see the Earl - In the other foot. +Statue was created by the 5 mayors. + +Head over to see the Earl. +Park in the middle of the legs - plants are in +bloom. +Militia - jagged rock keep on their tabards - lots of activity, +leave a message with a lieutenant to speak +She didn't have it as was born in Highden & + +Frog appears to Laura and wants my attention +and motions for me to follow. Don't & Sevor-ice +can't follow - possible bullying. +get another sending Stone - new number +- somebody from the underbelly. +Highden lizard folk on the building, +it mumbles something as we leave & I shut up. + +Hello - casting invisibility - Morgana casts thorn +whip on it. Skulking, was scared of us +was sent to deliver something to me. +Boss told him to come. diff --git a/data/2-pages/147.txt b/data/2-pages/147.txt new file mode 100644 index 0000000..4de41c3 --- /dev/null +++ b/data/2-pages/147.txt @@ -0,0 +1,37 @@ +Page: 147 +Source: data/1-source/IMG_9811.jpg + +Transcription: + +wants to go somewhere private + +Gnoll sat in a rocking chair - old & blanket covering, +"granny" Underbelly liaison. +lizard called Scurry. + +Knows what we have done in town. +Doesn't know if Hearthall is here yet. +- underbelly getting back on track now Lady Coke is +back. +- they are the only two to trust. +- Highden is a wreck. +- troops taken over the inn - Never sees the sun. +Send Basilisk a note of current happenings. +- Use the pulley lift system to go to the inn + +Guard on the door. 60 ft Giant. Not the size of the +Tor statue. leads us up the stairs to the +Commander. + +Elven Commander - laurel of white roses around his +head, not muscular, like the elves we've seen, has +a beard & green peachfuzz which isn't standard of elves +(Moss couch elf) +- Captain Briarthorn - elf hundred. + +- Hopes to use the natural terrain of the river as the +battle point. +tribes folk in the thousands. goliaths?!? +Blue dragon was spotted with them but hasn't +been for a while. +will mobilise the troops now the mother has been slain. diff --git a/data/2-pages/148.txt b/data/2-pages/148.txt new file mode 100644 index 0000000..7edcf68 --- /dev/null +++ b/data/2-pages/148.txt @@ -0,0 +1,38 @@ +Page: 148 +Source: data/1-source/IMG_9812.jpg + +Transcription: + +They have some "excting" Obsidian Ravens. +Advised to stop using them - all messages back +have been not to support the cause. +Gerald goes to get the quartermaster. +Raven is a stealth version. doesn't think there is +anything wrong. + +Send a message to Dirk. Dirk said he'd be +there in a minute & it come back saying he +couldn't come. Told the quarter master to send +messages telling troops to come regardless of a +reply. +Loan Errol to the commander for 2 hours. + +Go to another Inn "Three full moons." +Talk to Gary a house farmer - Dog called +Shep. + +Go to see Captain Briarthorn - Lady Hearthall +is there fully armoured up. +Plans - Giants close to where they want to +ambush them. Dragon to try to break off +some of the larger giants & we can attack +Some towns responded via Errol & are sending +small troops to aid. + +Arrange to meet "Hearthall" in the forest. +Plan to cause a fire to break away the big ones +from the army. + +Whilst on the dragon - see a black plume of smoke +on the edge of vision at the mountain. +Plume - Hearthall Highden?? Magical in nature. diff --git a/data/2-pages/149.txt b/data/2-pages/149.txt new file mode 100644 index 0000000..41a1124 --- /dev/null +++ b/data/2-pages/149.txt @@ -0,0 +1,35 @@ +Page: 149 +Source: data/1-source/IMG_9813.jpg + +Transcription: + +as we got closer smoke shape is coming +attack us. + +Hearthall protects us from the Dragons flame, +giant attacks us. Bashes Inver into the ground with +his mace & all the others close in to attack us. +Dirk clings to his arm & climbs up his leg. +Morgana summons a Bear & grapples around +his arms. + +Defeat all of the Giants! +Hearthall & skeletal dragon fighting each other. +Skeletal dragon has the book from Rubyeye's lab. +The words he spoke from the book he didn't understand. +Teleport out to the armies. +Dragon heads over to us. + +feel like I'm sick & salt water in nose - feels like after +I held the White Rune. + +Dirk has a brain tickle - familiar +another feels in a room with other Goliaths sickly threat +on female green dragon armour. +chin ticks like Shibble grossing, chest around table is +intense, female smiles & says "you need to go back to now" + +Geldrin - circular table mages were around discussing +her - slides a paper to her. +man - knee deep in a ford. as he crosses - woman says no no no +red thorns everywhere. diff --git a/data/2-pages/150.txt b/data/2-pages/150.txt new file mode 100644 index 0000000..a4f9350 --- /dev/null +++ b/data/2-pages/150.txt @@ -0,0 +1,35 @@ +Page: 150 +Source: data/1-source/IMG_9814.jpg + +Transcription: + +Hearthall - saw her mother buried in the ground. + +go to the river - speak to water elementals or to +help with the flames from the dragons. +Dirk uses the rod to speak to the elementals. +Water Elementals say we need to agree to free +Icefang Ice elemental in the prison at Rimewock, + +Geldrin summon the void elemental to help us +says we will owe him another favour as Garadwel +Garadwel revenge is the previous favour - +- Do not free Valentenhide & let Kasher Reign +- Not oppose Kasher - will bring somebody else to the fight +- Agree to the water Elemental. + +Geldrin tells the void we can't accept the +manage to tell him it maybe trapped. when +he gave him a dead grub (like the ear grubs) +a wanders. + +Appear (in our minds) in a palace style room +plush carpets. Sat looking at us is an elderly gentle man, +Icefang, looks older than his paintings. appears sane +& at ease, he says I disagreed. +- mage table - Icefang shouting at Browning, dark elf +appears & drops a grub in his ear. Never would +have dropped a rope, glad he's sane before the +end. We need to right the wrongs we can't +Don't feel sorry for him he's lived a good life for the half +he can remember. diff --git a/data/2-pages/151.txt b/data/2-pages/151.txt new file mode 100644 index 0000000..75866e7 --- /dev/null +++ b/data/2-pages/151.txt @@ -0,0 +1,37 @@ +Page: 151 +Source: data/1-source/IMG_9815.jpg + +Transcription: + +The barrier was a good thing but too many +sacrifices were made. Black hole appears under + +Snow flakes appear & a massive frost dragon +bursts through the hole & takes the +skeletal dragon with it to the barrier & +passes Hearthall & says "My Child" came back through. +Icefang crashes through the barrier & +soot crashes down from the barrier very badly +injured. I feel the salt water feeling again. + +Icefang crashes into the river. & soot +shouts he'll take us all with us. + +Dark Cavern throne made of skulls - walks towards +it & the figure sitting on it pale human female +bleeding eye sockets & skeletal hands & feet. "hello +my child what is it you wish" dispel dragon magic. +"Only just put it on and took him as payment" "watched +him with great interest since hatching didn't" "have some of the +other deals caused you" No but taking the mother down +was, offers to give her Garadwel. She agrees & +Geldrin chants & soots flames vanish & bones scatter. +I Breath weapon the dragon head. +Water elemental retrieves Icefang & lays him on + +Hearthall doesn't know who her father was always told he +passed away in battle whilst her mother was pregnant. +Tirars vision was at Rellport point us leeches +attack in the river & make you believe they're not +actually there so they can feed on as much blood +as they want. diff --git a/data/2-pages/152.txt b/data/2-pages/152.txt new file mode 100644 index 0000000..1c54b7b --- /dev/null +++ b/data/2-pages/152.txt @@ -0,0 +1,41 @@ +Page: 152 +Source: data/1-source/IMG_9816.jpg + +Transcription: + +Hearthall - saw her mum in the ground being trapped +by hundred tiny red creatures. + +Portal appears & Valenth & Rubyeye appear - she knew +before we told her. + +Ruby eye realised they did it to him. +Dark elf was he from Envy's apprentice +they've been making plans +- curveball, one - swap Valentenhide with Kasher. + +Coin appears & thistles on the ground blue. +Portal appears - carriage pulled by 2 cows +& really dressed up guards. Door opens as an +elderly gentleman appears (one in the vision of the birth +of Provita) Lord Bleakstorm. Chant a message from Icefang +from outside of the dome. +he looks no different than his pictures as he is dead. +Hasn't freed the auroch as he can't be inside the +dome for long as Browning will find he is here +& send his minions on him. +gives me a Snowflake coin - Portal to Bleakstorm - one use. + +Info - Kobolds are very good at digging barrier + +Nothing in the grub - has similar properties of a +leech crossed with a larval state of a fly. + +Cardunel to take Icefang to be buried near +Snow sorrow. + +Geldrin going to try to free Justicarus by pretending to be +Grand Towers medical team. + +Arrive back at the troops camp. Dirk's jaw will +remain for the next 24hr. diff --git a/data/3-days/day-32.md b/data/3-days/day-32.md new file mode 100644 index 0000000..5220e47 --- /dev/null +++ b/data/3-days/day-32.md @@ -0,0 +1,533 @@ +--- +day: day-32 +date: unknown +source_pages: + - 112 + - 113 + - 114 + - 115 + - 116 + - 117 + - 118 + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 +source_ranges: + - data/2-pages/112.txt:14-29 + - data/2-pages/113.txt + - data/2-pages/114.txt + - data/2-pages/115.txt + - data/2-pages/116.txt + - data/2-pages/117.txt + - data/2-pages/118.txt + - data/2-pages/119.txt + - data/2-pages/120.txt + - data/2-pages/121.txt + - data/2-pages/122.txt + - data/2-pages/123.txt + - data/2-pages/124.txt:6-11 +complete: true +notes: + - No confirmed Day 33 or Day 34 boundary appears before Day 35. + - data/2-pages/118.txt line 36 `Day 27` is treated as an internal note rather than a boundary. +--- + +# Raw Notes + +## Page 112 + +[left margin] Day 32 [uncertain: Chuwee] + +Hillfolk village between [uncertain: Prortibhe] & Stone rampart. +Earthwise. one I know. + +Decide to travel to Hearthwall - Rift block. +Statue to Lan (Earth god to love, home & family) outside Hearthwall - teleport there. on target. +Statue of Lan is very similar in style to the Statue of Serva. +2 guards - human & half elf - +city is fine - Lady Hearthwall still injured. +Lady Freya in attendance in the city. +- other items for sale by Xinqus. +Mirth is in town for the auction. +11,000 occupants. Dual wall city. Clean & tidy streets. +- Auction house is the Grand Auction house. takes place at 2pm. 11:00 +Food at the Baked Mattress. + +## Page 113 + +go to Baked Mattress for food. + +see a human sat down with a very noticeable underbelly. +Barkeep - Patches of night & husband. +Xinqus in town! + +head to auction house. +870kg. +See a [uncertain: pigeon/aracock] with Xinqus's cart. Xinqus is inside. +"1600" + +Walk to the front of the queue. Mirth at the front of the queue lets us in & gives us a number. + +Dragon - Retribution shrine on Azureside. +Very eclectic bunch of people in the auction. +everybody else seemed to pay to get in. + +Auctions - Number of coins - grand towers penne / Goliath coin s x2. +- Bottle of wine - sosen mistle eel. +- Pocket watch functioning - squares showing moon cycle. +- green rimmed glasses - elven. +- Small mahogany box - red velvet curtain - illusionary scenes form box. +- loved patched leather backpack - bag of sorting 3-500g. 500lb or 64 gems. only weighs 15lb. +- silver scorpion on a chain - Holy symbol of Noxia. +- long sword - 8/400 years old. Style Invar makes. Firefang - sword +1D6, 5 charges spell charges and Burning hands. 4500g. +- Amle - for adult? +- ring crystal on top of it - ring of protection. +- Chariot - The Guilt is interested?!? +- Big scroll of paper - Arcane writing. Geldrin tries to check what it is & casts dispel magic. The words disappear from the page - Browning's scroll. New random spell appears each morning @ 2:37. 600g. +- Bracelet of locating. +- Art cork - rare poetry books. +- Talon of soot. + +## Page 114 + +Xinquiss comes in the room & sees us. +Takes us to a new room as his presents. +it is the shield crystal - agree to drop off a piece. + +* we add an auction for one of the Brass city +platinum pieces. + +Tell Xinquiss the quilt maybe an "excellence" or working for one. + +- Mith running the auction +Arabica pechen lady - one side of us - Candelissa Hustlebustle +Mermain / Shark tattoo - Tux & top hat - other side + +3rd row: Aon Ankt my Blood letting tutor + +- Lot 1 Bottle of booze, Elven - famous wine 28 yr 20g +Lot 2 100 yr old Candelissa +Lot 3 older one 350g Candelissa. +Lot 4 Smehlebeard whiskey 270g Janet Boulderdew +Lot 5 Crankfruit 75 yr bottle one - 280 years 400g +Lot 6 Blind gale XXX physick before imbibing +Lot 7 cherry wine (Sereza) 10g +Lot 8 +Lot 9 + +Me. coins: Lot 10 5 Black dragons 10g shiny man - dressed up by someone +Lot 11 Grand towers penny 3g - Raven no 1 +Lot 12 golden crown 2 silver clappers 15g +Lot 13 Dwarven copper coins 2 people bidding 1g +Lot 14 Electrum no sale +Lot 15 silver pieces - gnome great Fummouth. 8g Raven 2 +Lot 16 Brass city coin 160g Tobaxi - shaved head pink mohawk + +Art: Lot 17 talon of soot 50g remote bid. +Lot 18 painting - lord Bleakstorm refuses demands +female being relieved in caroline Harthwall(?) infant & a blue cow +male recognize? - Iceborg. Jayseel horns +image of someone lowering a rope down a hole 35g +for too much jewellery < human male + +Lot 19 obsidian & bone statue - crab claw & talon shielding Throngore +over a featherless female - "Valententide's Betrayal" 140g +Raven 1 + +## Page 115 + +Lot 20 Davina Browning covering her eyes with her +hands & eyes on them - "circling vultures" +10g Jewellery guy + +Lot 21 Love poetry blessings of Laurel 7g. +Lot 22 Red & Blew glass sculpture of Serra. 10g. + +Lot 23 Functioning moon pocket watch 175g +Lot 24 green rim spectacles - translate elf into common 112g +Lot 25 Mahogany box (Smulty box) 30g Bidder elf/flirting women goat legs +Lot 26 Ray of sorting & stirring 85g +Lot 27 Forest comb - elven - of delousing 35g. +Lot 28 Flute - mice carved - elven - turtle flute 65g. +Lot 29 hourglass of smoke instead of sand. 85g. + +Lot 30 holy symbol of Noxia Raven 1 175g +Lot 31 shield ring - runes of Lauren 600g werewolfish [uncertain: Repiteth] +Lot 32 Firefang 2050g Red & purple hair dwarf male +Lot 33 Chariot excellence defeated in "battle of the unending seas" +4 people bidding 2 Ravens/jewellery men/emissary + +Bidding war: Jewelled men on short paths Dally who walks +in the room - Harthwall partner +Lady Thorpe +11,900g, [uncertain: we got] 14,000g - already levelling it up onto a wagon? +Many guards outside. + +Lot 34 Browning spell scroll 6,200g - Jewellery guy + +- Skulk out to check on Lady Thorpe. +6 guards around. Transparent dragon silver dragon livery. +While feeling better - insisting on going back to the +front lines not going great. +looks a bit flustered - confused & flustered, something +odd about her mannerisms & feels uneasy in responses. +Don't think she knows who I am. +or she says she is. + +35. Mimic mouse trap +Arthur group +Conrad Harthwall +Numbhotall / Scrambleduck / Nambodall +Older human man & robed figure carrying along beside +Silver dragon born, backpack of scrolls & floating book. +gnome wooden shield with goldenduck on it +Justicars - looking for Xinquiss + +## Page 116 + +Don't recognise Inwar + +Laura wins Bracelet of locating 101g +Mith teleports away - Justicar tries to Counterspell(s) +Scrambleduck smashes stick on floor casting a spell. +(locating duck) +She turns round & I bang into something +invisible - go to attack her + +Browning - Skutey Galvin wanted for impersonating a +Justicar. + +Concentration spell fails & Lady Thorpe turns into +a llama - 2 guards behind me help me +& her guard tries to get me. + +Warrant for our arrest has been quashed by somebody +up high. + +waitress opens a trapdoor where Xinquiss is hiding. +- call myself Constantine Harthwall to the Justicar. +- guardsmen takes chariot & everything to the +Palace - Lady Harthwall wants to see us in the hours. +- Justicars take llamia to grand towers. + +Dith & Geldrin & Morgana escape with the shield crystal +down the trapdoor into a house & Xinquiss calls +Wroth to come & help hide the crystal - he does. + +Dith, Geldrin, & Morgana try to disguise themselves +& head back to the auction house. + +Eliana & Inwar enquire about them all & +get told about the trap door. 4:30 + +Head to the Castle. + +Halfling (higher rank) General - has a huge sword, +strides over to us (really ornate armour) + +## Page 117 + +Lady Fatrabbit (blossom) (Halfling) - also the sheriff. +Castle. Takes us through the Castle. +- Engravings on armour is a dedication to the +god of Law. Castle seems busy - shortstaffed. + +Lady Thorpe is missing. thinks it was fairly recently +as Lady Harthwall could have known it wasn't +her wife. + +Lady Fatrabbit leads us to a bedroom where +Lady Harthwall is. - Doctors making some antidote (for?) + +Suggest poison & trouble hiding her true form. +Llamia - may have done it. seems like a magical +poison - religious curse (Noxia?) (Great pain) + +Furres stretched thin - Goldenswell removed forces +wants us to help. + +Only noticed she has not visited her as much +as she expected. + +She was with her when they came back from +the front lines at Hilden with a few guards. +Creatures they were fighting did not seem cunning enough +to do this. + +- Geldrin casts scrying on Lady Thorpe. +- Stone room, chained up, looks like a dungeon +Dull image, no light, injured, malnourished, no fleshcrafting +1 door (cell door), grey mountain stone (not seaward/Runeyend) +same type of stone as the Harthwall Castle, Door looks +made of wood, iron bound reinforced with an iron +grate at the top. Dungeon in Ca looks similar to this +castle. +There is a dungeon in the castle & militia house. + +Want to check all of the Dungeons between +there and Hilden. + +## Page 118 + +Lady Fatrabbit leads us to the castle dungeons +# not there. +over to the militia house - looks like the militia +building in Everchard! Nobody stops her from walking +in. Doors look like the one Geldrin saw, it looks +very similar to the room he saw. +Fatrabbit asks guard for current roster of the prisoners. +Clay Meadow / Everchard / Redford point / Stonehedge / Goldenswell +stone structure different. + +Me & Dith go looking into all the cells, she's not +here. Barrett comes back with the roster everything seems +in line. + +- prison on the road to Stonehedge for longterm +prisoners who didn't take the death penalty. +metal doors. 19:00 + +Claymeadow - Lady Neegate - quiet lately due to a loss in +family. +Decide to go & make a plan before speaking to +the wizard, go to the Irate Unicorn. - shrine to Law here. + +Ask Busalish for help from the guild to check +the prisons. + +- go to see the wizard. +Tortle - can teleport us somewhere, will come +back tomorrow. + +Day 27 + +Bag humming & glowing, & note from +Busalish. +Redford & Everchard, No Lady Thorpe. +Refused & prevented from Goldenswell, met a few +things reporters etc. +little Bugy as someone tried to assassinate Sefris on the ground +(Cult of Salvation) +last night + +Skull is glowing & humming vibrating & humming +give to Geldrin + +## Page 119 + +Connection destabilises all charms out of +the windows. + +Tri-moon visible in the day - doesn't usually happen. +seems to be hanging ominously. Usually see in +the dark - seeing in the daylight it shows it as a crystal. +Barrier looks normal & moon doesn't look any different +in size, can see the small chunk. 09:30 +Geldrin estimates it should be there around 2am +so 16 hours ahead of schedule. + +Tell everybody about Busalish note & 3 prisons. + +Go back to Tortle mage, (Jin-Loo). +Tell him about the Tri-moon - found it happened +3 times in the last 1,000 years (when records began) +104 AD +339 AD +629 AD +1012 AD +Asked him to find out of +anything significant happened on these +(Nothing) + +Go to Goldenswell (teleport) Museum Gardens + +Bleakstorm - possible name for the tree we teleported +next to. - from outside of barrier Airwise - very cold. + +Go over to the Militia House. - Morgana locates +Lady Thorpe in the building 2 floors down in the middle +of the building. 10:30 + +Plan for Geldrin to pretend to be a Justicar +into the building. (Half sun tattoo obscured by a +waterfall - yellow guards wearing) +Geldrin storms into the guarded room. The guard +who went to get the captain is leaning against +the window & servant does not look busy! + +## Page 120 + +Captain is reading "101 who's who of the +Penta city states" picture of Scrambleduck. + +try to arrest them. + +Morgana & I go through the other door. +Find Lady Thorpe (set of traps went off) & we +carry her out. + +Meanwhile Geldrin is mauled & tries to get +thieves tools out to open them. Dith gets keys & unlocks. +Captain tries to send a message to say they've +been discovered send help. + +Take Captain & Lady Thorpe & a cart & +leave the city, manage to get out. +Come off the road & find a place to hide. + +Message Busalish to let him know we have +her, revive Lady Thorpe. + +Man who had 1/2 snake for a body +(lower 1/2) Travelling back with the Goldenswell army +when they decided to leave. + +Bug Geldrin stole from the Captain's office - 50 platinum +pieces (Frawshers currency) & a grand towers penny. + +Need to question the captain. + +- wake up the captain. get in trouble with the Duke +for attracting the militia. + +was told it was a sensitive situation & not +to let anybody in. Duke sends one of his +emissaries to feed her. Knows he's doing something dodgy +but doesn't know the full truth. Some woman, bag on head, +orders came from the Duke's office, few of the other guard +knew about it. +off the books prisoners have been done a few times +last one was a week or so ago & still down there + +## Page 121 + +Woman & a man +female Halfling +Alf wants out allot - Elementarium + +Busalish message - Don't come to Strong hedge Compromised + +Elementarium was in the town Crier information 4 days +ago but imprisoned over 1 week ago. (There's an imposter in place) + +Try to contact Cardencalde via Eroll - she didn't answer +? why as it contacts her directly. +Sent message to Lady Harthwall via Eroll. 16:00 + +- other prisoners held on the same floor - 7 altogether +getting a few a week over the last month +had a few people try to get in - people trying +to survey the prison. Goblin (Scumi) with Bag of +skulls + +- Eroll returns with a ring - Jin-Loo +appears next to us - keep the ring so he can find us again. + +Skull ascend to godhood - is when the moon did it +is like Tri-moon (Treamen) +Geldrin tries to attune to the skull. + +- obsidian raven circles overhead like it is looking for +something. flies off towards grand towers. + +- Geldrin attunes to skull - Women (no belly button etc) crab claw grabs +Vallententide her & she disappeared. +Black & white dragon fighting & white dragon injured. +silver dragon rescues. +Veridian dragonborn - gnome & old man smile at DB & nod +629 AD +Throne room - Dwarven guards - walls crumble as giant +skeletal dragon breathes out (today!) Soot! +The things he gazed upon last. + +## Page 122 + +- Skull can crush foes let him pass, show visions +(only thing he has seen) +- The lord above place in the sky. + +Noxia can poison things to stop them being their +true form. + +- has influence over the barrier - can bend it +- was assaulted when he came to the god +meeting. - mortals + +- Valententide was attacked by Throngore - Darkness + +525 years before the veridian dragonborns - dragons fighting + +Gary corrupted sphinx heading towards grand towers. + +Shows us a projection of grand towers using the moon +reflections. +see a man walking through streets towards the +(prison device) + +Shows "The Mother" crater small town (this was the place he fell) +small girl sat at a table (halfling) seeing dogs together + +Condennis Place - empty - takes us to an underground +Dwarven city. laid out on a table with a skull +floating next to her and an old wizened dwarf +noting - wizard from Inwar's vision, looking after the molten +prison. & touched it & stopped it leaking. (ruby eyes wife? village) + +Militia house (same desk sergent sitting there now) +elven man - Elementarium +human - Male mid 40's scar on right cheek +halfling woman - Baytail accused head of underbelly +Empty cell - +half elven woman - bears a resemblance to someones sister - seen their +brothers before *1 + +## Page 123 + +Kobold - tattered robe - recognise the robe. +Halfling female brown speckled eyes (like tiger eye) pale skinned, +we have met - Isabella Neegale's aunt? Earl of Clay Meadows + +Goliath City - ruins - sickly Goliaths being attacked +by lions - overseen by brutal looking veridian +for tea. - all dragons mutated. +Tower purple glow nestled around it is a massive + +*1 first Justicar who chased us body guard's +sister + +needs to be next to his foes to smite them. + +The chorus - standing outside the house looking up +at the sky - never usually leaves the house. + +7 prisoners at Goldenswell +- Clay meadows +- Strong hedge +- Redford point +- Seaward +- Gnoll +- half elf woman (sister of the Twin Justicar guards we +met on the way to seaward) +- Harthwall - rescued + +Head Back to Goldenswell with the Captain via the +side roads. + +Disguise ourselves with winter clothes. +Duke's personal guard brought them in. +Bribe him with 50 platinum pieces & his money back +for his help. +give him 1 platinum as a down payment. +to get us into the prison rescue all the prisoners +and get him out of the city. + +## Page 124 + +offer the rest of the guards money. +Maybe the Duke's guards on the gates won't be bribed. + +go in through the Earthwise gate +guards likely to have been drinking 12:00 diff --git a/data/3-days/day-35.md b/data/3-days/day-35.md new file mode 100644 index 0000000..099a951 --- /dev/null +++ b/data/3-days/day-35.md @@ -0,0 +1,266 @@ +--- +day: day-35 +date: unknown +source_pages: + - 124 + - 125 + - 126 + - 127 + - 128 + - 129 + - 130 +source_ranges: + - data/2-pages/124.txt:12-46 + - data/2-pages/125.txt + - data/2-pages/126.txt + - data/2-pages/127.txt + - data/2-pages/128.txt + - data/2-pages/129.txt + - data/2-pages/130.txt:6-8 +complete: true +--- + +# Raw Notes + +## Page 124 + +[Day 35] + +Gates opening & closing - guards look like militia. +guard leans over to the other noticing us + +Taken from the station - All a drill to test the +safety of the prisoners - Pay him for doing well +in the drill. + +- Guards chatting idly & handing out the coins. + roads quite quiet. + Few people milling around the building. Few militia + & a few Duke's guards. Change course to + the back of the building. + guard on the back gate lets us in - Morgana tries + to bribe him. + Duke's men all inside. Morgana turns into a spider + & goes inside to check what is going on. + Offices have been ransacked - guards still doing paperwork, + some being interviewed by the Duke's men. + at the curtained office (Captain's office) man in white gloves (human) + investigating the office & the false drawer. Acting really odd. + Mr Seneshell + Prisoners ready + +Someone comes in +Bring them out the front + +go to attach the bangle to the cart lots of +people around difficult to get there - get invisibility + +Try to swap the horses for fresh ones. Daisy / Applejack / +Carrot muncher / [uncertain: Harpvicarch] +kobold female & halfling escorted out +attach bangle & loosen a axle. + +## Page 125 + +Barrier thickens - 2 groups hitting it +can feel the domes pull. + +give the captain a further platinum for getting +us this far - & we head out of the militia +house. 20 min later Morgana senses movement +towards Claymeadow. + +On the way out - see two watchmen one seems +off. Geldrin tries to check for automaton. +He is an automaton. + +Queue at the gates. go round to the front +of the queue to persuade guards to let us +through. Guards thought he had been removed +from duty. + +Other guy gets something out of his pocket & +goes around the other side of the wagon at +the front of the queue. check the cart & don't +find anything. + +Ask [unclear] to check on them - 2 carts +travelling on the road. no panic. +6 people on the exterior - cannot see interior to +tell if there are guards inside. +Start to catch up with the carts. + +were single file but they then +seem to spot us & move side by side with +crossbows pointed at us. 02:00 + +Tell us to maintain a distance & leave them +alone. Morgana tries to persuade the horses to stop. +They shoot at us. + +get on the top of the cart & shoot at them. + +## Page 126 + +Back doors open - man with white gloves +stands in the middle adjusting his gloves. + +2nd cart doors open, Batista fires at us. + +Enter Battle - Morgana stops the carts with thorns +& kills all external people / horses. +Geldrin kills 2 on the ballista with an acid +ball. + +Boss - lower half of body turns into a snake +& leaps towards us attacking Dirk & Morgana. +guards in the cart turn into llamia. + +- all the prisoners in the wagon appear to + be unconscious - Drugged in some way. + Geldrin kills snake guy with a fireball. + I kill a llamia after the fireball. + Morgana kills the other llamia with another + cart wheel. + +All dead (bad guys) + +Find a silver chain with a serpent pendant on the +snake guy. - Magical talisman +1 cleric cash rolls [unclear] +with Noxia catch spells. + +Prisoners are magically asleep. +- Lady Katherine Cole +- Elementarium +- kobold +- Lady Katherine Neugate (Isabella's Aunt) +- Lord [uncertain: Harmock] Hayes. - rallying point +- Half Elf female. + +Move the captives to our cart. + +Set fire to the carts & leave +head off the main road airwise towards +Bluemeadows. 04:00 + +## Page 127 + +[crossed out: River] Enter Bluemeadows + +At a church? +fields full of Bluebells in bloom - odd this time of year. +very hardy. look like crops. + +Geldrin adds a college of surgeons symbol +on the wagon & we head into town. + +Man on the steps looks like local militia. stops +comes to talk to us. - Doesn't have a serenity stone +Lady Esmerelda. +Bluebells used for Dye. + +Get provisions. +- Grey Gables is the next town Airwise. +- Kobold wakes up. - Mr TJ Biggins Plantation of + Newt [unclear] Vain - Run outside of the dome. + doesn't get on with the greenscale family. + or the loose teeth. or the blackscales + who go to their town for the tributes & then leave. + Thought we were Bumblebeers (people from down the + road - Red Goliaths but bigger. + +head out of town Airwise + +Lady Envy - Boss of Llamia's sand dome was to +keep elementals out. +his town is known for mining. +All the people come & get tributes from his town & leave. +Fire & earth raids on the town. + +- Saw a gnome last time the Bleakshrouvers came + to town. +- Pay enough coins can get in the dome. + Dirk shows him what the dome is using + a bun & now TJ calls it the "Bun" + +[side note] Pride. Lust. greed, wrath, envy, gluttony, sloth + +## Page 128 + +7 moons passed between him waking +up in prison & waking up with us. Went to +sleep at home & woke up in prison. + +Half Elf lady stirs - youngish Rein lore elf +very elven looking. reminds us of the twin guards of the justicar. + +- Lady Yadreya Egrine. Baroness of Riversmeet. + Was with the menagerie - creatures gone missing, + the more experimental creatures. + New ones went missing about a month ago. + She wanted to know more about it. maybe + why she was taken - few days ago - had + a spell cast on her - in chamber, doing paperwork + when felt a spell being cast on her. + Lady [uncertain: Huthnall] - looking into corrupt slate, etc. + Inquisitor from Salvation - Thrice pass on the ground. + Lady [uncertain: Suisant] De'Beauchamp - Iron craft fire wise. + +Lady Katherine Neugate wakes up. +seems reticent to talk to us. +all seem to work off the same council. +Captured for 4 days. +mentions the same people who are missing from +the council neither mentioned the guilt +neither have met him. + +- Lady Katherine Cole wakes up (my Boss) + 3 days + 3 paws - Beauchamp. not the guilt. + all believe he was never part of the + council but he was. + +- all have dried blood in their ear canal. + +## Page 129 + +all seem to be ear drum injuries. +& a little deaf in that ear - looks like something +lodged in the ear drum - pupae in each one. + +- pull it out of Lady Cole - large grub + attached to the ear canal. Egrine has seen + them in the menagerie. + kill the grub & she has her memories back. + felt like she was being watched. + +Tarrak wakes up from the removal. +all had forgotten The Guilt was a member +of the council & were told not to trust him +& all don't feel like they are being watched. + +Third on the roof of the cart. +Skum appears on the roof to rescue +Elementarium - gives us Bob's shell. + +Never saw him at the Goldenswell guardhouse. +Sat there for 2 days. +human who walked like a horse missing +2 legs. + +silver dragon man who was wearing a cloak. +silver dragon man cast a spell on Elementarium +& he walked out with them to the cart. +he was imprisoned for approx 2 days. + +Morgana kisses Elementarium to try to wake him +up. feels like she forces him. sees a laughing female +Dragon. (Peridot Queen?) 12:00 + +Geldrin hits him he opens his eyes and they +are green. + +## Page 130 + +We all sleep whilst the rescuees +drive us to Brookville Springs. 20:00 diff --git a/data/4-days-cleaned/day-32.md b/data/4-days-cleaned/day-32.md new file mode 100644 index 0000000..3030f21 --- /dev/null +++ b/data/4-days-cleaned/day-32.md @@ -0,0 +1,139 @@ +--- +day: day-32 +date: unknown +source_pages: + - 112 + - 113 + - 114 + - 115 + - 116 + - 117 + - 118 + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 +complete: true +--- + +# Narrative + +Day 32 began in a Hillfolk village between [uncertain: Prortibhe] and Stone Rampart, earthwise. The party decided to travel to Hearthwall because of the Rift block. They teleported to the statue of Lan outside Hearthwall and arrived on target. Lan was noted as an earth god associated with love, home, and family, and the statue of Lan was very similar in style to the Statue of Serva. + +At Hearthwall, two guards, one human and one half-elf, were present. The city seemed fine, though Lady Hearthwall was still injured. Lady Freya was in attendance in the city. Xinqus had other items for sale, and Mirth was also in town for the auction. Hearthwall had about 11,000 occupants, dual walls, and clean, tidy streets. The auction house was the Grand Auction House, with the auction taking place at 2pm; 11:00 was also noted. The party went to the Baked Mattress for food. + +At the Baked Mattress they saw a human sitting down with a very noticeable underbelly. The barkeep was noted as "Patches of night & husband." Xinqus was in town. The party headed to the auction house with 870kg and saw a [uncertain: pigeon/aracock] with Xinqus's cart; Xinqus was inside. "1600" was recorded. They walked to the front of the queue, where Mirth let them in and gave them a number. Everyone else seemed to have paid to enter. The auction drew a very eclectic crowd. A dragon and the Retribution shrine on Azureside were noted. + +Before the detailed bidding began, the auction lots were noted broadly: grand towers penne / Goliath coins x2, a bottle of sosen mistle eel wine, a functioning pocket watch with squares showing the moon cycle, elven green-rimmed glasses, a small mahogany box with a red velvet curtain that formed illusionary scenes, a loved patched leather backpack that was a bag of sorting worth about 3-500g and able to hold 500lb or 64 gems while weighing only 15lb, a silver scorpion on a chain that was a holy symbol of Noxia, Firefang, an 8/400-year-old longsword in the style Invar makes that added +1D6, had 5 spell charges, and could cast Burning Hands, an Amle for adult?, a ring with a crystal on top that was a ring of protection, a chariot that interested the Guilt, Browning's scroll, a bracelet of locating, art cork, rare poetry books, and a talon of soot. Geldrin tried to check the arcane writing on Browning's scroll and cast Dispel Magic; the words disappeared. Browning's scroll produced a new random spell every morning at 2:37 and was valued at 600g. + +Xinquiss came into the room, saw the party, and took them to a new room as his presents. It was the shield crystal, and the party agreed to drop off a piece. The party also added an auction for one of the Brass City platinum pieces. They told Xinquiss that the quilt might be an "excellence" or might be working for one. + +Mith was running the auction. Beside the party was an Arabica pechen lady named Candelissa Hustlebustle, and on the other side was a mermain / shark tattoo person in a tux and top hat. In the third row was Aon Ankt, the narrator's blood letting tutor. + +The drink lots began. Lot 1 was a famous 28-year elven bottle of booze and sold for 20g. Lot 2 was a 100-year-old bottle bought by Candelissa. Lot 3 was an older one sold for 350g to Candelissa. Lot 4 was Smehlebeard whiskey, bought for 270g by Janet Boulderdew. Lot 5 was a 75-year bottle of Crankfruit, one noted as 280 years, sold for 400g. Lot 6 was Blind gale XXX, with "physick before imbibing" noted. Lot 7 was cherry wine, Sereza, sold for 10g. Lots 8 and 9 were not described. + +The coin lots followed. Lot 10 was five Black Dragons, bought for 10g by a shiny man who was dressed up by someone. Lot 11 was a Grand Towers penny, bought for 3g by Raven no. 1. Lot 12 was a golden crown and two silver clappers, sold for 15g. Lot 13 was dwarven copper coins, with two people bidding, sold for 1g. Lot 14 was electrum and did not sell. Lot 15 was silver pieces, associated with gnome great Fummouth, sold for 8g to Raven 2. Lot 16 was a Brass City coin, sold for 160g to a tabaxi with a shaved head and pink mohawk. + +The art lots began with Lot 17, talon of soot, sold by remote bid for 50g. Lot 18 was a painting of Lord Bleakstorm refusing demands, a female being relieved in Caroline Harthwall(?) with an infant and a blue cow, and a male the party might have recognized: Iceborg, with Jayseel horns. The image of someone lowering a rope down a hole sold for 35g, apparently for too much jewellery to a human male. Lot 19 was an obsidian and bone statue showing a crab claw and talon shielding Throngore over a featherless female, titled "Valententide's Betrayal." It sold for 140g to Raven 1. + +Lot 20 showed Davina Browning covering her eyes with her hands, with eyes on the hands, titled "circling vultures." It sold for 10g to the jewellery guy. Lot 21 was love poetry, blessings of Laurel, and sold for 7g. Lot 22 was a red and blue glass sculpture of Serra and sold for 10g. Lot 23 was the functioning moon pocket watch and sold for 175g. Lot 24 was the green-rim spectacles, which translated elven into common, and sold for 112g. Lot 25 was the mahogany box, also called the Smulty box, and sold for 30g to a bidder described as an elf / flirting woman with goat legs. Lot 26 was a Ray of sorting and stirring and sold for 85g. Lot 27 was an elven forest comb of delousing and sold for 35g. Lot 28 was an elven flute carved with mice, called a turtle flute, and sold for 65g. Lot 29 was an hourglass of smoke instead of sand and sold for 85g. + +Lot 30 was the holy symbol of Noxia and sold to Raven 1 for 175g. Lot 31 was a shield ring with runes of Lauren and sold for 600g to a werewolfish [uncertain: Repiteth]. Lot 32 was Firefang and sold for 2050g to a red-and-purple-haired dwarf male. Lot 33 was the chariot, connected to an excellence defeated in the "battle of the unending seas." Four people bid, including two Ravens, the jewellery men, and an emissary. A bidding war followed involving the jewelled men and short paths, Dally who walks in the room, the Harthwall partner, and Lady Thorpe. The price reached 11,900g and then [uncertain: we got] 14,000g. The chariot was already being levelled onto a wagon, and many guards were outside. Lot 34, the Browning spell scroll, sold for 6,200g to the jewellery guy. + +The party skulked out to check on Lady Thorpe. She had six guards around her in transparent dragon / silver dragon livery. While she felt better and insisted on going back to the front lines, which were not going great, she looked flustered, confused, and uneasy in her responses. Something was odd about her mannerisms. The narrator did not think she knew who they were, or at least that she was who she said she was. + +Lot 35 was a mimic mouse trap. Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, an older human man, a robed figure carrying along beside a silver dragonborn, a backpack of scrolls, a floating book, and a gnome with a wooden shield bearing a golden duck were noted. Justicars were looking for Xinquiss. The party did not recognize Inwar. Laura won the bracelet of locating for 101g. Mith teleported away, and a Justicar tried to Counterspell. Scrambleduck smashed a stick on the floor and cast a spell, associated with a locating duck. When she turned around, the narrator bumped into something invisible and moved to attack her. + +Browning / Skutey Galvin was wanted for impersonating a Justicar. The concentration spell failed, and Lady Thorpe turned into a llama. Two guards behind the narrator helped, while her guard tried to get the narrator. The party learned that the warrant for their arrest had been quashed by somebody up high. A waitress opened a trapdoor where Xinquiss was hiding. The narrator called themself Constantine Harthwall to the Justicar. Guards took the chariot and everything to the Palace because Lady Harthwall wanted to see the party in the hours. The Justicars took the llama to Grand Towers. + +Dith, Geldrin, and Morgana escaped with the shield crystal down the trapdoor into a house. Xinquiss called Wroth to come and help hide the crystal, and Wroth did so. Dith, Geldrin, and Morgana tried to disguise themselves and return to the auction house. Eliana and Inwar asked about them and were told about the trapdoor at 4:30. The party headed to the Castle. + +At the Castle, a higher-ranking halfling general with a huge sword and ornate armour strode over. This was Lady Fatrabbit, also called Blossom, a halfling who was also the sheriff. She took the party through the Castle. The engravings on her armour were a dedication to the god of Law. The Castle seemed busy and short-staffed. + +Lady Thorpe was missing. Lady Fatrabbit thought it had happened fairly recently because Lady Harthwall could have known it was not her wife. Lady Fatrabbit led the party to a bedroom where Lady Harthwall was; doctors were making some antidote. The party suggested poison and trouble hiding a true form. The llama may have done it. The condition seemed like magical poison or a religious curse, possibly Noxia, and involved great pain. Furres was stretched thin because Goldenswell had removed forces, and Lady Harthwall wanted the party's help. She had only noticed that Lady Thorpe had not visited her as much as expected. Lady Thorpe had been with Lady Harthwall when they came back from the front lines at Hilden with a few guards. The creatures they had been fighting did not seem cunning enough to have done this. + +Geldrin cast Scrying on Lady Thorpe. He saw her in a stone room, chained up, like a dungeon. The image was dull and unlit. Lady Thorpe looked injured and malnourished, with no fleshcrafting. There was one cell door, made of wood, iron-bound and reinforced with an iron grate at the top. The stone was grey mountain stone, not seaward / Runeyend, and looked like the same type of stone as Harthwall Castle. A dungeon in Ca looked similar to this castle. There was a dungeon in the castle and one in the militia house. The party wanted to check all dungeons between there and Hilden. + +Lady Fatrabbit led the party to the castle dungeons, but Lady Thorpe was not there. They went to the militia house, which looked like the militia building in Everchard. No one stopped Lady Fatrabbit from walking in. The doors looked like the one Geldrin had seen, and the room looked very similar. Fatrabbit asked a guard for the current prisoner roster. Clay Meadow, Everchard, Redford Point, Stonehedge, and Goldenswell were noted, with the stone structure different. The narrator and Dith searched the cells, but Lady Thorpe was not there. Barrett returned with the roster, and everything seemed in line. A prison on the road to Stonehedge was used for long-term prisoners who did not take the death penalty and had metal doors. 19:00 was noted. + +Claymeadow and Lady Neegate were noted; she had been quiet lately due to a loss in the family. The party decided to make a plan before speaking to the wizard and went to the Irate Unicorn, where there was a shrine to Law. They asked Busalish for help from the guild to check the prisons. They then went to see a tortle wizard who could teleport them somewhere and would come back tomorrow. + +The internal note marked "Day 27" was recorded here but was not treated as a day boundary. The bag began humming and glowing, and there was a note from Busalish. Redford and Everchard had no Lady Thorpe. Goldenswell refused and prevented access; Busalish met a few things, reporters, and so on. Little Bugy was noted as someone tried to assassinate Sefris on the ground, connected to the Cult of Salvation, last night. The skull was glowing, humming, and vibrating, and it was given to Geldrin. + +The connection destabilised all charms out of the windows. The Tri-moon was visible in the day, which does not usually happen. It seemed to hang ominously. Usually it is seen in the dark; seeing it in daylight showed it as a crystal. The Barrier looked normal, and the moon did not look different in size; the small chunk was visible. At 09:30, Geldrin estimated it should have been there around 2am, so it was 16 hours ahead of schedule. The party told everyone about Busalish's note and the three prisons. + +The party returned to the tortle mage, Jin-Loo, and told him about the Tri-moon. He found it had happened three times in the last 1,000 years, when records began, though four dates were listed: 104 AD, 339 AD, 629 AD, and 1012 AD. The party asked him to find out whether anything significant happened on those dates; nothing was found. + +Jin-Loo teleported the party to the Museum Gardens in Goldenswell. Bleakstorm was noted as a possible name for the tree they teleported next to. It was from outside the Barrier, airwise, and very cold. They went to the Militia House. Morgana located Lady Thorpe in the building, two floors down, in the middle of the building, at 10:30. The plan was for Geldrin to pretend to be a Justicar and enter the building. Yellow guards were wearing a half-sun tattoo obscured by a waterfall. Geldrin stormed into the guarded room; the guard who went to get the captain was leaning against the window, and the servant did not look busy. The captain was reading "101 who's who of the Penta city states," which had a picture of Scrambleduck. + +The party tried to arrest them. Morgana and the narrator went through the other door. They found Lady Thorpe after a set of traps went off and carried her out. Meanwhile Geldrin was mauled and tried to get thieves' tools out to open something. Dith got keys and unlocked them. The captain tried to send a message saying they had been discovered and to send help. The party took the captain, Lady Thorpe, and a cart, left the city, managed to get out, came off the road, and found somewhere to hide. + +They messaged Busalish to say they had Lady Thorpe and revived her. Lady Thorpe reported a man with the lower half of a snake's body travelling back with the Goldenswell army when they decided to leave. Bug Geldrin stole from the captain's office: 50 platinum pieces in Frawshers currency and a Grand Towers penny. The party needed to question the captain. + +When the captain was awakened, he said he got in trouble with the Duke for attracting the militia. He was told it was a sensitive situation and not to let anybody in. The Duke sent one of his emissaries to feed Lady Thorpe. The captain knew the Duke was doing something dodgy but did not know the full truth. Some woman with a bag on her head was involved. Orders came from the Duke's office, and a few other guards knew about it. Off-the-books prisoners had been held a few times; the last one was about a week ago and was still down there. + +The other prisoners included a woman and a man, and a female halfling. Alf wanted out allot - Elementarium. A Busalish message warned: "Don't come to Strong hedge Compromised." The Elementarium had appeared in town crier information four days earlier but had been imprisoned for over a week, meaning an imposter was in place. The party tried to contact Cardencalde via Eroll, but she did not answer, which was strange because Eroll contacts her directly. They sent a message to Lady Harthwall via Eroll at 16:00. Other prisoners held on the same floor numbered seven in total, with a few being taken each week over the last month. A few people had tried to get in and survey the prison, including a goblin named Scumi with a bag of skulls. Eroll returned with a ring, and Jin-Loo appeared next to the party. The party kept the ring so he could find them again. + +The skull's connection to ascension to godhood was discussed, and it was linked to when the moon did this, like the Tri-moon / Treamen. Geldrin tried to attune to the skull. An obsidian raven circled overhead as if looking for something and then flew off toward Grand Towers. + +When Geldrin attuned to the skull, he saw visions. A woman with no belly button and other unusual details was grabbed by a crab claw; Vallententide was grabbed, and she disappeared. A black and white dragon fought, and the white dragon was injured; a silver dragon rescued someone. A veridian dragonborn, a gnome, and an old man smiled at a dragonborn and nodded. 629 AD was noted. In a throne room with dwarven guards, walls crumbled as a giant skeletal dragon breathed out; "today" and soot were noted. These were the things the skull had gazed upon last. + +The skull could crush foes, let him pass, and show visions, though the visions were the only thing Geldrin had seen it do. "The lord above place in the sky" was noted. Noxia could poison things to stop them being their true form. The skull had influence over the Barrier and could bend it. It had been assaulted by mortals when he came to the god meeting. Valententide had been attacked by Throngore, with darkness. The dragons fighting were 525 years before the veridian dragonborns. Gary, the corrupted sphinx, was heading toward Grand Towers. + +The skull showed a projection of Grand Towers using moon reflections. The party saw a man walking through the streets toward the prison device. It showed "The Mother" crater, a small town, which was the place he fell, and a small halfling girl sitting at a table seeing dogs together. At Condennis Place, which was empty, the vision went to an underground dwarven city. A figure was laid out on a table with a skull floating next to her and an old wizened dwarf noting; this was the wizard from Inwar's vision, looking after the molten prison. He touched it and stopped it leaking. The notes question whether this related to Ruby Eye's wife or village. + +The skull showed the Goldenswell militia house with the same desk sergeant sitting there now. Prisoners seen included an elven man, the Elementarium; a human male in his mid-40s with a scar on his right cheek; a halfling woman, Baytail, accused as head of the Underbelly; an empty cell; a half-elven woman who resembled someone's sister, with the note that the party had seen their brothers before; a kobold in a tattered robe whose robe was recognized; and a pale-skinned halfling female with brown speckled eyes like tiger eye, likely someone the party had met, possibly Isabella Neegale's aunt or the Earl of Clay Meadows. + +Another vision showed the Goliath City in ruins, with sickly Goliaths being attacked by lions, overseen by a brutal-looking veridian for tea. All dragons were mutated. A tower with a purple glow had something massive nestled around it. The half-elven woman was identified as the sister of the twin Justicar guards met on the way to Seaward. The skull needed to be next to its foes to smite them. The Chorus was standing outside the house looking up at the sky and never usually leaves the house. + +The party identified seven Goldenswell prisoners: Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, a half-elf woman who was the sister of the twin Justicar guards met on the way to Seaward, and Harthwall, who had been rescued. They headed back to Goldenswell with the captain by side roads and disguised themselves with winter clothes. The captain said the Duke's personal guard had brought the prisoners in. The party bribed him with 50 platinum pieces and his money back for his help, giving him 1 platinum as a down payment, to get them into the prison, rescue all the prisoners, and get him out of the city. They considered offering the rest of the guards money, though the Duke's guards at the gates might not be bribable. They went in through the earthwise gate, where the guards were likely to have been drinking. 12:00 was noted. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Lan, Serva, Lady Hearthwall / Lady Harthwall, Lady Freya, Xinqus / Xinquiss, Mirth / Mith, the human with a very noticeable underbelly, the barkeep described as "Patches of night & husband," Geldrin, Invar, the Guilt, Browning, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, the shiny man dressed up by someone, Raven no. 1 / Raven 1, Raven 2, the tabaxi with a shaved head and pink mohawk, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Throngore, Valententide / Vallententide, Davina Browning, Laurel, Serra, the bidder described as an elf / flirting woman with goat legs, the werewolfish [uncertain: Repiteth], the red-and-purple-haired dwarf male, Dally who walks in the room, the Harthwall partner, Lady Thorpe, the jewellery guy / jewellery men, Arthur's group, Conrad Harthwall, Numbhotall / Scrambleduck / Nambodall, the older human man, the robed figure, the silver dragonborn, the gnome with a wooden shield bearing a golden duck, Justicars, Inwar, Laura, Skutey Galvin, Constantine Harthwall, Dith, Morgana, Eliana, Wroth, Lady Fatrabbit / Blossom, Barrett, Lady Neegate, Busalish, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Elementarium, Scumi, Treamen, Gary, Ruby Eye, Baytail, Isabella Neegale, the Earl of Clay Meadows, the twin Justicar guards, and the Chorus. + +Groups and factions mentioned include Hillfolk, guards, humans, half-elves, Xinquiss's cart crew, auction attendees, Ravens, Justicars, Grand Towers authorities, doctors, Furres, Goldenswell forces, militia, reporters, the Cult of Salvation, yellow guards wearing a half-sun tattoo obscured by a waterfall, the Duke's office, the Duke's emissaries, the Duke's personal guard, mortals at the god meeting, dragons, Goliaths, lions, and the party. + +Places mentioned include the Hillfolk village, [uncertain: Prortibhe], Stone Rampart, Hearthwall / Harthwall, the Rift block, the statue of Lan outside Hearthwall, the Statue of Serva, the Baked Mattress, the Grand Auction House / auction house, Azureside, the Retribution shrine, the Brass City, Grand Towers, the Palace, the Castle, Lady Harthwall's bedroom, the castle dungeons, the militia house, Ca, Hilden, Clay Meadow / Claymeadow / Clay Meadows, Everchard, Redford Point, Stonehedge / Strong hedge, Goldenswell, the prison on the road to Stonehedge, the Irate Unicorn, a shrine to Law, the Barrier, Museum Gardens, Bleakstorm as a possible tree name, Frawshers, Condennis Place, an underground dwarven city, the molten prison, the Mother crater, a small town where he fell, the Goldenswell militia house, Seaward, Gnoll, Goliath City, a tower with a purple glow, and the earthwise gate. + +# Items, Rewards, and Resources + +Resources and possessions mentioned include 870kg at the auction, "1600" recorded near Xinqus's cart, a shield crystal, one of the Brass City platinum pieces added to the auction, the party's auction number from Mirth, the chariot and everything taken to the Palace, the hidden trapdoor at the auction house, Wroth's help hiding the shield crystal, a prisoner roster, Busalish's note, Busalish's guild help, Eroll, Jin-Loo's ring that let him find the party again, winter clothes used as disguises, 50 platinum pieces in Frawshers currency stolen from the captain's office, a Grand Towers penny stolen from the captain's office, 50 platinum pieces offered as a bribe, and 1 platinum paid as a down payment. + +Auction lots and sale details mentioned include grand towers penne / Goliath coins x2; sosen mistle eel wine; a functioning moon-cycle pocket watch; elven green-rimmed glasses; a mahogany box / Smulty box with a red velvet curtain that formed illusionary scenes; a loved patched leather backpack / bag of sorting worth around 3-500g and able to hold 500lb or 64 gems while weighing 15lb; a silver scorpion on a chain / holy symbol of Noxia; Firefang, an 8/400-year-old longsword in Invar's style with +1D6, 5 spell charges, and Burning Hands, initially priced at 4500g and sold for 2050g; an Amle for adult?; a ring of protection; the chariot associated with the Guilt and an excellence defeated in the "battle of the unending seas," bid up to 11,900g and [uncertain: we got] 14,000g; Browning's scroll, which generates a new random spell every morning at 2:37, was disrupted by Geldrin's Dispel Magic, valued at 600g, and sold for 6,200g; a bracelet of locating won by Laura for 101g; art cork; rare poetry books; and a talon of soot sold remotely for 50g. + +Specific auction lots mentioned include Lot 1, famous 28-year elven booze sold for 20g; Lot 2, 100-year-old Candelissa; Lot 3, older one sold for 350g to Candelissa; Lot 4, Smehlebeard whiskey sold for 270g to Janet Boulderdew; Lot 5, Crankfruit 75-year bottle / 280 years sold for 400g; Lot 6, Blind gale XXX with physick before imbibing; Lot 7, cherry wine / Sereza sold for 10g; Lot 10, five Black Dragons sold for 10g to the shiny man; Lot 11, Grand Towers penny sold for 3g to Raven no. 1; Lot 12, golden crown and two silver clappers sold for 15g; Lot 13, dwarven copper coins sold for 1g; Lot 14, electrum with no sale; Lot 15, silver pieces / gnome great Fummouth sold for 8g to Raven 2; Lot 16, Brass City coin sold for 160g to the tabaxi with a shaved head and pink mohawk; Lot 18, painting involving Lord Bleakstorm, Caroline Harthwall(?), an infant, a blue cow, Iceborg, Jayseel horns, and someone lowering a rope down a hole, sold for 35g; Lot 19, "Valententide's Betrayal," an obsidian and bone statue sold for 140g to Raven 1; Lot 20, Davina Browning's "circling vultures" sold for 10g to the jewellery guy; Lot 21, love poetry / blessings of Laurel sold for 7g; Lot 22, red and blue glass sculpture of Serra sold for 10g; Lot 23, moon pocket watch sold for 175g; Lot 24, green-rim spectacles translating elven into common sold for 112g; Lot 25, mahogany / Smulty box sold for 30g; Lot 26, Ray of sorting and stirring sold for 85g; Lot 27, elven forest comb of delousing sold for 35g; Lot 28, elven turtle flute carved with mice sold for 65g; Lot 29, smoke hourglass sold for 85g; Lot 30, holy symbol of Noxia sold for 175g to Raven 1; Lot 31, shield ring with runes of Lauren sold for 600g; Lot 32, Firefang sold for 2050g; Lot 33, chariot; Lot 34, Browning spell scroll; and Lot 35, mimic mouse trap. + +Spells and magical effects mentioned include teleporting to the statue of Lan, Dispel Magic cast by Geldrin on Browning's scroll, Xinquiss / Mith teleporting away, a Justicar attempting Counterspell, Scrambleduck casting a spell by smashing a stick on the floor, the locating duck, an invisible obstruction, the concentration spell failing so false Lady Thorpe became a llama, a magical poison or religious curse possibly linked to Noxia, Geldrin's Scrying on Lady Thorpe, Morgana locating Lady Thorpe in the Goldenswell militia house, Eroll messages, Jin-Loo teleportation, the humming and glowing bag, the glowing/humming/vibrating skull, the skull's attunement visions, the skull's ability to show visions, crush foes, let him pass, influence / bend the Barrier, and need to be near foes to smite them. + +# Clues, Mysteries, and Open Threads + +The page's opening location preserves uncertainty: the Hillfolk village was between [uncertain: Prortibhe] and Stone Rampart. The note "Day 32 [uncertain: Chuwee]" remains unclear. The relationship between the statue of Lan and the Statue of Serva remains significant because they are very similar in style. + +Xinqus / Xinquiss was in Hearthwall with a cart and a [uncertain: pigeon/aracock], with "1600" recorded without explanation. The party agreed to drop off a piece of shield crystal for Xinquiss, and Wroth later helped hide that crystal. Xinquiss was being sought by Justicars. The party told Xinquiss that the quilt might be an "excellence" or working for one, but the meaning and target remain unresolved. + +The auction contained many significant artifacts and historical references, including the chariot tied to an excellence defeated in the "battle of the unending seas," "Valententide's Betrayal," Browning's spell scroll, Firefang, the holy symbol of Noxia, the shield ring with runes of Lauren, and the talon of soot. The identities and agendas of the Ravens, jewellery men, emissary, Dally who walks in the room, the Harthwall partner, and the werewolfish [uncertain: Repiteth] remain open. The meaning of the Amle for adult? remains unclear. + +False Lady Thorpe's odd mannerisms, failure to recognize the party, transformation into a llama when concentration failed, and the Noxia-like magical poison / religious curse suggest impersonation, shapeshifting, and identity suppression. The real Lady Thorpe had been abducted and held in Goldenswell. Lady Harthwall remained injured, and the antidote's target and composition are not fully clear. + +The party's arrest warrant had been quashed by somebody up high, but the responsible person was not identified. Browning / Skutey Galvin was wanted for impersonating a Justicar. The Justicars took the llama to Grand Towers, leaving the later fate and interrogation of the false Lady Thorpe unresolved. + +Geldrin's Scrying showed Lady Thorpe in a grey mountain-stone dungeon like Harthwall Castle, Ca, or the militia house, but she was ultimately in Goldenswell. The similarities between militia houses, including the Everchard-like militia building, may be relevant. The prison on the road to Stonehedge, Clay Meadow / Everchard / Redford Point / Stonehedge / Goldenswell rosters, and the note that Goldenswell refused access remain part of the prison network mystery. + +Busalish's note said Redford and Everchard had no Lady Thorpe, while Goldenswell refused and prevented access. Busalish also warned, "Don't come to Strong hedge Compromised." The attempted assassination of Sefris on the ground by someone named little Bugy, connected to the Cult of Salvation, remains unresolved. + +The Tri-moon was visible during the day, which is unusual, and appeared 16 hours ahead of schedule. Seeing it in daylight showed it as a crystal. Jin-Loo found similar events in the records on 104 AD, 339 AD, 629 AD, and 1012 AD, though the notes say it happened three times in the last 1,000 years while listing four dates. No significant events were found for those dates. The Barrier looked normal despite the omen. + +The Goldenswell operation exposed an off-the-books prison run under orders from the Duke's office. The captain knew it was dodgy but not the full truth. A woman with a bag on her head, Duke's emissaries, Duke's personal guard, and a snake-bodied man travelling with the Goldenswell army are all implicated. The captain said off-the-books prisoners had happened before, with one still down there from about a week ago. + +The Elementarium had been in town crier information four days earlier but had been imprisoned for over a week, implying an imposter was active. Cardencalde did not answer Eroll despite the direct contact, which remains unexplained. A few people tried to survey or enter the prison, including Scumi with a bag of skulls. + +The skull's visions tied together Treamen / Tri-moon, ascension to godhood, Noxia's ability to poison things so they cannot be their true form, influence over the Barrier, mortals assaulting him at a god meeting, Valententide being attacked by Throngore, a black and white dragon fight, a silver dragon rescue, a veridian dragonborn, a gnome, an old man, 629 AD, soot, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, and a man walking through Grand Towers toward the prison device. These links remain unresolved. + +The Mother crater, the small town where he fell, the small halfling girl seeing dogs together, Condennis Place, the underground dwarven city, the old wizened dwarf from Inwar's vision, the molten prison, and the possible connection to Ruby Eye's wife or village are all open threads. The skull's projection using moon reflections may connect the Tri-moon to distant surveillance or prison devices. + +The Goldenswell prisoners seen in visions and listed by the party create unresolved identity threads: the Elementarium; a human male in his mid-40s with a scar on his right cheek; Baytail, accused head of the Underbelly; a half-elven woman resembling the sister of the twin Justicar guards; a kobold in a recognizable tattered robe; a pale-skinned halfling woman with brown speckled tiger-eye eyes, possibly Isabella Neegale's aunt or the Earl of Clay Meadows; prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Harthwall. The half-elf woman's relationship to the twin Justicar guards met on the way to Seaward is specifically preserved. + +The Chorus stood outside the house looking up at the sky, which is unusual because the Chorus never usually leaves the house. The Goliath City vision showed ruins, sickly Goliaths attacked by lions, a brutal-looking veridian, mutated dragons, and a purple-glowing tower with something massive nestled around it; this remains a major open thread. diff --git a/data/4-days-cleaned/day-35.md b/data/4-days-cleaned/day-35.md new file mode 100644 index 0000000..b94e830 --- /dev/null +++ b/data/4-days-cleaned/day-35.md @@ -0,0 +1,97 @@ +--- +day: day-35 +date: unknown +source_pages: + - 124 + - 125 + - 126 + - 127 + - 128 + - 129 + - 130 +complete: true +--- + +# Narrative + +Day 35 began with gates opening and closing, and guards who looked like militia. One guard leaned over to another after noticing the party. The party used the cover story that the prisoners had been taken from the station as part of a drill to test prisoner safety, and they paid the guard for doing well in the drill. + +The guards chatted idly while handing out the coins. The roads were fairly quiet, with a few people milling around the building, some militia, and a few of the Duke's guards. The party changed course toward the back of the building. A guard on the back gate let them in, and Morgana tried to bribe him. Duke's men were all inside. Morgana turned into a spider and went inside to check what was happening. + +Inside, offices had been ransacked. Some guards were still doing paperwork, while others were being interviewed by the Duke's men. In the curtained office, the captain's office, a human man in white gloves was investigating the office and the false drawer. He was acting very odd and was named Mr Seneshell. The prisoners were ready. Someone came in and gave an order to bring them out the front. + +The party tried to attach the bangle to the cart, but there were many people around and it was difficult to get there. They got invisibility. They tried to swap the horses for fresh ones. The horses were named Daisy, Applejack, Carrot Muncher, and [uncertain: Harpvicarch]. A kobold female and a halfling were escorted out. The party attached the bangle and loosened an axle. + +The Barrier thickened, and two groups were hitting it. The party could feel the dome's pull. They gave the captain a further platinum for getting them this far, then headed out of the militia house. Twenty minutes later, Morgana sensed movement toward Claymeadow. On the way out, the party saw two watchmen, one of whom seemed off; Geldrin checked and found he was an automaton. + +At the gate queue, the party went around to the front and persuaded the guards to let them through. The guards thought the automaton-like watchman had been removed from duty. The other watchman got something out of his pocket and went around the other side of the wagon at the front of the queue. The party checked the cart and did not find anything. They asked [unclear] to check on them. There were two carts travelling on the road with no panic. Six people were on the exterior, but the party could not see inside to tell whether there were guards there. They began to catch up with the carts. + +The carts had been single file, but once they seemed to spot the party, they moved side by side with crossbows pointed back. At 02:00, the cart guards told the party to maintain a distance and leave them alone. Morgana tried to persuade the horses to stop. The guards shot at the party. Someone got on top of the cart and shot back. + +The back doors opened, and the man with white gloves stood in the middle adjusting his gloves. The second cart's doors opened, and a ballista fired at the party. Battle began. Morgana stopped the carts with thorns and killed all the external people and horses. Geldrin killed two people on the ballista with an acid ball. The boss's lower half turned into a snake, and he leapt toward the party, attacking Dirk and Morgana. Guards in the cart turned into llamia. All the prisoners in the wagon appeared to be unconscious, drugged in some way. Geldrin killed the snake guy with a fireball. The narrator killed a llamia after the fireball. Morgana killed the other llamia with another cart wheel. All the bad guys were dead. + +On the snake guy, the party found a silver chain with a serpent pendant. It was a magical talisman, described as +1 cleric cash rolls [unclear] with Noxia catch spells. The prisoners were magically asleep: Lady Katherine Cole, the Elementarium, the kobold, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, and a half-elf female. The party moved the captives to their cart, set fire to the enemy carts, left, and headed off the main road airwise toward Bluemeadows at 04:00. + +The party entered Bluemeadows, with "River" crossed out in the notes. At a church or church-like place, the fields were full of bluebells in bloom, which was odd for the time of year. The bluebells were very hardy and looked like crops. Geldrin added a College of Surgeons symbol to the wagon, and the party headed into town. A man on the steps who looked like local militia stopped and came to talk to them. He did not have a serenity stone. Lady Esmerelda was mentioned. The bluebells were used for dye. The party got provisions. Grey Gables was the next town airwise. + +The kobold woke up. He was Mr TJ Biggins of the Plantation of Newt [unclear] Vain, outside the dome. He did not get on with the greenscale family, the Loose Teeth, or the Blackscales, who came to his town for tributes and then left. He thought the party were Bumblebeers, people from down the road described as red Goliaths but bigger. The party headed out of town airwise. + +TJ said Lady Envy was boss of the llamia. The sand dome was to keep elementals out. His town was known for mining. People came to get tributes from his town and then left. Fire and earth raids hit the town. He saw a gnome the last time the Bleakshrouvers came to town. If people paid enough coins, they could get into the dome. Dirk showed TJ what the dome was using a bun, and TJ then called it the "Bun." A side note listed Pride, Lust, greed, wrath, envy, gluttony, and sloth. + +TJ said seven moons had passed between him waking up in prison and waking up with the party. He had gone to sleep at home and woken up in prison. The half-elf lady stirred. She was a youngish Rein lore elf, very elven-looking, and reminded the party of the twin guards of the Justicar. She was Lady Yadreya Egrine, Baroness of Riversmeet. She had been with the menagerie, where creatures had gone missing, especially the more experimental creatures. New ones had gone missing about a month ago. She wanted to know more about it, perhaps explaining why she was taken. She had been taken a few days ago after a spell was cast on her while she was in a chamber doing paperwork. + +Lady [uncertain: Huthnall] was looking into corrupt slate and related matters. An Inquisitor from Salvation was noted, along with Thrice pass on the ground. Lady [uncertain: Suisant] De'Beauchamp was associated with Iron craft firewise. + +Lady Katherine Neugate woke up and seemed reticent to talk to the party. The rescued prisoners all seemed to work off the same council. Neugate had been captured for four days. She mentioned the same people who were missing from the council. Neither Neugate nor Egrine mentioned the Guilt, and neither had met him. Lady Katherine Cole, the narrator's boss, woke up and said she had been captured for three days. "3 paws - Beauchamp" was noted. The prisoners believed the Guilt had never been part of the council, but he had been. All of them had dried blood in their ear canal. + +The ear injuries looked like eardrum injuries. Each prisoner was a little deaf in that ear, and it looked like something was lodged in the eardrum: a pupa in each one. The party pulled one out of Lady Cole. It was a large grub attached to the ear canal. Egrine had seen the creatures in the menagerie. When the grub was killed, Lady Cole got her memories back and said she had felt like she was being watched. Tarrak woke up from the removal. All the affected prisoners had forgotten that the Guilt was a member of the council, had been told not to trust him, and no longer felt watched after the grubs were removed. + +A third figure was on the roof of the cart. Skum appeared on the roof to rescue Elementarium and gave the party Bob's shell. Skum said he had never seen Elementarium at the Goldenswell guardhouse. Elementarium had sat there for two days. A human who walked like a horse and was missing two legs was noted. A silver dragon man wearing a cloak had cast a spell on Elementarium, and Elementarium walked out with them to the cart. Elementarium had been imprisoned for approximately two days. + +Morgana kissed Elementarium to try to wake him up. It felt like she forced him, and she saw a laughing female dragon, possibly the Peridot Queen. At 12:00, Geldrin hit Elementarium; Elementarium opened his eyes, and they were green. + +The party all slept while the rescuees drove them to Brookville Springs. They arrived or were en route there at 20:00. + +# People, Factions, and Places Mentioned + +People and name-like figures mentioned include Morgana, Mr Seneshell, the human man in white gloves, Daisy, Applejack, Carrot Muncher, [uncertain: Harpvicarch], the kobold female, the halfling, the captain, Geldrin, Dirk, the snake-bodied boss / snake guy, Lady Katherine Cole, Elementarium, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, the half-elf female, Lady Esmerelda, Mr TJ Biggins, Lady Envy, Lady Yadreya Egrine, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, the Inquisitor from Salvation, Thrice, the Guilt, Tarrak, Skum, Bob, the human who walked like a horse and was missing two legs, the silver dragon man wearing a cloak, the laughing female dragon, and the Peridot Queen?. + +Groups and factions mentioned include militia, Duke's guards, Duke's men, watchmen, an automaton-like watchman, cart guards with crossbows, ballista crew, llamia, prisoners, the College of Surgeons, local militia, the greenscale family, the Loose Teeth, the Blackscales, Bumblebeers, red Goliaths but bigger, elementals, Bleakshrouvers, Rein lore elves, twin guards of the Justicar, the Justicar, the menagerie, the council, Salvation, and rescuees. + +Places mentioned include the station, the militia house, the captain's office / curtained office, the false drawer, the back gate, the Barrier, the dome, the gate queue, the road, the carts, Bluemeadows, the church or church-like place, bluebell fields, Grey Gables, the Plantation of Newt [unclear] Vain, the town outside the dome, Lady Envy's sand dome, Riversmeet, Iron craft firewise, Goldenswell guardhouse, and Brookville Springs. + +# Items, Rewards, and Resources + +Resources and payments mentioned include coins handed out to guards, payment to the guard for doing well in the supposed drill, Morgana's attempted bribe at the back gate, one further platinum paid to the captain for getting the party this far, fresh horses, the bangle attached to the cart, invisibility used to reach the cart, the loosened axle, provisions bought in Bluemeadows, and Bob's shell given by Skum. + +Vehicles and animals mentioned include the party cart, enemy carts, the prisoner cart, horses named Daisy, Applejack, Carrot Muncher, and [uncertain: Harpvicarch], the horses killed in battle, and the cart wheel Morgana used to kill a llamia. + +Weapons, combat effects, and magical resources mentioned include crossbows aimed from the carts, a ballista fired from the second cart, Morgana's thorns stopping the carts, Geldrin's acid ball killing two ballista crew, Geldrin's fireball killing the snake guy, the snake guy's lower-half transformation into a snake, guards transforming into llamia, magical sleep / drugging on the prisoners, the silver chain with a serpent pendant found on the snake guy, the magical talisman described as +1 cleric cash rolls [unclear] with Noxia catch spells, Geldrin's College of Surgeons symbol added to the wagon, the serenity stone the Bluemeadows militia-like man did not have, the bluebells used for dye, ear pupae / large grubs attached to prisoners' ear canals, and the spell cast by the silver dragon man on Elementarium. + +Information resources and identifiers mentioned include the ransacked offices, paperwork by guards, interviews by the Duke's men, Mr Seneshell investigating the false drawer, the order to bring prisoners out the front, the town's mining and tribute economy, TJ's "Bun" explanation for the dome, the side note list of Pride, Lust, greed, wrath, envy, gluttony, and sloth, Lady Yadreya Egrine's menagerie knowledge, references to missing experimental creatures, corrupt slate, and council membership memories involving the Guilt. + +# Clues, Mysteries, and Open Threads + +The Duke's men had ransacked offices and were interviewing guards at the militia house. Mr Seneshell, the human man in white gloves, investigated the false drawer and acted oddly before later appearing as the snake-bodied boss. His role, loyalty, and connection to the Duke's operation remain open. + +The party's extraction relied on bribes, invisibility, a bangle attached to the cart, and a loosened axle. The exact function of the bangle is not stated but was important enough to attach to the cart. The watchman who seemed off was confirmed as an automaton even though guards thought he had been removed from duty. The other watchman's pocket action and the checked cart at the front of the queue remain suspicious, even though the party found nothing in the cart. + +The Barrier thickened while two groups were hitting it, and the party could feel the dome's pull. The sand dome was later described by TJ as a defense to keep elementals out. The relationship between the Barrier, the dome, Lady Envy's sand dome, elemental raids, and the "Bun" explanation remains unresolved. + +The ambush revealed cart guards who transformed into llamia and a boss whose lower half became a snake. The silver serpent pendant talisman on the snake guy, its Noxia-related spell-catching property, and Lady Envy being boss of the llamia all remain significant. + +The rescued prisoners were magically asleep / drugged. Their identities and affiliations are important: Lady Katherine Cole, the Elementarium, Mr TJ Biggins, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, and Lady Yadreya Egrine / the half-elf female. Their capture durations varied: TJ experienced seven moons between waking in prison and waking with the party; Neugate was captured for four days; Cole was captured for three days; Elementarium was imprisoned for about two days. + +Bluemeadows had bluebells in bloom at an odd time of year, grown like hardy crops and used for dye. The local militia-like man did not have a serenity stone. Lady Esmerelda was mentioned without context. Grey Gables was the next town airwise. + +TJ's account preserves several unresolved external factions and places: the Plantation of Newt [unclear] Vain outside the dome, the greenscale family, the Loose Teeth, the Blackscales collecting tributes, Bumblebeers from down the road, red Goliaths but bigger, fire and earth raids, mining, and a gnome seen when the Bleakshrouvers last came to town. Paying enough coins could get someone into the dome. + +The side note listing Pride, Lust, greed, wrath, envy, gluttony, and sloth appears near Lady Envy and the dome information, but its exact relevance is not stated. + +Lady Yadreya Egrine's menagerie had missing creatures, especially experimental creatures, with new disappearances about a month earlier. She was taken after a spell was cast on her while doing paperwork. Lady [uncertain: Huthnall] was investigating corrupt slate, and Lady [uncertain: Suisant] De'Beauchamp was linked to Iron craft firewise. An Inquisitor from Salvation and Thrice pass on the ground were noted but not explained. + +The rescued council members had forgotten that the Guilt was a member of the council and had been told not to trust him. They had dried blood, eardrum injuries, deafness, and pupae / grubs lodged in the ear canal. Removing and killing Lady Cole's grub restored her memories and ended the watched feeling. Egrine recognized the grubs from the menagerie, linking memory control, surveillance, and missing experimental creatures. + +Skum appeared on the roof of the cart to rescue Elementarium and gave the party Bob's shell. Skum had not seen Elementarium at the Goldenswell guardhouse. Elementarium was led away by a silver dragon man wearing a cloak who cast a spell on him. The human who walked like a horse and was missing two legs remains unidentified. + +Morgana's attempt to wake Elementarium by kissing him felt forced and gave her a vision of a laughing female dragon, possibly the Peridot Queen. When Geldrin hit Elementarium, he opened green eyes. The cause and meaning of the green eyes, forced-feeling kiss, and laughing dragon vision remain unresolved. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index b1297c0..2f3c8c0 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -25,6 +25,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Aliases and Variant Spellings @@ -32,14 +34,14 @@ sources: - [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Terror of the Sands, nightmare of the darkness. - [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. - [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. -- [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye. -- [Edward Browning](people/edward-browning.md): Edward Browning, Browning. +- [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye, the skull [context-dependent]. +- [Edward Browning](people/edward-browning.md): Edward Browning, Browning; Skutey Galvin is linked in a warrant note but not merged. - [Silver](people/silver.md): Silver, the female automaton. - [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi, Ennui, The Mage, Visage Envoi. -- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Valenth Caerdunel, Valenthide, Valententhide. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Cardencalde [uncertain whether same direct-contact target], Valenth Caerdunel, Valenthide, Valententhide, Valententide / Vallententide [uncertain historical/art reference]. - [The Mother](people/the-mother.md): The Mother, Mother. - [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, The Choking Death, The whispers in the dark, Mother of many. -- [Basilisk / Busalish](people/basilisk-busalish.md): Basilisk, Basaluk, Basalisk, Busalish. +- [Basilisk / Busalish](people/basilisk-busalish.md): Basilisk, Basaluk, Basalisk, Busalish, Busalish's guild. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. - [Pythus Aleyvarus](people/pythus-aleyvarus.md): Pythus Aleyvarus, Pythas, Pythus. @@ -57,6 +59,12 @@ sources: - [Astraywoo](people/astraywoo.md): Astraywoo, athruygon? [uncertain]. - [Luth](people/luth.md): Luth. - [Freeport Auction Lots](items/freeport-auction-lots.md): auction house items, Freeport auction house lots. -- [Lady Hearthwill](people/lady-hearthwill.md): Lady Hearthwill, Hearthwill. +- [Lady Hearthwill](people/lady-hearthwill.md): Lady Hearthwill, Hearthwill, Lady Hearthwall, Lady Harthwall, Lady Harthwall [uncertain same as Hearthwill]. - [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md): Lady R. Beauchamp?!?, Lady R. Beauchamp. - [The Freeport Baroness](people/freeport-baroness.md): Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. +- [Lady Thorpe](people/lady-thorpe.md): Lady Thorpe, false Lady Thorpe, llama impostor. +- [TJ Biggins](people/tj-biggins.md): Mr TJ Biggins, TJ. +- [Lady Yadreya Egrine](people/lady-yadreya-egrine.md): Lady Yadreya Egrine, Baroness of Riversmeet, half-elf female [context-dependent]. +- [Hearthwall Auction Lots](items/hearthwall-auction-lots.md): Hearthwall auction, Harthwall auction, Grand Auction House lots, Browning's scroll, Firefang, Smulty box, Ray of sorting and stirring, bracelet of locating. +- [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): Goldenswell prison network, off-the-books prisoners, memory grubs, ear pupae, ear grubs, large grubs attached to ear canals. +- [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md): Lady Freya, Candelissa Hustlebustle, Aon Ankt, Janet Boulderdew, Lord Bleakstorm, Caroline Harthwall(?), Iceborg, Jayseel, Davina Browning, Laurel, Serra, Dally, Conrad Harthwall, Numbhotall, Scrambleduck, Nambodall, Skutey Galvin, Constantine Harthwall, Lady Fatrabbit, Blossom, Barrett, Lady Neegate, Jin-Loo, Bugy, Sefris, Cardencalde, Eroll, Alf, Scumi, Gary, Baytail, Isabella Neegale, Earl of Clay Meadows, Mr Seneshell, Lady Katherine Cole, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, Lady Esmerelda, Lady [uncertain: Huthnall], Lady [uncertain: Suisant] De'Beauchamp, Tarrak, Skum, Bob. diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md index 94ac624..6070f4e 100644 --- a/data/6-wiki/clues/known-passwords-and-inscriptions.md +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -1,7 +1,7 @@ --- title: Known Passwords and Inscriptions type: stateful clues -last_updated: day-22 +last_updated: day-35 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md @@ -14,6 +14,8 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Known Passwords and Inscriptions @@ -31,6 +33,7 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Aldaine Hartwell book command word | unknown | `data/4-days-cleaned/day-16.md` | The locked memoirs/learnings book needs powerful identity magic to learn the command word. | | Baroness's circle and safe code | known to Baroness, not recorded | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) said the code works while the defences are up. | | `Thurtall!!` | possible teleport carpet trigger | `data/4-days-cleaned/day-17.md` | Shouted as a gargoyle rolled out a carpet with a teleport rune; whether it is a formal command word is not explicit. | +| `Bun` | TJ's name for the dome | `data/4-days-cleaned/day-35.md` | TJ Biggins called the dome the `Bun` after Dirk explained it using a bun. | ## Inscriptions, Labels, Symbols, and Coded Phrases @@ -47,6 +50,20 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Five hands making a star | `data/4-days-cleaned/day-16.md` | Pub sign identified as [The Pact](../factions/the-pact.md), where the five wizards used to meet. | | `Drunken Duck` | `data/4-days-cleaned/day-20.md` | Upside-down thieves' cant scratched on the cart padlock with claws like Dirk's; party changed markings to Everchard. | | `where is he I know you hide him` / `Void!` | `data/4-days-cleaned/day-21.md` | Horrible voice in cold dream, possibly looking for [Garadwal](../people/garadwal.md). | +| Statue of Lan style matching the Statue of Serva | `data/4-days-cleaned/day-32.md` | Lan was an earth god of love, home, and family; the matching statue style may be significant. | +| `Patches of night & husband` | `data/4-days-cleaned/day-32.md` | Description or phrase attached to the Baked Mattress barkeep. | +| `1600` | `data/4-days-cleaned/day-32.md` | Recorded near Xinqus's cart and [uncertain: pigeon/aracock] without explanation. | +| `Valententide's Betrayal` | `data/4-days-cleaned/day-32.md` | Title of obsidian and bone statue showing a crab claw and talon shielding Throngore over a featherless female. | +| `circling vultures` | `data/4-days-cleaned/day-32.md` | Title of Davina Browning painting where she covered her eyes with hands that had eyes on them. | +| Runes of Lauren | `data/4-days-cleaned/day-32.md` | Runes on a shield ring sold for 600 gp to werewolfish [uncertain: Repiteth]. | +| Lady Fatrabbit's armour dedication to the god of Law | `data/4-days-cleaned/day-32.md` | Armour engravings recorded while Lady Fatrabbit escorted the party through the Castle. | +| `Don't come to Strong hedge Compromised.` | `data/4-days-cleaned/day-32.md` | Busalish warning after Goldenswell refused prison access. | +| `The lord above place in the sky` | `data/4-days-cleaned/day-32.md` | Phrase linked to Ruby Eye skull lore. | +| Yellow guards' half-sun tattoo obscured by a waterfall | `data/4-days-cleaned/day-32.md` | Symbol worn by guards in the Goldenswell militia-house operation. | +| College of Surgeons symbol | `data/4-days-cleaned/day-35.md` | Geldrin added it to the wagon at Bluemeadows. | +| Serenity stone absence | `data/4-days-cleaned/day-35.md` | Bluemeadows militia-like man did not have a serenity stone. | +| Pride, Lust, greed, wrath, envy, gluttony, sloth | `data/4-days-cleaned/day-35.md` | Side note near Lady Envy and dome information; relevance unresolved. | +| `3 paws - Beauchamp` | `data/4-days-cleaned/day-35.md` | Note recorded after Lady Katherine Cole woke; meaning unclear. | ## Riddles and Layout Clues @@ -67,6 +84,8 @@ This page tracks codes, passwords, command words, inscriptions, symbols, coded p | Timer or constraint | Last-known state | Source | |---|---|---| | Tri-moon countdown | 12 days to the Tri-moon on `day-22` | `data/4-days-cleaned/day-22.md` | +| Daytime Tri-moon anomaly | Tri-moon visible during the day, roughly 16 hours early | `data/4-days-cleaned/day-32.md` | | Guest shells | last 2 hours | `data/4-days-cleaned/day-22.md` | | Freeport auction | mother-of-pearl elemental chariot to be sold in 7 days | `data/4-days-cleaned/day-22.md` | +| Hearthwall auction | Grand Auction House auction occurred around 2 pm; `11:00` also noted | `data/4-days-cleaned/day-32.md` | | Seaward Barrier flickers | began 2-3 weeks earlier, increasing, random, longest 3 seconds, clustered around 9 am, none around midnight, moving horizontally toward pylon | `data/4-days-cleaned/day-12.md` | diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index ab19af7..976b701 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -6,7 +6,7 @@ aliases: - dome - containment system first_seen: day-01 -last_updated: day-30 +last_updated: day-35 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-04.md @@ -29,6 +29,8 @@ sources: - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-28.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Barrier @@ -48,6 +50,9 @@ The Barrier is the central protective shield, dome, or containment system around - Cardonal's laboratory identifies Grand Towers factory/control/meeting levels, multiple labs, prison sites, teleport circles, and pylon-adjacent locations as part of the wider system. - Enwi's life-force siphoning replicated across prisons and weakened the system, while Valententhide later depleted Barrier energy. - The Guilt claimed it could reset the control room; Rubyeye described overseer controls separate from the mainframe and double-locked by Valenthide prison and an automaton guard. +- Day 32 records the Tri-moon visible during the day, 16 hours ahead of expected schedule, while the Barrier looked normal and the small chunk was visible. +- Day 32 skull lore says Ruby Eye's skull had influence over the Barrier and could bend it. +- Day 35 records the Barrier thickening while two groups hit it, with the party feeling the dome's pull; TJ later said Lady Envy's sand dome kept elementals out and called the dome the `Bun` after Dirk's explanation. ## Timeline @@ -62,6 +67,8 @@ The Barrier is the central protective shield, dome, or containment system around - `day-26`: Life-prison damage shows direct risk to the Barrier. - `day-27`: The Guilt offers to reset the control room and fix a prison. - `day-30`: Salinay is sealed, Barrier energy is depleted, and Valententhide is named as the cause. +- `day-32`: The Tri-moon appears in daylight ahead of schedule, daylight shows it as a crystal, and the Barrier seems normal. +- `day-35`: The Barrier thickens and pulls while prisoner carts move, and outside-dome accounts describe a sand dome keeping elementals out. ## Related Entries @@ -77,3 +84,4 @@ The Barrier is the central protective shield, dome, or containment system around - Must it be dropped to repel the Tri-moon shard? - What are the eight beings or poles? - Can Grand Towers controls be reset safely while The Guilt, Galatrayer, and the overseer remain uncertain? +- Are the Barrier, sand dome, and `Bun` different names for one system or overlapping shields? diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index f87f9a6..3bef7ca 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -9,7 +9,7 @@ aliases: - The Guilt - Treamen first_seen: day-17 -last_updated: day-31 +last_updated: day-35 sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-19.md @@ -21,6 +21,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Excellences @@ -42,6 +44,10 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - Excellence beneath the sands protected the vulturemen after Gardwal failed and may have a brother looking for him. - The leader of the Brass City was an Excellence killed during the battle with Dunnersend forces. - Treamen was identified as the Earth Excellence; his jagged purple crystal skull artifact was recovered. +- Day 32 records the party telling Xinquiss that the quilt might be an `excellence` or might be working for one. +- A Hearthwall auction chariot was linked to an Excellence defeated in the `battle of the unending seas`. +- Day 35 council-memory manipulation made rescued prisoners forget that The Guilt was part of the council and distrust him. +- A Day 35 side note listed Pride, Lust, greed, wrath, envy, gluttony, and sloth near Lady Envy and dome information; the relationship to Excellences is unresolved. ## Timeline @@ -54,6 +60,8 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - `day-29`: The party meets Excellence under the sands and later hears The Guilt admit accidental prison opening. - `day-30`: The notes state `The Guilt is an excellence!!`. - `day-31`: The Brass City leader Excellence and Treamen the Earth Excellence are killed or defeated. +- `day-32`: Auction history links a chariot to an Excellence defeated in the `battle of the unending seas`. +- `day-35`: Memory grubs erase council members' memories of The Guilt's membership. ## Related Entries @@ -70,3 +78,5 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - What does `he will be worse` refer to in the Excellence hierarchy? - Are Pride, Wrath, The Guilt, Treamen, Darkness, Light, and the Brass City leader members of one Excellence set? - Why did The Guilt require five party members or expect there should be five? +- Who wants The Guilt removed from council memory? +- Is Lady Envy part of an Excellence/sin-title pattern, or a separate llamia leader? diff --git a/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md new file mode 100644 index 0000000..2a06cf1 --- /dev/null +++ b/data/6-wiki/concepts/goldenswell-prison-network-and-memory-grubs.md @@ -0,0 +1,52 @@ +--- +title: Goldenswell Prison Network and Memory Grubs +type: concept and event +aliases: + - Goldenswell prison network + - off-the-books prisoners + - memory grubs + - ear pupae + - ear grubs +first_seen: day-32 +last_updated: day-35 +sources: + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md +--- + +# Goldenswell Prison Network and Memory Grubs + +## Summary + +The Goldenswell prison operation was an off-the-books detention and prisoner-transfer network run through the Goldenswell militia house under orders from the Duke's office, later connected to ear-grub memory control and missing experimental menagerie creatures. + +## Known Details + +- Goldenswell refused Busalish's prison checks while Redford and Everchard had no Lady Thorpe. +- Lady Thorpe was held in the Goldenswell militia house, two floors down, after a false Lady Thorpe impersonated her in Hearthwall. +- The captain said orders came from the Duke's office, a Duke's emissary fed Lady Thorpe, and the Duke's personal guard had brought prisoners in. +- A woman with a bag on her head, a snake-bodied man, Duke's emissaries, Duke's personal guard, and yellow guards with a half-sun tattoo obscured by a waterfall are implicated. +- Off-the-books prisoners had been held a few times, with several people taken each week over the prior month. +- Prisoners or prisoner sources linked to the network included Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, Harthwall, Lady Thorpe, the Elementarium, Baytail, a half-elven woman related to the twin Justicar guards, a kobold in recognizable tattered robes, a pale halfling woman with tiger-eye-like eyes, and several council members rescued on Day 35. +- On Day 35, a prisoner cart carried magically asleep or drugged captives including Lady Katherine Cole, the Elementarium, Mr TJ Biggins, Lady Katherine Neugate, Lord [uncertain: Harmock] Hayes, and Lady Yadreya Egrine. +- Rescued council members had dried blood, eardrum injuries, deafness, and a pupa or large grub lodged in an ear canal. +- Removing and killing Lady Cole's grub restored her memories, ended the feeling that she was being watched, and revealed that affected prisoners had forgotten The Guilt was a council member and had been told not to trust him. +- Lady Yadreya Egrine recognized the grubs from the menagerie, where experimental creatures had been going missing. + +## Related Entries + +- [Lady Thorpe](../people/lady-thorpe.md) +- [TJ Biggins](../people/tj-biggins.md) +- [Lady Yadreya Egrine](../people/lady-yadreya-egrine.md) +- [Excellences](excellences.md) +- [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md) +- [Underbelly](../factions/underbelly.md) + +## Open Questions + +- Who in the Duke's office authorized the off-the-books prisoners, and who knew the full truth? +- What is the woman with a bag on her head doing in the operation? +- Are the snake-bodied boss, Lady Envy, llamia, Noxia-linked serpent talisman, and memory grubs part of one faction? +- Who used the grubs to erase The Guilt from council memory and turn council members against him? +- Did the menagerie supply the grubs, lose them, or investigate them after the fact? +- What happened to the remaining prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and the still-unidentified cells? diff --git a/data/6-wiki/events/tri-moon-countdown.md b/data/6-wiki/events/tri-moon-countdown.md index 22abce6..d95d32e 100644 --- a/data/6-wiki/events/tri-moon-countdown.md +++ b/data/6-wiki/events/tri-moon-countdown.md @@ -2,7 +2,7 @@ title: Tri-moon Countdown type: event first_seen: day-17 -last_updated: day-22 +last_updated: day-32 sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-18.md @@ -10,6 +10,7 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-32.md --- # Tri-moon Countdown @@ -24,12 +25,15 @@ The Tri-moon countdown tracks the approach of the Tri-moon and shard crisis, rea - The shard crisis requires a repelling device and may require the Barrier to go down. - The countdown moves through the coastal, Pact, and shield crystal mission sequence. - Chronology preserves a date discrepancy: day-21 metadata says `6th Jan 1002`, while day-22 says `6th Jan 1012`. +- On Day 32, the Tri-moon appeared in daylight roughly 16 hours ahead of schedule, with daylight showing it as a crystal while the Barrier looked normal and the small chunk remained visible. +- Jin-Loo's records found similar daytime Tri-moon events on 104 AD, 339 AD, 629 AD, and 1012 AD, though the count was recorded as three events in 1,000 years. ## Timeline - `day-17`: Tri-moon shard crisis becomes part of security council urgency. - `day-20`: Pact and Freeport planning happen under the countdown. - `day-22`: The notes record Tuesday, 6th Jan 1012, with 12 days to the Tri-moon. +- `day-32`: The Tri-moon appears during the day, 16 hours early. ## Related Entries @@ -41,3 +45,4 @@ The Tri-moon countdown tracks the approach of the Tri-moon and shard crisis, rea - Is the day-21 date a typo or evidence of time anomaly? - What exact date will the Tri-moon event occur? +- Why does the record list four dates while describing three events? diff --git a/data/6-wiki/factions/black-scales.md b/data/6-wiki/factions/black-scales.md index e50dc3b..3c2eb76 100644 --- a/data/6-wiki/factions/black-scales.md +++ b/data/6-wiki/factions/black-scales.md @@ -4,12 +4,13 @@ type: faction aliases: - Black Scale first_seen: day-14 -last_updated: day-26 +last_updated: day-35 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-35.md --- # Black Scales @@ -26,6 +27,7 @@ The Black Scales are mercenaries or a place/faction associated with the black dr - Merfolk said the city of the Black Scales had a `door` into [unclear], with access requiring a Grand Towers penny. - Garadwal had reportedly been in Blackscale the day before Baytail Accord and then returned to the dome. - Blackscale was using the party's kings as servants; its boss liked the Barrier because it kept his head in one place and told Garadwal not to bring the Barrier down. +- TJ Biggins described Blackscales coming to his outside-dome mining town for tributes and then leaving; he also named the greenscale family and the Loose Teeth in the same context. ## Timeline @@ -44,3 +46,4 @@ The Black Scales are mercenaries or a place/faction associated with the black dr - Is Black Scale a location, faction, mercenary company, or shorthand for the Black Scales? - What is the Black Scales `door`, and where does it lead? - Who is the boss whose head depends on the Barrier? +- Are the Blackscales collecting tribute outside the dome the same group as the Black Scales tied to Infestus and Garadwal? diff --git a/data/6-wiki/factions/mage-judicators-justicars.md b/data/6-wiki/factions/mage-judicators-justicars.md index 8f3edc3..02dd136 100644 --- a/data/6-wiki/factions/mage-judicators-justicars.md +++ b/data/6-wiki/factions/mage-judicators-justicars.md @@ -6,7 +6,7 @@ aliases: - Justicars - Justicar first_seen: day-09 -last_updated: day-21 +last_updated: day-35 sources: - data/4-days-cleaned/day-09.md - data/4-days-cleaned/day-11.md @@ -15,6 +15,8 @@ sources: - data/4-days-cleaned/day-15.md - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Mage Judicators/Justicars @@ -30,6 +32,9 @@ Mage Judicators or Justicars are authorities tied to Seaward, major settlements, - The Seaward Justicar checked books and crystal only with an eyeglass, while Elementarium wanted the Justicar gone. - Underground groups wanted the Justicar kept out of the salt dragon prison. - Later Justiciars were leaving Grand Towers to five points. +- Day 32 Justicars looked for Xinquiss at the Hearthwall auction, attempted Counterspell when Mith teleported away, took the llama-form false Lady Thorpe to Grand Towers, and had a quashed party arrest warrant from someone high up. +- Browning / Skutey Galvin was wanted for impersonating a Justicar. +- Day 35's Lady Yadreya Egrine resembled or reminded the party of the twin Justicar guards met on the way to Seaward. ## Timeline @@ -47,3 +52,5 @@ Mage Judicators or Justicars are authorities tied to Seaward, major settlements, ## Open Questions - Are Justicars protecting truth, obstructing investigation, or acting under incomplete orders? +- Who quashed the party's arrest warrant? +- What is the Justicar connection to Skutey Galvin and the twin guards' half-elven sister? diff --git a/data/6-wiki/factions/underbelly.md b/data/6-wiki/factions/underbelly.md index b820649..8cab964 100644 --- a/data/6-wiki/factions/underbelly.md +++ b/data/6-wiki/factions/underbelly.md @@ -2,9 +2,10 @@ title: Underbelly type: faction first_seen: day-14 -last_updated: day-14 +last_updated: day-32 sources: - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-32.md --- # Underbelly @@ -19,6 +20,7 @@ The Underbelly is an underground faction or community near Seaward's salt dragon - People there wanted the Justicar kept out. - They were trying to free the salt dragon. - Associated figures include a black dragonborn boss and old gnome guide. +- Day 32 shows Baytail imprisoned in Goldenswell and accused as head of the Underbelly. ## Timeline @@ -33,3 +35,4 @@ The Underbelly is an underground faction or community near Seaward's salt dragon ## Open Questions - Are they liberators, criminals, cultists, or a mix? +- Is Baytail truly the head of the Underbelly, or was the accusation part of the Goldenswell prisoner operation? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index a9cf367..9a6b447 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -31,6 +31,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Pentacity Campaign Wiki @@ -82,6 +84,10 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) - [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md) +- [Lady Thorpe](people/lady-thorpe.md) +- [TJ Biggins](people/tj-biggins.md) +- [Lady Yadreya Egrine](people/lady-yadreya-egrine.md) +- [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md) ## Places @@ -116,6 +122,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md) - [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md) - [Freeport Auction Lots](items/freeport-auction-lots.md) +- [Hearthwall Auction Lots](items/hearthwall-auction-lots.md) ## Concepts and Events @@ -125,3 +132,4 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Excellences](concepts/excellences.md) - [Tri-moon Countdown](events/tri-moon-countdown.md) - [Shield Crystal Mission](events/shield-crystal-mission.md) +- [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md index ef613b4..7b3a7b6 100644 --- a/data/6-wiki/inventories/party-inventory.md +++ b/data/6-wiki/inventories/party-inventory.md @@ -1,7 +1,7 @@ --- title: Party Inventory type: stateful inventory -last_updated: day-22 +last_updated: day-35 sources: - data/4-days-cleaned/day-03.md - data/4-days-cleaned/day-05.md @@ -13,6 +13,8 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Party Inventory @@ -37,6 +39,10 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Drown spear +1 returning | party | `day-22` | `data/4-days-cleaned/day-22.md` | Dull-blue spear from the Bug Boss; speaks Aquan. | | Plate of Hydran +1 | party | `day-22` | `data/4-days-cleaned/day-22.md` | Plate mail granting cold resistance. | | Three dispel magic scrolls | Geldrin | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the shield crystal site and went to Geldrin. | +| Brutor Ruby Eye skull | Geldrin / party | `day-32` | `data/4-days-cleaned/day-32.md` | The glowing, humming, vibrating skull was given to Geldrin; attunement produced visions and Barrier-related lore. | +| Jin-Loo's ring | party | `day-32` | `data/4-days-cleaned/day-32.md` | Eroll returned with a ring, and Jin-Loo appeared next to the party; the party kept the ring so Jin-Loo could find them again. | +| Silver serpent pendant talisman | party | `day-35` | `data/4-days-cleaned/day-35.md` | Found on the snake-bodied boss; magical talisman described as +1 cleric cash rolls [unclear] with Noxia catch spells. | +| Bob's shell | party | `day-35` | `data/4-days-cleaned/day-35.md` | Given by Skum when he appeared to rescue Elementarium. | ## No Longer Held or Transferred @@ -49,6 +55,8 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Coin press | given to Basilisk | `day-17` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Initially selected by the note-writer, then given to Basilisk. | | Dragon skull of Alsafaur | returned to black dragon | `day-16` | `data/4-days-cleaned/day-16.md` | Given to the black dragon at the Barrier in exchange for being `even`. | | 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | +| One Brass City platinum piece | added to auction | `day-32` | `data/4-days-cleaned/day-32.md` | The party added one Brass City platinum piece to the Hearthwall auction. | +| Chariot and auction property | taken to the Palace | `day-32` | `data/4-days-cleaned/day-32.md` | Guards took the chariot and everything to the Palace because Lady Harthwall wanted to see the party. | ## Promised, Expected, or Pending @@ -57,7 +65,7 @@ This page tracks lifecycle state for objects the party holds, controlled recentl | Baroness forces | promised | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) promised to loan some forces and gave laboratory permission/information. | | Huntmaster aid | promised | `data/4-days-cleaned/day-20.md` | Huntmaster Thrune agreed to provide aid against the Excellence. | | Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | Basilisk was arranging contact in Fairshaws or Freeport carrying Winter Rose. | -| Mother-of-pearl elemental chariot auction | pending | `data/4-days-cleaned/day-22.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it at the Freeport auction house in 7 days. | +| Mother-of-pearl elemental chariot auction | possibly occurred, identity uncertain | `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it; a chariot at the Hearthwall auction was tied to an Excellence and taken to the Palace, but identity with the mother-of-pearl chariot is not confirmed. | ## Unclear Custody or Status @@ -65,10 +73,12 @@ This page tracks lifecycle state for objects the party holds, controlled recentl |---|---|---|---| | Shock dagger | `day-03` | `data/4-days-cleaned/day-03.md` | Was it kept, spent, transferred, or replaced? | | Bughunter ring with purple gem/runes | `day-03` | `data/4-days-cleaned/day-03.md` | Did the party keep and identify it after trading for use of the gearsisor? | -| Shield crystal shard / crystal | `day-06`, `day-12`, `day-22` | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-12.md`, `data/4-days-cleaned/day-22.md` | The shard was party-accessible earlier and the sea shield crystal was the mission target; final custody/state is not explicit. | +| Shield crystal shard / crystal | `day-06`, `day-12`, `day-22`, `day-32` | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-12.md`, `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-32.md` | The shard was party-accessible earlier; on Day 32 Xinquiss and Wroth hid a shield crystal piece while Justicars searched for Xinquiss. | | Museum treasure division | `day-16` | `data/4-days-cleaned/day-16.md` | Dirk took a sword and merfolk scepter; Invar took a ring of protection and potion bottle; Geldrin took spear and scrying eye; note-writer took coin press and cube; Pythus took books. Several later dispositions remain unclear. | | Scroll of teleportation | `day-16` | `data/4-days-cleaned/day-16.md` | Pythus gave one to Geldrin; no use recorded. | | Void contact circle of obsidian | `day-16` | `data/4-days-cleaned/day-16.md` | The void creature released it for contact; custody and reliability remain unclear. | | Aldaine Hartwell locked book | `day-16` | `data/4-days-cleaned/day-16.md` | Needs powerful identity magic to learn its command word; current holder unclear. | | White dragonscale | `day-21` | `data/4-days-cleaned/day-21.md` | Dropped from an icicle in the party's cold room; whether anyone took it is not recorded. | | Mother-of-pearl elemental chariot | `day-22` | `data/4-days-cleaned/day-22.md` | Party took it back, but sale is pending and the chained water elementals' desired outcome is unclear. | +| Bangle attached to prisoner cart | `day-35` | `data/4-days-cleaned/day-35.md` | The party used invisibility to attach a bangle to the prisoner cart; exact function is not stated. | +| Ear pupae / memory grubs | `day-35` | `data/4-days-cleaned/day-35.md` | Removed from rescued prisoners' ear canals; killing Lady Cole's grub restored memories and ended the watched feeling. | diff --git a/data/6-wiki/inventories/party-treasury.md b/data/6-wiki/inventories/party-treasury.md index 7e03438..9d84ca1 100644 --- a/data/6-wiki/inventories/party-treasury.md +++ b/data/6-wiki/inventories/party-treasury.md @@ -1,7 +1,7 @@ --- title: Party Treasury type: stateful treasury -last_updated: day-22 +last_updated: day-35 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -15,6 +15,8 @@ sources: - data/4-days-cleaned/day-19.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Party Treasury @@ -30,6 +32,7 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 5 gp each and an old copper coin | `day-14` | `data/4-days-cleaned/day-14.md` | Recorded after a guard encounter. | | 70 gp and four tower pennies | `day-16` | `data/4-days-cleaned/day-16.md` | Recovered after the black dragonborn fight. | | 400 gp | `day-19` | `data/4-days-cleaned/day-19.md` | Reward after killing Kairbidius. | +| 50 platinum pieces in Frawshers currency and a Grand Towers penny | `day-32` | `data/4-days-cleaned/day-32.md` | Stolen from the Goldenswell captain's office by Bug Geldrin. | ## Spent, Deposited, or Transferred @@ -38,6 +41,9 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 500 gp deposit and 100 gp/day | `day-21` | `data/4-days-cleaned/day-21.md` | Boat loan arrangement, divided as 125 gp each for the deposit. | | 200 gp | `day-21` | `data/4-days-cleaned/day-21.md` | Given to Zinquiss for four healing potions; returned as three healing potions and one greater healing potion. | | 112 gp | `day-22` | `data/4-days-cleaned/day-22.md` | Coin pouches recovered at the shield crystal site and given to the crew. | +| 50 platinum pieces plus returned money, with 1 platinum down payment | `day-32` | `data/4-days-cleaned/day-32.md` | Offered or paid to the Goldenswell captain as a bribe to rescue prisoners and get him out of the city. | +| One further platinum to the captain | `day-35` | `data/4-days-cleaned/day-35.md` | Paid for getting the party this far during the prisoner-cart operation. | +| Coins handed to guards and back-gate bribe attempt | `day-35` | `data/4-days-cleaned/day-35.md` | Used to support the drill cover story and entry attempt. | ## Promised, Offered, or Pending @@ -50,6 +56,7 @@ This page tracks money, expenses, rewards, deposits, debts, and uncertain accoun | 2,000 gp, 500 gp advance, extra for water elementals | `day-12` | `data/4-days-cleaned/day-12.md` | Elementarium contract for discretion/results; notes also say 200 gp paid, so final payout is unclear. | | 5 sp per skull | `day-11`, `day-12` | `data/4-days-cleaned/day-11.md`, `data/4-days-cleaned/day-12.md` | Skull-buying offer from Iakaxi/Chalky's master; no completed sale recorded. | | auction proceeds unknown | `day-22` | `data/4-days-cleaned/day-22.md` | Zinquiss planned to auction the mother-of-pearl elemental chariot in 7 days. | +| Hearthwall auction proceeds unknown | `day-32` | `data/4-days-cleaned/day-32.md` | One Brass City platinum piece was added to auction; the chariot bidding reached 11,900 gp and possibly 14,000 gp, but party proceeds are unclear. | ## Unclear or Not Party Treasury diff --git a/data/6-wiki/items/hearthwall-auction-lots.md b/data/6-wiki/items/hearthwall-auction-lots.md new file mode 100644 index 0000000..475fe43 --- /dev/null +++ b/data/6-wiki/items/hearthwall-auction-lots.md @@ -0,0 +1,44 @@ +--- +title: Hearthwall Auction Lots +type: item group +aliases: + - Grand Auction House lots + - Hearthwall auction + - Harthwall auction +first_seen: day-32 +last_updated: day-32 +sources: + - data/4-days-cleaned/day-32.md +--- + +# Hearthwall Auction Lots + +## Summary + +The Hearthwall Grand Auction House lots included historical art, magical items, coins, wines, and the chariot tied to an Excellence defeated in the `battle of the unending seas`. + +## Known Lots and Sale Details + +- Drink lots included 28-year elven booze sold for 20 gp, 100-year-old and older bottles bought by Candelissa Hustlebustle, Smehlebeard whiskey bought by Janet Boulderdew for 270 gp, Crankfruit sold for 400 gp, Blind gale XXX with `physick before imbibing`, and Sereza cherry wine sold for 10 gp. +- Coin lots included five Black Dragons, a Grand Towers penny, a golden crown and two silver clappers, dwarven copper coins, unsold electrum, silver pieces associated with gnome great Fummouth, and a Brass City coin. +- Art lots included the talon of soot, a painting of Lord Bleakstorm / Caroline Harthwall(?) / Iceborg / Jayseel details, `Valententide's Betrayal`, Davina Browning's `circling vultures`, love poetry / blessings of Laurel, and a red and blue glass sculpture of Serra. +- Magical and unusual lots included a moon-cycle pocket watch, green-rim spectacles translating elven to common, the mahogany / Smulty box that made illusionary scenes, Ray of sorting and stirring, elven forest comb of delousing, elven turtle flute carved with mice, smoke hourglass, holy symbol of Noxia, shield ring with runes of Lauren, Firefang, Browning's spell scroll, bracelet of locating, and a mimic mouse trap. +- Firefang was an 8/400-year-old longsword in Invar's style with +1D6, 5 spell charges, and Burning Hands; it sold for 2,050 gp. +- Browning's spell scroll generated a new random spell every morning at 2:37, was disrupted by Geldrin's Dispel Magic, was valued at 600 gp, and sold for 6,200 gp. +- The chariot interested The Guilt, was tied to an Excellence defeated in the `battle of the unending seas`, drew heavy bidding, and was taken with everything to the Palace. +- The party added one Brass City platinum piece to the auction. + +## Related Entries + +- [Xinquiss/Zinquiss](../people/xinquiss-zinquiss.md) +- [Edward Browning](../people/edward-browning.md) +- [Excellences](../concepts/excellences.md) +- [Mother-of-Pearl Elemental Chariot](mother-of-pearl-elemental-chariot.md) +- [Known Passwords and Inscriptions](../clues/known-passwords-and-inscriptions.md) + +## Open Questions + +- Is the Hearthwall chariot the same object as the mother-of-pearl elemental chariot from Day 22, or a separate chariot? +- What is the `Amle for adult?` lot mentioned before detailed bidding? +- Who are the Ravens, jewellery men, emissary, Dally, and Harthwall partner, and what were their agendas? +- What did `battle of the unending seas`, `Valententide's Betrayal`, and the `talon of soot` refer to historically? diff --git a/data/6-wiki/items/mother-of-pearl-elemental-chariot.md b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md index 9710ab5..4ddc6cb 100644 --- a/data/6-wiki/items/mother-of-pearl-elemental-chariot.md +++ b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md @@ -5,10 +5,11 @@ aliases: - mother-of-pearl chariot - chariot with water elementals first_seen: day-22 -last_updated: day-31 +last_updated: day-32 sources: - data/4-days-cleaned/day-22.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md --- # Mother-of-Pearl Elemental Chariot @@ -24,11 +25,13 @@ The mother-of-pearl elemental chariot is a light chariot found docked at a cove - Dirk spoke to the elementals; they wanted something [unclear] and agreed to come with the party on the big boat. - Zinquiss planned to sell it at auction in seven days at the Freeport auction house. - A chariot appeared among later auction lots and interested The Guilt, but the notes do not explicitly confirm it was the same mother-of-pearl elemental chariot. +- Day 32 gives the auction chariot more context: it was connected to an Excellence defeated in the `battle of the unending seas`, drew bids from Ravens, jewellery men, an emissary, Dally, the Harthwall partner, and Lady Thorpe, and was taken to the Palace with other auction property. ## Timeline - `day-22`: The party finds the chariot at the cove after the shield crystal mission and takes it with them. - `day-31`: A chariot is listed at auction and draws The Guilt's interest. +- `day-32`: The Hearthwall auction chariot is linked to an Excellence and taken to the Palace. ## Related Entries @@ -41,3 +44,4 @@ The mother-of-pearl elemental chariot is a light chariot found docked at a cove - What did the chained water elementals want [unclear]? - Will auctioning the chariot free, transfer, or exploit the elementals? - Was the auction chariot definitely the same object recovered from the cove? +- What was the `battle of the unending seas`, and which Excellence was defeated there? diff --git a/data/6-wiki/items/shield-crystals.md b/data/6-wiki/items/shield-crystals.md index c49c242..5185bf4 100644 --- a/data/6-wiki/items/shield-crystals.md +++ b/data/6-wiki/items/shield-crystals.md @@ -6,7 +6,7 @@ aliases: - sea shield crystal - shield crystal first_seen: day-06 -last_updated: day-22 +last_updated: day-32 sources: - data/4-days-cleaned/day-06.md - data/4-days-cleaned/day-13.md @@ -16,6 +16,7 @@ sources: - data/4-days-cleaned/day-19.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-32.md --- # Shield Crystals @@ -32,6 +33,7 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - A wooden shield crystal figurehead appeared on the Pride of the Penta Cities. - The underwater shield crystal on day 22 was approximately one metre square. - The sea shield crystal was one major priority for Pact and Barrier repair. +- Day 32 shows Xinquiss in Hearthwall with a shield crystal; the party agreed to drop off a piece, and Wroth later helped hide the crystal through a trapdoor. ## Timeline @@ -39,6 +41,7 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - `day-13`: A crystal shard interacts with Seaward pylon flickers. - `day-17`: Sea shield crystal becomes a priority. - `day-22`: The party fights at the underwater crystal site and recovers loot. +- `day-32`: Xinquiss and Wroth hide a shield crystal piece in Hearthwall while Justicars search for Xinquiss. ## Related Entries @@ -51,3 +54,4 @@ Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead - Are shield crystals batteries, regulators, keys, toxins, or all of these? - What is the underwater crystal's current status after the mission? +- What shield-crystal piece did the party give or hide with Xinquiss, and why did the Justicars want him? diff --git a/data/6-wiki/items/tri-moon-shard.md b/data/6-wiki/items/tri-moon-shard.md index 74bf66a..1b6e507 100644 --- a/data/6-wiki/items/tri-moon-shard.md +++ b/data/6-wiki/items/tri-moon-shard.md @@ -5,7 +5,7 @@ aliases: - moon shard - fragment of the moon first_seen: day-06 -last_updated: day-30 +last_updated: day-32 sources: - data/4-days-cleaned/day-06.md - data/4-days-cleaned/day-15.md @@ -15,6 +15,7 @@ sources: - data/4-days-cleaned/day-22.md - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md --- # Tri-moon Shard @@ -33,6 +34,8 @@ The Tri-moon shard is a smaller fragment separate from the moon, much closer to - Cardenald and Geldrin calculated that the shard would probably still hit Grand Towers if nothing changed. - If the party stopped another shard, it would not be on course for ship 2. - The moon shard later went into the sea; Invar retrieved it and tried to take it back to the ground towers, while Xinquss was tasked to retrieve it. +- On Day 32, the Tri-moon was visible during the day, which is unusual, and appeared 16 hours ahead of schedule; daylight showed it as a crystal, the small chunk was visible, and the Barrier looked normal. +- Jin-Loo found similar events in records beginning 1,000 years earlier, noting 104 AD, 339 AD, 629 AD, and 1012 AD despite saying it had happened three times. ## Timeline @@ -42,6 +45,7 @@ The Tri-moon shard is a smaller fragment separate from the moon, much closer to - `day-22`: The date is Tuesday, 6th Jan 1012, 12 days to the Tri-moon. - `day-27`: Cardenald and Geldrin confirm Grand Towers remains threatened by the shard trajectory. - `day-30`: The shard goes into the sea and is retrieved by Invar while Xinquss is assigned to recover it. +- `day-32`: The Tri-moon appears in daylight 16 hours ahead of schedule. ## Related Entries @@ -55,3 +59,4 @@ The Tri-moon shard is a smaller fragment separate from the moon, much closer to - Who or what broke the shard free? - Can it be repelled without catastrophic Barrier failure? - Who tasked Xinquss with retrieving it, and where did Invar take it afterward? +- What happened on the prior recorded daytime Tri-moon dates, especially 629 AD? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index 14e490b..28e9f40 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -31,6 +31,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Open Threads @@ -73,3 +75,14 @@ sources: - What are Enwi's gloves doing in the Goliath Tower in the Oasis, and does that mean Enwi died there without being released? - What are Ashktioth, Tradesmall, the Goliath tower in a field, Goldenswell's impact site, and the generations of Goliaths serving dragons? - What do the command-tent platinum coins commemorate by `the fall of the labour in the name of the lord Searean`, and what are the domed city tower and snake symbols? +- Is [Lady Hearthwill](people/lady-hearthwill.md) the same person as Lady Hearthwall / Lady Harthwall, and what happened to her after the antidote, injury, and Lady Thorpe impersonation crisis? +- Who replaced [Lady Thorpe](people/lady-thorpe.md) with a llama-form impostor, why did the impostor use Noxia-like identity-suppression poison or curse, and what did the Justicars learn after taking the llama to Grand Towers? +- What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s shield-crystal role after hiding a crystal piece with Wroth, and why were Justicars looking for him at the Hearthwall auction? +- Are the [Hearthwall Auction Lots](items/hearthwall-auction-lots.md) chariot, `Valententide's Betrayal`, `battle of the unending seas`, Firefang, Browning's scroll, holy symbol of Noxia, shield ring with runes of Lauren, and talon of soot clues to the same ancient conflict? +- Why was the Tri-moon visible during the day 16 hours early, and why did Jin-Loo's records list 104 AD, 339 AD, 629 AD, and 1012 AD despite saying the event happened three times in 1,000 years? +- Who runs the [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md): the Duke's office, the woman with a bag on her head, the snake-bodied emissary, Lady Envy, Noxia-linked agents, or another faction? +- Why did memory grubs erase council members' memories of [The Guilt](concepts/excellences.md), make them distrust him, and create a feeling of being watched? +- What became of the remaining Goldenswell prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, Baytail, the Elementarium, the half-elf sister of the twin Justicars, and the pale halfling with tiger-eye eyes? +- What is [TJ Biggins](people/tj-biggins.md)'s outside-dome context: Plantation of Newt [unclear] Vain, Lady Envy's sand dome, Loose Teeth, greenscale family, Blackscales tribute, Bumblebeers, Bleakshrouvers, mining, fire and earth raids, and paid entry into the dome? +- What happened at Lady Yadreya Egrine's menagerie, and who stole the experimental creatures later recognized as memory grubs? +- What does Morgana's forced-feeling kiss vision of a laughing female dragon, possibly the Peridot Queen, mean for Elementarium's green eyes and the silver dragon man who cast a spell on him? diff --git a/data/6-wiki/people/basilisk-busalish.md b/data/6-wiki/people/basilisk-busalish.md index 60d2163..dad2d9f 100644 --- a/data/6-wiki/people/basilisk-busalish.md +++ b/data/6-wiki/people/basilisk-busalish.md @@ -7,13 +7,14 @@ aliases: - Basalisk - Busalish first_seen: day-23 -last_updated: day-30 +last_updated: day-32 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md --- # Basilisk / Busalish @@ -29,15 +30,20 @@ Basilisk, Basaluk, Basalisk, or Busalish is a recurring contact who receives par - Basilisk warned the party that they were in over their heads when they asked about Sister Proulsothight's box. - Day 29 records the party sending Busalish a message saying they had killed Lortesh. - Day 30 begins with Busalish saying he wanted to meet the party and was coming in; later the party messaged Busalish about The Guilt being an Excellence and asked for mage help with Wrath. +- Day 32 records the party asking Busalish for guild help to check prisons while searching for Lady Thorpe. +- Busalish's note said Redford and Everchard had no Lady Thorpe, Goldenswell refused and prevented access, and `Don't come to Strong hedge Compromised.` +- The note also connected Little Bugy, an attempted assassination of Sefris on the ground, and the Cult of Salvation. ## Related Entries - [Dunnersend](../places/dunnersend.md) - [Excellences](../concepts/excellences.md) - [Lortesh](lortesh.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) ## Open Questions - Are Basilisk, Basaluk, Basalisk, and Busalish the same contact? - Who are the tabaxi and boss who appeared with him? - Why was he seeking the Gelissa-like box while warning the party to leave it alone? +- What compromised Strong Hedge, and how does it connect to Goldenswell's off-the-books prisoners? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index 675b010..af2be26 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,7 +5,7 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-30 +last_updated: day-32 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md @@ -16,6 +16,7 @@ sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-28.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md --- # Brutor Ruby Eye @@ -35,6 +36,8 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - He created his own prison-status readout using a humanized effigy of the spirit, runes, and links to the prison and prison runes. - Rubyeye described Grand Towers technology beneath the towers, the overseer controls, Valenthide prison, and an automaton guard. - On day 30 Cardenald resurrected him from the skull; Rubyeye returned with glowing red eyes, made a beard, and helped gather Counterspell scrolls and orbs. +- On Day 32, Geldrin attuned to the skull and saw visions of Valententide, dragon fights, 629 AD, a giant skeletal dragon in a dwarven throne room, Gary the corrupted sphinx heading toward Grand Towers, the Mother crater, Condennis Place, an underground dwarven city, the molten prison, Goldenswell prisoners, and a ruined Goliath City. +- The skull was linked to ascension to godhood, the daytime Tri-moon event, influence over the Barrier, and the ability to show visions, crush foes, let him pass, and smite foes only when nearby. ## Timeline @@ -64,3 +67,4 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - How complete and trustworthy is the skull's account? - What book did Rubyeye obtain from Aquaria, and did it contribute to the death at the desert laboratory? - Why is Rubyeye connected to both the missing dwarf city and the missing Goliath city? +- Are the skull visions showing Rubyeye's last witnessed events, current surveillance through moon reflections, or both? diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md index fa6b0c8..2fb2e7a 100644 --- a/data/6-wiki/people/edward-browning.md +++ b/data/6-wiki/people/edward-browning.md @@ -4,13 +4,14 @@ type: person aliases: - Browning first_seen: day-23 -last_updated: day-31 +last_updated: day-32 sources: - data/4-days-cleaned/day-23.md - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-28.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md --- # Edward Browning @@ -27,6 +28,8 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Day 28 connects Browning and Ennui to something beneath Grand Towers, possibly an advance in dome technology or a power source for the workshop. - Day 30 places Browning's lab near Craters Edge and records that he bargained to rid fishes from the Barrier in return for a peace treaty. - Day 31 includes Browning's scroll at auction, which produces a new random spell each morning at 2:37. +- Day 32 gives more detail on Browning's scroll: Geldrin tried to inspect arcane writing and cast Dispel Magic, making the words disappear; the scroll generated a new random spell every morning at 2:37, was valued at 600 gp, and sold for 6,200 gp. +- Browning / Skutey Galvin was wanted for impersonating a Justicar, but the notes do not establish whether Skutey Galvin is Browning, an alias, or a separate impersonator. ## Related Entries @@ -40,3 +43,4 @@ Edward Browning, usually called Browning, is an ancient mage or engineer tied to - Is Browning alive, dead, hidden, or operating through proxies? - What exactly did Browning and Ennui find or build under Grand Towers? - What was the peace treaty tied to clearing fishes from the Barrier? +- Who is Skutey Galvin, and what was the Justicar impersonation? diff --git a/data/6-wiki/people/lady-hearthwill.md b/data/6-wiki/people/lady-hearthwill.md index e74cbcb..c3e38b6 100644 --- a/data/6-wiki/people/lady-hearthwill.md +++ b/data/6-wiki/people/lady-hearthwill.md @@ -4,29 +4,37 @@ type: person aliases: - Hearthwill first_seen: day-30 -last_updated: day-30 +last_updated: day-32 sources: - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md --- # Lady Hearthwill ## Summary -Lady Hearthwill is a regional noble or military authority mentioned during the Day 30 war news around Goldenswell, Dunnersend, and the giants. +Lady Hearthwill, possibly the same person as Lady Hearthwall / Lady Harthwall, is a regional noble or military authority connected to Hearthwall, Goldenswell war news, and the Lady Thorpe impersonation crisis. The name merge remains uncertain but likely enough to preserve together with explicit variants. ## Known Details - She was injured after deciding to take the fight against the giants into her own hands. - The news report said she was recuperating normally. - Later the same day, Invar received a message saying the Lady was unavailable because she was fighting on the front lines. +- Day 32 places Lady Hearthwall / Lady Harthwall in Hearthwall, still injured, while Lady Freya attended the city. +- Lady Harthwall wanted to see the party after the false Lady Thorpe incident; doctors were making an antidote while she suffered great pain from a condition that seemed like magical poison or a religious curse, possibly Noxia. +- Lady Harthwall had noticed that Lady Thorpe had not visited as much as expected, but had not realized her wife or partner had been replaced. +- Eroll was used to send a message to Lady Harthwall after the Goldenswell rescue. ## Related Entries - [Dunnersend](../places/dunnersend.md) +- [Lady Thorpe](lady-thorpe.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) - [Open Threads](../open-threads.md) ## Open Questions -- Is Lady Hearthwill related to the similarly uncertain Heatherhall / Heartwall / Hathwall names associated with [The Freeport Baroness](freeport-baroness.md), or is this a separate person? +- Is Lady Hearthwill the same person as Lady Hearthwall / Lady Harthwall, or are these separate Hearthwall nobles? - Which front was she fighting on, and what authority does she hold over the anti-giant response? +- Was her poison or curse part of the same operation that abducted Lady Thorpe? diff --git a/data/6-wiki/people/lady-thorpe.md b/data/6-wiki/people/lady-thorpe.md new file mode 100644 index 0000000..4c91705 --- /dev/null +++ b/data/6-wiki/people/lady-thorpe.md @@ -0,0 +1,34 @@ +--- +title: Lady Thorpe +type: person +first_seen: day-32 +last_updated: day-32 +sources: + - data/4-days-cleaned/day-32.md +--- + +# Lady Thorpe + +## Summary + +Lady Thorpe is Lady Harthwall's wife or partner and a front-line noble or commander who was impersonated, abducted, imprisoned in Goldenswell, and rescued by the party. + +## Known Details + +- At the Hearthwall auction, the apparent Lady Thorpe had six guards in transparent dragon or silver dragon livery, seemed flustered and confused, did not appear to recognize the party properly, and insisted on returning to failing front lines. +- When a concentration spell failed, the false Lady Thorpe turned into a llama; Justicars took the llama to Grand Towers. +- The real Lady Thorpe was found by Scrying in a grey mountain-stone dungeon and was eventually located in the Goldenswell militia house, two floors down. +- She was injured, malnourished, and had no fleshcrafting when rescued. +- After revival, she reported a man with the lower half of a snake's body travelling back with the Goldenswell army when they decided to leave. + +## Related Entries + +- [Lady Hearthwill](lady-hearthwill.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md) + +## Open Questions + +- Who controlled or created the false Lady Thorpe? +- Why was Lady Thorpe specifically abducted and replaced? +- What did Grand Towers learn from the llama impostor, if anything? diff --git a/data/6-wiki/people/lady-yadreya-egrine.md b/data/6-wiki/people/lady-yadreya-egrine.md new file mode 100644 index 0000000..7089acd --- /dev/null +++ b/data/6-wiki/people/lady-yadreya-egrine.md @@ -0,0 +1,37 @@ +--- +title: Lady Yadreya Egrine +type: person +aliases: + - Lady Yadreya Egrine + - Baroness of Riversmeet +first_seen: day-35 +last_updated: day-35 +sources: + - data/4-days-cleaned/day-35.md +--- + +# Lady Yadreya Egrine + +## Summary + +Lady Yadreya Egrine, Baroness of Riversmeet, is a rescued half-elf council member whose menagerie knowledge connects Goldenswell's memory-control grubs to missing experimental creatures. + +## Known Details + +- She was a youngish Rein lore elf or half-elf, very elven-looking, and reminded the party of the twin Justicar guards met on the way to Seaward. +- She had been with a menagerie where creatures had gone missing, especially experimental creatures; new disappearances happened about a month before Day 35. +- She was taken a few days before rescue after a spell was cast on her while she was doing paperwork in a chamber. +- She recognized the ear grubs from the menagerie. +- Like the other rescued council members, she had forgotten that The Guilt was on the council, had been told not to trust him, and stopped feeling watched once the grubs were removed. + +## Related Entries + +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Who stole the menagerie creatures and used or bred the memory grubs? +- Why was Riversmeet's Baroness targeted by the Goldenswell prison operation? +- Are her resemblance links to the twin Justicar guards familial, political, or coincidental? diff --git a/data/6-wiki/people/minor-figures-days-32-35.md b/data/6-wiki/people/minor-figures-days-32-35.md new file mode 100644 index 0000000..4972183 --- /dev/null +++ b/data/6-wiki/people/minor-figures-days-32-35.md @@ -0,0 +1,89 @@ +--- +title: Minor Figures from Days 32 and 35 +type: people rollup +first_seen: day-32 +last_updated: day-35 +sources: + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md +--- + +# Minor Figures from Days 32 and 35 + +This rollup preserves one-off, uncertain, minor, or category-unclear people and name-like figures from Days 32 and 35 so they remain searchable without forcing uncertain merges. + +## Hearthwall and Auction Figures + +- Lan: earth god associated with love, home, and family; the statue of Lan outside Hearthwall resembled the Statue of Serva. +- Serva: figure represented by the Statue of Serva, stylistically similar to Lan's statue. +- Lady Freya: present in Hearthwall while Lady Harthwall remained injured. +- Human with a very noticeable underbelly: seen at the Baked Mattress. +- Barkeep described as `Patches of night & husband`: associated with the Baked Mattress. +- Candelissa Hustlebustle: Arabica pechen lady seated beside the party at the auction; bought drink lots. +- Aon Ankt: narrator's blood letting tutor, seen in the third row. +- Janet Boulderdew: bought Smehlebeard whiskey. +- Shiny man dressed up by someone: bought five Black Dragons. +- Raven no. 1 / Raven 1 and Raven 2: auction bidders; Raven 1 bought a Grand Towers penny, `Valententide's Betrayal`, and the holy symbol of Noxia, while Raven 2 bought silver pieces associated with gnome great Fummouth. +- Tabaxi with a shaved head and pink mohawk: bought a Brass City coin. +- Lord Bleakstorm: depicted in a painting refusing demands; also noted as a possible tree name at Goldenswell's Museum Gardens. +- Caroline Harthwall(?) with an infant and blue cow: uncertain figure in an auction painting. +- Iceborg and Jayseel horns: recognized or possibly recognized figures in an auction painting. +- Davina Browning: subject of the painting `circling vultures`, covering her eyes with hands that had eyes on them. +- Laurel: associated with love poetry or blessings sold at auction. +- Serra: represented by a red and blue glass sculpture. +- Elf / flirting woman with goat legs: bought the mahogany / Smulty box. +- Werewolfish [uncertain: Repiteth]: bought the shield ring with runes of Lauren. +- Red-and-purple-haired dwarf male: bought Firefang. +- Dally who walks in the room: involved or noted during the chariot bidding war. +- Harthwall partner: involved or noted during the chariot bidding war. +- Jewellery guy / jewellery men: bought several lots, including Browning's spell scroll. +- Arthur's group: present around Lot 35. +- Conrad Harthwall: present around Lot 35. +- Numbhotall / Scrambleduck / Nambodall: uncertain name variants for the figure who smashed a stick on the floor, cast a spell, and was associated with a locating duck. +- Older human man, robed figure, silver dragonborn, backpack of scrolls, floating book, and gnome with a wooden shield bearing a golden duck: present around Lot 35. +- Laura: won the bracelet of locating for 101 gp. +- Skutey Galvin: name linked to Browning and wanted for impersonating a Justicar; not merged with Edward Browning without confirmation. +- Constantine Harthwall: false name the narrator gave to the Justicar. +- Wroth: called by Xinquiss to help hide the shield crystal. +- Barrett: returned with the militia-house prisoner roster. +- Lady Neegate: quiet lately because of a loss in the family. +- Bugy / Little Bugy: connected to an attempted assassination of Sefris on the ground and the Cult of Salvation. +- Sefris: assassination target connected to Cult of Salvation activity. +- Cardencalde: did not answer Eroll, which was strange because Eroll contacts her directly. +- Eroll: direct messaging/contact route to Cardencalde and Lady Harthwall; returned with Jin-Loo's ring. +- Alf: wanted out allot - Elementarium. +- Scumi: goblin with a bag of skulls who tried to survey or enter the prison. +- Gary: corrupted sphinx heading toward Grand Towers in skull visions. +- Baytail: accused head of the Underbelly, seen as a Goldenswell prisoner. +- Isabella Neegale and the Earl of Clay Meadows: possible identity anchors for the pale-skinned halfling prisoner with brown speckled tiger-eye eyes. +- Twin Justicar guards: their sister may be the half-elven woman seen among Goldenswell prisoners. + +## Day 35 Figures and Prisoner-Transport Figures + +- Mr Seneshell / human man in white gloves: investigated the Goldenswell captain's office and later appeared as the snake-bodied boss; killed by Geldrin's fireball. +- Daisy, Applejack, Carrot Muncher, and [uncertain: Harpvicarch]: horses involved in the prisoner-cart operation; later killed in battle. +- Kobold female and halfling: escorted from the militia house before the prisoner transport; TJ Biggins was among the prisoners. +- Snake-bodied boss / snake guy: transformed his lower half into a snake, carried a silver serpent pendant talisman, and was killed. +- Lady Katherine Cole: narrator's boss; rescued council member whose memory returned after an ear grub was removed and killed. +- Lady Katherine Neugate: rescued council member, captured for four days, reticent to speak, and affected by ear grubs. +- Lord [uncertain: Harmock] Hayes: rescued prisoner and apparent council member. +- Lady Esmerelda: mentioned at Bluemeadows without context. +- Lady Envy: named by TJ as boss of the llamia. +- Lady [uncertain: Huthnall]: investigating corrupt slate and related matters. +- Lady [uncertain: Suisant] De'Beauchamp: associated with Iron craft firewise. +- Inquisitor from Salvation: noted near Thrice pass on the ground; exact role unclear. +- Thrice: noted with `pass on the ground`; exact identity or place unclear. +- Tarrak: woke up during memory-grub removal. +- Skum: appeared on the cart roof to rescue Elementarium and gave the party Bob's shell. +- Bob: associated with the shell Skum gave the party. +- Human who walked like a horse and was missing two legs: unidentified figure connected to Elementarium's removal. +- Silver dragon man wearing a cloak: cast a spell on Elementarium and led him to the cart. +- Laughing female dragon / Peridot Queen?: vision Morgana saw while trying to wake Elementarium. + +## Groups and Creature Labels + +- Hillfolk, guards, auction attendees, reporters, doctors, Goldenswell forces, Duke's men, Duke's guards, Duke's emissaries, and Duke's personal guard: group labels preserved in the relevant day narratives and larger concept pages. +- Ravens, jewellery men, emissary, and Harthwall partner: auction-bidder labels whose agendas remain unresolved. +- Yellow guards wearing a half-sun tattoo obscured by a waterfall: Goldenswell militia-house guards linked to the off-the-books prison operation. +- Llamia: cart guards transformed into llamia during the Day 35 ambush; Lady Envy was said to be their boss. +- Greenscale family, Loose Teeth, Bumblebeers, red Goliaths but bigger, Bleakshrouvers, Rein lore elves, rescuees, and local militia: external groups or descriptive labels from TJ's and Bluemeadows material. diff --git a/data/6-wiki/people/morgana.md b/data/6-wiki/people/morgana.md index 5a2a530..eabab4e 100644 --- a/data/6-wiki/people/morgana.md +++ b/data/6-wiki/people/morgana.md @@ -2,11 +2,13 @@ title: Morgana type: person first_seen: day-27 -last_updated: day-30 +last_updated: day-35 sources: - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-28.md - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Morgana @@ -23,14 +25,20 @@ Morgana is a human sent by The Chorus because the visions went better when the p - Morgana gave goodberries to heal refugees at Stricker's camp. - The party arranged an extra mount for Morgana before scouting the statue near Dunnersend. - Day 30 notes that Morgana could cast Polymorph. +- Day 32 has Morgana escaping with Geldrin and Dith through a trapdoor while carrying or helping secure the shield crystal, later locating Lady Thorpe inside the Goldenswell militia house. +- Day 35 has Morgana scouting as a spider, bribing or attempting to bribe guards, sensing movement, stopping carts with thorns, killing llamia with a cart wheel, and trying to wake Elementarium with a kiss. +- The attempted kiss felt forced and gave Morgana a vision of a laughing female dragon, possibly the Peridot Queen. ## Related Entries - [The Chorus](the-chorus.md) - [Everchurch/Everchard](../places/everchurch-everchard.md) - [Dunnersend](../places/dunnersend.md) +- [Lady Thorpe](lady-thorpe.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) ## Open Questions - Why do the visions improve when Morgana is present? - What is happening in Everchard forest around the green Dragonborn and sickly Goliaths? +- Why did waking Elementarium feel forced, and what did the laughing dragon vision mean? diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md index a067aa3..2868474 100644 --- a/data/6-wiki/people/peridita.md +++ b/data/6-wiki/people/peridita.md @@ -8,10 +8,11 @@ aliases: - The whispers in the dark - Mother of many first_seen: day-25 -last_updated: day-26 +last_updated: day-35 sources: - data/4-days-cleaned/day-25.md - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-35.md --- # Peridita @@ -26,6 +27,7 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Dragon titles record Peridita as green, `The Choking Death`, `The whispers in the dark`, and `Mother of many`. - Day 26 says Perodita's new mate was Kortesh Gravesings, also her son, called `The Twisted`. - Azureside records tied Green Dragons to the destruction of the Goliaths and lack of contact for about 900 years. +- On Day 35, Morgana's attempt to wake Elementarium with a kiss produced a vision of a laughing female dragon, possibly the Peridot Queen; this is preserved here as a possibly related but unconfirmed green/peridot dragon clue. ## Related Entries @@ -37,3 +39,4 @@ Peridita, also written Perodita or Perodetta, is a green dragon figure called `T - Is Peridita the `mother` from the old warning, or could that refer to Duncan's mage? - What is her exact relationship to Lortesh / Kortesh Gravesings and the Green Dragons? +- Is the laughing female dragon / Peridot Queen vision connected to Peridita, or is it a separate dragon figure? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 99c18e9..00b76b4 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -1,7 +1,7 @@ --- title: NPC Status type: stateful people rollup -last_updated: day-31 +last_updated: day-35 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -27,6 +27,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # NPC Status @@ -48,6 +50,12 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Huntmaster Thrune / Huntmaster | survived but injured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Agreed to aid against the Excellence, went missing, then was found fighting an Excellence while both were very injured. | | [Brutor Ruby Eye](brutor-ruby-eye.md) | restored | `data/4-days-cleaned/day-30.md` | Restored from an animated floating skull with both eyes glowing red; immediately helped gather supplies. | | [Lady Hearthwill](lady-hearthwill.md) | injured, then active on the front lines | `data/4-days-cleaned/day-30.md` | Injured fighting giants but recuperating normally; later unavailable because she was fighting on the front lines. | +| [Lady Thorpe](lady-thorpe.md) | rescued from Goldenswell | `data/4-days-cleaned/day-32.md` | Real Lady Thorpe was abducted, injured, and malnourished in Goldenswell; false Lady Thorpe became a llama when concentration failed. | +| Lady Katherine Cole | rescued and memory restored | `data/4-days-cleaned/day-35.md` | Ear grub removed and killed; memories of The Guilt returned and watched feeling ended. | +| [TJ Biggins](tj-biggins.md) | rescued | `data/4-days-cleaned/day-35.md` | Kobold from Plantation of Newt [unclear] Vain; experienced seven moons between home sleep and rescue. | +| Lady Katherine Neugate | rescued | `data/4-days-cleaned/day-35.md` | Captured for four days; affected by council memory manipulation. | +| Lord [uncertain: Harmock] Hayes | rescued | `data/4-days-cleaned/day-35.md` | Rescued from prisoner cart; apparent council member. | +| [Lady Yadreya Egrine](lady-yadreya-egrine.md) | rescued | `data/4-days-cleaned/day-35.md` | Baroness of Riversmeet; recognized the ear grubs from her menagerie. | ## Dead or Believed Dead @@ -66,6 +74,8 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [The Mother](the-mother.md) | killed | `data/4-days-cleaned/day-26.md` | Died during the Baytail Accord crisis; her corpse fell apart and yielded an Envi-cipher spellbook. | | [Lortesh](lortesh.md) | killed | `data/4-days-cleaned/day-29.md` | Killed in the missing-page gap; Day 31 still records unresolved details about his `untruly end`. | | Treamen | killed or defeated | `data/4-days-cleaned/day-31.md` | Earth Excellence whose jagged purple crystal skull artifact was recovered. | +| Mr Seneshell / snake-bodied boss | killed | `data/4-days-cleaned/day-35.md` | Investigated the false drawer in white gloves, later transformed lower body into a snake and was killed by Geldrin's fireball. | +| Llamia cart guards and external cart guards | killed | `data/4-days-cleaned/day-35.md` | Guards transformed into llamia during prisoner-cart battle; all bad guys were dead after the fight. | ## Missing, Disappeared, or Unresolved @@ -82,6 +92,10 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Keely Caardenalb | not yet contacted | `data/4-days-cleaned/day-17.md` | Desert researcher whose work may be useful. | | [Luth](luth.md) | hiding or alive, unconfirmed | `data/4-days-cleaned/day-29.md` | Reportedly alive and hiding with the vulturemen, perhaps in the dome. | | [Lady R. Beauchamp?!?](lady-r-beauchamp.md) | unresolved | `data/4-days-cleaned/day-30.md` | Named as the person on whose behalf a Dunnersend scholar inspected soot bones, with `Blue Dragon?!?` noted beside it. | +| Lady Fatrabbit / Blossom | Hearthwall sheriff and halfling general | `data/4-days-cleaned/day-32.md` | Helped investigate Lady Thorpe's abduction and took the party through the Castle. | +| Cardencalde | unreachable by Eroll | `data/4-days-cleaned/day-32.md` | Did not answer direct contact, which was strange. | +| Baytail | prisoner, accused head of Underbelly | `data/4-days-cleaned/day-32.md` | Seen in skull vision as a Goldenswell prisoner. | +| Elementarium | rescued but altered/unresolved | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Imprisoned while an impostor appeared in town crier information; later rescued from prisoner cart and woke with green eyes. | ## Captive, Imprisoned, or Detained @@ -95,6 +109,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Water elementals chained to chariot | chained, with party, pending auction | `data/4-days-cleaned/day-22.md` | They wanted something [unclear] and agreed to come on the big boat. | | Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaws on the Earl's orders under treason accusations. | | [Silver](silver.md) | soul destroyed, construct taken over | `data/4-days-cleaned/day-23.md` | Dirk threw Silver into the Barrier, destroying the soul; Cardonal then took over the construct. | +| Goldenswell off-the-books prisoners | captive or partly rescued | `data/4-days-cleaned/day-32.md`, `data/4-days-cleaned/day-35.md` | Prisoners from Clay Meadows, Strong Hedge, Redford Point, Seaward, Gnoll, and Harthwall were identified; later transport rescue recovered several council members. | ## Allies and Contacts @@ -108,6 +123,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Shandra](shandra.md) | Turtle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | | [Tiana/Taina](tiana-taina.md) | Freeport Pact leader/coordinator | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Coordinated forces against the Excellence. | | [Xinquiss/Zinquiss](xinquiss-zinquiss.md) | potion, shard, and auction contact | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-30.md`, `data/4-days-cleaned/day-31.md` | Helped with potions, joined sea operation, planned to auction the chariot, was tasked to retrieve the moon shard, and appeared at the auction with a cart. | +| Jin-Loo | tortle teleport mage/contact | `data/4-days-cleaned/day-32.md` | Teleported the party to Goldenswell and left a ring so he could find them again. | | Guardfree and Guardfore | merfolk guards/allies | `data/4-days-cleaned/day-20.md` | Guardfree kept watch and planned to get his mistress to bring guest shells. | | Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadwal's location. | | [Morgana](morgana.md) | allied fifth party member | `data/4-days-cleaned/day-27.md`, `data/4-days-cleaned/day-28.md`, `data/4-days-cleaned/day-30.md` | Sent by The Chorus because visions went better with five party members; carries birds, heals, and can Polymorph. | @@ -127,3 +143,4 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Perodetta | regional threat | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Spawn amassing near Azure-side; Heartmoor illness may connect. | | Fairshaws/Fairport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | | [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | +| Lady Envy | llamia boss | `data/4-days-cleaned/day-35.md` | Named by TJ Biggins as boss of the llamia; relation to Excellence/sin-title pattern unresolved. | diff --git a/data/6-wiki/people/the-chorus.md b/data/6-wiki/people/the-chorus.md index 8f03057..99624fb 100644 --- a/data/6-wiki/people/the-chorus.md +++ b/data/6-wiki/people/the-chorus.md @@ -5,12 +5,13 @@ aliases: - bird lady - pigeon lady first_seen: day-02 -last_updated: day-07 +last_updated: day-32 sources: - data/4-days-cleaned/day-02.md - data/4-days-cleaned/day-03.md - data/4-days-cleaned/day-04.md - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-32.md --- # The Chorus @@ -26,6 +27,7 @@ The Chorus is an eighty-ish woman, title, or supernatural role in the swamp, sur - She knew memory magic changed memories into convenient forms. - Sarah Thornhollows had been with her and was harder to erase from memory. - Her birds followed the party back and were harmed by Bughunter's gas. +- On Day 32, the Chorus was seen standing outside the house looking up at the sky, which was unusual because the Chorus usually never leaves the house. ## Timeline @@ -43,3 +45,4 @@ The Chorus is an eighty-ish woman, title, or supernatural role in the swamp, sur - Is The Chorus a person, title, organization, or collective? - Who was her apprentice, and where did they go? +- What did The Chorus see or sense in the unusual daytime Tri-moon event? diff --git a/data/6-wiki/people/the-mother.md b/data/6-wiki/people/the-mother.md index 92aed01..9e040a4 100644 --- a/data/6-wiki/people/the-mother.md +++ b/data/6-wiki/people/the-mother.md @@ -4,10 +4,11 @@ type: person or antagonist aliases: - Mother first_seen: day-26 -last_updated: day-27 +last_updated: day-32 sources: - data/4-days-cleaned/day-26.md - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-32.md --- # The Mother @@ -24,6 +25,7 @@ The Mother was a Carnamancy-linked antagonist who transformed the life prison in - After The Mother died, Geldrin found a spellbook on her with the same cipher and spells as Envi's. - The Mother had somehow repurposed Envi's clone, which seemed impossible under the party's understanding of clone magic. - Dunesmead later distinguished local Mother figures from `The Mother`, whose stolen power was linked to Ennui and the ban on spell writing. +- Day 32 skull visions showed `The Mother` crater, a small town described as the place he fell, and a small halfling girl sitting at a table seeing dogs together. ## Related Entries @@ -36,3 +38,4 @@ The Mother was a Carnamancy-linked antagonist who transformed the life prison in - How did The Mother repurpose Envi's clone? - Was she connected to Peridita, the `Mother of many`, or was that only thematic overlap? - What remains of her spellbook, cipher, and Carnamancy work? +- What is `The Mother` crater, and who fell there? diff --git a/data/6-wiki/people/tj-biggins.md b/data/6-wiki/people/tj-biggins.md new file mode 100644 index 0000000..8bec679 --- /dev/null +++ b/data/6-wiki/people/tj-biggins.md @@ -0,0 +1,38 @@ +--- +title: TJ Biggins +type: person +aliases: + - Mr TJ Biggins +first_seen: day-35 +last_updated: day-35 +sources: + - data/4-days-cleaned/day-35.md +--- + +# TJ Biggins + +## Summary + +Mr TJ Biggins is a kobold prisoner rescued from the Goldenswell prisoner transport, originally from the Plantation of Newt [unclear] Vain outside the dome. + +## Known Details + +- TJ woke after the rescue and identified himself as Mr TJ Biggins of the Plantation of Newt [unclear] Vain, outside the dome. +- He described tribute demands by the greenscale family, the Loose Teeth, and the Blackscales, and said Blackscales came to his mining town for tributes and left. +- He believed the party were Bumblebeers, people from down the road described as red Goliaths but bigger. +- He said Lady Envy was boss of the llamia, and that the sand dome kept elementals out. +- He had seen a gnome the last time the Bleakshrouvers came to town. +- He called the dome the `Bun` after Dirk explained it with a bun. +- Seven moons had passed between his going to sleep at home and waking with the party. + +## Related Entries + +- [Black Scales](../factions/black-scales.md) +- [Goldenswell Prison Network and Memory Grubs](../concepts/goldenswell-prison-network-and-memory-grubs.md) +- [Barrier](../concepts/barrier.md) + +## Open Questions + +- Where exactly is the Plantation of Newt [unclear] Vain? +- What are Bumblebeers, Bleakshrouvers, Loose Teeth, and Lady Envy's relationship to the dome and Blackscales? +- Why was TJ taken into the Goldenswell prison network? diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index 012fae2..a87f03c 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -10,7 +10,7 @@ aliases: - Valenthide - Valententhide first_seen: day-20 -last_updated: day-31 +last_updated: day-32 sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-23.md @@ -18,6 +18,7 @@ sources: - data/4-days-cleaned/day-27.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md --- # Valenth Cardonald @@ -36,6 +37,8 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - She could provide teleport-circle codes for prisons, labs, and Grand Towers levels, and could be contacted with fixed Enwi. - Later she repaired prison systems, helped calculate the Tri-moon shard trajectory, fixed Salt/Seaward issues, resisted mental intrusion, resurrected Rubyeye, and repaired Errol. - Valenthide/Valententhide is also recorded as a prisoner or prison, with Galetea/Galatrayer as an automation guard; whether this is the same name or a related being remains uncertain. +- Day 32 auction art included `Valententide's Betrayal`, showing a crab claw and talon shielding Throngore over a featherless female; skull visions also showed Vallententide grabbed by a crab claw and disappearing, and later notes say Valententide had been attacked by Throngore with darkness. +- Cardencalde did not answer Eroll on Day 32, which was strange because Eroll contacts her directly; whether Cardencalde is Cardenald is uncertain. ## Timeline @@ -60,3 +63,4 @@ Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Fr - Did the object-transfer plan succeed, and if so what object contains her? - Are Valenth/Cardonal/Cardenald and Valenthide/Valententhide separate beings, a spelling collision, or a person-prison relationship? - What exactly happened to her body, Silver's body, Valenta, and the sentient jewellery experiments? +- What was `Valententide's Betrayal`, and is Valententide/Vallententide part of the same identity cluster as Valenth/Valenthide? diff --git a/data/6-wiki/people/xinquiss-zinquiss.md b/data/6-wiki/people/xinquiss-zinquiss.md index 913483e..927556b 100644 --- a/data/6-wiki/people/xinquiss-zinquiss.md +++ b/data/6-wiki/people/xinquiss-zinquiss.md @@ -7,12 +7,13 @@ aliases: - Xinquss - Zinquiss first_seen: day-21 -last_updated: day-31 +last_updated: day-32 sources: - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md --- # Xinquiss/Zinquiss @@ -27,15 +28,23 @@ Xinquiss or Zinquiss is a recurring contact tied to the mother-of-pearl chariot - Zinquiss planned to sell the mother-of-pearl elemental chariot at the Freeport auction house. - When the moon shard went into the sea, Xinquss had been tasked to retrieve it; Xinquss was also connected to the shield crystal. - Xinqus was later in town with a cart at the auction house and a [uncertain: pigeon/aracock]; `1600` was recorded nearby without context. +- On Day 32, Xinquiss was in Hearthwall for the auction, took the party to a new room as his presents, showed them the shield crystal, and agreed with the party that they would drop off a piece. +- The party told Xinquiss that the quilt might be an `excellence` or might be working for one. +- Justicars were later looking for Xinquiss at the auction, and a waitress opened a trapdoor where he was hiding. +- Xinquiss called Wroth to help hide the shield crystal, and Wroth did so. ## Related Entries - [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) - [Tri-moon Shard](../items/tri-moon-shard.md) - [Freeport Auction Lots](../items/freeport-auction-lots.md) +- [Hearthwall Auction Lots](../items/hearthwall-auction-lots.md) +- [Shield Crystals](../items/shield-crystals.md) ## Open Questions - Who tasked Xinquss with retrieving the moon shard? - What did `1600` mean at the auction house? - Was the auction cart connected to the chariot sale, shard retrieval, or something else? +- Why were the Justicars looking for Xinquiss? +- What does the quilt have to do with an Excellence? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index be51284..28f481c 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -31,6 +31,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Sources @@ -65,6 +67,8 @@ sources: - `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hearthwill](people/lady-hearthwill.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). - `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-32.md`: [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), [Lady Thorpe](people/lady-thorpe.md), [Lady Hearthwill](people/lady-hearthwill.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Countdown](events/tri-moon-countdown.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier](concepts/barrier.md), [Shield Crystals](items/shield-crystals.md), [Excellences](concepts/excellences.md), [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [Underbelly](factions/underbelly.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). +- `data/4-days-cleaned/day-35.md`: [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md), [TJ Biggins](people/tj-biggins.md), [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), [Lady Thorpe](people/lady-thorpe.md), [Black Scales](factions/black-scales.md), [Barrier](concepts/barrier.md), [Excellences](concepts/excellences.md), [Morgana](people/morgana.md), [Peridita](people/peridita.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Minor Figures from Days 32 and 35](people/minor-figures-days-32-35.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index 319019a..1b56ff9 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -31,6 +31,8 @@ sources: - data/4-days-cleaned/day-29.md - data/4-days-cleaned/day-30.md - data/4-days-cleaned/day-31.md + - data/4-days-cleaned/day-32.md + - data/4-days-cleaned/day-35.md --- # Timeline @@ -66,3 +68,6 @@ sources: - `day-29`: Missing source pages interrupt the record; the party meets Excellence beneath the sands, kills [Lortesh](people/lortesh.md), earns Dunnersend support, and hears The Guilt admit accidentally opening a prison while controlling a wizard. - `day-30`: Dunnersend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valententhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. - `day-31`: The party attends the [Freeport Auction Lots](items/freeport-auction-lots.md), then joins battle near the Brass City forces; Goliaths are freed, the Dunnersend army kills a green dragon, Treamen the Earth Excellence dies, and Dirk's father plans for Salvation and the Goliath tower in a field. +- `day-32`: The party reaches Hearthwall, attends the [Hearthwall Auction Lots](items/hearthwall-auction-lots.md), hides a [Shield Crystals](items/shield-crystals.md) piece with [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), exposes a false [Lady Thorpe](people/lady-thorpe.md), rescues the real Lady Thorpe from Goldenswell, and uncovers an off-the-books [Goldenswell Prison Network and Memory Grubs](concepts/goldenswell-prison-network-and-memory-grubs.md) operation while the Tri-moon appears during the day. +- `day-33` and `day-34`: No cleaned day files were included in this wiki pass. +- `day-35`: The party intercepts Goldenswell prisoner carts, kills Mr Seneshell / the snake-bodied boss and llamia guards, rescues council prisoners including [TJ Biggins](people/tj-biggins.md) and [Lady Yadreya Egrine](people/lady-yadreya-egrine.md), and discovers ear-grub memory control that erased memories of The Guilt. -
39f5642Better instructionsby Bas Mostert
.agents/skills/dnd-build-wiki/SKILL.md | 55 +++++++++++++++++++++---- .agents/skills/dnd-clean-day-narrative/SKILL.md | 3 ++ .agents/skills/dnd-notes-pipeline/SKILL.md | 5 ++- AGENTS.md | 2 + 4 files changed, 56 insertions(+), 9 deletions(-)Show diff
diff --git a/.agents/skills/dnd-build-wiki/SKILL.md b/.agents/skills/dnd-build-wiki/SKILL.md index 31999a1..481f4a7 100644 --- a/.agents/skills/dnd-build-wiki/SKILL.md +++ b/.agents/skills/dnd-build-wiki/SKILL.md @@ -47,6 +47,42 @@ Extract durable, searchable material from each cleaned day, including: Extract minor details when they may become useful later. Do not collapse them into vague summaries if a specific searchable fact can be preserved. +## Exhaustive First-Pass Coverage + +The wiki pass must account for all searchable material on the first pass. Do not restrict extraction to major characters, recurring entities, or subjects that already have wiki pages. + +Every named or name-like subject in the cleaned day must be represented somewhere in `data/6-wiki`, including: + +- One-off NPCs, uncertain names, titles, relatives, messengers, patrons, rulers, scholars, guards, guides, monsters with individual names, and named dead or missing figures. +- Minor places, buildings, shops, regions, routes, ships, landmarks, prisons, laboratories, towers, courts, camps, and uncertain place spellings. +- Mundane but specific items, rewards, currencies, documents, scrolls, messages, books, inscriptions, symbols, vehicles, trophies, body parts, spell components, and resources. +- Factions, offices, councils, species groups, armies, cults, noble houses, gangs, religious groups, and temporary alliances. +- Plot hooks, suspicious events, unresolved questions, warnings, rumours, dreams, visions, prophecies, bargains, promises, debts, deaths, disappearances, and state changes. + +Use the smallest durable representation that keeps the subject searchable: + +- Create a standalone page for recurring, plot-relevant, stateful, or relationship-heavy subjects. +- Update an existing page when the subject is clearly already represented. +- Add aliases or variant spellings when a subject may be searched under multiple names. +- Add stateful rollup rows for status, inventory, treasury, passwords/inscriptions, active hooks, or similar query-oriented facts. +- Add a minor-figures, minor-places, minor-items, or minor-details rollup when a subject is a one-off but still named and searchable. +- If a merge is uncertain, do not silently merge. Keep separate, use an uncertain combined page, or ask the user. + +Omitting a named one-off person, uncertain alias, minor location, specific item, or open hook because it seems unimportant is not acceptable. These details often become important later. + +## Coverage Audit + +Before finishing, perform a coverage audit for every cleaned day ingested or re-ingested: + +1. Read the cleaned day's `People, Factions, and Places Mentioned`, `Items, Rewards, and Resources`, and `Clues, Mysteries, and Open Threads` sections as the minimum extraction ledger. +2. Cross-check those sections against existing and newly written wiki pages, aliases, sources, open threads, and stateful rollups. +3. For each subject in the ledger, ensure one explicit outcome exists: standalone page created, existing page updated, alias added, rollup/index entry added, already covered by a named page, or user confirmation required because identity/category is uncertain. +4. Update `sources.md` so each ingested cleaned day links to all significant entries and rollups that received facts from that day. +5. Update `aliases.md` for all variant spellings and uncertain names that users might search. +6. Update stateful query pages when the day changes status, possession, money, passwords, inscriptions, active hooks, relationships, deaths, injuries, alliances, hostilities, or locations. + +The completion report must include any subjects intentionally left only in a rollup and any uncertain merges left unresolved. + ## Page Creation and Categorization - Use a concise, stable filename based on the page title, lowercase and hyphenated, such as `garadwal.md` or `cider-inn-cider.md`. @@ -174,13 +210,15 @@ For active hooks and NPC status pages, keep entries compact but sourced, and mov 1. Identify cleaned day files in `data/4-days-cleaned` that need wiki ingestion or re-ingestion. 2. Read the relevant cleaned day file and any existing wiki entries that may already represent the extracted entities. -3. Extract entities, concepts, events, hooks, and other searchable material using the dynamic taxonomy rules. -4. Decide whether each extracted subject should create a new entry, update an existing entry, or only appear as a linked mention inside another entry. -5. Create `data/6-wiki` and any needed category directories only when writing actual wiki files. -6. Write or update wiki entries with source references, timelines, uncertainty, and relative links. -7. Create or update stateful query pages when the day changes current inventory, money, active hooks, NPC status, known passwords, debts, clues, or similar campaign state. -8. Update useful indexes only if they now have real content. -9. Verify that links are relative and that no empty category directories or placeholder pages were created. +3. Build an extraction ledger from the cleaned day's mention/resource/open-thread sections, then scan the narrative for additional searchable facts not repeated in those sections. +4. Extract entities, concepts, events, hooks, and other searchable material using the dynamic taxonomy and exhaustive first-pass coverage rules. +5. Decide whether each extracted subject should create a new entry, update an existing entry, become an alias, appear in a rollup/index, or be explicitly marked as already covered by a named existing page. +6. Create `data/6-wiki` and any needed category directories only when writing actual wiki files. +7. Write or update wiki entries with source references, timelines, uncertainty, and relative links. +8. Create or update stateful query pages when the day changes current inventory, money, active hooks, NPC status, known passwords, debts, clues, or similar campaign state. +9. Update useful indexes only if they now have real content. +10. Run the coverage audit before reporting completion. +11. Verify that links are relative and that no empty category directories or placeholder pages were created. ## Quality Checks @@ -191,6 +229,8 @@ For active hooks and NPC status pages, keep entries compact but sourced, and mov - Confirm related entries are linked with valid relative paths. - Confirm existing entries were updated rather than duplicated when new information surfaced about the same subject. - Confirm stateful query pages distinguish current, resolved, transferred, NPC-owned, promised, and unclear statuses instead of treating every mention as current party state. +- Confirm every subject in each ingested cleaned day's mention/resource/open-thread sections is represented by a standalone entry, existing updated entry, alias, rollup/index entry, or explicit unresolved confirmation item. +- Confirm one-off named people, minor places, specific items, and uncertain names were not dropped merely because they seemed minor. ## Completion Report @@ -203,4 +243,5 @@ When finished, report: - Indexes created or updated, if any. - Stateful query pages created or updated, if any. - Existing entries skipped because they already contained the sourced facts. +- Minor rollups created or updated for named one-off material, if any. - Ambiguous entities left separate or flagged for user review. diff --git a/.agents/skills/dnd-clean-day-narrative/SKILL.md b/.agents/skills/dnd-clean-day-narrative/SKILL.md index 7691481..4932a58 100644 --- a/.agents/skills/dnd-clean-day-narrative/SKILL.md +++ b/.agents/skills/dnd-clean-day-narrative/SKILL.md @@ -43,6 +43,8 @@ Write the result to `data/4-days-cleaned`. - If regenerating because of retrospective context, use that context to improve the day summary transparently, as if the information had been available during the original cleaning pass. Do not mention later pages, later days, source paths, retrospective context, or regeneration in the cleaned day. - Write in clear prose, not bullet-point session notes, unless a short list is necessary for dense item inventories. - Keep all potentially useful searchable details: names, places, items, rewards, money, factions, dates, page references, dreams, clues, rumours, warnings, inscriptions, passwords, spell effects, creature descriptions, deaths, rescued people, travel plans, and unresolved questions. +- Treat the final mention sections as a wiki extraction ledger, not a loose summary. The `People, Factions, and Places Mentioned`, `Items, Rewards, and Resources`, and `Clues, Mysteries, and Open Threads` sections must name every person-like figure, place-like location, faction/group, creature/entity, item/resource, alias, title, clue, and unresolved plot point that should be searchable later, including one-off NPCs and uncertain names. +- Do not omit minor names because they seem unimportant. If a name-like phrase appears in the raw day and might later be searched, preserve it in the appropriate final section with uncertainty markers where needed. - Preserve uncertainty and variant spellings from the source. Do not silently correct uncertain names. - Do not invent motivations, explanations, or causal links not present in the source notes. - Do not remove odd details just because they seem minor; minor details often become important later. @@ -89,3 +91,4 @@ When finished, report: - Existing cleaned files skipped. - Candidate days skipped because the next-day marker is not confirmed. - Any uncertainty or missing context that should be reviewed by the user. +- Any especially uncertain names that the wiki-building stage must preserve or treat as possible aliases. diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index c1a5df9..b3acda6 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -33,7 +33,7 @@ The wiki process ingests cleaned day narratives after cleaning and after any ret 9. Review newly processed pages and cleaned days for retrospective facts that clarify earlier cleaned day narratives. 10. Run the retrospective context stage for clear, sourceable updates, including regenerating affected cleaned days. 11. Identify cleaned day files that need wiki ingestion or re-ingestion because they are newly created or were regenerated by retrospective context. -12. Run the wiki-building stage for those cleaned day files, letting it create only the categories, indexes, and stateful query pages needed for actual wiki entries. +12. Run the wiki-building stage for those cleaned day files, requiring exhaustive first-pass coverage of people, places, factions, items, aliases, plot hooks, state changes, and other searchable material. The wiki stage must audit each cleaned day's mention/resource/open-thread sections and account for every subject as a standalone page, existing updated page, alias, rollup/index entry, already-covered specific page, or user-confirmation item. 13. Skip and report the latest apparent day if no following day marker exists yet. 14. Stop and ask the user whenever a page number, day boundary, completeness marker, retrospective target day, wiki entity merge, or filename would be uncertain. @@ -56,7 +56,7 @@ Ask the user before proceeding if: - After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. - After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.md` file and was confirmed complete before cleaning. - After retrospective updates, verify that each recorded context item has a source reference, does not duplicate an existing note, any affected cleaned day was regenerated from the raw day plus the retrospective context, and the cleaned day does not expose retrospective source references. -- After wiki building, verify that new or updated wiki entries cite cleaned day sources, use valid relative links, preserve uncertainty and variant spellings, that stateful query pages distinguish current/resolved/transferred/unclear statuses, and that no empty category directories or placeholder pages were created. +- After wiki building, verify that new or updated wiki entries cite cleaned day sources, use valid relative links, preserve uncertainty and variant spellings, that stateful query pages distinguish current/resolved/transferred/unclear statuses, that no empty category directories or placeholder pages were created, and that every subject in the ingested cleaned days' mention/resource/open-thread sections has been accounted for in the wiki or explicitly flagged for user confirmation. - Report skipped files and the reason they were skipped. ## Final Report @@ -68,6 +68,7 @@ At the end of a pipeline run, report: - New cleaned day narratives created. - Retrospective context recorded, cleaned days regenerated, or updates skipped. - Wiki entries created or updated, and categories, indexes, or stateful query pages created only when populated. +- Coverage audit outcome for newly ingested wiki days, including any subjects placed only in minor rollups and any uncertain merges requiring confirmation. - Files skipped because they already existed. - Latest apparent day skipped because the next-day marker has not appeared yet. - Any user confirmations still needed. diff --git a/AGENTS.md b/AGENTS.md index ac4755e..bcb7e32 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -24,6 +24,8 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - Preserve uncertainty. If source notes use uncertain names or spellings, keep the uncertainty rather than silently normalizing it. Examples: `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, `Velenth/Valenth`. - Preserve campaign-specific directional and calendar terms such as `airwise`, `earthwise`, `firewise`, `waterwise`, `Tri-moon`, `Timnor`, and `Tan`. - When cleaning notes into narrative, include details that may later become searchable wiki entries: people, places, factions, items, money, rewards, spell effects, dreams, clues, rumours, warnings, inscriptions, passwords, dates, travel decisions, combat outcomes, and open questions. +- Wiki extraction must be exhaustive on the first pass. Do not limit wiki updates to major, recurring, or obviously important subjects. Every named or name-like person, place, faction, item, creature, title, alias, plot hook, inscription, reward, resource, spell effect, dream, clue, rumour, warning, uncertain term, and unresolved mystery from newly cleaned days must be represented somewhere searchable in `data/6-wiki`: as a standalone entry, an existing updated entry, an aliases/index entry, a stateful rollup, or a deliberate minor-figures/minor-details rollup. If a subject is mentioned in a cleaned day's `People, Factions, and Places Mentioned`, `Items, Rewards, and Resources`, or `Clues, Mysteries, and Open Threads` section, the wiki pass must account for it explicitly. +- Before finishing a wiki pass, perform a coverage audit against the cleaned day mention sections. For each extracted subject, decide and preserve one of these outcomes: standalone wiki page, update existing page, alias/variant added, rollup/index entry added, already covered by a specific existing page, or intentionally deferred because the merge/category is uncertain and user confirmation is required. Missing one-off NPCs, uncertain names, minor locations, mundane-but-specific items, or unresolved hooks is a failure of the wiki pass. - Day files in `data/3-days` and cleaned day files in `data/4-days-cleaned` must be proper Markdown: YAML-style metadata at the top, followed by Markdown headings for content sections. - Wiki entries in `data/6-wiki` must be proper Markdown, use relative links between related entries, preserve source references to cleaned day files, and may use whatever category directories naturally fit the extracted campaign material. Do not pre-create empty wiki category directories; let the wiki-building stage create categories as needed. - Do not invent missing facts. If text is illegible or unclear, mark it as uncertain in square brackets, such as `[unclear]` or `[uncertain: possible name]`. -
32cd775Add more peopleby Bas Mostert
data/6-wiki/aliases.md | 11 ++++ data/6-wiki/index.md | 12 ++++ data/6-wiki/people/astraywoo.md | 33 ++++++++++ data/6-wiki/people/basilisk-busalish.md | 43 +++++++++++++ data/6-wiki/people/benu.md | 31 ++++++++++ data/6-wiki/people/edward-browning.md | 42 +++++++++++++ data/6-wiki/people/lady-hearthwill.md | 32 ++++++++++ data/6-wiki/people/lady-r-beauchamp.md | 32 ++++++++++ data/6-wiki/people/luth.md | 30 ++++++++++ data/6-wiki/people/minor-figures-days-23-31.md | 83 ++++++++++++++++++++++++++ data/6-wiki/people/morgana.md | 36 +++++++++++ data/6-wiki/people/peridita.md | 39 ++++++++++++ data/6-wiki/people/silver.md | 36 +++++++++++ data/6-wiki/people/status.md | 28 +++++++-- data/6-wiki/people/the-mother.md | 38 ++++++++++++ data/6-wiki/sources.md | 16 ++--- 16 files changed, 530 insertions(+), 12 deletions(-)Show diff
diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index 8c8ca53..b1297c0 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -33,8 +33,13 @@ sources: - [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. - [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye. +- [Edward Browning](people/edward-browning.md): Edward Browning, Browning. +- [Silver](people/silver.md): Silver, the female automaton. - [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi, Ennui, The Mage, Visage Envoi. - [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Valenth Caerdunel, Valenthide, Valententhide. +- [The Mother](people/the-mother.md): The Mother, Mother. +- [Peridita](people/peridita.md): Peridita, Perodita, Perodetta, The Choking Death, The whispers in the dark, Mother of many. +- [Basilisk / Busalish](people/basilisk-busalish.md): Basilisk, Basaluk, Basalisk, Busalish. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. - [Pythus Aleyvarus](people/pythus-aleyvarus.md): Pythus Aleyvarus, Pythas, Pythus. @@ -47,5 +52,11 @@ sources: - [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md): Rimewatch, Ice prison, Iceblus's prison, Iceland's prison, Howling Tombs. - [Lortesh](people/lortesh.md): Lortesh, Kortesh Gravesings, Hortekh, Uncle Hortekh, The Twisted. - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md): Xinquiss, Xinqus, Xinquss, Zinquiss. +- [Morgana](people/morgana.md): Morgana. +- [Benu](people/benu.md): Benu. +- [Astraywoo](people/astraywoo.md): Astraywoo, athruygon? [uncertain]. +- [Luth](people/luth.md): Luth. - [Freeport Auction Lots](items/freeport-auction-lots.md): auction house items, Freeport auction house lots. +- [Lady Hearthwill](people/lady-hearthwill.md): Lady Hearthwill, Hearthwill. +- [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md): Lady R. Beauchamp?!?, Lady R. Beauchamp. - [The Freeport Baroness](people/freeport-baroness.md): Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 29e6430..a9cf367 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -60,7 +60,18 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Infestus](people/infestus.md) - [Pythus Aleyvarus](people/pythus-aleyvarus.md) - [Valenth Cardonald](people/valenth-cardonald.md) +- [Edward Browning](people/edward-browning.md) +- [Silver](people/silver.md) +- [The Mother](people/the-mother.md) +- [Peridita](people/peridita.md) +- [Basilisk / Busalish](people/basilisk-busalish.md) +- [Morgana](people/morgana.md) +- [Benu](people/benu.md) +- [Astraywoo](people/astraywoo.md) +- [Luth](people/luth.md) - [The Freeport Baroness](people/freeport-baroness.md) +- [Lady Hearthwill](people/lady-hearthwill.md) +- [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md) - [Lortesh](people/lortesh.md) - [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) - [Shandra](people/shandra.md) @@ -70,6 +81,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Bushhunter/Bughunter](people/bushhunter-bughunter.md) - [The Thornhollows Family](people/thornhollows-family.md) - [Malcolm Donovan](people/malcolm-donovan.md) +- [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md) ## Places diff --git a/data/6-wiki/people/astraywoo.md b/data/6-wiki/people/astraywoo.md new file mode 100644 index 0000000..17ba653 --- /dev/null +++ b/data/6-wiki/people/astraywoo.md @@ -0,0 +1,33 @@ +--- +title: Astraywoo +type: person or uncertain name +aliases: + - athruygon? +first_seen: day-28 +last_updated: day-29 +sources: + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md +--- + +# Astraywoo + +## Summary + +Astraywoo is an uncertain named figure associated with the vulturemen and the under-sand Excellence near Dunnersend. + +## Known Details + +- Day 28 preserves a possible Vulture-man or leader name as `athruygon?` during cease-fire discussions. +- Day 29 says Astraywoo bowed to the under-sand figure that Dirk greeted as `Excellence`. +- The same context links vulturemen, Dunnen honour-guard imagery, Gardwal's failure, and a brother looking for the Excellence. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Are Astraywoo and `athruygon?` the same figure? +- Is Astraywoo a vultureman, a leader, an attendant, or another role? diff --git a/data/6-wiki/people/basilisk-busalish.md b/data/6-wiki/people/basilisk-busalish.md new file mode 100644 index 0000000..60d2163 --- /dev/null +++ b/data/6-wiki/people/basilisk-busalish.md @@ -0,0 +1,43 @@ +--- +title: Basilisk / Busalish +type: person or contact +aliases: + - Basilisk + - Basaluk + - Basalisk + - Busalish +first_seen: day-23 +last_updated: day-30 +sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md +--- + +# Basilisk / Busalish + +## Summary + +Basilisk, Basaluk, Basalisk, or Busalish is a recurring contact who receives party messages, appears during the Baytail Accord crisis, warns about dangerous boxes, and may help with mage support. + +## Known Details + +- The party sent a message to Basilisk after finding the active Censer of Noxia. +- During the Baytail Accord crisis, Basaluk appeared with a tabaxi and his boss after the party called for help. +- Basilisk warned the party that they were in over their heads when they asked about Sister Proulsothight's box. +- Day 29 records the party sending Busalish a message saying they had killed Lortesh. +- Day 30 begins with Busalish saying he wanted to meet the party and was coming in; later the party messaged Busalish about The Guilt being an Excellence and asked for mage help with Wrath. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Excellences](../concepts/excellences.md) +- [Lortesh](lortesh.md) + +## Open Questions + +- Are Basilisk, Basaluk, Basalisk, and Busalish the same contact? +- Who are the tabaxi and boss who appeared with him? +- Why was he seeking the Gelissa-like box while warning the party to leave it alone? diff --git a/data/6-wiki/people/benu.md b/data/6-wiki/people/benu.md new file mode 100644 index 0000000..82ff762 --- /dev/null +++ b/data/6-wiki/people/benu.md @@ -0,0 +1,31 @@ +--- +title: Benu +type: person +first_seen: day-29 +last_updated: day-30 +sources: + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md +--- + +# Benu + +## Summary + +Benu is a Dunnersend ally or authority figure who helped secure support for future wars and could provide temple, messaging, and hero's feast support. + +## Known Details + +- After Lortesh was killed, Benu was present with mother and father when Dunnersend pledged support in wars to come. +- Benu stayed in Dunnersend and planned to build a temple in the city. +- Benu could message Cardenald and ask her to meet at the Dunnersend shrine. +- Benu could create a hero's feast before the army moved. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Lortesh](lortesh.md) + +## Open Questions + +- What office, faith, or authority does Benu hold in Dunnersend? diff --git a/data/6-wiki/people/edward-browning.md b/data/6-wiki/people/edward-browning.md new file mode 100644 index 0000000..fa6b0c8 --- /dev/null +++ b/data/6-wiki/people/edward-browning.md @@ -0,0 +1,42 @@ +--- +title: Edward Browning +type: person +aliases: + - Browning +first_seen: day-23 +last_updated: day-31 +sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md +--- + +# Edward Browning + +## Summary + +Edward Browning, usually called Browning, is an ancient mage or engineer tied to automations, Grand Towers, the dome, laboratories, and hidden technical systems. + +## Known Details + +- Day 23 names Browning among the figures commemorated in the desert laboratory statue and later in paintings from 314 BD. +- The desert laboratory had automation construction manuals by Edward Browning, and the kitchen was said to have been made by Cardonal and Browning. +- Browning allegedly spread the word that he died of old age so magisters and Justiciars could act as his proxy. +- Day 28 connects Browning and Ennui to something beneath Grand Towers, possibly an advance in dome technology or a power source for the workshop. +- Day 30 places Browning's lab near Craters Edge and records that he bargained to rid fishes from the Barrier in return for a peace treaty. +- Day 31 includes Browning's scroll at auction, which produces a new random spell each morning at 2:37. + +## Related Entries + +- [Valenth Cardonald](valenth-cardonald.md) +- [Envoi](envoi.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Is Browning alive, dead, hidden, or operating through proxies? +- What exactly did Browning and Ennui find or build under Grand Towers? +- What was the peace treaty tied to clearing fishes from the Barrier? diff --git a/data/6-wiki/people/lady-hearthwill.md b/data/6-wiki/people/lady-hearthwill.md new file mode 100644 index 0000000..e74cbcb --- /dev/null +++ b/data/6-wiki/people/lady-hearthwill.md @@ -0,0 +1,32 @@ +--- +title: Lady Hearthwill +type: person +aliases: + - Hearthwill +first_seen: day-30 +last_updated: day-30 +sources: + - data/4-days-cleaned/day-30.md +--- + +# Lady Hearthwill + +## Summary + +Lady Hearthwill is a regional noble or military authority mentioned during the Day 30 war news around Goldenswell, Dunnersend, and the giants. + +## Known Details + +- She was injured after deciding to take the fight against the giants into her own hands. +- The news report said she was recuperating normally. +- Later the same day, Invar received a message saying the Lady was unavailable because she was fighting on the front lines. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Open Threads](../open-threads.md) + +## Open Questions + +- Is Lady Hearthwill related to the similarly uncertain Heatherhall / Heartwall / Hathwall names associated with [The Freeport Baroness](freeport-baroness.md), or is this a separate person? +- Which front was she fighting on, and what authority does she hold over the anti-giant response? diff --git a/data/6-wiki/people/lady-r-beauchamp.md b/data/6-wiki/people/lady-r-beauchamp.md new file mode 100644 index 0000000..c98ea26 --- /dev/null +++ b/data/6-wiki/people/lady-r-beauchamp.md @@ -0,0 +1,32 @@ +--- +title: Lady R. Beauchamp?!? +type: person +aliases: + - Lady R. Beauchamp +first_seen: day-30 +last_updated: day-30 +sources: + - data/4-days-cleaned/day-30.md +--- + +# Lady R. Beauchamp?!? + +## Summary + +Lady R. Beauchamp?!? is an uncertain named patron or authority connected to a Dunnersend scholar inspecting soot bones during Day 30's blue-dragon and battle-plan thread. + +## Known Details + +- Day 30 says soot bones were being inspected by a scholar from Dunnersend on behalf of Lady R. Beauchamp?!?. +- `Blue Dragon?!?` was written beside this note. +- The same day's open threads connect the inspection to intercepted messages, Hucan's ship, leaked battle plans, Craters Edge, and a suspected betrayer. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Open Threads](../open-threads.md) + +## Open Questions + +- Is Lady R. Beauchamp?!? a noble, patron, scholar, military authority, or another role? +- How, if at all, is she connected to the blue dragon or betrayer thread? diff --git a/data/6-wiki/people/luth.md b/data/6-wiki/people/luth.md new file mode 100644 index 0000000..867ceeb --- /dev/null +++ b/data/6-wiki/people/luth.md @@ -0,0 +1,30 @@ +--- +title: Luth +type: person +first_seen: day-29 +last_updated: day-29 +sources: + - data/4-days-cleaned/day-29.md +--- + +# Luth + +## Summary + +Luth was reported alive and hiding with the vulturemen, possibly in the dome, during the party's approach to Dunnersend. + +## Known Details + +- Salamander-like invaders from the Brass City said Luth was hiding with the vulturemen. +- They had heard Luth was alive in there, perhaps in the dome. +- The same conversation mentioned kin looking for their thorn in their sides and the party having destroyed plans waterwise. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Who is Luth, and why were the Brass City invaders looking for him? +- What dome was meant in the report that Luth may be alive in there? diff --git a/data/6-wiki/people/minor-figures-days-23-31.md b/data/6-wiki/people/minor-figures-days-23-31.md new file mode 100644 index 0000000..c29ba49 --- /dev/null +++ b/data/6-wiki/people/minor-figures-days-23-31.md @@ -0,0 +1,83 @@ +--- +title: Minor Figures from Days 23-31 +type: people index +first_seen: day-23 +last_updated: day-31 +sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md +--- + +# Minor Figures from Days 23-31 + +This page indexes named or name-like people from the Day 23 and Day 25-31 batch that do not yet warrant standalone entries but should remain searchable. + +## Day 23 + +- Guardseen: merfolk or ally who said the snail was a bad omen and had been drugged. +- Princess Aquunea: merfolk or Pact nobility associated with the empire beyond the Barrier; also appears as Aquena/Aquana in later Pact context. +- Muttowh: dragon figure named on the desert laboratory statue commemorating Hephaestos's death. +- Hephaestos: exalted of air whose death was commemorated by the desert laboratory statue. +- Rubodueul: friend of the Duncan people who called for aid during the Hephaestos history. +- Aranthium: named as the main architect of the Great Tower. +- Elementarium: great scholar shown in the elven art gallery, slain by Excellence or entombed for 400 years, worshipped darker gods, and died in 741 BD. +- Heurhall: human figure in a 314 BD dining-room painting; Iceland later said he had tried to help Dirk's people with Heurhall. +- Gavin: named in a mirror clue about needing something from a gift to Gavin. +- Inqueshwash: abnormal dragon or creature who thought Dirk looked tasty and said his mother sent him to be eaten. +- Perodot princess: figure said to be very well known by the void elemental near Garadwal's prison. + +## Days 25-26 + +- Ice Fang: dragon mount who took the party toward the Ice prison. +- Grubins: guide to the Howling Tombs who was killed by the ice-white eagle. +- Anrasurall: robed Humein from Baytail Accord who tried to free someone at the Ice prison using given runes and was killed by the bird. +- Atom: fell during the ice-white eagle attack, with no reviving him. +- Pact keeper Inara: Baytail Accord Pact leader. +- Guardfree: brought chairs so the party could join the Pact leaders. +- Visca of Fairshore: Pact leader who reported Baron attacks, Seaward shipments, and gnoll threats. +- Hanna of Fishbait's Edge: Pact leader who reported colder weather and storms. +- Lana/Alana of Azureside: Pact leader tied to Azureside records and the menagerie break-in. +- Terry: merfolk messenger bird who carried council and regional messages. +- Erroll/Errol: communication-linked bird or contact who established two-way communication with Terry and later carried messages. +- Lady Aquena: Pact or merfolk noble who would stay for a while and leave her offspring. +- Duchess Lauleriere of Freeport State: noble council member. +- Duke Humbersinthesand of Dunesend State: noble council member. +- Duchess Hearthwall of Hearthwall State: noble council member. +- Duke Norman Goldenswell of Goldenswell State: noble council member. +- Duke Torrain Freefellow of Snowsorrow State: noble council member. + +## Day 27 + +- Father Haithes [uncertain]: Dunesmead/Dunnersend Father associated with Altarrb. +- Egraine Brook / Igraine: Dunar Mother associated with life, pleasure, fertility, and harvest. +- Hearth Master: Dunnersend court official with flames for hair who produced trade logs. +- Huntsmistress: Dunnersend official who investigated threats, automatons, and requests for aid. +- Stilix: missing figure who resembled one of the attackers according to the bird-man. +- Agugu: guard who was an automaton infiltrator, said `unit compromised - core overload`, and exploded. +- Haemia: lion-woman creature created by a dark power. +- Alistair in Everchard: figure The Guilt connected to the wizards and barrier creation. +- Huntsman Indanyu: second-in-command huntsman whose sisters had been attacked as potential new mothers. +- Sister Proulsothight [uncertain]: shopkeeper holding a box like Gelissa's. +- Dirk's sister: sent word that Dad was unavailable and the party should come to Salvation. +- Stricker: refugee-camp ally who wanted to join if the party went to war. +- Stricker Senior: went to Salvation to work out plans to recover people who attacked them. + +## Days 29-31 + +- Arvel: person for whom the party got drinks at the Hard Cheese. +- Anite!: unclear name or utterance in the message-table incident after Lortesh's death. +- Hucan: ship owner or captain whose ship had been attacked and rummaged. +- Huan: survivor connected to the missing ship and moon-shard thread. +- Census / Hydratrox: uncertain name or names recorded beside the missing ship thread. +- [uncertain: Proloknight]: possible broker or contact for Counterspell and Polymorph scrolls. +- Groll: asked whether someone was in Galatrayer's head, possibly the overseer or explorer. +- Master Shined glass: name-like note from Day 30's Goliath-history research. +- Mirth: auction-house gatekeeper who let the party in and gave them a number. +- lord Searean: name on Ignan commemorative coins from the command tent. +- Poolface / Thunder: Goliath informant whose friends called him Poolface before he renamed himself Thunder. +- Zane Peacemaker Dirk: name-like note near Dirk's father and the Salvation war-planning thread. diff --git a/data/6-wiki/people/morgana.md b/data/6-wiki/people/morgana.md new file mode 100644 index 0000000..5a2a530 --- /dev/null +++ b/data/6-wiki/people/morgana.md @@ -0,0 +1,36 @@ +--- +title: Morgana +type: person +first_seen: day-27 +last_updated: day-30 +sources: + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-30.md +--- + +# Morgana + +## Summary + +Morgana is a human sent by The Chorus because the visions went better when the party had five members. + +## Known Details + +- Morgana arrived with two birds, including the pigeon who had helped the party in Everchard. +- The Chorus sent her because there should be five party members. +- She reported strange happenings in Everchard forest, including large animals and a bright green Dragonborn with sickly Goliaths near a poisoned part of the forest. +- Morgana gave goodberries to heal refugees at Stricker's camp. +- The party arranged an extra mount for Morgana before scouting the statue near Dunnersend. +- Day 30 notes that Morgana could cast Polymorph. + +## Related Entries + +- [The Chorus](the-chorus.md) +- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Dunnersend](../places/dunnersend.md) + +## Open Questions + +- Why do the visions improve when Morgana is present? +- What is happening in Everchard forest around the green Dragonborn and sickly Goliaths? diff --git a/data/6-wiki/people/peridita.md b/data/6-wiki/people/peridita.md new file mode 100644 index 0000000..a067aa3 --- /dev/null +++ b/data/6-wiki/people/peridita.md @@ -0,0 +1,39 @@ +--- +title: Peridita +type: dragon or person +aliases: + - Perodita + - Perodetta + - The Choking Death + - The whispers in the dark + - Mother of many +first_seen: day-25 +last_updated: day-26 +sources: + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md +--- + +# Peridita + +## Summary + +Peridita, also written Perodita or Perodetta, is a green dragon figure called `The Choking Death`, `The whispers in the dark`, and `Mother of many`. + +## Known Details + +- Day 25 names Peridita in connection with warnings about dragons plotting, the Terror of the Sands, and `the mother of many`. +- Dragon titles record Peridita as green, `The Choking Death`, `The whispers in the dark`, and `Mother of many`. +- Day 26 says Perodita's new mate was Kortesh Gravesings, also her son, called `The Twisted`. +- Azureside records tied Green Dragons to the destruction of the Goliaths and lack of contact for about 900 years. + +## Related Entries + +- [Lortesh](lortesh.md) +- [Garadwal](garadwal.md) +- [Infestus](infestus.md) + +## Open Questions + +- Is Peridita the `mother` from the old warning, or could that refer to Duncan's mage? +- What is her exact relationship to Lortesh / Kortesh Gravesings and the Green Dragons? diff --git a/data/6-wiki/people/silver.md b/data/6-wiki/people/silver.md new file mode 100644 index 0000000..d4a2a4a --- /dev/null +++ b/data/6-wiki/people/silver.md @@ -0,0 +1,36 @@ +--- +title: Silver +type: person or automaton +aliases: + - the female automaton +first_seen: day-23 +last_updated: day-23 +sources: + - data/4-days-cleaned/day-23.md +--- + +# Silver + +## Summary + +Silver was a sentient or semi-sentient female automaton in Cardonald's desert laboratory, apparently used as a practice vessel and later controlled through a ring or soul mechanism. + +## Known Details + +- Silver had been in the desert laboratory for 601 years and without the mistress for 907 years. +- She served the party wine, explained the mistress's death in a spell accident, and gave a tour of the laboratory. +- She tried to take a golden band with a smashed ruby resembling Eno's ring. +- Her voice changed, she attacked doors with magic missile, and she said she wanted to get out after being trapped like she had trapped her friends. +- The laboratory contained spare parts for Silver, suggesting she had been a practice vessel rather than a true friend. +- Dirk threw her into the Barrier, destroying the soul, after which Cardonal took over the construct. + +## Related Entries + +- [Cardonald's Desert Laboratory](../places/desert-laboratory.md) +- [Valenth Cardonald](valenth-cardonald.md) +- [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md) + +## Open Questions + +- Whose soul controlled Silver before it was destroyed? +- Which friends did Silver mean when she said she had trapped them? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md index 10e3ddd..99c18e9 100644 --- a/data/6-wiki/people/status.md +++ b/data/6-wiki/people/status.md @@ -1,7 +1,7 @@ --- title: NPC Status type: stateful people rollup -last_updated: day-22 +last_updated: day-31 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-02.md @@ -20,6 +20,13 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # NPC Status @@ -39,6 +46,8 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Core | repaired but odd | `data/4-days-cleaned/day-05.md`, `data/4-days-cleaned/day-09.md` | Returned damaged and later arrived repaired by post labelled `GUILT`. | | [Kiendra](kiendra.md) | rescued, weak, tortured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Initially believed killed/lost, then sensed in a cavern and rescued during the shield crystal mission. | | Huntmaster Thrune / Huntmaster | survived but injured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Agreed to aid against the Excellence, went missing, then was found fighting an Excellence while both were very injured. | +| [Brutor Ruby Eye](brutor-ruby-eye.md) | restored | `data/4-days-cleaned/day-30.md` | Restored from an animated floating skull with both eyes glowing red; immediately helped gather supplies. | +| [Lady Hearthwill](lady-hearthwill.md) | injured, then active on the front lines | `data/4-days-cleaned/day-30.md` | Injured fighting giants but recuperating normally; later unavailable because she was fighting on the front lines. | ## Dead or Believed Dead @@ -48,10 +57,15 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Sheep farm victims | dead | `data/4-days-cleaned/day-03.md` | A man was found trampled, and a young boy who had not been dead at first was later dead. Exact identities remain uncertain. | | Barrier twin | killed by party | `data/4-days-cleaned/day-05.md` | One of two commanders of affected people; the swamp twin remains unresolved. | | [Joy](joy.md) | dead/recreated/unresolved | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-14.md` | Six graves were marked Joy, but later an invisible Joy-like presence asked Dirk for help. | -| [Brutor Ruby Eye](brutor-ruby-eye.md) | dead but skull active | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md` | Said to have been killed by the Black Dragon; skull remains an information source. | +| [Brutor Ruby Eye](brutor-ruby-eye.md), earlier report | superseded dead-but-skull-active report | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md`, `data/4-days-cleaned/day-30.md` | Said to have been killed by the Black Dragon, but Day 30 restored him from the skull. | | Alsafaur | dead, remains returned | `data/4-days-cleaned/day-16.md` | Veridian dragonborn skull, dead about 1,000 years, returned to black dragon. | | Kairbidius/Kairibidius | killed | `data/4-days-cleaned/day-19.md` | Pirate captain killed by the party along with crew. | | Kiendra, earlier report | superseded believed-dead report | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Shandra reported her killed or believed killed before the later rescue. | +| Grubins | killed | `data/4-days-cleaned/day-26.md` | Guide to the Howling Tombs, killed by the ice-white eagle near the burst Ice prison entrance. | +| Anrasurall | killed | `data/4-days-cleaned/day-26.md` | Robed Humein from Baytail Accord killed after trying to free someone at the Ice prison. | +| [The Mother](the-mother.md) | killed | `data/4-days-cleaned/day-26.md` | Died during the Baytail Accord crisis; her corpse fell apart and yielded an Envi-cipher spellbook. | +| [Lortesh](lortesh.md) | killed | `data/4-days-cleaned/day-29.md` | Killed in the missing-page gap; Day 31 still records unresolved details about his `untruly end`. | +| Treamen | killed or defeated | `data/4-days-cleaned/day-31.md` | Earth Excellence whose jagged purple crystal skull artifact was recovered. | ## Missing, Disappeared, or Unresolved @@ -66,6 +80,8 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | [Pythus Aleyvarus](pythus-aleyvarus.md) | dangerous whereabouts known only by scrying | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Seen near Salvation reading the human-flesh grimoire. | | Arabella | kidnapped again | `data/4-days-cleaned/day-20.md` | Targeted attack involved faces removed. | | Keely Caardenalb | not yet contacted | `data/4-days-cleaned/day-17.md` | Desert researcher whose work may be useful. | +| [Luth](luth.md) | hiding or alive, unconfirmed | `data/4-days-cleaned/day-29.md` | Reportedly alive and hiding with the vulturemen, perhaps in the dome. | +| [Lady R. Beauchamp?!?](lady-r-beauchamp.md) | unresolved | `data/4-days-cleaned/day-30.md` | Named as the person on whose behalf a Dunnersend scholar inspected soot bones, with `Blue Dragon?!?` noted beside it. | ## Captive, Imprisoned, or Detained @@ -78,6 +94,7 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Elemental prisoners / eight beings | trapped or exploited | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-15.md` | Barrier system may use quasi-elemental prisoners as batteries. | | Water elementals chained to chariot | chained, with party, pending auction | `data/4-days-cleaned/day-22.md` | They wanted something [unclear] and agreed to come on the big boat. | | Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaws on the Earl's orders under treason accusations. | +| [Silver](silver.md) | soul destroyed, construct taken over | `data/4-days-cleaned/day-23.md` | Dirk threw Silver into the Barrier, destroying the soul; Cardonal then took over the construct. | ## Allies and Contacts @@ -86,13 +103,15 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Sheriff Jeremia/Jeremiah | Everchard authority/contact | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-09.md` | Deputized the party and later took over after the Earl disappeared. | | Brother Fracture | healer/restoration ally | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-09.md` | Helped restored victims and affected townsfolk. | | [The Chorus](the-chorus.md) | strange ally/source | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-07.md` | Explained memory magic and watched remaining people near the Barrier. | -| Basilisk/Basalisk | recurring contact | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md` | Bodyguard to Lady Catherine Cole, arranging a Winter Rose contact. | +| [Basilisk / Busalish](basilisk-busalish.md) | recurring contact | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md`, `data/4-days-cleaned/day-23.md`, `data/4-days-cleaned/day-30.md` | Bodyguard to Lady Catherine Cole, arranging a Winter Rose contact; later receives party messages and may help with mage support. | | Elementharium/Clementarium | Seaward expert | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md` | Explained quasi-elementals and gave Ruby Eye skull. | | [Shandra](shandra.md) | Turtle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | | [Tiana/Taina](tiana-taina.md) | Freeport Pact leader/coordinator | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Coordinated forces against the Excellence. | -| Zinquiss/Xinquiss | potion and auction contact | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Helped with potions, joined sea operation, and plans to auction the chariot. | +| [Xinquiss/Zinquiss](xinquiss-zinquiss.md) | potion, shard, and auction contact | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md`, `data/4-days-cleaned/day-30.md`, `data/4-days-cleaned/day-31.md` | Helped with potions, joined sea operation, planned to auction the chariot, was tasked to retrieve the moon shard, and appeared at the auction with a cart. | | Guardfree and Guardfore | merfolk guards/allies | `data/4-days-cleaned/day-20.md` | Guardfree kept watch and planned to get his mistress to bring guest shells. | | Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadwal's location. | +| [Morgana](morgana.md) | allied fifth party member | `data/4-days-cleaned/day-27.md`, `data/4-days-cleaned/day-28.md`, `data/4-days-cleaned/day-30.md` | Sent by The Chorus because visions went better with five party members; carries birds, heals, and can Polymorph. | +| [Benu](benu.md) | Dunnersend ally | `data/4-days-cleaned/day-29.md`, `data/4-days-cleaned/day-30.md` | Helped secure support in wars to come, stayed to build a temple, could message Cardenald, and could create a hero's feast. | ## Hostile or Dangerous @@ -107,3 +126,4 @@ This rollup tracks current or last-known NPC lifecycle state: rescued, dead, mis | Excellence | hostile type, one defeated | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Can be slain; one fought Huntmaster and was defeated or dealt with. | | Perodetta | regional threat | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Spawn amassing near Azure-side; Heartmoor illness may connect. | | Fairshaws/Fairport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | +| [Peridita](peridita.md) | regional green-dragon threat | `data/4-days-cleaned/day-25.md`, `data/4-days-cleaned/day-26.md` | `Mother of many` and `The Choking Death`, tied to dragon plots and Lortesh / Kortesh Gravesings. | diff --git a/data/6-wiki/people/the-mother.md b/data/6-wiki/people/the-mother.md new file mode 100644 index 0000000..92aed01 --- /dev/null +++ b/data/6-wiki/people/the-mother.md @@ -0,0 +1,38 @@ +--- +title: The Mother +type: person or antagonist +aliases: + - Mother +first_seen: day-26 +last_updated: day-27 +sources: + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md +--- + +# The Mother + +## Summary + +The Mother was a Carnamancy-linked antagonist who transformed the life prison into flesh, siphoned Limnuvela, repurposed Envi's clone, and died during the Baytail Accord crisis. + +## Known Details + +- The life prison had become flesh, eyes, veins, and other organic features, possibly through high-level Carnamancy by The Mother. +- The Mother tried to absorb Limnuvela but could not contain him; he was holding on to keep the Barrier up while she siphoned energy through a copper pipe. +- At Baytail Accord, a horrible boob-covered form appeared and was apparently The Mother. +- After The Mother died, Geldrin found a spellbook on her with the same cipher and spells as Envi's. +- The Mother had somehow repurposed Envi's clone, which seemed impossible under the party's understanding of clone magic. +- Dunesmead later distinguished local Mother figures from `The Mother`, whose stolen power was linked to Ennui and the ban on spell writing. + +## Related Entries + +- [Envoi](envoi.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [The Pact](../factions/the-pact.md) + +## Open Questions + +- How did The Mother repurpose Envi's clone? +- Was she connected to Peridita, the `Mother of many`, or was that only thematic overlap? +- What remains of her spellbook, cipher, and Carnamancy work? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index 8eb2c2d..be51284 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -57,14 +57,14 @@ sources: - `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). - `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). -- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Envoi](people/envoi.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md). -- `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Elemental Prisons](concepts/elemental-prisons.md). -- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md). -- `data/4-days-cleaned/day-27.md`: [Dunnersend](places/dunnersend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Chorus](people/the-chorus.md). -- `data/4-days-cleaned/day-28.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). -- `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md). -- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Elemental Prisons](concepts/elemental-prisons.md). -- `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md). +- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Silver](people/silver.md), [Envoi](people/envoi.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Peridita](people/peridita.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Peridita](people/peridita.md), [The Mother](people/the-mother.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-27.md`: [Dunnersend](places/dunnersend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Mother](people/the-mother.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Morgana](people/morgana.md), [The Chorus](people/the-chorus.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-28.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Astraywoo](people/astraywoo.md), [Morgana](people/morgana.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Benu](people/benu.md), [Astraywoo](people/astraywoo.md), [Luth](people/luth.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Edward Browning](people/edward-browning.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Basilisk / Busalish](people/basilisk-busalish.md), [Benu](people/benu.md), [Morgana](people/morgana.md), [Lady Hearthwill](people/lady-hearthwill.md), [Lady R. Beauchamp?!?](people/lady-r-beauchamp.md), [Elemental Prisons](concepts/elemental-prisons.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). +- `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Edward Browning](people/edward-browning.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Minor Figures from Days 23-31](people/minor-figures-days-23-31.md). ## Stateful Rollups -
be7ec7eMore pagesby Bas Mostert
data/2-pages/100.txt | 57 +++ data/2-pages/101.txt | 51 +++ data/2-pages/102.txt | 39 ++ data/2-pages/105.txt | 36 ++ data/2-pages/106.txt | 37 ++ data/2-pages/107.txt | 34 ++ data/2-pages/108.txt | 40 ++ data/2-pages/109.txt | 37 ++ data/2-pages/110.txt | 30 ++ data/2-pages/111.txt | 26 ++ data/2-pages/112.txt | 29 ++ data/2-pages/113.txt | 37 ++ data/2-pages/74.txt | 51 +++ data/2-pages/75.txt | 39 ++ data/2-pages/76.txt | 34 ++ data/2-pages/77.txt | 41 ++ data/2-pages/78.txt | 33 ++ data/2-pages/79.txt | 34 ++ data/2-pages/80.txt | 30 ++ data/2-pages/81.txt | 37 ++ data/2-pages/82.txt | 33 ++ data/2-pages/83.txt | 20 + data/2-pages/84.txt | 41 ++ data/2-pages/85.txt | 43 ++ data/2-pages/86.txt | 36 ++ data/2-pages/87.txt | 41 ++ data/2-pages/88.txt | 43 ++ data/2-pages/89.txt | 42 ++ data/2-pages/90.txt | 41 ++ data/2-pages/91.txt | 46 +++ data/2-pages/92.txt | 50 +++ data/2-pages/93.txt | 43 ++ data/2-pages/94.txt | 43 ++ data/2-pages/95.txt | 41 ++ data/2-pages/96.txt | 50 +++ data/2-pages/97.txt | 37 ++ data/2-pages/98.txt | 45 +++ data/2-pages/99.txt | 45 +++ data/3-days/day-23.md | 437 +++++++++++++++++++++ data/3-days/day-25.md | 71 ++++ data/3-days/day-26.md | 331 ++++++++++++++++ data/3-days/day-27.md | 402 +++++++++++++++++++ data/3-days/day-28.md | 110 ++++++ data/3-days/day-29.md | 77 ++++ data/3-days/day-30.md | 121 ++++++ data/3-days/day-31.md | 128 ++++++ data/4-days-cleaned/day-23.md | 101 +++++ data/4-days-cleaned/day-25.md | 41 ++ data/4-days-cleaned/day-26.md | 105 +++++ data/4-days-cleaned/day-27.md | 100 +++++ data/4-days-cleaned/day-28.md | 41 ++ data/4-days-cleaned/day-29.md | 43 ++ data/4-days-cleaned/day-30.md | 64 +++ data/4-days-cleaned/day-31.md | 67 ++++ data/6-wiki/aliases.md | 20 +- data/6-wiki/concepts/barrier.md | 17 +- data/6-wiki/concepts/elemental-prisons.md | 26 +- data/6-wiki/concepts/excellences.md | 25 +- data/6-wiki/factions/black-scales.md | 11 +- data/6-wiki/factions/the-pact.md | 13 +- data/6-wiki/index.md | 14 + data/6-wiki/items/freeport-auction-lots.md | 46 +++ .../items/mother-of-pearl-elemental-chariot.md | 6 +- data/6-wiki/items/tri-moon-shard.md | 10 +- data/6-wiki/open-threads.md | 25 ++ data/6-wiki/people/brutor-ruby-eye.md | 17 +- data/6-wiki/people/envoi.md | 21 +- data/6-wiki/people/freeport-baroness.md | 10 +- data/6-wiki/people/garadwal.md | 22 +- data/6-wiki/people/infestus.md | 12 +- data/6-wiki/people/joy.md | 9 +- data/6-wiki/people/lortesh.md | 43 ++ data/6-wiki/people/valenth-cardonald.md | 29 +- data/6-wiki/people/xinquiss-zinquiss.md | 41 ++ data/6-wiki/places/desert-laboratory.md | 46 +++ data/6-wiki/places/dunnersend.md | 49 +++ data/6-wiki/places/freeport.md | 10 +- data/6-wiki/places/hidden-laboratory.md | 6 +- data/6-wiki/places/rimewatch-ice-prison.md | 44 +++ data/6-wiki/sources.md | 16 + data/6-wiki/timeline.md | 17 + 81 files changed, 4316 insertions(+), 20 deletions(-)Show diff
diff --git a/data/2-pages/100.txt b/data/2-pages/100.txt new file mode 100644 index 0000000..7d39aad --- /dev/null +++ b/data/2-pages/100.txt @@ -0,0 +1,57 @@ +Page: 100 +Source: data/1-source/IMG_9763.jpg + +Transcription: + +Hard Cheese - Cafe down the road for out of towers +(sells booze) + +One of the locals is marked by geldrin's Shield crystal +- seems to drink. + +Chorus hearing visions from the ancient where things +went bad and there wasn't alot of water +waterwise. She also saw the visions went +better when Morgana was there as there should +be 5 of us. + +Send message to Basilisk about Sister's Shop. + +[left note] +Day 28 (Monday) +12th Jan 1012 +6 days to trimoons +4 days to auction + +Dirk wakes up with an uneasy feeling +& something tugs at his brain - scrying spell? + +5:00 + +head over to the palace to meet Huntsmistress 8:00 +for mounts & reports back from scouts. +extra mount for Morgana. + +worrying news much animation around the statue +poorly done as you can't make out features. +surrounded by runes flashing red - everyone around excited +40 Salamander men - the runes were red. +few creatures made of fire +Purple skinned creature with 6 arms - 2 tridents +(Excellence) + +Different than the last report a few days ago. + +Trying to understand if Pride is a friend as he +was meant to fix the prison but seems to have +opened it instead. + +Call on Rubyeye - thinks he knows who it is +him & Valenth long discussed it. +Browning & Ennui have something under grand towers +- had an advance in the technology for creating the +dome during the excavation for the dome. +Elves maybe trapped him & Browning & Ennui backwards +Engineered something to create the dome +in the workshop? Power source for the workshop? +Darkness, Excellence diff --git a/data/2-pages/101.txt b/data/2-pages/101.txt new file mode 100644 index 0000000..b79203e --- /dev/null +++ b/data/2-pages/101.txt @@ -0,0 +1,51 @@ +Page: 101 +Source: data/1-source/IMG_9764.jpg + +Transcription: + +- Controls the overseer - Cardenald should be + separate to the mainframe. Double locked: Valenthide + prison & automaton guard. + +by Pride's prison isn't connected to the barrier +network. + +- Entrapment ritual to subdue & hold them in + place - weaken them & activate the runes. + +- Maybe trying to distract us from saving + the shield from crushing. + setting lots of things in motion to distract us + and make sure we don't have any help. + +- Visit elven ruins with the Vulture prisoner? + Go to visit mother - ask Huntsmistress to give us a man + - ask about the automatons - she doesn't know but + someone of her talent has made them - Ennui & Browning. + - heard about our run in with the sister last night + - wants proof that the vulture people were not + behind the killings. before she will give us aid. + +Speak to Vulture-man - thanks us for helping him. +haven't found any further Haemia. +& if the leaders are willing to meet each other +to call a cease fire. he will arrange for +a meeting of his leader in a neutral place to talk +with us. + +[side note] athruygon? (name) + +let Vulturemen out - Huntsmistress will ready some forces +if we need them - head fire wise. seems to be sending messages +as we are travelling. Endless Dunes. + +10:00 + +16:00 + +stop for a rest +see two shapes flying at the Horizon very large as 10/15 miles away. +Geldrin - feels like he was scryed on. + +shapes on the horizon are large Dragons (veridian?) searching +in the ruins diff --git a/data/2-pages/102.txt b/data/2-pages/102.txt new file mode 100644 index 0000000..add3ea1 --- /dev/null +++ b/data/2-pages/102.txt @@ -0,0 +1,39 @@ +Page: 102 +Source: data/1-source/IMG_9765.jpg + +Transcription: + +go the other way & approach an Oasis. +dragons seem to be heading this way, hide in the oasis - young adult dragons - one has two heads, +all the wildlife disappeared - they know we are here - speak to a purple vision of a dragon to find out where we are - she said she doesn't know - we keep resisting her attempts to check on them - they nearly find us but Geldin fools them into thinking we'd teleported. Take rest. + +[left margin] Day 29 (Tuesday) 1st Tan 107 AT. 5 days to Timnor. 5 days to auction. + +people with lizard heads - Salamander like. Red - 6 of them +wish they were killed out - one doesn't have legs +invaders from the great Brass City - leader is a true salamander. +From Fire plane. + +En route to Dunnersend to see if issues are resolved +statue incomplete. + +Kin looking for their thorn in their sides +Luth hiding with the vulturemen +heard he is alive in there? Dome? +we destroyed their plans waterwise. + +They go on their way. + +Continue in same direction - come across rocks like seaweed, +but a different vein colour. pressed a rock & staircase +appears, opens into a large under sand structure. +lionin creature mosaic on the floor. +4 legged sphinx +goat head sphinx +6 legged cat like creature with braided beard, egyptian headdress +lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen style clothes (honour guard style) each side. + +Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. +Goliaths came to him asking for help to trap his brother. +we will protect him if we escort him to see the Dunners. +Doesn't want to go to Dunnersend after we told him about the automaton - may have something to show faith diff --git a/data/2-pages/105.txt b/data/2-pages/105.txt new file mode 100644 index 0000000..4f190b7 --- /dev/null +++ b/data/2-pages/105.txt @@ -0,0 +1,36 @@ +Page: 105 +Source: data/1-source/IMG_9766.jpg + +Transcription: + +fight Lortesh! kill Him!!! + +Dirk takes skulls - Geldin finds 2 skulls in them. given to Invar. +Dirk buries their dragon skulls. scour the beard & take back to town. +Morgana notices the plants starting to grow. + +Return to Dunnersend. Guards bang spears against shields. +go towards palace - townsfolk cheering & celebrating on the way, at the water gardens. Benu / mother / father are there. We get their support in wars to come. 19:00 + +- Bath house is outside of Dunnen rules for the night. +- try to procure some beer - go to Hunt & Hearth by mistake & get free rooms. Need to go the Hard Cheese. +Walk into back room, get drinks for Arvel & get cheese. +retrieve Errol. + +Rhelmbreaker giant spotted at Highden travelling waterwise. +go to bath house. +- Message Busalish - killed Lortesh. + +Errol hops onto a message table. +make your decision (Anite!) +made a mistake controlling the wizard & accidentally opened the prison. +very happy we killed the dragon, - happy when people are proud of themselves. + +Head to Inn & sleep. + +[left margin] Day 30 (Wednesday) 2nd Tan 107 AT. 4 days to Timnor. 5 days to auction. +2 days 4pm [uncertain: Lathlie] + +Town Crier information laptop. +- message from Busalish - wants to meet us - comes in. +Lady Hearthwill injured - fighting giants decided to take into her own hands, recuperating norm. +Goldenswell retreated soldiers. diff --git a/data/2-pages/106.txt b/data/2-pages/106.txt new file mode 100644 index 0000000..5b973fa --- /dev/null +++ b/data/2-pages/106.txt @@ -0,0 +1,37 @@ +Page: 106 +Source: data/1-source/IMG_9767.jpg + +Transcription: + +Hucan's ship attacked. Rummaged in the night. Cart has been rummaged through! +messages being intercepted. + +Blue dragon +Battle plans being leaked... +Craters Edge - magic attacked +Cart - guards on there - a bit of a mess when they were found. -> Betrayer. + +moon shard in the sea - Invar retrieved it & tried to take it back to ground towers. Xinquss tasked to retrieve it. + +Huan survived - ship missing - Census / Hydratrox. +Our Council members on their way to Highden. + +Wrath to Valenthide. +Xinquss to shield crystal. + +Benu staying in Dunnersend will build a temple in city. + +father sent feelers to army - spare 100 troops for us. +30 skilled fighters, 70 conscripted. +5 healers from Huntmistress too. +obtained transport for all & 10 cavalry. +scouts report similar sized army at the barrier. + +Benu can message Cardenald - ask to meet 09:00 at Dunnersend - she will meet us there at the shrine. + +see glinting in the sun - Cardenald. + +- had sent us a message which we didn't get. +thinks somebody is trying to get into her thinks. +She has kept it out for now. +can fix Errol. diff --git a/data/2-pages/107.txt b/data/2-pages/107.txt new file mode 100644 index 0000000..8d444fc --- /dev/null +++ b/data/2-pages/107.txt @@ -0,0 +1,34 @@ +Page: 107 +Source: data/1-source/IMG_9768.jpg + +Transcription: + +Salinay sealed - barrier energy depleted. +- Valententhide is the cause of that. + +Betrayer - will be working on another Body - take 20-30 days. + +Rubyeye resurrection question posed to Cardenald. +- she says yes - we are also swaying that way. +we agree to do it. +both eyes glow red & skull floats & animated & comes back to life & makes a beard. +- Geldin flashback to a room with a floating skull. +Enwi's gloves in Goliath Tower in Oasis - so died & went there but nobody knows so hasn't been released. + +Browning made a bargain to rid fishes from the barrier in return for a peace treaty. + +Enwi also made a pact of some sorts - rings. + +The Guilt is an excellence!! + +Browning's lab near Craters edge. + +Magical defenses against Valententhide. Counterspell. + +Message to Busalish to say guilt is Excellence & ask for mage help with Wrath. + +Benu can create a hero's feast. + +go to Cheese shop - no mages or scrolls but can speak to [uncertain: Proloknight] for us for counterspell & polymorph. +Counterspell 500g. 10g [unclear]. Finders fee only for 2 but want 3. +Poly morph - 3-4kg - Morgana can do. diff --git a/data/2-pages/108.txt b/data/2-pages/108.txt new file mode 100644 index 0000000..d4057d4 --- /dev/null +++ b/data/2-pages/108.txt @@ -0,0 +1,40 @@ +Page: 108 +Source: data/1-source/IMG_9769.jpg + +Transcription: + +Try to see what the automaton is doing - Galatrayer. +who was guarding valententhide's prison - Cardenald taps into it - Stone Room - somebody here - out of focus? - still imprisoned? Geldrin not convinced. +- Groll - somebody in Galatrayer's head? The overseer? The explorer? + +Back to Palace. +Cardenald & Ruby eye back to Cardenald's lab to study & get supplies. + +Geldrin tries to find valententhide or goliath city in the library. +scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunnersend. Master Shined glass. +Goliath Capital - Ashktioth. +Tradesmall - Goliath town. +Valententhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). + +Army leaves @ 16:00. 16:00! + +Invar received message back. +Lady unavailable fighting on front lines. +count their money back. +news this morning about village - no other news. +Battle going badly. +soots bones - scholar from Dunnersend inspecting bones on behalf of Lady R. Beauchamp?!? - Blue Dragon?!? +Cardenald & Rubyeye come back - found 2x orbs & 2x scrolls of Counterspell. + +Errol going to Crater's Edge to see if actually Ash. +Errol back - Crater's Edge intact - very quiet - but late at night 24:00 - one person looking out of window - tiefling child looking out of window (Joy?)!! Trap?! + +[left margin] Day 31 (Thursday) 3rd Tan 107 AT. 3 days to Timnor. 2 days to auction. 1 day left upon the road army. + +Plan to follow the army & fish Excellence. +All day passed. +set up camp. +During watch - movement in distance - flying & closer - Dragons - neither have 2 heads - Ashlike small wings - Antler snake horse eyes horns. +fly close to us but don't notice us. +Don't seem to have come from Statue. +may have noticed army? diff --git a/data/2-pages/109.txt b/data/2-pages/109.txt new file mode 100644 index 0000000..136d965 --- /dev/null +++ b/data/2-pages/109.txt @@ -0,0 +1,37 @@ +Page: 109 +Source: data/1-source/IMG_9770.jpg + +Transcription: + +go to Baked Mattress for food. + +see a human sat down with a very noticeable underbelly. +Barkeep - Patches of night & husband. +Xinqus in town! + +head to auction house. +870kg. +See a [uncertain: pigeon/aracock] with Xinqus's cart. Xinqus is inside. +"1600" + +Walk to the front of the queue. Mirth at the front of the queue lets us in & gives us a number. + +Dragon - Retribution shrine on Azureside. +Very eclectic bunch of people in the auction. +everybody else seemed to pay to get in. + +Auctions - Number of coins - grand towers penne / Goliath coin s x2. +- Bottle of wine - sosen mistle eel. +- Pocket watch functioning - squares showing moon cycle. +- green rimmed glasses - elven. +- Small mahogany box - red velvet curtain - illusionary scenes form box. +- loved patched leather backpack - bag of sorting 3-500g. 500lb or 64 gems. only weighs 15lb. +- silver scorpion on a chain - Holy symbol of Noxia. +- long sword - 8/400 years old. Style Invar makes. Firefang - sword +1D6, 5 charges spell charges and Burning hands. 4500g. +- Amle - for adult? +- ring crystal on top of it - ring of protection. +- Chariot - The Guilt is interested?!? +- Big scroll of paper - Arcane writing. Geldrin tries to check what it is & casts dispel magic. The words disappear from the page - Browning's scroll. New random spell appears each morning @ 2:37. 600g. +- Bracelet of locating. +- Art cork - rare poetry books. +- Talon of soot. diff --git a/data/2-pages/110.txt b/data/2-pages/110.txt new file mode 100644 index 0000000..04e1584 --- /dev/null +++ b/data/2-pages/110.txt @@ -0,0 +1,30 @@ +Page: 110 +Source: data/1-source/IMG_9771.jpg + +Transcription: + +Send the bird to the camp. +Lortesh untruly end - we cannot control him. +Reward sphinx promises is delivered. he will deliver his side of the bargain. + +Armies approach - request if they are mine. +Become more subservient & say no Sir. +will know if we are lying to him. + +Goliaths start to be freed from their tents. +Dirk's dad is a few tents down. + +Sees through my illusion & laughs because I made myself look meaner. + +Attack takes place. goliaths attack outside the tents. +Lord of Brass Citadel tries to go to front line & I have to go with him. + +Green Dragon descends on the armies. + +My Frizzlesing - day of music [crossed out: mirrors] mirroring surrounding. + +Dunnen Army kills the dragon. +Elemental dies & says +"You betray me, I was meant to avenge you". +Kill it. +Dunnensend Army are successful. diff --git a/data/2-pages/111.txt b/data/2-pages/111.txt new file mode 100644 index 0000000..a3263f8 --- /dev/null +++ b/data/2-pages/111.txt @@ -0,0 +1,26 @@ +Page: 111 +Source: data/1-source/IMG_9772.jpg + +Transcription: + +Dirk's dad is ok. + +Ruby eye taking Valenta back to her lab to repair her - they need a few days to recuperate. + +- Excellence killed was the leader of the brass city. +Earth Excellence - Treamen - I have - jagged purple crystal skull. Invar checks it. magically crafted artifact. made from his skull made from [uncertain: shield] crystal. + +Locate a command tent, locate a locked chest. 22:00 +load of platinum coins - one side domed city tower & other side snake wrapped round a stick. +1,000 words in Ignan around the outside: +"to commemorate the fall of the labour in the name of the lord Searean" + +Dirk's Dad wants to go back to Salvation to rest & gather armies to attack the Goliath city with some of the Goliaths from the city. +(Zane Peacemaker Dirk) + +5 days before they could get to the city. + +go to check on the dragon. Dunmerend are in a row next to it. Officer & a mule shift table with scales - handing them out to the army. +scales - devoid of flesh like they have been carved. +Dragon is the same size as the others but has bird claws as his legs. +wings extend down his tail like Lortesh. diff --git a/data/2-pages/112.txt b/data/2-pages/112.txt new file mode 100644 index 0000000..0160b45 --- /dev/null +++ b/data/2-pages/112.txt @@ -0,0 +1,29 @@ +Page: 112 +Source: data/1-source/IMG_9773.jpg + +Transcription: + +ask for the dragon's head to be chopped off. + +Dirk questioning one of the city goliaths. +not a city - +Rebels say we need to take the tower. tower is in a field. +people worked for the dragons for generations. +think the dragons are gods. Rebels killed one of the young ones - she killed 1,000 Goliaths in revenge - his job was to tend the lizards lizards to feed the dragons or they would be food. His friends called him poolface but changes it to Thunder as a strong name. + +[left margin] Day 32 [uncertain: Chuwee] + +Hillfolk village between [uncertain: Prortibhe] & Stone rampart. +Earthwise. one I know. + +Decide to travel to Hearthwall - Rift block. +Statue to Lan (Earth god to love, home & family) outside Hearthwall - teleport there. on target. +Statue of Lan is very similar in style to the Statue of Serva. +2 guards - human & half elf - +city is fine - Lady Hearthwall still injured. +Lady Freya in attendance in the city. +- other items for sale by Xinqus. +Mirth is in town for the auction. +11,000 occupants. Dual wall city. Clean & tidy streets. +- Auction house is the Grand Auction house. takes place at 2pm. 11:00 +Food at the Baked Mattress. diff --git a/data/2-pages/113.txt b/data/2-pages/113.txt new file mode 100644 index 0000000..1f29e87 --- /dev/null +++ b/data/2-pages/113.txt @@ -0,0 +1,37 @@ +Page: 113 +Source: data/1-source/IMG_9774.jpg + +Transcription: + +go to Baked Mattress for food. + +see a human sat down with a very noticeable underbelly. +Barkeep - Patches of night & husband. +Xinqus in town! + +head to auction house. +870kg. +See a [uncertain: pigeon/aracock] with Xinqus's cart. Xinqus is inside. +"1600" + +Walk to the front of the queue. Mirth at the front of the queue lets us in & gives us a number. + +Dragon - Retribution shrine on Azureside. +Very eclectic bunch of people in the auction. +everybody else seemed to pay to get in. + +Auctions - Number of coins - grand towers penne / Goliath coin s x2. +- Bottle of wine - sosen mistle eel. +- Pocket watch functioning - squares showing moon cycle. +- green rimmed glasses - elven. +- Small mahogany box - red velvet curtain - illusionary scenes form box. +- loved patched leather backpack - bag of sorting 3-500g. 500lb or 64 gems. only weighs 15lb. +- silver scorpion on a chain - Holy symbol of Noxia. +- long sword - 8/400 years old. Style Invar makes. Firefang - sword +1D6, 5 charges spell charges and Burning hands. 4500g. +- Amle - for adult? +- ring crystal on top of it - ring of protection. +- Chariot - The Guilt is interested?!? +- Big scroll of paper - Arcane writing. Geldrin tries to check what it is & casts dispel magic. The words disappear from the page - Browning's scroll. New random spell appears each morning @ 2:37. 600g. +- Bracelet of locating. +- Art cork - rare poetry books. +- Talon of soot. diff --git a/data/2-pages/74.txt b/data/2-pages/74.txt new file mode 100644 index 0000000..1e0c432 --- /dev/null +++ b/data/2-pages/74.txt @@ -0,0 +1,51 @@ +Page: 74 +Source: data/1-source/IMG_9735.jpg + +Transcription: + +coil of rope with a burnt end on the rug. +- crumbles when touched. +No automations. + +place is oddly clean. hole in the roof seems to have been blown up but has been cleaned up. +- blown from outside in. + +go through firewise door - female automation very different to the others (Silver) +Mistress not her & won't be coming back. +been here 601 years & 907 yrs without the mistress + +* hole due to security breach. +takes us to go sit down through 1st door on right. + +Wine from 37 BD (Before Dome) +mistress died here & Silver cleaned her up (spell accident) +- not inside - nobody met with the mistress in the last 907 yrs +last - Rubyeye 908 years ago - met him 47 times. +- views at Aquaria, requested copy of book but she didn't have it - Rubyeye had it. +- Runes lit since mistress died. +book back, 2 days before death (usually Daily) + +- Tour - +door opposite - flower beds - white roses well pruned +disposed with fire - Different temperature. +insects in the dirt. + +Down the corridor - door on the left +Huge silver statue - Dragon, Sphynx, +with humans etc at the base and a dead eagle +"Victorious but too late it was still the Dunewand" + +human Browning +Elf - Cardonal +Dwarf - Rubyeye +Halfling Enwi + +Dragon - Muttowh +Sphynx - Garadwal + +commemorate: death of hephaestos +exhalted of air + +[boxed] +Valianth +Cardonal diff --git a/data/2-pages/75.txt b/data/2-pages/75.txt new file mode 100644 index 0000000..a591f38 --- /dev/null +++ b/data/2-pages/75.txt @@ -0,0 +1,39 @@ +Page: 75 +Source: data/1-source/IMG_9736.jpg + +Transcription: + +29 yrs BC, Hephaestos formed an army. +Rubodueul called for aid friend of Duncan people +2 years later he returned with mages & defeated Hephaestos. + +lamented not helping Gardolwal in his revenge +when he learned a void (lieutenant) had escaped. +he sought revenge. + +Brass city fell & drove tabaxi out. +was a friend of the mages but they trapped him & became friends with another mage + +- Elven Art gallery. - Marble room. Statues dominate the room. Buff elves (like elementarium) +Pictures pale skin. + +- Aranthium - main architect for great tower +- Elementarium - great scholar - slain by Excellence (entombed?) 400 years. +worshiped darker gods. Died 741 BD +- others are local folk heroes +- Picture of Aranthium in front of the great tower. + +Browning died 44 AD - but Rubyeye & Cardonal talked about him as though he was alive + +Mistress has defensive Automations - teleport in if needed. From the factory through teleport circle. + +open door at end of corridor - Silver not allowed to go through without a person?? + +Put & decay through here + +Mistress played the flute + +- Kitchen - Dark - lit up when we entered. Kitchen was made by Cardonal & Browning + +- Dining Room - Pictures of Enwi a Joy / Browning (looks 50s) / Ruby eye / Human Heurhall / Sphinx +painted 314 years BD diff --git a/data/2-pages/76.txt b/data/2-pages/76.txt new file mode 100644 index 0000000..cef478d --- /dev/null +++ b/data/2-pages/76.txt @@ -0,0 +1,34 @@ +Page: 76 +Source: data/1-source/IMG_9737.jpg + +Transcription: + +Look behind pictures - Dirk looks uneasy. +Garadwal picture has a ring behind it +apparently is dangerous. - Silver tries to get it +golden band, ruby. +looks familiar. Gem is smashed, arcane runes to me - Similar to Eno's ring - seems like hurt it is not quite powerful but it is broken. seems like a sentient ring. + +Eliana opens the door to the music room. + +While Geldrin checks the fire place. Silver looks at Eliana. +(the fire is lit, magically?) +various instruments adorn the music room, A Harp. +There is a hat stand in the music room that looks like the one in Enwi's lab. (No rug!) + +Sending stone to Iceland +Geldrin finds a Stone in the fire, recognises it as a stone of sending. When the rock cools a piece of paper appears underneath it. "It reads I'm coming to get you" +Geldrin shows it to Eliana. Don't recognise the handwriting + +* Silver takes a tube from the harp - Playing Ode to mountain Halls +Piano - sheet music is for the harp on song called Betrayal + +- kitchen door looks like char marks from kitchen to dining room - localised explosion?? +- door from kitchen to other corridor seems to have an explosive device. - direct a blast to the kitchen +- Silver breaks the laboratory door & insists on getting in there - voice "changes" & says we need to get out. +- Dirk visits the toilet. +- Bedroom - looks like somebody left in a rush +marble head on the dressing table. +Silver stares at the rod she stole. uses to attack the door with magic missile +Dirk manages to get the wand from her +Silver wants to get out - been trapped like she trapped her friends. diff --git a/data/2-pages/77.txt b/data/2-pages/77.txt new file mode 100644 index 0000000..387ce4a --- /dev/null +++ b/data/2-pages/77.txt @@ -0,0 +1,41 @@ +Page: 77 +Source: data/1-source/IMG_9738.jpg + +Transcription: + +Door next to the lab was trapped - Store room. +parchment / copper wire / shield crystals etc. + +Crates - bits of Silver (spare parts) + +Silver thought she wanted to be friends but was just a practice vessel. + +Silver blows up the door to the storeroom. +Door to lab is trapped & needs key to open +- No key in her room. + +- Guest room - mirror has elvish written on it - "When you hold it like this you they get me first" +very loose - contains a key in some parchment. +Stone under the mirror. "you'll need something from a gift to Gavin" +hat stand has a cloak on it with a key in it +parchment says - "we made it so you need to do both at the same time" + +Library - No Grimoire. Noxus in the building +project automation construction manual - by Edward Browning +lots of different versions. +Powered by a weak elemental & shield crystals & copper to animate it. key elven form - where you bind your own spirit to it +"instructions for creating sentient jewelery" by Cardonal +written in Celestial. +Sentient items need a soul + +manage to stun Silver & lock her in the dining room. + +open the laboratory. +* gardwal armour piled as thought to remind her of the shame +* practice enchanted items. +* on the desk is a copper astrolabe containing a red gem. + +voice emanated from the crystal "Who are you" "what year is it? its been 907 years. knew it wasn't sure the necklace would survive her friend? Who is?" +- Enwi being protected by Goliaths +Nobody knows the city was there - Browning's doing. +- Silver took over her body from the ring. diff --git a/data/2-pages/78.txt b/data/2-pages/78.txt new file mode 100644 index 0000000..39647bb --- /dev/null +++ b/data/2-pages/78.txt @@ -0,0 +1,33 @@ +Page: 78 +Source: data/1-source/IMG_9739.jpg + +Transcription: + +* Silver's defence mechanisms are extensive +* Silence when told her Gardwel escaped. +* She in all ways holds Barrier / constructs / Silver in check. +* Barrier shock might help to get Silver out of the body +* Plan to trick Silver into opening the door. + She tries one - gets propelled across the room into the shelving. slumps against the wall & lights in the eyes go out. +* try to take her to the barrier - Cardonal says she is still active. Wakes up by portal room. +Dirk manages to throw her into the barrier & destroys the Soul. Cardonal then takes over the construct. + +"Acore Iceland" - The Ancient One was her friend who tried to save her. 13:00 +Enwi's Apprentice seemed to be the end of Garadwal's Sanity. +Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Duncan people. +leader of Duncan People. + +Alliance with the gods for the barrier to entrap the other "gods". +Dragon crashing into grand towers was enough to weaken the prisons enough for Garadwal to escape + +* Can provide codes for other teleport circles +7 prisons +5 labs - Browning inaccessible, last time. +3 grand towers factory / control room / meeting level + +The gate (in the mountains, Earthwise of Coalment falls) +Coppermines @ Arthur +impact site - earthwise of Goldenswell +menagerie @ Riversmeet +goliath city +1 close to each of the pylons diff --git a/data/2-pages/79.txt b/data/2-pages/79.txt new file mode 100644 index 0000000..0cde49e --- /dev/null +++ b/data/2-pages/79.txt @@ -0,0 +1,34 @@ +Page: 79 +Source: data/1-source/IMG_9740.jpg + +Transcription: + +Additional Dwarven city has disappeared. +Ruby eye Connection to both Dwarf city & Goliath city that are now missing? + +Elemental Princes - Pact with the gods who were worried, they would want extra power like the other elementals. +Salinas - salt +limus vita - ooze - friendly +Iceblus - ice - monster cow +Arasarath - swirling humanoid dark cloud. +Merocole - Spider like - torso ball of smoke - thumping demon +Gardwel - Consumed 1 of the 2 void princes +Papa I Meurina - Crab with 3 snake heads - magma +Valententhidle - Extra precautions for her with Galetea (Automation) +female human with ashen skin - but is faded & only thing visible is her eye. + +Gardwal may not know where the other prisons are. +- Contact her with fixed Enwi +14:00 + +head to Garadwal Prison +store room door into a smashed open ruins. +runes scratched / torn near due acid burnt, lots of toys intertwined with copper, coins etc. rotting corpse smell. +Dragon nest - Dark green black egg shells tiny dragon corpse falls out very green skin, hint black +More perodlus colouring than infestus. +Poison acid erosion around the prison circle +Young adult dragon. +Treasure appears to be from Dunengend - copper Coins. +stand out - well chiseled man on one side - funnel on the other - Goliath coins. + +Dragon approaches - very muscular & odd looking - head is repulsive - no horns or ridges / no lips / Attic like in breeding gone wrong. diff --git a/data/2-pages/80.txt b/data/2-pages/80.txt new file mode 100644 index 0000000..553536b --- /dev/null +++ b/data/2-pages/80.txt @@ -0,0 +1,30 @@ +Page: 80 +Source: data/1-source/IMG_9741.jpg + +Transcription: + +Inqueshwash - thinks Dirk tasty. & mother sent him to be eaten. +made it back to + +Void elemental blaming veridican dragonborn for Gardwel's escape +"Dragon" +we originally known as the exiled 100's years ago. + +Perodot princess very well known +! may need to see Provista town Hall for history for other tribes. + +Browning - Put out the word that he died of old age to brought in the magisters & Justiciars to act as his proxy + +Enwi's spell book is locked by one of Cardonal's creations - she changes it so it is attuned to Geldrin now + +Automations - Explorer +- Guarding Valententhidle's prison. +- Overseer of the factory. + +Teleport to Iceland landed 24 miles away +walked for 6 hours before remembering we have a stone & message Iceland to come 21:00 +find us, very old dragon with cataract eyes & artic hares amidst its scales +He was coming to see us - messages didn't come through + +- visions - have a likely outcome but it tends to lessen when she sends the visions. +- he tried to help Dirk's people with Heurhall. diff --git a/data/2-pages/81.txt b/data/2-pages/81.txt new file mode 100644 index 0000000..9e89e4c --- /dev/null +++ b/data/2-pages/81.txt @@ -0,0 +1,37 @@ +Page: 81 +Source: data/1-source/IMG_9742.jpg + +Transcription: + +Needs our help with the prisons. +! Shimmery one - take another dwarf with us & levers + +Ice's nothing destroyed yet but visions that it does. + +! Black Spider thing - we had some treasures with us +Touch & go + +Two head green dragon - Dirk glowing sword his favourite + +Pirate - & Excellence - he saw those + +Browning still in the tower - the bit where Geldrin stood on the tower - thought he could have done with an umbrella. + +Day 25 (Friday) +10th Tan 101 +9 days to Arrynoon +5 days to Autumn +Coalment + +Head down to Ice prison on Ice fangs back +As we pass Snow sorrow it starts to get very stormy. + +- Approach Rimewatch - outpost around the pylon +- head to the town & it is in a much worse state than it was when they left. +White Dragonborn takes us to the Inn. + +20 years ago he briefly woke up. +- Dragons breathing Terror of the Sands out of her prison +"They plot again there pair they plot again" +"And before the black one was cast out they plot again" +"They fooled the red one" diff --git a/data/2-pages/82.txt b/data/2-pages/82.txt new file mode 100644 index 0000000..c7055e3 --- /dev/null +++ b/data/2-pages/82.txt @@ -0,0 +1,33 @@ +Page: 82 +Source: data/1-source/IMG_9743.jpg + +Transcription: + +One stands "The mother of many & the mother they plot" Peridita +The mother? Duncan's mage? + +Dragon full names +- Infestus bane of multitude, slayer of Ruby eye (Black), father of the veridican. +- Peridita The Choking Death, The whispers in the dark, Mother of many (green) +- Calemnis Bereth - Girth, literal green again. wife of death (veridican) + +1st plot to get rid of certain cities +2nd to break out Garadwal. + +* Most of the townsfolk are Dragonborn & Ice dwarves. + +Howling tombs - where the storms start from +Different Justiciar is here - not sure if they know of us +gain some winter clothes - advantage from severe exposure. +Grubins will take us to the Howling tombs @ 7am tomorrow + +Rubyeye - create own readout of the prison status - need humanized effigy of the spirit & runes drawn on it - connect it to the prison & connect it to the runes on the prison. + +Iceland & Arasarath prisons +* Arranged refugee camps for Garadwal's people +* Could use Control Centre in Grand Tower (Accessible) +* wheels from Ruby eye's lab. + +Show Salina's runes +Need to go back to Enwi's lab as he has been tapping the life force from his prison & the shade to the system has been replicated across all prisons & weakened them. +access to Ice prison through Enwi's Basement with the automations diff --git a/data/2-pages/83.txt b/data/2-pages/83.txt new file mode 100644 index 0000000..ce116cb --- /dev/null +++ b/data/2-pages/83.txt @@ -0,0 +1,20 @@ +Page: 83 +Source: data/1-source/IMG_9744.jpg + +Transcription: + +3 automations - shut down button in the control room. + +Day 26 (Saturday) +10th Tan 101 +8 days to Arrynoon +5 days to Autumn +Coalment + +Inwar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. + +Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadwal. Infestus looks cross but stabs a coin into the portal & garadwal goes through. + +Me - Surrounded by baren desert, step back & fall into hole with dragon in (garadwal prison) landing on the dragon who flys out to the edge another abnormal dragon two heads & extra kind of wings & arm. They nuzzle & cackle. the ground opens next to them & then goes vertical & void says "where is he I know you know" + +Geldrin - Plush bedchamber (human) Rich but no style to it. walk out, long corridor with old same pictures of the guild. Step out & in large stone chamber which feels like a different place. 8 statues around the room with runes. walk out & down another corridor & to a teleport circle. turns left 10 times - another room corridor couple of turns to the left. Room with old withered man in bed. Person who Geldrin is seeing this through takes a box from the pillow & replaces it. (does not look like Browning) diff --git a/data/2-pages/84.txt b/data/2-pages/84.txt new file mode 100644 index 0000000..6f24ec1 --- /dev/null +++ b/data/2-pages/84.txt @@ -0,0 +1,41 @@ +Page: 84 +Source: data/1-source/IMG_9745.jpg + +Transcription: + +Dogs waiting for us. +head towards hunting tents on the sled very stormy. + +06:45 + +10 mins away & the dogs seem to veer off - body in +the snow drift - Humein in robes. - few days old +(monk/priest garb) possibly robes of the Norian God. + +Dark grey clouds bursting out from over a hill +Seems to be the prison. Like a geyser through a +crack in the ground, few blown over tents. + +Takes us to a purple crack, looks like some +digging has taken place a snow haunt settled in +the middle over a barrier, reaching more to the snow +than the normal barrier been there for a few years +Tents seem to have been torn by claws. bird talons? + +Satchel contains orbs like those we saw in +seaward - seem empty - Copper with Runes. x 6 + +(Pale Blue Rocks - been here around 3 months +lob an orb at the floor barrier & it goes +through) + +Normal Rocks laid out in a circle x 5 smooth rocks in the middle. +around dwarf size. Sound hollow - Eggs?!? +Bird screech - Ice White Eagle. attacks us +Bird kills Grubins - Atom a fall - no reviving him. +5 Babies... + +Secure sled by/with grubins & dead Robe wearer +by on of the tents. by the prison entrance +very hard to see anything - Entrance seems like +its burst open diff --git a/data/2-pages/85.txt b/data/2-pages/85.txt new file mode 100644 index 0000000..b0d16eb --- /dev/null +++ b/data/2-pages/85.txt @@ -0,0 +1,43 @@ +Page: 85 +Source: data/1-source/IMG_9747.jpg + +Transcription: + +No chance of getting through the door. + +15:00 + +Teleport scroll to Cardenald's place. +Cardenald can fix the prison in person. Envi's +is the one that needs to be fixed first. + +Robed man - pooling of blood & full injury talon +marks. - Dead a few days. +Necklace - holy symbol of Noxia with a lighting bolt +small offset of Noxia - [unclear: psyons] of the hidden Prince. +worship Thunder/storms etc. + +Spheres are containment devices for elementals +speak with dead - Robed guy +Anrasurall - why he was there +going to try to free him - was given the runes +didn't miss - got into the circle & fired +out of the front & ravaged by the bird. +Didn't take elementals with him. +Home is Baytail Accord. + +18:00. + +head to the life prison. +room that was once stone but flesh. pulsating +across the whole room eyes veins & everything +all over the place +High level Carnamancy to craft this fleshy thing. +"The Mother"? created it? +Dispel magic - it turns into 14 fleshy parts of [unclear] +Isabella - humans dwarves elves etc. no bones or +teeth etc. + +Through the doors is a golem made of all +the bones of 14 people. Arms are made of +[crossed-out: showcase] teeth. diff --git a/data/2-pages/86.txt b/data/2-pages/86.txt new file mode 100644 index 0000000..e0a33dc --- /dev/null +++ b/data/2-pages/86.txt @@ -0,0 +1,36 @@ +Page: 86 +Source: data/1-source/IMG_9748.jpg + +Transcription: + +"Sorry Couldn't be here, gone fishing with a friend!" +It says "Hopefully we'll catch some big ones" ! Kill it?! + +Advance to prison room - Mother threatens us. +Believe she is in Baytail accord with Garadwal + +Limnuvela is dying - Energy has been syphoned. +too much. Mother tried to absorb him, but +he was too much for her - he is holding on +to keep the barrier up. +His barrier has a copper pipe in the top where +the mother syphoned [crossed-out] energy. Moved the pipe +to the floor to try to heal. +Pour pouch of White Rose powder on it +& it restores some health +if fully closed prison the elemental is in stasis +remove pylons & it slows down. +head to envi's lab door is shattered & +bits of automaton scattered around the room +& across the whole lab. + +Garadwal was in the Blackscale yesterday. +he's now back in the dome. Baytail Accord +has kicked off in the last hour. + +Blackscale is using our kings as servants. +Boss likes the barrier as it keeps his head in one +place. told Gardwal not to bring down the +barrier. + +(lvl up!) diff --git a/data/2-pages/87.txt b/data/2-pages/87.txt new file mode 100644 index 0000000..bbdd2de --- /dev/null +++ b/data/2-pages/87.txt @@ -0,0 +1,41 @@ +Page: 87 +Source: data/1-source/IMG_9749.jpg + +Transcription: + +Teleport to Baytail accord - leave Cardenald behind. +at the life prison. + +19:00 + +* in a temple half on land & half in the sea +* god on the wall Hammerhead shark man. +glowing parchment inside a glass dome under the +water. + +sickly green flames from buildings in town - +lots of dead townsfolk. Garadwal hovering above + +* unnatural amount of rat poo on the harbour +Mermaid of this city is in trouble + +Contact the void elemental - on his way. +Garadwal tries to find some thing + +* 15 feet square in front of Garadwal is unnaturally empty +of debris + +- monstrosity is attacking the hatchery. +Void elemental appears and gets trapped by a dome in +the space in front of garadwal +Geldrin tries to dispel magic & it seems to do something +but it is still there. +manage to kick the runes away & let the void +elemental out. + +horrible boob covered form appears - The Mother? +Send a message for help to Basaluk +he appears with a tabaxi & his boss +Garadwal teleports out +Void also disappears +The Mother DIES!!! diff --git a/data/2-pages/88.txt b/data/2-pages/88.txt new file mode 100644 index 0000000..5bf56b6 --- /dev/null +++ b/data/2-pages/88.txt @@ -0,0 +1,43 @@ +Page: 88 +Source: data/1-source/IMG_9750.jpg + +Transcription: + +need to check on the Hatchery +Basalisk returns as other important things to sort. +All thanking the Merfolk for saving them, rest of the town +seems ok. + +go check on the mothers corpse -> all fallen apart. +spellbook on her - Geldrin - same cipher as Envi's. +same spells as Envi's. + +get some visitor shells & head over to the Hatchery +dead gilled Ghouls under the water. + +Pact keeper Inara +7 other Pact leaders sitting round the table. +4 we have met. 3 others +Guardfree brings out chairs for us to sit on & join the +Visca - Fairshore +Hanna - Fishbait's edge +Lana - Azureside +Aquena - outside the barrier (princess) + +All point towards glowing parchment "on our hooper +preserve the pact" +we are now known as "Saviours of the Pact" +A Baby girl has been born - first on in 20 years +no name yet - need to consult the records. + +Princess Aquana comes in with the baby +3 younger girls in training to become Pact Leaders + +They have a route outside the barrier. they tend to +leave if they are not Pact leaders + +outside barrier 1 in 100 years inside it was +a few a year until recently. + +Believe there is a curse and the barrier is protecting them +from the curse diff --git a/data/2-pages/89.txt b/data/2-pages/89.txt new file mode 100644 index 0000000..697af13 --- /dev/null +++ b/data/2-pages/89.txt @@ -0,0 +1,42 @@ +Page: 89 +Source: data/1-source/IMG_9751.jpg + +Transcription: + +Tell them Cardenald is back. + +Azureside records state Goliaths wiped out by the +Green Dragons. + +Travelers don't appear to have returned from the +deserts. Prison & plagues in Azureside & Hearthmore. +Lots of green dragon type creatures. +Perodita's new mate Kortesh Gravesings (Also her son!) +He Attails the boons - wears a metal helmet lined +with finger bones, metal hooks with trophies from his +kills attached to them +Generally called "The Twisted" by Azureside. +At least 5 +2 heads +weaping pores all +alien head & no lips + +called for help from Grand Towers - But no help received +had a Justicar recently heading to Hearthmoor to check the +plague? + +Last contact Goliath's approx 900 years ago + +Lady Aquena will stay for a while & leave her offspring + +Hanna - fishbait edge. +Nothing much to report - getting a little colder & a +few storms. +Dine springs - lost a few loggers + +Visca - Fairshore +Baron attacking her people - issues with tracking, found some +nefarious shipments from Seaward. threatened with +gnoll attacks stopped - raiding group cleared out the +gnolls - "Pig Slayers liberated" armed with troncraft +fuse swords - Invar Brought diff --git a/data/2-pages/90.txt b/data/2-pages/90.txt new file mode 100644 index 0000000..77511c5 --- /dev/null +++ b/data/2-pages/90.txt @@ -0,0 +1,41 @@ +Page: 90 +Source: data/1-source/IMG_9752.jpg + +Transcription: + +Believe that was Brother Fracture. & the people were +rescued. + +Alana fairshes +Breakin in at the menagerie - Lots stolen, Magisters put +out fines for black market animals. Geldrin thinks +of the farmer in Everchard. + +Merfolk have a bird "Terry" messages +1. unprecedented amount of instability forces out enforcing +city states no cause for concern +2. Noble council meeting all required on next Trimoon +3. Dunesend state - uncompliant - Not sent troops to fight giants +4 Seaward barriers fixed by the gushiers - 2 seen +an unknown one called Gendrin +Geldrin furious! +5 Dukes on noble Council + +Freeport State - Duchess Lauleriere +Dunesend State - Duke Humbersinthesand +Hearthwall State - Duchess Hearthwall. +Goldenswell State - Duke Norman Goldenswell +Snowsorrow State - Duke Torrain Freefellow + +Dunesend? Azureside on the edge of the state. + +- Terry gets message from Erroll +Valenth here - two way communication - something +going on place lit up like a Christmas tree +Barrier flickering - Energy surge started approx +1/2 hour ago +The mother repurposed Envi's clone in Envi's lab. +- Valenth going to investigate it. - not going now. +hears a noise - sees Joy - she heads to +the teleport circle Valenth goes to check where +Not gone to a specific circle. diff --git a/data/2-pages/91.txt b/data/2-pages/91.txt new file mode 100644 index 0000000..657a20c --- /dev/null +++ b/data/2-pages/91.txt @@ -0,0 +1,46 @@ +Page: 91 +Source: data/1-source/IMG_9754.jpg + +Transcription: + +what The Mother has done seems impossible as +it should be a clone of yourself. Don't think it's +possible to set another clone outside of the 120 days. +Don't think "The Mother" knew where Valenth was there. + +No records of the mages laboratories. - All thought to live in +Grand Towers + +Errol & Terry linked now - Not connecting the others + +request for our items in Freeport to be looked after +Tiana + +Dreams - over many years they could be saved. +many recently show who we are. + +Plan to go to Salinas Statue to fix that +Stay in tavern - Bounty of the Sea. + +Day 27 (Sunday) +11th Tan +7 days to Trimoon +5 days to auction +Gull level down + +4-5 hours to calculate shards trajectory. +Cardenald comes to Baytail Accord. +Helps Geldrin calculate the trajectory - +will probably still hit Grand Towers if nothing happens. +If we stop another it won't be on course +ship 2. +Garadwal possibly setting up another plan. +- Cardenald to go to Salinas statue with Merfolk +& destroy it. + +Teleport to statue close to Dunesend +Giant statue of Serra. +2 guards at the statue. sphinx tabaxi ebony skin human. +reptilian hide skin spears + +12:00 diff --git a/data/2-pages/92.txt b/data/2-pages/92.txt new file mode 100644 index 0000000..6c4da47 --- /dev/null +++ b/data/2-pages/92.txt @@ -0,0 +1,50 @@ +Page: 92 +Source: data/1-source/IMG_9755.jpg + +Transcription: + +Head down to Dunesmead. Shines Blue/Orange very arabic style. + +* townsfolk have many piercings - ear tunnel seems very natural. +* guard approaches us - thinks we may require refuge + Gelinn - may not write new spells - laws in place 1,000 years. + refugees are housed in the water gardens + Rules + - No alcohol + - no spell writing + * no worship of liar or darkness + +Many deaths within the city - Vulturemen - Arahuoa + Moving fort in the desert - Mother/Father not hurt + +Meet a friend of Dirk - heal his shoulder. +Fire Demons attacked at night they attacked back + snake lizard people +& when they retreated back the Demons stopped attacking. +Led by a firey demon with 2 arms. + some were attacked by green dragon. +Good place to smoke down the road. - Deserts Haze. + +The Father holds open Courts - usually as it cools off +(Father / Mother / Hearth Master / Huntsmistress) + +Little girl - with afro approaches - says her mum told her to be +careful of dragons - message to scare her off. + +14:00 + +Court is around 4pm - will get an appointment if +they need it + - agents of the excellence (Infestus) + +Guards drag a Vulture bird man into the courtyard +- apparently one of the assassins - lurking in the deserts +may have killed the Chancellor. + +Go to the bathhouse + +16:00 + +Back to the court. +Father Haithes [uncertain] laden lots of copper earrings. copper marygal chain (God of Altarrb) +Mother - Human Dunar Lady - Egraine Brook (goddess of life fertility Harvest) diff --git a/data/2-pages/93.txt b/data/2-pages/93.txt new file mode 100644 index 0000000..b6ee846 --- /dev/null +++ b/data/2-pages/93.txt @@ -0,0 +1,43 @@ +Page: 93 +Source: data/1-source/IMG_9756.jpg + +Transcription: + +Father - captured one of the assassins - was the murderer of +the chancellor. + +go through to the atrium / area & join the queue + +Hearth master - flames for hair. + +Hunts mistress - red braided into her hair & dogs dyed red. + +"The Slayers" + +- Vulture birds - infiltrating but don't know how. + - recently became sloppy + (Ennui the betrayer) + +- The Mother has healing powers as did "The Mother" + Ennui stole it - the reason why no spells can be written + Does not have the ability to alter memories. + +- Someone in the court looking for ancestral grounds of + the goliaths - lots of people asking about them over + the last day + +- Hearth master brings trade logs showing Trade stalls + confirming our map. + +- 3 Vulture men seem to be leaving their feathers behind? + Assassins attacked in the last week + Want to speak to him (- get broken claw to + see him. + he's not done anything - seems to be telling the + truth. - None of his people have gone missing (lie) + Hunters have gone missing. + Dirk unchains him. + Feather colouration may show who is doing it. + +Blowpipe dart appears in his neck - guard in the room +starts running away - chase him diff --git a/data/2-pages/94.txt b/data/2-pages/94.txt new file mode 100644 index 0000000..8d0a2c8 --- /dev/null +++ b/data/2-pages/94.txt @@ -0,0 +1,43 @@ +Page: 94 +Source: data/1-source/IMG_9757.jpg + +Transcription: + +Throw ball bearings at him - miss but he +seems to stumble even though they fell behind him. +Geldrin Wall of Fire & the guard turns into +a weird Lion woman thing - kill her + caught her both legs. +Hunts mistress comes back with the feather +& says trouble really does follow us around. + +pick up the blow gun - receive the feathers - similar to the +arakobra feathers. + +Bird recognises - they're after his master - because he's done something +good. Keeps talking about The Darkness, Master is the light +One looks like Stilix - missing +gave Eroll a message to the master. + +two guards - one is letting the other one talk & seems off +Agugu - question him & he feels like metal under +the flesh but seems like an automaton. +cut his arm & he has delayed reaction like it +didn't actually hurt. +tries to leg it & we grapple him. +unit compromised - core overload - explodes. +consumes the body completely - locate fragments of +a core cage. + +He has a wife... about 5 years. +get taken to a room. + +(Bird man's boss is in the Elven Ruins & is a +6 legged cat man) - only Elven Ruins we know of +is grand towers or Valenth's Lab (not seen outside of +Valenth's Lab & Eroll flies off firewise from Dunesmead) + +Search around the room - notice the soil is different +so pull it out & a small mechanical spider +comes out of the pot - Automaton. possibly an +Eroll type device. diff --git a/data/2-pages/95.txt b/data/2-pages/95.txt new file mode 100644 index 0000000..fec518b --- /dev/null +++ b/data/2-pages/95.txt @@ -0,0 +1,41 @@ +Page: 95 +Source: data/1-source/IMG_9758.jpg + +Transcription: + +Eroll returns - mission success message delivered. + +- Message from Cardenald - Salt sorted. Seaward should be + fixed but seems like there is something else effecting + the barrier - had to use magics & stuff to get there + quicker. - Eroll has forgotten he gave us the message. + +Dirk tells the spider we could do with a chat. +Dunar Guard knocks on the door - another automaton. +- doesn't know why he is here - whole place is + riddled with automatons - it is a prisoner - not part + of the barrier - is under grand towers - Not one of + the three. - Control room - is completely empty of people. + +The guilt - one of its names. +keeps calling me sweetie. +knows who is behind the message from Cardenald. +wants to make a deal - has been freeing to +communicate again. +Can Reset the control room. - will do one as a +gesture of good faith. +Lays a golden ring on the bed - abyssal writing on +it - "He pride for a head taken, the shame +for a friend betrayed yet the guilt unburdened" + +There should be 5 of us after all but as +there are 4 we have gone under the radar. + +Alistair in Everchard +was the same with the wizards as one disappeared +upon barrier creation +will fix a prison to show us it will help us. +Prisoners they hardly existed when it was imprisoned. + +Pick Valenthide to fix first - geldrin sees him +doing it - Solinavi prison still pulsing. diff --git a/data/2-pages/96.txt b/data/2-pages/96.txt new file mode 100644 index 0000000..8dd5047 --- /dev/null +++ b/data/2-pages/96.txt @@ -0,0 +1,50 @@ +Page: 96 +Source: data/1-source/IMG_9759.jpg + +Transcription: + +There are a lot of the spiders around. + +- Think imprisoned in grand towers maybe light/Dark + +- Huntsmistress - located lots of automatons. blow + up when confronted. + +- No other Lion beast things have been found. + +- Contracted Grand Huntsmen in grand towers. + + - Goliaths - linked to any of this? + +Haemia - Lion lady beast - creatures created +by a dark power. + +Darkness & Light Excellence exist? + +Haemia's trying to make space? clear out. + +- let all the guards go home + 2 guards on palace entrance. + others on Mother & Father + - all on high alert + +17:50 + +- go walking & tell her about the bugs & more than one + thing going on. +- Geldrin can use compass to detect the automatons. + Huntsmistress is not one of them. + 2 guards on the gate. nope. + check on the priests in the temple. + - They're wearing armour etc, boiling hot. + 3 priests & Duners - none give a reading +* Huntsman Indanyu 2nd in command +go to another room to talk. + Broken bow string +in the room. +tell Indanyu about things - he's not heard anything +but the people all talking about the murders - has his +attacked (sisters = potential new mothers) + +[side note box] +Mother - Igraine life (pleasure & harvest) +Father - Altarrb diff --git a/data/2-pages/97.txt b/data/2-pages/97.txt new file mode 100644 index 0000000..2992cc4 --- /dev/null +++ b/data/2-pages/97.txt @@ -0,0 +1,37 @@ +Page: 97 +Source: data/1-source/IMG_9760.jpg + +Transcription: + +A week ago - seem turned over but nothing taken +3 done so far - approx 10 shops in total. + +fire creatures seem to have made an encampment +close to the barrier - Salamander type men - +Approx where Geldrin's calculations were - look like + +- Lamasu - 16 legged cat Beast - allegedly a creature + of good. + +Dirk sends message to his dad via Eroll + +Don't know if we can get an army to help but +can send a message to the scouts near the camp +back by Morning. + +Sister obligators - One of the shops attacked for lovely +modifications +3 people seem to be protesting outside +the shop - shouting you're the next betrayer. +Dragon born - Red skin tries to move them along. +- Apparently she has another shop in Brookville Springs + and sharing their secrets. +- Looks like a tattoo parlour - Woman - tribal look to her. +Dirk wants a tattoo. +she has opened a shop. +People are worried they will lose the knowledge. +- She's the only one who has so far. +- what they do is on the edge of what they should do. +- helps them to earn some money. +- not sure her skills could be written down. +Geldrin says he's seen the book. diff --git a/data/2-pages/98.txt b/data/2-pages/98.txt new file mode 100644 index 0000000..e2d72c8 --- /dev/null +++ b/data/2-pages/98.txt @@ -0,0 +1,45 @@ +Page: 98 +Source: data/1-source/IMG_9761.jpg + +Transcription: + +Other break ins seemed like they were searching for +something - seems every other night - possibly one going to +happen tonight. + +- Geldrin to ward the shop when it closes in 2 1/2 hrs. +Prob should start at Sister Proulsothight [uncertain] as she's the +one who has always been on the edge of what they +should do. + +Head over to her shop - No protestors or guard. +- asks if we want refreshments - she takes us into + a backroom with mini bunks & lots of different drinks. +she asks if I'm here for the box? +Say yes & she gives a box the same +as the one from Gelissa but not the same. +- This is what the break ins were about. +- She doesn't believe me & tells us to + leave - Message the Basilisk - asking if she + should have it or if we should retrieve it? + +Eroll returns - Dirk's sister - Dad not available please +come to Salvation we need help. + +Basilisk return message - how do you find these +things leave it alone - you are in over your head. + +veridian +Massive dragonborn approaches the shop with two +sickly Goliaths - enters the shop bangs on the + +Tell Basilisk this is when we can reset the stone. + +Figure on one of the Dome roofs. +Try to stealth. +It waits until the streets are clear & approaches +him into the shop. +Hear words from inside the building. +Invar channel & walks toward the shop. + +[side note] Wizards on the payroll diff --git a/data/2-pages/99.txt b/data/2-pages/99.txt new file mode 100644 index 0000000..d679d90 --- /dev/null +++ b/data/2-pages/99.txt @@ -0,0 +1,45 @@ +Page: 99 +Source: data/1-source/IMG_9762.jpg + +Transcription: + +# Invar resists & voice invites us in. + +Uncle Hortekh - tell his wife we are intervening. + +threatens Dirk & the Goliaths - will get him one day! + +Back to Sisters. + +heat box was intercepted - that was us! +Basilisk was looking for the box & + +22:00 + +Meet a human - Morgana +with two birds - Sent by +The Chorus - has the pigeon who helped us +in Everchard. + +- Home forest (Everchard) strange things happening + in the forest - large animals etc. Chorus sent to + us to be 5 of us. + so there would be + +Morgana sees Bright green Dragonborn with sickly Goliaths +near a poisoned part of the forest. she healed it. + +- go to Stricker's camp - he's helping out +now. Morgana gives goodberries to heal some of the +refugees. + +- Stricker Senior went to Salvation to work out +plans to get back the people who attacked them. + +- Stricker doesn't know of a city for Goliaths. but +has seen some Green Dragons. + +Stricker is going to stay to look after the +refugees but wants to join if we go to war. + +- head over to an Inn diff --git a/data/3-days/day-23.md b/data/3-days/day-23.md new file mode 100644 index 0000000..fdd77f8 --- /dev/null +++ b/data/3-days/day-23.md @@ -0,0 +1,437 @@ +--- +day: day-23 +date: 7th Jan 1012 +source_pages: + - 70 + - 71 + - 72 + - 73 + - 74 + - 75 + - 76 + - 77 + - 78 + - 79 + - 80 + - 81 +source_ranges: + - data/2-pages/70.txt:26-48 + - data/2-pages/71.txt + - data/2-pages/72.txt + - data/2-pages/73.txt + - data/2-pages/74.txt + - data/2-pages/75.txt + - data/2-pages/76.txt + - data/2-pages/77.txt + - data/2-pages/78.txt + - data/2-pages/79.txt + - data/2-pages/80.txt + - data/2-pages/81.txt:6-19 +complete: true +notes: Day 24 was not found as a confirmed boundary in the source transcriptions; this day runs until the next confirmed day start, Day 25, on page 81 line 20. +--- + +# Raw Notes + +## Page 70 + +Day 23 (Wednesday) +7th Jan 1012 +11 days to tri-moon +7 days to auction + +go to excellence lair with Merfolk - Pack leader Alana + +* Water ebbs & flows like a tide in the underwater +cave. + +* 20ft long crystalline sculpture of a dragon - base has +runes glowing + +* 3 cages & barrels +1 cage contains a merfolk - but looks different - green not blue +Alana seems to revive him & takes him back to the ship + +* chests seem to be laced so waterproof - contents may +Not be openable under water +open one & contains white powder which I inhale. +Basilisk attack - Salamanders - & Arabic writing. +white dragon circling around the dome +Rabbits - whole room turns into a black void. + +## Page 71 + +two blue eyes in the darkness. coming towards +me & really cold & back in the room + +other cages - in the middle of the cage they see snail +with a gleam of metal which is a jewelers chain +attaching it to the cage. - Guardseen says the +snail is a bad omen - its been drugged +back to ship. + +Merfolk - abducted from beyond the barrier +him his friend & wife. woke up one day +& they were both gone. Wife is nobility +in their pact (Sneul?) + +Hunt master dispels magic on the snail & +a mermaid appears. + +Empire of their people outside of the barrier +Captured white on diplomatic mission to the city +of Onyx, doesn't trust them +war between them & the Salt elementals. + +Princess Aquunea. + +- City of the black Scales has a "door" into +payment to access is a grand towers penny. + +Check out the barrels etc. +- sickly sweet medicinal - Potion of magical energy +regain 1 slot +- silk & parchment interleaved - Runes +- 2 x white Rose powder. Taina gives us 1000g +- metallic Censer (incense holding burning device) +silver? Religious? Water god? Censer of Noxia +ability to enrage & control water elementals. +It's active. + +* Send message to Basilisk + +## Page 72 + +Arrive back to Freeport - seems very Cold. +Much colder heading back +down to Freeport. ?Rhimechalk issue? + +Snowing over the sea. everything very dark & snowy. +guy shouting the End is Nigh - Moon is crashing down +into the city. Ask him which city. & he then isn't bothered +he dreamt it. + +22:00 + +lots of people having dreams. +Gnolls attacking a village requested backup from +Everchard & Fairshaws. +* underwater - mermaids - big cat with metal +wings attacked it. + +Happened a few nights ago. - Same time as ours - +head to the Castle to see the Baroness. +necklace is removed from the Sargent & he just +walks off. + +* Mermaids - Having a meeting in 3 days at +Baytail Accord. to discuss what happened. +we can go. + +The Dreams seem to contradict each other +possibly from the Ancient One. - So could happen. +Huntmaster - going to Grand towers to speak +* Justiciar in the city. ?Looking for us. +* Baroness gets us into the Drunken Duck - Secret in +Air wise from Jewelry District. +written on our +padlock on the +cart. + +Cart still ok in the castle. + +Baroness Master - Valenth Caerdunel Necklace. +Sister is a ring + +go to Drunken Duck +all the walls are covered in pillows & ?Soundproofing? + +Red Dragonborn +2x Tabaxi +Automaton } clientele +2x Halfling & gnome + +## Page 73 + +gave me +(Arxion) Schnupps from the Brass city. +Barman says only the best for the "Little Finger" & +he's intrigued by who the 3 best members of the +Underbelly went on on mission + +- Tabaxi Whiskers laden with 'Dew' +Traders 'keeps' from Art to food + +faint noise through the floorboards, raised voice? +Automaton keeps talking about a factory +wants to know where the labs are. tell him +all by the barrier. cuts down his search radius... + +- get a private room to discuss matters. +- send message via the underbelly to advise we +won't be going to Baytail Accord. +- Will go to desert laboratory. + +## Page 74 + +coil of rope with a burnt end on the rug. +- crumbles when touched. +No automations. + +place is oddly clean. hole in the roof seems to have been blown up but has been cleaned up. +- blown from outside in. + +go through firewise door - female automation very different to the others (Silver) +Mistress not her & won't be coming back. +been here 601 years & 907 yrs without the mistress + +* hole due to security breach. +takes us to go sit down through 1st door on right. + +Wine from 37 BD (Before Dome) +mistress died here & Silver cleaned her up (spell accident) +- not inside - nobody met with the mistress in the last 907 yrs +last - Rubyeye 908 years ago - met him 47 times. +- views at Aquaria, requested copy of book but she didn't have it - Rubyeye had it. +- Runes lit since mistress died. +book back, 2 days before death (usually Daily) + +- Tour - +door opposite - flower beds - white roses well pruned +disposed with fire - Different temperature. +insects in the dirt. + +Down the corridor - door on the left +Huge silver statue - Dragon, Sphynx, +with humans etc at the base and a dead eagle +"Victorious but too late it was still the Dunewand" + +human Browning +Elf - Cardonal +Dwarf - Rubyeye +Halfling Enwi + +Dragon - Muttowh +Sphynx - Garadwal + +commemorate: death of hephaestos +exhalted of air + +[boxed] +Valianth +Cardonal + +## Page 75 + +29 yrs BC, Hephaestos formed an army. +Rubodueul called for aid friend of Duncan people +2 years later he returned with mages & defeated Hephaestos. + +lamented not helping Gardolwal in his revenge +when he learned a void (lieutenant) had escaped. +he sought revenge. + +Brass city fell & drove tabaxi out. +was a friend of the mages but they trapped him & became friends with another mage + +- Elven Art gallery. - Marble room. Statues dominate the room. Buff elves (like elementarium) +Pictures pale skin. + +- Aranthium - main architect for great tower +- Elementarium - great scholar - slain by Excellence (entombed?) 400 years. +worshiped darker gods. Died 741 BD +- others are local folk heroes +- Picture of Aranthium in front of the great tower. + +Browning died 44 AD - but Rubyeye & Cardonal talked about him as though he was alive + +Mistress has defensive Automations - teleport in if needed. From the factory through teleport circle. + +open door at end of corridor - Silver not allowed to go through without a person?? + +Put & decay through here + +Mistress played the flute + +- Kitchen - Dark - lit up when we entered. Kitchen was made by Cardonal & Browning + +- Dining Room - Pictures of Enwi a Joy / Browning (looks 50s) / Ruby eye / Human Heurhall / Sphinx +painted 314 years BD + +## Page 76 + +Look behind pictures - Dirk looks uneasy. +Garadwal picture has a ring behind it +apparently is dangerous. - Silver tries to get it +golden band, ruby. +looks familiar. Gem is smashed, arcane runes to me - Similar to Eno's ring - seems like hurt it is not quite powerful but it is broken. seems like a sentient ring. + +Eliana opens the door to the music room. + +While Geldrin checks the fire place. Silver looks at Eliana. +(the fire is lit, magically?) +various instruments adorn the music room, A Harp. +There is a hat stand in the music room that looks like the one in Enwi's lab. (No rug!) + +Sending stone to Iceland +Geldrin finds a Stone in the fire, recognises it as a stone of sending. When the rock cools a piece of paper appears underneath it. "It reads I'm coming to get you" +Geldrin shows it to Eliana. Don't recognise the handwriting + +* Silver takes a tube from the harp - Playing Ode to mountain Halls +Piano - sheet music is for the harp on song called Betrayal + +- kitchen door looks like char marks from kitchen to dining room - localised explosion?? +- door from kitchen to other corridor seems to have an explosive device. - direct a blast to the kitchen +- Silver breaks the laboratory door & insists on getting in there - voice "changes" & says we need to get out. +- Dirk visits the toilet. +- Bedroom - looks like somebody left in a rush +marble head on the dressing table. +Silver stares at the rod she stole. uses to attack the door with magic missile +Dirk manages to get the wand from her +Silver wants to get out - been trapped like she trapped her friends. + +## Page 77 + +Door next to the lab was trapped - Store room. +parchment / copper wire / shield crystals etc. + +Crates - bits of Silver (spare parts) + +Silver thought she wanted to be friends but was just a practice vessel. + +Silver blows up the door to the storeroom. +Door to lab is trapped & needs key to open +- No key in her room. + +- Guest room - mirror has elvish written on it - "When you hold it like this you they get me first" +very loose - contains a key in some parchment. +Stone under the mirror. "you'll need something from a gift to Gavin" +hat stand has a cloak on it with a key in it +parchment says - "we made it so you need to do both at the same time" + +Library - No Grimoire. Noxus in the building +project automation construction manual - by Edward Browning +lots of different versions. +Powered by a weak elemental & shield crystals & copper to animate it. key elven form - where you bind your own spirit to it +"instructions for creating sentient jewelery" by Cardonal +written in Celestial. +Sentient items need a soul + +manage to stun Silver & lock her in the dining room. + +open the laboratory. +* gardwal armour piled as thought to remind her of the shame +* practice enchanted items. +* on the desk is a copper astrolabe containing a red gem. + +voice emanated from the crystal "Who are you" "what year is it? its been 907 years. knew it wasn't sure the necklace would survive her friend? Who is?" +- Enwi being protected by Goliaths +Nobody knows the city was there - Browning's doing. +- Silver took over her body from the ring. + +## Page 78 + +* Silver's defence mechanisms are extensive +* Silence when told her Gardwel escaped. +* She in all ways holds Barrier / constructs / Silver in check. +* Barrier shock might help to get Silver out of the body +* Plan to trick Silver into opening the door. + She tries one - gets propelled across the room into the shelving. slumps against the wall & lights in the eyes go out. +* try to take her to the barrier - Cardonal says she is still active. Wakes up by portal room. +Dirk manages to throw her into the barrier & destroys the Soul. Cardonal then takes over the construct. + +"Acore Iceland" - The Ancient One was her friend who tried to save her. 13:00 +Enwi's Apprentice seemed to be the end of Garadwal's Sanity. +Gardwal locked up as he consumed the void's lieutenant, slaughtering the rest of the Duncan people. +leader of Duncan People. + +Alliance with the gods for the barrier to entrap the other "gods". +Dragon crashing into grand towers was enough to weaken the prisons enough for Garadwal to escape + +* Can provide codes for other teleport circles +7 prisons +5 labs - Browning inaccessible, last time. +3 grand towers factory / control room / meeting level + +The gate (in the mountains, Earthwise of Coalment falls) +Coppermines @ Arthur +impact site - earthwise of Goldenswell +menagerie @ Riversmeet +goliath city +1 close to each of the pylons + +## Page 79 + +Additional Dwarven city has disappeared. +Ruby eye Connection to both Dwarf city & Goliath city that are now missing? + +Elemental Princes - Pact with the gods who were worried, they would want extra power like the other elementals. +Salinas - salt +limus vita - ooze - friendly +Iceblus - ice - monster cow +Arasarath - swirling humanoid dark cloud. +Merocole - Spider like - torso ball of smoke - thumping demon +Gardwel - Consumed 1 of the 2 void princes +Papa I Meurina - Crab with 3 snake heads - magma +Valententhidle - Extra precautions for her with Galetea (Automation) +female human with ashen skin - but is faded & only thing visible is her eye. + +Gardwal may not know where the other prisons are. +- Contact her with fixed Enwi +14:00 + +head to Garadwal Prison +store room door into a smashed open ruins. +runes scratched / torn near due acid burnt, lots of toys intertwined with copper, coins etc. rotting corpse smell. +Dragon nest - Dark green black egg shells tiny dragon corpse falls out very green skin, hint black +More perodlus colouring than infestus. +Poison acid erosion around the prison circle +Young adult dragon. +Treasure appears to be from Dunengend - copper Coins. +stand out - well chiseled man on one side - funnel on the other - Goliath coins. + +Dragon approaches - very muscular & odd looking - head is repulsive - no horns or ridges / no lips / Attic like in breeding gone wrong. + +## Page 80 + +Inqueshwash - thinks Dirk tasty. & mother sent him to be eaten. +made it back to + +Void elemental blaming veridican dragonborn for Gardwel's escape +"Dragon" +we originally known as the exiled 100's years ago. + +Perodot princess very well known +! may need to see Provista town Hall for history for other tribes. + +Browning - Put out the word that he died of old age to brought in the magisters & Justiciars to act as his proxy + +Enwi's spell book is locked by one of Cardonal's creations - she changes it so it is attuned to Geldrin now + +Automations - Explorer +- Guarding Valententhidle's prison. +- Overseer of the factory. + +Teleport to Iceland landed 24 miles away +walked for 6 hours before remembering we have a stone & message Iceland to come 21:00 +find us, very old dragon with cataract eyes & artic hares amidst its scales +He was coming to see us - messages didn't come through + +- visions - have a likely outcome but it tends to lessen when she sends the visions. +- he tried to help Dirk's people with Heurhall. + +## Page 81 + +Needs our help with the prisons. +! Shimmery one - take another dwarf with us & levers + +Ice's nothing destroyed yet but visions that it does. + +! Black Spider thing - we had some treasures with us +Touch & go + +Two head green dragon - Dirk glowing sword his favourite + +Pirate - & Excellence - he saw those + +Browning still in the tower - the bit where Geldrin stood on the tower - thought he could have done with an umbrella. diff --git a/data/3-days/day-25.md b/data/3-days/day-25.md new file mode 100644 index 0000000..b8d6b15 --- /dev/null +++ b/data/3-days/day-25.md @@ -0,0 +1,71 @@ +--- +day: day-25 +date: 10th Tan 101 +source_pages: + - 81 + - 82 + - 83 +source_ranges: + - data/2-pages/81.txt:20-37 + - data/2-pages/82.txt + - data/2-pages/83.txt:6-7 +complete: true +--- + +# Raw Notes + +## Page 81 + +Day 25 (Friday) +10th Tan 101 +9 days to Arrynoon +5 days to Autumn +Coalment + +Head down to Ice prison on Ice fangs back +As we pass Snow sorrow it starts to get very stormy. + +- Approach Rimewatch - outpost around the pylon +- head to the town & it is in a much worse state than it was when they left. +White Dragonborn takes us to the Inn. + +20 years ago he briefly woke up. +- Dragons breathing Terror of the Sands out of her prison +"They plot again there pair they plot again" +"And before the black one was cast out they plot again" +"They fooled the red one" + +## Page 82 + +One stands "The mother of many & the mother they plot" Peridita +The mother? Duncan's mage? + +Dragon full names +- Infestus bane of multitude, slayer of Ruby eye (Black), father of the veridican. +- Peridita The Choking Death, The whispers in the dark, Mother of many (green) +- Calemnis Bereth - Girth, literal green again. wife of death (veridican) + +1st plot to get rid of certain cities +2nd to break out Garadwal. + +* Most of the townsfolk are Dragonborn & Ice dwarves. + +Howling tombs - where the storms start from +Different Justiciar is here - not sure if they know of us +gain some winter clothes - advantage from severe exposure. +Grubins will take us to the Howling tombs @ 7am tomorrow + +Rubyeye - create own readout of the prison status - need humanized effigy of the spirit & runes drawn on it - connect it to the prison & connect it to the runes on the prison. + +Iceland & Arasarath prisons +* Arranged refugee camps for Garadwal's people +* Could use Control Centre in Grand Tower (Accessible) +* wheels from Ruby eye's lab. + +Show Salina's runes +Need to go back to Enwi's lab as he has been tapping the life force from his prison & the shade to the system has been replicated across all prisons & weakened them. +access to Ice prison through Enwi's Basement with the automations + +## Page 83 + +3 automations - shut down button in the control room. diff --git a/data/3-days/day-26.md b/data/3-days/day-26.md new file mode 100644 index 0000000..2481506 --- /dev/null +++ b/data/3-days/day-26.md @@ -0,0 +1,331 @@ +--- +day: day-26 +date: 10th Tan 101 +source_pages: + - 83 + - 84 + - 85 + - 86 + - 87 + - 88 + - 89 + - 90 + - 91 +source_ranges: + - data/2-pages/83.txt:8-20 + - data/2-pages/84.txt + - data/2-pages/85.txt + - data/2-pages/86.txt + - data/2-pages/87.txt + - data/2-pages/88.txt + - data/2-pages/89.txt + - data/2-pages/90.txt + - data/2-pages/91.txt:6-24 +complete: true +--- + +# Raw Notes + +## Page 83 + +Day 26 (Saturday) +10th Tan 101 +8 days to Arrynoon +5 days to Autumn +Coalment + +Inwar Dream - meeting hall - walk through, filled with red beard dwarves. Arrive at large platinum chair. Sat on it is a concerned dwarf smaller [unclear] person telling him something, they stride out to an Ironforge type building. Magma held back by a dome & a dire crab with multiheads seems to be trying to get through & the magma coming through the dome. King chanting & dome closes up. + +Dirk - city - obsidian - Black Dragonborn striding around seem to own the city. Animated. Town Hall style building. Two black dragon born next to an archway they have mosquitoes on the shield. Infestus beyond the archway talking to Garadwal. Infestus looks cross but stabs a coin into the portal & garadwal goes through. + +Me - Surrounded by baren desert, step back & fall into hole with dragon in (garadwal prison) landing on the dragon who flys out to the edge another abnormal dragon two heads & extra kind of wings & arm. They nuzzle & cackle. the ground opens next to them & then goes vertical & void says "where is he I know you know" + +Geldrin - Plush bedchamber (human) Rich but no style to it. walk out, long corridor with old same pictures of the guild. Step out & in large stone chamber which feels like a different place. 8 statues around the room with runes. walk out & down another corridor & to a teleport circle. turns left 10 times - another room corridor couple of turns to the left. Room with old withered man in bed. Person who Geldrin is seeing this through takes a box from the pillow & replaces it. (does not look like Browning) + +## Page 84 + +Dogs waiting for us. +head towards hunting tents on the sled very stormy. + +06:45 + +10 mins away & the dogs seem to veer off - body in +the snow drift - Humein in robes. - few days old +(monk/priest garb) possibly robes of the Norian God. + +Dark grey clouds bursting out from over a hill +Seems to be the prison. Like a geyser through a +crack in the ground, few blown over tents. + +Takes us to a purple crack, looks like some +digging has taken place a snow haunt settled in +the middle over a barrier, reaching more to the snow +than the normal barrier been there for a few years +Tents seem to have been torn by claws. bird talons? + +Satchel contains orbs like those we saw in +seaward - seem empty - Copper with Runes. x 6 + +(Pale Blue Rocks - been here around 3 months +lob an orb at the floor barrier & it goes +through) + +Normal Rocks laid out in a circle x 5 smooth rocks in the middle. +around dwarf size. Sound hollow - Eggs?!? +Bird screech - Ice White Eagle. attacks us +Bird kills Grubins - Atom a fall - no reviving him. +5 Babies... + +Secure sled by/with grubins & dead Robe wearer +by on of the tents. by the prison entrance +very hard to see anything - Entrance seems like +its burst open + +## Page 85 + +No chance of getting through the door. + +15:00 + +Teleport scroll to Cardenald's place. +Cardenald can fix the prison in person. Envi's +is the one that needs to be fixed first. + +Robed man - pooling of blood & full injury talon +marks. - Dead a few days. +Necklace - holy symbol of Noxia with a lighting bolt +small offset of Noxia - [unclear: psyons] of the hidden Prince. +worship Thunder/storms etc. + +Spheres are containment devices for elementals +speak with dead - Robed guy +Anrasurall - why he was there +going to try to free him - was given the runes +didn't miss - got into the circle & fired +out of the front & ravaged by the bird. +Didn't take elementals with him. +Home is Baytail Accord. + +18:00. + +head to the life prison. +room that was once stone but flesh. pulsating +across the whole room eyes veins & everything +all over the place +High level Carnamancy to craft this fleshy thing. +"The Mother"? created it? +Dispel magic - it turns into 14 fleshy parts of [unclear] +Isabella - humans dwarves elves etc. no bones or +teeth etc. + +Through the doors is a golem made of all +[crossed-out: showcase] teeth. + +## Page 86 + +"Sorry Couldn't be here, gone fishing with a friend!" +It says "Hopefully we'll catch some big ones" ! Kill it?! + +Advance to prison room - Mother threatens us. +Believe she is in Baytail accord with Garadwal + +Limnuvela is dying - Energy has been syphoned. +too much. Mother tried to absorb him, but +he was too much for her - he is holding on +to keep the barrier up. +His barrier has a copper pipe in the top where +the mother syphoned [crossed-out] energy. Moved the pipe +to the floor to try to heal. +Pour pouch of White Rose powder on it +& it restores some health +if fully closed prison the elemental is in stasis +remove pylons & it slows down. +head to envi's lab door is shattered & +bits of automaton scattered around the room +& across the whole lab. + +Garadwal was in the Blackscale yesterday. +he's now back in the dome. Baytail Accord +has kicked off in the last hour. + +Blackscale is using our kings as servants. +Boss likes the barrier as it keeps his head in one +place. told Gardwal not to bring down the +barrier. + +(lvl up!) + +## Page 87 + +Teleport to Baytail accord - leave Cardenald behind. +at the life prison. + +19:00 + +* in a temple half on land & half in the sea +* god on the wall Hammerhead shark man. +glowing parchment inside a glass dome under the +water. + +sickly green flames from buildings in town - +lots of dead townsfolk. Garadwal hovering above + +* unnatural amount of rat poo on the harbour +Mermaid of this city is in trouble + +Contact the void elemental - on his way. +Garadwal tries to find some thing + +* 15 feet square in front of Garadwal is unnaturally empty +of debris + +- monstrosity is attacking the hatchery. +Void elemental appears and gets trapped by a dome in +Geldrin tries to dispel magic & it seems to do something +but it is still there. +manage to kick the runes away & let the void + +horrible boob covered form appears - The Mother? +Send a message for help to Basaluk +he appears with a tabaxi & his boss +Garadwal teleports out +Void also disappears +The Mother DIES!!! + +## Page 88 + +need to check on the Hatchery +Basalisk returns as other important things to sort. +All thanking the Merfolk for saving them, rest of the town +seems ok. + +go check on the mothers corpse -> all fallen apart. +spellbook on her - Geldrin - same cipher as Envi's. +same spells as Envi's. + +get some visitor shells & head over to the Hatchery +dead gilled Ghouls under the water. + +Pact keeper Inara +7 other Pact leaders sitting round the table. +4 we have met. 3 others +Guardfree brings out chairs for us to sit on & join the +Visca - Fairshore +Hanna - Fishbait's edge +Lana - Azureside +Aquena - outside the barrier (princess) + +All point towards glowing parchment "on our hooper +preserve the pact" +we are now known as "Saviours of the Pact" +A Baby girl has been born - first on in 20 years +no name yet - need to consult the records. + +Princess Aquana comes in with the baby +3 younger girls in training to become Pact Leaders + +They have a route outside the barrier. they tend to +leave if they are not Pact leaders + +outside barrier 1 in 100 years inside it was +a few a year until recently. + +Believe there is a curse and the barrier is protecting them +from the curse + +## Page 89 + +Tell them Cardenald is back. + +Azureside records state Goliaths wiped out by the +Green Dragons. + +Travelers don't appear to have returned from the +Lots of green dragon type creatures. +Perodita's new mate Kortesh Gravesings (Also her son!) +He Attails the boons - wears a metal helmet lined +with finger bones, metal hooks with trophies from his +kills attached to them +Generally called "The Twisted" by Azureside. +At least 5 +2 heads +weaping pores all +alien head & no lips + +called for help from Grand Towers - But no help received +had a Justicar recently heading to Hearthmoor to check the +plague? + +Last contact Goliath's approx 900 years ago + +Lady Aquena will stay for a while & leave her offspring + +Hanna - fishbait edge. +Nothing much to report - getting a little colder & a +few storms. +Dine springs - lost a few loggers + +Visca - Fairshore +Baron attacking her people - issues with tracking, found some +nefarious shipments from Seaward. threatened with +gnoll attacks stopped - raiding group cleared out the +fuse swords - Invar Brought + +## Page 90 + +Believe that was Brother Fracture. & the people were +rescued. + +Alana fairshes +Breakin in at the menagerie - Lots stolen, Magisters put +out fines for black market animals. Geldrin thinks +of the farmer in Everchard. + +Merfolk have a bird "Terry" messages +1. unprecedented amount of instability forces out enforcing +city states no cause for concern +2. Noble council meeting all required on next Trimoon +3. Dunesend state - uncompliant - Not sent troops to fight giants +4 Seaward barriers fixed by the gushiers - 2 seen +an unknown one called Gendrin +Geldrin furious! +5 Dukes on noble Council + +Freeport State - Duchess Lauleriere +Dunesend State - Duke Humbersinthesand +Hearthwall State - Duchess Hearthwall. +Goldenswell State - Duke Norman Goldenswell +Snowsorrow State - Duke Torrain Freefellow + +Dunesend? Azureside on the edge of the state. + +- Terry gets message from Erroll +Valenth here - two way communication - something +going on place lit up like a Christmas tree +Barrier flickering - Energy surge started approx +1/2 hour ago +The mother repurposed Envi's clone in Envi's lab. +- Valenth going to investigate it. - not going now. +hears a noise - sees Joy - she heads to +Not gone to a specific circle. + +## Page 91 + +what The Mother has done seems impossible as +it should be a clone of yourself. Don't think it's +possible to set another clone outside of the 120 days. +Don't think "The Mother" knew where Valenth was there. + +No records of the mages laboratories. - All thought to live in +Grand Towers + +Errol & Terry linked now - Not connecting the others + +request for our items in Freeport to be looked after +Tiana + +Dreams - over many years they could be saved. +many recently show who we are. + +Plan to go to Salinas Statue to fix that +Stay in tavern - Bounty of the Sea. diff --git a/data/3-days/day-27.md b/data/3-days/day-27.md new file mode 100644 index 0000000..3386563 --- /dev/null +++ b/data/3-days/day-27.md @@ -0,0 +1,402 @@ +--- +day: day-27 +date: 11th Tan +source_pages: + - 91 + - 92 + - 93 + - 94 + - 95 + - 96 + - 97 + - 98 + - 99 + - 100 +source_ranges: + - data/2-pages/91.txt:25-46 + - data/2-pages/92.txt + - data/2-pages/93.txt + - data/2-pages/94.txt + - data/2-pages/95.txt + - data/2-pages/96.txt + - data/2-pages/97.txt + - data/2-pages/98.txt + - data/2-pages/99.txt + - data/2-pages/100.txt:6-20 +complete: true +--- + +# Raw Notes + +## Page 91 + +Day 27 (Sunday) +11th Tan +7 days to Trimoon +5 days to auction +Gull level down + +4-5 hours to calculate shards trajectory. +Cardenald comes to Baytail Accord. +Helps Geldrin calculate the trajectory - +will probably still hit Grand Towers if nothing happens. +If we stop another it won't be on course +ship 2. +Garadwal possibly setting up another plan. +- Cardenald to go to Salinas statue with Merfolk +& destroy it. + +Teleport to statue close to Dunesend +Giant statue of Serra. +2 guards at the statue. sphinx tabaxi ebony skin human. +reptilian hide skin spears + +12:00 + +## Page 92 + +Head down to Dunesmead. Shines Blue/Orange very arabic style. + +* townsfolk have many piercings - ear tunnel seems very natural. +* guard approaches us - thinks we may require refuge + Gelinn - may not write new spells - laws in place 1,000 years. + refugees are housed in the water gardens + Rules + - No alcohol + - no spell writing + * no worship of liar or darkness + +Many deaths within the city - Vulturemen - Arahuoa + Moving fort in the desert - Mother/Father not hurt + +Meet a friend of Dirk - heal his shoulder. +Fire Demons attacked at night they attacked back + snake lizard people +& when they retreated back the Demons stopped attacking. +Led by a firey demon with 2 arms. + some were attacked by green dragon. +Good place to smoke down the road. - Deserts Haze. + +The Father holds open Courts - usually as it cools off +(Father / Mother / Hearth Master / Huntsmistress) + +Little girl - with afro approaches - says her mum told her to be +careful of dragons - message to scare her off. + +14:00 + +Court is around 4pm - will get an appointment if + - agents of the excellence (Infestus) + +Guards drag a Vulture bird man into the courtyard +- apparently one of the assassins - lurking in the deserts +may have killed the Chancellor. + +Go to the bathhouse + +16:00 + +Back to the court. +Father Haithes [uncertain] laden lots of copper earrings. copper marygal chain (God of Altarrb) +Mother - Human Dunar Lady - Egraine Brook (goddess of life fertility Harvest) + +## Page 93 + +Father - captured one of the assassins - was the murderer of + +go through to the atrium / area & join the queue + +Hearth master - flames for hair. + +Hunts mistress - red braided into her hair & dogs dyed red. + +"The Slayers" + +- Vulture birds - infiltrating but don't know how. + - recently became sloppy + (Ennui the betrayer) + +- The Mother has healing powers as did "The Mother" + Ennui stole it - the reason why no spells can be written + Does not have the ability to alter memories. + +- Someone in the court looking for ancestral grounds of + the goliaths - lots of people asking about them over + the last day + +- Hearth master brings trade logs showing Trade stalls + confirming our map. + +- 3 Vulture men seem to be leaving their feathers behind? + Assassins attacked in the last week + Want to speak to him (- get broken claw to + see him. + he's not done anything - seems to be telling the + truth. - None of his people have gone missing (lie) + Hunters have gone missing. + Dirk unchains him. + Feather colouration may show who is doing it. + +Blowpipe dart appears in his neck - guard in the room +starts running away - chase him + +## Page 94 + +Throw ball bearings at him - miss but he +seems to stumble even though they fell behind him. +Geldrin Wall of Fire & the guard turns into +a weird Lion woman thing - kill her + caught her both legs. +Hunts mistress comes back with the feather +& says trouble really does follow us around. + +pick up the blow gun - receive the feathers - similar to the +arakobra feathers. + +Bird recognises - they're after his master - because he's done something +One looks like Stilix - missing +gave Eroll a message to the master. + +two guards - one is letting the other one talk & seems off +Agugu - question him & he feels like metal under +cut his arm & he has delayed reaction like it +tries to leg it & we grapple him. +unit compromised - core overload - explodes. +consumes the body completely - locate fragments of +a core cage. + +He has a wife... about 5 years. +get taken to a room. + +(Bird man's boss is in the Elven Ruins & is a +6 legged cat man) - only Elven Ruins we know of +is grand towers or Valenth's Lab (not seen outside of +Valenth's Lab & Eroll flies off firewise from Dunesmead) + +Search around the room - notice the soil is different +so pull it out & a small mechanical spider +comes out of the pot - Automaton. possibly an +Eroll type device. + +## Page 95 + +Eroll returns - mission success message delivered. + +- Message from Cardenald - Salt sorted. Seaward should be + fixed but seems like there is something else effecting + the barrier - had to use magics & stuff to get there + quicker. - Eroll has forgotten he gave us the message. + +Dirk tells the spider we could do with a chat. +Dunar Guard knocks on the door - another automaton. +- doesn't know why he is here - whole place is + riddled with automatons - it is a prisoner - not part + of the barrier - is under grand towers - Not one of + the three. - Control room - is completely empty of people. + +The guilt - one of its names. +keeps calling me sweetie. +knows who is behind the message from Cardenald. +wants to make a deal - has been freeing to +communicate again. +Can Reset the control room. - will do one as a +Lays a golden ring on the bed - abyssal writing on +it - "He pride for a head taken, the shame +for a friend betrayed yet the guilt unburdened" + +There should be 5 of us after all but as +there are 4 we have gone under the radar. + +Alistair in Everchard +was the same with the wizards as one disappeared +upon barrier creation +will fix a prison to show us it will help us. +Prisoners they hardly existed when it was imprisoned. + +Pick Valenthide to fix first - geldrin sees him + +## Page 96 + +There are a lot of the spiders around. + +- Think imprisoned in grand towers maybe light/Dark + +- Huntsmistress - located lots of automatons. blow + up when confronted. + +- No other Lion beast things have been found. + +- Contracted Grand Huntsmen in grand towers. + + - Goliaths - linked to any of this? + +Haemia - Lion lady beast - creatures created +by a dark power. + +Darkness & Light Excellence exist? + +Haemia's trying to make space? clear out. + +- let all the guards go home + 2 guards on palace entrance. + others on Mother & Father + - all on high alert + +17:50 + +- go walking & tell her about the bugs & more than one + thing going on. +- Geldrin can use compass to detect the automatons. + Huntsmistress is not one of them. + 2 guards on the gate. nope. + check on the priests in the temple. + - They're wearing armour etc, boiling hot. + 3 priests & Duners - none give a reading +* Huntsman Indanyu 2nd in command +go to another room to talk. + Broken bow string +in the room. +tell Indanyu about things - he's not heard anything +but the people all talking about the murders - has his +attacked (sisters = potential new mothers) + +[side note box] +Mother - Igraine life (pleasure & harvest) +Father - Altarrb + +## Page 97 + +A week ago - seem turned over but nothing taken +3 done so far - approx 10 shops in total. + +fire creatures seem to have made an encampment +close to the barrier - Salamander type men - +Approx where Geldrin's calculations were - look like + +- Lamasu - 16 legged cat Beast - allegedly a creature + of good. + +Dirk sends message to his dad via Eroll + +Don't know if we can get an army to help but +can send a message to the scouts near the camp +back by Morning. + +Sister obligators - One of the shops attacked for lovely +modifications +3 people seem to be protesting outside +Dragon born - Red skin tries to move them along. +- Apparently she has another shop in Brookville Springs + and sharing their secrets. +- Looks like a tattoo parlour - Woman - tribal look to her. +Dirk wants a tattoo. +she has opened a shop. +People are worried they will lose the knowledge. +- She's the only one who has so far. +- what they do is on the edge of what they should do. +- helps them to earn some money. +- not sure her skills could be written down. +Geldrin says he's seen the book. + +## Page 98 + +Other break ins seemed like they were searching for +something - seems every other night - possibly one going to +happen tonight. + +- Geldrin to ward the shop when it closes in 2 1/2 hrs. +Prob should start at Sister Proulsothight [uncertain] as she's the +one who has always been on the edge of what they +should do. + +Head over to her shop - No protestors or guard. +- asks if we want refreshments - she takes us into + a backroom with mini bunks & lots of different drinks. +she asks if I'm here for the box? +Say yes & she gives a box the same +as the one from Gelissa but not the same. +- This is what the break ins were about. +- She doesn't believe me & tells us to + leave - Message the Basilisk - asking if she + should have it or if we should retrieve it? + +Eroll returns - Dirk's sister - Dad not available please +come to Salvation we need help. + +Basilisk return message - how do you find these +things leave it alone - you are in over your head. + +veridian +Massive dragonborn approaches the shop with two +sickly Goliaths - enters the shop bangs on the + +Tell Basilisk this is when we can reset the stone. + +Figure on one of the Dome roofs. +Try to stealth. +It waits until the streets are clear & approaches +him into the shop. +Hear words from inside the building. +Invar channel & walks toward the shop. + +[side note] Wizards on the payroll + +## Page 99 + +# Invar resists & voice invites us in. + +Uncle Hortekh - tell his wife we are intervening. + +threatens Dirk & the Goliaths - will get him one day! + +Back to Sisters. + +heat box was intercepted - that was us! +Basilisk was looking for the box & + +22:00 + +Meet a human - Morgana +with two birds - Sent by +The Chorus - has the pigeon who helped us +in Everchard. + +- Home forest (Everchard) strange things happening + in the forest - large animals etc. Chorus sent to + us to be 5 of us. + so there would be + +Morgana sees Bright green Dragonborn with sickly Goliaths +near a poisoned part of the forest. she healed it. + +- go to Stricker's camp - he's helping out +now. Morgana gives goodberries to heal some of the +refugees. + +- Stricker Senior went to Salvation to work out +plans to get back the people who attacked them. + +- Stricker doesn't know of a city for Goliaths. but +has seen some Green Dragons. + +Stricker is going to stay to look after the +refugees but wants to join if we go to war. + +- head over to an Inn + +## Page 100 + +Hard Cheese - Cafe down the road for out of towers +(sells booze) + +One of the locals is marked by geldrin's Shield crystal +- seems to drink. + +Chorus hearing visions from the ancient where things +went bad and there wasn't alot of water +waterwise. She also saw the visions went +better when Morgana was there as there should +be 5 of us. + +Send message to Basilisk about Sister's Shop. + +[left note] diff --git a/data/3-days/day-28.md b/data/3-days/day-28.md new file mode 100644 index 0000000..62c6cba --- /dev/null +++ b/data/3-days/day-28.md @@ -0,0 +1,110 @@ +--- +day: day-28 +date: 12th Jan 1012 +source_pages: + - 100 + - 101 + - 102 +source_ranges: + - data/2-pages/100.txt:21-57 + - data/2-pages/101.txt + - data/2-pages/102.txt:6-9 +complete: true +--- + +# Raw Notes + +## Page 100 + +Day 28 (Monday) +12th Jan 1012 +6 days to trimoons +4 days to auction + +Dirk wakes up with an uneasy feeling +& something tugs at his brain - scrying spell? + +5:00 + +head over to the palace to meet Huntsmistress 8:00 +for mounts & reports back from scouts. +extra mount for Morgana. + +worrying news much animation around the statue +poorly done as you can't make out features. +surrounded by runes flashing red - everyone around excited +40 Salamander men - the runes were red. +few creatures made of fire +Purple skinned creature with 6 arms - 2 tridents +(Excellence) + +Different than the last report a few days ago. + +Trying to understand if Pride is a friend as he +was meant to fix the prison but seems to have +opened it instead. + +Call on Rubyeye - thinks he knows who it is +him & Valenth long discussed it. +Browning & Ennui have something under grand towers +- had an advance in the technology for creating the +dome during the excavation for the dome. +Elves maybe trapped him & Browning & Ennui backwards +Engineered something to create the dome +in the workshop? Power source for the workshop? +Darkness, Excellence + +## Page 101 + +- Controls the overseer - Cardenald should be + separate to the mainframe. Double locked: Valenthide + prison & automaton guard. + +by Pride's prison isn't connected to the barrier +network. + +- Entrapment ritual to subdue & hold them in + place - weaken them & activate the runes. + +- Maybe trying to distract us from saving + the shield from crushing. + setting lots of things in motion to distract us + and make sure we don't have any help. + +- Visit elven ruins with the Vulture prisoner? + Go to visit mother - ask Huntsmistress to give us a man + - ask about the automatons - she doesn't know but + someone of her talent has made them - Ennui & Browning. + - heard about our run in with the sister last night + - wants proof that the vulture people were not + behind the killings. before she will give us aid. + +Speak to Vulture-man - thanks us for helping him. +haven't found any further Haemia. +& if the leaders are willing to meet each other +to call a cease fire. he will arrange for +a meeting of his leader in a neutral place to talk +with us. + +[side note] athruygon? (name) + +let Vulturemen out - Huntsmistress will ready some forces +if we need them - head fire wise. seems to be sending messages +as we are travelling. Endless Dunes. + +10:00 + +16:00 + +stop for a rest +see two shapes flying at the Horizon very large as 10/15 miles away. +Geldrin - feels like he was scryed on. + +shapes on the horizon are large Dragons (veridian?) searching +in the ruins + +## Page 102 + +go the other way & approach an Oasis. +dragons seem to be heading this way, hide in the oasis - young adult dragons - one has two heads, +all the wildlife disappeared - they know we are here - speak to a purple vision of a dragon to find out where we are - she said she doesn't know - we keep resisting her attempts to check on them - they nearly find us but Geldin fools them into thinking we'd teleported. Take rest. diff --git a/data/3-days/day-29.md b/data/3-days/day-29.md new file mode 100644 index 0000000..1ee46e2 --- /dev/null +++ b/data/3-days/day-29.md @@ -0,0 +1,77 @@ +--- +day: day-29 +date: 1st Tan 107 AT +source_pages: + - 102 + - 105 +source_ranges: + - data/2-pages/102.txt:10-39 + - data/2-pages/105.txt:6-30 +missing_source_pages: + - 103 + - 104 +complete: true +notes: Source transcriptions data/2-pages/103.txt and data/2-pages/104.txt were not present when this raw day file was created. +--- + +# Raw Notes + +## Page 102 + +[left margin] Day 29 (Tuesday) 1st Tan 107 AT. 5 days to Timnor. 5 days to auction. + +people with lizard heads - Salamander like. Red - 6 of them +wish they were killed out - one doesn't have legs +invaders from the great Brass City - leader is a true salamander. +From Fire plane. + +En route to Dunnersend to see if issues are resolved +statue incomplete. + +Kin looking for their thorn in their sides +Luth hiding with the vulturemen +heard he is alive in there? Dome? +we destroyed their plans waterwise. + +They go on their way. + +Continue in same direction - come across rocks like seaweed, +but a different vein colour. pressed a rock & staircase +appears, opens into a large under sand structure. +lionin creature mosaic on the floor. +4 legged sphinx +goat head sphinx +6 legged cat like creature with braided beard, egyptian headdress +lion body with 6 limbs hand like feet flanked by 6 vulturemen wearing Dunnen style clothes (honour guard style) each side. + +Astraywoo bows to him - Dirk greets him as "Excellence" with the vultures under his wings to protect them after Gardwal failed. Think his brother is looking for him. +Goliaths came to him asking for help to trap his brother. +we will protect him if we escort him to see the Dunners. +Doesn't want to go to Dunnersend after we told him about the automaton - may have something to show faith + +## Page 105 + +fight Lortesh! kill Him!!! + +Dirk takes skulls - Geldin finds 2 skulls in them. given to Invar. +Dirk buries their dragon skulls. scour the beard & take back to town. +Morgana notices the plants starting to grow. + +Return to Dunnersend. Guards bang spears against shields. +go towards palace - townsfolk cheering & celebrating on the way, at the water gardens. Benu / mother / father are there. We get their support in wars to come. 19:00 + +- Bath house is outside of Dunnen rules for the night. +- try to procure some beer - go to Hunt & Hearth by mistake & get free rooms. Need to go the Hard Cheese. +Walk into back room, get drinks for Arvel & get cheese. +retrieve Errol. + +Rhelmbreaker giant spotted at Highden travelling waterwise. +go to bath house. +- Message Busalish - killed Lortesh. + +Errol hops onto a message table. +make your decision (Anite!) +made a mistake controlling the wizard & accidentally opened the prison. +very happy we killed the dragon, - happy when people are proud of themselves. + +Head to Inn & sleep. diff --git a/data/3-days/day-30.md b/data/3-days/day-30.md new file mode 100644 index 0000000..66e04f9 --- /dev/null +++ b/data/3-days/day-30.md @@ -0,0 +1,121 @@ +--- +day: day-30 +date: 2nd Tan 107 AT +source_pages: + - 105 + - 106 + - 107 + - 108 +source_ranges: + - data/2-pages/105.txt:31-36 + - data/2-pages/106.txt + - data/2-pages/107.txt + - data/2-pages/108.txt:6-31 +complete: true +--- + +# Raw Notes + +## Page 105 + +[left margin] Day 30 (Wednesday) 2nd Tan 107 AT. 4 days to Timnor. 5 days to auction. +2 days 4pm [uncertain: Lathlie] + +Town Crier information laptop. +- message from Busalish - wants to meet us - comes in. +Lady Hearthwill injured - fighting giants decided to take into her own hands, recuperating norm. +Goldenswell retreated soldiers. + +## Page 106 + +Hucan's ship attacked. Rummaged in the night. Cart has been rummaged through! +messages being intercepted. + +Blue dragon +Battle plans being leaked... +Craters Edge - magic attacked +Cart - guards on there - a bit of a mess when they were found. -> Betrayer. + +moon shard in the sea - Invar retrieved it & tried to take it back to ground towers. Xinquss tasked to retrieve it. + +Huan survived - ship missing - Census / Hydratrox. +Our Council members on their way to Highden. + +Wrath to Valenthide. +Xinquss to shield crystal. + +Benu staying in Dunnersend will build a temple in city. + +father sent feelers to army - spare 100 troops for us. +30 skilled fighters, 70 conscripted. +5 healers from Huntmistress too. +obtained transport for all & 10 cavalry. +scouts report similar sized army at the barrier. + +Benu can message Cardenald - ask to meet 09:00 at Dunnersend - she will meet us there at the shrine. + +see glinting in the sun - Cardenald. + +- had sent us a message which we didn't get. +thinks somebody is trying to get into her thinks. +She has kept it out for now. +can fix Errol. + +## Page 107 + +Salinay sealed - barrier energy depleted. +- Valententhide is the cause of that. + +Betrayer - will be working on another Body - take 20-30 days. + +Rubyeye resurrection question posed to Cardenald. +- she says yes - we are also swaying that way. +we agree to do it. +both eyes glow red & skull floats & animated & comes back to life & makes a beard. +- Geldin flashback to a room with a floating skull. +Enwi's gloves in Goliath Tower in Oasis - so died & went there but nobody knows so hasn't been released. + +Browning made a bargain to rid fishes from the barrier in return for a peace treaty. + +Enwi also made a pact of some sorts - rings. + +The Guilt is an excellence!! + +Browning's lab near Craters edge. + +Magical defenses against Valententhide. Counterspell. + +Message to Busalish to say guilt is Excellence & ask for mage help with Wrath. + +Benu can create a hero's feast. + +go to Cheese shop - no mages or scrolls but can speak to [uncertain: Proloknight] for us for counterspell & polymorph. +Counterspell 500g. 10g [unclear]. Finders fee only for 2 but want 3. +Poly morph - 3-4kg - Morgana can do. + +## Page 108 + +Try to see what the automaton is doing - Galatrayer. +who was guarding valententhide's prison - Cardenald taps into it - Stone Room - somebody here - out of focus? - still imprisoned? Geldrin not convinced. +- Groll - somebody in Galatrayer's head? The overseer? The explorer? + +Back to Palace. +Cardenald & Ruby eye back to Cardenald's lab to study & get supplies. + +Geldrin tries to find valententhide or goliath city in the library. +scholar talking about Goliath people (900 years ago) & Goliaths bent to help out building the Dunnersend. Master Shined glass. +Goliath Capital - Ashktioth. +Tradesmall - Goliath town. +Valententhide - Book of fables - should have been one of the 12 & was given the crappy job looking after dust - the apprentice became the god instead (darkness). + +Army leaves @ 16:00. 16:00! + +Invar received message back. +Lady unavailable fighting on front lines. +count their money back. +news this morning about village - no other news. +Battle going badly. +soots bones - scholar from Dunnersend inspecting bones on behalf of Lady R. Beauchamp?!? - Blue Dragon?!? +Cardenald & Rubyeye come back - found 2x orbs & 2x scrolls of Counterspell. + +Errol going to Crater's Edge to see if actually Ash. +Errol back - Crater's Edge intact - very quiet - but late at night 24:00 - one person looking out of window - tiefling child looking out of window (Joy?)!! Trap?! diff --git a/data/3-days/day-31.md b/data/3-days/day-31.md new file mode 100644 index 0000000..20f4a5a --- /dev/null +++ b/data/3-days/day-31.md @@ -0,0 +1,128 @@ +--- +day: day-31 +date: 3rd Tan 107 AT +source_pages: + - 108 + - 109 + - 110 + - 111 + - 112 +source_ranges: + - data/2-pages/108.txt:32-40 + - data/2-pages/109.txt + - data/2-pages/110.txt + - data/2-pages/111.txt + - data/2-pages/112.txt:6-13 +complete: true +--- + +# Raw Notes + +## Page 108 + +[left margin] Day 31 (Thursday) 3rd Tan 107 AT. 3 days to Timnor. 2 days to auction. 1 day left upon the road army. + +Plan to follow the army & fish Excellence. +All day passed. +set up camp. +During watch - movement in distance - flying & closer - Dragons - neither have 2 heads - Ashlike small wings - Antler snake horse eyes horns. +fly close to us but don't notice us. +Don't seem to have come from Statue. +may have noticed army? + +## Page 109 + +go to Baked Mattress for food. + +see a human sat down with a very noticeable underbelly. +Barkeep - Patches of night & husband. +Xinqus in town! + +head to auction house. +870kg. +See a [uncertain: pigeon/aracock] with Xinqus's cart. Xinqus is inside. +"1600" + +Walk to the front of the queue. Mirth at the front of the queue lets us in & gives us a number. + +Dragon - Retribution shrine on Azureside. +Very eclectic bunch of people in the auction. +everybody else seemed to pay to get in. + +Auctions - Number of coins - grand towers penne / Goliath coin s x2. +- Bottle of wine - sosen mistle eel. +- Pocket watch functioning - squares showing moon cycle. +- green rimmed glasses - elven. +- Small mahogany box - red velvet curtain - illusionary scenes form box. +- loved patched leather backpack - bag of sorting 3-500g. 500lb or 64 gems. only weighs 15lb. +- silver scorpion on a chain - Holy symbol of Noxia. +- long sword - 8/400 years old. Style Invar makes. Firefang - sword +1D6, 5 charges spell charges and Burning hands. 4500g. +- Amle - for adult? +- ring crystal on top of it - ring of protection. +- Chariot - The Guilt is interested?!? +- Big scroll of paper - Arcane writing. Geldrin tries to check what it is & casts dispel magic. The words disappear from the page - Browning's scroll. New random spell appears each morning @ 2:37. 600g. +- Bracelet of locating. +- Art cork - rare poetry books. +- Talon of soot. + +## Page 110 + +Send the bird to the camp. +Lortesh untruly end - we cannot control him. +Reward sphinx promises is delivered. he will deliver his side of the bargain. + +Armies approach - request if they are mine. +Become more subservient & say no Sir. +will know if we are lying to him. + +Goliaths start to be freed from their tents. +Dirk's dad is a few tents down. + +Sees through my illusion & laughs because I made myself look meaner. + +Attack takes place. goliaths attack outside the tents. +Lord of Brass Citadel tries to go to front line & I have to go with him. + +Green Dragon descends on the armies. + +My Frizzlesing - day of music [crossed out: mirrors] mirroring surrounding. + +Dunnen Army kills the dragon. +Elemental dies & says +"You betray me, I was meant to avenge you". +Kill it. +Dunnensend Army are successful. + +## Page 111 + +Dirk's dad is ok. + +Ruby eye taking Valenta back to her lab to repair her - they need a few days to recuperate. + +- Excellence killed was the leader of the brass city. +Earth Excellence - Treamen - I have - jagged purple crystal skull. Invar checks it. magically crafted artifact. made from his skull made from [uncertain: shield] crystal. + +Locate a command tent, locate a locked chest. 22:00 +load of platinum coins - one side domed city tower & other side snake wrapped round a stick. +1,000 words in Ignan around the outside: +"to commemorate the fall of the labour in the name of the lord Searean" + +Dirk's Dad wants to go back to Salvation to rest & gather armies to attack the Goliath city with some of the Goliaths from the city. +(Zane Peacemaker Dirk) + +5 days before they could get to the city. + +go to check on the dragon. Dunmerend are in a row next to it. Officer & a mule shift table with scales - handing them out to the army. +scales - devoid of flesh like they have been carved. +Dragon is the same size as the others but has bird claws as his legs. +wings extend down his tail like Lortesh. + +## Page 112 + +ask for the dragon's head to be chopped off. + +Dirk questioning one of the city goliaths. +not a city - +Rebels say we need to take the tower. tower is in a field. +people worked for the dragons for generations. +think the dragons are gods. Rebels killed one of the young ones - she killed 1,000 Goliaths in revenge - his job was to tend the lizards lizards to feed the dragons or they would be food. His friends called him poolface but changes it to Thunder as a strong name. diff --git a/data/4-days-cleaned/day-23.md b/data/4-days-cleaned/day-23.md new file mode 100644 index 0000000..8b7a1f5 --- /dev/null +++ b/data/4-days-cleaned/day-23.md @@ -0,0 +1,101 @@ +--- +day: day-23 +date: 7th Jan 1012 +source_pages: + - 70 + - 71 + - 72 + - 73 + - 74 + - 75 + - 76 + - 77 + - 78 + - 79 + - 80 + - 81 +complete: true +notes: Day 24 was not found as a confirmed boundary; this narrative continues until the next confirmed day start, Day 25. +--- + +# Narrative + +Day 23 was Wednesday, 7th Jan 1012, with 11 days to the Tri-moon and 7 days to the auction. The party went to Excellence's lair with the merfolk, led by pack leader Alana. In the underwater cave, the water ebbed and flowed like a tide. A 20-foot-long crystalline dragon sculpture stood there, with glowing runes on its base. + +The lair contained three cages and barrels. One cage held a merfolk who looked different from the others, green rather than blue. Alana seemed to revive him and took him back to the ship. The chests appeared to be waterproofed, and their contents might not be openable underwater. When one chest was opened, it contained white powder that the narrator inhaled, causing a sequence of visions or hallucinations: a basilisk attack, salamanders, Arabic writing, a white dragon circling around the dome, rabbits, and the whole room becoming a black void. Two blue eyes approached through the darkness, bringing intense cold, before the narrator returned to the room. + +Another cage contained a snail with a gleam of metal: a jeweller's chain attaching it to the cage. Guardseen said the snail was a bad omen and had been drugged. Back on the ship, the merfolk explained that they had been abducted from beyond the barrier. One merfolk, his friend, and his wife had been taken; he woke one day and both were gone. His wife was nobility in their pact, possibly Sneul. The Huntmaster dispelled magic on the snail, and a mermaid appeared. + +The merfolk described an empire of their people outside the barrier. They had been captured while on a diplomatic mission to the city of Onyx, which they did not trust, and there was war between them and the Salt elementals. Princess Aquunea was named. The city of the Black Scales was said to have a "door" into [unclear], with payment for access being a Grand Towers penny. + +The party checked the barrels and other goods. They found a sickly sweet medicinal potion of magical energy that restores one spell slot, silk and parchment interleaved with runes, two portions of white Rose powder for which Taina gave the party 1000 gp, and a metallic censer, possibly silver, religious, and connected to a water god. This Censer of Noxia had the ability to enrage and control water elementals and was active. A message was sent to Basilisk. + +The party returned to Freeport, which seemed much colder than before. It was snowing over the sea, and everything was dark and snowy. A man shouted that the end was nigh and that the Moon was crashing down into the city. When asked which city, he no longer seemed bothered and said he had dreamed it. This was around 22:00. Many people were having dreams. One dream involved gnolls attacking a village and requesting backup from Everchard and Fairshaws. Another was underwater with mermaids and a big cat with metal wings attacking it. These dreams had happened a few nights earlier, at the same time as the party's dreams. + +The party went to the Castle to see the Baroness. The necklace was removed from the sergeant, and he simply walked off. The mermaids had a meeting in three days at Baytail Accord to discuss what happened, and the party could go. The dreams seemed to contradict one another, possibly because they came from the Ancient One, so they could still happen. The Huntmaster was going to Grand Towers to speak. A Justiciar was in the city and may have been looking for the party. The Baroness got the party into the Drunken Duck, a secret venue airwise from the Jewelry District. Something had been written on the padlock on the cart, and the cart was still safe at the Castle. The Baroness's master was connected to Valenth Caerdunel's necklace, while her sister was a ring. + +At the Drunken Duck, all the walls were covered in pillows or soundproofing. The clientele included a red dragonborn, two tabaxi, an automaton, two halflings, and a gnome. Arxion was given Schnupps from the Brass City. The barman said "only the best for the Little Finger" and was intrigued by who the three best members of the Underbelly had gone on a mission. The tabaxi had whiskers laden with "Dew" and traded in "keeps" from art to food. A faint noise or raised voice came through the floorboards. The automaton kept talking about a factory and wanted to know where the labs were; the party said they were all by the barrier, which cut down his search radius. In a private room, the party arranged to send a message through the Underbelly that they would not go to Baytail Accord and would instead go to the desert laboratory. + +At the desert laboratory, they found a coil of rope with a burnt end on the rug, which crumbled when touched. There were no automations. The place was oddly clean. A hole in the roof seemed to have been blown from the outside in, but had been cleaned up. Through the firewise door, they found a female automaton, very different from the others and called Silver. She said the mistress was not her and would not be coming back. Silver had been there 601 years, and 907 years without the mistress. The hole was from a security breach. Silver took the party to sit down through the first door on the right. + +The party was served wine from 37 BD, Before Dome. Silver said the mistress died there in a spell accident, and Silver cleaned her up. No one had met with the mistress in the last 907 years. Rubyeye had last visited 908 years ago and had met her 47 times. Rubyeye had requested a copy of a book after viewing it at Aquaria, but Silver did not have it; Rubyeye had it. The runes had been lit since the mistress died. The book came back two days before the death, despite usually being returned daily. + +On the tour, a room opposite contained flower beds with well-pruned white roses, disposed of with fire at a different temperature, and insects in the dirt. Down the corridor, a door on the left opened into a room with a huge silver statue of a dragon, a sphinx, and humans and others at the base with a dead eagle. The inscription or note read: "Victorious but too late it was still the Dunewand." The figures included the human Browning, the elf Cardonal, the dwarf Rubyeye, the halfling Enwi, the dragon Muttowh, and the sphinx Garadwal. The statue commemorated the death of Hephaestos, exalted of air. The names Valianth and Cardonal were boxed in the notes. + +The history recorded there said that in 29 BC Hephaestos formed an army. Rubodueul, a friend of the Duncan people, called for aid. Two years later he returned with mages and defeated Hephaestos. He lamented not helping Gardolwal in his revenge when he learned that a void lieutenant had escaped, and he sought revenge. The Brass City fell and drove the tabaxi out. He had been a friend of the mages, but they trapped him and he became friends with another mage. + +The elven art gallery was a marble room dominated by statues of very muscular elves, like the Elementarium, and pictures of pale skin. Aranthium was named as the main architect of the Great Tower. Elementarium was a great scholar, slain by Excellence or entombed for 400 years, worshipped darker gods, and died in 741 BD. Others shown were local folk heroes. A picture showed Aranthium in front of the Great Tower. Browning died in 44 AD, but Rubyeye and Cardonal had talked about him as though he were alive. The mistress had defensive automations that could teleport in from the factory through a teleport circle if needed. + +At the end of the corridor, Silver could not go through a door without a person. Beyond were rot and decay. The mistress had played the flute. The kitchen was dark but lit up when the party entered, and had been made by Cardonal and Browning. In the dining room were pictures of Enwi, Joy, Browning looking in his fifties, Rubyeye, the human Heurhall, and a sphinx, painted in 314 BD. + +Behind the pictures, Dirk looked uneasy. Behind Garadwal's picture was a golden band with a ruby. Silver tried to get it. The gem was smashed, with arcane runes, and it resembled Eno's ring. It seemed hurt, broken, not quite powerful, and possibly sentient. Eliana opened the music room. While Geldrin checked the magically lit fireplace, Silver watched Eliana. The music room contained various instruments, including a harp, and a hat stand resembling the one in Enwi's lab, but with no rug. + +Geldrin found a stone in the fire and recognised it as a stone of sending. When the rock cooled, a piece of paper appeared underneath it reading, "I'm coming to get you." Geldrin showed it to Eliana, and they did not recognise the handwriting. Silver took a tube from the harp. Playing "Ode to Mountain Halls" was noted. A piano held sheet music for the harp song "Betrayal." + +The kitchen door showed char marks from the kitchen to the dining room, suggesting a localised explosion. The door from the kitchen to another corridor seemed to have an explosive device directing a blast into the kitchen. Silver broke the laboratory door and insisted on getting in; her voice changed and said they needed to get out. Dirk visited the toilet. A bedroom looked as though someone had left in a rush and had a marble head on the dressing table. Silver stared at the rod she stole and used it to attack the door with magic missile. Dirk managed to get the wand from her. Silver said she wanted to get out and had been trapped like she trapped her friends. + +The door next to the lab was trapped and led to a storeroom with parchment, copper wire, shield crystals, and other materials. Crates contained bits of Silver as spare parts. Silver thought she wanted to be friends but had been just a practice vessel. She blew up the storeroom door. The laboratory door was trapped and needed a key, which was not in her room. In the guest room, a mirror had Elvish writing: "When you hold it like this you they get me first." It was very loose and contained a key in parchment. A stone under the mirror read, "you'll need something from a gift to Gavin." A hat stand had a cloak with a key in it, and the parchment said, "we made it so you need to do both at the same time." + +The library contained no grimoire, but Noxus was in the building. A project automation construction manual by Edward Browning existed in many versions. Automations were powered by a weak elemental, shield crystals, and copper to animate them. A key elven form involved binding one's own spirit to it. "Instructions for creating sentient jewellery" by Cardonal was written in Celestial. Sentient items needed a soul. The party managed to stun Silver and lock her in the dining room, then opened the laboratory. + +Inside the laboratory, Gardwal armour was piled as though to remind the mistress of shame. There were practice enchanted items. On the desk was a copper astrolabe containing a red gem. A voice came from the crystal and asked who the party were and what year it was. It had been 907 years. The speaker knew or was unsure that the necklace would survive her friend [unclear]. Enwi was being protected by Goliaths. Nobody knew the city was there, due to Browning's doing. Silver had taken over the body from the ring. + +Silver's defence mechanisms were extensive. The voice fell silent when told that Gardwel had escaped. She held the barrier, constructs, and Silver in check in all ways. A barrier shock might help remove Silver from the body. The party planned to trick Silver into opening the door. Silver tried something, was propelled across the room into shelving, slumped against the wall, and the lights in her eyes went out. When the party tried to take her to the barrier, Cardonal said she was still active. She woke up by the portal room. Dirk threw her into the barrier, destroying the soul, and Cardonal then took over the construct. + +At 13:00, "Acore Iceland" was recorded. The Ancient One was Cardonal's friend and had tried to save her. Enwi's apprentice seemed to have been the end of Garadwal's sanity. Gardwal had been locked up after consuming the void's lieutenant and slaughtering the rest of the Duncan people. He was the leader of the Duncan people. An alliance with the gods had created the barrier to entrap the other "gods." The dragon crashing into Grand Towers had been enough to weaken the prisons so Garadwal could escape. + +Cardonal could provide codes for other teleport circles. There were seven prisons, five labs, Browning's inaccessible the last time, and three Grand Towers levels: factory, control room, and meeting level. Other sites included the gate in the mountains earthwise of Coalment Falls, Coppermines at Arthur, the impact site earthwise of Goldenswell, the menagerie at Riversmeet, the Goliath city, and one location close to each pylon. An additional dwarven city had disappeared. Rubyeye had a connection to both the missing dwarf city and the missing Goliath city. + +The Elemental Princes were described as having made a pact with the gods, who worried they would want extra power like the other elementals. The listed princes were Salinas of salt, Limus Vita of ooze and friendly, Iceblus of ice and a monster cow, Arasarath as a swirling humanoid dark cloud, Merocole as a spider-like figure with a torso ball of smoke and thumping demon, Gardwel who consumed one of the two void princes, Papa I Meurina as a crab with three snake heads and magma, and Valententhidle, who had extra precautions with Galetea the automation. Valententhidle appeared as a female human with ashen skin, faded so that only her eye was visible. Gardwal might not know where the other prisons were. Cardonal could be contacted with fixed Enwi. + +At 14:00, the party headed to Garadwal's prison. A storeroom door opened into smashed ruins. Runes were scratched or torn away near acid burns, with toys intertwined with copper, coins, and other debris, and the smell of rotting corpses. It was a dragon nest, containing dark green-black egg shells and a tiny dragon corpse with very green skin and a hint of black, more perodlus colouring than Infestus. Poison or acid erosion surrounded the prison circle. The dragon was a young adult. The treasure appeared to be from Dunengend, with copper coins. A standout coin showed a well-chiselled man on one side and a funnel on the other, identified as Goliath coins. + +A very muscular and odd-looking dragon approached, with a repulsive head, no horns or ridges, no lips, and an attic-like inbred appearance. Inqueshwash thought Dirk looked tasty and said his mother sent him to be eaten. A void elemental blamed veridican dragonborn for Gardwel's escape and said "Dragon." The party were originally known as the exiled hundreds of years ago. The Perodot princess was very well known, and the party might need to see Provista Town Hall for the history of other tribes. + +Browning had put out the word that he died of old age so he could bring in the magisters and Justiciars to act as his proxy. Enwi's spellbook was locked by one of Cardonal's creations, and she changed it so that it was attuned to Geldrin. Automations were identified as Explorer, one guarding Valententhidle's prison, and the overseer of the factory. + +The party teleported to Iceland but landed 24 miles away. They walked for six hours before remembering they had a stone and messaging Iceland to come at 21:00. Iceland found them: a very old dragon with cataract eyes and arctic hares amid its scales. He had been coming to see the party, but the messages had not come through. He explained that visions have a likely outcome, but that outcome tends to lessen when he sends the visions. He had tried to help Dirk's people with Heurhall. + +Iceland needed the party's help with the prisons. The shimmery one required taking another dwarf with them and levers. Nothing had yet been destroyed at Ice's prison, but there were visions that it would be. The black spider thing was "touch and go," and the party had some treasures with them. Iceland had seen a two-headed green dragon, Dirk's glowing sword as his favourite, the pirate and Excellence, and Browning still in the tower. The part where Geldrin stood on the tower made Iceland think Browning could have done with an umbrella. + +# People, Factions, and Places Mentioned + +Freeport, the Castle, the Drunken Duck, the Jewelry District, Baytail Accord, Grand Towers, the Underbelly, the Brass City, the desert laboratory, Aquaria, the Great Tower, the factory, the music room, the laboratory, the portal room, the barrier, Coalment Falls, Arthur, Goldenswell, Riversmeet, the Goliath city, Dunengend, Provista Town Hall, and Iceland were all mentioned. + +Alana, the merfolk, Guardseen, the Huntmaster, Princess Aquunea, Salt elementals, Basilisk, the Baroness, the sergeant with the necklace, Valenth Caerdunel, Arxion, the Little Finger, tabaxi, automations, Silver, the mistress, Rubyeye, Cardonal, Browning, Enwi, Joy, Heurhall, Garadwal/Gardwal/Gardolwal/Gardwel, Muttowh, Hephaestos, Rubodueul, the Duncan people, Aranthium, Elementarium, Excellence, Dirk, Eliana, Geldrin, Noxus, the Ancient One, Enwi's apprentice, the gods, Salinas, Limus Vita, Iceblus, Arasarath, Merocole, Papa I Meurina, Valententhidle, Galetea, Inqueshwash, veridican dragonborn, the Perodot princess, magisters, Justiciars, Explorer, and Iceland were all mentioned. + +# Items, Rewards, and Resources + +The party found white powder causing visions, a jeweller's chain on a snail, a potion of magical energy that restores one spell slot, silk and parchment interleaved with runes, two portions of white Rose powder for which Taina gave 1000 gp, and the active Censer of Noxia, which can enrage and control water elementals. Access to the Black Scales "door" required a Grand Towers penny. + +Other resources and objects included the cart and padlock at the Castle, Schnupps from the Brass City, tabaxi "Dew," wine from 37 BD, white roses in the laboratory, defensive automations, a teleport circle from the factory, a golden band with a smashed ruby resembling Eno's ring, a sending stone and note reading "I'm coming to get you," a harp tube or rod taken by Silver, sheet music for "Betrayal," a wand used for magic missile, spare Silver parts, parchment, copper wire, shield crystals, two keys hidden with mirror and cloak clues, Browning's automation construction manuals, Cardonal's Celestial instructions for creating sentient jewellery, practice enchanted items, a copper astrolabe with a red gem, teleport circle codes, Enwi's spellbook attuned to Geldrin, and Goliath copper coins from Dunengend. + +# Clues, Mysteries, and Open Threads + +Day 24 was not found as a confirmed boundary, so this narrative preserves the continuous Day 23 material until the next confirmed Day 25 start without inventing a Day 24. The white powder visions, including the basilisk, salamanders, Arabic writing, white dragon, black void, and cold blue eyes, remain unexplained. The merfolk abduction beyond the barrier, the missing noble wife from the pact possibly called Sneul, the city of Onyx, the war with the Salt elementals, and the Black Scales "door" remain active threads. + +The shared dreams over Freeport contradicted one another and may have come from the Ancient One, making their predictive value uncertain. The sergeant simply walking off after the necklace was removed, the Baroness's connection to Valenth Caerdunel's necklace and her sister as a ring, the Justiciar possibly looking for the party, and the choice to skip Baytail Accord for the desert laboratory all remain significant. + +The desert laboratory established that Silver, Cardonal, the mistress, Rubyeye, Browning, Enwi, the automations, and the sentient rings or jewellery are deeply connected. The exact identity of the voice in the red gem, the phrase about the necklace surviving her friend, the role of Noxus in the building, the threat implied by "I'm coming to get you," and Silver's shifting control remain uncertain. Sentient items requiring souls, Silver as a practice vessel, and Cardonal taking over the construct are major open consequences. + +Garadwal's escape appears tied to the dragon crashing into Grand Towers weakening the prisons. Garadwal consumed a void lieutenant, killed Duncan people, and may not know the other prison locations. The seven prisons, five labs, missing dwarven and Goliath cities, Rubyeye's connections, Elemental Princes, prison-status systems, and Grand Towers control levels remain central campaign threads. Iceland's visions point toward threats at Ice's prison, the shimmery one, the black spider thing, a two-headed green dragon, the pirate, Excellence, and Browning still in the tower. diff --git a/data/4-days-cleaned/day-25.md b/data/4-days-cleaned/day-25.md new file mode 100644 index 0000000..b284561 --- /dev/null +++ b/data/4-days-cleaned/day-25.md @@ -0,0 +1,41 @@ +--- +day: day-25 +date: 10th Tan 101 +source_pages: + - 81 + - 82 + - 83 +complete: true +--- + +# Narrative + +Day 25 was Friday, 10th Tan 101, with 9 days to Arrynoon and 5 days to Autumn. The party was at Coalment and headed down to the Ice prison on Ice Fang's back. As they passed Snow Sorrow, the weather became very stormy. + +They approached Rimewatch, an outpost around the pylon, and then headed to the town. The town was in a much worse state than when they had left. A white dragonborn took them to the inn. + +The party learned that 20 years ago someone briefly woke up. The notes record a warning or prophecy involving dragons breathing the Terror of the Sands out of her prison: "They plot again there pair they plot again" and "And before the black one was cast out they plot again". One person stood and said, "The mother of many & the mother they plot". Peridita was identified in connection with this, though the notes also ask whether "the mother" could be Duncan's mage. + +Dragon full names and titles were recorded. Infestus was "bane of multitude," "slayer of Ruby eye," black, and father of the veridican. Peridita was "The Choking Death," "The whispers in the dark," and "Mother of many," and was green. Calemnis Bereth, also written as Girth or literal green again, was wife of death and veridican. + +Two plots were identified: the first to get rid of certain cities, and the second to break out Garadwal. Most townsfolk were dragonborn and Ice dwarves. The Howling Tombs were identified as where the storms start from. A different Justiciar was present, and the party was not sure whether they knew of them. The party obtained winter clothes that granted advantage against severe exposure. Grubins would take them to the Howling Tombs at 7am the next morning. + +Rubyeye had created his own readout of prison status. It required a humanized effigy of the spirit and runes drawn on it, connected both to the prison and to the runes on the prison. Iceland and Arasarath's prisons were discussed. Refugee camps had been arranged for Garadwal's people. The Grand Tower control centre was accessible and could be used, along with wheels from Rubyeye's lab. + +When shown Salina's runes, the party learned that they needed to go back to Enwi's lab. Enwi had been tapping the life force from his prison, and the shade to the system had been replicated across all prisons, weakening them. Access to the Ice prison was through Enwi's basement with the automations. Three automations were noted, with a shutdown button in the control room. + +# People, Factions, and Places Mentioned + +Coalment, Snow Sorrow, Rimewatch, the pylon, the town, the inn, the Ice prison, the Howling Tombs, Grand Tower, Rubyeye's lab, Enwi's lab, Enwi's basement, the control room, and Arasarath's prison were all mentioned. + +Ice Fang, the white dragonborn, Infestus, Rubyeye, the veridican, Peridita, Calemnis Bereth/Girth, Duncan's mage, Garadwal, dragonborn, Ice dwarves, a different Justiciar, Grubins, Iceland, Arasarath, Garadwal's people, Salina, Enwi, and three automations were all mentioned. + +# Items, Rewards, and Resources + +The party gained winter clothes that provide advantage against severe exposure. Rubyeye's prison-status readout required a humanized effigy of the spirit, runes drawn on it, a connection to the prison, and a connection to the runes on the prison. The accessible Grand Tower control centre, wheels from Rubyeye's lab, Enwi's basement route to the Ice prison, and a shutdown button in the control room were all noted as useful resources. + +# Clues, Mysteries, and Open Threads + +The warning from 20 years ago points to dragons plotting again, dragons breathing the Terror of the Sands out of her prison, and a connection to the black one being cast out. Peridita may be the "mother of many" and "mother" in the warning, though the notes preserve uncertainty over whether the mother could instead be Duncan's mage. + +The named dragons and titles connect Infestus, Peridita, Calemnis Bereth/Girth, Rubyeye, the veridican, and Garadwal to two plots: removing certain cities and breaking out Garadwal. The Howling Tombs appear to be the source of the storms. Enwi's tapping of life force from his prison has weakened the replicated prison system across all prisons, making Enwi's lab, the Grand Tower control centre, Rubyeye's readout, and the automations in Enwi's basement urgent open threads. diff --git a/data/4-days-cleaned/day-26.md b/data/4-days-cleaned/day-26.md new file mode 100644 index 0000000..fe4fac2 --- /dev/null +++ b/data/4-days-cleaned/day-26.md @@ -0,0 +1,105 @@ +--- +day: day-26 +date: 10th Tan 101 +source_pages: + - 83 + - 84 + - 85 + - 86 + - 87 + - 88 + - 89 + - 90 + - 91 +complete: true +--- + +# Narrative + +Day 26 was Saturday, 10th Tan 101, with 8 days to Arrynoon and 5 days to Autumn. The notes begin at Coalment with a series of dreams. + +Inwar dreamed of a meeting hall filled with red-bearded dwarves. He arrived at a large platinum chair, where a concerned dwarf sat while a smaller [unclear] person told him something. They strode out to an Ironforge-type building where magma was held back by a dome. A dire crab with multiple heads seemed to be trying to get through, and magma was coming through the dome until the king chanted and the dome closed up. + +Dirk dreamed of an obsidian city where black Dragonborn strode around as if they owned the place. The scene was animated and included a town-hall-style building. Two black Dragonborn stood beside an archway with mosquitoes on the shield. Beyond the archway, Infestus spoke to Garadwal. Infestus looked cross, then stabbed a coin into the portal and Garadwal went through. + +The narrator dreamed of a barren desert, stepping back and falling into a hole containing the dragon in Garadwal's prison. They landed on the dragon, which flew out to the edge. Another abnormal dragon appeared, with two heads, extra wings of some kind, and an arm. The two dragons nuzzled and cackled. The ground opened next to them, then went vertical, and a void voice said, "where is he I know you know". + +Geldrin dreamed through someone else's perspective in a plush human bedchamber, rich but without style. The viewer walked out through a long corridor with old, similar pictures of the guild, then entered a large stone chamber that felt like a different place. Eight statues stood around the room with runes. The route continued down another corridor to a teleport circle, then turned left 10 times, through another room and corridor, and a couple more left turns. In a room with an old withered man in bed, the person Geldrin was seeing through took a box from the pillow and replaced it. The person did not look like Browning. + +Dogs were waiting for the party. They headed toward the hunting tents on the sled through very stormy weather. At 06:45, about 10 minutes away, the dogs veered off toward a body in a snowdrift: a Humein in robes, dead for a few days. The robes looked like monk or priest garb, possibly of the Norian God. + +Dark grey clouds burst out from over a hill, apparently above the prison. The effect looked like a geyser through a crack in the ground. Some tents had been blown over. The party found a purple crack where digging seemed to have taken place. A snow haunt had settled in the middle over a barrier, reaching more toward the snow than the normal barrier, and had apparently been there for a few years. The tents looked torn by claws, perhaps bird talons. + +A satchel contained six copper orbs with runes, like those seen in Seaward, though these seemed empty. Pale blue rocks had been there for around 3 months. When an orb was thrown at the floor barrier, it went through. Five normal rocks had been laid in a circle with smooth rocks in the middle, around dwarf size and hollow-sounding, possibly eggs. A bird screech announced an ice-white eagle, which attacked. The bird killed Grubins, and Atom fell, with no reviving him. Five babies were noted. The sled was secured by or with Grubins and the dead robe-wearer by one of the tents near the prison entrance. Visibility was very poor, and the entrance seemed burst open. + +There was no chance of getting through the door. At 15:00, the party used a teleport scroll to Cardenald's place. Cardenald could fix the prison in person, but Envi's was the prison that needed to be fixed first. The robed dead man had pooling blood and full-injury talon marks, and had been dead a few days. He wore a necklace: a holy symbol of Noxia with a lightning bolt, a small offshoot of Noxia, [unclear: psyons] of the hidden Prince, who worship thunder and storms. + +The spheres were containment devices for elementals. The party used speak with dead on the robed man. His name was Anrasurall. He had come to try to free him, had been given the runes, and said he did not miss: he got into the circle and fired out of the front, then was ravaged by the bird. He had not taken elementals with him. His home was Baytail Accord. + +At 18:00, the party headed to the life prison. The room had once been stone but had become flesh, pulsating across the whole room with eyes, veins, and other features everywhere. It was high-level Carnamancy to craft this fleshy thing, perhaps created by "The Mother". Dispel magic turned it into 14 fleshy parts of [unclear]. Isabella noted humans, dwarves, elves, and others, but no bones or teeth. Through the doors was a golem made entirely of teeth. + +A message said, "Sorry Couldn't be here, gone fishing with a friend!" and "Hopefully we'll catch some big ones". The note asks whether to kill it. The party advanced to the prison room, where Mother threatened them. They believed she was in Baytail Accord with Garadwal. + +Limnuvela was dying. Too much energy had been siphoned from him. Mother had tried to absorb him, but he was too much for her, and he was holding on to keep the barrier up. His barrier had a copper pipe in the top where Mother siphoned energy. The party moved the pipe to the floor to try to heal him, then poured a pouch of White Rose powder on it, restoring some health. If the prison were fully closed, the elemental would be in stasis; removing pylons would slow it down. + +The party went to Envi's lab. The door was shattered, and bits of automaton were scattered around the room and across the lab. Garadwal had been in the Blackscale yesterday and was now back in the dome. Baytail Accord had "kicked off" in the last hour. Blackscale was using the party's kings as servants. The boss liked the barrier because it kept his head in one place, and had told Garadwal not to bring down the barrier. The party levelled up. + +The party teleported to Baytail Accord, leaving Cardenald behind at the life prison. At 19:00, they arrived in a temple half on land and half in the sea. A hammerhead shark-man god was shown on the wall. A glowing parchment lay inside a glass dome under the water. Sickly green flames rose from buildings in town, and many townsfolk were dead while Garadwal hovered above. There was an unnatural amount of rat poo on the harbour, and the Mermaid of the city was in trouble. + +The party contacted the void elemental, who was on his way. Garadwal tried to find something. A 15-foot square in front of Garadwal was unnaturally empty of debris. A monstrosity was attacking the hatchery. The void elemental appeared and was trapped by a dome. Geldrin tried to dispel magic; it seemed to do something, but the dome remained. The party managed to kick the runes away and let the void elemental out. + +A horrible boob-covered form appeared, apparently The Mother. The party sent a message for help to Basaluk. He appeared with a tabaxi and his boss. Garadwal teleported out, and the void elemental also disappeared. The Mother died. + +The party needed to check on the Hatchery. Basalisk returned to other important things. Everyone was thanking the merfolk for saving them, and the rest of the town seemed all right. The party checked Mother's corpse, which had fallen apart. Geldrin found a spellbook on her with the same cipher as Envi's and the same spells as Envi's. + +The party collected visitor shells and headed to the Hatchery, where dead gilled ghouls lay under the water. Pact keeper Inara and seven other Pact leaders sat around the table. Four had been met before, and three others were present. Guardfree brought out chairs so the party could sit and join them. The leaders named included Visca of Fairshore, Hanna of Fishbait's Edge, Lana or Alana of Azureside, and Aquena outside the barrier, a princess. + +All pointed toward the glowing parchment, saying "on our hooper preserve the pact". The party became known as "Saviours of the Pact". A baby girl had been born, the first in 20 years. She had no name yet because they needed to consult the records. Princess Aquana came in with the baby. Three younger girls were in training to become Pact Leaders. + +The Pact had a route outside the barrier. Those not serving as Pact leaders tended to leave. Outside the barrier, one birth in 100 years was typical; inside, there had been a few each year until recently. They believed there was a curse and that the barrier protected them from it. The party told them Cardenald was back. + +Azureside records said the Goliaths were wiped out by the Green Dragons. Travelers did not appear to have returned from an area with lots of green-dragon-type creatures. Perodita's new mate was Kortesh Gravesings, also her son. He attails the boons, wears a metal helmet lined with finger bones, and wears metal hooks with trophies from his kills attached. Azureside generally calls him "The Twisted". At least five features or creatures were noted: two heads, weeping pores, an alien head, and no lips. + +Azureside had called for help from Grand Towers but received none. A Justicar had recently headed to Hearthmoor to check the plague. The last contact with the Goliaths was approximately 900 years ago. Lady Aquena would stay for a while and leave her offspring. + +Hanna of Fishbait's Edge had little to report beyond colder weather and a few storms. Dine Springs had lost a few loggers. Visca of Fairshore reported the Baron attacking her people, issues with tracking, nefarious shipments from Seaward, and threats involving gnoll attacks that stopped after a raiding group was cleared out. The Fuse Swords and Invar were mentioned. The party believed that was Brother Fracture, and that the people were rescued. + +Alana reported a break-in at the menagerie. Many things had been stolen, and the Magisters had issued fines for black-market animals. Geldrin thought of the farmer in Everchard. + +The merfolk had a messenger bird named Terry. Terry carried messages: one said there was an unprecedented amount of instability and forces were out enforcing city-states with no cause for concern. Another said all were required at the noble council meeting on the next Trimoon. Another said Dunesend State was uncompliant because it had not sent troops to fight giants. Another said the Seaward barriers had been fixed by the gushiers; two were seen, plus an unknown one called Gendrin, which made Geldrin furious. There are five dukes on the noble council: Duchess Lauleriere of Freeport State, Duke Humbersinthesand of Dunesend State, Duchess Hearthwall of Hearthwall State, Duke Norman Goldenswell of Goldenswell State, and Duke Torrain Freefellow of Snowsorrow State. Azureside may be on the edge of Dunesend State. + +Terry received a message from Erroll, establishing two-way communication. Valenth was present and reported something going on: the place was lit up like a Christmas tree, the barrier was flickering, and an energy surge had started about half an hour earlier. The Mother had repurposed Envi's clone in Envi's lab. Valenth planned to investigate, then decided not to go. He heard a noise and saw Joy heading away, not to a specific circle. + +What The Mother had done seemed impossible, since a clone should be a clone of yourself. They did not think it was possible to set another clone outside the 120 days, and did not think The Mother knew Valenth was there. There were no records of the mages' laboratories; all were thought to live in Grand Towers. Errol and Terry were linked now, but not connecting the others. The party requested that Tiana look after their items in Freeport. + +Dreams were discussed: over many years they could be saved, and many recent dreams showed who the party are. The plan was to go to the Salinas Statue to fix that. The party stayed in a tavern called Bounty of the Sea. + +# People, Factions, and Places Mentioned + +Coalment, Inwar, Dirk, Geldrin, Browning, Garadwal, Infestus, Blackscale, the void voice, red-bearded dwarves, the concerned dwarf, the smaller [unclear] person, the king, the guild, the old withered man, Cardenald, Envi, Anrasurall, Noxia, [unclear: psyons] of the hidden Prince, Baytail Accord, Limnuvela, The Mother, Isabella, Grubins, Atom, Humein, Norian God, the ice-white eagle, elementals, Seaward, Garadwal's prison, the life prison, Envi's lab, Basaluk/Basalisk, the tabaxi, the boss, the void elemental, the Mermaid of Baytail Accord, the Hatchery, Pact keeper Inara, Guardfree, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, Aquena/Aquana, Princess Aquana, Pact Leaders, merfolk, gilled ghouls, Grand Towers, Green Dragons, Goliaths, Perodita, Kortesh Gravesings, The Twisted, Justicar, Hearthmoor, Lady Aquena, Dine Springs, the Baron, Seaward, gnolls, Fuse Swords, Invar, Brother Fracture, Magisters, Everchard, Terry, Erroll/Errol, Valenth, Joy, Tiana, Freeport, Salinas Statue, Bounty of the Sea, Duchess Lauleriere, Duke Humbersinthesand, Duchess Hearthwall, Duke Norman Goldenswell, Duke Torrain Freefellow, Freeport State, Dunesend State, Hearthwall State, Goldenswell State, and Snowsorrow State were all mentioned. + +# Items, Rewards, and Resources + +The party noted a large platinum chair, the portal coin Infestus stabbed into the portal, a box taken from and replaced by a pillow, the sled and dogs, six empty-seeming copper rune orbs like those from Seaward, pale blue rocks present for around 3 months, five hollow smooth rocks or possible eggs, visitor shells, a holy symbol of Noxia with a lightning bolt, elemental containment spheres, the runes given to Anrasurall, a golem made of teeth, a copper pipe siphoning energy from Limnuvela, a pouch of White Rose powder, pylons, automaton fragments in Envi's lab, a glowing parchment under a glass dome, runes used to trap the void elemental, Mother's spellbook in the same cipher as Envi's and containing the same spells, Pact chairs brought by Guardfree, Azureside records, Terry the merfolk messenger bird, Erroll/Errol's linked communication, and the party's items in Freeport under Tiana's care. + +The party gained the title "Saviours of the Pact" and levelled up. The new baby girl in Baytail Accord was the first born there in 20 years, though she had not yet been named. + +# Clues, Mysteries, and Open Threads + +The dreams pointed to multiple unresolved threats: a magma dome and multi-headed dire crab in a dwarf or Ironforge-like place, Infestus sending Garadwal through a portal with a coin, Garadwal's prison and abnormal dragons, the void voice asking "where is he I know you know", and Geldrin's vision of someone replacing a box near an old withered man after passing through guild imagery, statues, runes, and teleport circles. The identity of the smaller [unclear] person, the box, the old man, and the viewer in Geldrin's dream remains uncertain. + +The prison near the hunting tents had burst open, with a snow haunt, claw-torn tents, pale blue rocks, hollow rocks or possible eggs, and an ice-white eagle guarding or attacking the site. Anrasurall had tried to free someone using given runes, claimed he did not miss, and was killed by the bird; who gave him the runes and exactly whom he tried to free remain open. + +The life prison had been converted into flesh by high-level Carnamancy, possibly by The Mother. Limnuvela was only holding on to keep the barrier up after Mother siphoned him. The prison mechanics remain important: a fully closed prison puts the elemental in stasis, while removing pylons slows it down. + +Garadwal's movement through Blackscale, the dome, and Baytail Accord remains unresolved. Blackscale was using the party's kings as servants, and the boss wanted the barrier maintained because it kept his head in one place. The meaning of that head and the boss's relationship to Garadwal remain open. + +The Mother died at Baytail Accord, but her ability to repurpose Envi's clone seemed impossible under known clone rules, especially outside the 120 days. Her spellbook matched Envi's cipher and spells. Valenth saw Joy during the barrier energy surge, but she was not headed to a specific circle. + +Baytail Accord believes a curse affects births outside or around the barrier: outside the barrier, one birth in 100 years was typical, while inside there had been several a year until recently. The first baby girl in 20 years, the glowing parchment, the Pact, and the route outside the barrier all remain significant. + +Azureside records say the Goliaths were wiped out by Green Dragons, with no contact for about 900 years. Perodita's new mate Kortesh Gravesings, also her son and called The Twisted, appears linked to monstrous green-dragon activity. Grand Towers did not respond to Azureside's call for help, and a Justicar had recently gone to Hearthmoor to check the plague. + +Reports from the Pact leaders point to wider instability: colder weather and storms near Fishbait's Edge, lost loggers at Dine Springs, Baron attacks and nefarious Seaward shipments near Fairshore, a menagerie break-in and black-market animal fines, Dunesend not sending troops against giants, and unusual Seaward barrier repairs by gushiers including an unknown "Gendrin". The noble council meeting on the next Trimoon remains pending. + +The party planned to go to the Salinas Statue to fix that, while Cardenald was back and the party's Freeport items were entrusted to Tiana. Dreams may have been saved over many years, with many recent dreams showing who the party are. diff --git a/data/4-days-cleaned/day-27.md b/data/4-days-cleaned/day-27.md new file mode 100644 index 0000000..bea816c --- /dev/null +++ b/data/4-days-cleaned/day-27.md @@ -0,0 +1,100 @@ +--- +day: day-27 +date: 11th Tan +source_pages: + - 91 + - 92 + - 93 + - 94 + - 95 + - 96 + - 97 + - 98 + - 99 + - 100 +complete: true +--- + +# Narrative + +Day 27 was Sunday, 11th Tan, with 7 days to Trimoon and 5 days to the auction. A note records "Gull level down". Geldrin needed 4-5 hours to calculate the shard's trajectory. Cardenald came to Baytail Accord and helped Geldrin calculate it. The shard would probably still hit Grand Towers if nothing changed. If the party stopped another shard, it would not be on course for ship 2. Garadwal was possibly setting up another plan. Cardenald was to go to the Salinas statue with merfolk and destroy it. + +The party teleported to the statue close to Dunesend, a giant statue of Serra. Two guards were at the statue: one sphinx-tabaxi with ebony skin and human features, and another with reptilian hide skin and spears. At 12:00, the party headed down to Dunesmead, which shone blue and orange and had a very Arabic style. + +The townsfolk had many piercings, and ear tunnels seemed very natural. A guard approached the party, thinking they might require refuge. Gelinn or Geldrin might not write new spells because laws had been in place for 1,000 years. Refugees were housed in the water gardens. The rules were no alcohol, no spell writing, and no worship of liar or darkness. + +Many deaths had occurred in the city. Vulturemen, Arahuoa, were mentioned, along with a moving fort in the desert. Mother and Father were not hurt. The party met a friend of Dirk and healed his shoulder. Fire Demons had attacked at night; snake-lizard people attacked back, and when the snake-lizard people retreated the demons stopped attacking. The demons were led by a fiery demon with two arms, and some people had been attacked by a green dragon. A good place to smoke down the road was called Deserts Haze. + +The Father held open courts, usually as the heat cooled off. The court included Father, Mother, Hearth Master, and Huntsmistress. A little girl with an afro approached and said her mum told her to be careful of dragons, a message that seemed intended to scare her off. At 14:00, the court was expected around 4pm, and the party could get an appointment if they were agents of the excellence, meaning Infestus. + +Guards dragged a vulture bird-man into the courtyard. He was apparently one of the assassins lurking in the deserts and may have killed the Chancellor. The party went to the bathhouse, then returned to court at 16:00. Father Haithes [uncertain] wore many copper earrings and a copper marygal chain associated with the God of Altarrb. Mother was a human Dunar lady named Egraine Brook, associated with the goddess of life, fertility, and harvest. + +The Father said they had captured one of the assassins and believed him to be the murderer. The party went through to an atrium or court area and joined the queue. The Hearth Master had flames for hair. The Huntsmistress had red braided into her hair and dogs dyed red. The party became known as "The Slayers". + +The Vulture birds were infiltrating, but nobody knew how. They had recently become sloppy. Ennui the betrayer was mentioned. The Mother had healing powers, as did "The Mother"; Ennui had stolen it, which was the reason no spells could be written. The Mother did not have the ability to alter memories. Someone in the court was looking for the ancestral grounds of the Goliaths, and many people had asked about them over the last day. The Hearth Master brought trade logs showing trade stalls and confirming the party's map. + +Three Vulture men seemed to be leaving feathers behind. The assassins had attacked within the last week. The party wanted to speak to the captured bird-man and needed a broken claw to see him. He said he had not done anything, which seemed true. He claimed none of his people had gone missing, which was a lie; hunters had gone missing. Dirk unchained him. Feather colouration might show who was responsible. + +A blowpipe dart appeared in the bird-man's neck. A guard in the room started running away, and the party chased him. Ball bearings were thrown and missed, but he seemed to stumble even though they fell behind him. Geldrin cast Wall of Fire, and the guard turned into a weird lion-woman thing. The party killed her, catching both legs. The Huntsmistress returned with the feather and said trouble really does follow the party around. The party picked up the blowgun and received the feathers, which were similar to the arakobra feathers. + +The bird-man recognised the feathers. The attackers were after his master because the master had done something. One looked like Stilix, who was missing. He gave Eroll a message to the master. Two guards were present; one was letting the other speak and seemed off. Agugu was questioned and felt like metal underneath. When his arm was cut, he had a delayed reaction, then tried to run. The party grappled him. He said "unit compromised - core overload" and exploded, consuming the body completely. The party found fragments of a core cage. Agugu had a wife and had been around about 5 years. + +The party was taken to a room. The bird-man's boss was in the Elven Ruins and was a six-legged cat-man. The only Elven Ruins known to the party were Grand Towers or Valenth's lab, and Eroll flew off firewise from Dunesmead. Searching the room, the party noticed soil that was different. When they pulled it out, a small mechanical spider came from the pot: an automaton, possibly an Eroll-type device. Eroll returned with mission success: the message had been delivered. + +A message from Cardenald reported that the Salt was sorted. Seaward should be fixed, but something else seemed to be affecting the barrier. He had to use magics and other means to get there quicker. Eroll had forgotten he gave the party the message. Dirk told the spider they could do with a chat. A Dunar guard knocked on the door and turned out to be another automaton. It did not know why it was there. The whole place was riddled with automatons. It was a prisoner, not part of the barrier, under Grand Towers, and not one of the three. The control room was completely empty of people. + +"The guilt" was one of its names. It kept calling the narrator sweetie. It knew who was behind the message from Cardenald and wanted to make a deal, saying it had been freeing itself to communicate again. It could reset the control room and would do one as a show of help. It laid a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It said there should be five of the party after all, but because there were four they had gone under the radar. Alistair in Everchard was the same as with the wizards, as one disappeared upon barrier creation. It would fix a prison to show it would help. The prisoners hardly existed when it was imprisoned. The party chose Valenthide to fix first, and Geldrin saw him. + +There were many spiders around. The party thought the imprisoned being under Grand Towers might be light or dark. The Huntsmistress reported that many automatons had been located and blew up when confronted. No other lion-beast things had been found. Grand Huntsmen in Grand Towers had been contracted. The Goliaths might be linked to the matter. Haemia, the lion lady beast, was a creature created by a dark power. The notes ask whether Darkness and Light Excellence exist. The Haemia might be trying to make space or clear out. + +The guards were allowed to go home. Two guards stayed at the palace entrance, others guarded Mother and Father, and everyone was on high alert. At 17:50, the party went walking and told the Huntsmistress about the bugs and the likelihood that more than one thing was going on. Geldrin could use his compass to detect the automatons. The Huntsmistress was not one. Two guards on the gate were not. The party checked priests in the temple; they were wearing armour despite the boiling heat. Three priests and Duners gave no reading. + +Huntsman Indanyu, second in command, went to another room to talk. A broken bowstring was in the room. The party told Indanyu about things; he had not heard anything, but the people were talking about the murders. His attacked sisters were potential new mothers. A side note identifies Mother as Igraine, life, pleasure, and harvest, and Father as Altarrb. + +A week earlier, about three shops had been turned over, with nothing taken, out of about ten shops in total. Fire creatures seemed to have made an encampment close to the barrier, around where Geldrin's calculations pointed. They looked like Salamander-type men. A Lamasu, a sixteen-legged cat beast, was allegedly a creature of good. Dirk sent a message to his dad via Eroll. They did not know if they could get an army to help, but could send a message to scouts near the camp and get word back by morning. + +The party visited the Sister obligators. One attacked shop was for lovely modifications. Three people protested outside. A red-skinned Dragonborn tried to move them along. The proprietor apparently had another shop in Brookville Springs and was sharing their secrets. The place looked like a tattoo parlour, run by a woman with a tribal look. Dirk wanted a tattoo. She had opened a shop, and people worried they would lose the knowledge. She was the only one to have done so far. What they did was on the edge of what they should do, but helped them earn money. She was not sure her skills could be written down. Geldrin said he had seen the book. + +Other break-ins seemed as though the culprits were searching for something. They happened every other night, so one might occur that night. Geldrin planned to ward the shop when it closed in 2 1/2 hours. The party thought they should start at Sister Proulsothight [uncertain], who had always been on the edge of what they should do. + +At Sister Proulsothight's shop there were no protesters or guards. She asked if the party wanted refreshments and took them into a back room with mini bunks and many different drinks. She asked whether they were there for the box. When they said yes, she gave them a box like the one from Gelissa, but not the same. This was what the break-ins had been about. She did not believe them and told them to leave. The party messaged the Basilisk to ask whether she should have it or whether they should retrieve it. + +Eroll returned with a message from Dirk's sister: Dad was not available, and they should come to Salvation because help was needed. Basilisk returned a message asking how they found these things and telling them to leave it alone because they were in over their heads. + +A massive verdian or veridian Dragonborn approached the shop with two sickly Goliaths, entered, and banged on something. The party told Basilisk this was when they could reset the stone. A figure stood on one of the dome roofs. The party tried to stealth. It waited until the streets were clear and approached into the shop. The party heard words from inside the building. Invar channelled and walked toward the shop. A side note says wizards were on the payroll. + +Invar resisted, and the voice invited the party in. Uncle Hortekh told his wife the party was intervening. He threatened Dirk and the Goliaths, saying he would get him one day. The party returned to the Sisters. The heat box had been intercepted, which was the party's doing. Basilisk had been looking for the box. + +At 22:00, the party met a human named Morgana with two birds. She had been sent by The Chorus and had the pigeon who helped the party in Everchard. Her home forest, Everchard, had strange things happening in the forest, including large animals. The Chorus had sent her so there would be five of the party. Morgana had seen a bright green Dragonborn with sickly Goliaths near a poisoned part of the forest and had healed it. + +The party went to Stricker's camp. Stricker was helping out now. Morgana gave goodberries to heal some of the refugees. Stricker Senior had gone to Salvation to work out plans to get back the people who attacked them. Stricker did not know of a city for Goliaths but had seen some Green Dragons. Stricker would stay to look after the refugees but wanted to join if the party went to war. The party headed to an inn. + +The Hard Cheese was a cafe down the road for people out of towers and sold booze. One of the locals was marked by Geldrin's shield crystal and seemed to drink. The Chorus had been hearing visions from the ancient where things went bad and there was not a lot of water, waterwise. The visions went better when Morgana was there, as there should be five of them. The party sent a message to Basilisk about the Sister's shop. + +# People, Factions, and Places Mentioned + +Geldrin, Cardenald, Garadwal, Grand Towers, ship 2, Salinas statue, merfolk, Dunesend, Serra, Dunesmead, the sphinx-tabaxi guard, the reptilian guard, Gelinn/Geldrin, refugees, water gardens, Vulturemen, Arahuoa, the moving fort, Mother, Father, Dirk, Fire Demons, snake-lizard people, green dragon, Deserts Haze, Hearth Master, Huntsmistress, the little girl with an afro, Infestus, the Chancellor, Father Haithes [uncertain], Altarrb, Egraine Brook, Dunar, Ennui the betrayer, The Mother, Goliaths, trade stalls, Stilix, Eroll, Agugu, Agugu's wife, the bird-man's master, the Elven Ruins, Valenth's lab, Cardenald, Seaward, The guilt, Alistair, Everchard, Valenthide, Grand Huntsmen, Haemia, Darkness and Light Excellence, priests, Duners, Huntsman Indanyu, Sister obligators, Brookville Springs, the red-skinned Dragonborn, Sister Proulsothight [uncertain], Gelissa, Basilisk, Dirk's sister, Salvation, verdian/veridian Dragonborn, sickly Goliaths, Invar, Uncle Hortekh, Morgana, The Chorus, Stricker, Stricker Senior, Green Dragons, Hard Cheese, and the ancient were all mentioned. + +# Items, Rewards, and Resources + +The shard trajectory calculations required 4-5 hours and indicated Grand Towers remained threatened. The Salinas statue near Dunesend was targeted for destruction by Cardenald and the merfolk. Dunesmead's rules prohibited alcohol, spell writing, and worship of liar or darkness. The Hearth Master produced trade logs confirming the party's map. The party received feathers similar to arakobra feathers, a blowgun, fragments of a core cage from Agugu, and a small mechanical spider automaton from a pot. + +The guilt placed a golden ring on the bed with Abyssal writing: "He pride for a head taken, the shame for a friend betrayed yet the guilt unburdened". It claimed it could reset the control room and would fix one prison to prove its help. The party chose Valenthide first. Geldrin's compass could detect automatons. A broken bowstring was found in Indanyu's room. The party learned of a box like the one from Gelissa, but not the same, held by Sister Proulsothight [uncertain]. The heat box was intercepted by the party, and Basilisk had been looking for the box. Morgana carried two birds and had the pigeon that helped in Everchard. Morgana gave goodberries to heal refugees. The Hard Cheese sold booze. + +# Clues, Mysteries, and Open Threads + +The shard would probably still hit Grand Towers unless something changed, and Garadwal may have been setting up another plan. Stopping another shard would alter the course for ship 2. Cardenald was sent with merfolk to destroy the Salinas statue, while Seaward was reported fixed but still affected by something else in the barrier. + +Dunesmead was under multiple pressures: Vulturemen or Arahuoa assassins, fire demons, snake-lizard people, a moving fort in the desert, green dragon attacks, deaths in the city, and possible assassination of the Chancellor. The captured bird-man seemed innocent of the immediate crime but lied about whether his people were missing. Feather coloration may identify the true attackers. + +The weird lion-woman Haemia, the automaton guard Agugu, and the mechanical spiders suggest multiple infiltrations at once. Agugu had existed as a guard with a wife for about 5 years before revealing metal underneath and exploding. The guilt said the whole place was riddled with automatons, that it was a prisoner under Grand Towers, not part of the barrier, not one of the three, and that the control room was empty of people. + +The guilt's offer remains unresolved. It can allegedly reset the control room and fix a prison, but its identity, imprisonment under Grand Towers, relationship to light or dark, and motives are uncertain. It said there should be five party members, but the party having four let them go under the radar. It also connected Alistair in Everchard to the wizards, where one disappeared upon barrier creation. + +Someone in the court had been asking about the ancestral grounds of the Goliaths, and many people had asked in the last day. Fire creatures or Salamander-type men had encamped near the barrier around where Geldrin's calculations pointed. The bird-man's master was said to be a six-legged cat-man in the Elven Ruins, perhaps Grand Towers or Valenth's lab, and Lamasu were noted as sixteen-legged cat beasts allegedly of good. + +The shop break-ins seemed to target a box like Gelissa's, held by Sister Proulsothight [uncertain]. Basilisk warned the party they were in over their heads and told them to leave it alone, yet Basilisk had been looking for the box. Wizards were noted as being on the payroll. Uncle Hortekh and the massive verdian/veridian Dragonborn with two sickly Goliaths remain active threats. + +Dirk's family situation escalated when his sister reported that Dad was not available and asked the party to come to Salvation because help was needed. Stricker Senior had also gone to Salvation to plan how to recover people who attacked them. + +Morgana was sent by The Chorus because there should be five party members. The Chorus had visions from the ancient in which things went badly when there was not much water, waterwise, and went better when Morgana was present. Morgana's sighting of a bright green Dragonborn with sickly Goliaths near poisoned Everchard forest links the Green Dragons, sickly Goliaths, and Everchard's worsening forest troubles. diff --git a/data/4-days-cleaned/day-28.md b/data/4-days-cleaned/day-28.md new file mode 100644 index 0000000..6525d36 --- /dev/null +++ b/data/4-days-cleaned/day-28.md @@ -0,0 +1,41 @@ +--- +day: day-28 +date: 12th Jan 1012 +source_pages: + - 100 + - 101 + - 102 +complete: true +--- + +# Narrative + +Day 28 was Monday, 12th Jan 1012, with 6 days to the Tri-moon and 4 days to the auction. Dirk woke with an uneasy feeling and felt something tugging at his brain, possibly a scrying spell. At 5:00, this sense of being watched or contacted was noted before the party's planned business in Dunnersend. + +At 8:00, the party headed to the palace to meet the Huntsmistress for mounts and reports back from scouts. They arranged an extra mount for Morgana. The scouts brought worrying news: there was much animation around the statue, though the work was poorly done and its features could not be made out. The statue was surrounded by runes flashing red, and everyone around it seemed excited. There were about 40 Salamander men, the runes were red, and a few creatures made of fire were present. A purple-skinned creature with six arms and two tridents was also seen and identified in the notes as Excellence. + +This report differed from the one received a few days earlier. The party tried to understand whether Pride was a friend. Pride was meant to fix the prison, but instead seemed to have opened it. They called on Rubyeye, who thought he knew who the relevant figure was, saying that he and Valenth had long discussed it. Rubyeye said Browning and Ennui had something under the grand towers: an advance in the technology for creating the dome, discovered during excavation for the dome. The notes suggest that elves may have trapped him and Browning and Ennui backwards, and that something had been engineered to create the dome in the workshop or to serve as a power source for the workshop. Darkness and Excellence were both noted in connection with this. + +Rubyeye explained that the controls for the overseer, Cardenald, should be separate from the mainframe. The system was double locked by Valenthide prison and an automaton guard. Pride's prison was not connected to the barrier network. An entrapment ritual could subdue and hold beings in place by weakening them and activating the runes. + +The party suspected someone might be trying to distract them from saving the shield from crushing, setting many things in motion so they would be distracted and unable to get help. They considered visiting the elven ruins with the Vulture prisoner, going to visit mother, and asking the Huntsmistress to lend them a man. They asked about the automatons; the Huntsmistress did not know, but said someone of her talent had made them, probably Ennui and Browning. She had heard about the party's run-in with the sister the previous night and wanted proof that the vulture people were not behind the killings before she would give aid. + +The party spoke to the Vulture-man, who thanked them for helping him. He said they had not found any further Haemia. If the leaders were willing to meet each other and call a cease fire, he would arrange a meeting with his leader in a neutral place so the leader could speak with the party. A side note preserves a possible name: athruygon?. + +The party let the Vulturemen out. The Huntsmistress would ready some forces if needed. The party then headed firewise, and the Vulture-man seemed to send messages while they travelled into the Endless Dunes. At 10:00 they were underway. + +At 16:00, the party stopped for a rest and saw two very large shapes flying on the horizon, perhaps 10 or 15 miles away. Geldrin felt like he had been scryed on. The shapes on the horizon were large dragons, possibly veridian, searching in the ruins. + +The party went the other way and approached an oasis. The dragons seemed to be heading toward them, so they hid in the oasis. The dragons were young adult dragons, and one had two heads. All wildlife disappeared. The dragons knew the party was there and spoke through a purple vision of a dragon, trying to find out where the party was. She said she did not know where they were, while the party kept resisting her attempts to check on them. The dragons nearly found them, but Geldrin fooled them into thinking the party had teleported. The party then took a rest. + +# People, Factions, and Places Mentioned + +Dunnersend palace, the grand towers, the dome, the workshop, the barrier network, Valenthide prison, the elven ruins, the Endless Dunes, the ruins, and the oasis were all mentioned. Dirk, Morgana, Geldrin, the Huntsmistress, Rubyeye, Valenth, Browning, Ennui, Pride, Cardenald, mother, the sister, the Vulture prisoner, the Vulture-man, Vulturemen, Haemia, athruygon? [uncertain name], Salamander men, fire creatures, Excellence, elves, scouts, dragons, a purple vision of a dragon, and one two-headed young adult dragon were also mentioned. + +# Items, Rewards, and Resources + +The party arranged mounts from the Huntsmistress, including an extra mount for Morgana. The statue was surrounded by red flashing runes. Rubyeye described controls for the overseer, Cardenald, separated from the mainframe and double locked by Valenthide prison and an automaton guard. An entrapment ritual was described as a way to subdue and hold targets by weakening them and activating runes. The possible technology under the grand towers related to creating the dome, the workshop, or a power source for the workshop. + +# Clues, Mysteries, and Open Threads + +Dirk and Geldrin both experienced possible scrying or mental intrusion. The animated statue, red flashing runes, 40 Salamander men, fire creatures, and purple six-armed Excellence suggested that the situation at the statue had changed significantly from earlier reports. Pride may have opened a prison rather than fixing it, and it remains unclear whether Pride is an ally, a manipulated actor, or a threat. Rubyeye's account connected Valenth, Browning, Ennui, elves, the dome, the workshop, Cardenald, Valenthide prison, the mainframe, the automaton guard, Darkness, and Excellence, but the exact relationship remains uncertain. The Huntsmistress withheld full aid until given proof that the vulture people were not behind the killings. The Vulture-man offered a possible cease fire meeting if the leaders would agree. The dragons searching the ruins, including a two-headed young adult dragon and a purple draconic vision, remain a major threat in the Endless Dunes. diff --git a/data/4-days-cleaned/day-29.md b/data/4-days-cleaned/day-29.md new file mode 100644 index 0000000..1117857 --- /dev/null +++ b/data/4-days-cleaned/day-29.md @@ -0,0 +1,43 @@ +--- +day: day-29 +date: 1st Tan 107 AT +source_pages: + - 102 + - 105 +missing_source_pages: + - 103 + - 104 +complete: true +--- + +# Narrative + +Day 29 was Tuesday, 1st Tan 107 AT, with 5 days to Timnor and 5 days to the auction. The available notes begin with six red, lizard-headed, Salamander-like people. One had no legs. They were invaders from the great Brass City, from the Fire plane, and their leader was a true salamander. They wished their enemies had been killed out. + +The party was en route to Dunnersend to see whether the issues there had been resolved. The statue was incomplete. The Salamander-like group spoke of kin looking for their thorn in their sides. Luth was hiding with the vulturemen, and they had heard he was alive in there, perhaps in the dome. The party had destroyed their plans waterwise. The Salamander-like group then went on their way. + +The party continued in the same direction and came across rocks like seaweed, but with a different vein colour. Pressing a rock caused a staircase to appear, opening into a large under-sand structure. Inside was a mosaic on the floor showing a lionin creature, a four-legged sphinx, a goat-headed sphinx, and a six-legged cat-like creature with a braided beard and Egyptian headdress. The central figure had a lion body, six limbs with hand-like feet, and was flanked on each side by six vulturemen wearing Dunnen-style clothes in an honour guard style. + +Astraywoo bowed to the figure. Dirk greeted him as "Excellence", describing him as having the vultures under his wings to protect them after Gardwal failed. The party thought his brother was looking for him. The Goliaths had come to him asking for help to trap his brother. The party said they would protect him if they escorted him to see the Dunners. After being told about the automaton, he did not want to go to Dunnersend, but he may have had something to show faith. + +The notes then jump because pages 103 and 104 were missing or unavailable. The next available material records a fight with Lortesh, ending with the party killing him. Dirk took skulls. Geldin found two skulls in them, which were given to Invar. Dirk buried their dragon skulls. The party scoured the beard and took it back to town. Morgana noticed the plants starting to grow. + +The party returned to Dunnersend. Guards banged spears against shields as the party went toward the palace, and townsfolk cheered and celebrated along the way at the water gardens. Benu, mother, and father were present. The party received their support in wars to come. The time was 19:00. + +For the night, the bath house was outside Dunnen rules. The party tried to procure beer, went to the Hunt & Hearth by mistake, and received free rooms. They needed to go to the Hard Cheese. They walked into the back room, got drinks for Arvel, got cheese, and retrieved Errol. + +News arrived that the Rhelmbreaker giant had been spotted at Highden travelling waterwise. The party went to the bath house and sent a message to Busalish saying they had killed Lortesh. + +Errol hopped onto a message table. A message or voice said, "make your decision (Anite!)" and said it had made a mistake controlling the wizard and accidentally opened the prison. It was very happy the party had killed the dragon, and happy when people were proud of themselves. The party then headed to the inn and slept. + +# People, Factions, and Places Mentioned + +Dunnersend, the Fire plane, the great Brass City, the dome, the under-sand structure, Dunnen, the palace, the water gardens, the bath house, Hunt & Hearth, the Hard Cheese, Highden, and the inn were all mentioned. Dirk, Geldin, Morgana, Invar, Astraywoo, Excellence, Gardwal, Luth, Lortesh, Benu, mother, father, Arvel, Errol, Busalish, Anite!, the Dunners, the vulturemen, Goliaths, guards, townsfolk, Salamander-like invaders, a true salamander leader, and the Rhelmbreaker giant were also mentioned. + +# Items, Rewards, and Resources + +The under-sand structure was opened by pressing a rock among seaweed-like rocks with a different vein colour. Its floor mosaic showed a lionin creature, sphinxes, a six-legged cat-like figure with a braided beard and Egyptian headdress, and vulturemen in Dunnen-style honour guard clothing. After Lortesh was killed, Dirk took skulls, Geldin found two skulls in them, and those were given to Invar. Dirk buried the dragon skulls. The party scoured the beard and took it back to town. They received support from Benu, mother, father, and the people at Dunnersend in wars to come. They also received free rooms at the Hunt & Hearth, got drinks for Arvel, and got cheese. + +# Clues, Mysteries, and Open Threads + +Pages 103 and 104 were missing or unavailable, so the transition from the under-sand meeting with Excellence to the fight with Lortesh is incomplete. The identity and motives of the Salamander-like invaders from the great Brass City, their true salamander leader, and their reference to kin seeking "their thorn in their sides" remain open. Luth was reportedly alive and hiding with the vulturemen, possibly in the dome. Excellence protected the vultures after Gardwal failed, and his brother was apparently looking for him; the Goliaths had asked Excellence for help trapping that brother. Excellence was reluctant to go to Dunnersend after hearing about the automaton, though he may have had something to show faith. The Rhelmbreaker giant was spotted at Highden travelling waterwise. The message table incident with Errol preserved the strange statements "make your decision (Anite!)", an admission of mistakenly controlling the wizard and accidentally opening the prison, and happiness that the party killed the dragon and felt proud of themselves. diff --git a/data/4-days-cleaned/day-30.md b/data/4-days-cleaned/day-30.md new file mode 100644 index 0000000..d720fc5 --- /dev/null +++ b/data/4-days-cleaned/day-30.md @@ -0,0 +1,64 @@ +--- +day: day-30 +date: 2nd Tan 107 AT +source_pages: + - 105 + - 106 + - 107 + - 108 +complete: true +--- + +# Narrative + +Day 30 was Wednesday, 2nd Tan 107 AT, with 4 days to Timnor and 5 days to the auction. A margin note also recorded "+2 days 4pm" and [uncertain: Lathlie]. + +The party received Town Crier information on the laptop. Busalish had sent a message saying he wanted to meet them and was coming in. News also said Lady Hearthwill had been injured after deciding to take the fight against the giants into her own hands, though she was recuperating normally. Soldiers from Goldenswell had retreated. + +Hucan's ship had been attacked and rummaged in the night, and the party's cart had also been rummaged through. Messages were being intercepted. The notes connect this to a blue dragon, leaked battle plans, and a magical attack at Craters Edge. The cart guards had been found in a mess, pointing toward a betrayer. + +The moon shard had gone into the sea. Invar retrieved it and tried to take it back to the ground towers, while Xinquss had been tasked to retrieve it. Huan survived, but the ship was missing, with Census / Hydratrox noted beside that thread. Council members were on their way to Highden. Wrath was connected to Valenthide, and Xinquss was connected to the shield crystal. + +Benu was staying in Dunnersend and would build a temple in the city. The party's father had sent feelers to the army and could spare 100 troops: 30 skilled fighters and 70 conscripts. The Huntmistress also provided 5 healers. Transport was obtained for everyone, along with 10 cavalry. Scouts reported a similar-sized army at the barrier. + +Benu could message Cardenald and ask her to meet at 09:00 in Dunnersend. Cardenald would meet them at the shrine, and the party saw her glinting in the sun. She had sent them a message that they had not received. She thought somebody was trying to get into her thoughts, though she had kept them out so far. She could also fix Errol. + +Salinay was sealed, and the barrier energy was depleted. Valententhide was identified as the cause. The Betrayer would be working on another body and would take 20-30 days. + +The party asked Cardenald about resurrecting Rubyeye. She said yes, and the party was also leaning that way, so they agreed to do it. Both eyes glowed red, the skull floated and animated, and Rubyeye came back to life and made a beard. Geldrin had a flashback to a room with a floating skull. The party also learned that Enwi's gloves were in the Goliath Tower in the Oasis, meaning Enwi died and went there, but nobody knew, so Enwi had not been released. + +Browning had made a bargain to rid fishes from the barrier in return for a peace treaty. Enwi had also made some sort of pact involving rings. The phrase "The Guilt is an excellence!!" was recorded. Browning's lab was near Craters Edge. The party discussed magical defenses against Valententhide, especially Counterspell. + +A message was sent to Busalish saying that the Guilt was Excellence and asking for mage help with Wrath. Benu could create a hero's feast. The party went to the Cheese shop looking for mages or scrolls. There were no mages or scrolls there, but someone could speak to [uncertain: Proloknight] for them about Counterspell and Polymorph. Counterspell cost 500g, with an additional 10g [unclear]. A finder's fee was noted only for two scrolls, though the party wanted three. Polymorph was estimated at 3-4kg, and Morgana could do it. + +The party tried to see what the automaton, Galatrayer, was doing. Cardenald tapped into the one guarding Valententhide's prison and saw a stone room, with somebody there and out of focus. Valententhide might still be imprisoned, but Geldrin was not convinced. Groll wondered whether somebody was in Galatrayer's head: the overseer or the explorer. + +The party returned to the palace. Cardenald and Rubyeye went back to Cardenald's lab to study and gather supplies. Geldrin searched the library for Valententhide or the Goliath city. A scholar described Goliath people from about 900 years ago and said Goliaths helped build Dunnersend. Master Shined glass was noted. The Goliath capital was Ashktioth, and Tradesmall was a Goliath town. In a book of fables, Valententhide should have been one of the 12 and was given the undesirable job of looking after dust; the apprentice became the god instead, connected to darkness. + +The army left at 16:00. Invar received a message back saying the Lady was unavailable because she was fighting on the front lines. They counted their money back. News that morning mentioned a village, but there was no other news, and the battle was going badly. Soots bones were being inspected by a scholar from Dunnersend on behalf of Lady R. Beauchamp?!?, with "Blue Dragon?!?" written beside it. + +Cardenald and Rubyeye returned with 2 orbs and 2 scrolls of Counterspell. Errol went to Crater's Edge to see if it was actually ash. He returned reporting that Crater's Edge was intact and very quiet. It was late at night, around 24:00, and one person was looking out of a window: a tiefling child, possibly Joy. The note questions whether this was a trap. + +# People, Factions, and Places Mentioned + +Busalish, Lady Hearthwill, Goldenswell soldiers, Hucan, Invar, Xinquss, Huan, Census / Hydratrox, council members, Highden, Wrath, Valenthide / Valententhide, Benu, Dunnersend, the party's father, the army, the Huntmistress, Cardenald, Errol, Salinay, the Betrayer, Rubyeye, Geldrin, Enwi, Browning, the Guilt, [uncertain: Proloknight], Morgana, Galatrayer, Groll, the overseer, the explorer, Master Shined glass, Lady R. Beauchamp?!?, Joy, blue dragon, giants, guards, scouts, troops, skilled fighters, conscripts, healers, cavalry, mages, Goliaths, and a tiefling child were all mentioned. + +Places mentioned include Dunnersend, the shrine, the barrier, the sea, the ground towers, the shield crystal, Highden, Craters Edge / Crater's Edge, Browning's lab, the Cheese shop, the palace, Cardenald's lab, the library, the Goliath Tower in the Oasis, the Goliath capital Ashktioth, and Tradesmall. + +# Items, Rewards, and Resources + +The party had Town Crier information on the laptop. The moon shard was retrieved by Invar after going into the sea. The available army support consisted of 100 troops, made up of 30 skilled fighters and 70 conscripts, plus 5 healers from the Huntmistress, transport for all, and 10 cavalry. Benu could create a hero's feast. + +Counterspell scrolls were priced at 500g each, with 10g [unclear] also noted, and the party wanted three though a finder's fee was only available for two. Polymorph was estimated at 3-4kg, and Morgana could do it. Cardenald and Rubyeye ultimately returned with 2 orbs and 2 scrolls of Counterspell. Enwi's gloves were identified as being in the Goliath Tower in the Oasis. Enwi's pact involved rings. Rubyeye was restored from a floating skull with glowing red eyes. + +# Clues, Mysteries, and Open Threads + +Messages were being intercepted, including a message from Cardenald that the party never received. Hucan's ship and the cart were rummaged, guards were found in a mess, battle plans were being leaked, and a betrayer was suspected. The blue dragon may be connected to the attack at Craters Edge, the leaked plans, and the inspection of soots bones by a Dunnersend scholar for Lady R. Beauchamp?!?. + +The moon shard, Invar's attempt to take it to the ground towers, and Xinquss's task to retrieve it remain important. Huan survived, but the ship was missing, with Census / Hydratrox recorded uncertainly. Cardenald believed someone was trying to enter her thoughts, though she had resisted so far. + +Salinay was sealed and the barrier energy depleted, with Valententhide named as the cause. Valententhide may still have been imprisoned in a stone room, but Geldrin was not convinced by what Cardenald saw through Galatrayer. Groll's question about someone being in Galatrayer's head, possibly the overseer or the explorer, remains unresolved. The Betrayer's next body would take 20-30 days. + +Enwi died and went to the Goliath Tower in the Oasis, but because nobody knew this, Enwi had not been released. Browning's bargain to clear fishes from the barrier in return for a peace treaty, Enwi's pact involving rings, Browning's lab near Craters Edge, and the note "The Guilt is an excellence!!" all remain linked but not fully explained. + +Valententhide's fable says he should have been one of the 12, was given the undesirable task of looking after dust, and the apprentice became the god instead, connected to darkness. Crater's Edge appeared intact and quiet at 24:00, with a possible Joy-like tiefling child looking from a window, raising the question of whether it was a trap. diff --git a/data/4-days-cleaned/day-31.md b/data/4-days-cleaned/day-31.md new file mode 100644 index 0000000..ca929a4 --- /dev/null +++ b/data/4-days-cleaned/day-31.md @@ -0,0 +1,67 @@ +--- +day: day-31 +date: 3rd Tan 107 AT +source_pages: + - 108 + - 109 + - 110 + - 111 + - 112 +complete: true +--- + +# Narrative + +Day 31 was Thursday, 3rd Tan 107 AT, with 3 days to Timnor, 2 days to the auction, and 1 day left on the road with the army. The plan was to follow the army and fish Excellence. + +The day passed, and the party set up camp. During watch they saw movement in the distance: flying shapes coming closer. They were dragons, and neither had two heads. One was ashlike, with small wings. Another had antlers, snake-horse eyes, and horns. They flew close to the party but did not notice them. They did not seem to have come from the Statue, and the notes question whether they may have noticed the army. + +The party went to the Baked Mattress for food. They saw a human sitting down with a very noticeable underbelly. The barkeep was described as having patches of night and husband. Xinqus was in town. + +The party headed to the auction house with 870kg. They saw a [uncertain: pigeon/aracock] with Xinqus's cart, and Xinqus was inside. "1600" was recorded. They walked to the front of the queue, where Mirth let them in and gave them a number. Everyone else seemed to have paid to get in, and the auction had a very eclectic mix of people. A dragon and the Retribution shrine on Azureside were also noted. + +The auction lots included coins from grand towers penne / Goliath coins x2, a bottle of wine called sosen mistle eel, a functioning pocket watch with squares showing the moon cycle, elven green-rimmed glasses, and a small mahogany box with a red velvet curtain that formed illusionary scenes. A loved patched leather backpack was a bag of sorting, valued around 3-500g, able to hold 500lb or 64 gems while only weighing 15lb. There was also a silver scorpion on a chain, the holy symbol of Noxia. + +The auction included an 8/400-year-old longsword in the style Invar makes: Firefang, a sword that adds +1D6, has 5 spell charges, and can cast Burning Hands, priced at 4500g. Other lots included an Amle for adult?, a ring with crystal on top identified as a ring of protection, and a chariot that interested the Guilt. A big scroll of paper had arcane writing. Geldrin tried to check it and cast Dispel Magic; the words disappeared from the page. It was Browning's scroll, and a new random spell appears each morning at 2:37. It was valued at 600g. Further lots included a bracelet of locating, art cork, rare poetry books, and a talon of soot. + +The bird was sent to the camp. Lortesh was described as "untruly end," and the party could not control him. The reward promised by the sphinx was delivered, and he would deliver his side of the bargain. Armies approached and asked whether they were mine. The party became more subservient and said no, Sir, knowing he would know if they were lying. + +Goliaths began to be freed from their tents. Dirk's dad was a few tents away. Someone saw through an illusion and laughed because the caster had made themself look meaner. The attack began, with Goliaths attacking outside the tents. The Lord of Brass Citadel tried to go to the front line, and the narrator had to go with him. + +A green dragon descended on the armies. "My Frizzlesing" was noted as a day of music and mirroring the surroundings, with "mirrors" crossed out. The Dunnersend army killed the dragon. An elemental died saying, "You betray me, I was meant to avenge you." The party killed it. The Dunnersend army was successful. + +Dirk's dad was okay. Rubyeye took Valenta back to her lab to repair her, and they needed a few days to recuperate. The Excellence killed was the leader of the brass city. The Earth Excellence was Treamen, and a jagged purple crystal skull was recovered. Invar inspected it and found it was a magically crafted artifact, made from Treamen's skull and from [uncertain: shield] crystal. + +At 22:00, the party located a command tent and a locked chest. The chest contained a load of platinum coins. One side showed a domed city tower, and the other showed a snake wrapped around a stick. There were 1,000 words in Ignan around the outside: "to commemorate the fall of the labour in the name of the lord Searean". + +Dirk's dad wanted to return to Salvation to rest and gather armies to attack the Goliath city with some of the Goliaths from the city. Zane Peacemaker Dirk was noted. It would take 5 days before they could get to the city. + +The party checked on the dragon. Dunnersend soldiers were in a row beside it, and an officer with a mule-shift table and scales was handing out pieces to the army. The scales were devoid of flesh, as if carved. The dragon was the same size as the others but had bird claws for legs, and wings extending down its tail like Lortesh. + +The party asked for the dragon's head to be chopped off. Dirk questioned one of the city Goliaths. The Goliath said it was not a city. Rebels said they needed to take the tower, and the tower was in a field. The people had worked for the dragons for generations and believed the dragons were gods. Rebels had killed one of the young dragons, and she had killed 1,000 Goliaths in revenge. The questioned Goliath's job had been to tend the lizards that fed the dragons; otherwise, the Goliaths themselves would be food. His friends had called him Poolface, but he changed it to Thunder as a stronger name. + +# People, Factions, and Places Mentioned + +Xinqus, Mirth, Geldrin, Invar, the Guilt, Lortesh, the sphinx, Dirk, Dirk's dad, Rubyeye, Valenta, Treamen, Zane Peacemaker Dirk, Poolface / Thunder, the human with a very noticeable underbelly, the barkeep with patches of night and husband, the Lord of Brass Citadel, the leader of the brass city, lord Searean, dragons, a green dragon, an elemental, Goliaths, rebels, Dunnersend soldiers, the Dunnersend army, an officer, armies, and a [uncertain: pigeon/aracock] were all mentioned. + +Places mentioned include the camp, the Statue, the Baked Mattress, the auction house, Azureside and the Retribution shrine, the brass city / Brass Citadel, Salvation, the Goliath city, the command tent, and the tower in a field. + +# Items, Rewards, and Resources + +The party had 870kg at the auction, and "1600" was recorded near Xinqus and the cart. Auction lots included grand towers penne / Goliath coins x2, sosen mistle eel wine, a moon-cycle pocket watch, elven green-rimmed glasses, a mahogany box with a red velvet curtain that created illusionary scenes, a loved patched leather backpack that was a bag of sorting worth around 3-500g and able to hold 500lb or 64 gems while weighing 15lb, a silver scorpion holy symbol of Noxia, Firefang, an Amle for adult?, a ring of protection, a chariot, Browning's scroll, a bracelet of locating, art cork, rare poetry books, and a talon of soot. + +Firefang was an 8/400-year-old longsword in Invar's style, adding +1D6, holding 5 spell charges, and casting Burning Hands, priced at 4500g. Browning's scroll produced a new random spell each morning at 2:37 and was valued at 600g after Geldrin's Dispel Magic caused the existing words to disappear. The sphinx's promised reward was delivered, and he would fulfill his side of the bargain. + +The party recovered a jagged purple crystal skull from Treamen, the Earth Excellence. Invar identified it as a magically crafted artifact made from Treamen's skull and [uncertain: shield] crystal. A locked chest in the command tent contained many platinum coins marked with a domed city tower, a snake wrapped around a stick, and 1,000 Ignan words: "to commemorate the fall of the labour in the name of the lord Searean". The army also harvested carved-looking dragon scales, and the party asked for the dragon's head to be chopped off. + +# Clues, Mysteries, and Open Threads + +Two dragons flew near the party's camp without noticing them. Neither had two heads, one was ashlike with small wings, and another had antlers, snake-horse eyes, and horns. They did not appear to come from the Statue, and it remains unclear whether they noticed the army. + +Xinqus was in town with a cart and a [uncertain: pigeon/aracock], and "1600" was recorded without context. The auction contained several significant magical and historical items, including Browning's scroll, Firefang, and a chariot that interested the Guilt. The meaning of "Amle - for adult?" remains uncertain. + +Lortesh was noted as "untruly end," and the party could not control him. The sphinx had delivered the promised reward and still owed his side of the bargain. The armies' question about whether they were "mine," and the need to answer subserviently because he would know if they lied, remains tied to an unclear authority. + +The Excellence killed was the leader of the brass city, and Treamen was identified as the Earth Excellence. The elemental's dying words, "You betray me, I was meant to avenge you," suggest a broken expectation or allegiance that is not yet explained. Treamen's skull being made into a jagged purple crystal artifact from [uncertain: shield] crystal remains significant. + +The platinum coins commemorate "the fall of the labour in the name of the lord Searean," but the event, lord Searean, and the domed city tower and snake symbols remain unexplained. Dirk's dad intends to gather armies in Salvation and attack the Goliath city, though one city Goliath said it was not a city and rebels said the real target was a tower in a field. The Goliaths' generations of service to dragons, their belief that the dragons are gods, and the young dragon's revenge killing of 1,000 Goliaths remain major open threads. diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md index a4513f7..8c8ca53 100644 --- a/data/6-wiki/aliases.md +++ b/data/6-wiki/aliases.md @@ -17,16 +17,24 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Aliases and Variant Spellings -- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Terror of the Sands, nightmare of the darkness. +- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Gardwel, Gardwal, Gardolwal, Terror of the Sands, nightmare of the darkness. - [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. - [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. - [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye. -- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], The Mage, Visage Envoi. -- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald. +- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], Enwi, Envi, Ennui, The Mage, Visage Envoi. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald, Cardonal, Cardonald, Cardenald, Valenth Caerdunel, Valenthide, Valententhide. - [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. - [Pythus Aleyvarus](people/pythus-aleyvarus.md): Pythus Aleyvarus, Pythas, Pythus. @@ -35,3 +43,9 @@ sources: - [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md): Pact Scepter, scepter conches, Kiendra's conch. - [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md): Noctus Cairinium Grimoire, Noch's Caardium, weird skin book, creepy book. - [The Thornhollows Family](people/thornhollows-family.md): Annabel/Annabella, Isabelle/Isabella, Clarabella/Clara bella/Cleara. +- [Dunnersend](places/dunnersend.md): Dunnersend, Dunesend, Dunesend State, Dunesmead, Dunnen, Dunengend [uncertain related place], Dunend [uncertain spelling]. +- [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md): Rimewatch, Ice prison, Iceblus's prison, Iceland's prison, Howling Tombs. +- [Lortesh](people/lortesh.md): Lortesh, Kortesh Gravesings, Hortekh, Uncle Hortekh, The Twisted. +- [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md): Xinquiss, Xinqus, Xinquss, Zinquiss. +- [Freeport Auction Lots](items/freeport-auction-lots.md): auction house items, Freeport auction house lots. +- [The Freeport Baroness](people/freeport-baroness.md): Baroness, Baroness [Kavaliliere], Heatherhall, Thorpe [uncertain relation]. diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md index 6f3e0e3..ab19af7 100644 --- a/data/6-wiki/concepts/barrier.md +++ b/data/6-wiki/concepts/barrier.md @@ -6,7 +6,7 @@ aliases: - dome - containment system first_seen: day-01 -last_updated: day-22 +last_updated: day-30 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-04.md @@ -23,6 +23,12 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-30.md --- # Barrier @@ -39,6 +45,9 @@ The Barrier is the central protective shield, dome, or containment system around - Shield pylons and crystals regulate or focus it. - Attacks on it may speed the [Tri-moon Shard](../items/tri-moon-shard.md). - It has been attacked at Everchard, flickered near Seaward, interacted with elemental prisons, and required underwater shield crystal intervention. +- Cardonal's laboratory identifies Grand Towers factory/control/meeting levels, multiple labs, prison sites, teleport circles, and pylon-adjacent locations as part of the wider system. +- Enwi's life-force siphoning replicated across prisons and weakened the system, while Valententhide later depleted Barrier energy. +- The Guilt claimed it could reset the control room; Rubyeye described overseer controls separate from the mainframe and double-locked by Valenthide prison and an automaton guard. ## Timeline @@ -48,6 +57,11 @@ The Barrier is the central protective shield, dome, or containment system around - `day-14`: Elementals describe the Barrier as enslavement and batteries. - `day-16`: Brutor's lab reveals Barrier memory records and emergency systems. - `day-22`: The shield crystal mission continues Barrier stabilization work. +- `day-23`: Cardonal reveals prisons, labs, Grand Towers levels, and pylon-adjacent system sites. +- `day-25`: Enwi's siphoning is identified as a replicated weakness across the prison system. +- `day-26`: Life-prison damage shows direct risk to the Barrier. +- `day-27`: The Guilt offers to reset the control room and fix a prison. +- `day-30`: Salinay is sealed, Barrier energy is depleted, and Valententhide is named as the cause. ## Related Entries @@ -62,3 +76,4 @@ The Barrier is the central protective shield, dome, or containment system around - Can the Barrier be repaired without exploiting prisoners? - Must it be dropped to repel the Tri-moon shard? - What are the eight beings or poles? +- Can Grand Towers controls be reset safely while The Guilt, Galatrayer, and the overseer remain uncertain? diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md index 989ed8b..94c8040 100644 --- a/data/6-wiki/concepts/elemental-prisons.md +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -3,14 +3,21 @@ title: Elemental Prisons type: concept aliases: - eight imprisoned beings + - seven prisons - barrier batteries - elemental batteries first_seen: day-14 -last_updated: day-17 +last_updated: day-31 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Elemental Prisons @@ -27,12 +34,25 @@ The elemental prisons are ancient containment systems that may hold or exploit p - The [Salt Dragon Prison](../places/salt-dragon-prison.md) contained a salt dragon inside a smaller barrier. - [Garadwal](../people/garadwal.md), Salias, the salt dragon, and void fragments may be connected to this prison network. - Quasi-elemental lore distinguishes salt and water, with salt poisoning or polluting water elementals. +- Cardonal described seven prisons, five labs, three Grand Towers levels, and teleport-circle codes, with other sites near pylons, a Goldenswell impact site, Riversmeet menagerie, a Goliath city, and missing dwarf and Goliath cities. +- Named or described prisoners and princes include Salinas of salt, Limus Vita/Limnuvela of ooze or life, Iceblus/Iceland of ice, Arasarath, Merocole, Gardwel, Papa I Meurina, and Valententhidle/Valententhide. +- Rubyeye's prison-status readout used an effigy, runes, and prison connections; the Grand Tower control centre and Rubyeye lab wheels could affect prison systems. +- Enwi's siphoning of life force from his prison replicated across the prison system and weakened all prisons. +- The life prison was converted into flesh by high-level Carnamancy and siphoned by The Mother; Limnuvela survived by holding the Barrier up. +- The Guilt claimed it could reset the control room and fix a prison, and later admitted it accidentally opened a prison while controlling a wizard. +- Treamen, the Earth Excellence, was killed and left a jagged purple crystal skull artifact made partly from [uncertain: shield] crystal. ## Timeline - `day-14`: The party learns of elemental battery claims, Garadwal, Salias, and the salt dragon prison. - `day-15`: Elementharium/Clementarium explains quasi-elemental categories and salt-water problems. - `day-17`: Leaking elemental prisons are part of the urgent Barrier crisis. +- `day-23`: Cardonal's lab reveals the larger prison/lab/Grand Towers network and named prisoners. +- `day-25`: Rimewatch identifies Ice prison concerns and Enwi's system-wide siphoning. +- `day-26`: The party investigates the Ice prison and life prison, then moves to Baytail Accord. +- `day-27`: The Guilt offers to fix a prison and gives an Abyssal-inscribed ring. +- `day-30`: Valententhide, Galatrayer, Salinay, and barrier energy depletion become urgent. +- `day-31`: Treamen the Earth Excellence dies, leaving a skull artifact. ## Related Entries @@ -40,9 +60,13 @@ The elemental prisons are ancient containment systems that may hold or exploit p - [Salt Dragon Prison](../places/salt-dragon-prison.md) - [Garadwal](../people/garadwal.md) - [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) +- [Cardonald's Desert Laboratory](../places/desert-laboratory.md) +- [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) ## Open Questions - Which eight prisoners are real? - Were they imprisoned for danger, exploited for power, or both? - How do sand and void fit the quasi-elemental model? +- Why do some sources say eight imprisoned beings while Cardonal lists seven prisons? +- Which prison did The Guilt accidentally open, and can its help be trusted? diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md index 87a7748..f87f9a6 100644 --- a/data/6-wiki/concepts/excellences.md +++ b/data/6-wiki/concepts/excellences.md @@ -5,14 +5,22 @@ aliases: - Excellence - An Excellence - six-armed beings + - Pride + - The Guilt + - Treamen first_seen: day-17 -last_updated: day-22 +last_updated: day-31 sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-19.md - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Excellences @@ -28,6 +36,12 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - One fish-like creature threatened destruction around the Turtle Point and Sahuagin crisis. - A fire Excellence was attacking Highden and hostile to elves. - The Huntmaster was later found fighting an Excellence, and the party recorded `Deed Excellence!` as defeat or deed against it. +- Dunesmead treated `agents of the excellence` as agents of Infestus. +- The Guilt, a prisoner under Grand Towers, claimed it could reset the control room, fix a prison, and later was identified in notes as `an excellence!!`. +- Pride was expected to fix a prison but may have opened it instead. +- Excellence beneath the sands protected the vulturemen after Gardwal failed and may have a brother looking for him. +- The leader of the Brass City was an Excellence killed during the battle with Dunnersend forces. +- Treamen was identified as the Earth Excellence; his jagged purple crystal skull artifact was recovered. ## Timeline @@ -35,6 +49,11 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - `day-20`: Shandra identifies a six-armed threat as an Excellence. - `day-21`: Regional reports include a fire Excellence attacking Highden. - `day-22`: The Huntmaster fights an Excellence during the underwater mission. +- `day-27`: The Guilt introduces itself through automaton/spider infiltration and prison-control promises. +- `day-28`: Pride may have opened a prison rather than fixing it. +- `day-29`: The party meets Excellence under the sands and later hears The Guilt admit accidental prison opening. +- `day-30`: The notes state `The Guilt is an excellence!!`. +- `day-31`: The Brass City leader Excellence and Treamen the Earth Excellence are killed or defeated. ## Related Entries @@ -42,8 +61,12 @@ Excellences are powerful six-armed beings or creature type tied to creation theo - [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) - [Shield Crystal Mission](../events/shield-crystal-mission.md) - [Turtle Point](../places/turtle-point.md) +- [Dunnersend](../places/dunnersend.md) +- [Elemental Prisons](elemental-prisons.md) ## Open Questions - Are Excellences divine armies, independent monsters, or corrupted elemental beings? - What does `he will be worse` refer to in the Excellence hierarchy? +- Are Pride, Wrath, The Guilt, Treamen, Darkness, Light, and the Brass City leader members of one Excellence set? +- Why did The Guilt require five party members or expect there should be five? diff --git a/data/6-wiki/factions/black-scales.md b/data/6-wiki/factions/black-scales.md index 13e0aa7..e50dc3b 100644 --- a/data/6-wiki/factions/black-scales.md +++ b/data/6-wiki/factions/black-scales.md @@ -4,10 +4,12 @@ type: faction aliases: - Black Scale first_seen: day-14 -last_updated: day-21 +last_updated: day-26 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-26.md --- # Black Scales @@ -21,11 +23,16 @@ The Black Scales are mercenaries or a place/faction associated with the black dr - Basalisk identified the Black Scales as mercenaries working for Infestus. - Wrath/Kolin, a black dragonborn, would stay beyond the Barrier and asked to search for Garadwal at Black Scale. - The notes preserve uncertainty over whether Black Scale is a place, group, or both. +- Merfolk said the city of the Black Scales had a `door` into [unclear], with access requiring a Grand Towers penny. +- Garadwal had reportedly been in Blackscale the day before Baytail Accord and then returned to the dome. +- Blackscale was using the party's kings as servants; its boss liked the Barrier because it kept his head in one place and told Garadwal not to bring the Barrier down. ## Timeline - `day-14`: Black Scales are linked to Infestus. - `day-21`: Wrath/Kolin links Black Scale to a Garadwal search. +- `day-23`: Merfolk report a Black Scales city door and Grand Towers penny access. +- `day-26`: Blackscale is active around Garadwal, the dome, the party's kings, and the Barrier. ## Related Entries @@ -35,3 +42,5 @@ The Black Scales are mercenaries or a place/faction associated with the black dr ## Open Questions - Is Black Scale a location, faction, mercenary company, or shorthand for the Black Scales? +- What is the Black Scales `door`, and where does it lead? +- Who is the boss whose head depends on the Barrier? diff --git a/data/6-wiki/factions/the-pact.md b/data/6-wiki/factions/the-pact.md index 923face..9b76400 100644 --- a/data/6-wiki/factions/the-pact.md +++ b/data/6-wiki/factions/the-pact.md @@ -4,12 +4,14 @@ type: faction aliases: - Pact first_seen: day-16 -last_updated: day-21 +last_updated: day-26 sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-26.md --- # The Pact @@ -25,6 +27,11 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - Local leaders include Shandra at Turtle Point, Tiana/Taina in Freeport, and Alana by report. - Pact artifacts include a Pact Scepter and eight scepter conches. - The security council and Grand Towers discussions rely on Pact history and responsibilities. +- Merfolk outside the Barrier have an empire and diplomatic missions; Princess Aquunea/Aquana is associated with nobility beyond the Barrier. +- Baytail Accord's Pact leaders included Pact keeper Inara, Visca of Fairshore, Hanna of Fishbait's Edge, Lana/Alana of Azureside, and Aquena/Aquana. +- After saving Baytail Accord and the Hatchery, the party became known as `Saviours of the Pact`. +- The Pact has a route outside the Barrier; leaders believe a birth curse exists outside or around the Barrier and that the Barrier protects them from it. +- Baytail Accord's first baby girl in 20 years was born after the crisis, with Princess Aquana present. ## Timeline @@ -32,6 +39,8 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - `day-17`: Council and Barrier-protector networks discuss Pact obligations. - `day-20`: Shandra explains the Pact and gives or entrusts Pact authority. - `day-21`: Pact forces coordinate for the shield crystal mission. +- `day-23`: Merfolk diplomatic and beyond-Barrier Pact context expands the Pact's geography. +- `day-26`: The party saves Baytail Accord, joins Pact leaders, and learns about birth records, outside routes, and regional reports. ## Related Entries @@ -45,3 +54,5 @@ The Pact is a Barrier-protection organization or agreement marked by a five-hand - Who were all five original wizards? - What are the legal or magical limits of Pact authority? +- What is the birth curse, and why did births inside the Barrier recently stop? +- What does the glowing parchment under glass at Baytail Accord preserve or enforce? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 23ebf1c..29e6430 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -23,6 +23,14 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Pentacity Campaign Wiki @@ -53,6 +61,8 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Pythus Aleyvarus](people/pythus-aleyvarus.md) - [Valenth Cardonald](people/valenth-cardonald.md) - [The Freeport Baroness](people/freeport-baroness.md) +- [Lortesh](people/lortesh.md) +- [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) - [Shandra](people/shandra.md) - [Kiendra](people/kiendra.md) - [Tiana/Taina](people/tiana-taina.md) @@ -69,6 +79,9 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Seaward](places/seaward.md) - [Salt Dragon Prison](places/salt-dragon-prison.md) - [Hidden Laboratory](places/hidden-laboratory.md) +- [Cardonald's Desert Laboratory](places/desert-laboratory.md) +- [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md) +- [Dunnersend](places/dunnersend.md) - [Freeport](places/freeport.md) - [Turtle Point](places/turtle-point.md) - [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md) @@ -90,6 +103,7 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md) - [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md) - [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md) +- [Freeport Auction Lots](items/freeport-auction-lots.md) ## Concepts and Events diff --git a/data/6-wiki/items/freeport-auction-lots.md b/data/6-wiki/items/freeport-auction-lots.md new file mode 100644 index 0000000..1b8e257 --- /dev/null +++ b/data/6-wiki/items/freeport-auction-lots.md @@ -0,0 +1,46 @@ +--- +title: Freeport Auction Lots +type: item group +aliases: + - auction house items + - Freeport auction house lots +first_seen: day-31 +last_updated: day-31 +sources: + - data/4-days-cleaned/day-31.md +--- + +# Freeport Auction Lots + +## Summary + +The Freeport auction house presented a mixed set of historical, magical, and unclear items shortly before the Brass City battle. + +## Known Lots + +- Grand Towers penne or Goliath coins x2. +- Sosen mistle eel wine. +- A functioning pocket watch with squares showing the moon cycle. +- Elven green-rimmed glasses. +- A small mahogany box with a red velvet curtain that made illusionary scenes. +- A loved patched leather backpack that was a bag of sorting, worth about 300-500 gp, holding 500 lb or 64 gems while weighing 15 lb. +- A silver scorpion on a chain, the holy symbol of Noxia. +- Firefang, an 8/400-year-old longsword in Invar's style, adding +1D6, holding 5 spell charges, casting Burning Hands, and priced at 4500 gp. +- An `Amle for adult?` [uncertain]. +- A ring of protection. +- A chariot that interested The Guilt. +- Browning's scroll, which produced a new random spell each morning at 2:37; Geldrin's Dispel Magic made the visible words disappear, and it was valued at 600 gp. +- A bracelet of locating, art cork, rare poetry books, and a talon of soot. + +## Related Entries + +- [Freeport](../places/freeport.md) +- [Xinquiss/Zinquiss](../people/xinquiss-zinquiss.md) +- [Mother-of-Pearl Elemental Chariot](mother-of-pearl-elemental-chariot.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Was the chariot the same mother-of-pearl elemental chariot recovered earlier? +- What is the `Amle for adult?` lot? +- What did Xinqus's cart and `1600` indicate? diff --git a/data/6-wiki/items/mother-of-pearl-elemental-chariot.md b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md index 77e4347..9710ab5 100644 --- a/data/6-wiki/items/mother-of-pearl-elemental-chariot.md +++ b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md @@ -5,9 +5,10 @@ aliases: - mother-of-pearl chariot - chariot with water elementals first_seen: day-22 -last_updated: day-22 +last_updated: day-31 sources: - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-31.md --- # Mother-of-Pearl Elemental Chariot @@ -22,10 +23,12 @@ The mother-of-pearl elemental chariot is a light chariot found docked at a cove - Water elementals were chained to it. - Dirk spoke to the elementals; they wanted something [unclear] and agreed to come with the party on the big boat. - Zinquiss planned to sell it at auction in seven days at the Freeport auction house. +- A chariot appeared among later auction lots and interested The Guilt, but the notes do not explicitly confirm it was the same mother-of-pearl elemental chariot. ## Timeline - `day-22`: The party finds the chariot at the cove after the shield crystal mission and takes it with them. +- `day-31`: A chariot is listed at auction and draws The Guilt's interest. ## Related Entries @@ -37,3 +40,4 @@ The mother-of-pearl elemental chariot is a light chariot found docked at a cove - What did the chained water elementals want [unclear]? - Will auctioning the chariot free, transfer, or exploit the elementals? +- Was the auction chariot definitely the same object recovered from the cove? diff --git a/data/6-wiki/items/tri-moon-shard.md b/data/6-wiki/items/tri-moon-shard.md index c93e34b..74bf66a 100644 --- a/data/6-wiki/items/tri-moon-shard.md +++ b/data/6-wiki/items/tri-moon-shard.md @@ -5,7 +5,7 @@ aliases: - moon shard - fragment of the moon first_seen: day-06 -last_updated: day-22 +last_updated: day-30 sources: - data/4-days-cleaned/day-06.md - data/4-days-cleaned/day-15.md @@ -13,6 +13,8 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-30.md --- # Tri-moon Shard @@ -28,6 +30,9 @@ The Tri-moon shard is a smaller fragment separate from the moon, much closer to - Increased flow through pylons or attacks on the Barrier may speed its approach. - Stopping it may require a device to repel it and may require the Barrier to go down. - The countdown reaches 12 days to the Tri-moon by day 22. +- Cardenald and Geldrin calculated that the shard would probably still hit Grand Towers if nothing changed. +- If the party stopped another shard, it would not be on course for ship 2. +- The moon shard later went into the sea; Invar retrieved it and tried to take it back to the ground towers, while Xinquss was tasked to retrieve it. ## Timeline @@ -35,6 +40,8 @@ The Tri-moon shard is a smaller fragment separate from the moon, much closer to - `day-15`: Brutor's lore ties it to the first crack and containment device questions. - `day-17`: Council discussions make it an urgent priority. - `day-22`: The date is Tuesday, 6th Jan 1012, 12 days to the Tri-moon. +- `day-27`: Cardenald and Geldrin confirm Grand Towers remains threatened by the shard trajectory. +- `day-30`: The shard goes into the sea and is retrieved by Invar while Xinquss is assigned to recover it. ## Related Entries @@ -47,3 +54,4 @@ The Tri-moon shard is a smaller fragment separate from the moon, much closer to - Who or what broke the shard free? - Can it be repelled without catastrophic Barrier failure? +- Who tasked Xinquss with retrieving it, and where did Invar take it afterward? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index fab4cf1..14e490b 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -23,6 +23,14 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Open Threads @@ -48,3 +56,20 @@ sources: - What does the locked Aldaine Hartwell book contain, and what command word will open it? - What did the cold dream voice mean by `where is he I know you hide him`, and why did a white dragonscale fall from the party room icicle? - Did the Ruby Eye riddle/layout mechanism have further consequences after the hidden laboratory was opened? +- Who or what sent the white powder visions of basilisk, salamanders, Arabic writing, white dragon, black void, cold blue eyes, and contradictory Freeport dreams? +- What is the exact relationship between [Garadwal](people/garadwal.md), the Duncan people, the void lieutenant he consumed, Enwi's apprentice, and the dragon crash that weakened the prisons? +- Which of the seven named prisons, five labs, Grand Towers levels, Goliath city, missing dwarf city, Goldenswell impact site, Riversmeet menagerie, and pylon-adjacent sites are still intact or compromised? +- Did [Envoi](people/envoi.md)'s life-force siphoning replicate across all prisons by design, sabotage, or later misuse, and can it be reversed without killing prisoners like Limnuvela? +- Who gave Anrasurall the Ice prison runes, what was he trying to free at [Rimewatch](places/rimewatch-ice-prison.md), and what are the hollow rocks or possible eggs near the burst entrance? +- How did The Mother repurpose Envi's clone despite known clone limits, and what remains of her Carnamancy, cipher, spellbook, Baytail Accord plan, and link to Peridita or `Mother` warnings? +- What does the Blackscale boss mean by needing the [Barrier](concepts/barrier.md) to keep his head in one place, and why was Blackscale using the party's kings as servants? +- Are [The Guilt](concepts/excellences.md), Pride, Wrath, Darkness, Light, Treamen, and the Brass City leader Excellences, prisoners, or overlapping titles for different ancient beings? +- Why does The Guilt insist there should be five party members, and why did The Chorus send Morgana because visions went better with five? +- Who planted or operates the automaton infiltrators in [Dunnersend](places/dunnersend.md), and are Ennui, Browning, Cardenald, the overseer, explorer, Galatrayer, or Grand Towers control systems responsible? +- What was in Sister Proulsothight's box like Gelissa's, why was Basilisk seeking it while warning the party away, and why were wizards on the payroll? +- Where is Luth hiding, what did [Lortesh](people/lortesh.md) want from the Goliaths and vultures, and what happened in the missing pages 103-104 before Lortesh died? +- Who intercepted messages, attacked Hucan's ship and the cart, leaked battle plans, and may be connected to the blue dragon, Crater's Edge, Lady R. Beauchamp?!?, and the betrayer? +- What is [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md)'s role in recovering the moon shard, the auction, and the cart marked `1600`? +- What are Enwi's gloves doing in the Goliath Tower in the Oasis, and does that mean Enwi died there without being released? +- What are Ashktioth, Tradesmall, the Goliath tower in a field, Goldenswell's impact site, and the generations of Goliaths serving dragons? +- What do the command-tent platinum coins commemorate by `the fall of the labour in the name of the lord Searean`, and what are the domed city tower and snake symbols? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md index e225fad..675b010 100644 --- a/data/6-wiki/people/brutor-ruby-eye.md +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -5,13 +5,17 @@ aliases: - Ruby Eye - Rubyeye first_seen: day-01 -last_updated: day-20 +last_updated: day-30 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-15.md - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-30.md --- # Brutor Ruby Eye @@ -27,6 +31,10 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - His laboratory contained pylon plans, memory orbs, void containment, museum artifacts, alarm systems keyed by blood or hand, and lore about the first crack. - He was described as powerful, possibly a demi-lich figure, and interested in immortality, runes, sacrifice, and containment. - He was killed by or strongly associated with conflict against the black dragon [Infestus](infestus.md). +- He visited Cardonal's desert laboratory 47 times, last around 908 years before day 23, and had requested a copy of a book after seeing it at Aquaria. +- He created his own prison-status readout using a humanized effigy of the spirit, runes, and links to the prison and prison runes. +- Rubyeye described Grand Towers technology beneath the towers, the overseer controls, Valenthide prison, and an automaton guard. +- On day 30 Cardenald resurrected him from the skull; Rubyeye returned with glowing red eyes, made a beard, and helped gather Counterspell scrolls and orbs. ## Timeline @@ -35,6 +43,10 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - `day-16`: The party explores his hidden laboratory and memory records. - `day-17`: Security council discussions rely on Brutor-related knowledge. - `day-20`: Huntmaster Thrune says Ruby Eye often spoke to the church. +- `day-23`: Silver and Cardonal's lab records establish Rubyeye's old visits, book request, and links to missing dwarf and Goliath cities. +- `day-25`: Rubyeye's prison-status readout becomes relevant to Rimewatch and the Ice prison. +- `day-28`: Rubyeye explains Grand Towers and prison-control architecture. +- `day-30`: Cardenald resurrects Rubyeye, and he resumes active support. ## Related Entries @@ -43,9 +55,12 @@ Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or - [Elemental Prisons](../concepts/elemental-prisons.md) - [Envoi](envoi.md) - [Infestus](infestus.md) +- [Cardonald's Desert Laboratory](../places/desert-laboratory.md) ## Open Questions - Did Brutor intend to become immortal as a demi-lich? - What exactly was his sacrifice? - How complete and trustworthy is the skull's account? +- What book did Rubyeye obtain from Aquaria, and did it contribute to the death at the desert laboratory? +- Why is Rubyeye connected to both the missing dwarf city and the missing Goliath city? diff --git a/data/6-wiki/people/envoi.md b/data/6-wiki/people/envoi.md index fe5b59b..b6f7ab4 100644 --- a/data/6-wiki/people/envoi.md +++ b/data/6-wiki/people/envoi.md @@ -4,15 +4,22 @@ type: person aliases: - Enoi - Enoin + - Enwi + - Envi + - Ennui - The Mage - Visage Envoi first_seen: day-05 -last_updated: day-16 +last_updated: day-30 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md - data/4-days-cleaned/day-15.md - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-30.md --- # Envoi @@ -28,6 +35,12 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - Brutor's later lore says Envoi tampered with a containment device for his own means and that something happening to Envoi could have caused the first crack. - Envoi wore five rings; one small ring was found with text about a sacrifice made to live eternal, father and daughter. - A boxed note possibly records `Winter Roses?` as Envoi's password. +- Day 23 identifies Enwi as one of the figures at the base of the Hephaestos statue and says Enwi was being protected by Goliaths. +- Enwi's apprentice may have caused the end of Garadwal's sanity. +- Enwi's spellbook was locked by one of Cardonal's creations and later attuned to Geldrin. +- Enwi had been tapping life force from his prison, and that replicated shade to the system weakened all prisons. +- The Mother repurposed Envi's clone in Envi's lab, and her spellbook used the same cipher and spells as Envi's. +- Enwi's gloves were later located in the Goliath Tower in the Oasis, implying Enwi died and went there without being released. ## Timeline @@ -35,6 +48,10 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - `day-06`: Joy's rooms, rings, clone evidence, and observatory memories deepen his connection to Joy. - `day-15`: Brutor's lore implicates Envoi in containment tampering and the first crack. - `day-16`: The hidden lab shows Envoi memories, rings, and Barrier history. +- `day-23`: Cardonal's lab adds Enwi, Goliath protection, spellbook, apprentice, and Garadwal context. +- `day-25`: Enwi's life-force siphoning is identified as a prison-system-wide weakness. +- `day-26`: The Mother uses Envi's clone and cipher during the life-prison and Baytail Accord crisis. +- `day-30`: Enwi's gloves are located in the Goliath Tower in the Oasis, and Enwi's ring pact is noted. ## Related Entries @@ -49,3 +66,5 @@ Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who ma - Was Envoi definitely Joy's father? - What did the five rings do? - Did his attempt to save Joy damage the Barrier? +- Are Envoi, Enwi, Envi, and Ennui all the same person, or are some separate figures? +- Why was Enwi protected by Goliaths, and what happened at the Goliath Tower in the Oasis? diff --git a/data/6-wiki/people/freeport-baroness.md b/data/6-wiki/people/freeport-baroness.md index 7b10282..bbffea8 100644 --- a/data/6-wiki/people/freeport-baroness.md +++ b/data/6-wiki/people/freeport-baroness.md @@ -4,10 +4,13 @@ type: person aliases: - Baroness - Baroness [Kavaliliere] + - Heatherhall + - Thorpe first_seen: day-20 -last_updated: day-20 +last_updated: day-23 sources: - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-23.md --- # The Freeport Baroness @@ -23,10 +26,14 @@ The Freeport Baroness is the reclusive ruler of [Freeport](../places/freeport.md - She knew Velenth/Valenth Cardonald and was shaken by revelations about her. - She provided lab code or permission and removed things from a sheet because she did not approve of the Cult. - Her succession resembles Heartwall family secrecy, but she was said to be similar to Lady Hathwall while not being a dragon. +- She arranged Drunken Duck access for the party after the merfolk rescue. +- Her master was connected to Valenth Caerdunel's necklace, while her sister was a ring. +- Removing the necklace from a sergeant caused him to simply walk off. ## Timeline - `day-20`: The party meets her in Freeport, gains support, and discusses Valenth/Velenth and the Cult. +- `day-23`: The party meets her again after the Freeport dream panic and learns more necklace/ring succession clues. ## Related Entries @@ -39,3 +46,4 @@ The Freeport Baroness is the reclusive ruler of [Freeport](../places/freeport.md - Is the Baroness immortal, disguised, possessed, reincarnated, or an office maintained through magic? - What exactly does she know about the Cult and laboratories? +- Who are her master and sister in the necklace/ring chain, and are Heatherhall/Thorpe related names or separate people? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md index d13db49..2bda35a 100644 --- a/data/6-wiki/people/garadwal.md +++ b/data/6-wiki/people/garadwal.md @@ -3,10 +3,13 @@ title: Garadwal type: person or imprisoned being aliases: - Guardwel + - Gardwel + - Gardwal + - Gardolwal - Terror of the Sands - nightmare of the darkness first_seen: day-01 -last_updated: day-21 +last_updated: day-29 sources: - data/4-days-cleaned/day-01.md - data/4-days-cleaned/day-06.md @@ -14,6 +17,10 @@ sources: - data/4-days-cleaned/day-15.md - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-29.md --- # Garadwal @@ -30,6 +37,11 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - Elementals later described Garadwal as their master and said he was associated with sand, earth, and fire. - He was said to have been buried north of Aegis-on-Sands and imprisoned in the Prison of the Sands. - Wrath/Kolin was asked to search for Garadwal at Black Scale. +- Cardonal's laboratory lore says Garadwal was leader of the Duncan people, consumed a void lieutenant, slaughtered the rest of the Duncan people, and was locked up after the event. +- The dragon crash into Grand Towers was said to have weakened the prisons enough for Garadwal to escape. +- Infestus appeared in a dream sending Garadwal through a portal with a coin; another dream showed abnormal dragons near Garadwal's prison and a void voice asking `where is he I know you know`. +- Garadwal moved through Blackscale, returned to the dome, and attacked Baytail Accord before teleporting away. +- Dunnersend lore says Excellence protected the vultures after Gardwal failed, while Goliaths once asked Excellence for help trapping his brother. ## Timeline @@ -38,6 +50,10 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - `day-14`: Elementals describe Garadwal as their master and connect him to elemental imprisonment. - `day-15`: Brutor's lore frames Garadwal as a void prisoner whose escape weakens the Barrier. - `day-21`: Cold dreams, void language, and white dragonscale clues may connect back to Garadwal. +- `day-23`: The desert laboratory identifies many Garadwal variants, his Duncan people history, void lieutenant connection, prison network, and possible escape mechanism. +- `day-25`: Rimewatch warnings describe dragons plotting to breathe the Terror of the Sands out of her prison. +- `day-26`: Dreams and Baytail Accord events show Infestus, Blackscale, abnormal dragons, and Garadwal moving actively. +- `day-29`: Excellence says he protected the vultures after Gardwal failed, and his brother was apparently looking for him. ## Related Entries @@ -45,9 +61,13 @@ Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [B - [Elemental Prisons](../concepts/elemental-prisons.md) - [Brutor Ruby Eye](brutor-ruby-eye.md) - [Black Scales](../factions/black-scales.md) +- [Cardonald's Desert Laboratory](../places/desert-laboratory.md) +- [Rimewatch and the Ice Prison](../places/rimewatch-ice-prison.md) ## Open Questions - Is Garadwal a sphinx, void being, elemental master, prisoner, or a conflation of several accounts? - What are the other seven beings or poles connected to him? - Has he escaped, partially escaped, or only influenced agents from prison? +- Was Garadwal once a protector or leader before consuming the void lieutenant? +- Is Excellence's brother the same figure as Garadwal, and why did Goliaths ask Excellence to trap him? diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md index 23f4dd9..51a2738 100644 --- a/data/6-wiki/people/infestus.md +++ b/data/6-wiki/people/infestus.md @@ -4,13 +4,17 @@ type: person aliases: - Black Dragon - black dragon + - bane of multitude + - slayer of Ruby eye first_seen: day-14 -last_updated: day-17 +last_updated: day-26 sources: - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-15.md - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md --- # Infestus @@ -26,12 +30,17 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - Infestus or the black dragon wanted the skull of Alsafaur, described as his son. - A storm and insects accompanied black dragon activity, and the Barrier showed something like eight massive claws. - Brutor may have been killed by the black dragon. +- Rimewatch records call Infestus `bane of multitude`, `slayer of Ruby eye`, black, and father of the veridican. +- Dirk dreamed of an obsidian city where black Dragonborn stood by an archway with mosquitoes on the shield, and Infestus sent Garadwal through a portal using a coin. +- Two plots were named near the Ice prison: removing certain cities and breaking out Garadwal. ## Timeline - `day-14`: Infestus is named as the black dragon behind the Black Scales. - `day-16`: Black dragonborn agents, Errol, Alsafaur's skull, storm, and insect signs connect him to the hidden lab. - `day-17`: The broader council and shipment threads keep Infestus relevant. +- `day-25`: Infestus's titles and ties to Rubyeye, veridican, Peridita, and Garadwal plots are recorded at Rimewatch. +- `day-26`: Dirk's dream shows Infestus using a coin to send Garadwal through a portal. ## Related Entries @@ -43,3 +52,4 @@ Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.m - What does Infestus want from the Barrier and void creatures? - Can crystals on dragon scales intentionally breach or part the Barrier? +- What cities were targeted for removal, and was Infestus behind both dragon plots? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md index e61168e..7142726 100644 --- a/data/6-wiki/people/joy.md +++ b/data/6-wiki/people/joy.md @@ -4,12 +4,14 @@ type: person aliases: - invisible Joy first_seen: day-05 -last_updated: day-16 +last_updated: day-30 sources: - data/4-days-cleaned/day-05.md - data/4-days-cleaned/day-06.md - data/4-days-cleaned/day-14.md - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-30.md --- # Joy @@ -25,6 +27,8 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - Joy's diary records that she was bed-bound, cared for by robots, terminally ill, and disturbed by Daddy's creepy friend asking about the rings. - Six graves were all marked Joy, with clone-spell research nearby. - Dirk later saw or heard invisible Joy saying they were in pain and that it burned, asking for help. +- During a barrier surge at Envi's lab, Valenth saw Joy heading away, not toward a specific circle. +- Errol later saw a tiefling child, possibly Joy, looking out of a window at quiet Crater's Edge around midnight. ## Timeline @@ -32,6 +36,8 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - `day-06`: Her diary, graves, clone chambers, and medical clues reveal repeated attempts to preserve or restore her. - `day-14`: Invisible Joy appears to Dirk in pain. - `day-16`: Memories connect Joy directly to Envoi and alarm responses. +- `day-26`: Valenth sees Joy leaving during an energy surge at Envi's lab. +- `day-30`: A possible Joy-like tiefling child appears at Crater's Edge. ## Related Entries @@ -44,3 +50,4 @@ Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observator - Which Joy was original? - Was Joy poisoned by Slowbane or harmed by shield-crystal-like sickness? - Is Joy's soul trapped, cloned, divided, or otherwise bound by the pact? +- Was the Crater's Edge child Joy, a clone, a projection, or bait? diff --git a/data/6-wiki/people/lortesh.md b/data/6-wiki/people/lortesh.md new file mode 100644 index 0000000..572ae0e --- /dev/null +++ b/data/6-wiki/people/lortesh.md @@ -0,0 +1,43 @@ +--- +title: Lortesh +type: person or dragon +aliases: + - Kortesh Gravesings + - Hortekh + - Uncle Hortekh + - The Twisted +first_seen: day-26 +last_updated: day-31 +sources: + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-31.md +--- + +# Lortesh + +## Summary + +Lortesh, possibly Kortesh Gravesings or Hortekh, was a monstrous green-dragon-linked threat tied to Peridita, sickly Goliaths, Dunnersend, and the missing-page gap before his death. + +## Known Details + +- Azureside records named Perodita's new mate as Kortesh Gravesings, also her son, called `The Twisted`. +- He wore a metal helmet lined with finger bones and metal hooks carrying trophies from his kills. +- Recorded features include two heads, weeping pores, an alien head, no lips, and other monstrous green-dragon traits. +- In Dunnersend, Uncle Hortekh appeared with a massive verdian/veridian Dragonborn and two sickly Goliaths, threatened Dirk and the Goliaths, and said he would get him one day. +- The record jumps over missing pages 103-104 before a fight with Lortesh, ending with the party killing him. +- Day 31 calls Lortesh `untruly end`, says the party could not control him, and compares a later dragon's tail-wings to Lortesh. + +## Related Entries + +- [Dunnersend](../places/dunnersend.md) +- [Garadwal](garadwal.md) +- [Infestus](infestus.md) + +## Open Questions + +- Are Lortesh, Kortesh Gravesings, and Uncle Hortekh the same being? +- What happened during the missing pages before Lortesh was killed? +- What does `untruly end` mean? diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md index b45bbea..012fae2 100644 --- a/data/6-wiki/people/valenth-cardonald.md +++ b/data/6-wiki/people/valenth-cardonald.md @@ -3,35 +3,60 @@ title: Valenth Cardonald type: person aliases: - Velenth Cardonald + - Cardonal + - Cardonald + - Cardenald + - Valenth Caerdunel + - Valenthide + - Valententhide first_seen: day-20 -last_updated: day-20 +last_updated: day-31 sources: - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Valenth Cardonald ## Summary -Valenth or Velenth Cardonald was an old friend of the [Freeport Baroness](freeport-baroness.md) who worked for her before coming willingly and wanted to transfer herself into an object. +Valenth, Velenth, Cardonal, Cardonald, or Cardenald was an old friend of the [Freeport Baroness](freeport-baroness.md), a mage connected to sentient-item work, automations, prison repair, and the desert laboratory. ## Known Details - The Baroness knew Velenth/Valenth Cardonald and was shaken by revelations about her. - Valenth wanted to transfer herself into an object. - This resembles another account that Ruby Eye's best friend wanted to craft herself into something and continue in that form. +- At the desert laboratory, Cardonal communicated through a copper astrolabe with a red gem after 907 years and later took over Silver's construct body when Silver was thrown into the Barrier. +- Cardonal wrote `Instructions for creating sentient jewellery` in Celestial; sentient items needed a soul. +- She could provide teleport-circle codes for prisons, labs, and Grand Towers levels, and could be contacted with fixed Enwi. +- Later she repaired prison systems, helped calculate the Tri-moon shard trajectory, fixed Salt/Seaward issues, resisted mental intrusion, resurrected Rubyeye, and repaired Errol. +- Valenthide/Valententhide is also recorded as a prisoner or prison, with Galetea/Galatrayer as an automation guard; whether this is the same name or a related being remains uncertain. ## Timeline - `day-20`: The party discusses Valenth/Velenth with the Freeport Baroness and receives laboratory code or permission. +- `day-23`: The party meets Cardonal's voice and learns about sentient jewellery, Silver, prisons, labs, and Grand Towers. +- `day-26`: Cardenald repairs prison damage while Valenth reports a barrier surge and Joy leaving Envi's lab. +- `day-27`: Cardenald helps calculate the shard trajectory and is sent to destroy the Salinas statue. +- `day-30`: Cardenald resurrects Rubyeye and investigates Valententhide/Galatrayer. +- `day-31`: Rubyeye takes Valenta back to her lab for repairs after the battle. ## Related Entries - [The Freeport Baroness](freeport-baroness.md) - [Brutor Ruby Eye](brutor-ruby-eye.md) - [Hidden Laboratory](../places/hidden-laboratory.md) +- [Cardonald's Desert Laboratory](../places/desert-laboratory.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) ## Open Questions - Is Valenth the same person as Ruby Eye's best friend? - Did the object-transfer plan succeed, and if so what object contains her? +- Are Valenth/Cardonal/Cardenald and Valenthide/Valententhide separate beings, a spelling collision, or a person-prison relationship? +- What exactly happened to her body, Silver's body, Valenta, and the sentient jewellery experiments? diff --git a/data/6-wiki/people/xinquiss-zinquiss.md b/data/6-wiki/people/xinquiss-zinquiss.md new file mode 100644 index 0000000..913483e --- /dev/null +++ b/data/6-wiki/people/xinquiss-zinquiss.md @@ -0,0 +1,41 @@ +--- +title: Xinquiss/Zinquiss +type: person +aliases: + - Xinquiss + - Xinqus + - Xinquss + - Zinquiss +first_seen: day-21 +last_updated: day-31 +sources: + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md +--- + +# Xinquiss/Zinquiss + +## Summary + +Xinquiss or Zinquiss is a recurring contact tied to the mother-of-pearl chariot auction, potion purchases, the moon shard retrieval thread, and an auction-house cart. + +## Known Details + +- Zinquiss took 200 gp for healing potions and returned three healing potions plus one greater healing potion. +- Zinquiss planned to sell the mother-of-pearl elemental chariot at the Freeport auction house. +- When the moon shard went into the sea, Xinquss had been tasked to retrieve it; Xinquss was also connected to the shield crystal. +- Xinqus was later in town with a cart at the auction house and a [uncertain: pigeon/aracock]; `1600` was recorded nearby without context. + +## Related Entries + +- [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) +- [Tri-moon Shard](../items/tri-moon-shard.md) +- [Freeport Auction Lots](../items/freeport-auction-lots.md) + +## Open Questions + +- Who tasked Xinquss with retrieving the moon shard? +- What did `1600` mean at the auction house? +- Was the auction cart connected to the chariot sale, shard retrieval, or something else? diff --git a/data/6-wiki/places/desert-laboratory.md b/data/6-wiki/places/desert-laboratory.md new file mode 100644 index 0000000..45e92e8 --- /dev/null +++ b/data/6-wiki/places/desert-laboratory.md @@ -0,0 +1,46 @@ +--- +title: Cardonald's Desert Laboratory +type: place +aliases: + - desert laboratory + - Cardonal's lab + - Cardenald's lab + - Valenth's lab +first_seen: day-23 +last_updated: day-30 +sources: + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-30.md +--- + +# Cardonald's Desert Laboratory + +## Summary + +Cardonald's desert laboratory is an ancient automation and sentient-item site tied to [Valenth Cardonald](../people/valenth-cardonald.md), [Brutor Ruby Eye](../people/brutor-ruby-eye.md), Enwi, Silver, prison control, and the wider [Elemental Prisons](../concepts/elemental-prisons.md) network. + +## Known Details + +- Silver, a female automaton, said she had been there 601 years and 907 years without the mistress. +- The mistress died in a spell accident; Silver cleaned her up, and the laboratory remained oddly clean after later damage. +- Rubyeye had visited 47 times, last around 908 years earlier, and requested a book copy after viewing it at Aquaria. +- The site contained white roses, art and statues of Hephaestos's defeat, portraits of Enwi, Joy, Browning, Rubyeye, Heurhall, and a sphinx, and the note `Victorious but too late it was still the Dunewand`. +- Behind Garadwal's picture was a golden band with a smashed ruby resembling Eno's ring, possibly sentient or hurt. +- The library contained Edward Browning automation manuals and Cardonal's Celestial `Instructions for creating sentient jewellery`; sentient items required a soul. +- The laboratory held practice enchanted items and a copper astrolabe with a red gem through which Cardonal spoke after 907 years. +- Cardonal provided or could provide teleport-circle codes for prisons, labs, and Grand Towers levels, including factory, control room, and meeting level. +- Later Cardenald and Rubyeye returned to Cardenald's lab to study and gather supplies. + +## Related Entries + +- [Valenth Cardonald](../people/valenth-cardonald.md) +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) +- [Envoi](../people/envoi.md) +- [Garadwal](../people/garadwal.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) + +## Open Questions + +- Who sent the message `I'm coming to get you`, and whose handwriting was it? +- What book did Rubyeye receive from Aquaria, and why did it return two days before the mistress died? +- Was Silver only a practice vessel, and what exactly happened when Cardonal took over her construct? diff --git a/data/6-wiki/places/dunnersend.md b/data/6-wiki/places/dunnersend.md new file mode 100644 index 0000000..123b5c8 --- /dev/null +++ b/data/6-wiki/places/dunnersend.md @@ -0,0 +1,49 @@ +--- +title: Dunnersend +type: place +aliases: + - Dunesend + - Dunesend State + - Dunnersend + - Dunesmead + - Dunnen +first_seen: day-26 +last_updated: day-31 +sources: + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md +--- + +# Dunnersend + +## Summary + +Dunnersend, Dunesend, or Dunesmead is a desert city-state with Dunnen rules, Mother and Father rulers, Arahuoa/Vulturemen conflict, automaton infiltration, Goliath history, and later military support for the party. + +## Known Details + +- Dunesmead shone blue and orange, had a very Arabic style, and enforced rules against alcohol, spell writing, and worship of liar or darkness. +- The court included Father Haithes [uncertain], Mother Egraine Brook, the Hearth Master, and the Huntsmistress. +- Vulturemen or Arahuoa assassins, Haemia, fire demons, snake-lizard people, green dragon attacks, and a moving desert fort all threatened the city. +- Automaton infiltrators included Agugu, a guard with a wife and five-year identity, and other guards; The Guilt said the whole place was riddled with automatons. +- Sister Proulsothight [uncertain] held a box like Gelissa's, apparently the target of recent shop break-ins. +- Dunnersend records and scholars connect the Goliaths to city-building, Ashktioth, Tradesmall, and old contact about 900 years ago. +- The city and rulers supported the party in wars to come after Lortesh died. +- Dunnersend later supplied 100 troops, 5 healers, transport, and 10 cavalry; its army killed a green dragon during the Brass City battle. + +## Related Entries + +- [Excellences](../concepts/excellences.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Lortesh](../people/lortesh.md) +- [Garadwal](../people/garadwal.md) + +## Open Questions + +- Who controls the automaton infiltrators? +- What was in Sister Proulsothight's box? +- What is the connection between Dunnersend, the Goliath ancestral grounds, Ashktioth, Tradesmall, and the tower in a field? diff --git a/data/6-wiki/places/freeport.md b/data/6-wiki/places/freeport.md index 27608e5..d573f02 100644 --- a/data/6-wiki/places/freeport.md +++ b/data/6-wiki/places/freeport.md @@ -2,11 +2,13 @@ title: Freeport type: place first_seen: day-17 -last_updated: day-22 +last_updated: day-31 sources: - data/4-days-cleaned/day-17.md - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-31.md --- # Freeport @@ -21,12 +23,17 @@ Freeport is a busy trade city with no trade taxes, ruled by the reclusive Barone - The party met Tiana/Taina at the Siren & Garter. - Locations include Pirates Pearls Plundered, Esmerelda's shop, Bugbear, Drunken Duck, and the Freeport auction house. - Zinquiss planned to sell the mother-of-pearl elemental chariot at the auction house in seven days. +- Freeport became unusually cold and snowy after the merfolk rescue, with widespread dreams or warnings including a moon crashing into a city. +- The Baroness gave the party access to the Drunken Duck, a secret Underbelly venue airwise from the Jewelry District. +- The auction house later hosted Xinqus, Mirth, a mixed crowd, and significant lots including Browning's scroll, Firefang, a chariot, a bag of sorting, and Noxia's silver scorpion holy symbol. ## Timeline - `day-17`: Freeport is named as a contact destination. - `day-20`: The party works with Freeport's Baroness and Pact leader. - `day-22`: The chariot sale is planned at the Freeport auction house. +- `day-23`: The party returns through Freeport, sees dream panic and snow, meets the Baroness, and visits the Drunken Duck. +- `day-31`: The party attends the auction house and sees Xinqus's cart and major magical/historical lots. ## Related Entries @@ -34,3 +41,4 @@ Freeport is a busy trade city with no trade taxes, ruled by the reclusive Barone - [Tiana/Taina](../people/tiana-taina.md) - [The Pact](../factions/the-pact.md) - [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) +- [Freeport Auction Lots](../items/freeport-auction-lots.md) diff --git a/data/6-wiki/places/hidden-laboratory.md b/data/6-wiki/places/hidden-laboratory.md index dcfbe3d..ce2e9c2 100644 --- a/data/6-wiki/places/hidden-laboratory.md +++ b/data/6-wiki/places/hidden-laboratory.md @@ -6,10 +6,11 @@ aliases: - old lab - crater lab first_seen: day-16 -last_updated: day-20 +last_updated: day-30 sources: - data/4-days-cleaned/day-16.md - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-30.md --- # Hidden Laboratory @@ -24,11 +25,13 @@ The hidden laboratory opened by `Spinal` preserves [Brutor Ruby Eye](../people/b - It preserved Brutor's hand and blood-based protections. - Memories showed the Barrier, Grand Towers, Envoi, Brutor, the Pact, a purple rock, and possible cover-ups. - A later old lab in a crater was found but inaccessible; it may or may not be the same laboratory network. +- Browning's lab was later placed near Crater's Edge; Errol found Crater's Edge intact and very quiet, with a possible Joy-like tiefling child visible at midnight. ## Timeline - `day-16`: The party enters the lab, releases or contacts a void creature, encounters black dragonborn, and recovers major lore. - `day-20`: The Baroness provides lab-related code or permission for another site. +- `day-30`: Browning's lab near Crater's Edge and a possible Joy sighting make the crater-lab thread active again. ## Related Entries @@ -42,3 +45,4 @@ The hidden laboratory opened by `Spinal` preserves [Brutor Ruby Eye](../people/b - Are the hidden lab and crater lab the same site, linked sites, or separate facilities? - What remaining systems can repair or further damage the Barrier? +- Was the quiet Crater's Edge scene a trap? diff --git a/data/6-wiki/places/rimewatch-ice-prison.md b/data/6-wiki/places/rimewatch-ice-prison.md new file mode 100644 index 0000000..5ad5c1f --- /dev/null +++ b/data/6-wiki/places/rimewatch-ice-prison.md @@ -0,0 +1,44 @@ +--- +title: Rimewatch and the Ice Prison +type: place +aliases: + - Rimewatch + - Ice prison + - Iceblus's prison + - Iceland's prison + - Howling Tombs +first_seen: day-25 +last_updated: day-26 +sources: + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md +--- + +# Rimewatch and the Ice Prison + +## Summary + +Rimewatch is an outpost around a pylon near the Ice prison, where storms, dragon plots, Rubyeye's prison-status work, and Enwi's siphoning converge. + +## Known Details + +- The party approached Rimewatch on Ice Fang and found the town worse than before, with stormy weather near Snow Sorrow. +- A warning from 20 years earlier described dragons plotting again, dragons breathing the Terror of the Sands out of her prison, and the black one being cast out. +- Infestus, Peridita, Calemnis Bereth/Girth, Garadwal, Rubyeye, the veridican, and Peridita as `Mother of many` were connected to two plots: removing cities and breaking out Garadwal. +- The Howling Tombs were identified as where storms begin. +- The prison entrance later appeared burst open, with a snow haunt, claw-torn tents, pale blue rocks, hollow rocks or possible eggs, and an ice-white eagle that killed Grubins. +- Anrasurall, a robed Humein from Baytail Accord, tried to free someone with runes he was given; he said he got into the circle and fired out of the front before the bird killed him. +- Six empty-seeming copper rune orbs were containment devices for elementals. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Garadwal](../people/garadwal.md) +- [Infestus](../people/infestus.md) +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) + +## Open Questions + +- Who gave Anrasurall the runes? +- What was he trying to free, and did he succeed? +- Are the hollow rocks eggs, and what is the ice-white eagle guarding? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index b4ebbea..8eb2c2d 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -23,6 +23,14 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Sources @@ -49,6 +57,14 @@ sources: - `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). - `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). +- `data/4-days-cleaned/day-23.md`: [Cardonald's Desert Laboratory](places/desert-laboratory.md), [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Envoi](people/envoi.md), [Elemental Prisons](concepts/elemental-prisons.md), [The Pact](factions/the-pact.md), [Black Scales](factions/black-scales.md). +- `data/4-days-cleaned/day-25.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-26.md`: [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), [The Pact](factions/the-pact.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [Infestus](people/infestus.md), [Black Scales](factions/black-scales.md), [Valenth Cardonald](people/valenth-cardonald.md). +- `data/4-days-cleaned/day-27.md`: [Dunnersend](places/dunnersend.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md), [Garadwal](people/garadwal.md), [The Chorus](people/the-chorus.md). +- `data/4-days-cleaned/day-28.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Excellences](concepts/excellences.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-29.md`: [Dunnersend](places/dunnersend.md), [Lortesh](people/lortesh.md), [Excellences](concepts/excellences.md), [Garadwal](people/garadwal.md). +- `data/4-days-cleaned/day-30.md`: [Dunnersend](places/dunnersend.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Valenth Cardonald](people/valenth-cardonald.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-31.md`: [Freeport Auction Lots](items/freeport-auction-lots.md), [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md), [Lortesh](people/lortesh.md), [Excellences](concepts/excellences.md), [Dunnersend](places/dunnersend.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md). ## Stateful Rollups diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md index c77c135..319019a 100644 --- a/data/6-wiki/timeline.md +++ b/data/6-wiki/timeline.md @@ -23,6 +23,14 @@ sources: - data/4-days-cleaned/day-20.md - data/4-days-cleaned/day-21.md - data/4-days-cleaned/day-22.md + - data/4-days-cleaned/day-23.md + - data/4-days-cleaned/day-25.md + - data/4-days-cleaned/day-26.md + - data/4-days-cleaned/day-27.md + - data/4-days-cleaned/day-28.md + - data/4-days-cleaned/day-29.md + - data/4-days-cleaned/day-30.md + - data/4-days-cleaned/day-31.md --- # Timeline @@ -49,3 +57,12 @@ sources: - `day-20`: [The Pact](factions/the-pact.md), Freeport, the Baroness, Valenth/Velenth, Kiendra's stolen conch, and the shield crystal mission converge. - `day-21`: Regional crises escalate around Highden, Heartmoor, Provincia, the Grand Towers, and the sea shield crystal operation. - `day-22`: The underwater party fights at the [Shield Crystals](items/shield-crystals.md) site, rescues [Kiendra](people/kiendra.md), defeats an [Excellence](concepts/excellences.md), and recovers the [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md). +- `day-23`: The party rescues merfolk, visits Freeport's Drunken Duck, explores [Cardonald's Desert Laboratory](places/desert-laboratory.md), learns more about [Garadwal](people/garadwal.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), Enwi, Cardonal, and the prison network, then reaches Iceland near the Ice prison crisis. +- `day-24`: No confirmed cleaned day boundary exists; material continues inside `day-23` until `day-25`. +- `day-25`: At [Rimewatch and the Ice Prison](places/rimewatch-ice-prison.md), the party learns of dragon plots, Infestus's titles, Peridita, Garadwal's people, Rubyeye's prison-status readout, and Enwi's siphoning weakening all prisons. +- `day-26`: Dreams show dwarven, Infestus, Garadwal, and hidden-room visions; the party investigates the Ice and life prisons, defeats The Mother at Baytail Accord, becomes Saviours of the Pact, and receives reports about Dunesend, Goldenswell, Goliaths, Green Dragons, and Valenth. +- `day-27`: In [Dunnersend](places/dunnersend.md), the party deals with Arahuoa/Vulturemen, Haemia, automaton infiltrators, The Guilt, Goliath ancestral-ground questions, Sister Proulsothight's box, Uncle Hortekh, and Morgana joining as the fifth party member. +- `day-28`: The party learns Pride may have opened a prison, Rubyeye explains systems under Grand Towers, and the party evades young adult dragons searching the Endless Dunes. +- `day-29`: Missing source pages interrupt the record; the party meets Excellence beneath the sands, kills [Lortesh](people/lortesh.md), earns Dunnersend support, and hears The Guilt admit accidentally opening a prison while controlling a wizard. +- `day-30`: Dunnersend prepares forces, messages are intercepted, the moon shard enters the sea, [Xinquiss/Zinquiss](people/xinquiss-zinquiss.md) is tasked with retrieval, Rubyeye is resurrected, and Valententhide, The Betrayer, Enwi's gloves, Goldenswell, and Crater's Edge remain active threats. +- `day-31`: The party attends the [Freeport Auction Lots](items/freeport-auction-lots.md), then joins battle near the Brass City forces; Goliaths are freed, the Dunnersend army kills a green dragon, Treamen the Earth Excellence dies, and Dirk's father plans for Salvation and the Goliath tower in a field. -
cd3ee3fAdd human instructionsby Bas Mostert
HUMAN.md | 4 ++++ 1 file changed, 4 insertions(+)Show diff
diff --git a/HUMAN.md b/HUMAN.md new file mode 100644 index 0000000..d6af069 --- /dev/null +++ b/HUMAN.md @@ -0,0 +1,4 @@ +# Resize images +``` +find . -iname '*.HEIC' | xargs -P 6 -I{} sh -c 'echo "$1"; magick "$1" -resize "1350x1800>" "jpg/${1%.*}.jpg"' _ "{}" +``` -
30e6014Add all pages source imagesby Bas Mostert
data/1-source/IMG_10001.jpg | Bin 0 -> 439271 bytes data/1-source/IMG_10002.jpg | Bin 0 -> 424268 bytes data/1-source/IMG_10003.jpg | Bin 0 -> 460707 bytes data/1-source/IMG_10004.jpg | Bin 0 -> 418613 bytes data/1-source/IMG_10005.jpg | Bin 0 -> 363788 bytes data/1-source/IMG_9735.jpg | Bin 0 -> 507875 bytes data/1-source/IMG_9736.jpg | Bin 0 -> 491270 bytes data/1-source/IMG_9737.jpg | Bin 0 -> 481596 bytes data/1-source/IMG_9738.jpg | Bin 0 -> 454150 bytes data/1-source/IMG_9739.jpg | Bin 0 -> 483270 bytes data/1-source/IMG_9740.jpg | Bin 0 -> 485892 bytes data/1-source/IMG_9741.jpg | Bin 0 -> 464525 bytes data/1-source/IMG_9742.jpg | Bin 0 -> 439138 bytes data/1-source/IMG_9743.jpg | Bin 0 -> 486913 bytes data/1-source/IMG_9744.jpg | Bin 0 -> 495782 bytes data/1-source/IMG_9745.jpg | Bin 0 -> 476928 bytes data/1-source/IMG_9746.jpg | Bin 0 -> 467537 bytes data/1-source/IMG_9747.jpg | Bin 0 -> 478826 bytes data/1-source/IMG_9748.jpg | Bin 0 -> 469369 bytes data/1-source/IMG_9749.jpg | Bin 0 -> 439513 bytes data/1-source/IMG_9750.jpg | Bin 0 -> 472316 bytes data/1-source/IMG_9751.jpg | Bin 0 -> 452117 bytes data/1-source/IMG_9752.jpg | Bin 0 -> 488476 bytes data/1-source/IMG_9753.jpg | Bin 0 -> 484972 bytes data/1-source/IMG_9754.jpg | Bin 0 -> 467220 bytes data/1-source/IMG_9755.jpg | Bin 0 -> 500185 bytes data/1-source/IMG_9756.jpg | Bin 0 -> 453631 bytes data/1-source/IMG_9757.jpg | Bin 0 -> 505934 bytes data/1-source/IMG_9758.jpg | Bin 0 -> 483016 bytes data/1-source/IMG_9759.jpg | Bin 0 -> 476195 bytes data/1-source/IMG_9760.jpg | Bin 0 -> 469123 bytes data/1-source/IMG_9761.jpg | Bin 0 -> 505449 bytes data/1-source/IMG_9762.jpg | Bin 0 -> 453858 bytes data/1-source/IMG_9763.jpg | Bin 0 -> 519217 bytes data/1-source/IMG_9764.jpg | Bin 0 -> 489573 bytes data/1-source/IMG_9765.jpg | Bin 0 -> 547543 bytes data/1-source/IMG_9766.jpg | Bin 0 -> 497658 bytes data/1-source/IMG_9767.jpg | Bin 0 -> 472655 bytes data/1-source/IMG_9768.jpg | Bin 0 -> 474555 bytes data/1-source/IMG_9769.jpg | Bin 0 -> 500025 bytes data/1-source/IMG_9770.jpg | Bin 0 -> 453250 bytes data/1-source/IMG_9771.jpg | Bin 0 -> 432471 bytes data/1-source/IMG_9772.jpg | Bin 0 -> 454761 bytes data/1-source/IMG_9773.jpg | Bin 0 -> 490870 bytes data/1-source/IMG_9774.jpg | Bin 0 -> 494798 bytes data/1-source/IMG_9775.jpg | Bin 0 -> 482908 bytes data/1-source/IMG_9778.jpg | Bin 0 -> 487870 bytes data/1-source/IMG_9779.jpg | Bin 0 -> 444865 bytes data/1-source/IMG_9780.jpg | Bin 0 -> 458239 bytes data/1-source/IMG_9781.jpg | Bin 0 -> 470775 bytes data/1-source/IMG_9782.jpg | Bin 0 -> 441240 bytes data/1-source/IMG_9783.jpg | Bin 0 -> 465192 bytes data/1-source/IMG_9784.jpg | Bin 0 -> 488521 bytes data/1-source/IMG_9785.jpg | Bin 0 -> 483710 bytes data/1-source/IMG_9786.jpg | Bin 0 -> 470876 bytes data/1-source/IMG_9787.jpg | Bin 0 -> 487992 bytes data/1-source/IMG_9788.jpg | Bin 0 -> 456502 bytes data/1-source/IMG_9789.jpg | Bin 0 -> 479693 bytes data/1-source/IMG_9790.jpg | Bin 0 -> 447377 bytes data/1-source/IMG_9791.jpg | Bin 0 -> 455495 bytes data/1-source/IMG_9792.jpg | Bin 0 -> 461773 bytes data/1-source/IMG_9793.jpg | Bin 0 -> 462497 bytes data/1-source/IMG_9794.jpg | Bin 0 -> 479460 bytes data/1-source/IMG_9795.jpg | Bin 0 -> 474176 bytes data/1-source/IMG_9796.jpg | Bin 0 -> 445225 bytes data/1-source/IMG_9797.jpg | Bin 0 -> 467694 bytes data/1-source/IMG_9798.jpg | Bin 0 -> 463234 bytes data/1-source/IMG_9799.jpg | Bin 0 -> 484000 bytes data/1-source/IMG_9800.jpg | Bin 0 -> 483251 bytes data/1-source/IMG_9801.jpg | Bin 0 -> 482012 bytes data/1-source/IMG_9802.jpg | Bin 0 -> 459962 bytes data/1-source/IMG_9803.jpg | Bin 0 -> 452554 bytes data/1-source/IMG_9804.jpg | Bin 0 -> 477019 bytes data/1-source/IMG_9805.jpg | Bin 0 -> 462559 bytes data/1-source/IMG_9806.jpg | Bin 0 -> 485499 bytes data/1-source/IMG_9807.jpg | Bin 0 -> 457696 bytes data/1-source/IMG_9808.jpg | Bin 0 -> 477426 bytes data/1-source/IMG_9809.jpg | Bin 0 -> 461990 bytes data/1-source/IMG_9810.jpg | Bin 0 -> 450055 bytes data/1-source/IMG_9811.jpg | Bin 0 -> 446583 bytes data/1-source/IMG_9812.jpg | Bin 0 -> 482835 bytes data/1-source/IMG_9813.jpg | Bin 0 -> 465605 bytes data/1-source/IMG_9814.jpg | Bin 0 -> 513072 bytes data/1-source/IMG_9815.jpg | Bin 0 -> 499820 bytes data/1-source/IMG_9816.jpg | Bin 0 -> 498210 bytes data/1-source/IMG_9817.jpg | Bin 0 -> 460718 bytes data/1-source/IMG_9818.jpg | Bin 0 -> 435890 bytes data/1-source/IMG_9819.jpg | Bin 0 -> 444931 bytes data/1-source/IMG_9820.jpg | Bin 0 -> 451895 bytes data/1-source/IMG_9821.jpg | Bin 0 -> 426294 bytes data/1-source/IMG_9822.jpg | Bin 0 -> 458824 bytes data/1-source/IMG_9823.jpg | Bin 0 -> 441245 bytes data/1-source/IMG_9824.jpg | Bin 0 -> 458834 bytes data/1-source/IMG_9825.jpg | Bin 0 -> 441786 bytes data/1-source/IMG_9826.jpg | Bin 0 -> 439801 bytes data/1-source/IMG_9827.jpg | Bin 0 -> 451836 bytes data/1-source/IMG_9828.jpg | Bin 0 -> 479801 bytes data/1-source/IMG_9829.jpg | Bin 0 -> 478827 bytes data/1-source/IMG_9830.jpg | Bin 0 -> 473720 bytes data/1-source/IMG_9831.jpg | Bin 0 -> 465573 bytes data/1-source/IMG_9832.jpg | Bin 0 -> 474439 bytes data/1-source/IMG_9833.jpg | Bin 0 -> 474347 bytes data/1-source/IMG_9834.jpg | Bin 0 -> 454253 bytes data/1-source/IMG_9835.jpg | Bin 0 -> 467147 bytes data/1-source/IMG_9836.jpg | Bin 0 -> 490004 bytes data/1-source/IMG_9837.jpg | Bin 0 -> 491152 bytes data/1-source/IMG_9838.jpg | Bin 0 -> 456567 bytes data/1-source/IMG_9839.jpg | Bin 0 -> 430395 bytes data/1-source/IMG_9840.jpg | Bin 0 -> 397642 bytes data/1-source/IMG_9841.jpg | Bin 0 -> 385919 bytes data/1-source/IMG_9842.jpg | Bin 0 -> 427714 bytes data/1-source/IMG_9843.jpg | Bin 0 -> 431907 bytes data/1-source/IMG_9844.jpg | Bin 0 -> 413904 bytes data/1-source/IMG_9845.jpg | Bin 0 -> 433463 bytes data/1-source/IMG_9846.jpg | Bin 0 -> 432255 bytes data/1-source/IMG_9847.jpg | Bin 0 -> 420059 bytes data/1-source/IMG_9848.jpg | Bin 0 -> 411674 bytes data/1-source/IMG_9849.jpg | Bin 0 -> 404195 bytes data/1-source/IMG_9850.jpg | Bin 0 -> 415280 bytes data/1-source/IMG_9851.jpg | Bin 0 -> 438795 bytes data/1-source/IMG_9852.jpg | Bin 0 -> 422119 bytes data/1-source/IMG_9853.jpg | Bin 0 -> 410303 bytes data/1-source/IMG_9854.jpg | Bin 0 -> 440308 bytes data/1-source/IMG_9855.jpg | Bin 0 -> 442296 bytes data/1-source/IMG_9856.jpg | Bin 0 -> 442494 bytes data/1-source/IMG_9857.jpg | Bin 0 -> 446798 bytes data/1-source/IMG_9858.jpg | Bin 0 -> 457289 bytes data/1-source/IMG_9859.jpg | Bin 0 -> 455291 bytes data/1-source/IMG_9860.jpg | Bin 0 -> 453099 bytes data/1-source/IMG_9861.jpg | Bin 0 -> 469332 bytes data/1-source/IMG_9862.jpg | Bin 0 -> 474983 bytes data/1-source/IMG_9863.jpg | Bin 0 -> 475288 bytes data/1-source/IMG_9864.jpg | Bin 0 -> 488767 bytes data/1-source/IMG_9865.jpg | Bin 0 -> 478533 bytes data/1-source/IMG_9866.jpg | Bin 0 -> 454167 bytes data/1-source/IMG_9867.jpg | Bin 0 -> 445531 bytes data/1-source/IMG_9868.jpg | Bin 0 -> 477821 bytes data/1-source/IMG_9869.jpg | Bin 0 -> 489514 bytes data/1-source/IMG_9870.jpg | Bin 0 -> 457355 bytes data/1-source/IMG_9871.jpg | Bin 0 -> 448508 bytes data/1-source/IMG_9872.jpg | Bin 0 -> 468480 bytes data/1-source/IMG_9873.jpg | Bin 0 -> 477906 bytes data/1-source/IMG_9874.jpg | Bin 0 -> 464783 bytes data/1-source/IMG_9875.jpg | Bin 0 -> 468621 bytes data/1-source/IMG_9876.jpg | Bin 0 -> 468898 bytes data/1-source/IMG_9877.jpg | Bin 0 -> 457435 bytes data/1-source/IMG_9878.jpg | Bin 0 -> 446560 bytes data/1-source/IMG_9879.jpg | Bin 0 -> 331909 bytes data/1-source/IMG_9880.jpg | Bin 0 -> 418398 bytes data/1-source/IMG_9881.jpg | Bin 0 -> 424257 bytes data/1-source/IMG_9882.jpg | Bin 0 -> 459424 bytes data/1-source/IMG_9883.jpg | Bin 0 -> 427086 bytes data/1-source/IMG_9884.jpg | Bin 0 -> 450972 bytes data/1-source/IMG_9885.jpg | Bin 0 -> 443625 bytes data/1-source/IMG_9886.jpg | Bin 0 -> 449334 bytes data/1-source/IMG_9887.jpg | Bin 0 -> 464311 bytes data/1-source/IMG_9888.jpg | Bin 0 -> 472890 bytes data/1-source/IMG_9889.jpg | Bin 0 -> 454666 bytes data/1-source/IMG_9890.jpg | Bin 0 -> 451168 bytes data/1-source/IMG_9891.jpg | Bin 0 -> 431608 bytes data/1-source/IMG_9892.jpg | Bin 0 -> 440721 bytes data/1-source/IMG_9893.jpg | Bin 0 -> 456899 bytes data/1-source/IMG_9894.jpg | Bin 0 -> 427061 bytes data/1-source/IMG_9895.jpg | Bin 0 -> 450971 bytes data/1-source/IMG_9896.jpg | Bin 0 -> 451673 bytes data/1-source/IMG_9897.jpg | Bin 0 -> 449944 bytes data/1-source/IMG_9898.jpg | Bin 0 -> 438576 bytes data/1-source/IMG_9899.jpg | Bin 0 -> 466263 bytes data/1-source/IMG_9900.jpg | Bin 0 -> 434590 bytes data/1-source/IMG_9901.jpg | Bin 0 -> 435254 bytes data/1-source/IMG_9902.jpg | Bin 0 -> 429141 bytes data/1-source/IMG_9903.jpg | Bin 0 -> 449302 bytes data/1-source/IMG_9904.jpg | Bin 0 -> 461556 bytes data/1-source/IMG_9905.jpg | Bin 0 -> 443519 bytes data/1-source/IMG_9906.jpg | Bin 0 -> 436281 bytes data/1-source/IMG_9907.jpg | Bin 0 -> 421063 bytes data/1-source/IMG_9908.jpg | Bin 0 -> 416903 bytes data/1-source/IMG_9909.jpg | Bin 0 -> 447931 bytes data/1-source/IMG_9910.jpg | Bin 0 -> 450733 bytes data/1-source/IMG_9911.jpg | Bin 0 -> 446133 bytes data/1-source/IMG_9912.jpg | Bin 0 -> 431642 bytes data/1-source/IMG_9913.jpg | Bin 0 -> 433852 bytes data/1-source/IMG_9914.jpg | Bin 0 -> 397008 bytes data/1-source/IMG_9915.jpg | Bin 0 -> 376254 bytes data/1-source/IMG_9916.jpg | Bin 0 -> 442591 bytes data/1-source/IMG_9919.jpg | Bin 0 -> 488828 bytes data/1-source/IMG_9920.jpg | Bin 0 -> 508313 bytes data/1-source/IMG_9921.jpg | Bin 0 -> 455520 bytes data/1-source/IMG_9922.jpg | Bin 0 -> 497931 bytes data/1-source/IMG_9923.jpg | Bin 0 -> 487061 bytes data/1-source/IMG_9924.jpg | Bin 0 -> 465700 bytes data/1-source/IMG_9925.jpg | Bin 0 -> 473428 bytes data/1-source/IMG_9926.jpg | Bin 0 -> 504009 bytes data/1-source/IMG_9927.jpg | Bin 0 -> 486516 bytes data/1-source/IMG_9928.jpg | Bin 0 -> 498290 bytes data/1-source/IMG_9929.jpg | Bin 0 -> 491187 bytes data/1-source/IMG_9930.jpg | Bin 0 -> 486371 bytes data/1-source/IMG_9931.jpg | Bin 0 -> 467851 bytes data/1-source/IMG_9932.jpg | Bin 0 -> 471899 bytes data/1-source/IMG_9933.jpg | Bin 0 -> 453142 bytes data/1-source/IMG_9934.jpg | Bin 0 -> 494940 bytes data/1-source/IMG_9935.jpg | Bin 0 -> 500920 bytes data/1-source/IMG_9936.jpg | Bin 0 -> 470309 bytes data/1-source/IMG_9937.jpg | Bin 0 -> 466894 bytes data/1-source/IMG_9938.jpg | Bin 0 -> 486293 bytes data/1-source/IMG_9939.jpg | Bin 0 -> 473124 bytes data/1-source/IMG_9940.jpg | Bin 0 -> 438842 bytes data/1-source/IMG_9941.jpg | Bin 0 -> 471220 bytes data/1-source/IMG_9942.jpg | Bin 0 -> 497585 bytes data/1-source/IMG_9943.jpg | Bin 0 -> 490071 bytes data/1-source/IMG_9944.jpg | Bin 0 -> 477069 bytes data/1-source/IMG_9945.jpg | Bin 0 -> 437384 bytes data/1-source/IMG_9946.jpg | Bin 0 -> 468295 bytes data/1-source/IMG_9947.jpg | Bin 0 -> 479460 bytes data/1-source/IMG_9948.jpg | Bin 0 -> 462755 bytes data/1-source/IMG_9949.jpg | Bin 0 -> 499796 bytes data/1-source/IMG_9950.jpg | Bin 0 -> 507783 bytes data/1-source/IMG_9951.jpg | Bin 0 -> 482635 bytes data/1-source/IMG_9952.jpg | Bin 0 -> 452771 bytes data/1-source/IMG_9953.jpg | Bin 0 -> 441366 bytes data/1-source/IMG_9954.jpg | Bin 0 -> 431799 bytes data/1-source/IMG_9955.jpg | Bin 0 -> 423620 bytes data/1-source/IMG_9956.jpg | Bin 0 -> 478736 bytes data/1-source/IMG_9957.jpg | Bin 0 -> 496781 bytes data/1-source/IMG_9958.jpg | Bin 0 -> 460280 bytes data/1-source/IMG_9959.jpg | Bin 0 -> 452023 bytes data/1-source/IMG_9960.jpg | Bin 0 -> 476464 bytes data/1-source/IMG_9961.jpg | Bin 0 -> 477187 bytes data/1-source/IMG_9962.jpg | Bin 0 -> 483586 bytes data/1-source/IMG_9963.jpg | Bin 0 -> 465562 bytes data/1-source/IMG_9964.jpg | Bin 0 -> 450025 bytes data/1-source/IMG_9965.jpg | Bin 0 -> 417702 bytes data/1-source/IMG_9966.jpg | Bin 0 -> 459366 bytes data/1-source/IMG_9967.jpg | Bin 0 -> 463918 bytes data/1-source/IMG_9968.jpg | Bin 0 -> 469496 bytes data/1-source/IMG_9969.jpg | Bin 0 -> 470653 bytes data/1-source/IMG_9970.jpg | Bin 0 -> 474989 bytes data/1-source/IMG_9971.jpg | Bin 0 -> 441550 bytes data/1-source/IMG_9972.jpg | Bin 0 -> 461854 bytes data/1-source/IMG_9973.jpg | Bin 0 -> 470817 bytes data/1-source/IMG_9974.jpg | Bin 0 -> 448041 bytes data/1-source/IMG_9975.jpg | Bin 0 -> 468339 bytes data/1-source/IMG_9976.jpg | Bin 0 -> 475620 bytes data/1-source/IMG_9977.jpg | Bin 0 -> 515042 bytes data/1-source/IMG_9978.jpg | Bin 0 -> 472587 bytes data/1-source/IMG_9979.jpg | Bin 0 -> 455901 bytes data/1-source/IMG_9980.jpg | Bin 0 -> 459786 bytes data/1-source/IMG_9981.jpg | Bin 0 -> 457090 bytes data/1-source/IMG_9982.jpg | Bin 0 -> 452039 bytes data/1-source/IMG_9983.jpg | Bin 0 -> 462332 bytes data/1-source/IMG_9984.jpg | Bin 0 -> 452067 bytes data/1-source/IMG_9985.jpg | Bin 0 -> 450385 bytes data/1-source/IMG_9986.jpg | Bin 0 -> 472267 bytes data/1-source/IMG_9987.jpg | Bin 0 -> 463463 bytes data/1-source/IMG_9988.jpg | Bin 0 -> 421954 bytes data/1-source/IMG_9989.jpg | Bin 0 -> 422269 bytes data/1-source/IMG_9990.jpg | Bin 0 -> 439257 bytes data/1-source/IMG_9991.jpg | Bin 0 -> 420518 bytes data/1-source/IMG_9992.jpg | Bin 0 -> 452652 bytes data/1-source/IMG_9993.jpg | Bin 0 -> 434639 bytes data/1-source/IMG_9994.jpg | Bin 0 -> 436058 bytes data/1-source/IMG_9995.jpg | Bin 0 -> 432675 bytes data/1-source/IMG_9996.jpg | Bin 0 -> 446640 bytes data/1-source/IMG_9997.jpg | Bin 0 -> 449424 bytes data/1-source/IMG_9998.jpg | Bin 0 -> 414677 bytes data/1-source/IMG_9999.jpg | Bin 0 -> 416876 bytes 266 files changed, 0 insertions(+), 0 deletions(-)Show diff
diff --git a/data/1-source/IMG_10001.jpg b/data/1-source/IMG_10001.jpg new file mode 100644 index 0000000..ce9fd04 Binary files /dev/null and b/data/1-source/IMG_10001.jpg differ diff --git a/data/1-source/IMG_10002.jpg b/data/1-source/IMG_10002.jpg new file mode 100644 index 0000000..570a18a Binary files /dev/null and b/data/1-source/IMG_10002.jpg differ diff --git a/data/1-source/IMG_10003.jpg b/data/1-source/IMG_10003.jpg new file mode 100644 index 0000000..079921a Binary files /dev/null and b/data/1-source/IMG_10003.jpg differ diff --git a/data/1-source/IMG_10004.jpg b/data/1-source/IMG_10004.jpg new file mode 100644 index 0000000..ef9f9e8 Binary files /dev/null and b/data/1-source/IMG_10004.jpg differ diff --git a/data/1-source/IMG_10005.jpg b/data/1-source/IMG_10005.jpg new file mode 100644 index 0000000..ce8424f Binary files /dev/null and b/data/1-source/IMG_10005.jpg differ diff --git a/data/1-source/IMG_9735.jpg b/data/1-source/IMG_9735.jpg new file mode 100644 index 0000000..40ca32e Binary files /dev/null and b/data/1-source/IMG_9735.jpg differ diff --git a/data/1-source/IMG_9736.jpg b/data/1-source/IMG_9736.jpg new file mode 100644 index 0000000..da08b6b Binary files /dev/null and b/data/1-source/IMG_9736.jpg differ diff --git a/data/1-source/IMG_9737.jpg b/data/1-source/IMG_9737.jpg new file mode 100644 index 0000000..ce9ca33 Binary files /dev/null and b/data/1-source/IMG_9737.jpg differ diff --git a/data/1-source/IMG_9738.jpg b/data/1-source/IMG_9738.jpg new file mode 100644 index 0000000..2337ae9 Binary files /dev/null and b/data/1-source/IMG_9738.jpg differ diff --git a/data/1-source/IMG_9739.jpg b/data/1-source/IMG_9739.jpg new file mode 100644 index 0000000..ccb9ab8 Binary files /dev/null and b/data/1-source/IMG_9739.jpg differ diff --git a/data/1-source/IMG_9740.jpg b/data/1-source/IMG_9740.jpg new file mode 100644 index 0000000..2ce95af Binary files /dev/null and b/data/1-source/IMG_9740.jpg differ diff --git a/data/1-source/IMG_9741.jpg b/data/1-source/IMG_9741.jpg new file mode 100644 index 0000000..48a4379 Binary files /dev/null and b/data/1-source/IMG_9741.jpg differ diff --git a/data/1-source/IMG_9742.jpg b/data/1-source/IMG_9742.jpg new file mode 100644 index 0000000..3e3d509 Binary files /dev/null and b/data/1-source/IMG_9742.jpg differ diff --git a/data/1-source/IMG_9743.jpg b/data/1-source/IMG_9743.jpg new file mode 100644 index 0000000..a32b2b2 Binary files /dev/null and b/data/1-source/IMG_9743.jpg differ diff --git a/data/1-source/IMG_9744.jpg b/data/1-source/IMG_9744.jpg new file mode 100644 index 0000000..959991c Binary files /dev/null and b/data/1-source/IMG_9744.jpg differ diff --git a/data/1-source/IMG_9745.jpg b/data/1-source/IMG_9745.jpg new file mode 100644 index 0000000..44735e7 Binary files /dev/null and b/data/1-source/IMG_9745.jpg differ diff --git a/data/1-source/IMG_9746.jpg b/data/1-source/IMG_9746.jpg new file mode 100644 index 0000000..67f1724 Binary files /dev/null and b/data/1-source/IMG_9746.jpg differ diff --git a/data/1-source/IMG_9747.jpg b/data/1-source/IMG_9747.jpg new file mode 100644 index 0000000..6423de6 Binary files /dev/null and b/data/1-source/IMG_9747.jpg differ diff --git a/data/1-source/IMG_9748.jpg b/data/1-source/IMG_9748.jpg new file mode 100644 index 0000000..194c1e0 Binary files /dev/null and b/data/1-source/IMG_9748.jpg differ diff --git a/data/1-source/IMG_9749.jpg b/data/1-source/IMG_9749.jpg new file mode 100644 index 0000000..e9ede3a Binary files /dev/null and b/data/1-source/IMG_9749.jpg differ diff --git a/data/1-source/IMG_9750.jpg b/data/1-source/IMG_9750.jpg new file mode 100644 index 0000000..9464fc5 Binary files /dev/null and b/data/1-source/IMG_9750.jpg differ diff --git a/data/1-source/IMG_9751.jpg b/data/1-source/IMG_9751.jpg new file mode 100644 index 0000000..ecd2c4e Binary files /dev/null and b/data/1-source/IMG_9751.jpg differ diff --git a/data/1-source/IMG_9752.jpg b/data/1-source/IMG_9752.jpg new file mode 100644 index 0000000..7b087ee Binary files /dev/null and b/data/1-source/IMG_9752.jpg differ diff --git a/data/1-source/IMG_9753.jpg b/data/1-source/IMG_9753.jpg new file mode 100644 index 0000000..61a30bf Binary files /dev/null and b/data/1-source/IMG_9753.jpg differ diff --git a/data/1-source/IMG_9754.jpg b/data/1-source/IMG_9754.jpg new file mode 100644 index 0000000..88228aa Binary files /dev/null and b/data/1-source/IMG_9754.jpg differ diff --git a/data/1-source/IMG_9755.jpg b/data/1-source/IMG_9755.jpg new file mode 100644 index 0000000..16d331c Binary files /dev/null and b/data/1-source/IMG_9755.jpg differ diff --git a/data/1-source/IMG_9756.jpg b/data/1-source/IMG_9756.jpg new file mode 100644 index 0000000..faf57e8 Binary files /dev/null and b/data/1-source/IMG_9756.jpg differ diff --git a/data/1-source/IMG_9757.jpg b/data/1-source/IMG_9757.jpg new file mode 100644 index 0000000..3513f62 Binary files /dev/null and b/data/1-source/IMG_9757.jpg differ diff --git a/data/1-source/IMG_9758.jpg b/data/1-source/IMG_9758.jpg new file mode 100644 index 0000000..902625c Binary files /dev/null and b/data/1-source/IMG_9758.jpg differ diff --git a/data/1-source/IMG_9759.jpg b/data/1-source/IMG_9759.jpg new file mode 100644 index 0000000..c5353b3 Binary files /dev/null and b/data/1-source/IMG_9759.jpg differ diff --git a/data/1-source/IMG_9760.jpg b/data/1-source/IMG_9760.jpg new file mode 100644 index 0000000..1f4c623 Binary files /dev/null and b/data/1-source/IMG_9760.jpg differ diff --git a/data/1-source/IMG_9761.jpg b/data/1-source/IMG_9761.jpg new file mode 100644 index 0000000..4ba095e Binary files /dev/null and b/data/1-source/IMG_9761.jpg differ diff --git a/data/1-source/IMG_9762.jpg b/data/1-source/IMG_9762.jpg new file mode 100644 index 0000000..d3c2ed6 Binary files /dev/null and b/data/1-source/IMG_9762.jpg differ diff --git a/data/1-source/IMG_9763.jpg b/data/1-source/IMG_9763.jpg new file mode 100644 index 0000000..27a1170 Binary files /dev/null and b/data/1-source/IMG_9763.jpg differ diff --git a/data/1-source/IMG_9764.jpg b/data/1-source/IMG_9764.jpg new file mode 100644 index 0000000..6548ba7 Binary files /dev/null and b/data/1-source/IMG_9764.jpg differ diff --git a/data/1-source/IMG_9765.jpg b/data/1-source/IMG_9765.jpg new file mode 100644 index 0000000..191147e Binary files /dev/null and b/data/1-source/IMG_9765.jpg differ diff --git a/data/1-source/IMG_9766.jpg b/data/1-source/IMG_9766.jpg new file mode 100644 index 0000000..7bc2605 Binary files /dev/null and b/data/1-source/IMG_9766.jpg differ diff --git a/data/1-source/IMG_9767.jpg b/data/1-source/IMG_9767.jpg new file mode 100644 index 0000000..93db5ef Binary files /dev/null and b/data/1-source/IMG_9767.jpg differ diff --git a/data/1-source/IMG_9768.jpg b/data/1-source/IMG_9768.jpg new file mode 100644 index 0000000..217f8e3 Binary files /dev/null and b/data/1-source/IMG_9768.jpg differ diff --git a/data/1-source/IMG_9769.jpg b/data/1-source/IMG_9769.jpg new file mode 100644 index 0000000..028020e Binary files /dev/null and b/data/1-source/IMG_9769.jpg differ diff --git a/data/1-source/IMG_9770.jpg b/data/1-source/IMG_9770.jpg new file mode 100644 index 0000000..c0cb83b Binary files /dev/null and b/data/1-source/IMG_9770.jpg differ diff --git a/data/1-source/IMG_9771.jpg b/data/1-source/IMG_9771.jpg new file mode 100644 index 0000000..3c26e7f Binary files /dev/null and b/data/1-source/IMG_9771.jpg differ diff --git a/data/1-source/IMG_9772.jpg b/data/1-source/IMG_9772.jpg new file mode 100644 index 0000000..2aba44c Binary files /dev/null and b/data/1-source/IMG_9772.jpg differ diff --git a/data/1-source/IMG_9773.jpg b/data/1-source/IMG_9773.jpg new file mode 100644 index 0000000..bf81975 Binary files /dev/null and b/data/1-source/IMG_9773.jpg differ diff --git a/data/1-source/IMG_9774.jpg b/data/1-source/IMG_9774.jpg new file mode 100644 index 0000000..63268ed Binary files /dev/null and b/data/1-source/IMG_9774.jpg differ diff --git a/data/1-source/IMG_9775.jpg b/data/1-source/IMG_9775.jpg new file mode 100644 index 0000000..1e6a388 Binary files /dev/null and b/data/1-source/IMG_9775.jpg differ diff --git a/data/1-source/IMG_9778.jpg b/data/1-source/IMG_9778.jpg new file mode 100644 index 0000000..13b64e6 Binary files /dev/null and b/data/1-source/IMG_9778.jpg differ diff --git a/data/1-source/IMG_9779.jpg b/data/1-source/IMG_9779.jpg new file mode 100644 index 0000000..7f9baa6 Binary files /dev/null and b/data/1-source/IMG_9779.jpg differ diff --git a/data/1-source/IMG_9780.jpg b/data/1-source/IMG_9780.jpg new file mode 100644 index 0000000..508b11e Binary files /dev/null and b/data/1-source/IMG_9780.jpg differ diff --git a/data/1-source/IMG_9781.jpg b/data/1-source/IMG_9781.jpg new file mode 100644 index 0000000..317cd15 Binary files /dev/null and b/data/1-source/IMG_9781.jpg differ diff --git a/data/1-source/IMG_9782.jpg b/data/1-source/IMG_9782.jpg new file mode 100644 index 0000000..5be7f00 Binary files /dev/null and b/data/1-source/IMG_9782.jpg differ diff --git a/data/1-source/IMG_9783.jpg b/data/1-source/IMG_9783.jpg new file mode 100644 index 0000000..6db3cfa Binary files /dev/null and b/data/1-source/IMG_9783.jpg differ diff --git a/data/1-source/IMG_9784.jpg b/data/1-source/IMG_9784.jpg new file mode 100644 index 0000000..7fd80f2 Binary files /dev/null and b/data/1-source/IMG_9784.jpg differ diff --git a/data/1-source/IMG_9785.jpg b/data/1-source/IMG_9785.jpg new file mode 100644 index 0000000..d6d876b Binary files /dev/null and b/data/1-source/IMG_9785.jpg differ diff --git a/data/1-source/IMG_9786.jpg b/data/1-source/IMG_9786.jpg new file mode 100644 index 0000000..4a22ca8 Binary files /dev/null and b/data/1-source/IMG_9786.jpg differ diff --git a/data/1-source/IMG_9787.jpg b/data/1-source/IMG_9787.jpg new file mode 100644 index 0000000..fbfea5d Binary files /dev/null and b/data/1-source/IMG_9787.jpg differ diff --git a/data/1-source/IMG_9788.jpg b/data/1-source/IMG_9788.jpg new file mode 100644 index 0000000..b30b9db Binary files /dev/null and b/data/1-source/IMG_9788.jpg differ diff --git a/data/1-source/IMG_9789.jpg b/data/1-source/IMG_9789.jpg new file mode 100644 index 0000000..af78c8b Binary files /dev/null and b/data/1-source/IMG_9789.jpg differ diff --git a/data/1-source/IMG_9790.jpg b/data/1-source/IMG_9790.jpg new file mode 100644 index 0000000..a305815 Binary files /dev/null and b/data/1-source/IMG_9790.jpg differ diff --git a/data/1-source/IMG_9791.jpg b/data/1-source/IMG_9791.jpg new file mode 100644 index 0000000..a294455 Binary files /dev/null and b/data/1-source/IMG_9791.jpg differ diff --git a/data/1-source/IMG_9792.jpg b/data/1-source/IMG_9792.jpg new file mode 100644 index 0000000..d690bc7 Binary files /dev/null and b/data/1-source/IMG_9792.jpg differ diff --git a/data/1-source/IMG_9793.jpg b/data/1-source/IMG_9793.jpg new file mode 100644 index 0000000..e128876 Binary files /dev/null and b/data/1-source/IMG_9793.jpg differ diff --git a/data/1-source/IMG_9794.jpg b/data/1-source/IMG_9794.jpg new file mode 100644 index 0000000..cad7bbb Binary files /dev/null and b/data/1-source/IMG_9794.jpg differ diff --git a/data/1-source/IMG_9795.jpg b/data/1-source/IMG_9795.jpg new file mode 100644 index 0000000..6e4dc47 Binary files /dev/null and b/data/1-source/IMG_9795.jpg differ diff --git a/data/1-source/IMG_9796.jpg b/data/1-source/IMG_9796.jpg new file mode 100644 index 0000000..4b273d0 Binary files /dev/null and b/data/1-source/IMG_9796.jpg differ diff --git a/data/1-source/IMG_9797.jpg b/data/1-source/IMG_9797.jpg new file mode 100644 index 0000000..94f615a Binary files /dev/null and b/data/1-source/IMG_9797.jpg differ diff --git a/data/1-source/IMG_9798.jpg b/data/1-source/IMG_9798.jpg new file mode 100644 index 0000000..6aca957 Binary files /dev/null and b/data/1-source/IMG_9798.jpg differ diff --git a/data/1-source/IMG_9799.jpg b/data/1-source/IMG_9799.jpg new file mode 100644 index 0000000..d4b2060 Binary files /dev/null and b/data/1-source/IMG_9799.jpg differ diff --git a/data/1-source/IMG_9800.jpg b/data/1-source/IMG_9800.jpg new file mode 100644 index 0000000..069f73c Binary files /dev/null and b/data/1-source/IMG_9800.jpg differ diff --git a/data/1-source/IMG_9801.jpg b/data/1-source/IMG_9801.jpg new file mode 100644 index 0000000..18fbcec Binary files /dev/null and b/data/1-source/IMG_9801.jpg differ diff --git a/data/1-source/IMG_9802.jpg b/data/1-source/IMG_9802.jpg new file mode 100644 index 0000000..022ce46 Binary files /dev/null and b/data/1-source/IMG_9802.jpg differ diff --git a/data/1-source/IMG_9803.jpg b/data/1-source/IMG_9803.jpg new file mode 100644 index 0000000..06f8359 Binary files /dev/null and b/data/1-source/IMG_9803.jpg differ diff --git a/data/1-source/IMG_9804.jpg b/data/1-source/IMG_9804.jpg new file mode 100644 index 0000000..8dd491a Binary files /dev/null and b/data/1-source/IMG_9804.jpg differ diff --git a/data/1-source/IMG_9805.jpg b/data/1-source/IMG_9805.jpg new file mode 100644 index 0000000..628dbdf Binary files /dev/null and b/data/1-source/IMG_9805.jpg differ diff --git a/data/1-source/IMG_9806.jpg b/data/1-source/IMG_9806.jpg new file mode 100644 index 0000000..f0fc9ad Binary files /dev/null and b/data/1-source/IMG_9806.jpg differ diff --git a/data/1-source/IMG_9807.jpg b/data/1-source/IMG_9807.jpg new file mode 100644 index 0000000..ca9a8c7 Binary files /dev/null and b/data/1-source/IMG_9807.jpg differ diff --git a/data/1-source/IMG_9808.jpg b/data/1-source/IMG_9808.jpg new file mode 100644 index 0000000..b8280cd Binary files /dev/null and b/data/1-source/IMG_9808.jpg differ diff --git a/data/1-source/IMG_9809.jpg b/data/1-source/IMG_9809.jpg new file mode 100644 index 0000000..47b3391 Binary files /dev/null and b/data/1-source/IMG_9809.jpg differ diff --git a/data/1-source/IMG_9810.jpg b/data/1-source/IMG_9810.jpg new file mode 100644 index 0000000..55aaf4b Binary files /dev/null and b/data/1-source/IMG_9810.jpg differ diff --git a/data/1-source/IMG_9811.jpg b/data/1-source/IMG_9811.jpg new file mode 100644 index 0000000..8617a12 Binary files /dev/null and b/data/1-source/IMG_9811.jpg differ diff --git a/data/1-source/IMG_9812.jpg b/data/1-source/IMG_9812.jpg new file mode 100644 index 0000000..e1898f7 Binary files /dev/null and b/data/1-source/IMG_9812.jpg differ diff --git a/data/1-source/IMG_9813.jpg b/data/1-source/IMG_9813.jpg new file mode 100644 index 0000000..f53b2be Binary files /dev/null and b/data/1-source/IMG_9813.jpg differ diff --git a/data/1-source/IMG_9814.jpg b/data/1-source/IMG_9814.jpg new file mode 100644 index 0000000..eafafcc Binary files /dev/null and b/data/1-source/IMG_9814.jpg differ diff --git a/data/1-source/IMG_9815.jpg b/data/1-source/IMG_9815.jpg new file mode 100644 index 0000000..ffa7026 Binary files /dev/null and b/data/1-source/IMG_9815.jpg differ diff --git a/data/1-source/IMG_9816.jpg b/data/1-source/IMG_9816.jpg new file mode 100644 index 0000000..e72ad5c Binary files /dev/null and b/data/1-source/IMG_9816.jpg differ diff --git a/data/1-source/IMG_9817.jpg b/data/1-source/IMG_9817.jpg new file mode 100644 index 0000000..d8a10ef Binary files /dev/null and b/data/1-source/IMG_9817.jpg differ diff --git a/data/1-source/IMG_9818.jpg b/data/1-source/IMG_9818.jpg new file mode 100644 index 0000000..52351a2 Binary files /dev/null and b/data/1-source/IMG_9818.jpg differ diff --git a/data/1-source/IMG_9819.jpg b/data/1-source/IMG_9819.jpg new file mode 100644 index 0000000..fce1b59 Binary files /dev/null and b/data/1-source/IMG_9819.jpg differ diff --git a/data/1-source/IMG_9820.jpg b/data/1-source/IMG_9820.jpg new file mode 100644 index 0000000..3c6bf4b Binary files /dev/null and b/data/1-source/IMG_9820.jpg differ diff --git a/data/1-source/IMG_9821.jpg b/data/1-source/IMG_9821.jpg new file mode 100644 index 0000000..57c757b Binary files /dev/null and b/data/1-source/IMG_9821.jpg differ diff --git a/data/1-source/IMG_9822.jpg b/data/1-source/IMG_9822.jpg new file mode 100644 index 0000000..65dec20 Binary files /dev/null and b/data/1-source/IMG_9822.jpg differ diff --git a/data/1-source/IMG_9823.jpg b/data/1-source/IMG_9823.jpg new file mode 100644 index 0000000..69a39c2 Binary files /dev/null and b/data/1-source/IMG_9823.jpg differ diff --git a/data/1-source/IMG_9824.jpg b/data/1-source/IMG_9824.jpg new file mode 100644 index 0000000..cb31840 Binary files /dev/null and b/data/1-source/IMG_9824.jpg differ diff --git a/data/1-source/IMG_9825.jpg b/data/1-source/IMG_9825.jpg new file mode 100644 index 0000000..31a0269 Binary files /dev/null and b/data/1-source/IMG_9825.jpg differ diff --git a/data/1-source/IMG_9826.jpg b/data/1-source/IMG_9826.jpg new file mode 100644 index 0000000..c2c10b3 Binary files /dev/null and b/data/1-source/IMG_9826.jpg differ diff --git a/data/1-source/IMG_9827.jpg b/data/1-source/IMG_9827.jpg new file mode 100644 index 0000000..3621058 Binary files /dev/null and b/data/1-source/IMG_9827.jpg differ diff --git a/data/1-source/IMG_9828.jpg b/data/1-source/IMG_9828.jpg new file mode 100644 index 0000000..0dc87c6 Binary files /dev/null and b/data/1-source/IMG_9828.jpg differ diff --git a/data/1-source/IMG_9829.jpg b/data/1-source/IMG_9829.jpg new file mode 100644 index 0000000..54e52f5 Binary files /dev/null and b/data/1-source/IMG_9829.jpg differ diff --git a/data/1-source/IMG_9830.jpg b/data/1-source/IMG_9830.jpg new file mode 100644 index 0000000..3af0209 Binary files /dev/null and b/data/1-source/IMG_9830.jpg differ diff --git a/data/1-source/IMG_9831.jpg b/data/1-source/IMG_9831.jpg new file mode 100644 index 0000000..96780e2 Binary files /dev/null and b/data/1-source/IMG_9831.jpg differ diff --git a/data/1-source/IMG_9832.jpg b/data/1-source/IMG_9832.jpg new file mode 100644 index 0000000..0be6fb6 Binary files /dev/null and b/data/1-source/IMG_9832.jpg differ diff --git a/data/1-source/IMG_9833.jpg b/data/1-source/IMG_9833.jpg new file mode 100644 index 0000000..5e71f39 Binary files /dev/null and b/data/1-source/IMG_9833.jpg differ diff --git a/data/1-source/IMG_9834.jpg b/data/1-source/IMG_9834.jpg new file mode 100644 index 0000000..b801a25 Binary files /dev/null and b/data/1-source/IMG_9834.jpg differ diff --git a/data/1-source/IMG_9835.jpg b/data/1-source/IMG_9835.jpg new file mode 100644 index 0000000..90a361e Binary files /dev/null and b/data/1-source/IMG_9835.jpg differ diff --git a/data/1-source/IMG_9836.jpg b/data/1-source/IMG_9836.jpg new file mode 100644 index 0000000..da90a61 Binary files /dev/null and b/data/1-source/IMG_9836.jpg differ diff --git a/data/1-source/IMG_9837.jpg b/data/1-source/IMG_9837.jpg new file mode 100644 index 0000000..d406862 Binary files /dev/null and b/data/1-source/IMG_9837.jpg differ diff --git a/data/1-source/IMG_9838.jpg b/data/1-source/IMG_9838.jpg new file mode 100644 index 0000000..bd6d7aa Binary files /dev/null and b/data/1-source/IMG_9838.jpg differ diff --git a/data/1-source/IMG_9839.jpg b/data/1-source/IMG_9839.jpg new file mode 100644 index 0000000..253ac14 Binary files /dev/null and b/data/1-source/IMG_9839.jpg differ diff --git a/data/1-source/IMG_9840.jpg b/data/1-source/IMG_9840.jpg new file mode 100644 index 0000000..cf7f5a6 Binary files /dev/null and b/data/1-source/IMG_9840.jpg differ diff --git a/data/1-source/IMG_9841.jpg b/data/1-source/IMG_9841.jpg new file mode 100644 index 0000000..6b5905e Binary files /dev/null and b/data/1-source/IMG_9841.jpg differ diff --git a/data/1-source/IMG_9842.jpg b/data/1-source/IMG_9842.jpg new file mode 100644 index 0000000..b7677d8 Binary files /dev/null and b/data/1-source/IMG_9842.jpg differ diff --git a/data/1-source/IMG_9843.jpg b/data/1-source/IMG_9843.jpg new file mode 100644 index 0000000..48855fe Binary files /dev/null and b/data/1-source/IMG_9843.jpg differ diff --git a/data/1-source/IMG_9844.jpg b/data/1-source/IMG_9844.jpg new file mode 100644 index 0000000..76adb93 Binary files /dev/null and b/data/1-source/IMG_9844.jpg differ diff --git a/data/1-source/IMG_9845.jpg b/data/1-source/IMG_9845.jpg new file mode 100644 index 0000000..354f17a Binary files /dev/null and b/data/1-source/IMG_9845.jpg differ diff --git a/data/1-source/IMG_9846.jpg b/data/1-source/IMG_9846.jpg new file mode 100644 index 0000000..632e03e Binary files /dev/null and b/data/1-source/IMG_9846.jpg differ diff --git a/data/1-source/IMG_9847.jpg b/data/1-source/IMG_9847.jpg new file mode 100644 index 0000000..5001c2b Binary files /dev/null and b/data/1-source/IMG_9847.jpg differ diff --git a/data/1-source/IMG_9848.jpg b/data/1-source/IMG_9848.jpg new file mode 100644 index 0000000..d2cc7e2 Binary files /dev/null and b/data/1-source/IMG_9848.jpg differ diff --git a/data/1-source/IMG_9849.jpg b/data/1-source/IMG_9849.jpg new file mode 100644 index 0000000..0c71ef7 Binary files /dev/null and b/data/1-source/IMG_9849.jpg differ diff --git a/data/1-source/IMG_9850.jpg b/data/1-source/IMG_9850.jpg new file mode 100644 index 0000000..6cd61d0 Binary files /dev/null and b/data/1-source/IMG_9850.jpg differ diff --git a/data/1-source/IMG_9851.jpg b/data/1-source/IMG_9851.jpg new file mode 100644 index 0000000..91c18af Binary files /dev/null and b/data/1-source/IMG_9851.jpg differ diff --git a/data/1-source/IMG_9852.jpg b/data/1-source/IMG_9852.jpg new file mode 100644 index 0000000..c9d154b Binary files /dev/null and b/data/1-source/IMG_9852.jpg differ diff --git a/data/1-source/IMG_9853.jpg b/data/1-source/IMG_9853.jpg new file mode 100644 index 0000000..fbce39d Binary files /dev/null and b/data/1-source/IMG_9853.jpg differ diff --git a/data/1-source/IMG_9854.jpg b/data/1-source/IMG_9854.jpg new file mode 100644 index 0000000..c330d38 Binary files /dev/null and b/data/1-source/IMG_9854.jpg differ diff --git a/data/1-source/IMG_9855.jpg b/data/1-source/IMG_9855.jpg new file mode 100644 index 0000000..0cc5a68 Binary files /dev/null and b/data/1-source/IMG_9855.jpg differ diff --git a/data/1-source/IMG_9856.jpg b/data/1-source/IMG_9856.jpg new file mode 100644 index 0000000..896a77f Binary files /dev/null and b/data/1-source/IMG_9856.jpg differ diff --git a/data/1-source/IMG_9857.jpg b/data/1-source/IMG_9857.jpg new file mode 100644 index 0000000..d1bd65b Binary files /dev/null and b/data/1-source/IMG_9857.jpg differ diff --git a/data/1-source/IMG_9858.jpg b/data/1-source/IMG_9858.jpg new file mode 100644 index 0000000..99b1d02 Binary files /dev/null and b/data/1-source/IMG_9858.jpg differ diff --git a/data/1-source/IMG_9859.jpg b/data/1-source/IMG_9859.jpg new file mode 100644 index 0000000..b6545b9 Binary files /dev/null and b/data/1-source/IMG_9859.jpg differ diff --git a/data/1-source/IMG_9860.jpg b/data/1-source/IMG_9860.jpg new file mode 100644 index 0000000..b5dab05 Binary files /dev/null and b/data/1-source/IMG_9860.jpg differ diff --git a/data/1-source/IMG_9861.jpg b/data/1-source/IMG_9861.jpg new file mode 100644 index 0000000..a626eea Binary files /dev/null and b/data/1-source/IMG_9861.jpg differ diff --git a/data/1-source/IMG_9862.jpg b/data/1-source/IMG_9862.jpg new file mode 100644 index 0000000..4e69f25 Binary files /dev/null and b/data/1-source/IMG_9862.jpg differ diff --git a/data/1-source/IMG_9863.jpg b/data/1-source/IMG_9863.jpg new file mode 100644 index 0000000..f77c071 Binary files /dev/null and b/data/1-source/IMG_9863.jpg differ diff --git a/data/1-source/IMG_9864.jpg b/data/1-source/IMG_9864.jpg new file mode 100644 index 0000000..3f8a166 Binary files /dev/null and b/data/1-source/IMG_9864.jpg differ diff --git a/data/1-source/IMG_9865.jpg b/data/1-source/IMG_9865.jpg new file mode 100644 index 0000000..278d42e Binary files /dev/null and b/data/1-source/IMG_9865.jpg differ diff --git a/data/1-source/IMG_9866.jpg b/data/1-source/IMG_9866.jpg new file mode 100644 index 0000000..192b692 Binary files /dev/null and b/data/1-source/IMG_9866.jpg differ diff --git a/data/1-source/IMG_9867.jpg b/data/1-source/IMG_9867.jpg new file mode 100644 index 0000000..eb259fc Binary files /dev/null and b/data/1-source/IMG_9867.jpg differ diff --git a/data/1-source/IMG_9868.jpg b/data/1-source/IMG_9868.jpg new file mode 100644 index 0000000..0ddbd85 Binary files /dev/null and b/data/1-source/IMG_9868.jpg differ diff --git a/data/1-source/IMG_9869.jpg b/data/1-source/IMG_9869.jpg new file mode 100644 index 0000000..e65d057 Binary files /dev/null and b/data/1-source/IMG_9869.jpg differ diff --git a/data/1-source/IMG_9870.jpg b/data/1-source/IMG_9870.jpg new file mode 100644 index 0000000..da56a2a Binary files /dev/null and b/data/1-source/IMG_9870.jpg differ diff --git a/data/1-source/IMG_9871.jpg b/data/1-source/IMG_9871.jpg new file mode 100644 index 0000000..a5240ee Binary files /dev/null and b/data/1-source/IMG_9871.jpg differ diff --git a/data/1-source/IMG_9872.jpg b/data/1-source/IMG_9872.jpg new file mode 100644 index 0000000..9af7887 Binary files /dev/null and b/data/1-source/IMG_9872.jpg differ diff --git a/data/1-source/IMG_9873.jpg b/data/1-source/IMG_9873.jpg new file mode 100644 index 0000000..16c37dc Binary files /dev/null and b/data/1-source/IMG_9873.jpg differ diff --git a/data/1-source/IMG_9874.jpg b/data/1-source/IMG_9874.jpg new file mode 100644 index 0000000..0f52c85 Binary files /dev/null and b/data/1-source/IMG_9874.jpg differ diff --git a/data/1-source/IMG_9875.jpg b/data/1-source/IMG_9875.jpg new file mode 100644 index 0000000..406990a Binary files /dev/null and b/data/1-source/IMG_9875.jpg differ diff --git a/data/1-source/IMG_9876.jpg b/data/1-source/IMG_9876.jpg new file mode 100644 index 0000000..b0377df Binary files /dev/null and b/data/1-source/IMG_9876.jpg differ diff --git a/data/1-source/IMG_9877.jpg b/data/1-source/IMG_9877.jpg new file mode 100644 index 0000000..68274cb Binary files /dev/null and b/data/1-source/IMG_9877.jpg differ diff --git a/data/1-source/IMG_9878.jpg b/data/1-source/IMG_9878.jpg new file mode 100644 index 0000000..7340211 Binary files /dev/null and b/data/1-source/IMG_9878.jpg differ diff --git a/data/1-source/IMG_9879.jpg b/data/1-source/IMG_9879.jpg new file mode 100644 index 0000000..05c8451 Binary files /dev/null and b/data/1-source/IMG_9879.jpg differ diff --git a/data/1-source/IMG_9880.jpg b/data/1-source/IMG_9880.jpg new file mode 100644 index 0000000..7213dc7 Binary files /dev/null and b/data/1-source/IMG_9880.jpg differ diff --git a/data/1-source/IMG_9881.jpg b/data/1-source/IMG_9881.jpg new file mode 100644 index 0000000..6de5d27 Binary files /dev/null and b/data/1-source/IMG_9881.jpg differ diff --git a/data/1-source/IMG_9882.jpg b/data/1-source/IMG_9882.jpg new file mode 100644 index 0000000..c4cc05b Binary files /dev/null and b/data/1-source/IMG_9882.jpg differ diff --git a/data/1-source/IMG_9883.jpg b/data/1-source/IMG_9883.jpg new file mode 100644 index 0000000..4855764 Binary files /dev/null and b/data/1-source/IMG_9883.jpg differ diff --git a/data/1-source/IMG_9884.jpg b/data/1-source/IMG_9884.jpg new file mode 100644 index 0000000..62ccc57 Binary files /dev/null and b/data/1-source/IMG_9884.jpg differ diff --git a/data/1-source/IMG_9885.jpg b/data/1-source/IMG_9885.jpg new file mode 100644 index 0000000..5c5f04a Binary files /dev/null and b/data/1-source/IMG_9885.jpg differ diff --git a/data/1-source/IMG_9886.jpg b/data/1-source/IMG_9886.jpg new file mode 100644 index 0000000..717c8f5 Binary files /dev/null and b/data/1-source/IMG_9886.jpg differ diff --git a/data/1-source/IMG_9887.jpg b/data/1-source/IMG_9887.jpg new file mode 100644 index 0000000..b9c7716 Binary files /dev/null and b/data/1-source/IMG_9887.jpg differ diff --git a/data/1-source/IMG_9888.jpg b/data/1-source/IMG_9888.jpg new file mode 100644 index 0000000..a62f24d Binary files /dev/null and b/data/1-source/IMG_9888.jpg differ diff --git a/data/1-source/IMG_9889.jpg b/data/1-source/IMG_9889.jpg new file mode 100644 index 0000000..02726cb Binary files /dev/null and b/data/1-source/IMG_9889.jpg differ diff --git a/data/1-source/IMG_9890.jpg b/data/1-source/IMG_9890.jpg new file mode 100644 index 0000000..3a09526 Binary files /dev/null and b/data/1-source/IMG_9890.jpg differ diff --git a/data/1-source/IMG_9891.jpg b/data/1-source/IMG_9891.jpg new file mode 100644 index 0000000..7dd09c2 Binary files /dev/null and b/data/1-source/IMG_9891.jpg differ diff --git a/data/1-source/IMG_9892.jpg b/data/1-source/IMG_9892.jpg new file mode 100644 index 0000000..17e8b0d Binary files /dev/null and b/data/1-source/IMG_9892.jpg differ diff --git a/data/1-source/IMG_9893.jpg b/data/1-source/IMG_9893.jpg new file mode 100644 index 0000000..15573cf Binary files /dev/null and b/data/1-source/IMG_9893.jpg differ diff --git a/data/1-source/IMG_9894.jpg b/data/1-source/IMG_9894.jpg new file mode 100644 index 0000000..762984d Binary files /dev/null and b/data/1-source/IMG_9894.jpg differ diff --git a/data/1-source/IMG_9895.jpg b/data/1-source/IMG_9895.jpg new file mode 100644 index 0000000..d509f97 Binary files /dev/null and b/data/1-source/IMG_9895.jpg differ diff --git a/data/1-source/IMG_9896.jpg b/data/1-source/IMG_9896.jpg new file mode 100644 index 0000000..06fe815 Binary files /dev/null and b/data/1-source/IMG_9896.jpg differ diff --git a/data/1-source/IMG_9897.jpg b/data/1-source/IMG_9897.jpg new file mode 100644 index 0000000..0405e76 Binary files /dev/null and b/data/1-source/IMG_9897.jpg differ diff --git a/data/1-source/IMG_9898.jpg b/data/1-source/IMG_9898.jpg new file mode 100644 index 0000000..8d2d99a Binary files /dev/null and b/data/1-source/IMG_9898.jpg differ diff --git a/data/1-source/IMG_9899.jpg b/data/1-source/IMG_9899.jpg new file mode 100644 index 0000000..50a1926 Binary files /dev/null and b/data/1-source/IMG_9899.jpg differ diff --git a/data/1-source/IMG_9900.jpg b/data/1-source/IMG_9900.jpg new file mode 100644 index 0000000..1c107e5 Binary files /dev/null and b/data/1-source/IMG_9900.jpg differ diff --git a/data/1-source/IMG_9901.jpg b/data/1-source/IMG_9901.jpg new file mode 100644 index 0000000..951e6ec Binary files /dev/null and b/data/1-source/IMG_9901.jpg differ diff --git a/data/1-source/IMG_9902.jpg b/data/1-source/IMG_9902.jpg new file mode 100644 index 0000000..7bbeadd Binary files /dev/null and b/data/1-source/IMG_9902.jpg differ diff --git a/data/1-source/IMG_9903.jpg b/data/1-source/IMG_9903.jpg new file mode 100644 index 0000000..3582871 Binary files /dev/null and b/data/1-source/IMG_9903.jpg differ diff --git a/data/1-source/IMG_9904.jpg b/data/1-source/IMG_9904.jpg new file mode 100644 index 0000000..3f1eaf4 Binary files /dev/null and b/data/1-source/IMG_9904.jpg differ diff --git a/data/1-source/IMG_9905.jpg b/data/1-source/IMG_9905.jpg new file mode 100644 index 0000000..ac140b3 Binary files /dev/null and b/data/1-source/IMG_9905.jpg differ diff --git a/data/1-source/IMG_9906.jpg b/data/1-source/IMG_9906.jpg new file mode 100644 index 0000000..0c30207 Binary files /dev/null and b/data/1-source/IMG_9906.jpg differ diff --git a/data/1-source/IMG_9907.jpg b/data/1-source/IMG_9907.jpg new file mode 100644 index 0000000..354130b Binary files /dev/null and b/data/1-source/IMG_9907.jpg differ diff --git a/data/1-source/IMG_9908.jpg b/data/1-source/IMG_9908.jpg new file mode 100644 index 0000000..a385254 Binary files /dev/null and b/data/1-source/IMG_9908.jpg differ diff --git a/data/1-source/IMG_9909.jpg b/data/1-source/IMG_9909.jpg new file mode 100644 index 0000000..b6738c7 Binary files /dev/null and b/data/1-source/IMG_9909.jpg differ diff --git a/data/1-source/IMG_9910.jpg b/data/1-source/IMG_9910.jpg new file mode 100644 index 0000000..ba2199e Binary files /dev/null and b/data/1-source/IMG_9910.jpg differ diff --git a/data/1-source/IMG_9911.jpg b/data/1-source/IMG_9911.jpg new file mode 100644 index 0000000..7b328f1 Binary files /dev/null and b/data/1-source/IMG_9911.jpg differ diff --git a/data/1-source/IMG_9912.jpg b/data/1-source/IMG_9912.jpg new file mode 100644 index 0000000..97f1091 Binary files /dev/null and b/data/1-source/IMG_9912.jpg differ diff --git a/data/1-source/IMG_9913.jpg b/data/1-source/IMG_9913.jpg new file mode 100644 index 0000000..ac398b2 Binary files /dev/null and b/data/1-source/IMG_9913.jpg differ diff --git a/data/1-source/IMG_9914.jpg b/data/1-source/IMG_9914.jpg new file mode 100644 index 0000000..67c8ca6 Binary files /dev/null and b/data/1-source/IMG_9914.jpg differ diff --git a/data/1-source/IMG_9915.jpg b/data/1-source/IMG_9915.jpg new file mode 100644 index 0000000..d19c6bf Binary files /dev/null and b/data/1-source/IMG_9915.jpg differ diff --git a/data/1-source/IMG_9916.jpg b/data/1-source/IMG_9916.jpg new file mode 100644 index 0000000..2294425 Binary files /dev/null and b/data/1-source/IMG_9916.jpg differ diff --git a/data/1-source/IMG_9919.jpg b/data/1-source/IMG_9919.jpg new file mode 100644 index 0000000..078a22e Binary files /dev/null and b/data/1-source/IMG_9919.jpg differ diff --git a/data/1-source/IMG_9920.jpg b/data/1-source/IMG_9920.jpg new file mode 100644 index 0000000..c7bcd94 Binary files /dev/null and b/data/1-source/IMG_9920.jpg differ diff --git a/data/1-source/IMG_9921.jpg b/data/1-source/IMG_9921.jpg new file mode 100644 index 0000000..dfdddc9 Binary files /dev/null and b/data/1-source/IMG_9921.jpg differ diff --git a/data/1-source/IMG_9922.jpg b/data/1-source/IMG_9922.jpg new file mode 100644 index 0000000..0b48b38 Binary files /dev/null and b/data/1-source/IMG_9922.jpg differ diff --git a/data/1-source/IMG_9923.jpg b/data/1-source/IMG_9923.jpg new file mode 100644 index 0000000..731eb4f Binary files /dev/null and b/data/1-source/IMG_9923.jpg differ diff --git a/data/1-source/IMG_9924.jpg b/data/1-source/IMG_9924.jpg new file mode 100644 index 0000000..7bf250d Binary files /dev/null and b/data/1-source/IMG_9924.jpg differ diff --git a/data/1-source/IMG_9925.jpg b/data/1-source/IMG_9925.jpg new file mode 100644 index 0000000..63a3825 Binary files /dev/null and b/data/1-source/IMG_9925.jpg differ diff --git a/data/1-source/IMG_9926.jpg b/data/1-source/IMG_9926.jpg new file mode 100644 index 0000000..35d7980 Binary files /dev/null and b/data/1-source/IMG_9926.jpg differ diff --git a/data/1-source/IMG_9927.jpg b/data/1-source/IMG_9927.jpg new file mode 100644 index 0000000..75e6fd1 Binary files /dev/null and b/data/1-source/IMG_9927.jpg differ diff --git a/data/1-source/IMG_9928.jpg b/data/1-source/IMG_9928.jpg new file mode 100644 index 0000000..c0a60e0 Binary files /dev/null and b/data/1-source/IMG_9928.jpg differ diff --git a/data/1-source/IMG_9929.jpg b/data/1-source/IMG_9929.jpg new file mode 100644 index 0000000..134b7eb Binary files /dev/null and b/data/1-source/IMG_9929.jpg differ diff --git a/data/1-source/IMG_9930.jpg b/data/1-source/IMG_9930.jpg new file mode 100644 index 0000000..f0557ec Binary files /dev/null and b/data/1-source/IMG_9930.jpg differ diff --git a/data/1-source/IMG_9931.jpg b/data/1-source/IMG_9931.jpg new file mode 100644 index 0000000..fe5e54d Binary files /dev/null and b/data/1-source/IMG_9931.jpg differ diff --git a/data/1-source/IMG_9932.jpg b/data/1-source/IMG_9932.jpg new file mode 100644 index 0000000..656e603 Binary files /dev/null and b/data/1-source/IMG_9932.jpg differ diff --git a/data/1-source/IMG_9933.jpg b/data/1-source/IMG_9933.jpg new file mode 100644 index 0000000..f644fd1 Binary files /dev/null and b/data/1-source/IMG_9933.jpg differ diff --git a/data/1-source/IMG_9934.jpg b/data/1-source/IMG_9934.jpg new file mode 100644 index 0000000..29f5815 Binary files /dev/null and b/data/1-source/IMG_9934.jpg differ diff --git a/data/1-source/IMG_9935.jpg b/data/1-source/IMG_9935.jpg new file mode 100644 index 0000000..e2951a8 Binary files /dev/null and b/data/1-source/IMG_9935.jpg differ diff --git a/data/1-source/IMG_9936.jpg b/data/1-source/IMG_9936.jpg new file mode 100644 index 0000000..d9d489d Binary files /dev/null and b/data/1-source/IMG_9936.jpg differ diff --git a/data/1-source/IMG_9937.jpg b/data/1-source/IMG_9937.jpg new file mode 100644 index 0000000..de47848 Binary files /dev/null and b/data/1-source/IMG_9937.jpg differ diff --git a/data/1-source/IMG_9938.jpg b/data/1-source/IMG_9938.jpg new file mode 100644 index 0000000..fd9cf41 Binary files /dev/null and b/data/1-source/IMG_9938.jpg differ diff --git a/data/1-source/IMG_9939.jpg b/data/1-source/IMG_9939.jpg new file mode 100644 index 0000000..c535dcb Binary files /dev/null and b/data/1-source/IMG_9939.jpg differ diff --git a/data/1-source/IMG_9940.jpg b/data/1-source/IMG_9940.jpg new file mode 100644 index 0000000..3745d26 Binary files /dev/null and b/data/1-source/IMG_9940.jpg differ diff --git a/data/1-source/IMG_9941.jpg b/data/1-source/IMG_9941.jpg new file mode 100644 index 0000000..7238684 Binary files /dev/null and b/data/1-source/IMG_9941.jpg differ diff --git a/data/1-source/IMG_9942.jpg b/data/1-source/IMG_9942.jpg new file mode 100644 index 0000000..7200048 Binary files /dev/null and b/data/1-source/IMG_9942.jpg differ diff --git a/data/1-source/IMG_9943.jpg b/data/1-source/IMG_9943.jpg new file mode 100644 index 0000000..6f857a0 Binary files /dev/null and b/data/1-source/IMG_9943.jpg differ diff --git a/data/1-source/IMG_9944.jpg b/data/1-source/IMG_9944.jpg new file mode 100644 index 0000000..8c067d1 Binary files /dev/null and b/data/1-source/IMG_9944.jpg differ diff --git a/data/1-source/IMG_9945.jpg b/data/1-source/IMG_9945.jpg new file mode 100644 index 0000000..9540587 Binary files /dev/null and b/data/1-source/IMG_9945.jpg differ diff --git a/data/1-source/IMG_9946.jpg b/data/1-source/IMG_9946.jpg new file mode 100644 index 0000000..17063f6 Binary files /dev/null and b/data/1-source/IMG_9946.jpg differ diff --git a/data/1-source/IMG_9947.jpg b/data/1-source/IMG_9947.jpg new file mode 100644 index 0000000..a2f4de7 Binary files /dev/null and b/data/1-source/IMG_9947.jpg differ diff --git a/data/1-source/IMG_9948.jpg b/data/1-source/IMG_9948.jpg new file mode 100644 index 0000000..fb3c2cf Binary files /dev/null and b/data/1-source/IMG_9948.jpg differ diff --git a/data/1-source/IMG_9949.jpg b/data/1-source/IMG_9949.jpg new file mode 100644 index 0000000..4fb405f Binary files /dev/null and b/data/1-source/IMG_9949.jpg differ diff --git a/data/1-source/IMG_9950.jpg b/data/1-source/IMG_9950.jpg new file mode 100644 index 0000000..7205fa0 Binary files /dev/null and b/data/1-source/IMG_9950.jpg differ diff --git a/data/1-source/IMG_9951.jpg b/data/1-source/IMG_9951.jpg new file mode 100644 index 0000000..88ea523 Binary files /dev/null and b/data/1-source/IMG_9951.jpg differ diff --git a/data/1-source/IMG_9952.jpg b/data/1-source/IMG_9952.jpg new file mode 100644 index 0000000..88af1a8 Binary files /dev/null and b/data/1-source/IMG_9952.jpg differ diff --git a/data/1-source/IMG_9953.jpg b/data/1-source/IMG_9953.jpg new file mode 100644 index 0000000..24d1be0 Binary files /dev/null and b/data/1-source/IMG_9953.jpg differ diff --git a/data/1-source/IMG_9954.jpg b/data/1-source/IMG_9954.jpg new file mode 100644 index 0000000..9aec508 Binary files /dev/null and b/data/1-source/IMG_9954.jpg differ diff --git a/data/1-source/IMG_9955.jpg b/data/1-source/IMG_9955.jpg new file mode 100644 index 0000000..277eb03 Binary files /dev/null and b/data/1-source/IMG_9955.jpg differ diff --git a/data/1-source/IMG_9956.jpg b/data/1-source/IMG_9956.jpg new file mode 100644 index 0000000..66bb6c1 Binary files /dev/null and b/data/1-source/IMG_9956.jpg differ diff --git a/data/1-source/IMG_9957.jpg b/data/1-source/IMG_9957.jpg new file mode 100644 index 0000000..fdf762d Binary files /dev/null and b/data/1-source/IMG_9957.jpg differ diff --git a/data/1-source/IMG_9958.jpg b/data/1-source/IMG_9958.jpg new file mode 100644 index 0000000..58a2d77 Binary files /dev/null and b/data/1-source/IMG_9958.jpg differ diff --git a/data/1-source/IMG_9959.jpg b/data/1-source/IMG_9959.jpg new file mode 100644 index 0000000..8ffee56 Binary files /dev/null and b/data/1-source/IMG_9959.jpg differ diff --git a/data/1-source/IMG_9960.jpg b/data/1-source/IMG_9960.jpg new file mode 100644 index 0000000..970502a Binary files /dev/null and b/data/1-source/IMG_9960.jpg differ diff --git a/data/1-source/IMG_9961.jpg b/data/1-source/IMG_9961.jpg new file mode 100644 index 0000000..cca29e8 Binary files /dev/null and b/data/1-source/IMG_9961.jpg differ diff --git a/data/1-source/IMG_9962.jpg b/data/1-source/IMG_9962.jpg new file mode 100644 index 0000000..240a69a Binary files /dev/null and b/data/1-source/IMG_9962.jpg differ diff --git a/data/1-source/IMG_9963.jpg b/data/1-source/IMG_9963.jpg new file mode 100644 index 0000000..b935bb3 Binary files /dev/null and b/data/1-source/IMG_9963.jpg differ diff --git a/data/1-source/IMG_9964.jpg b/data/1-source/IMG_9964.jpg new file mode 100644 index 0000000..b66f5a3 Binary files /dev/null and b/data/1-source/IMG_9964.jpg differ diff --git a/data/1-source/IMG_9965.jpg b/data/1-source/IMG_9965.jpg new file mode 100644 index 0000000..dff7fa2 Binary files /dev/null and b/data/1-source/IMG_9965.jpg differ diff --git a/data/1-source/IMG_9966.jpg b/data/1-source/IMG_9966.jpg new file mode 100644 index 0000000..b53b4f7 Binary files /dev/null and b/data/1-source/IMG_9966.jpg differ diff --git a/data/1-source/IMG_9967.jpg b/data/1-source/IMG_9967.jpg new file mode 100644 index 0000000..8447bbe Binary files /dev/null and b/data/1-source/IMG_9967.jpg differ diff --git a/data/1-source/IMG_9968.jpg b/data/1-source/IMG_9968.jpg new file mode 100644 index 0000000..bc91ff3 Binary files /dev/null and b/data/1-source/IMG_9968.jpg differ diff --git a/data/1-source/IMG_9969.jpg b/data/1-source/IMG_9969.jpg new file mode 100644 index 0000000..524bd5b Binary files /dev/null and b/data/1-source/IMG_9969.jpg differ diff --git a/data/1-source/IMG_9970.jpg b/data/1-source/IMG_9970.jpg new file mode 100644 index 0000000..c43da46 Binary files /dev/null and b/data/1-source/IMG_9970.jpg differ diff --git a/data/1-source/IMG_9971.jpg b/data/1-source/IMG_9971.jpg new file mode 100644 index 0000000..eda655f Binary files /dev/null and b/data/1-source/IMG_9971.jpg differ diff --git a/data/1-source/IMG_9972.jpg b/data/1-source/IMG_9972.jpg new file mode 100644 index 0000000..28f60ea Binary files /dev/null and b/data/1-source/IMG_9972.jpg differ diff --git a/data/1-source/IMG_9973.jpg b/data/1-source/IMG_9973.jpg new file mode 100644 index 0000000..49f83c0 Binary files /dev/null and b/data/1-source/IMG_9973.jpg differ diff --git a/data/1-source/IMG_9974.jpg b/data/1-source/IMG_9974.jpg new file mode 100644 index 0000000..daf10de Binary files /dev/null and b/data/1-source/IMG_9974.jpg differ diff --git a/data/1-source/IMG_9975.jpg b/data/1-source/IMG_9975.jpg new file mode 100644 index 0000000..c50cf0c Binary files /dev/null and b/data/1-source/IMG_9975.jpg differ diff --git a/data/1-source/IMG_9976.jpg b/data/1-source/IMG_9976.jpg new file mode 100644 index 0000000..fd10c47 Binary files /dev/null and b/data/1-source/IMG_9976.jpg differ diff --git a/data/1-source/IMG_9977.jpg b/data/1-source/IMG_9977.jpg new file mode 100644 index 0000000..296a73b Binary files /dev/null and b/data/1-source/IMG_9977.jpg differ diff --git a/data/1-source/IMG_9978.jpg b/data/1-source/IMG_9978.jpg new file mode 100644 index 0000000..4232a32 Binary files /dev/null and b/data/1-source/IMG_9978.jpg differ diff --git a/data/1-source/IMG_9979.jpg b/data/1-source/IMG_9979.jpg new file mode 100644 index 0000000..d686663 Binary files /dev/null and b/data/1-source/IMG_9979.jpg differ diff --git a/data/1-source/IMG_9980.jpg b/data/1-source/IMG_9980.jpg new file mode 100644 index 0000000..b07cc0e Binary files /dev/null and b/data/1-source/IMG_9980.jpg differ diff --git a/data/1-source/IMG_9981.jpg b/data/1-source/IMG_9981.jpg new file mode 100644 index 0000000..7fda686 Binary files /dev/null and b/data/1-source/IMG_9981.jpg differ diff --git a/data/1-source/IMG_9982.jpg b/data/1-source/IMG_9982.jpg new file mode 100644 index 0000000..eda7e1d Binary files /dev/null and b/data/1-source/IMG_9982.jpg differ diff --git a/data/1-source/IMG_9983.jpg b/data/1-source/IMG_9983.jpg new file mode 100644 index 0000000..3f49759 Binary files /dev/null and b/data/1-source/IMG_9983.jpg differ diff --git a/data/1-source/IMG_9984.jpg b/data/1-source/IMG_9984.jpg new file mode 100644 index 0000000..4444263 Binary files /dev/null and b/data/1-source/IMG_9984.jpg differ diff --git a/data/1-source/IMG_9985.jpg b/data/1-source/IMG_9985.jpg new file mode 100644 index 0000000..a1f8a09 Binary files /dev/null and b/data/1-source/IMG_9985.jpg differ diff --git a/data/1-source/IMG_9986.jpg b/data/1-source/IMG_9986.jpg new file mode 100644 index 0000000..2e1bb0c Binary files /dev/null and b/data/1-source/IMG_9986.jpg differ diff --git a/data/1-source/IMG_9987.jpg b/data/1-source/IMG_9987.jpg new file mode 100644 index 0000000..93eeb90 Binary files /dev/null and b/data/1-source/IMG_9987.jpg differ diff --git a/data/1-source/IMG_9988.jpg b/data/1-source/IMG_9988.jpg new file mode 100644 index 0000000..8807c71 Binary files /dev/null and b/data/1-source/IMG_9988.jpg differ diff --git a/data/1-source/IMG_9989.jpg b/data/1-source/IMG_9989.jpg new file mode 100644 index 0000000..a87a886 Binary files /dev/null and b/data/1-source/IMG_9989.jpg differ diff --git a/data/1-source/IMG_9990.jpg b/data/1-source/IMG_9990.jpg new file mode 100644 index 0000000..5adf91f Binary files /dev/null and b/data/1-source/IMG_9990.jpg differ diff --git a/data/1-source/IMG_9991.jpg b/data/1-source/IMG_9991.jpg new file mode 100644 index 0000000..639e7cd Binary files /dev/null and b/data/1-source/IMG_9991.jpg differ diff --git a/data/1-source/IMG_9992.jpg b/data/1-source/IMG_9992.jpg new file mode 100644 index 0000000..d4f716e Binary files /dev/null and b/data/1-source/IMG_9992.jpg differ diff --git a/data/1-source/IMG_9993.jpg b/data/1-source/IMG_9993.jpg new file mode 100644 index 0000000..273ec25 Binary files /dev/null and b/data/1-source/IMG_9993.jpg differ diff --git a/data/1-source/IMG_9994.jpg b/data/1-source/IMG_9994.jpg new file mode 100644 index 0000000..1ed078d Binary files /dev/null and b/data/1-source/IMG_9994.jpg differ diff --git a/data/1-source/IMG_9995.jpg b/data/1-source/IMG_9995.jpg new file mode 100644 index 0000000..0807ca2 Binary files /dev/null and b/data/1-source/IMG_9995.jpg differ diff --git a/data/1-source/IMG_9996.jpg b/data/1-source/IMG_9996.jpg new file mode 100644 index 0000000..70ab870 Binary files /dev/null and b/data/1-source/IMG_9996.jpg differ diff --git a/data/1-source/IMG_9997.jpg b/data/1-source/IMG_9997.jpg new file mode 100644 index 0000000..92de920 Binary files /dev/null and b/data/1-source/IMG_9997.jpg differ diff --git a/data/1-source/IMG_9998.jpg b/data/1-source/IMG_9998.jpg new file mode 100644 index 0000000..20eee52 Binary files /dev/null and b/data/1-source/IMG_9998.jpg differ diff --git a/data/1-source/IMG_9999.jpg b/data/1-source/IMG_9999.jpg new file mode 100644 index 0000000..7153a95 Binary files /dev/null and b/data/1-source/IMG_9999.jpg differ -
86b7a89Add stateful inventoriesby Bas Mostert
.../clues/known-passwords-and-inscriptions.md | 72 ++++++++++++++ data/6-wiki/index.md | 7 ++ data/6-wiki/inventories/party-inventory.md | 74 ++++++++++++++ data/6-wiki/inventories/party-treasury.md | 62 ++++++++++++ data/6-wiki/open-threads.md | 8 ++ data/6-wiki/people/status.md | 109 +++++++++++++++++++++ data/6-wiki/sources.md | 7 ++ 7 files changed, 339 insertions(+)Show diff
diff --git a/data/6-wiki/clues/known-passwords-and-inscriptions.md b/data/6-wiki/clues/known-passwords-and-inscriptions.md new file mode 100644 index 0000000..94ac624 --- /dev/null +++ b/data/6-wiki/clues/known-passwords-and-inscriptions.md @@ -0,0 +1,72 @@ +--- +title: Known Passwords and Inscriptions +type: stateful clues +last_updated: day-22 +sources: + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Known Passwords and Inscriptions + +This page tracks codes, passwords, command words, inscriptions, symbols, coded phrases, warnings, and active clue phrases. + +## Known or Attempted Passwords and Codes + +| Phrase or code | Status | Source | Notes | +|---|---|---|---| +| `Spinal` | confirmed Brutor/lab password | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-16.md` | Opened the hidden laboratory outer door and internal dwarf-column door. | +| `Winter Roses?` | possible Envoi password | `data/4-days-cleaned/day-15.md` | Boxed note records this uncertainly as [Envoi](../people/envoi.md)'s password. | +| Winter Rose | contact token or substance | `data/4-days-cleaned/day-17.md` | Basilisk arranged a contact carrying Winter Rose; a hemp bag smelled like `[winter] Rose spice`, sickly sweet and narcotic-like. | +| Core suits / golem room password | unknown | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-14.md` | `Joy` and `Tri-moon` failed; Basalisk later could not access the golem underground room. | +| Aldaine Hartwell book command word | unknown | `data/4-days-cleaned/day-16.md` | The locked memoirs/learnings book needs powerful identity magic to learn the command word. | +| Baroness's circle and safe code | known to Baroness, not recorded | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) said the code works while the defences are up. | +| `Thurtall!!` | possible teleport carpet trigger | `data/4-days-cleaned/day-17.md` | Shouted as a gargoyle rolled out a carpet with a teleport rune; whether it is a formal command word is not explicit. | + +## Inscriptions, Labels, Symbols, and Coded Phrases + +| Text or symbol | Source | Notes | +|---|---|---| +| `part of me can be with you while you study all my love - Joy` | `data/4-days-cleaned/day-05.md` | Inscription on Joy's vase. | +| `a pact in darkness made in sorrow to bring (no sharpness) back Joy` | `data/4-days-cleaned/day-05.md` | Teddy ring runes; `no sharpness` remains uncertain. | +| `A Bargain struck in shadows for souls to be held in infinity.` | `data/4-days-cleaned/day-05.md` | Dirk's ring inscription. | +| Joy diary final page | `data/4-days-cleaned/day-06.md` | Mentions Pelt being rough, Daddy borrowing Mr Snuffles, and Daddy's creepy friend asking about rings. | +| Six Joy graves | `data/4-days-cleaned/day-06.md` | Marked Joy with death notes including chamber, lung infection, unknown complications, poisoning, and birth defect. | +| Airwise runes / `Demon magic shit` | `data/4-days-cleaned/day-06.md` | Copied wall runes later bled acidic blood and seemed different. | +| `GUILT` | `data/4-days-cleaned/day-09.md` | Label on repaired Core package; relationship to The Guilt/Brookville Springs remains unresolved. | +| `Tor Protects` | `data/4-days-cleaned/day-16.md` | Inscription beneath the statue of Tor. | +| Five hands making a star | `data/4-days-cleaned/day-16.md` | Pub sign identified as [The Pact](../factions/the-pact.md), where the five wizards used to meet. | +| `Drunken Duck` | `data/4-days-cleaned/day-20.md` | Upside-down thieves' cant scratched on the cart padlock with claws like Dirk's; party changed markings to Everchard. | +| `where is he I know you hide him` / `Void!` | `data/4-days-cleaned/day-21.md` | Horrible voice in cold dream, possibly looking for [Garadwal](../people/garadwal.md). | + +## Riddles and Layout Clues + +| Clue | Answer or status | Source | +|---|---|---| +| `if you got here you got my message, only clue is based on the layout of my rooms. When you get inside you'll know what to do.` | Ruby Eye layout clue | `data/4-days-cleaned/day-16.md` | +| `time existed before me but history can only begin after my creation` | calendar room or library | `data/4-days-cleaned/day-16.md` | +| `The rich want it, the poor have it, both will perish if they eat it` | nothing | `data/4-days-cleaned/day-16.md` | +| `Although I'm not royalty, I'm sometimes a king or a queen, and although I never marry I'm only sometimes single` | bed | `data/4-days-cleaned/day-16.md` | +| `in my first part stir creativity & in my full form I store the results` | museum | `data/4-days-cleaned/day-16.md` | +| `You have me today, tomorrow you'll have more...` | memories | `data/4-days-cleaned/day-16.md` | +| `I ignore the start of this recipe just scramble, hidden` | kitchen | `data/4-days-cleaned/day-16.md` | +| `They are never together, yet always follow one another...` | calendar | `data/4-days-cleaned/day-16.md` | +| `if you feel I've lived a good life this is the Denouement (final part, finishing piece).` | paper in bedroom skull eye socket | `data/4-days-cleaned/day-16.md` | + +## Timers and Current Constraints + +| Timer or constraint | Last-known state | Source | +|---|---|---| +| Tri-moon countdown | 12 days to the Tri-moon on `day-22` | `data/4-days-cleaned/day-22.md` | +| Guest shells | last 2 hours | `data/4-days-cleaned/day-22.md` | +| Freeport auction | mother-of-pearl elemental chariot to be sold in 7 days | `data/4-days-cleaned/day-22.md` | +| Seaward Barrier flickers | began 2-3 weeks earlier, increasing, random, longest 3 seconds, clustered around 9 am, none around midnight, moving horizontally toward pylon | `data/4-days-cleaned/day-12.md` | diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md index 06231b3..23ebf1c 100644 --- a/data/6-wiki/index.md +++ b/data/6-wiki/index.md @@ -36,6 +36,13 @@ This wiki indexes searchable campaign material extracted from the cleaned day na - [Aliases and Variant Spellings](aliases.md) - [Sources](sources.md) +## Stateful Rollups + +- [Party Inventory](inventories/party-inventory.md) +- [Party Treasury](inventories/party-treasury.md) +- [NPC Status](people/status.md) +- [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md) + ## People - [Garadwal](people/garadwal.md) diff --git a/data/6-wiki/inventories/party-inventory.md b/data/6-wiki/inventories/party-inventory.md new file mode 100644 index 0000000..ef613b4 --- /dev/null +++ b/data/6-wiki/inventories/party-inventory.md @@ -0,0 +1,74 @@ +--- +title: Party Inventory +type: stateful inventory +last_updated: day-22 +sources: + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Party Inventory + +This page tracks lifecycle state for objects the party holds, controlled recently, transferred away, was promised, or has unclear custody. + +## Currently Held or Party-Controlled + +| Item | Holder | Acquired | Source | Notes | +|---|---|---|---|---| +| Deputy badges | party | `day-01` | `data/4-days-cleaned/day-01.md` | Given by Sheriff Jeremia/Jeremiah under Sir Alstir Florent; no later transfer recorded. | +| Geldrin's compass box / compass | Geldrin | `day-03` | `data/4-days-cleaned/day-03.md` | Bought by Geldrin and used later to point toward Bughunter signals and the hidden laboratory. | +| Invisible cloak | party | `day-05` | `data/4-days-cleaned/day-05.md` | Taken from the [Barrier Observatory](../places/barrier-observatory.md); no later disposition recorded. | +| Tri-moon measurement notes | Geldrin | `day-05` | `data/4-days-cleaned/day-05.md` | Geldrin took all observatory notes. | +| Mahogany rune-locked box | Geldrin | `day-06` | `data/4-days-cleaned/day-06.md` | Taken from Joy's room; no later transfer recorded. | +| Eyeball-front illusion book | Geldrin | `day-06` | `data/4-days-cleaned/day-06.md` | Taken from Joy's room. | +| Magical copper dodecahedron | party | `day-06` | `data/4-days-cleaned/day-06.md` | Invar identified it with the phrase `spell faults!` [uncertain exact meaning]. | +| Brutor Ruby Eye skull | party | `day-17` | `data/4-days-cleaned/day-17.md` | Given by Elementharium/Clementarium as an information source. | +| Pact Scepter | party | `day-20` | `data/4-days-cleaned/day-20.md` | [Shandra](../people/shandra.md) asked the party to keep it as a sign of their side of [The Pact](../factions/the-pact.md). | +| Lesser Rift Blade | party | `day-20` | `data/4-days-cleaned/day-20.md` | Dagger +1 from the basilisks; 3 charges, 1 charge casts dimension door, 3 charges casts teleport through a 5-second portal, recharges 1 charge/day. | +| Guest shells | party | `day-21` | `data/4-days-cleaned/day-21.md`, `data/4-days-cleaned/day-22.md` | The party received two guest shells and 10 spare shells; they last 2 hours and some were used or dispelled underwater. Remaining count unclear. | +| Drown spear +1 returning | party | `day-22` | `data/4-days-cleaned/day-22.md` | Dull-blue spear from the Bug Boss; speaks Aquan. | +| Plate of Hydran +1 | party | `day-22` | `data/4-days-cleaned/day-22.md` | Plate mail granting cold resistance. | +| Three dispel magic scrolls | Geldrin | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the shield crystal site and went to Geldrin. | + +## No Longer Held or Transferred + +| Item | Disposition | Day | Source | Notes | +|---|---|---|---|---| +| 1,000-year-old Grand Tower penny / old coin | donated to church | `day-09` | `data/4-days-cleaned/day-09.md` | Basalik disliked that the party had donated it. | +| Spear of Ciara / arrow of Cierra | taken by temple representative for checking | `day-20` | `data/4-days-cleaned/day-20.md` | Initially taken from the museum division; Huntmaster Thrune said it was actually one of five arrows from Cierra's last battlefield. Final custody is not explicit. | +| Noctus Cairinium Grimoire / creepy skin book | taken by [Pythus Aleyvarus](../people/pythus-aleyvarus.md) | `day-16` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Later seen with Pythus near Salvation. | +| Celestial book | taken by Pythus | `day-16` | `data/4-days-cleaned/day-16.md` | Part of the museum treasure division. | +| Coin press | given to Basilisk | `day-17` | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Initially selected by the note-writer, then given to Basilisk. | +| Dragon skull of Alsafaur | returned to black dragon | `day-16` | `data/4-days-cleaned/day-16.md` | Given to the black dragon at the Barrier in exchange for being `even`. | +| 112 gp coin pouches | given to crew | `day-22` | `data/4-days-cleaned/day-22.md` | Recovered at the underwater shield crystal site and transferred to the crew. | + +## Promised, Expected, or Pending + +| Item or resource | Status | Source | Notes | +|---|---|---|---| +| Baroness forces | promised | `data/4-days-cleaned/day-20.md` | The [Freeport Baroness](../people/freeport-baroness.md) promised to loan some forces and gave laboratory permission/information. | +| Huntmaster aid | promised | `data/4-days-cleaned/day-20.md` | Huntmaster Thrune agreed to provide aid against the Excellence. | +| Winter Rose contact | pending | `data/4-days-cleaned/day-17.md` | Basilisk was arranging contact in Fairshaws or Freeport carrying Winter Rose. | +| Mother-of-pearl elemental chariot auction | pending | `data/4-days-cleaned/day-22.md` | [Zinquiss/Xinquiss](../aliases.md) planned to sell it at the Freeport auction house in 7 days. | + +## Unclear Custody or Status + +| Item | Last seen | Source | Question | +|---|---|---|---| +| Shock dagger | `day-03` | `data/4-days-cleaned/day-03.md` | Was it kept, spent, transferred, or replaced? | +| Bughunter ring with purple gem/runes | `day-03` | `data/4-days-cleaned/day-03.md` | Did the party keep and identify it after trading for use of the gearsisor? | +| Shield crystal shard / crystal | `day-06`, `day-12`, `day-22` | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-12.md`, `data/4-days-cleaned/day-22.md` | The shard was party-accessible earlier and the sea shield crystal was the mission target; final custody/state is not explicit. | +| Museum treasure division | `day-16` | `data/4-days-cleaned/day-16.md` | Dirk took a sword and merfolk scepter; Invar took a ring of protection and potion bottle; Geldrin took spear and scrying eye; note-writer took coin press and cube; Pythus took books. Several later dispositions remain unclear. | +| Scroll of teleportation | `day-16` | `data/4-days-cleaned/day-16.md` | Pythus gave one to Geldrin; no use recorded. | +| Void contact circle of obsidian | `day-16` | `data/4-days-cleaned/day-16.md` | The void creature released it for contact; custody and reliability remain unclear. | +| Aldaine Hartwell locked book | `day-16` | `data/4-days-cleaned/day-16.md` | Needs powerful identity magic to learn its command word; current holder unclear. | +| White dragonscale | `day-21` | `data/4-days-cleaned/day-21.md` | Dropped from an icicle in the party's cold room; whether anyone took it is not recorded. | +| Mother-of-pearl elemental chariot | `day-22` | `data/4-days-cleaned/day-22.md` | Party took it back, but sale is pending and the chained water elementals' desired outcome is unclear. | diff --git a/data/6-wiki/inventories/party-treasury.md b/data/6-wiki/inventories/party-treasury.md new file mode 100644 index 0000000..7e03438 --- /dev/null +++ b/data/6-wiki/inventories/party-treasury.md @@ -0,0 +1,62 @@ +--- +title: Party Treasury +type: stateful treasury +last_updated: day-22 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Party Treasury + +This page tracks money, expenses, rewards, deposits, debts, and uncertain accounting. It does not attempt to calculate a current total because the cleaned notes do not provide enough complete party spending and division records. + +## Confirmed Received or Held + +| Amount | Day | Source | Notes | +|---:|---|---|---| +| 500 gp | `day-04` | `data/4-days-cleaned/day-04.md` | Lawrence Henderson gave the party 500 gp. | +| 9 gp | `day-12` | `data/4-days-cleaned/day-12.md` | Won during race betting after several 5 sp bets. | +| 5 gp each and an old copper coin | `day-14` | `data/4-days-cleaned/day-14.md` | Recorded after a guard encounter. | +| 70 gp and four tower pennies | `day-16` | `data/4-days-cleaned/day-16.md` | Recovered after the black dragonborn fight. | +| 400 gp | `day-19` | `data/4-days-cleaned/day-19.md` | Reward after killing Kairbidius. | + +## Spent, Deposited, or Transferred + +| Amount | Day | Source | Notes | +|---:|---|---|---| +| 500 gp deposit and 100 gp/day | `day-21` | `data/4-days-cleaned/day-21.md` | Boat loan arrangement, divided as 125 gp each for the deposit. | +| 200 gp | `day-21` | `data/4-days-cleaned/day-21.md` | Given to Zinquiss for four healing potions; returned as three healing potions and one greater healing potion. | +| 112 gp | `day-22` | `data/4-days-cleaned/day-22.md` | Coin pouches recovered at the shield crystal site and given to the crew. | + +## Promised, Offered, or Pending + +| Amount | Day | Source | Status | +|---:|---|---|---| +| 1 gp each | `day-01` | `data/4-days-cleaned/day-01.md` | Offered for the Thornhollows missing-pigs job; payment not confirmed. | +| 100 gp, with 50 gp already paid | `day-02` | `data/4-days-cleaned/day-02.md` | Thornhollows frog-clearing reward; final receipt unclear. | +| 500 gp | `day-03` | `data/4-days-cleaned/day-03.md` | Earl-related bounty/death-threat thread; collection not recorded. | +| 500 gp | `day-04` | `data/4-days-cleaned/day-04.md` | Reward listed for Isabella Nudegate after she went missing; collection not recorded. | +| 2,000 gp, 500 gp advance, extra for water elementals | `day-12` | `data/4-days-cleaned/day-12.md` | Elementarium contract for discretion/results; notes also say 200 gp paid, so final payout is unclear. | +| 5 sp per skull | `day-11`, `day-12` | `data/4-days-cleaned/day-11.md`, `data/4-days-cleaned/day-12.md` | Skull-buying offer from Iakaxi/Chalky's master; no completed sale recorded. | +| auction proceeds unknown | `day-22` | `data/4-days-cleaned/day-22.md` | Zinquiss planned to auction the mother-of-pearl elemental chariot in 7 days. | + +## Unclear or Not Party Treasury + +| Amount or valuables | Day | Source | Question | +|---|---|---|---| +| 4,000 gp in platinum plus gems and chests of coins | `day-04` | `data/4-days-cleaned/day-04.md` | Town safe valuables were seen/noted but not clearly taken by the party. | +| 10 coins bought for 1 gp | `day-09` | `data/4-days-cleaned/day-09.md` | Basalik-held/context; not clearly party treasury. | +| 50 platinum | `day-12` | `data/4-days-cleaned/day-12.md` | Isabella's gargoyle dropped a bag before flying off with her; later custody unclear. | +| `50 per 200g` | `day-15` | `data/4-days-cleaned/day-15.md` | Downpayment phrase preserved as uncertain. | +| 150 gp if fight / 5 gp if not | `day-19` | `data/4-days-cleaned/day-19.md` | Possible ship-fight arrangement; unclear or superseded by the 400 gp Kairbidius reward. | diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md index b4d66db..fab4cf1 100644 --- a/data/6-wiki/open-threads.md +++ b/data/6-wiki/open-threads.md @@ -40,3 +40,11 @@ sources: - What is the Freeport Baroness's true identity and succession mechanism? - What did the water elementals chained to the [mother-of-pearl chariot](items/mother-of-pearl-elemental-chariot.md) want [unclear], and should selling it be treated as exploitation? - Why does the chronology preserve conflicting dates around `6th Jan 1002` and `6th Jan 1012`? +- What is the Core suit or golem-room password, given that `Joy` and `Tri-moon` failed? +- What is the [Freeport Baroness](people/freeport-baroness.md)'s actual circle and safe code, and what happens when the defences drop? +- Is Winter Rose a password, a contact token, a narcotic spice, or several related clues? +- Who marked the cart padlock with upside-down thieves' cant reading `Drunken Duck`, and why did the scratches resemble Dirk's claws? +- Who sent repaired Core back under the `GUILT` label, and how does that connect to The Guilt or Brookville Springs? +- What does the locked Aldaine Hartwell book contain, and what command word will open it? +- What did the cold dream voice mean by `where is he I know you hide him`, and why did a white dragonscale fall from the party room icicle? +- Did the Ruby Eye riddle/layout mechanism have further consequences after the hidden laboratory was opened? diff --git a/data/6-wiki/people/status.md b/data/6-wiki/people/status.md new file mode 100644 index 0000000..10e3ddd --- /dev/null +++ b/data/6-wiki/people/status.md @@ -0,0 +1,109 @@ +--- +title: NPC Status +type: stateful people rollup +last_updated: day-22 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# NPC Status + +This rollup tracks current or last-known NPC lifecycle state: rescued, dead, missing, detained, allied, hostile, or unresolved. + +## Rescued, Restored, or Recovering + +| Person or group | Last-known status | Source | Notes | +|---|---|---|---| +| Malcolm Donovan / half-elf Malcolm | rescued or detained, ambiguous | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-04.md` | Malcolm Donovan was found horribly altered and identified by birthmark; a later half-elf Malcolm steward for the Earl was imprisoned and seemed innocent. These may be different Malcolms. | +| Gregory | restored | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-04.md` | Remembered being taken by militia to the big militia house. | +| Gelissa | restored and transferred to care | `data/4-days-cleaned/day-04.md` | Invar restored her mind and wounds; Brother Fracture was to take her, militia, and cart to barracks. | +| Cromwell | rescued and transported | `data/4-days-cleaned/day-05.md`, `data/4-days-cleaned/day-07.md` | Found badly injured near the Barrier and later transported back to town. | +| Isabella | restored, then taken away by gargoyle guardian | `data/4-days-cleaned/day-07.md`, `data/4-days-cleaned/day-12.md` | Dropped at Cider Inn Cider, later taken by a clay-like family guardian from her aunt; destination/status uncertain. | +| Eight remaining transformed townsfolk | returned toward Everchard | `data/4-days-cleaned/day-07.md` | Could be partially restored; one tentacle arm fell off, leaving a stump. | +| Core | repaired but odd | `data/4-days-cleaned/day-05.md`, `data/4-days-cleaned/day-09.md` | Returned damaged and later arrived repaired by post labelled `GUILT`. | +| [Kiendra](kiendra.md) | rescued, weak, tortured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Initially believed killed/lost, then sensed in a cavern and rescued during the shield crystal mission. | +| Huntmaster Thrune / Huntmaster | survived but injured | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Agreed to aid against the Excellence, went missing, then was found fighting an Excellence while both were very injured. | + +## Dead or Believed Dead + +| Person or group | Status | Source | Notes | +|---|---|---|---| +| Walter's wife | dead | `data/4-days-cleaned/day-03.md` | Sacrificed herself during the sheep-beast incident. | +| Sheep farm victims | dead | `data/4-days-cleaned/day-03.md` | A man was found trampled, and a young boy who had not been dead at first was later dead. Exact identities remain uncertain. | +| Barrier twin | killed by party | `data/4-days-cleaned/day-05.md` | One of two commanders of affected people; the swamp twin remains unresolved. | +| [Joy](joy.md) | dead/recreated/unresolved | `data/4-days-cleaned/day-06.md`, `data/4-days-cleaned/day-14.md` | Six graves were marked Joy, but later an invisible Joy-like presence asked Dirk for help. | +| [Brutor Ruby Eye](brutor-ruby-eye.md) | dead but skull active | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md` | Said to have been killed by the Black Dragon; skull remains an information source. | +| Alsafaur | dead, remains returned | `data/4-days-cleaned/day-16.md` | Veridian dragonborn skull, dead about 1,000 years, returned to black dragon. | +| Kairbidius/Kairibidius | killed | `data/4-days-cleaned/day-19.md` | Pirate captain killed by the party along with crew. | +| Kiendra, earlier report | superseded believed-dead report | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Shandra reported her killed or believed killed before the later rescue. | + +## Missing, Disappeared, or Unresolved + +| Person or group | Last-known status | Source | Notes | +|---|---|---|---| +| Sarah Thornhollows | whereabouts unresolved | `data/4-days-cleaned/day-02.md`, `data/4-days-cleaned/day-03.md` | Connected to [The Chorus](the-chorus.md) and harder to memory-wipe. | +| Everchard militia | missing, manipulated, or implicated | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-04.md` | Records were changed and some militia were involved in abductions. | +| Earl of Everchard | disappeared | `data/4-days-cleaned/day-04.md`, `data/4-days-cleaned/day-09.md` | Became extreme/compromised, then disappeared after memories returned and the sheriff took over. | +| The Chorus's apprentice | left, unresolved | `data/4-days-cleaned/day-03.md` | Described as having upped and left. | +| Swamp twin | unresolved | `data/4-days-cleaned/day-05.md` | Second commander of affected townsfolk went to the swamp. | +| Peridot Queen | ally/contact, motives unclear | `data/4-days-cleaned/day-13.md` | Has seen all eight pylons and worried when looking at Geldrin; warning preserved elsewhere as `DO NOT PISS HER OFF.` | +| [Pythus Aleyvarus](pythus-aleyvarus.md) | dangerous whereabouts known only by scrying | `data/4-days-cleaned/day-16.md`, `data/4-days-cleaned/day-17.md` | Seen near Salvation reading the human-flesh grimoire. | +| Arabella | kidnapped again | `data/4-days-cleaned/day-20.md` | Targeted attack involved faces removed. | +| Keely Caardenalb | not yet contacted | `data/4-days-cleaned/day-17.md` | Desert researcher whose work may be useful. | + +## Captive, Imprisoned, or Detained + +| Person or group | Status | Source | Notes | +|---|---|---|---| +| Hostel townsfolk | freed or recovered | `data/4-days-cleaned/day-04.md` | About ten townsfolk were found in cells. | +| Halfling girl | subdued after Barrier attack | `data/4-days-cleaned/day-05.md` | Captive/hostile status after the attack is not fully detailed. | +| Boulder elementals | left in laboratory room | `data/4-days-cleaned/day-16.md` | Party questioned whether they were slave-diggers and left them there. | +| Void fragment/creature | freed or contactable, reliability uncertain | `data/4-days-cleaned/day-16.md` | Released a contact circle of obsidian after the party tried to let it out. | +| Elemental prisoners / eight beings | trapped or exploited | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-15.md` | Barrier system may use quasi-elemental prisoners as batteries. | +| Water elementals chained to chariot | chained, with party, pending auction | `data/4-days-cleaned/day-22.md` | They wanted something [unclear] and agreed to come on the big boat. | +| Party diplomatic mission | detained aboard boat | `data/4-days-cleaned/day-21.md` | Boat seized at Fairshaws on the Earl's orders under treason accusations. | + +## Allies and Contacts + +| Person or group | Current role | Source | Notes | +|---|---|---|---| +| Sheriff Jeremia/Jeremiah | Everchard authority/contact | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-09.md` | Deputized the party and later took over after the Earl disappeared. | +| Brother Fracture | healer/restoration ally | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-09.md` | Helped restored victims and affected townsfolk. | +| [The Chorus](the-chorus.md) | strange ally/source | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-07.md` | Explained memory magic and watched remaining people near the Barrier. | +| Basilisk/Basalisk | recurring contact | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md` | Bodyguard to Lady Catherine Cole, arranging a Winter Rose contact. | +| Elementharium/Clementarium | Seaward expert | `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-17.md` | Explained quasi-elementals and gave Ruby Eye skull. | +| [Shandra](shandra.md) | Turtle Point Pact leader | `data/4-days-cleaned/day-20.md` | Identified Excellence/Sahuagin threat and asked party to keep the Pact Scepter. | +| [Tiana/Taina](tiana-taina.md) | Freeport Pact leader/coordinator | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Coordinated forces against the Excellence. | +| Zinquiss/Xinquiss | potion and auction contact | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Helped with potions, joined sea operation, and plans to auction the chariot. | +| Guardfree and Guardfore | merfolk guards/allies | `data/4-days-cleaned/day-20.md` | Guardfree kept watch and planned to get his mistress to bring guest shells. | +| Wrath/Kolin | black dragonborn sea-expedition ally | `data/4-days-cleaned/day-21.md` | Asked to search Black Scale for Garadwal's location. | + +## Hostile or Dangerous + +| Person or group | Current risk | Source | Notes | +|---|---|---|---| +| [Garadwal](garadwal.md) | major unresolved threat | `data/4-days-cleaned/day-01.md`, `data/4-days-cleaned/day-15.md`, `data/4-days-cleaned/day-21.md` | Status contradictory: imprisoned, escaped, or soon free depending on source. | +| Pelt | unresolved memory/Joy threat | `data/4-days-cleaned/day-03.md`, `data/4-days-cleaned/day-06.md` | Connected to memory-taking and Joy's rough condition. | +| Musher | killed | `data/4-days-cleaned/day-06.md` | Used townsfolk to attack the Barrier; killed with associated worm/dog-like creatures. | +| [Infestus](infestus.md) / Black Dragon | dangerous but temporarily even | `data/4-days-cleaned/day-14.md`, `data/4-days-cleaned/day-17.md` | Employer of Black Scales; considered the party even after receiving Alsafaur's skull. | +| Justicar | political obstacle | `data/4-days-cleaned/day-12.md`, `data/4-days-cleaned/day-15.md` | Elementarium wanted her gone from Seaward. | +| Sahuagin / Kingly / six-armed fish creature | hostile faction/threat | `data/4-days-cleaned/day-19.md`, `data/4-days-cleaned/day-20.md` | Had Kiendra's conch and prepared copper weapons. | +| Excellence | hostile type, one defeated | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-22.md` | Can be slain; one fought Huntmaster and was defeated or dealt with. | +| Perodetta | regional threat | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Spawn amassing near Azure-side; Heartmoor illness may connect. | +| Fairshaws/Fairport Earl | suspected Cult-linked antagonist | `data/4-days-cleaned/day-20.md`, `data/4-days-cleaned/day-21.md` | Tied to suspicious shipment and seized party boat under treason accusations. | diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md index cbb36a1..b4ebbea 100644 --- a/data/6-wiki/sources.md +++ b/data/6-wiki/sources.md @@ -49,3 +49,10 @@ sources: - `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). - `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). - `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). + +## Stateful Rollups + +- [Party Inventory](inventories/party-inventory.md): item and object custody across cleaned day sources. +- [Party Treasury](inventories/party-treasury.md): money, rewards, payments, deposits, and uncertain accounting across cleaned day sources. +- [NPC Status](people/status.md): rescued, dead, missing, detained, allied, hostile, and unresolved NPC states. +- [Known Passwords and Inscriptions](clues/known-passwords-and-inscriptions.md): passwords, codes, inscriptions, symbols, warnings, riddles, and timers. -
fe48658Force wiki to maintain stateful inventoriesby Bas Mostert
.agents/skills/dnd-build-wiki/SKILL.md | 57 ++++++++++++++++++++++++++++-- .agents/skills/dnd-notes-pipeline/SKILL.md | 6 ++-- 2 files changed, 58 insertions(+), 5 deletions(-)Show diff
diff --git a/.agents/skills/dnd-build-wiki/SKILL.md b/.agents/skills/dnd-build-wiki/SKILL.md index 1311959..31999a1 100644 --- a/.agents/skills/dnd-build-wiki/SKILL.md +++ b/.agents/skills/dnd-build-wiki/SKILL.md @@ -14,6 +14,7 @@ This stage turns detailed cleaned narratives into durable, searchable wiki entri - Interlinked Markdown files in `data/6-wiki/`. - Category directories inside `data/6-wiki/` only when there is at least one actual entry to write there. - Top-level index or cross-cutting index files only when useful for the current wiki content. +- Query-oriented state pages only when they contain real current-state or lifecycle information, such as party inventory, active hooks, known passwords, debts, or NPC statuses. ## Core Rule @@ -120,6 +121,55 @@ Create or update cross-cutting index files only when they contain real links or These files are optional. Do not create empty indexes just because they are listed here. +## Stateful Query Pages + +Maintain focused rollup pages when the cleaned day facts support natural-language current-state queries. These pages should answer questions efficiently without requiring a full scan of every narrative, while still preserving uncertainty and source references. + +Useful stateful pages may include: + +- `inventories/party-inventory.md` for items, magic items, vehicles, documents, scrolls, and other carried or controlled objects. +- `inventories/party-treasury.md` for money, gems, debts, rewards, shares, expenses, and uncertain accounting. +- `open-threads.md` for active mysteries, unresolved hooks, promised follow-ups, warnings, and unanswered questions. +- `people/status.md` or another appropriate people rollup for NPC status, deaths, rescues, disappearances, prisoners, allies, enemies, and last-known locations. +- `clues/known-passwords-and-inscriptions.md` for passwords, command words, inscriptions, symbols, coded phrases, and partial translations. +- Other rollup pages that make repeated natural-language questions cheaper and more reliable. + +Create these pages only when there is real data to record. Do not create an `inventories/` directory, `people/` directory, or any other grouping solely because it is listed here. + +Track lifecycle, not just mentions. For inventory-like pages, distinguish: + +- Currently held, controlled, owned, or usable by the party. +- No longer held because the item was sold, given away, consumed, lost, returned, destroyed, or paid out. +- Offered or promised but not clearly received. +- Owned by or associated with an NPC or faction, not the party. +- Unclear status where the source does not say whether the party kept, sold, used, or transferred it. + +Use tables when they make state easier to query. Example structure: + +```markdown +# Party Inventory + +## Currently Held + +| Item | Holder | Acquired | Source | Notes | +|---|---|---|---|---| +| Drown spear +1 returning | unknown / party | day-22 | data/4-days-cleaned/day-22.md | Speaks Aquan. | + +## No Longer Held + +| Item | Disposition | Day | Source | Notes | +|---|---|---|---|---| +| 112 gp | given to crew | day-22 | data/4-days-cleaned/day-22.md | Coin pouches recovered at the shield crystal site. | + +## Unclear Status + +| Item | Last Seen | Source | Question | +|---|---|---|---| +| <item> | <day> | <source> | Was this kept, sold, consumed, returned, or transferred? | +``` + +For active hooks and NPC status pages, keep entries compact but sourced, and move or mark entries when later cleaned days resolve them. Do not erase the history of a resolved hook if it remains useful; mark it resolved with the day and source. + ## Workflow 1. Identify cleaned day files in `data/4-days-cleaned` that need wiki ingestion or re-ingestion. @@ -128,8 +178,9 @@ These files are optional. Do not create empty indexes just because they are list 4. Decide whether each extracted subject should create a new entry, update an existing entry, or only appear as a linked mention inside another entry. 5. Create `data/6-wiki` and any needed category directories only when writing actual wiki files. 6. Write or update wiki entries with source references, timelines, uncertainty, and relative links. -7. Update useful indexes only if they now have real content. -8. Verify that links are relative and that no empty category directories or placeholder pages were created. +7. Create or update stateful query pages when the day changes current inventory, money, active hooks, NPC status, known passwords, debts, clues, or similar campaign state. +8. Update useful indexes only if they now have real content. +9. Verify that links are relative and that no empty category directories or placeholder pages were created. ## Quality Checks @@ -139,6 +190,7 @@ These files are optional. Do not create empty indexes just because they are list - Confirm new categories were created only because real entries needed them. - Confirm related entries are linked with valid relative paths. - Confirm existing entries were updated rather than duplicated when new information surfaced about the same subject. +- Confirm stateful query pages distinguish current, resolved, transferred, NPC-owned, promised, and unclear statuses instead of treating every mention as current party state. ## Completion Report @@ -149,5 +201,6 @@ When finished, report: - Wiki entries updated. - Categories created because they received real entries. - Indexes created or updated, if any. +- Stateful query pages created or updated, if any. - Existing entries skipped because they already contained the sourced facts. - Ambiguous entities left separate or flagged for user review. diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index 41ffda9..c1a5df9 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -33,7 +33,7 @@ The wiki process ingests cleaned day narratives after cleaning and after any ret 9. Review newly processed pages and cleaned days for retrospective facts that clarify earlier cleaned day narratives. 10. Run the retrospective context stage for clear, sourceable updates, including regenerating affected cleaned days. 11. Identify cleaned day files that need wiki ingestion or re-ingestion because they are newly created or were regenerated by retrospective context. -12. Run the wiki-building stage for those cleaned day files, letting it create only the categories and indexes needed for actual wiki entries. +12. Run the wiki-building stage for those cleaned day files, letting it create only the categories, indexes, and stateful query pages needed for actual wiki entries. 13. Skip and report the latest apparent day if no following day marker exists yet. 14. Stop and ask the user whenever a page number, day boundary, completeness marker, retrospective target day, wiki entity merge, or filename would be uncertain. @@ -56,7 +56,7 @@ Ask the user before proceeding if: - After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. - After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.md` file and was confirmed complete before cleaning. - After retrospective updates, verify that each recorded context item has a source reference, does not duplicate an existing note, any affected cleaned day was regenerated from the raw day plus the retrospective context, and the cleaned day does not expose retrospective source references. -- After wiki building, verify that new or updated wiki entries cite cleaned day sources, use valid relative links, preserve uncertainty and variant spellings, and that no empty category directories or placeholder pages were created. +- After wiki building, verify that new or updated wiki entries cite cleaned day sources, use valid relative links, preserve uncertainty and variant spellings, that stateful query pages distinguish current/resolved/transferred/unclear statuses, and that no empty category directories or placeholder pages were created. - Report skipped files and the reason they were skipped. ## Final Report @@ -67,7 +67,7 @@ At the end of a pipeline run, report: - New raw day files created. - New cleaned day narratives created. - Retrospective context recorded, cleaned days regenerated, or updates skipped. -- Wiki entries created or updated, and categories or indexes created only when populated. +- Wiki entries created or updated, and categories, indexes, or stateful query pages created only when populated. - Files skipped because they already existed. - Latest apparent day skipped because the next-day marker has not appeared yet. - Any user confirmations still needed. -
9df9923Add the Wikiby Bas Mostert
data/6-wiki/aliases.md | 37 +++++++++ data/6-wiki/concepts/barrier.md | 64 +++++++++++++++ data/6-wiki/concepts/elemental-prisons.md | 48 +++++++++++ data/6-wiki/concepts/everchard-memory-tampering.md | 52 ++++++++++++ data/6-wiki/concepts/excellences.md | 49 +++++++++++ data/6-wiki/events/shield-crystal-mission.md | 50 ++++++++++++ data/6-wiki/events/tri-moon-countdown.md | 43 ++++++++++ data/6-wiki/factions/black-scales.md | 37 +++++++++ data/6-wiki/factions/mage-judicators-justicars.md | 49 +++++++++++ data/6-wiki/factions/militia.md | 50 ++++++++++++ data/6-wiki/factions/sahuagin-fish-men.md | 42 ++++++++++ data/6-wiki/factions/the-pact.md | 47 +++++++++++ data/6-wiki/factions/underbelly.md | 35 ++++++++ data/6-wiki/index.md | 94 ++++++++++++++++++++++ .../items/mother-of-pearl-elemental-chariot.md | 39 +++++++++ data/6-wiki/items/noctus-cairinium-grimoire.md | 40 +++++++++ .../items/pact-scepter-and-scepter-conches.md | 41 ++++++++++ data/6-wiki/items/rings-of-joy-envoi-and-dirk.md | 45 +++++++++++ data/6-wiki/items/shield-crystals.md | 53 ++++++++++++ data/6-wiki/items/tri-moon-shard.md | 49 +++++++++++ data/6-wiki/open-threads.md | 42 ++++++++++ data/6-wiki/people/brutor-ruby-eye.md | 51 ++++++++++++ data/6-wiki/people/bushhunter-bughunter.md | 42 ++++++++++ data/6-wiki/people/envoi.md | 51 ++++++++++++ data/6-wiki/people/freeport-baroness.md | 41 ++++++++++ data/6-wiki/people/garadwal.md | 53 ++++++++++++ data/6-wiki/people/infestus.md | 45 +++++++++++ data/6-wiki/people/joy.md | 46 +++++++++++ data/6-wiki/people/kiendra.md | 38 +++++++++ data/6-wiki/people/malcolm-donovan.md | 43 ++++++++++ data/6-wiki/people/pythus-aleyvarus.md | 40 +++++++++ data/6-wiki/people/shandra.md | 31 +++++++ data/6-wiki/people/the-chorus.md | 45 +++++++++++ data/6-wiki/people/thornhollows-family.md | 53 ++++++++++++ data/6-wiki/people/tiana-taina.md | 40 +++++++++ data/6-wiki/people/valenth-cardonald.md | 37 +++++++++ data/6-wiki/places/barrier-observatory.md | 48 +++++++++++ data/6-wiki/places/dunhold-dunbold-cache.md | 41 ++++++++++ data/6-wiki/places/everchurch-everchard.md | 46 +++++++++++ data/6-wiki/places/freeport.md | 36 +++++++++ data/6-wiki/places/hidden-laboratory.md | 44 ++++++++++ data/6-wiki/places/hostel.md | 44 ++++++++++ data/6-wiki/places/salt-dragon-prison.md | 41 ++++++++++ data/6-wiki/places/seaward.md | 51 ++++++++++++ data/6-wiki/places/turtle-point.md | 39 +++++++++ data/6-wiki/sources.md | 51 ++++++++++++ data/6-wiki/timeline.md | 51 ++++++++++++ 47 files changed, 2154 insertions(+)Show diff
diff --git a/data/6-wiki/aliases.md b/data/6-wiki/aliases.md new file mode 100644 index 0000000..a4513f7 --- /dev/null +++ b/data/6-wiki/aliases.md @@ -0,0 +1,37 @@ +--- +title: Aliases and Variant Spellings +type: index +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Aliases and Variant Spellings + +- [Garadwal](people/garadwal.md): Garadwal, Guardwel, Terror of the Sands, nightmare of the darkness. +- [Everchurch/Everchard](places/everchurch-everchard.md): Everchurch, Everchard. +- [Bushhunter/Bughunter](people/bushhunter-bughunter.md): Bushhunter, Bughunter. +- [Brutor Ruby Eye](people/brutor-ruby-eye.md): Brutor Ruby Eye, Ruby Eye, Rubyeye. +- [Envoi](people/envoi.md): Envoi, Enoi, Enoin [uncertain spelling], The Mage, Visage Envoi. +- [Valenth Cardonald](people/valenth-cardonald.md): Valenth Cardonald, Velenth Cardonald. +- [Tiana/Taina](people/tiana-taina.md): Tiana, Taina. +- [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md): Dunhold Cache, Dunbold Cache. +- [Pythus Aleyvarus](people/pythus-aleyvarus.md): Pythus Aleyvarus, Pythas, Pythus. +- [Mage Judicators/Justicars](factions/mage-judicators-justicars.md): mage Judicators, Justicars, Justicar. +- [Sahuagin/Fish Men](factions/sahuagin-fish-men.md): Sahuagin, Saguine, fish men. +- [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md): Pact Scepter, scepter conches, Kiendra's conch. +- [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md): Noctus Cairinium Grimoire, Noch's Caardium, weird skin book, creepy book. +- [The Thornhollows Family](people/thornhollows-family.md): Annabel/Annabella, Isabelle/Isabella, Clarabella/Clara bella/Cleara. diff --git a/data/6-wiki/concepts/barrier.md b/data/6-wiki/concepts/barrier.md new file mode 100644 index 0000000..6f3e0e3 --- /dev/null +++ b/data/6-wiki/concepts/barrier.md @@ -0,0 +1,64 @@ +--- +title: Barrier +type: concept +aliases: + - shield + - dome + - containment system +first_seen: day-01 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-11.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Barrier + +## Summary + +The Barrier is the central protective shield, dome, or containment system around the campaign world, connected to pylons, crystals, elemental prisoners, the Pact, the Tri-moon shard, and regional attacks. + +## Known Details + +- A state charter required sufficient militia near the Barrier. +- It was created by five figures including [Envoi](../people/envoi.md), with [Brutor Ruby Eye](../people/brutor-ruby-eye.md) heavily involved in containment and pylon plans. +- It depends on eight beings or poles; one prison's escape weakens it. +- Shield pylons and crystals regulate or focus it. +- Attacks on it may speed the [Tri-moon Shard](../items/tri-moon-shard.md). +- It has been attacked at Everchard, flickered near Seaward, interacted with elemental prisons, and required underwater shield crystal intervention. + +## Timeline + +- `day-01`: Garadwal is introduced as one of eight whose escape would weaken the Barrier. +- `day-05`: Controlled townsfolk and militia attack the Barrier near the observatory. +- `day-11`: Wider Barrier crisis reports put major settlements and Justicars on alert. +- `day-14`: Elementals describe the Barrier as enslavement and batteries. +- `day-16`: Brutor's lab reveals Barrier memory records and emergency systems. +- `day-22`: The shield crystal mission continues Barrier stabilization work. + +## Related Entries + +- [Elemental Prisons](elemental-prisons.md) +- [The Pact](../factions/the-pact.md) +- [Shield Crystals](../items/shield-crystals.md) +- [Tri-moon Shard](../items/tri-moon-shard.md) +- [Barrier Observatory](../places/barrier-observatory.md) + +## Open Questions + +- Can the Barrier be repaired without exploiting prisoners? +- Must it be dropped to repel the Tri-moon shard? +- What are the eight beings or poles? diff --git a/data/6-wiki/concepts/elemental-prisons.md b/data/6-wiki/concepts/elemental-prisons.md new file mode 100644 index 0000000..989ed8b --- /dev/null +++ b/data/6-wiki/concepts/elemental-prisons.md @@ -0,0 +1,48 @@ +--- +title: Elemental Prisons +type: concept +aliases: + - eight imprisoned beings + - barrier batteries + - elemental batteries +first_seen: day-14 +last_updated: day-17 +sources: + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-17.md +--- + +# Elemental Prisons + +## Summary + +The elemental prisons are ancient containment systems that may hold or exploit powerful beings as batteries for the [Barrier](barrier.md). + +## Known Details + +- Elementals said the Barrier was enslavement and that oppressors used them as batteries. +- There were said to be eight altogether. +- Possible categories or associated forms include ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt, but this list is uncertain and may exceed eight. +- The [Salt Dragon Prison](../places/salt-dragon-prison.md) contained a salt dragon inside a smaller barrier. +- [Garadwal](../people/garadwal.md), Salias, the salt dragon, and void fragments may be connected to this prison network. +- Quasi-elemental lore distinguishes salt and water, with salt poisoning or polluting water elementals. + +## Timeline + +- `day-14`: The party learns of elemental battery claims, Garadwal, Salias, and the salt dragon prison. +- `day-15`: Elementharium/Clementarium explains quasi-elemental categories and salt-water problems. +- `day-17`: Leaking elemental prisons are part of the urgent Barrier crisis. + +## Related Entries + +- [Barrier](barrier.md) +- [Salt Dragon Prison](../places/salt-dragon-prison.md) +- [Garadwal](../people/garadwal.md) +- [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) + +## Open Questions + +- Which eight prisoners are real? +- Were they imprisoned for danger, exploited for power, or both? +- How do sand and void fit the quasi-elemental model? diff --git a/data/6-wiki/concepts/everchard-memory-tampering.md b/data/6-wiki/concepts/everchard-memory-tampering.md new file mode 100644 index 0000000..ce021ce --- /dev/null +++ b/data/6-wiki/concepts/everchard-memory-tampering.md @@ -0,0 +1,52 @@ +--- +title: Everchard Memory Tampering +type: concept +aliases: + - mind wipe + - memory-taking + - memories rewritten into convenient forms +first_seen: day-01 +last_updated: day-07 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-07.md +--- + +# Everchard Memory Tampering + +## Summary + +Everchard memory tampering rewrote people, places, records, and absences into convenient forms while hiding missing animals, homeless people, militia, and transformed victims. + +## Known Details + +- People forgot Gelissa, Isabella, Malcolm, Sarah, homeless people, missing militia, and sometimes locations. +- Keys changed number at Cider Inn Cider. +- Census and farm ledgers altered or failed to match memories. +- The Chorus explained that memory magic changed memories into convenient forms. +- Outsiders, The Chorus, and some party members resisted or recovered memories differently. +- The process overlapped with animal-human transformations, wagon abductions, and Barrier attacks. + +## Timeline + +- `day-01`: Memory instability becomes undeniable through Gelissa, keys, militia, and Malcolm. +- `day-02`: Thornhollows records and Sarah's erasure deepen the mystery. +- `day-03`: The Hostel, wagons, and transformed victims expose the operation. +- `day-04`: Restorations recover some victims and memories. +- `day-07`: Outside militia are briefed on the mind wipe and citizen stealing. + +## Related Entries + +- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Hostel](../places/hostel.md) +- [Militia](../factions/militia.md) +- [The Chorus](../people/the-chorus.md) +- [Malcolm Donovan](../people/malcolm-donovan.md) + +## Open Questions + +- What is the magic word or mechanism? +- Who maintained the effect after Musher and the twins were confronted? diff --git a/data/6-wiki/concepts/excellences.md b/data/6-wiki/concepts/excellences.md new file mode 100644 index 0000000..87a7748 --- /dev/null +++ b/data/6-wiki/concepts/excellences.md @@ -0,0 +1,49 @@ +--- +title: Excellences +type: concept or creature type +aliases: + - Excellence + - An Excellence + - six-armed beings +first_seen: day-17 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Excellences + +## Summary + +Excellences are powerful six-armed beings or creature type tied to creation theology, Pact threats, Sahuagin activity, Highden attacks, and the underwater shield crystal battle. + +## Known Details + +- Elven creation theology described six Excellences after light, dark, life, gods, and twelve gods. +- Shandra identified a six-armed creature as an Excellence. +- One fish-like creature threatened destruction around the Turtle Point and Sahuagin crisis. +- A fire Excellence was attacking Highden and hostile to elves. +- The Huntmaster was later found fighting an Excellence, and the party recorded `Deed Excellence!` as defeat or deed against it. + +## Timeline + +- `day-17`: Theology and six-primeval-element lore introduce Excellences. +- `day-20`: Shandra identifies a six-armed threat as an Excellence. +- `day-21`: Regional reports include a fire Excellence attacking Highden. +- `day-22`: The Huntmaster fights an Excellence during the underwater mission. + +## Related Entries + +- [The Pact](../factions/the-pact.md) +- [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) +- [Shield Crystal Mission](../events/shield-crystal-mission.md) +- [Turtle Point](../places/turtle-point.md) + +## Open Questions + +- Are Excellences divine armies, independent monsters, or corrupted elemental beings? +- What does `he will be worse` refer to in the Excellence hierarchy? diff --git a/data/6-wiki/events/shield-crystal-mission.md b/data/6-wiki/events/shield-crystal-mission.md new file mode 100644 index 0000000..3b79033 --- /dev/null +++ b/data/6-wiki/events/shield-crystal-mission.md @@ -0,0 +1,50 @@ +--- +title: Shield Crystal Mission +type: event +aliases: + - water crystal mission + - sea shield crystal mission +first_seen: day-17 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Shield Crystal Mission + +## Summary + +The shield crystal mission was a coordinated underwater operation to deal with the sea shield crystal, rescue [Kiendra](../people/kiendra.md), and fight enemies including the Bug Boss and an Excellence. + +## Known Details + +- The sea shield crystal was a major Barrier priority. +- Forces gathered at Pier 12 with Pact, Freeport, merfolk, and other allies. +- Guest shells enabled underwater action but lasted two hours and could be dispelled. +- The party split: one group handled the shield crystal while the other rescued Kiendra. +- Loot included waterproof paper, three dispel magic scrolls, 112 gp given to the crew, a drown spear +1 returning that speaks Aquan, and Plate of Hydran +1 with cold resistance. +- Kiendra was rescued weak and tortured. +- The Huntmaster was found fighting an Excellence, and `Deed Excellence!` records a victory or deed against it. + +## Timeline + +- `day-17`: The sea shield crystal is identified as a priority. +- `day-20`: The Pact, Freeport, Kiendra, and Sahuagin threads set up the mission. +- `day-21`: The underwater operation is prepared. +- `day-22`: The party completes the fight, rescues Kiendra, and recovers the elemental chariot afterward. + +## Related Entries + +- [Shield Crystals](../items/shield-crystals.md) +- [Kiendra](../people/kiendra.md) +- [Tiana/Taina](../people/tiana-taina.md) +- [Excellences](../concepts/excellences.md) +- [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) + +## Open Questions + +- What is the shield crystal's final state after the battle? +- Who controlled the Bug Boss and the Excellence at the site? diff --git a/data/6-wiki/events/tri-moon-countdown.md b/data/6-wiki/events/tri-moon-countdown.md new file mode 100644 index 0000000..22abce6 --- /dev/null +++ b/data/6-wiki/events/tri-moon-countdown.md @@ -0,0 +1,43 @@ +--- +title: Tri-moon Countdown +type: event +first_seen: day-17 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-18.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Tri-moon Countdown + +## Summary + +The Tri-moon countdown tracks the approach of the Tri-moon and shard crisis, reaching twelve days remaining by day 22. + +## Known Details + +- The Tri-moon affects water at Turtle Point, where locals expect high water. +- The shard crisis requires a repelling device and may require the Barrier to go down. +- The countdown moves through the coastal, Pact, and shield crystal mission sequence. +- Chronology preserves a date discrepancy: day-21 metadata says `6th Jan 1002`, while day-22 says `6th Jan 1012`. + +## Timeline + +- `day-17`: Tri-moon shard crisis becomes part of security council urgency. +- `day-20`: Pact and Freeport planning happen under the countdown. +- `day-22`: The notes record Tuesday, 6th Jan 1012, with 12 days to the Tri-moon. + +## Related Entries + +- [Tri-moon Shard](../items/tri-moon-shard.md) +- [Barrier](../concepts/barrier.md) +- [Shield Crystal Mission](shield-crystal-mission.md) + +## Open Questions + +- Is the day-21 date a typo or evidence of time anomaly? +- What exact date will the Tri-moon event occur? diff --git a/data/6-wiki/factions/black-scales.md b/data/6-wiki/factions/black-scales.md new file mode 100644 index 0000000..13e0aa7 --- /dev/null +++ b/data/6-wiki/factions/black-scales.md @@ -0,0 +1,37 @@ +--- +title: Black Scales +type: faction +aliases: + - Black Scale +first_seen: day-14 +last_updated: day-21 +sources: + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-21.md +--- + +# Black Scales + +## Summary + +The Black Scales are mercenaries or a place/faction associated with the black dragon [Infestus](../people/infestus.md) and later with Wrath/Kolin searching for [Garadwal](../people/garadwal.md). + +## Known Details + +- Basalisk identified the Black Scales as mercenaries working for Infestus. +- Wrath/Kolin, a black dragonborn, would stay beyond the Barrier and asked to search for Garadwal at Black Scale. +- The notes preserve uncertainty over whether Black Scale is a place, group, or both. + +## Timeline + +- `day-14`: Black Scales are linked to Infestus. +- `day-21`: Wrath/Kolin links Black Scale to a Garadwal search. + +## Related Entries + +- [Infestus](../people/infestus.md) +- [Garadwal](../people/garadwal.md) + +## Open Questions + +- Is Black Scale a location, faction, mercenary company, or shorthand for the Black Scales? diff --git a/data/6-wiki/factions/mage-judicators-justicars.md b/data/6-wiki/factions/mage-judicators-justicars.md new file mode 100644 index 0000000..8f3edc3 --- /dev/null +++ b/data/6-wiki/factions/mage-judicators-justicars.md @@ -0,0 +1,49 @@ +--- +title: Mage Judicators/Justicars +type: faction +aliases: + - mage Judicators + - Justicars + - Justicar +first_seen: day-09 +last_updated: day-21 +sources: + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-11.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-21.md +--- + +# Mage Judicators/Justicars + +## Summary + +Mage Judicators or Justicars are authorities tied to Seaward, major settlements, Grand Towers, and Barrier oversight. + +## Known Details + +- Basalik warned the party to keep on their good side in Seaward. +- Justicars were reporting to major settlements after Barrier attacks. +- The Seaward Justicar checked books and crystal only with an eyeglass, while Elementarium wanted the Justicar gone. +- Underground groups wanted the Justicar kept out of the salt dragon prison. +- Later Justiciars were leaving Grand Towers to five points. + +## Timeline + +- `day-09`: Basalik warns about mage Judicators. +- `day-11`: Justicars react to wider Barrier crisis. +- `day-14`: Local prison politics involve keeping the Justicar out. +- `day-21`: Justiciars move from Grand Towers to five points. + +## Related Entries + +- [Seaward](../places/seaward.md) +- [Salt Dragon Prison](../places/salt-dragon-prison.md) +- [Barrier](../concepts/barrier.md) + +## Open Questions + +- Are Justicars protecting truth, obstructing investigation, or acting under incomplete orders? diff --git a/data/6-wiki/factions/militia.md b/data/6-wiki/factions/militia.md new file mode 100644 index 0000000..d8bb10e --- /dev/null +++ b/data/6-wiki/factions/militia.md @@ -0,0 +1,50 @@ +--- +title: Militia +type: faction +aliases: + - Everchard militia + - missing militia +first_seen: day-01 +last_updated: day-07 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-07.md +--- + +# Militia + +## Summary + +The Everchard militia was mostly vanished, forgotten, controlled, or fraudulently recorded during the town's memory-tampering crisis. + +## Known Details + +- An order had been placed for twenty weapons and ten armour, but only about five militia remained. +- Names such as Terry, Stonejaw, Rob, and Ralfrex were used to explain absences. +- Records suggested forty-three or fifty-four militia had existed, while later ledgers and wages showed major discrepancies. +- Gregory remembered Stonejaw and Ralfex taking him to the hostel. +- Controlled militia and townsfolk were used during the Barrier attack. +- Thairwell militia later arrived from Provista and reported to Lady Thorpe. + +## Timeline + +- `day-01`: Missing militia and records emerge as a major clue. +- `day-03`: Militia involvement in abductions becomes explicit. +- `day-04`: Ledger fraud and missing wages are uncovered. +- `day-05`: Controlled militia participate in Barrier attacks. +- `day-07`: Thairwell militia are briefed on mind wipe, citizen stealing, missing militia, and Barrier attacks. + +## Related Entries + +- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [Hostel](../places/hostel.md) +- [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) +- [Barrier](../concepts/barrier.md) + +## Open Questions + +- Which militia were victims, collaborators, transformed, or invented by memory rewriting? +- How many survived? diff --git a/data/6-wiki/factions/sahuagin-fish-men.md b/data/6-wiki/factions/sahuagin-fish-men.md new file mode 100644 index 0000000..844613f --- /dev/null +++ b/data/6-wiki/factions/sahuagin-fish-men.md @@ -0,0 +1,42 @@ +--- +title: Sahuagin/Fish Men +type: faction +aliases: + - Sahuagin + - Saguine + - fish men +first_seen: day-19 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md +--- + +# Sahuagin/Fish Men + +## Summary + +The Sahuagin or fish men were assembling copper weapons, feared or followed Boss/Kingly, and possessed Kiendra's stolen scepter conch. + +## Known Details + +- Fish people were found making copper weapons in old-town huts near Turtle Point. +- They were connected to Kingly/Boss and an Excellence threat. +- They had Kiendra's scepter conch. +- The suspicious shipment thread included copper-tipped trident heads and waterproof paper for salt water only. + +## Timeline + +- `day-19`: The party finds fish men making copper weapons. +- `day-20`: Their role in Kiendra's conch theft and Excellence threat becomes clearer. + +## Related Entries + +- [Kiendra](../people/kiendra.md) +- [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) +- [Turtle Point](../places/turtle-point.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Who commands the Sahuagin chain: Kingly, Boss, an Excellence, or someone else? diff --git a/data/6-wiki/factions/the-pact.md b/data/6-wiki/factions/the-pact.md new file mode 100644 index 0000000..923face --- /dev/null +++ b/data/6-wiki/factions/the-pact.md @@ -0,0 +1,47 @@ +--- +title: The Pact +type: faction +aliases: + - Pact +first_seen: day-16 +last_updated: day-21 +sources: + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md +--- + +# The Pact + +## Summary + +The Pact is a Barrier-protection organization or agreement marked by a five-hands star symbol, local leaders, scepters, and a bargain to protect people in exchange for protecting the [Barrier](../concepts/barrier.md). + +## Known Details + +- It is linked to five wizards and a meeting at a Newhaven pub. +- Shandra explained that it protects people in exchange for protecting the Barrier. +- Local leaders include Shandra at Turtle Point, Tiana/Taina in Freeport, and Alana by report. +- Pact artifacts include a Pact Scepter and eight scepter conches. +- The security council and Grand Towers discussions rely on Pact history and responsibilities. + +## Timeline + +- `day-16`: Memories reveal the Pact's origin context after a six-armed rock creature broke. +- `day-17`: Council and Barrier-protector networks discuss Pact obligations. +- `day-20`: Shandra explains the Pact and gives or entrusts Pact authority. +- `day-21`: Pact forces coordinate for the shield crystal mission. + +## Related Entries + +- [Barrier](../concepts/barrier.md) +- [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) +- [Shandra](../people/shandra.md) +- [Tiana/Taina](../people/tiana-taina.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Who were all five original wizards? +- What are the legal or magical limits of Pact authority? diff --git a/data/6-wiki/factions/underbelly.md b/data/6-wiki/factions/underbelly.md new file mode 100644 index 0000000..b820649 --- /dev/null +++ b/data/6-wiki/factions/underbelly.md @@ -0,0 +1,35 @@ +--- +title: Underbelly +type: faction +first_seen: day-14 +last_updated: day-14 +sources: + - data/4-days-cleaned/day-14.md +--- + +# Underbelly + +## Summary + +The Underbelly is an underground faction or community near Seaward's salt dragon prison, operating under a truce and trying to free the salt dragon. + +## Known Details + +- A truce seemed to be in place when the party encountered them. +- People there wanted the Justicar kept out. +- They were trying to free the salt dragon. +- Associated figures include a black dragonborn boss and old gnome guide. + +## Timeline + +- `day-14`: The party encounters the Underbelly while investigating the underground prison. + +## Related Entries + +- [Salt Dragon Prison](../places/salt-dragon-prison.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Mage Judicators/Justicars](mage-judicators-justicars.md) + +## Open Questions + +- Are they liberators, criminals, cultists, or a mix? diff --git a/data/6-wiki/index.md b/data/6-wiki/index.md new file mode 100644 index 0000000..06231b3 --- /dev/null +++ b/data/6-wiki/index.md @@ -0,0 +1,94 @@ +--- +title: Pentacity Campaign Wiki +type: index +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-10.md + - data/4-days-cleaned/day-11.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-18.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Pentacity Campaign Wiki + +This wiki indexes searchable campaign material extracted from the cleaned day narratives. + +## Core Threads + +- [Timeline](timeline.md) +- [Open Threads](open-threads.md) +- [Aliases and Variant Spellings](aliases.md) +- [Sources](sources.md) + +## People + +- [Garadwal](people/garadwal.md) +- [Brutor Ruby Eye](people/brutor-ruby-eye.md) +- [Envoi](people/envoi.md) +- [Joy](people/joy.md) +- [Infestus](people/infestus.md) +- [Pythus Aleyvarus](people/pythus-aleyvarus.md) +- [Valenth Cardonald](people/valenth-cardonald.md) +- [The Freeport Baroness](people/freeport-baroness.md) +- [Shandra](people/shandra.md) +- [Kiendra](people/kiendra.md) +- [Tiana/Taina](people/tiana-taina.md) +- [The Chorus](people/the-chorus.md) +- [Bushhunter/Bughunter](people/bushhunter-bughunter.md) +- [The Thornhollows Family](people/thornhollows-family.md) +- [Malcolm Donovan](people/malcolm-donovan.md) + +## Places + +- [Everchurch/Everchard](places/everchurch-everchard.md) +- [Hostel](places/hostel.md) +- [Barrier Observatory](places/barrier-observatory.md) +- [Seaward](places/seaward.md) +- [Salt Dragon Prison](places/salt-dragon-prison.md) +- [Hidden Laboratory](places/hidden-laboratory.md) +- [Freeport](places/freeport.md) +- [Turtle Point](places/turtle-point.md) +- [Dunhold/Dunbold Cache](places/dunhold-dunbold-cache.md) + +## Factions + +- [The Pact](factions/the-pact.md) +- [Militia](factions/militia.md) +- [Black Scales](factions/black-scales.md) +- [Mage Judicators/Justicars](factions/mage-judicators-justicars.md) +- [Underbelly](factions/underbelly.md) +- [Sahuagin/Fish Men](factions/sahuagin-fish-men.md) + +## Items + +- [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md) +- [Tri-moon Shard](items/tri-moon-shard.md) +- [Shield Crystals](items/shield-crystals.md) +- [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md) +- [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md) +- [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md) + +## Concepts and Events + +- [Barrier](concepts/barrier.md) +- [Elemental Prisons](concepts/elemental-prisons.md) +- [Everchard Memory Tampering](concepts/everchard-memory-tampering.md) +- [Excellences](concepts/excellences.md) +- [Tri-moon Countdown](events/tri-moon-countdown.md) +- [Shield Crystal Mission](events/shield-crystal-mission.md) diff --git a/data/6-wiki/items/mother-of-pearl-elemental-chariot.md b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md new file mode 100644 index 0000000..77e4347 --- /dev/null +++ b/data/6-wiki/items/mother-of-pearl-elemental-chariot.md @@ -0,0 +1,39 @@ +--- +title: Mother-of-Pearl Elemental Chariot +type: item or vehicle +aliases: + - mother-of-pearl chariot + - chariot with water elementals +first_seen: day-22 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-22.md +--- + +# Mother-of-Pearl Elemental Chariot + +## Summary + +The mother-of-pearl elemental chariot is a light chariot found docked at a cove with water elementals chained to it, later taken by the party for sale at Freeport. + +## Known Details + +- It had a mother-of-pearl frame and weighed 8-10 kg. +- Water elementals were chained to it. +- Dirk spoke to the elementals; they wanted something [unclear] and agreed to come with the party on the big boat. +- Zinquiss planned to sell it at auction in seven days at the Freeport auction house. + +## Timeline + +- `day-22`: The party finds the chariot at the cove after the shield crystal mission and takes it with them. + +## Related Entries + +- [Freeport](../places/freeport.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Shield Crystal Mission](../events/shield-crystal-mission.md) + +## Open Questions + +- What did the chained water elementals want [unclear]? +- Will auctioning the chariot free, transfer, or exploit the elementals? diff --git a/data/6-wiki/items/noctus-cairinium-grimoire.md b/data/6-wiki/items/noctus-cairinium-grimoire.md new file mode 100644 index 0000000..9404a2f --- /dev/null +++ b/data/6-wiki/items/noctus-cairinium-grimoire.md @@ -0,0 +1,40 @@ +--- +title: Noctus Cairinium Grimoire +type: item +aliases: + - Noch's Caardium + - weird skin book + - creepy book +first_seen: day-16 +last_updated: day-17 +sources: + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md +--- + +# Noctus Cairinium Grimoire + +## Summary + +The Noctus Cairinium Grimoire, also uncertainly recorded as Noch's Caardium, is a forbidden skin book taken by [Pythus Aleyvarus](../people/pythus-aleyvarus.md). + +## Known Details + +- It was sealed in Tan-leather or human flesh with human teeth and a platinum lock. +- It contained forbidden magic. +- Pythus took it and was later scried near Salvation reading it. + +## Timeline + +- `day-16`: The book is found in the hidden laboratory context and taken by Pythus. +- `day-17`: Pythus is seen reading it near Salvation. + +## Related Entries + +- [Pythus Aleyvarus](../people/pythus-aleyvarus.md) +- [Hidden Laboratory](../places/hidden-laboratory.md) + +## Open Questions + +- What magic does it contain? +- What will Pythus do with it? diff --git a/data/6-wiki/items/pact-scepter-and-scepter-conches.md b/data/6-wiki/items/pact-scepter-and-scepter-conches.md new file mode 100644 index 0000000..ca96214 --- /dev/null +++ b/data/6-wiki/items/pact-scepter-and-scepter-conches.md @@ -0,0 +1,41 @@ +--- +title: Pact Scepter and Scepter Conches +type: item group +aliases: + - Pact Scepter + - scepter conches + - Kiendra's conch +first_seen: day-20 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-20.md +--- + +# Pact Scepter and Scepter Conches + +## Summary + +The Pact Scepter and scepter conches are authority or command artifacts of [The Pact](../factions/the-pact.md), tied to local leaders and Kiendra's captivity. + +## Known Details + +- One Pact Scepter was given to each wizard. +- Shandra asked the party to keep a Pact Scepter and said it signified their side of the Pact. +- Only eight scepter conches exist. +- Sahuagin had Kiendra's scepter conch. + +## Timeline + +- `day-20`: Shandra explains Pact artifacts, Kiendra's conch theft, and the Excellence threat. + +## Related Entries + +- [The Pact](../factions/the-pact.md) +- [Shandra](../people/shandra.md) +- [Kiendra](../people/kiendra.md) +- [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) + +## Open Questions + +- What powers do the scepter and conches have? +- Who holds the remaining conches? diff --git a/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md b/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md new file mode 100644 index 0000000..0f544d7 --- /dev/null +++ b/data/6-wiki/items/rings-of-joy-envoi-and-dirk.md @@ -0,0 +1,45 @@ +--- +title: Rings of Joy, Envoi, and Dirk +type: item group +aliases: + - Joy's Teddy Ring + - Dirk's Ring + - Envoi's ring +first_seen: day-05 +last_updated: day-16 +sources: + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-16.md +--- + +# Rings of Joy, Envoi, and Dirk + +## Summary + +Several rune rings connect [Joy](../people/joy.md), [Envoi](../people/envoi.md), Dirk, pacts, souls, sacrifice, and possible immortality or cloning work. + +## Known Details + +- Joy's teddy ring was hidden in Mr Snuffles and read: `a pact in darkness made in sorrow to bring (no sharpness) back Joy`. +- Dirk's similar ring read: `A Bargain struck in shadows for souls to be held in infinity`. +- Dirk's ring glowed when placed on a statue with another ring. +- Envoi wore five rings. +- Envoi's small ring was described as `a sacrifice made to live eternal, father & daughter`. + +## Timeline + +- `day-05`: The party finds Joy's teddy ring and Dirk's similar ring becomes significant. +- `day-06`: Ring, pact, clone, and Joy grave clues converge. +- `day-16`: Envoi's ring and five-ring history deepen the sacrifice theme. + +## Related Entries + +- [Joy](../people/joy.md) +- [Envoi](../people/envoi.md) +- [Barrier Observatory](../places/barrier-observatory.md) + +## Open Questions + +- Did the rings bind souls, enable clones, preserve Envoi, resurrect Joy, or all of these? +- Who was the other party to the bargain? diff --git a/data/6-wiki/items/shield-crystals.md b/data/6-wiki/items/shield-crystals.md new file mode 100644 index 0000000..c49c242 --- /dev/null +++ b/data/6-wiki/items/shield-crystals.md @@ -0,0 +1,53 @@ +--- +title: Shield Crystals +type: item or device +aliases: + - crystals + - sea shield crystal + - shield crystal +first_seen: day-06 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Shield Crystals + +## Summary + +Shield crystals are Barrier-linked crystals, pylon components, keys, figurehead motifs, and underwater mission objectives. + +## Known Details + +- A shield crystal was used by Geldrin as a key to open a locked trapdoor. +- Sickness near pylon cities may resemble shield crystal colour or effects. +- Geldrin's crystal shard caused a stronger smaller Barrier flicker effect near Seaward. +- A wooden shield crystal figurehead appeared on the Pride of the Penta Cities. +- The underwater shield crystal on day 22 was approximately one metre square. +- The sea shield crystal was one major priority for Pact and Barrier repair. + +## Timeline + +- `day-06`: Shield crystal is used as a key and tied to sickness questions. +- `day-13`: A crystal shard interacts with Seaward pylon flickers. +- `day-17`: Sea shield crystal becomes a priority. +- `day-22`: The party fights at the underwater crystal site and recovers loot. + +## Related Entries + +- [Barrier](../concepts/barrier.md) +- [Seaward](../places/seaward.md) +- [Shield Crystal Mission](../events/shield-crystal-mission.md) +- [Tri-moon Shard](tri-moon-shard.md) + +## Open Questions + +- Are shield crystals batteries, regulators, keys, toxins, or all of these? +- What is the underwater crystal's current status after the mission? diff --git a/data/6-wiki/items/tri-moon-shard.md b/data/6-wiki/items/tri-moon-shard.md new file mode 100644 index 0000000..c93e34b --- /dev/null +++ b/data/6-wiki/items/tri-moon-shard.md @@ -0,0 +1,49 @@ +--- +title: Tri-moon Shard +type: item or celestial threat +aliases: + - moon shard + - fragment of the moon +first_seen: day-06 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Tri-moon Shard + +## Summary + +The Tri-moon shard is a smaller fragment separate from the moon, much closer to the world, apparently falling or approaching in a way that threatens the Grand Towers, dome, and Barrier system. + +## Known Details + +- It is halfway between the planet and moon and locked in sync. +- It appears aimed exactly between pylons. +- Increased flow through pylons or attacks on the Barrier may speed its approach. +- Stopping it may require a device to repel it and may require the Barrier to go down. +- The countdown reaches 12 days to the Tri-moon by day 22. + +## Timeline + +- `day-06`: Observatory measurements identify the shard and its trajectory. +- `day-15`: Brutor's lore ties it to the first crack and containment device questions. +- `day-17`: Council discussions make it an urgent priority. +- `day-22`: The date is Tuesday, 6th Jan 1012, 12 days to the Tri-moon. + +## Related Entries + +- [Barrier](../concepts/barrier.md) +- [Tri-moon Countdown](../events/tri-moon-countdown.md) +- [Barrier Observatory](../places/barrier-observatory.md) +- [Shield Crystals](shield-crystals.md) + +## Open Questions + +- Who or what broke the shard free? +- Can it be repelled without catastrophic Barrier failure? diff --git a/data/6-wiki/open-threads.md b/data/6-wiki/open-threads.md new file mode 100644 index 0000000..b4d66db --- /dev/null +++ b/data/6-wiki/open-threads.md @@ -0,0 +1,42 @@ +--- +title: Open Threads +type: index +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-10.md + - data/4-days-cleaned/day-11.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-18.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Open Threads + +- What exactly is [Garadwal](people/garadwal.md): void, sand, sphinx, elemental prisoner, or several overlapping descriptions? +- Who made the pact described by the [rings](items/rings-of-joy-envoi-and-dirk.md), and what did it do to Joy's soul or clones? +- Can the [Tri-moon Shard](items/tri-moon-shard.md) be repelled without dropping or fatally weakening the [Barrier](concepts/barrier.md)? +- Are the [Elemental Prisons](concepts/elemental-prisons.md) justified containment, exploitation, or both? +- Which eight beings or poles power the Barrier, and are Garadwal, Salias, the salt dragon, and the void fragment among them? +- Who controlled the Everchard militia and transformed townsfolk during the [memory tampering](concepts/everchard-memory-tampering.md)? +- What happened to the Earl of Everchard after memories returned? +- What is the relationship between [Infestus](people/infestus.md), the [Black Scales](factions/black-scales.md), black dragonborn agents, and the suspicious shipments? +- What are [Pythus Aleyvarus](people/pythus-aleyvarus.md) and the [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md) now being used for? +- Is [Valenth Cardonald](people/valenth-cardonald.md) the same person described as Ruby Eye's best friend who wanted to craft herself into an object? +- What is the Freeport Baroness's true identity and succession mechanism? +- What did the water elementals chained to the [mother-of-pearl chariot](items/mother-of-pearl-elemental-chariot.md) want [unclear], and should selling it be treated as exploitation? +- Why does the chronology preserve conflicting dates around `6th Jan 1002` and `6th Jan 1012`? diff --git a/data/6-wiki/people/brutor-ruby-eye.md b/data/6-wiki/people/brutor-ruby-eye.md new file mode 100644 index 0000000..e225fad --- /dev/null +++ b/data/6-wiki/people/brutor-ruby-eye.md @@ -0,0 +1,51 @@ +--- +title: Brutor Ruby Eye +type: person +aliases: + - Ruby Eye + - Rubyeye +first_seen: day-01 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md +--- + +# Brutor Ruby Eye + +## Summary + +Brutor Ruby Eye was a dwarf abjuration wizard of Tor and a central architect or analyst of the [Barrier](../concepts/barrier.md), containment, pylons, and prison lore. + +## Known Details + +- His skull became a consulted source of lore and was transferred to the party. +- He identified [Garadwal](garadwal.md) as the only void they could find and one of eight whose escape would weaken the Barrier. +- His laboratory contained pylon plans, memory orbs, void containment, museum artifacts, alarm systems keyed by blood or hand, and lore about the first crack. +- He was described as powerful, possibly a demi-lich figure, and interested in immortality, runes, sacrifice, and containment. +- He was killed by or strongly associated with conflict against the black dragon [Infestus](infestus.md). + +## Timeline + +- `day-01`: Brutor is cited as a source on Garadwal and the Prison of the Sands. +- `day-15`: His skull and containment lore become active campaign tools. +- `day-16`: The party explores his hidden laboratory and memory records. +- `day-17`: Security council discussions rely on Brutor-related knowledge. +- `day-20`: Huntmaster Thrune says Ruby Eye often spoke to the church. + +## Related Entries + +- [Hidden Laboratory](../places/hidden-laboratory.md) +- [Barrier](../concepts/barrier.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Envoi](envoi.md) +- [Infestus](infestus.md) + +## Open Questions + +- Did Brutor intend to become immortal as a demi-lich? +- What exactly was his sacrifice? +- How complete and trustworthy is the skull's account? diff --git a/data/6-wiki/people/bushhunter-bughunter.md b/data/6-wiki/people/bushhunter-bughunter.md new file mode 100644 index 0000000..15453e0 --- /dev/null +++ b/data/6-wiki/people/bushhunter-bughunter.md @@ -0,0 +1,42 @@ +--- +title: Bushhunter/Bughunter +type: person +aliases: + - Bushhunter + - Bughunter +first_seen: day-01 +last_updated: day-03 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-03.md +--- + +# Bushhunter/Bughunter + +## Summary + +Bushhunter or Bughunter is a registered mercenary in Everchard known for tubes, pipes, bug displays, gas equipment, and suspicious timing around the memory crisis. + +## Known Details + +- He arrived about two weeks before the Everchard investigation, around when the winter apple trees began fruiting. +- He held a sale of giant bugs in frames six days before the sheriff's report. +- He appeared as a suited halfling with an ogre, barrel, tubes, pipes, goggles, gas equipment, and an ear-funnel crossbow. +- His gas harmed birds associated with [The Chorus](the-chorus.md). +- Geldrin bought a compass box that pointed to him. + +## Timeline + +- `day-01`: He is named as a suspicious recent arrival. +- `day-03`: The party encounters him and his bug-hunting gear. + +## Related Entries + +- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [The Chorus](the-chorus.md) +- [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) + +## Open Questions + +- Why did the compass point to him? +- What was the ring with purple gem and runes? diff --git a/data/6-wiki/people/envoi.md b/data/6-wiki/people/envoi.md new file mode 100644 index 0000000..fe5b59b --- /dev/null +++ b/data/6-wiki/people/envoi.md @@ -0,0 +1,51 @@ +--- +title: Envoi +type: person +aliases: + - Enoi + - Enoin + - The Mage + - Visage Envoi +first_seen: day-05 +last_updated: day-16 +sources: + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md +--- + +# Envoi + +## Summary + +Envoi, also uncertainly recorded as Enoi or Enoin, was one of the figures who made the [Barrier](../concepts/barrier.md), a likely father of [Joy](joy.md), and a source of containment tampering tied to the first crack. + +## Known Details + +- He appears as a well-groomed tiefling in a picture holding a baby girl. +- Observatory clues connect him to Joy, moon observation, rings, and repeated attempts to bring Joy back. +- Brutor's later lore says Envoi tampered with a containment device for his own means and that something happening to Envoi could have caused the first crack. +- Envoi wore five rings; one small ring was found with text about a sacrifice made to live eternal, father and daughter. +- A boxed note possibly records `Winter Roses?` as Envoi's password. + +## Timeline + +- `day-05`: The party begins uncovering Envoi through observatory imagery and Joy clues. +- `day-06`: Joy's rooms, rings, clone evidence, and observatory memories deepen his connection to Joy. +- `day-15`: Brutor's lore implicates Envoi in containment tampering and the first crack. +- `day-16`: The hidden lab shows Envoi memories, rings, and Barrier history. + +## Related Entries + +- [Joy](joy.md) +- [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md) +- [Barrier Observatory](../places/barrier-observatory.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Tri-moon Shard](../items/tri-moon-shard.md) + +## Open Questions + +- Was Envoi definitely Joy's father? +- What did the five rings do? +- Did his attempt to save Joy damage the Barrier? diff --git a/data/6-wiki/people/freeport-baroness.md b/data/6-wiki/people/freeport-baroness.md new file mode 100644 index 0000000..7b10282 --- /dev/null +++ b/data/6-wiki/people/freeport-baroness.md @@ -0,0 +1,41 @@ +--- +title: The Freeport Baroness +type: person +aliases: + - Baroness + - Baroness [Kavaliliere] +first_seen: day-20 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-20.md +--- + +# The Freeport Baroness + +## Summary + +The Freeport Baroness is the reclusive ruler of [Freeport](../places/freeport.md), connected to predecessor portraits, old friend [Valenth Cardonald](valenth-cardonald.md), anti-Cult actions, and laboratory access. + +## Known Details + +- She wears or is associated with a predecessor necklace motif. +- She loaned forces for the shield crystal mission. +- She knew Velenth/Valenth Cardonald and was shaken by revelations about her. +- She provided lab code or permission and removed things from a sheet because she did not approve of the Cult. +- Her succession resembles Heartwall family secrecy, but she was said to be similar to Lady Hathwall while not being a dragon. + +## Timeline + +- `day-20`: The party meets her in Freeport, gains support, and discusses Valenth/Velenth and the Cult. + +## Related Entries + +- [Freeport](../places/freeport.md) +- [Valenth Cardonald](valenth-cardonald.md) +- [The Pact](../factions/the-pact.md) +- [Shield Crystal Mission](../events/shield-crystal-mission.md) + +## Open Questions + +- Is the Baroness immortal, disguised, possessed, reincarnated, or an office maintained through magic? +- What exactly does she know about the Cult and laboratories? diff --git a/data/6-wiki/people/garadwal.md b/data/6-wiki/people/garadwal.md new file mode 100644 index 0000000..d13db49 --- /dev/null +++ b/data/6-wiki/people/garadwal.md @@ -0,0 +1,53 @@ +--- +title: Garadwal +type: person or imprisoned being +aliases: + - Guardwel + - Terror of the Sands + - nightmare of the darkness +first_seen: day-01 +last_updated: day-21 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-21.md +--- + +# Garadwal + +## Summary + +Garadwal, also recorded as Guardwel, is a major imprisoned threat tied to the [Barrier](../concepts/barrier.md), the Prison of the Sands, void lore, sand, earth, fire, and later cold/void dreams. + +## Known Details + +- Tales describe him as the Terror of the Sands, nightmare of the darkness, and a being that would consume souls. +- Early Everchard horror connected him to a sphinx that learned dark magic and experimented on itself. +- [Brutor Ruby Eye](brutor-ruby-eye.md) called him the only void they could find, one of eight whose escape would weaken the Barrier, and someone the wizards agreed needed containment. +- Elementals later described Garadwal as their master and said he was associated with sand, earth, and fire. +- He was said to have been buried north of Aegis-on-Sands and imprisoned in the Prison of the Sands. +- Wrath/Kolin was asked to search for Garadwal at Black Scale. + +## Timeline + +- `day-01`: Garadwal is named after Malcolm Donovan is found magically altered. +- `day-06`: Musher refers to a master and pact context connected to Garadwal. +- `day-14`: Elementals describe Garadwal as their master and connect him to elemental imprisonment. +- `day-15`: Brutor's lore frames Garadwal as a void prisoner whose escape weakens the Barrier. +- `day-21`: Cold dreams, void language, and white dragonscale clues may connect back to Garadwal. + +## Related Entries + +- [Barrier](../concepts/barrier.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Black Scales](../factions/black-scales.md) + +## Open Questions + +- Is Garadwal a sphinx, void being, elemental master, prisoner, or a conflation of several accounts? +- What are the other seven beings or poles connected to him? +- Has he escaped, partially escaped, or only influenced agents from prison? diff --git a/data/6-wiki/people/infestus.md b/data/6-wiki/people/infestus.md new file mode 100644 index 0000000..23f4dd9 --- /dev/null +++ b/data/6-wiki/people/infestus.md @@ -0,0 +1,45 @@ +--- +title: Infestus +type: person +aliases: + - Black Dragon + - black dragon +first_seen: day-14 +last_updated: day-17 +sources: + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md +--- + +# Infestus + +## Summary + +Infestus is a black dragon tied to the [Black Scales](../factions/black-scales.md), black dragonborn agents, acid, storms, insects, and conflict with [Brutor Ruby Eye](brutor-ruby-eye.md). + +## Known Details + +- Basalisk identified the Black Scales as mercenaries working for Infestus. +- Black dragonborn with mosquito shields claimed Brutor's lab for their master. +- Infestus or the black dragon wanted the skull of Alsafaur, described as his son. +- A storm and insects accompanied black dragon activity, and the Barrier showed something like eight massive claws. +- Brutor may have been killed by the black dragon. + +## Timeline + +- `day-14`: Infestus is named as the black dragon behind the Black Scales. +- `day-16`: Black dragonborn agents, Errol, Alsafaur's skull, storm, and insect signs connect him to the hidden lab. +- `day-17`: The broader council and shipment threads keep Infestus relevant. + +## Related Entries + +- [Black Scales](../factions/black-scales.md) +- [Hidden Laboratory](../places/hidden-laboratory.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) + +## Open Questions + +- What does Infestus want from the Barrier and void creatures? +- Can crystals on dragon scales intentionally breach or part the Barrier? diff --git a/data/6-wiki/people/joy.md b/data/6-wiki/people/joy.md new file mode 100644 index 0000000..e61168e --- /dev/null +++ b/data/6-wiki/people/joy.md @@ -0,0 +1,46 @@ +--- +title: Joy +type: person +aliases: + - invisible Joy +first_seen: day-05 +last_updated: day-16 +sources: + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-16.md +--- + +# Joy + +## Summary + +Joy was a tiefling child connected to [Envoi](envoi.md), the [Barrier Observatory](../places/barrier-observatory.md), clone research, rings, repeated graves, and later invisible pain near the Barrier. + +## Known Details + +- A vase reads, `part of me can be with you while you study all my love - Joy`. +- A hidden ring in Mr Snuffles reads: `a pact in darkness made in sorrow to bring (no sharpness) back Joy`. +- Joy's diary records that she was bed-bound, cared for by robots, terminally ill, and disturbed by Daddy's creepy friend asking about the rings. +- Six graves were all marked Joy, with clone-spell research nearby. +- Dirk later saw or heard invisible Joy saying they were in pain and that it burned, asking for help. + +## Timeline + +- `day-05`: Joy is introduced through observatory visions, images, a teddy ring, and inscriptions. +- `day-06`: Her diary, graves, clone chambers, and medical clues reveal repeated attempts to preserve or restore her. +- `day-14`: Invisible Joy appears to Dirk in pain. +- `day-16`: Memories connect Joy directly to Envoi and alarm responses. + +## Related Entries + +- [Envoi](envoi.md) +- [Rings of Joy, Envoi, and Dirk](../items/rings-of-joy-envoi-and-dirk.md) +- [Barrier Observatory](../places/barrier-observatory.md) + +## Open Questions + +- Which Joy was original? +- Was Joy poisoned by Slowbane or harmed by shield-crystal-like sickness? +- Is Joy's soul trapped, cloned, divided, or otherwise bound by the pact? diff --git a/data/6-wiki/people/kiendra.md b/data/6-wiki/people/kiendra.md new file mode 100644 index 0000000..e1983dd --- /dev/null +++ b/data/6-wiki/people/kiendra.md @@ -0,0 +1,38 @@ +--- +title: Kiendra +type: person +first_seen: day-20 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-22.md +--- + +# Kiendra + +## Summary + +Kiendra is the leader of [Dunhold/Dunbold Cache](../places/dunhold-dunbold-cache.md), owner of a stolen scepter conch, and a rescued captive from the underwater shield crystal site. + +## Known Details + +- She was believed killed or lost before the party learned her conch had been taken. +- The party sensed her in a cavern but received no response. +- She was rescued very weak and tortured during the shield crystal mission. + +## Timeline + +- `day-20`: Kiendra's loss and stolen conch become part of the Pact and Sahuagin crisis. +- `day-22`: The party rescues her near the underwater shield crystal. + +## Related Entries + +- [Dunhold/Dunbold Cache](../places/dunhold-dunbold-cache.md) +- [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) +- [Shield Crystal Mission](../events/shield-crystal-mission.md) +- [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) + +## Open Questions + +- What did her captors learn from her? +- What does she know about the shield crystal site and Excellence? diff --git a/data/6-wiki/people/malcolm-donovan.md b/data/6-wiki/people/malcolm-donovan.md new file mode 100644 index 0000000..3402566 --- /dev/null +++ b/data/6-wiki/people/malcolm-donovan.md @@ -0,0 +1,43 @@ +--- +title: Malcolm Donovan +type: person +aliases: + - Malcolm +first_seen: day-01 +last_updated: day-04 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md +--- + +# Malcolm Donovan + +## Summary + +Malcolm Donovan was a man from Albec whose wife came looking for him and whose altered body made Everchard's magical horror undeniable. + +## Known Details + +- He came from Albec for work and had been seen putting up fences at a farm. +- His birthmark was on the back of his right hand. +- The party found him with a stitched face, missing rows of teeth, bone-splinted fingers, and a split tongue. +- Magic had clearly been used to alter him. +- A later half-elf steward named Malcolm in the Earl's jail may or may not be the same person. + +## Timeline + +- `day-01`: Malcolm is found altered, and the birthmark confirms his identity. +- `day-03`: Malcolm's wife and town memory gaps remain part of the crisis. +- `day-04`: A half-elf steward Malcolm creates uncertainty about identity or duplication. + +## Related Entries + +- [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) +- [Garadwal](garadwal.md) +- [Everchurch/Everchard](../places/everchurch-everchard.md) + +## Open Questions + +- Are Malcolm Donovan and the Earl's half-elf steward Malcolm the same person? +- Who altered Malcolm, and by what process? diff --git a/data/6-wiki/people/pythus-aleyvarus.md b/data/6-wiki/people/pythus-aleyvarus.md new file mode 100644 index 0000000..c6cb89a --- /dev/null +++ b/data/6-wiki/people/pythus-aleyvarus.md @@ -0,0 +1,40 @@ +--- +title: Pythus Aleyvarus +type: person +aliases: + - Pythas + - Pythus +first_seen: day-16 +last_updated: day-17 +sources: + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md +--- + +# Pythus Aleyvarus + +## Summary + +Pythus Aleyvarus is a blue dragon in human desert robes, a collector of magical trinkets, and current holder or reader of dangerous books from Brutor's lab. + +## Known Details + +- He claimed not to work for the black dragon. +- He took the creepy skin book and Celestial book. +- He was later scryed near Salvation reading the skin book. +- He is associated with blue dragons, magical collecting, and desert-edge activity. + +## Timeline + +- `day-16`: Pythus takes dangerous books from the hidden lab context. +- `day-17`: He is seen by scrying near Salvation reading the skin book. + +## Related Entries + +- [Noctus Cairinium Grimoire](../items/noctus-cairinium-grimoire.md) +- [Hidden Laboratory](../places/hidden-laboratory.md) + +## Open Questions + +- Is Pythus an ally, opportunist, or threat? +- What has he learned from the skin book? diff --git a/data/6-wiki/people/shandra.md b/data/6-wiki/people/shandra.md new file mode 100644 index 0000000..3d50384 --- /dev/null +++ b/data/6-wiki/people/shandra.md @@ -0,0 +1,31 @@ +--- +title: Shandra +type: person +first_seen: day-20 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-20.md +--- + +# Shandra + +## Summary + +Shandra is a [Pact](../factions/the-pact.md) leader in Turtle Point who explained Pact responsibilities and entrusted or gave the Pact Scepter to the party. + +## Known Details + +- She identified a six-armed creature as an Excellence. +- She explained that the Pact protects people in exchange for protecting the Barrier. +- She was connected to Tiana, Kiendra, Sahuagin, and Excellence threats. + +## Timeline + +- `day-20`: Shandra explains the Pact, the Excellence threat, and Pact artifacts. + +## Related Entries + +- [The Pact](../factions/the-pact.md) +- [Pact Scepter and Scepter Conches](../items/pact-scepter-and-scepter-conches.md) +- [Excellences](../concepts/excellences.md) +- [Turtle Point](../places/turtle-point.md) diff --git a/data/6-wiki/people/the-chorus.md b/data/6-wiki/people/the-chorus.md new file mode 100644 index 0000000..8f03057 --- /dev/null +++ b/data/6-wiki/people/the-chorus.md @@ -0,0 +1,45 @@ +--- +title: The Chorus +type: person or title +aliases: + - bird lady + - pigeon lady +first_seen: day-02 +last_updated: day-07 +sources: + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-07.md +--- + +# The Chorus + +## Summary + +The Chorus is an eighty-ish woman, title, or supernatural role in the swamp, surrounded by birds and unusually resistant to Everchard memory alteration. + +## Known Details + +- She was blindfolded with her mouth sewn shut and lived in a swamp hut. +- She had dreams and said hurt was not her own. +- She knew memory magic changed memories into convenient forms. +- Sarah Thornhollows had been with her and was harder to erase from memory. +- Her birds followed the party back and were harmed by Bughunter's gas. + +## Timeline + +- `day-02`: The party's Thornhollows investigation points toward her. +- `day-03`: She explains memory alteration and Sarah's resistance. +- `day-07`: She is connected to looking after remaining people near the Barrier. + +## Related Entries + +- [The Thornhollows Family](thornhollows-family.md) +- [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) +- [Bushhunter/Bughunter](bushhunter-bughunter.md) + +## Open Questions + +- Is The Chorus a person, title, organization, or collective? +- Who was her apprentice, and where did they go? diff --git a/data/6-wiki/people/thornhollows-family.md b/data/6-wiki/people/thornhollows-family.md new file mode 100644 index 0000000..bcb23ca --- /dev/null +++ b/data/6-wiki/people/thornhollows-family.md @@ -0,0 +1,53 @@ +--- +title: The Thornhollows Family +type: family +aliases: + - John Thornhollows + - Sarah Thornhollows + - Annabel + - Annabella + - Isabelle + - Isabella + - Clarabella + - Clara bella + - Cleara +first_seen: day-01 +last_updated: day-07 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-07.md +--- + +# The Thornhollows Family + +## Summary + +The Thornhollows family is central to the first Everchard mystery: missing pigs, changed records, memory gaps, Sarah's connection to [The Chorus](the-chorus.md), and the altered or missing daughters. + +## Known Details + +- Old John Thornhollows hired the party after pigs vanished, but the remembered and ledgered numbers did not match. +- Sarah Thornhollows had left about one month before the farm investigation and had been with The Chorus, making her harder to erase from memory. +- The daughters' names vary as Annabel/Annabella, Isabelle/Isabella, and Clarabella/Clara bella/Cleara. +- Isabella was later brought back and restored. +- Cleara gave the party a tonic allowing hit dice, identified or described as Potion of Recovery or Succour. + +## Timeline + +- `day-01`: John hires the party and the missing-pig inconsistency appears. +- `day-02`: Farm census and family details deepen the record inconsistency. +- `day-03`: Sarah and the daughters connect to memory magic and wagon victims. +- `day-07`: Isabella returns to town restored. + +## Related Entries + +- [Everchurch/Everchard](../places/everchurch-everchard.md) +- [The Chorus](the-chorus.md) +- [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) + +## Open Questions + +- Was Sarah the woman with too many teeth among the wagon victims? +- Are Clarabella, Clara bella, and Cleara the same person? diff --git a/data/6-wiki/people/tiana-taina.md b/data/6-wiki/people/tiana-taina.md new file mode 100644 index 0000000..e9d8f51 --- /dev/null +++ b/data/6-wiki/people/tiana-taina.md @@ -0,0 +1,40 @@ +--- +title: Tiana/Taina +type: person +aliases: + - Tiana + - Taina +first_seen: day-20 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Tiana/Taina + +## Summary + +Tiana or Taina is a [Pact](../factions/the-pact.md) leader in [Freeport](../places/freeport.md) who helped coordinate forces for the shield crystal mission. + +## Known Details + +- The party met her at the Siren & Garter in Freeport. +- She coordinated or provided merfolk guard support. +- Taina's underwater group had their guest shells dispelled and was attacked during the shield crystal mission. + +## Timeline + +- `day-20`: The party meets Tiana in Freeport. +- `day-22`: Taina's underwater group is attacked during the shield crystal operation. + +## Related Entries + +- [The Pact](../factions/the-pact.md) +- [Freeport](../places/freeport.md) +- [Shield Crystal Mission](../events/shield-crystal-mission.md) + +## Open Questions + +- Which spelling is correct: Tiana or Taina? diff --git a/data/6-wiki/people/valenth-cardonald.md b/data/6-wiki/people/valenth-cardonald.md new file mode 100644 index 0000000..b45bbea --- /dev/null +++ b/data/6-wiki/people/valenth-cardonald.md @@ -0,0 +1,37 @@ +--- +title: Valenth Cardonald +type: person +aliases: + - Velenth Cardonald +first_seen: day-20 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-20.md +--- + +# Valenth Cardonald + +## Summary + +Valenth or Velenth Cardonald was an old friend of the [Freeport Baroness](freeport-baroness.md) who worked for her before coming willingly and wanted to transfer herself into an object. + +## Known Details + +- The Baroness knew Velenth/Valenth Cardonald and was shaken by revelations about her. +- Valenth wanted to transfer herself into an object. +- This resembles another account that Ruby Eye's best friend wanted to craft herself into something and continue in that form. + +## Timeline + +- `day-20`: The party discusses Valenth/Velenth with the Freeport Baroness and receives laboratory code or permission. + +## Related Entries + +- [The Freeport Baroness](freeport-baroness.md) +- [Brutor Ruby Eye](brutor-ruby-eye.md) +- [Hidden Laboratory](../places/hidden-laboratory.md) + +## Open Questions + +- Is Valenth the same person as Ruby Eye's best friend? +- Did the object-transfer plan succeed, and if so what object contains her? diff --git a/data/6-wiki/places/barrier-observatory.md b/data/6-wiki/places/barrier-observatory.md new file mode 100644 index 0000000..05d9bbd --- /dev/null +++ b/data/6-wiki/places/barrier-observatory.md @@ -0,0 +1,48 @@ +--- +title: Barrier Observatory +type: place +aliases: + - Observatory + - stone observatory building + - marble dome +first_seen: day-05 +last_updated: day-14 +sources: + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-14.md +--- + +# Barrier Observatory + +## Summary + +The Barrier Observatory is an ancient stone and marble observatory built in tandem with the [Barrier](../concepts/barrier.md), containing moon research, Joy's rooms, clone chambers, directional shifts, and links to prisons and laboratories. + +## Known Details + +- It is about 1,000 years old and was built to observe the moon and Barrier. +- It has a marble dome pressed against the Barrier, a large telescope or golden spyglass, Tri-moon research, and missing Astronomy `T` shelf material. +- Its layout shifts by campaign directions: earthwise, firewise, airwise, and waterwise. +- It contains Joy's room, graves, clone chambers, lake caverns, a shrine, Core suits, and a teleportation or summoning circle. +- An underground prison entrance later resembled a room previously seen in the observatory. + +## Timeline + +- `day-05`: The party reaches the observatory during Barrier attacks. +- `day-06`: The party explores Joy, clone, moon, and Musher clues. +- `day-14`: Prison architecture resembles observatory areas. + +## Related Entries + +- [Joy](../people/joy.md) +- [Envoi](../people/envoi.md) +- [Tri-moon Shard](../items/tri-moon-shard.md) +- [Salt Dragon Prison](salt-dragon-prison.md) +- [Hidden Laboratory](hidden-laboratory.md) + +## Open Questions + +- Why does the observatory change by direction? +- What remains active in the clone and Core systems? diff --git a/data/6-wiki/places/dunhold-dunbold-cache.md b/data/6-wiki/places/dunhold-dunbold-cache.md new file mode 100644 index 0000000..49f5474 --- /dev/null +++ b/data/6-wiki/places/dunhold-dunbold-cache.md @@ -0,0 +1,41 @@ +--- +title: Dunhold/Dunbold Cache +type: place +aliases: + - Dunhold Cache + - Dunbold Cache +first_seen: day-20 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Dunhold/Dunbold Cache + +## Summary + +Dunhold or Dunbold Cache is Kiendra's domain and a location near the shield crystal and Excellence crisis. + +## Known Details + +- Kiendra was leader of Dunhold/Dunbold Cache. +- The area may be connected to the origin or movement of an Excellence. +- The party moored near Dunbold Cache after the shield crystal battle. + +## Timeline + +- `day-20`: Kiendra and her stolen scepter conch connect the place to the Pact crisis. +- `day-22`: The party moors nearby after rescuing Kiendra and fighting at the shield crystal site. + +## Related Entries + +- [Kiendra](../people/kiendra.md) +- [Shield Crystal Mission](../events/shield-crystal-mission.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Which spelling is correct: Dunhold Cache or Dunbold Cache? +- What is the current state of the Cache after Kiendra's captivity? diff --git a/data/6-wiki/places/everchurch-everchard.md b/data/6-wiki/places/everchurch-everchard.md new file mode 100644 index 0000000..002306a --- /dev/null +++ b/data/6-wiki/places/everchurch-everchard.md @@ -0,0 +1,46 @@ +--- +title: Everchurch/Everchard +type: place +aliases: + - Everchurch + - Everchard +first_seen: day-01 +last_updated: day-11 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-11.md +--- + +# Everchurch/Everchard + +## Summary + +Everchurch, later also called Everchard, is a swampy orchard town where the campaign's first major memory-tampering crisis unfolded. + +## Known Details + +- The town has roughly three thousand people, fruit trees, orchards, cider breweries, woodland tours, light and dark woods, and a larger central manor house. +- One orchard bloomed in winter, with dark bark, blue leaves, deep red fruit, and oversized bees. +- Early locations included Cider Inn Cider, Thornhollows Farm, the jail, the [Hostel](hostel.md), the sheriff's office, the Earl's manor, and nearby swamp. +- The town suffered missing pigs, sheep, cats, rats, militia, homeless people, and altered townsfolk. +- After memories returned, the Earl disappeared, the sheriff took over, and public announcements framed the Earl as villainous and ousted. + +## Timeline + +- `day-01`: The party begins in Everchurch/Everchard and uncovers memory instability. +- `day-03`: The crisis expands to wagons, transformed victims, and militia involvement. +- `day-04`: The town begins coordinated recovery. +- `day-09`: Everchard remains panicky after restored memories. +- `day-11`: Later announcements describe the Earl as ousted. + +## Related Entries + +- [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) +- [Hostel](hostel.md) +- [Militia](../factions/militia.md) +- [The Thornhollows Family](../people/thornhollows-family.md) diff --git a/data/6-wiki/places/freeport.md b/data/6-wiki/places/freeport.md new file mode 100644 index 0000000..27608e5 --- /dev/null +++ b/data/6-wiki/places/freeport.md @@ -0,0 +1,36 @@ +--- +title: Freeport +type: place +first_seen: day-17 +last_updated: day-22 +sources: + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-22.md +--- + +# Freeport + +## Summary + +Freeport is a busy trade city with no trade taxes, ruled by the reclusive Baroness and hosting Pact leadership, shops, lodging, an auction house, and forces for the shield crystal mission. + +## Known Details + +- The Baroness rules Freeport and loaned forces for the shield crystal operation. +- The party met Tiana/Taina at the Siren & Garter. +- Locations include Pirates Pearls Plundered, Esmerelda's shop, Bugbear, Drunken Duck, and the Freeport auction house. +- Zinquiss planned to sell the mother-of-pearl elemental chariot at the auction house in seven days. + +## Timeline + +- `day-17`: Freeport is named as a contact destination. +- `day-20`: The party works with Freeport's Baroness and Pact leader. +- `day-22`: The chariot sale is planned at the Freeport auction house. + +## Related Entries + +- [The Freeport Baroness](../people/freeport-baroness.md) +- [Tiana/Taina](../people/tiana-taina.md) +- [The Pact](../factions/the-pact.md) +- [Mother-of-Pearl Elemental Chariot](../items/mother-of-pearl-elemental-chariot.md) diff --git a/data/6-wiki/places/hidden-laboratory.md b/data/6-wiki/places/hidden-laboratory.md new file mode 100644 index 0000000..dcfbe3d --- /dev/null +++ b/data/6-wiki/places/hidden-laboratory.md @@ -0,0 +1,44 @@ +--- +title: Hidden Laboratory +type: place +aliases: + - Brutor's laboratory + - old lab + - crater lab +first_seen: day-16 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-20.md +--- + +# Hidden Laboratory + +## Summary + +The hidden laboratory opened by `Spinal` preserves [Brutor Ruby Eye](../people/brutor-ruby-eye.md)'s research, artifacts, memories, void containment, and Barrier-system plans. + +## Known Details + +- It contained a Tor lecture room, teleport circle, memory orbs, museum, pylon plans, void room, and Barrier devices. +- It preserved Brutor's hand and blood-based protections. +- Memories showed the Barrier, Grand Towers, Envoi, Brutor, the Pact, a purple rock, and possible cover-ups. +- A later old lab in a crater was found but inaccessible; it may or may not be the same laboratory network. + +## Timeline + +- `day-16`: The party enters the lab, releases or contacts a void creature, encounters black dragonborn, and recovers major lore. +- `day-20`: The Baroness provides lab-related code or permission for another site. + +## Related Entries + +- [Brutor Ruby Eye](../people/brutor-ruby-eye.md) +- [Envoi](../people/envoi.md) +- [Infestus](../people/infestus.md) +- [Noctus Cairinium Grimoire](../items/noctus-cairinium-grimoire.md) +- [Barrier](../concepts/barrier.md) + +## Open Questions + +- Are the hidden lab and crater lab the same site, linked sites, or separate facilities? +- What remaining systems can repair or further damage the Barrier? diff --git a/data/6-wiki/places/hostel.md b/data/6-wiki/places/hostel.md new file mode 100644 index 0000000..fd7cec7 --- /dev/null +++ b/data/6-wiki/places/hostel.md @@ -0,0 +1,44 @@ +--- +title: Hostel +type: place +aliases: + - "Hostel" +first_seen: day-01 +last_updated: day-04 +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md +--- + +# Hostel + +## Summary + +The Hostel in [Everchurch/Everchard](everchurch-everchard.md) was nominally built for homeless people but became central to abductions, memory rewriting, anti-tax funding, and transformed victims. + +## Known Details + +- It was built the previous summer to house homeless people, but was also being let out, angering inns. +- Funds from it appeared connected to an anti-tax system. +- Its location and identity became confused with the jail. +- Gregory remembered being taken by militia to a big militia house or hostel-like jail cell. +- Wagons and about ten townsfolk in cells were connected to it. + +## Timeline + +- `day-01`: The hostel is introduced as a civic project with financial irregularities. +- `day-03`: Wagon victims and militia links expose it as a holding site. +- `day-04`: Rescued victims and recovered memories clarify parts of its role. + +## Related Entries + +- [Everchard Memory Tampering](../concepts/everchard-memory-tampering.md) +- [Militia](../factions/militia.md) +- [Everchurch/Everchard](everchurch-everchard.md) + +## Open Questions + +- Who controlled the Hostel operation? +- Was the militia house distinct from the Hostel or another memory-altered description of it? diff --git a/data/6-wiki/places/salt-dragon-prison.md b/data/6-wiki/places/salt-dragon-prison.md new file mode 100644 index 0000000..804bcae --- /dev/null +++ b/data/6-wiki/places/salt-dragon-prison.md @@ -0,0 +1,41 @@ +--- +title: Salt Dragon Prison +type: place +aliases: + - underground prison + - underground structure +first_seen: day-14 +last_updated: day-14 +sources: + - data/4-days-cleaned/day-14.md +--- + +# Salt Dragon Prison + +## Summary + +The Salt Dragon Prison is an ancient underground structure below the Seaward quarry where a massive salt dragon is contained inside a smaller barrier. + +## Known Details + +- The structure may be about 1,000 years old. +- It was entered behind missing wooden panels and included corridors leading to a huge metal dragon-head ring door. +- A massive salt dragon inside a smaller barrier had sweated salt into the earth for twenty years. +- Copper pylons had been removed, and runes were barely visible under salt. +- The [Underbelly](../factions/underbelly.md) was trying to free the salt dragon and wanted the Justicar kept out. + +## Timeline + +- `day-14`: The party tours or investigates the prison, learns of elemental batteries, and meets local factions. + +## Related Entries + +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Seaward](seaward.md) +- [Underbelly](../factions/underbelly.md) +- [Barrier](../concepts/barrier.md) + +## Open Questions + +- Is the salt dragon one of the eight beings powering the Barrier? +- Who removed the copper pylons, and what changed twenty years earlier? diff --git a/data/6-wiki/places/seaward.md b/data/6-wiki/places/seaward.md new file mode 100644 index 0000000..cc88c53 --- /dev/null +++ b/data/6-wiki/places/seaward.md @@ -0,0 +1,51 @@ +--- +title: Seaward +type: place +first_seen: day-09 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-11.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md +--- + +# Seaward + +## Summary + +Seaward is a structured city with mage Judicators, council politics, a Stonemasons Guild, water scarcity, a nearby shield pylon, and links to elemental prison failures. + +## Known Details + +- Basalik warned the party to stay on the good side of mage Judicators in Seaward. +- The city is circular with a colosseum-like racing centre and ring-road structure. +- Fresh water was scarce, water elementals were blamed, and deputies were found drowned near cliffs with fresh water. +- The shield pylon outside its walls flickered and appeared to stabilize a wider disturbance. +- Elementarium/Clementarium admitted the pylon was being interfered with and wanted the Justicar gone. + +## Timeline + +- `day-11`: Seaward's water issue, politics, and Barrier flickers appear. +- `day-12`: The party investigates council conflict, drowned deputies, and murders. +- `day-13`: Barrier flickers are studied near the pylon. +- `day-14`: The trail leads below the quarry to the salt dragon prison. +- `day-15`: Elementharium/Clementarium discusses quasi-elementals and Ruby Eye's skull. + +## Related Entries + +- [Mage Judicators/Justicars](../factions/mage-judicators-justicars.md) +- [Salt Dragon Prison](salt-dragon-prison.md) +- [Elemental Prisons](../concepts/elemental-prisons.md) +- [Shield Crystals](../items/shield-crystals.md) + +## Open Questions + +- Who is interfering with the pylon? +- Which council members are corrupt, compromised, or merely political? diff --git a/data/6-wiki/places/turtle-point.md b/data/6-wiki/places/turtle-point.md new file mode 100644 index 0000000..a0c3500 --- /dev/null +++ b/data/6-wiki/places/turtle-point.md @@ -0,0 +1,39 @@ +--- +title: Turtle Point +type: place +first_seen: day-19 +last_updated: day-20 +sources: + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md +--- + +# Turtle Point + +## Summary + +Turtle Point is the only town on its isle, home to turtle men, the Great Turtle shrine, Pact barracks, underwater docks, and the start of the Sahuagin and Kiendra conch crisis. + +## Known Details + +- Locals believe they live on the Great Turtle's back. +- Docks can be underwater, and Tri-moon water rises high. +- The Great Turtle shrine and accordsmouth/merfolk history connect the town to Barrier-era refuge lore. +- Pact leader Shandra operates there. + +## Timeline + +- `day-19`: The party arrives after pirate attacks and learns Great Turtle lore. +- `day-20`: The Pact and Sahuagin threads deepen from Turtle Point. + +## Related Entries + +- [The Pact](../factions/the-pact.md) +- [Shandra](../people/shandra.md) +- [Sahuagin/Fish Men](../factions/sahuagin-fish-men.md) +- [Excellences](../concepts/excellences.md) + +## Open Questions + +- Can the Great Turtle still be contacted or moved? +- How will the Tri-moon affect the town's flooding? diff --git a/data/6-wiki/sources.md b/data/6-wiki/sources.md new file mode 100644 index 0000000..cbb36a1 --- /dev/null +++ b/data/6-wiki/sources.md @@ -0,0 +1,51 @@ +--- +title: Sources +type: index +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-10.md + - data/4-days-cleaned/day-11.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-18.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Sources + +- `data/4-days-cleaned/day-01.md`: [Everchurch/Everchard](places/everchurch-everchard.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), [Garadwal](people/garadwal.md), [Malcolm Donovan](people/malcolm-donovan.md), [The Thornhollows Family](people/thornhollows-family.md), [Militia](factions/militia.md). +- `data/4-days-cleaned/day-02.md`: [The Thornhollows Family](people/thornhollows-family.md), [The Chorus](people/the-chorus.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). +- `data/4-days-cleaned/day-03.md`: [Hostel](places/hostel.md), [Militia](factions/militia.md), [Bushhunter/Bughunter](people/bushhunter-bughunter.md), [Everchard Memory Tampering](concepts/everchard-memory-tampering.md). +- `data/4-days-cleaned/day-04.md`: [Everchurch/Everchard](places/everchurch-everchard.md), [Hostel](places/hostel.md), [Militia](factions/militia.md). +- `data/4-days-cleaned/day-05.md`: [Barrier Observatory](places/barrier-observatory.md), [Barrier](concepts/barrier.md), [Rings of Joy, Envoi, and Dirk](items/rings-of-joy-envoi-and-dirk.md). +- `data/4-days-cleaned/day-06.md`: [Joy](people/joy.md), [Envoi](people/envoi.md), [Tri-moon Shard](items/tri-moon-shard.md), [Barrier Observatory](places/barrier-observatory.md). +- `data/4-days-cleaned/day-07.md`: [Militia](factions/militia.md), [Barrier](concepts/barrier.md), [Everchurch/Everchard](places/everchurch-everchard.md). +- `data/4-days-cleaned/day-08.md`: skipped because no cleaned day file exists. +- `data/4-days-cleaned/day-09.md`: [Everchurch/Everchard](places/everchurch-everchard.md), [Barrier Observatory](places/barrier-observatory.md). +- `data/4-days-cleaned/day-10.md`: [Timeline](timeline.md), [Open Threads](open-threads.md). +- `data/4-days-cleaned/day-11.md`: [Seaward](places/seaward.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md), [Barrier](concepts/barrier.md). +- `data/4-days-cleaned/day-12.md`: [Seaward](places/seaward.md), [Mage Judicators/Justicars](factions/mage-judicators-justicars.md). +- `data/4-days-cleaned/day-13.md`: [Seaward](places/seaward.md), [Shield Crystals](items/shield-crystals.md), [Barrier](concepts/barrier.md). +- `data/4-days-cleaned/day-14.md`: [Salt Dragon Prison](places/salt-dragon-prison.md), [Underbelly](factions/underbelly.md), [Elemental Prisons](concepts/elemental-prisons.md), [Black Scales](factions/black-scales.md). +- `data/4-days-cleaned/day-15.md`: [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Garadwal](people/garadwal.md), [Elemental Prisons](concepts/elemental-prisons.md). +- `data/4-days-cleaned/day-16.md`: [Hidden Laboratory](places/hidden-laboratory.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Envoi](people/envoi.md), [Infestus](people/infestus.md), [Pythus Aleyvarus](people/pythus-aleyvarus.md), [The Pact](factions/the-pact.md), [Noctus Cairinium Grimoire](items/noctus-cairinium-grimoire.md). +- `data/4-days-cleaned/day-17.md`: [The Pact](factions/the-pact.md), [Brutor Ruby Eye](people/brutor-ruby-eye.md), [Tri-moon Shard](items/tri-moon-shard.md). +- `data/4-days-cleaned/day-18.md`: [Timeline](timeline.md), [Open Threads](open-threads.md). +- `data/4-days-cleaned/day-19.md`: [Turtle Point](places/turtle-point.md), [Sahuagin/Fish Men](factions/sahuagin-fish-men.md), [Excellences](concepts/excellences.md). +- `data/4-days-cleaned/day-20.md`: [Freeport](places/freeport.md), [The Pact](factions/the-pact.md), [Kiendra](people/kiendra.md), [Shandra](people/shandra.md), [Tiana/Taina](people/tiana-taina.md), [Valenth Cardonald](people/valenth-cardonald.md), [The Freeport Baroness](people/freeport-baroness.md), [Pact Scepter and Scepter Conches](items/pact-scepter-and-scepter-conches.md). +- `data/4-days-cleaned/day-21.md`: [Tri-moon Countdown](events/tri-moon-countdown.md), [Shield Crystal Mission](events/shield-crystal-mission.md), [Garadwal](people/garadwal.md). +- `data/4-days-cleaned/day-22.md`: [Shield Crystal Mission](events/shield-crystal-mission.md), [Kiendra](people/kiendra.md), [Shield Crystals](items/shield-crystals.md), [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md), [Excellences](concepts/excellences.md). diff --git a/data/6-wiki/timeline.md b/data/6-wiki/timeline.md new file mode 100644 index 0000000..c77c135 --- /dev/null +++ b/data/6-wiki/timeline.md @@ -0,0 +1,51 @@ +--- +title: Timeline +type: index +sources: + - data/4-days-cleaned/day-01.md + - data/4-days-cleaned/day-02.md + - data/4-days-cleaned/day-03.md + - data/4-days-cleaned/day-04.md + - data/4-days-cleaned/day-05.md + - data/4-days-cleaned/day-06.md + - data/4-days-cleaned/day-07.md + - data/4-days-cleaned/day-09.md + - data/4-days-cleaned/day-10.md + - data/4-days-cleaned/day-11.md + - data/4-days-cleaned/day-12.md + - data/4-days-cleaned/day-13.md + - data/4-days-cleaned/day-14.md + - data/4-days-cleaned/day-15.md + - data/4-days-cleaned/day-16.md + - data/4-days-cleaned/day-17.md + - data/4-days-cleaned/day-18.md + - data/4-days-cleaned/day-19.md + - data/4-days-cleaned/day-20.md + - data/4-days-cleaned/day-21.md + - data/4-days-cleaned/day-22.md +--- + +# Timeline + +- `day-01`: The party begins in [Everchurch/Everchard](places/everchurch-everchard.md), investigates missing animals and people, discovers [Everchard Memory Tampering](concepts/everchard-memory-tampering.md), and links altered Malcolm Donovan to [Garadwal](people/garadwal.md). +- `day-02`: The Thornhollows farm investigation expands into giant frogs, changed records, missing pigs, and links between Sarah Thornhollows and [The Chorus](people/the-chorus.md). +- `day-03`: Wagon victims, animal-human beasts, militia involvement, and the [Hostel](places/hostel.md) reveal organized abductions and transformation work. +- `day-04`: The party recovers townsfolk, confronts militia ledger fraud and the Earl's missing documents, and stabilizes Everchard enough for outside contact. +- `day-05`: Tracks lead toward the [Barrier Observatory](places/barrier-observatory.md), a Barrier attack begins, and the party starts uncovering Joy, Envoi, and Tri-moon clues. +- `day-06`: Inside the observatory, the party finds Joy's rooms, clone evidence, rings, the moon research, and Musher's connection to Garadwal. +- `day-07`: The party returns rescued townsfolk to Everchard, coordinates with Thairwell militia, and confirms broader [Barrier](concepts/barrier.md) risk. +- `day-08`: No cleaned day file exists in this build. +- `day-09`: Everchard recovers from restored memories, Core returns damaged, and the party heads toward Seaward. +- `day-10`: At the Wayward Arms, the party encounters Yadris and Yadrin, Mirth, and signs of regional weirdness. +- `day-11`: Seaward's politics, water scarcity, pylon flickers, and reports of a wider Barrier crisis come into focus. +- `day-12`: The party investigates Seaward council conflict, drowned deputies, Isabella's murdered friends, and a skull-buying scheme. +- `day-13`: Barrier flickers near Seaward are tracked toward the quarry and cliff-side disturbance. +- `day-14`: The party enters the [Salt Dragon Prison](places/salt-dragon-prison.md), meets the [Underbelly](factions/underbelly.md), and learns of [Elemental Prisons](concepts/elemental-prisons.md), Garadwal, Salias, and the death dome. +- `day-15`: Elementharium/Clementarium explains quasi-elementals, and [Brutor Ruby Eye](people/brutor-ruby-eye.md) becomes a major source of containment lore. +- `day-16`: The party opens [Hidden Laboratory](places/hidden-laboratory.md), sees memories of Brutor, Envoi, the Pact, the Barrier, and the void creature, then faces Infestus's agents. +- `day-17`: A security council discusses the Barrier, the party receives Brutor's skull, and warrants and suspicious shipments complicate the response. +- `day-18`: The party travels toward Fairshaws/Fairport and the coast while the suspicious shipment thread continues. +- `day-19`: The party sails on the Pride of the Penta Cities, fights Kairbidius's pirates, and reaches Turtle Point. +- `day-20`: [The Pact](factions/the-pact.md), Freeport, the Baroness, Valenth/Velenth, Kiendra's stolen conch, and the shield crystal mission converge. +- `day-21`: Regional crises escalate around Highden, Heartmoor, Provincia, the Grand Towers, and the sea shield crystal operation. +- `day-22`: The underwater party fights at the [Shield Crystals](items/shield-crystals.md) site, rescues [Kiendra](people/kiendra.md), defeats an [Excellence](concepts/excellences.md), and recovers the [Mother-of-Pearl Elemental Chariot](items/mother-of-pearl-elemental-chariot.md). -
e9ea7d4Wiki skillsby Bas Mostert
.agents/skills/dnd-build-wiki/SKILL.md | 153 +++++++++++++++++++++++++++++ .agents/skills/dnd-notes-pipeline/SKILL.md | 12 ++- AGENTS.md | 5 +- 3 files changed, 167 insertions(+), 3 deletions(-)Show diff
diff --git a/.agents/skills/dnd-build-wiki/SKILL.md b/.agents/skills/dnd-build-wiki/SKILL.md new file mode 100644 index 0000000..1311959 --- /dev/null +++ b/.agents/skills/dnd-build-wiki/SKILL.md @@ -0,0 +1,153 @@ +# Skill: D&D Build Wiki + +Use this skill to ingest cleaned Pentacity campaign day narratives from `data/4-days-cleaned` into an interlinked Markdown wiki in `data/6-wiki`. + +This stage turns detailed cleaned narratives into durable, searchable wiki entries for people, places, factions, items, events, lore concepts, plot hooks, and any other recurring or useful campaign material. The wiki should work like a real wiki: pages link to related pages, existing entries accumulate new sourced facts over time, and the organization evolves to fit the campaign rather than forcing every entry into a fixed taxonomy. + +## Inputs + +- Cleaned day files: `data/4-days-cleaned/*.md` +- Existing wiki files, if any: `data/6-wiki/**/*.md` + +## Outputs + +- Interlinked Markdown files in `data/6-wiki/`. +- Category directories inside `data/6-wiki/` only when there is at least one actual entry to write there. +- Top-level index or cross-cutting index files only when useful for the current wiki content. + +## Core Rule + +Do not pre-create empty wiki directories or placeholder category files. Create `data/6-wiki` and any category directory only when writing real wiki content into it. + +The wiki taxonomy is dynamic. Decide categories from the extracted material as the wiki grows. Examples of valid categories include, but are not limited to, people, places, factions, items, events, quests and hooks, concepts, creatures, gods, religions, deaths, songs, stories, drinks, food, spells, effects, calendar terms, languages, inscriptions, economy, rewards, ships, vehicles, dreams, visions, and mysteries. + +Do not ask first, "which fixed category does this belong to?" Ask, "what would someone search for later, and where would they expect to find it?" + +## Idempotency + +- Build from cleaned day narratives, not raw pages or source images. +- Do not re-ingest a cleaned day whose facts are already reflected in the wiki unless the user explicitly asks, or unless the cleaned day was regenerated by the retrospective stage and the wiki entry needs to be updated from the changed cleaned source. +- If `data/6-wiki` does not exist and the user has not asked to build the wiki yet, do not create it. +- If a wiki entry already exists, update it with newly surfaced information instead of creating a duplicate page. +- Preserve existing sourced facts unless a later cleaned day clearly clarifies, supersedes, or corrects them. When facts conflict, preserve the conflict or uncertainty rather than silently choosing one. +- Do not delete wiki entries or categories unless the user explicitly asks. + +## Extraction Guidelines + +Extract durable, searchable material from each cleaned day, including: + +- Named people, aliases, titles, variant spellings, roles, descriptions, relationships, deaths, disappearances, and faction ties. +- Places, buildings, regions, landmarks, prisons, ships, routes, geography, local customs, defenses, economies, and notable sensory details. +- Factions, governments, crews, cults, religions, military groups, guilds, criminal groups, symbols, allegiances, enemies, and logistics. +- Items, rewards, currencies, magic items, mundane but important objects, inscriptions, passwords, scrolls, spell components, vehicles, and resources. +- Events, battles, rescues, bargains, discoveries, visions, dreams, performances, rituals, ceremonies, conversations, and major travel decisions. +- Plot hooks, unresolved mysteries, clues, rumours, warnings, open questions, suspicious contradictions, and promises or debts. +- Campaign-specific concepts such as calendar terms, directional terms, elemental prisons, barrier mechanics, spell effects, languages, songs, food, drink, folklore, and recurring phrases. + +Extract minor details when they may become useful later. Do not collapse them into vague summaries if a specific searchable fact can be preserved. + +## Page Creation and Categorization + +- Use a concise, stable filename based on the page title, lowercase and hyphenated, such as `garadwal.md` or `cider-inn-cider.md`. +- Place a page under a category directory only when that category naturally helps browsing. Create the category directory at the same time as the first real entry in it. +- If an entity reasonably belongs to multiple categories, choose the primary page location and link to it from related entries or indexes rather than duplicating the page. +- Use variant spellings and aliases in page metadata or an aliases section. Preserve forms such as `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, and `Velenth/Valenth` when uncertainty remains. +- If two names might refer to the same entity but the source is uncertain, do not merge them silently. Either keep separate pages that link to each other as possible matches, or make one clearly uncertain combined page. + +## Recommended Entry Structure + +Use this structure when it fits the entry. Adapt it for the content; do not force empty sections. + +```markdown +--- +title: <entry title> +type: <best current category or concept type> +aliases: + - <alias or variant spelling, if any> +first_seen: <day file stem, if known> +last_updated: <day file stem> +sources: + - data/4-days-cleaned/<day>.md +--- + +# <Entry Title> + +## Summary + +<Brief sourced summary.> + +## Known Details + +<Facts, preserving uncertainty.> + +## Timeline + +- `<day>`: <chronological fact sourced from that cleaned day.> + +## Related Entries + +- [Related page](../category/related-page.md) + +## Open Questions + +<Only unresolved questions that apply to this entry.> +``` + +## Linking Rules + +- Use relative Markdown links between related wiki entries. +- Link entity mentions in summaries, timelines, related-entry lists, and open-thread pages when the target entry exists or is being created in the same wiki pass. +- Prefer meaningful links over linking every repeated word. +- Keep links valid relative to the file location. +- If moving or renaming an entry would break existing links, update all affected links in the same pass. + +## Source References + +- Every factual entry must cite at least one cleaned day source in front matter or a Sources section. +- Use `data/4-days-cleaned/<day>.md` as the source path. Do not cite handwritten source images or raw page transcriptions from wiki entries unless the user explicitly asks for lower-level provenance. +- When adding new facts from a later day, add that cleaned day to `sources` and to the entry timeline. +- Do not mention retrospective context files in wiki entries. The wiki should reflect the cleaned day narratives after retrospective regeneration. + +## Cross-Cutting Indexes + +Create or update cross-cutting index files only when they contain real links or useful summaries. Possible indexes include: + +- `index.md` for a top-level entry point. +- `timeline.md` for chronological day-by-day links. +- `open-threads.md` for active mysteries and unresolved hooks. +- `aliases.md` for variant spellings, uncertain names, and redirects. +- `sources.md` for mapping cleaned day sources to wiki entries. + +These files are optional. Do not create empty indexes just because they are listed here. + +## Workflow + +1. Identify cleaned day files in `data/4-days-cleaned` that need wiki ingestion or re-ingestion. +2. Read the relevant cleaned day file and any existing wiki entries that may already represent the extracted entities. +3. Extract entities, concepts, events, hooks, and other searchable material using the dynamic taxonomy rules. +4. Decide whether each extracted subject should create a new entry, update an existing entry, or only appear as a linked mention inside another entry. +5. Create `data/6-wiki` and any needed category directories only when writing actual wiki files. +6. Write or update wiki entries with source references, timelines, uncertainty, and relative links. +7. Update useful indexes only if they now have real content. +8. Verify that links are relative and that no empty category directories or placeholder pages were created. + +## Quality Checks + +- Confirm every new or updated factual entry cites the cleaned day source that supports it. +- Confirm variant spellings and uncertainty are preserved. +- Confirm no facts were invented or normalized beyond the cleaned day source. +- Confirm new categories were created only because real entries needed them. +- Confirm related entries are linked with valid relative paths. +- Confirm existing entries were updated rather than duplicated when new information surfaced about the same subject. + +## Completion Report + +When finished, report: + +- Cleaned day files ingested or skipped. +- Wiki entries created. +- Wiki entries updated. +- Categories created because they received real entries. +- Indexes created or updated, if any. +- Existing entries skipped because they already contained the sourced facts. +- Ambiguous entities left separate or flagged for user review. diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index 05a28b8..41ffda9 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -8,6 +8,7 @@ Use this skill to coordinate the full Pentacity handwritten notes processing pip 2. `dnd-split-pages-into-days`: `data/2-pages` -> `data/3-days` 3. `dnd-clean-day-narrative`: `data/3-days` -> `data/4-days-cleaned` 4. `dnd-retrospective-context`: later pages/days -> sourced retrospective context and regenerated earlier cleaned days +5. `dnd-build-wiki`: `data/4-days-cleaned` -> interlinked Markdown wiki entries in `data/6-wiki` ## Core Rule @@ -17,6 +18,8 @@ The day-based stages intentionally lag one complete in-game day behind image/pag The retrospective process may rewrite earlier cleaned days with context obtained from later pages or days. If a later page clarifies an earlier day, record sourced context in `data/5-retrospective/<day>.txt`, then regenerate the affected cleaned day from the raw day plus that context. The Everchard breweries detail from page 4 is the model example: the regenerated Day 1 summary should simply include breweries in Everchard's description, without mentioning page 4, later context, or regeneration. If the target is unclear, record the pending update separately. +The wiki process ingests cleaned day narratives after cleaning and after any retrospective regenerations. It may create `data/6-wiki` and category directories only when writing real wiki content. Do not pre-create empty wiki category directories or placeholder files. + ## Workflow 1. Inspect the repository layout and confirm the expected data directories exist. @@ -29,8 +32,10 @@ The retrospective process may rewrite earlier cleaned days with context obtained 8. Run the cleaned narrative stage one confirmed-complete day at a time. 9. Review newly processed pages and cleaned days for retrospective facts that clarify earlier cleaned day narratives. 10. Run the retrospective context stage for clear, sourceable updates, including regenerating affected cleaned days. -11. Skip and report the latest apparent day if no following day marker exists yet. -12. Stop and ask the user whenever a page number, day boundary, completeness marker, retrospective target day, or filename would be uncertain. +11. Identify cleaned day files that need wiki ingestion or re-ingestion because they are newly created or were regenerated by retrospective context. +12. Run the wiki-building stage for those cleaned day files, letting it create only the categories and indexes needed for actual wiki entries. +13. Skip and report the latest apparent day if no following day marker exists yet. +14. Stop and ask the user whenever a page number, day boundary, completeness marker, retrospective target day, wiki entity merge, or filename would be uncertain. ## User Confirmation Triggers @@ -42,6 +47,7 @@ Ask the user before proceeding if: - A page appears to contain notes for multiple days but the split point is unclear. - The next-day marker needed to prove a day is complete is missing, illegible, or ambiguous and the user wants to override the lag rule. - A later clarification appears relevant to an earlier day but the correct target day is uncertain. +- Wiki ingestion finds two entries that may be the same entity, but the merge is uncertain from the cleaned day sources. - An output file already exists and would need to be overwritten. ## Quality Checks @@ -50,6 +56,7 @@ Ask the user before proceeding if: - After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. - After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.md` file and was confirmed complete before cleaning. - After retrospective updates, verify that each recorded context item has a source reference, does not duplicate an existing note, any affected cleaned day was regenerated from the raw day plus the retrospective context, and the cleaned day does not expose retrospective source references. +- After wiki building, verify that new or updated wiki entries cite cleaned day sources, use valid relative links, preserve uncertainty and variant spellings, and that no empty category directories or placeholder pages were created. - Report skipped files and the reason they were skipped. ## Final Report @@ -60,6 +67,7 @@ At the end of a pipeline run, report: - New raw day files created. - New cleaned day narratives created. - Retrospective context recorded, cleaned days regenerated, or updates skipped. +- Wiki entries created or updated, and categories or indexes created only when populated. - Files skipped because they already existed. - Latest apparent day skipped because the next-day marker has not appeared yet. - Any user confirmations still needed. diff --git a/AGENTS.md b/AGENTS.md index 0bf467a..ac4755e 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -9,6 +9,7 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - `data/3-days/`: one raw combined notes file per in-game day, named `data/3-days/<day>.md`. - `data/4-days-cleaned/`: one cleaned narrative file per in-game day, named `data/4-days-cleaned/<day>.md`. - `data/5-retrospective/`: sourced retrospective context files for later information that should be used when regenerating earlier cleaned days. +- `data/6-wiki/`: interlinked Markdown wiki entries extracted from cleaned day narratives. This directory is created and organized by the wiki-building stage when there is wiki content to write. - `.agents/skills/`: repeatable skills for each processing stage. ## General Rules @@ -24,6 +25,7 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - Preserve campaign-specific directional and calendar terms such as `airwise`, `earthwise`, `firewise`, `waterwise`, `Tri-moon`, `Timnor`, and `Tan`. - When cleaning notes into narrative, include details that may later become searchable wiki entries: people, places, factions, items, money, rewards, spell effects, dreams, clues, rumours, warnings, inscriptions, passwords, dates, travel decisions, combat outcomes, and open questions. - Day files in `data/3-days` and cleaned day files in `data/4-days-cleaned` must be proper Markdown: YAML-style metadata at the top, followed by Markdown headings for content sections. +- Wiki entries in `data/6-wiki` must be proper Markdown, use relative links between related entries, preserve source references to cleaned day files, and may use whatever category directories naturally fit the extracted campaign material. Do not pre-create empty wiki category directories; let the wiki-building stage create categories as needed. - Do not invent missing facts. If text is illegible or unclear, mark it as uncertain in square brackets, such as `[unclear]` or `[uncertain: possible name]`. ## Processing Pipeline @@ -34,7 +36,8 @@ Use the skills in `.agents/skills` for repeatable work: 2. `dnd-split-pages-into-days`: split only confirmed-complete day transcriptions from `data/2-pages` into per-day files in `data/3-days`. 3. `dnd-clean-day-narrative`: clean only confirmed-complete raw days from `data/3-days` into detailed story-based narratives in `data/4-days-cleaned`. 4. `dnd-retrospective-context`: record later clarifications and regenerate affected cleaned day narratives with the new sourced context. -5. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. +5. `dnd-build-wiki`: ingest cleaned day narratives from `data/4-days-cleaned` into an interlinked Markdown wiki in `data/6-wiki`. +6. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. ## Retrospective Context -
f06ffe1Rest of databy Bas Mostert
data/1-source/IMG_5120.png | Bin 0 -> 3013690 bytes data/1-source/IMG_5121.png | Bin 0 -> 2960778 bytes data/1-source/IMG_5122.png | Bin 0 -> 2960428 bytes data/1-source/IMG_5123.png | Bin 0 -> 3001689 bytes data/1-source/IMG_5124.png | Bin 0 -> 3013009 bytes data/1-source/IMG_5125.png | Bin 0 -> 2891715 bytes data/1-source/IMG_5126.png | Bin 0 -> 2867922 bytes data/1-source/IMG_5127.png | Bin 0 -> 2878351 bytes data/1-source/IMG_5128.png | Bin 0 -> 2819072 bytes data/1-source/IMG_5129.png | Bin 0 -> 2849353 bytes data/1-source/IMG_5130.png | Bin 0 -> 2974327 bytes data/1-source/IMG_5131.png | Bin 0 -> 2817007 bytes data/1-source/IMG_5132.png | Bin 0 -> 2954304 bytes data/1-source/IMG_5133.png | Bin 0 -> 2881764 bytes data/1-source/IMG_5134.png | Bin 0 -> 2888498 bytes data/1-source/IMG_5135.png | Bin 0 -> 2849632 bytes data/1-source/IMG_5136.png | Bin 0 -> 2917551 bytes data/1-source/IMG_5137.png | Bin 0 -> 2847494 bytes data/1-source/IMG_5138.png | Bin 0 -> 3038771 bytes data/1-source/IMG_5139.png | Bin 0 -> 2847099 bytes data/1-source/IMG_5140.png | Bin 0 -> 2993713 bytes data/1-source/IMG_5141.png | Bin 0 -> 2823087 bytes data/1-source/IMG_5142.png | Bin 0 -> 2761840 bytes data/1-source/IMG_5143.png | Bin 0 -> 2970202 bytes data/1-source/IMG_5144.png | Bin 0 -> 2834974 bytes data/1-source/IMG_5145.png | Bin 0 -> 2647399 bytes data/1-source/IMG_5146.png | Bin 0 -> 2746547 bytes data/1-source/IMG_5147.png | Bin 0 -> 2759134 bytes data/1-source/IMG_5148.png | Bin 0 -> 2780868 bytes data/1-source/IMG_5149.png | Bin 0 -> 2819010 bytes data/1-source/IMG_5150.png | Bin 0 -> 2796533 bytes data/1-source/IMG_5151.png | Bin 0 -> 2921370 bytes data/1-source/IMG_5152.png | Bin 0 -> 2819984 bytes data/1-source/IMG_5153.png | Bin 0 -> 2629032 bytes data/1-source/IMG_5154.png | Bin 0 -> 2826629 bytes data/1-source/IMG_5155.png | Bin 0 -> 2816486 bytes data/1-source/IMG_5156.png | Bin 0 -> 2639066 bytes data/1-source/IMG_5157.png | Bin 0 -> 2675515 bytes data/1-source/IMG_5158.png | Bin 0 -> 2706953 bytes data/1-source/IMG_5159.png | Bin 0 -> 2676229 bytes data/1-source/IMG_5160.png | Bin 0 -> 2843135 bytes data/1-source/IMG_5161.png | Bin 0 -> 2707025 bytes data/1-source/IMG_5162.png | Bin 0 -> 2643833 bytes data/1-source/IMG_5163.png | Bin 0 -> 2816041 bytes data/1-source/IMG_5164.png | Bin 0 -> 2560012 bytes data/1-source/IMG_5165.png | Bin 0 -> 2531021 bytes data/1-source/IMG_5166.png | Bin 0 -> 2511691 bytes data/1-source/IMG_5167.png | Bin 0 -> 2445608 bytes data/1-source/IMG_5168.png | Bin 0 -> 2439510 bytes data/1-source/IMG_5169.png | Bin 0 -> 2662828 bytes data/1-source/IMG_5170.png | Bin 0 -> 2769475 bytes data/1-source/IMG_5171.png | Bin 0 -> 2718681 bytes data/1-source/IMG_5172.png | Bin 0 -> 2761571 bytes data/1-source/IMG_5173.png | Bin 0 -> 2661598 bytes data/1-source/IMG_5174.png | Bin 0 -> 2653204 bytes data/1-source/IMG_5175.png | Bin 0 -> 2670582 bytes data/1-source/IMG_5176.png | Bin 0 -> 2739500 bytes data/1-source/IMG_5177.png | Bin 0 -> 2721773 bytes data/1-source/IMG_5178.png | Bin 0 -> 2878099 bytes data/1-source/IMG_5179.png | Bin 0 -> 2624748 bytes data/1-source/IMG_5180.png | Bin 0 -> 2712135 bytes data/1-source/IMG_5181.png | Bin 0 -> 2671122 bytes data/1-source/IMG_5182.png | Bin 0 -> 2622338 bytes data/1-source/IMG_5183.png | Bin 0 -> 2658879 bytes data/1-source/IMG_5184.png | Bin 0 -> 2683727 bytes data/1-source/IMG_5185.png | Bin 0 -> 2731196 bytes data/1-source/IMG_5186.png | Bin 0 -> 2562155 bytes data/1-source/IMG_5187.png | Bin 0 -> 2722469 bytes data/1-source/IMG_5188.png | Bin 0 -> 2686271 bytes data/1-source/IMG_5189.png | Bin 0 -> 2713999 bytes data/1-source/IMG_5190.png | Bin 0 -> 2380107 bytes data/2-pages/10.txt | 56 ++++ data/2-pages/11.txt | 51 ++++ data/2-pages/12.txt | 51 ++++ data/2-pages/13.txt | 48 ++++ data/2-pages/14.txt | 43 +++ data/2-pages/15.txt | 44 ++++ data/2-pages/16.txt | 40 +++ data/2-pages/17.txt | 41 +++ data/2-pages/18.txt | 53 ++++ data/2-pages/19.txt | 46 ++++ data/2-pages/20.txt | 48 ++++ data/2-pages/21.txt | 44 ++++ data/2-pages/22.txt | 47 ++++ data/2-pages/23.txt | 52 ++++ data/2-pages/24.txt | 45 ++++ data/2-pages/25.txt | 42 +++ data/2-pages/26.txt | 34 +++ data/2-pages/27.txt | 37 +++ data/2-pages/28.txt | 39 +++ data/2-pages/29.txt | 32 +++ data/2-pages/30.txt | 36 +++ data/2-pages/31.txt | 27 ++ data/2-pages/32.txt | 32 +++ data/2-pages/33.txt | 32 +++ data/2-pages/34.txt | 43 +++ data/2-pages/35.txt | 43 +++ data/2-pages/36.txt | 43 +++ data/2-pages/37.txt | 39 +++ data/2-pages/38.txt | 44 ++++ data/2-pages/39.txt | 44 ++++ data/2-pages/40.txt | 49 ++++ data/2-pages/41.txt | 44 ++++ data/2-pages/42.txt | 41 +++ data/2-pages/43.txt | 37 +++ data/2-pages/44.txt | 37 +++ data/2-pages/45.txt | 34 +++ data/2-pages/46.txt | 48 ++++ data/2-pages/47.txt | 39 +++ data/2-pages/48.txt | 38 +++ data/2-pages/49.txt | 32 +++ data/2-pages/50.txt | 45 ++++ data/2-pages/51.txt | 40 +++ data/2-pages/52.txt | 27 ++ data/2-pages/53.txt | 66 +++++ data/2-pages/54.txt | 43 +++ data/2-pages/55.txt | 46 ++++ data/2-pages/56.txt | 47 ++++ data/2-pages/57.txt | 41 +++ data/2-pages/58.txt | 43 +++ data/2-pages/59.txt | 37 +++ data/2-pages/6.txt | 56 ++++ data/2-pages/60.txt | 41 +++ data/2-pages/61.txt | 44 ++++ data/2-pages/62.txt | 35 +++ data/2-pages/63.txt | 48 ++++ data/2-pages/64.txt | 49 ++++ data/2-pages/65.txt | 37 +++ data/2-pages/66.txt | 46 ++++ data/2-pages/67.txt | 60 +++++ data/2-pages/68.txt | 51 ++++ data/2-pages/69.txt | 51 ++++ data/2-pages/7.txt | 51 ++++ data/2-pages/70.txt | 48 ++++ data/2-pages/71.txt | 43 +++ data/2-pages/72.txt | 53 ++++ data/2-pages/73.txt | 23 ++ data/2-pages/8.txt | 63 +++++ data/2-pages/9.txt | 48 ++++ data/3-days/day-03.md | 190 ++++++++++++++ data/3-days/day-04.md | 172 ++++++++++++ data/3-days/day-05.md | 134 ++++++++++ data/3-days/day-06.md | 413 +++++++++++++++++++++++++++++ data/3-days/day-07.md | 58 +++++ data/3-days/day-09.md | 68 +++++ data/3-days/day-10.md | 53 ++++ data/3-days/day-11.md | 79 ++++++ data/3-days/day-12.md | 205 +++++++++++++++ data/3-days/day-13.md | 42 +++ data/3-days/day-14.md | 218 ++++++++++++++++ data/3-days/day-15.md | 121 +++++++++ data/3-days/day-16.md | 561 ++++++++++++++++++++++++++++++++++++++++ data/3-days/day-17.md | 228 ++++++++++++++++ data/3-days/day-18.md | 25 ++ data/3-days/day-19.md | 153 +++++++++++ data/3-days/day-20.md | 268 +++++++++++++++++++ data/3-days/day-21.md | 113 ++++++++ data/3-days/day-22.md | 105 ++++++++ data/4-days-cleaned/day-01.md | 8 +- data/4-days-cleaned/day-02.md | 6 +- data/4-days-cleaned/day-03.md | 49 ++++ data/4-days-cleaned/day-04.md | 45 ++++ data/4-days-cleaned/day-05.md | 40 +++ data/4-days-cleaned/day-06.md | 73 ++++++ data/4-days-cleaned/day-07.md | 33 +++ data/4-days-cleaned/day-09.md | 32 +++ data/4-days-cleaned/day-10.md | 31 +++ data/4-days-cleaned/day-11.md | 36 +++ data/4-days-cleaned/day-12.md | 54 ++++ data/4-days-cleaned/day-13.md | 29 +++ data/4-days-cleaned/day-14.md | 96 +++++++ data/4-days-cleaned/day-15.md | 68 +++++ data/4-days-cleaned/day-16.md | 158 +++++++++++ data/4-days-cleaned/day-17.md | 107 ++++++++ data/4-days-cleaned/day-18.md | 26 ++ data/4-days-cleaned/day-19.md | 46 ++++ data/4-days-cleaned/day-20.md | 58 +++++ data/4-days-cleaned/day-21.md | 36 +++ data/4-days-cleaned/day-22.md | 39 +++ data/5-retrospective/day-01.txt | 8 + data/5-retrospective/day-02.txt | 3 + 181 files changed, 7237 insertions(+), 7 deletions(-)Show diff
diff --git a/data/1-source/IMG_5120.png b/data/1-source/IMG_5120.png new file mode 100644 index 0000000..71930bf Binary files /dev/null and b/data/1-source/IMG_5120.png differ diff --git a/data/1-source/IMG_5121.png b/data/1-source/IMG_5121.png new file mode 100644 index 0000000..c26c97a Binary files /dev/null and b/data/1-source/IMG_5121.png differ diff --git a/data/1-source/IMG_5122.png b/data/1-source/IMG_5122.png new file mode 100644 index 0000000..9b59bc1 Binary files /dev/null and b/data/1-source/IMG_5122.png differ diff --git a/data/1-source/IMG_5123.png b/data/1-source/IMG_5123.png new file mode 100644 index 0000000..5155d1c Binary files /dev/null and b/data/1-source/IMG_5123.png differ diff --git a/data/1-source/IMG_5124.png b/data/1-source/IMG_5124.png new file mode 100644 index 0000000..7d2ae19 Binary files /dev/null and b/data/1-source/IMG_5124.png differ diff --git a/data/1-source/IMG_5125.png b/data/1-source/IMG_5125.png new file mode 100644 index 0000000..2fe903b Binary files /dev/null and b/data/1-source/IMG_5125.png differ diff --git a/data/1-source/IMG_5126.png b/data/1-source/IMG_5126.png new file mode 100644 index 0000000..20a2960 Binary files /dev/null and b/data/1-source/IMG_5126.png differ diff --git a/data/1-source/IMG_5127.png b/data/1-source/IMG_5127.png new file mode 100644 index 0000000..b7a42b9 Binary files /dev/null and b/data/1-source/IMG_5127.png differ diff --git a/data/1-source/IMG_5128.png b/data/1-source/IMG_5128.png new file mode 100644 index 0000000..d791182 Binary files /dev/null and b/data/1-source/IMG_5128.png differ diff --git a/data/1-source/IMG_5129.png b/data/1-source/IMG_5129.png new file mode 100644 index 0000000..07a9f90 Binary files /dev/null and b/data/1-source/IMG_5129.png differ diff --git a/data/1-source/IMG_5130.png b/data/1-source/IMG_5130.png new file mode 100644 index 0000000..7c00ba6 Binary files /dev/null and b/data/1-source/IMG_5130.png differ diff --git a/data/1-source/IMG_5131.png b/data/1-source/IMG_5131.png new file mode 100644 index 0000000..1df5cdd Binary files /dev/null and b/data/1-source/IMG_5131.png differ diff --git a/data/1-source/IMG_5132.png b/data/1-source/IMG_5132.png new file mode 100644 index 0000000..ebaf90b Binary files /dev/null and b/data/1-source/IMG_5132.png differ diff --git a/data/1-source/IMG_5133.png b/data/1-source/IMG_5133.png new file mode 100644 index 0000000..a504b7a Binary files /dev/null and b/data/1-source/IMG_5133.png differ diff --git a/data/1-source/IMG_5134.png b/data/1-source/IMG_5134.png new file mode 100644 index 0000000..40f3e97 Binary files /dev/null and b/data/1-source/IMG_5134.png differ diff --git a/data/1-source/IMG_5135.png b/data/1-source/IMG_5135.png new file mode 100644 index 0000000..875c1a0 Binary files /dev/null and b/data/1-source/IMG_5135.png differ diff --git a/data/1-source/IMG_5136.png b/data/1-source/IMG_5136.png new file mode 100644 index 0000000..9531894 Binary files /dev/null and b/data/1-source/IMG_5136.png differ diff --git a/data/1-source/IMG_5137.png b/data/1-source/IMG_5137.png new file mode 100644 index 0000000..77b66cc Binary files /dev/null and b/data/1-source/IMG_5137.png differ diff --git a/data/1-source/IMG_5138.png b/data/1-source/IMG_5138.png new file mode 100644 index 0000000..6816df1 Binary files /dev/null and b/data/1-source/IMG_5138.png differ diff --git a/data/1-source/IMG_5139.png b/data/1-source/IMG_5139.png new file mode 100644 index 0000000..1283119 Binary files /dev/null and b/data/1-source/IMG_5139.png differ diff --git a/data/1-source/IMG_5140.png b/data/1-source/IMG_5140.png new file mode 100644 index 0000000..13771f4 Binary files /dev/null and b/data/1-source/IMG_5140.png differ diff --git a/data/1-source/IMG_5141.png b/data/1-source/IMG_5141.png new file mode 100644 index 0000000..b7018b8 Binary files /dev/null and b/data/1-source/IMG_5141.png differ diff --git a/data/1-source/IMG_5142.png b/data/1-source/IMG_5142.png new file mode 100644 index 0000000..9d870ca Binary files /dev/null and b/data/1-source/IMG_5142.png differ diff --git a/data/1-source/IMG_5143.png b/data/1-source/IMG_5143.png new file mode 100644 index 0000000..5872fc7 Binary files /dev/null and b/data/1-source/IMG_5143.png differ diff --git a/data/1-source/IMG_5144.png b/data/1-source/IMG_5144.png new file mode 100644 index 0000000..3c8deec Binary files /dev/null and b/data/1-source/IMG_5144.png differ diff --git a/data/1-source/IMG_5145.png b/data/1-source/IMG_5145.png new file mode 100644 index 0000000..3b5421a Binary files /dev/null and b/data/1-source/IMG_5145.png differ diff --git a/data/1-source/IMG_5146.png b/data/1-source/IMG_5146.png new file mode 100644 index 0000000..6c7d2cf Binary files /dev/null and b/data/1-source/IMG_5146.png differ diff --git a/data/1-source/IMG_5147.png b/data/1-source/IMG_5147.png new file mode 100644 index 0000000..b5d2cc8 Binary files /dev/null and b/data/1-source/IMG_5147.png differ diff --git a/data/1-source/IMG_5148.png b/data/1-source/IMG_5148.png new file mode 100644 index 0000000..f4a1f4b Binary files /dev/null and b/data/1-source/IMG_5148.png differ diff --git a/data/1-source/IMG_5149.png b/data/1-source/IMG_5149.png new file mode 100644 index 0000000..733349e Binary files /dev/null and b/data/1-source/IMG_5149.png differ diff --git a/data/1-source/IMG_5150.png b/data/1-source/IMG_5150.png new file mode 100644 index 0000000..b3f46d6 Binary files /dev/null and b/data/1-source/IMG_5150.png differ diff --git a/data/1-source/IMG_5151.png b/data/1-source/IMG_5151.png new file mode 100644 index 0000000..19aa255 Binary files /dev/null and b/data/1-source/IMG_5151.png differ diff --git a/data/1-source/IMG_5152.png b/data/1-source/IMG_5152.png new file mode 100644 index 0000000..439f917 Binary files /dev/null and b/data/1-source/IMG_5152.png differ diff --git a/data/1-source/IMG_5153.png b/data/1-source/IMG_5153.png new file mode 100644 index 0000000..33178a4 Binary files /dev/null and b/data/1-source/IMG_5153.png differ diff --git a/data/1-source/IMG_5154.png b/data/1-source/IMG_5154.png new file mode 100644 index 0000000..360955a Binary files /dev/null and b/data/1-source/IMG_5154.png differ diff --git a/data/1-source/IMG_5155.png b/data/1-source/IMG_5155.png new file mode 100644 index 0000000..d932e59 Binary files /dev/null and b/data/1-source/IMG_5155.png differ diff --git a/data/1-source/IMG_5156.png b/data/1-source/IMG_5156.png new file mode 100644 index 0000000..aab8636 Binary files /dev/null and b/data/1-source/IMG_5156.png differ diff --git a/data/1-source/IMG_5157.png b/data/1-source/IMG_5157.png new file mode 100644 index 0000000..c77471c Binary files /dev/null and b/data/1-source/IMG_5157.png differ diff --git a/data/1-source/IMG_5158.png b/data/1-source/IMG_5158.png new file mode 100644 index 0000000..bb053ec Binary files /dev/null and b/data/1-source/IMG_5158.png differ diff --git a/data/1-source/IMG_5159.png b/data/1-source/IMG_5159.png new file mode 100644 index 0000000..39838bb Binary files /dev/null and b/data/1-source/IMG_5159.png differ diff --git a/data/1-source/IMG_5160.png b/data/1-source/IMG_5160.png new file mode 100644 index 0000000..ca9c5ac Binary files /dev/null and b/data/1-source/IMG_5160.png differ diff --git a/data/1-source/IMG_5161.png b/data/1-source/IMG_5161.png new file mode 100644 index 0000000..c624acc Binary files /dev/null and b/data/1-source/IMG_5161.png differ diff --git a/data/1-source/IMG_5162.png b/data/1-source/IMG_5162.png new file mode 100644 index 0000000..ef74e9c Binary files /dev/null and b/data/1-source/IMG_5162.png differ diff --git a/data/1-source/IMG_5163.png b/data/1-source/IMG_5163.png new file mode 100644 index 0000000..e5a7f74 Binary files /dev/null and b/data/1-source/IMG_5163.png differ diff --git a/data/1-source/IMG_5164.png b/data/1-source/IMG_5164.png new file mode 100644 index 0000000..83c4f59 Binary files /dev/null and b/data/1-source/IMG_5164.png differ diff --git a/data/1-source/IMG_5165.png b/data/1-source/IMG_5165.png new file mode 100644 index 0000000..14bd574 Binary files /dev/null and b/data/1-source/IMG_5165.png differ diff --git a/data/1-source/IMG_5166.png b/data/1-source/IMG_5166.png new file mode 100644 index 0000000..a12f000 Binary files /dev/null and b/data/1-source/IMG_5166.png differ diff --git a/data/1-source/IMG_5167.png b/data/1-source/IMG_5167.png new file mode 100644 index 0000000..d3090e9 Binary files /dev/null and b/data/1-source/IMG_5167.png differ diff --git a/data/1-source/IMG_5168.png b/data/1-source/IMG_5168.png new file mode 100644 index 0000000..aa8d22f Binary files /dev/null and b/data/1-source/IMG_5168.png differ diff --git a/data/1-source/IMG_5169.png b/data/1-source/IMG_5169.png new file mode 100644 index 0000000..72b63c8 Binary files /dev/null and b/data/1-source/IMG_5169.png differ diff --git a/data/1-source/IMG_5170.png b/data/1-source/IMG_5170.png new file mode 100644 index 0000000..f69dece Binary files /dev/null and b/data/1-source/IMG_5170.png differ diff --git a/data/1-source/IMG_5171.png b/data/1-source/IMG_5171.png new file mode 100644 index 0000000..9408a3e Binary files /dev/null and b/data/1-source/IMG_5171.png differ diff --git a/data/1-source/IMG_5172.png b/data/1-source/IMG_5172.png new file mode 100644 index 0000000..c4aa713 Binary files /dev/null and b/data/1-source/IMG_5172.png differ diff --git a/data/1-source/IMG_5173.png b/data/1-source/IMG_5173.png new file mode 100644 index 0000000..6f953d4 Binary files /dev/null and b/data/1-source/IMG_5173.png differ diff --git a/data/1-source/IMG_5174.png b/data/1-source/IMG_5174.png new file mode 100644 index 0000000..9da7b7f Binary files /dev/null and b/data/1-source/IMG_5174.png differ diff --git a/data/1-source/IMG_5175.png b/data/1-source/IMG_5175.png new file mode 100644 index 0000000..248d411 Binary files /dev/null and b/data/1-source/IMG_5175.png differ diff --git a/data/1-source/IMG_5176.png b/data/1-source/IMG_5176.png new file mode 100644 index 0000000..699c559 Binary files /dev/null and b/data/1-source/IMG_5176.png differ diff --git a/data/1-source/IMG_5177.png b/data/1-source/IMG_5177.png new file mode 100644 index 0000000..5509e1b Binary files /dev/null and b/data/1-source/IMG_5177.png differ diff --git a/data/1-source/IMG_5178.png b/data/1-source/IMG_5178.png new file mode 100644 index 0000000..aadd932 Binary files /dev/null and b/data/1-source/IMG_5178.png differ diff --git a/data/1-source/IMG_5179.png b/data/1-source/IMG_5179.png new file mode 100644 index 0000000..d6b45df Binary files /dev/null and b/data/1-source/IMG_5179.png differ diff --git a/data/1-source/IMG_5180.png b/data/1-source/IMG_5180.png new file mode 100644 index 0000000..10f07a1 Binary files /dev/null and b/data/1-source/IMG_5180.png differ diff --git a/data/1-source/IMG_5181.png b/data/1-source/IMG_5181.png new file mode 100644 index 0000000..35ecb02 Binary files /dev/null and b/data/1-source/IMG_5181.png differ diff --git a/data/1-source/IMG_5182.png b/data/1-source/IMG_5182.png new file mode 100644 index 0000000..ae9f736 Binary files /dev/null and b/data/1-source/IMG_5182.png differ diff --git a/data/1-source/IMG_5183.png b/data/1-source/IMG_5183.png new file mode 100644 index 0000000..add7018 Binary files /dev/null and b/data/1-source/IMG_5183.png differ diff --git a/data/1-source/IMG_5184.png b/data/1-source/IMG_5184.png new file mode 100644 index 0000000..c46240f Binary files /dev/null and b/data/1-source/IMG_5184.png differ diff --git a/data/1-source/IMG_5185.png b/data/1-source/IMG_5185.png new file mode 100644 index 0000000..4d91969 Binary files /dev/null and b/data/1-source/IMG_5185.png differ diff --git a/data/1-source/IMG_5186.png b/data/1-source/IMG_5186.png new file mode 100644 index 0000000..e8891e3 Binary files /dev/null and b/data/1-source/IMG_5186.png differ diff --git a/data/1-source/IMG_5187.png b/data/1-source/IMG_5187.png new file mode 100644 index 0000000..5029413 Binary files /dev/null and b/data/1-source/IMG_5187.png differ diff --git a/data/1-source/IMG_5188.png b/data/1-source/IMG_5188.png new file mode 100644 index 0000000..76a5ea4 Binary files /dev/null and b/data/1-source/IMG_5188.png differ diff --git a/data/1-source/IMG_5189.png b/data/1-source/IMG_5189.png new file mode 100644 index 0000000..c5759e8 Binary files /dev/null and b/data/1-source/IMG_5189.png differ diff --git a/data/1-source/IMG_5190.png b/data/1-source/IMG_5190.png new file mode 100644 index 0000000..e58e72b Binary files /dev/null and b/data/1-source/IMG_5190.png differ diff --git a/data/2-pages/10.txt b/data/2-pages/10.txt new file mode 100644 index 0000000..eec9127 --- /dev/null +++ b/data/2-pages/10.txt @@ -0,0 +1,56 @@ +Page: 10 +Source: data/1-source/IMG_5124.png + +Transcription: + +Half Elf remembers Sir Ailbir +go see exchequer - half elf partly looking Lawrence +to ask about militia wages - he starts +to panic - says we need to speak to the sheriff +or the Inquisitor. Didn't do anything wrong +blames the scribes. 54 then baron cut down +so he was getting the payment for the other 23 +if we keep quiet he will help with more info +if needed +gives us 500g +8 carts, 16 horses, 600 swords +industrial style we have 2 extra horses +58 days left on town finances. + +Safe small black velveteen case - gems +3 treasure chest gold/copper/silver. +2 bags platinum pieces 4000go + +Earl's documents - pile is empty - Half Elf [crossed out: Victor] (Vicmur +Daros) +remembers him having documents! +leave to go see Brother Fracture +9:50 + +- Gregory doing well - not had chance to heal +the others, will feel the rest. +- No way of communicating with other churches +go see Gregory - Remembers Dec started thinks it was 7th/8th +ish few weeks ago according to +can't remember anything from then until now +Can remember 2x militia taking him to the +Hostel then setting up in the church - stonejaw & +ralfex (2 of the missing militia) +other people in the Hostel - said it looked like a jail cell +Goat Lady - Bagnall Lane & various others. +Militia house open for about 1 month - No reason +for it to still look like a jail. + +- Geldrin paints a sheriff sign on the cart +10:15 +10:30 + +cider inn cider +Homeless in town not really any but remembers +Gregory now +remembers dead goat down Bagnall Lane. about 1 +week ago +Go to hostel. Investigate round side of building +Bone stables 2 carts & 4x horses in courtyard/stables +Chain on the gates but padlock not locked +Invar breaks wheels diff --git a/data/2-pages/11.txt b/data/2-pages/11.txt new file mode 100644 index 0000000..92397a6 --- /dev/null +++ b/data/2-pages/11.txt @@ -0,0 +1,51 @@ +Page: 11 +Source: data/1-source/IMG_5125.png + +Transcription: + +Release horses - I get magic missile'd +go into "Hostel" to fight them. one is [crossed out: Gillisa] Gelissa +(has a mystery on the side of her face) +kill other guy, subdue Gelissa. +some corruption on her mind - Invar restores both her +mind & wounds. +11:00 + +- Look around the "Hostel" but 2 cells are empty +approx 10 people still in the cells - all townsfolk + +- Invar creates a lock for the back door +12:30 +Tell Brother Fracture to concentrate on healing Militia +he will take Gelissa & militia & Cart to the +Barracks & use that as a base of operations. +Decide to go to the Barrier over the +"Swamp Laboratory". +13:00 + +- Rest for the evening - on 3rd watch pigeon lady +near the camp. Didn't get a full rest + +Day 5 +20th Dec +07:15 + +Approach barrier - 2 large carts in view +go off the path. tie up the horses in a +dip in the land, go round to approach from the + +find Cromwell (Ranger) quite injured looks like + +- Tracks look like heavy steel boots (Goliath in full Plakemail?) +core? +* We are about 1/2 way between the [crossed out: fire] +shield pylons. +* carts are empty - large group of people +go towards barrier 7:30 - Small group to the +swamp 7:45 + +Follow the tracks - they seem to come back on +Goliath - he went to put Cromwell safe + +Decide to follow along shield towards larger group +hear a big group of people stood next to the barrier diff --git a/data/2-pages/12.txt b/data/2-pages/12.txt new file mode 100644 index 0000000..9bc6293 --- /dev/null +++ b/data/2-pages/12.txt @@ -0,0 +1,51 @@ +Page: 12 +Source: data/1-source/IMG_5126.png + +Transcription: + +Dirk feels something is watching us +then is attacked by sheep farmer grubby. + +killed it & 11 militia & 8 townsfolk +8 townsfolk tied up with rope +Black dog thing disappeared after we killed it +But the Maggot stayed. Upon killing this it let out a +massive shriek & all the remaining townsfolk started to +attack +Located & subdued halfling girl. + +Short Rest +get horses & Cromwell head back along +the path to find a patch of trees to +hide the cart +08:00 +09:00 +09:10 + +* Long Rest +10:30 +18:30 + +Sword enchanted to added +1 [crossed out] until [crossed out] +Invar's next long rest + +2 twins commanding them 1 went to swamp other +went to Barrier (we killed it) + +go towards the swamp - following the tracks of the +swamp, tie up horses outside swamp. +Following 4 individuals - Geldrin's compass is following the +same direction +20:00 + +Come to a clearing at the barrier with a stone +building in the clearing - marble dome is against the barrier +with a large telescope through the marble dome & +Tracks lead right up to the building. built approx +1,000 years ago. +hear a strange humming - door reverberating. + +Enter building. 2 x plinths 1 empty 1 that +looks like Core dismantled. head clatters off & +roll runs through left door. +go through door by plinths diff --git a/data/2-pages/13.txt b/data/2-pages/13.txt new file mode 100644 index 0000000..fc598b9 --- /dev/null +++ b/data/2-pages/13.txt @@ -0,0 +1,48 @@ +Page: 13 +Source: data/1-source/IMG_5127.png + +Transcription: + +left door - library +* Shelves - all on one shelf missing "T" shelf in Astronomy +guess Tri-moon information. + +* Picture of a well groomed tiefling holding a baby girl +(The Mage) on of the 5 who made the barrier +* Visage Envoi * + +* paper work looks recent, drawer has been forced +open - diagrams of the stars +other drawer has Rabbit/Deer teddy. ring inside. gold band +with runes. +ring is similar to dirks - sees the teddy back up. + +Vase - "part of me can be with you while you study +all my love - Joy" + +Teddy ring runes: "a pact in darkness made in sorrow to bring +(no sharpness) +back Joy" +Dirk's ring runes: "A Bargain struck in shadows +for souls to be held in infinity" + +Paper work - measurements of the tri-moon before the +barrier went up & 20 years after. TriMoon +seems to be getting bigger. Pre barrier it was +as big as the other moons +Geldrin takes all of the notes + +Take an invisible cloak from the hatstand - wear it! +Dirk puts geldrin on the hat stand & his clothes disappear. +when things touch hatstand they disappear +Dagger & handkerchief fall to the floor +handkerchief - clean "J" in the corner +Dagger looks like a letter opener. + +Day 6 +21st Dec +1:00 + +- Next room looks like a teleportation circle +with a bronze feather on the circle. like the one the other +seems more powerful than usual diff --git a/data/2-pages/14.txt b/data/2-pages/14.txt new file mode 100644 index 0000000..7e79cde --- /dev/null +++ b/data/2-pages/14.txt @@ -0,0 +1,43 @@ +Page: 14 +Source: data/1-source/IMG_5128.png + +Transcription: + +Cages in the next room (empty) Operating table (empty) +boxes guillotine rope - lots of blood & decay with sea & sulphur + +Red door - Pic of a young tiefling - Dirk recognises - holding +Big table - set but empty. +Door @ end - Kitchen - well bucket with - doesn't +look like it's been used - pull bucket up +pour water on the floor, humanoid skull with +horns is on the floor. Horns are the same as + +Trap door under out bear rug. in office. +Door outside office is barred shut + +Trap door - 4 plinths all have the suits of Core +on them + +Geldrin goes down & suits light up. ask for +password - Joy & Tri-moon incorrect. + +- Move onto another room. +try to get through barricaded door +trapped door managed to get through + +Potion Room - Cauldron looks like it is full of water +fresh & clear. +Geldrin calls construct "Power loader" + +- another room - Stairs & a door which says +maintenance do not enter Door is trapped with +electricity. building seems protected by the same +thing the barrier is made from. + +- Room opposite - Bed room +Tankard vase with white flower in +chair [crossed out] which looks broken & open book on table +(seems out of place) +open the chest - Pulse paralyzes Invar & Geldrin +01:15 diff --git a/data/2-pages/15.txt b/data/2-pages/15.txt new file mode 100644 index 0000000..9e102fb --- /dev/null +++ b/data/2-pages/15.txt @@ -0,0 +1,44 @@ +Page: 15 +Source: data/1-source/IMG_5129.png + +Transcription: + +Construct kills whoever was upstairs (one of them) +killed it. +shocked Invar & Geldrin back from being paralysed + +3 sets of footsteps walk past the room. & stop at + +2 come back - seem to be on guard. +Another 2 go to Joys room & comes back +all 4 killed. +Short Rest Completed. +Go into Joy's room +open the toy chest + +* Mahogany box - lock has a rune on it. - geldrin +takes it + +* Wardrobe - 3 empty hangers - Dress she was wearing +when Dirk saw her isn't there + +* Bedside [crossed out: table] table - bottom drawer is trapped. +Medical equipment, syringe, crystals, ash (used spell scroll), powder, +bag, herbs, empty vial flask, 3x full flasks. +(recognise 2 - Mirths Fizzleswig & succour, don't recognise the +other) + +Quill pen, ink & Book, kids diary + +last page "Pelt rough today. don't know how much +Longer able to write, Daddy Borrowed +mr snuffles again, daddy's friend asked +about the rings again daddy's friend is +creepy." + +Diary - bed bound for the length of the diary +approx 1 year - Robots clean & feed +Daddy's friend (Never named) making rings etc +put in box which might help her feel better +not getting better - terminal. Daddy got +upset but no payment could fix it diff --git a/data/2-pages/16.txt b/data/2-pages/16.txt new file mode 100644 index 0000000..63e0feb --- /dev/null +++ b/data/2-pages/16.txt @@ -0,0 +1,40 @@ +Page: 16 +Source: data/1-source/IMG_5130.png + +Transcription: + +Trapdoor under the rug. Wooden ladder down +into a stone room, beanbag x toys, seems +to be a secret den. Dirk goes to the +beanbag. Little girl sat on it +gets up & goes out "maybe I should go back +up daddy can see me in my room" +"feeling better glott because daddy's creepy friend +is here so I can hide" +"he'll find me here u should go to my +holy place" + +go upstairs - opens up into a massive dome +large golden spyglass, crystals around the +telescope break the barrier. Someone sat +at chair - back to us - 2 x 8ft ugly human +but wiry creatures. chair person looks like +creature we killed but all the parts are opposite += worm & dog like creature with the creature. + +Musher asked to observe tri-moon. +No desire to fight - we killed his counterpart +worm is quite useful & rare. +900 years ago someone lived here +used the townsfolk to attack the barrier +give it one of the Brass feathers to communicate +with the master for an audience. [your] horned mechanical +hellraiser sphinx creature. + +- Garadwal? +Where is your army servant. We those guys +instead... do not need to know wot +co-ordinates required for triangulation need +to know where the army's strike next +month, so we can have freedom from the dome +shifting the barrier increases the flow & maybe diff --git a/data/2-pages/17.txt b/data/2-pages/17.txt new file mode 100644 index 0000000..6dbf679 --- /dev/null +++ b/data/2-pages/17.txt @@ -0,0 +1,41 @@ +Page: 17 +Source: data/1-source/IMG_5131.png + +Transcription: + +flow so the fragment of the moon will +destroy grand towers & destroy the dome. +- it lives outside the barrier + +might just telling freedom seemed kindof true +& "freedom from the confines of everything" was an +odd phrase. + +What would happen if creature didn't obey sphinx? +it would find him due to the pact made +in darkness? / in sorrow? - looked forlorn - to find joy? + +Tri moon is a crystal + +- Sphinx cast out for practicing unsavoury magic +- Do we wish to join him? + He is one cell - Trying to Aid to locations + to attack + +- all agree to clobber +- kill them all. - worm thing dead. think it has + mind control powers +- Papers on table. calculus & notes on the Tri moon +- Books on biology incurable diseases etc. book on the effects + of poison - Slowbane - acts like heavy metal - symptoms + match Joy's diary + I wrote a paper on it - very rare because people can't + make it but turns up in the black market + Shield pylon city's sometimes get a similar sickness + being investigated. very rare & takes a lot to take effect + Possibly same colour as the shield crystal + People get sick and come to Goldenswell + & start to get better so not really looked into + much. + +[sideways note] Slowbane diff --git a/data/2-pages/18.txt b/data/2-pages/18.txt new file mode 100644 index 0000000..d0ac64d --- /dev/null +++ b/data/2-pages/18.txt @@ -0,0 +1,53 @@ +Page: 18 +Source: data/1-source/IMG_5132.png + +Transcription: + +[sketch: 10 + 777 / 8 x 10? stones] + +Pile of goods - spices - wine - berries - parchment +platinum, gems, silk. soja digel +viel from Arvoreds. +have a book + +Copper Dodecahedron (magical) +Invar identifies Dodecahedron, - spell faults! + +[sideways] 21st Dec still +Day 6 still + +Geldrin - goes to sleep in Joy's room & realises +the lamp is a gem +3:30 + +long rest level up. +12:00 + +chest itself is magical - designed to cast +paralysis if somebody other than him opens it +Invar tries to identify it - very magical chest + +check out the skull in the kitchen. has a +deformity in the back of the skull & looks a +year younger than Joy - about 7 poss 1,000 years old. +[Dirk?] defeats + +well, goes down about 50 ft water down there +look for information in the library - built at the same +time as the barrier (in tandem) not as meeting back +then. Was put here to observe the moon. designed +specially. Caverns underneath - the area found & +built here for this purpose. Summoning circle was +connected to different towns & cities to get building +materials then supplies after observatory was built. + +- Send message to [bucsalik] + - townsfolk have memories + - creatures slain + - at observatory + - message from Geldrin for Grand Towers wizard Brownmity + +otherwise go to check maintenance area - disarm door. +barrier is directed locally around the observatory +found a really old blanket, and pillow - really +decayed diff --git a/data/2-pages/19.txt b/data/2-pages/19.txt new file mode 100644 index 0000000..52e767f --- /dev/null +++ b/data/2-pages/19.txt @@ -0,0 +1,46 @@ +Page: 19 +Source: data/1-source/IMG_5133.png + +Transcription: + +(Earthwise) possibly Joy's other hiding place +(Firewise) find a trap door - locked but no way to pick +handle feels hollow. Geldrin used shield crystal +to open + +stone steps into darkness. - down very far. +5 lights on ends in a door painted with white flowers +Air is filled with solemn music in the cavern. +water going through barrier fizzes. +river bank has a little shrine 6 grave stones all +marked "Joy" all have the everlasting flowers on +one has been disturbed. + +Joy - died in chamber +Joy - 3 years old lung infection +Joy - 2 1/2 unknown complications +Joy - 5 years old - (nothing written) +Joy - 9 years old - died from poisoning +Joy - 7 years old birth defect - bones off in the +other & raised + +Follow the stream - quite rocky & roots - mushrooms mildew etc +mushrooms get bigger much bigger than they should be +15-20 mins of walking everything is bigger than +it should be. head out to a cave entrance. +everything seems much bigger than it +should be everything seems to get bigger +towards a point. Massive butterfly flies +past. +13:30 + +* get to a lake massive lily pads & frogs +with massive frog spawn. +Something in the lake seems magical in (centre) + +Put this into the lake nothing happens +14:00 +Geldrin attempts to raft to the middle +but falls off & is rescued by me +give up on the lake for now as dont +have anything to get the magical thing in the middle. diff --git a/data/2-pages/20.txt b/data/2-pages/20.txt new file mode 100644 index 0000000..31f5824 --- /dev/null +++ b/data/2-pages/20.txt @@ -0,0 +1,48 @@ +Page: 20 +Source: data/1-source/IMG_5135.png + +Transcription: + +Back at the observatory keep going round +Arrive the maintenance area - where we think front door +is it doesn't seem to be there. rune on wall +Geldrin copies. +keep going round & original entrance isn't +there - Bed at Earthwise changed to +a flower bed and barrier isn't there. +(Earthwise) + +(Firewise) no trapdoor but instead 2 x statues 1/4 of the +way down each wall. + +Throngore huge muscular. 2 arms 4 legs 2 horns dead +lef h dark goals) crab claws flesh like +god of destruction Taloned human skin +* a decay like hands broken with + flame from + one. +[Rhine] + +Igraine - pregnant elfen woman rose & scythe in hands. +goddess of life & harvest. (Alabaster stone) + +(Air wise) - wall like it would have been the door +but there wasn't a corridor at the door + +go back on ourselves - Statues. same. +(Earthwise) - flowers dead now +Invar goes round alone - to shrines & back dead +goes back round & shout for us to come. +round but we don't hear him. + +(Air wise) - runes are bleeding and seem different +(Demon magic shit) +blood hurts a little bit when touched +Geldrin copies them +Invar gets a bowl - it checks its acidity +* a tiny bit acidic. seems to be real blood. + +(Firewise) - Trapdoor is closed - we left it open. This one +is fully metal. Same lock as the other one +Metal ladder going down to a metal +floor all metal diff --git a/data/2-pages/21.txt b/data/2-pages/21.txt new file mode 100644 index 0000000..32a1010 --- /dev/null +++ b/data/2-pages/21.txt @@ -0,0 +1,44 @@ +Page: 21 +Source: data/1-source/IMG_5136.png + +Transcription: + +around exterior of the room ur 8 glass +chambers 6 empty (6 boys?) 2 viscous liquid with +something in it. books - next to [statue] +it is a non-descript human statue without +with no sex features with arm out +palm down to the floor + +Dirk mentioned hanging his coat on it. Geldrin +tries a ring and it fits perfectly. Dirk adds +his. +Diary - seems to be trying to perfect a clone spell. +matches up with the Joys in the graves + +Dirk checks in the chamber something in +there + +rings start to glow slightly. +15:30 + +back up +(Earth wise) - no bed but barrier split is there +(Water wise) - door is there & pipes etc. +(Air wise) - triangular barrier +(Water wise) - same place both ways + +Geldrin manages to hold the book open +and copies writing - deciphers as +an illusion spell +takes the book. front has an eyeball on it. +17:00 + +* go to look at the moon +crack open maidens dew - good wine +see crystalline refraction of the moon & see +a smaller fragment at the front. what is +separate & much closer than the moon +1/2 way between planet & moon locked in +sync with where the moon is +moon is closer - think it will take another 1,000 years diff --git a/data/2-pages/22.txt b/data/2-pages/22.txt new file mode 100644 index 0000000..d75fb63 --- /dev/null +++ b/data/2-pages/22.txt @@ -0,0 +1,47 @@ +Page: 22 +Source: data/1-source/IMG_5137.png + +Transcription: + +if more magic goes through shield +pylons this will speed it up. +hitting it exactly between the pylons - conjunction +with some of the issues from town crier (pg 8) +Barrier starts flashing & lighting up +seems to be something activating it +Moon shard seems to be coming closer +with the attacks + +[sideways] Day 7 22nd Dec + +Dirk draws boobs on the chest they disappear +after a while +01:00 + +go back to the cart with the box of copper +fashion a lock for the front door of the +observatory + +Take Cromell & Isabella back to town +with carts & horses. +- Restoration cast on Isabella - Seems confident in herself + +go back to barrier to get remaining people + +8 people left - Chorus was looking after them +12:00 + +Geldrin paints wagon white +& we head back to Everchard. +Bucsalik reply - "I'll meet you there" +Birds follow us back. +see 6 horses coming from Provista (Armoured) +Thairwell militia - have their livery on stag & dragon +* Draith (male) healer, Hethmans (male), elf (female) rearing up + +few years ago near ironcroft firewise - something +came through the barrier - Invar was there +Tell them about mind wipe & citizen stealing +lack of militia etc. barrier attacking. + +They report back to lady Thorpe diff --git a/data/2-pages/23.txt b/data/2-pages/23.txt new file mode 100644 index 0000000..2d5d79b --- /dev/null +++ b/data/2-pages/23.txt @@ -0,0 +1,52 @@ +Page: 23 +Source: data/1-source/IMG_5138.png + +Transcription: + +Healer restores the townsfolk slightly. One with tentacle +arm falls off & left with stump + +[sideways] Day 9 24th Dec + +Arrive back in Everchard - streets seem busy & panicky +talking about missing people & odd faces. +13:00 +go to see Brother Fracture. people being reunited +with loved ones, & healing happening + +Earl has gone missing - sheriff taken over & called +for help + +- Core made it back to town - locked himself + in the pub with Mr Peel looking after him. +- earl disappeared when memories come back. +- set a cabin up at half way point +! Thairwell ladies request a meeting with us + (they get told we were heading to Seaward) + +Drop Isabella at cider inn Cider. + +- go to see Core - Core gets Mr Peel instead. + - Core is ok will need further repairs + - came to town from earth wise. + only spoke to say "Core da" +Geldrin thinks he tried to say "Core damaged" +go to see core. Sat motionless in a chair. +Peel thinks he needs more crystal. a repaired Core +came in the post - day after Core arrived - one word on it "GUILT" +not addressed to Peel - Pub been open for 5 years. +"The Guilt" - was the Earl of Brookville Springs + +Back to Cider Inn Cider +take rooms & have baths +!! Basalik - find Groundhog - give coin - old grand tower +penny +doesn't like that we donated the coin +to the church (1,000 year old coin) +keep on good side of mage Judicators in +Seaward. - very structured town + +- Eat & recover +17:00 +- Back to see Brother Fracture. Basalik brought the +coins - he had 10 left brought for 1g diff --git a/data/2-pages/24.txt b/data/2-pages/24.txt new file mode 100644 index 0000000..bcca2cb --- /dev/null +++ b/data/2-pages/24.txt @@ -0,0 +1,45 @@ +Page: 24 +Source: data/1-source/IMG_5139.png + +Transcription: + +* get up & on the road with Isabella + +[sideways] Day 10 25th Dec + +gets towards a days travel & see a +4 storey building - trading post Inn. "The Wayward Arms" +Merfolk on the sign. - get Peel ticket for +the horses. + +* Some play is taking place on the stage + +11 o'clock rooms ready 6 am out +Extended sleep til 8. left stairs 2nd floor +Timothy served us. +elven lady comes on stage & sings + +2 Ruffians (half elf) enter pub ramshackle armour twins +have a killer air about them, +sit down & open a bag on the table + +2 halflings enter seem to be a couple & sit at +lst table by the door. + +somebody brings a giant moth picture down the +stairs & hangs it up... +half elves look at clock. +Staff move people & pull tables together - setting +up for Mirth?!? +hear music. people rush over to the +(Mirth) halfling enters dressed as a ringmaster type -(smarmy) +claps his hands and things appear on tables +Pastries/wine/bottles etc. (general store?) +famous alchemist (Mirth's Azzlejug) +* Back here in 3 days * +Brookville Springs next + +Yadris & Yadrin (Half elves) - Dirk overhears "taking my +mind off tomorrow" sent to investigate - problem +solvers. didn't say what they were solving - work for a lady. +already up in her room. diff --git a/data/2-pages/25.txt b/data/2-pages/25.txt new file mode 100644 index 0000000..9676112 --- /dev/null +++ b/data/2-pages/25.txt @@ -0,0 +1,42 @@ +Page: 25 +Source: data/1-source/IMG_5140.png + +Transcription: + +Day 11 +26th Dec + +! Morning announcements! + +- Pentra city mages high alert due to attack on barrier. Justicars reporting to major settlements +- Shields of the accord report Army moving Airwise led by Baron +- Loggers at pine springs missing +- Heavy blizzards caused travel to Rimesatch impossible scholars trapped. +- Goliaths of firewise deserts seeking refuge in Dunenseed + Sawtooth. Creatures of Air led by 6 armed monstrosity pierced the barrier. Colleges deny possibility +- Bonstock report Gnoll activity. +- Break in at Riversmeet menagerie. Black market confiscations + 50g fine. +- Everchard's Villainous Earl ousted by sheriff + brave deputies. Nefarious activities thwarted. Restoration under way +- Hartswell & Goldenswell armies clash with giant roam firewise of Hiylden. + +Head to Seaward. + +perfect circles of houses with a colleseum type building in the middle - used for horse & dog races etc. + +- Airwise path coming into the city - wagons going back & forth filled with the marble type material used for the buildings & roads. + +Pylon outside of the main walls of the city + +Population elves / dwarves / gnomes + +Park the cart (Paynes horsebreeder) 21:00 +go to colleseum. - midday tomorrow +forge charger race. + +[boxed note] Marble type material with dark blue vein effect + +[crossed out: messy game settings / devices in] +Seaward ran by Stonemasons guild - elf + +Inn - The Rotund Rooster Rooster Tiffany - +Roads closed due to winter so no ice. +Don't have fresh water - have to order it in diff --git a/data/2-pages/26.txt b/data/2-pages/26.txt new file mode 100644 index 0000000..bc7c674 --- /dev/null +++ b/data/2-pages/26.txt @@ -0,0 +1,34 @@ +Page: 26 +Source: data/1-source/IMG_5141.png + +Transcription: + +nearest Inn for a room - Water by Earth, Water, wine or Night candle - road 7, 3 rings Inn. + +Water Elementals - rumors are they can walk through barrier +Some altercations with the council - collective working as a water problem has been in the last [event?] 20 years. + +- Chunky chicken cooker - sponsored by Rotund Rooster Rooster redesigned as used to be a griffin - favorite +- Payneful Gamble - bad pit start time. +- Thunder [belch/belch?] - name + +Inn attacked by water elementals?? - works at the cliffs, no-one else has been attracted + +- charge mysterious owned maybe an outside duke or Earl +- Halfling asks Invar if we have any skulls (green skin Goblin) for his master (He) not allowed to say - from round here. (Chalky) + Pays well for clever people skulls + +go to Night candle - Candle lit - plush furnishing + +reason for the barrier was to keep the elementals out - but rumor is they can walk through +goblin peers into Dirk's room @ 3 am. + +Day 12 (Saturday) +27th Dec + +Head to shield pylon - pylon is like a gold ring with the crystal set in the claw & runes around it +2 guards outside the keep. + +Rumor - walking through chicken farm at night. +Barrier flickers for about 1 sec - happens often (comes from Dunhold Cache) but only for the last few weeks. +rains then. only notice near to pylon diff --git a/data/2-pages/27.txt b/data/2-pages/27.txt new file mode 100644 index 0000000..70e69b2 --- /dev/null +++ b/data/2-pages/27.txt @@ -0,0 +1,37 @@ +Page: 27 +Source: data/1-source/IMG_5143.png + +Transcription: + +Commotion at temple - guards carrying female elf out of the temple - current warrant public 08:00 +Indecency & corruption - cross temple with vast archways for the doors circular altar in the middle +Priest - council fabricated some charges - thinks Architect is dark magic. to make himself smarter - Architect worships light gods? on his 4th term "Ilmen Thion" + +(Bright - only temple in Pentacity? goddess of luck & trickery) +gods? (Hartha) + +[boxed list] +Riv grave 2 yr +dead dwarf 3 yr +Riundil +Ilmen Elf 4 yr +Council +9/1 1g horse. + +Council Issues - barrier & water elementals. +Row 1 ring 3 [box crossed] from centre (Public Forum) +meet Thursday's @ midday 4 hrs. +Representatives Monday Friday. + +- Place bets - The Big Bad Beauty +My missing hangover - 2 runes +from another world travelled from another world +2 guys acting as Shell company for the Guild +Rates 4/1 odds on all - The truffle hunter +- hear a yelp from the side street - Iakaxi has following us (goblin) - tells me to stop letting him follow us & gives me a job on a piece of paper. Goblin scam will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Minty house - rat droppings etc. has 3 skulls sill meet his master when he has 8. - 5 silver for skulls +- Maybe cadavers? +- go back to inn via a temple to see if we can locate skulls. + +Fire temple - war, justice & hunt. +3 people in congregation listening to priest recite poetry about battle against Soot the dragon. +Young priests -> congregation pick up wooden swords & start practicing diff --git a/data/2-pages/28.txt b/data/2-pages/28.txt new file mode 100644 index 0000000..e20d0e1 --- /dev/null +++ b/data/2-pages/28.txt @@ -0,0 +1,39 @@ +Page: 28 +Source: data/1-source/IMG_5144.png + +Transcription: + +Brother Caskus - has problems in town. + +- Water elementals not killing - but heard have deputies found drowned near cliffs with fresh water +- Rivers & lakes in 10 miles are back previously got from wells & then gradually went back +- want to check the skulls for the water differences - (trying to obtain some for Skum) + - 50 years. - coughing sickness no signs of damage other than burning - see some malnourishment at early age + - 25ish. signs of damage to vertebrae stabbed. nothing obvious + +Public records - will be available. Town hall 4th ring waterwise 10:00 +Back to Inn for Isabella + +Hear elves in the city. People really finely dressed. + +Race 1 +sit in Section C +bet - 5s Wimpy Cheese 4/1 - Lost + +Race 2 +bet - 5s Where's Gravy 5/1 - Lost + +Race 3 - 5s - The Galloping Salesman - lost +Dogs + +Race 4 5s - in it for the Sugar - 3/1 - Lost. + +Race 5 Already Bet. +Sphinx style - stonemasons guild +Unicorn - first place vodker - forever 1st +Rot Horse - Payne horsebreeders +gryphon/chicken - The Rotund Rooster Rooster - chunky chicken casserole +Nightmare - on hire - Night Candle Inn +Wooden barrel - Bad barrel makers - By Bad Beauty +Gryphon/owl - 1st? - My missing Hangover. +Win nine 9g diff --git a/data/2-pages/29.txt b/data/2-pages/29.txt new file mode 100644 index 0000000..cc19307 --- /dev/null +++ b/data/2-pages/29.txt @@ -0,0 +1,32 @@ +Page: 29 +Source: data/1-source/IMG_5145.png + +Transcription: + +The Truffle Hunter wins! mice + +Town almost finished - walls up to strength. Water problem too - looking to sort worrying rumours about members of the Council refer to forums. + +odd out of place formal announcement. + +go find Isabella's friends +knock & door swings open - middle class house - blood on the floor of the parlour. +2 halflings hanging from the ceiling by their feet - Male intestines over the floor (pattern?) +Female - looking at us but body upside down & face is right way +- suspect someone has done a divination spell using the intestines +not been dead long - but not warm. +- front door broken open - engineered force. +- physically pushed over candelabra +- Movement but nothing showing a struggle. +- No active magic - divination was used & same type as used at Everchard. + +hear heavy wing beats - Gargoyle 6ft. looks like it is made of clay - not usual in town. + +Isabella says it's from her aunt (family guardians) +Drops bag 50plat and flies off with Isabella. + +Militia come to see what is going on - direct inside & they take us to see the council 17:00 +store weapons in a chest before going in +also my medic bug + +Elementarium - Elf diff --git a/data/2-pages/30.txt b/data/2-pages/30.txt new file mode 100644 index 0000000..b91f1fa --- /dev/null +++ b/data/2-pages/30.txt @@ -0,0 +1,36 @@ +Page: 30 +Source: data/1-source/IMG_5146.png + +Transcription: + +Admits pylon is being interfered with + +Needs Justicar gone - requests us to look into the pylon +Justicar has ulterior motives +get access to shield pylon + +[boxed note] +! 2000g if we keep the information to ourselves. +get 500g now to rest on completion solve or information to help solve - Extra for water Elementals +-200g paid + +[crossed out] saw Tri-moon barrier attacks - they were different. + +Flickers - 5 mins - 2-3 hours +only from sea to seaward & nothing from Everchard direction or Dunhold Cache also +state nothing is coming their way +- started approx 3 weeks ago keeping log of it +- half [elf?] lings? suspect pirate - Captain of ship allegedly has crew but nobody has seen them - people go missing & turn up dead & magically disfigured. + +- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF - she will help us +- water spirits have usually made it through, more are making it through now along with the other elements +- try to keep body count low... + +18:00 + +Retrieve weapons. +sort horses - 1 day paid +get rooms at the Scarred Cliff +go to barrier + +19:00 diff --git a/data/2-pages/31.txt b/data/2-pages/31.txt new file mode 100644 index 0000000..d280676 --- /dev/null +++ b/data/2-pages/31.txt @@ -0,0 +1,27 @@ +Page: 31 +Source: data/1-source/IMG_5147.png + +Transcription: + +guards show us around. + +Gherison - Sage on duty at the moment - gives us the book to view - Time & duration of the flicker +2 weeks. - getting worse. increasing frequency. +Longest 3 secs. very random. +approx 9 am a bout of outages. +none around midnight. +Alarm clock in the home for quarrymen. + +- don't know how far the flickering goes between Seaward & Dunhold Cache +- happens towards the pylon - crawling in a horizontal pattern & don't go past the pylon. + +Crystal has thousands of tiny runes all around it. +none of the runes seem to have been tampered with. crystal is very clean +- meteowolves sometimes come down + +Geldrin touches? the barrier with his crystal shard & it goes crazy - guard said it seems like the flickering but more intense and didn't go as far + +Justicar - just checked the books & the crystal. with a eye glass +Peridot Queen + +Iaxxon - guardsman - guarding quarry, water elementals rushed past him - like he was in the way not attacking him. diff --git a/data/2-pages/32.txt b/data/2-pages/32.txt new file mode 100644 index 0000000..7aec2b3 --- /dev/null +++ b/data/2-pages/32.txt @@ -0,0 +1,32 @@ +Page: 32 +Source: data/1-source/IMG_5148.png + +Transcription: + +Day 13 (Sunday) +28th Dec + +Ileep - got horses & leave for quarry. + +Follow barrier - see ripples seem worse the further away we get - Duration & frequency don't change. Pylon seems to be bringing it back under control. + +ground is very dry & loose - not many plants +get to a quiet point - see a home in the distance coming toward us - green - tall. elven woman black hair - looks eery. Very extravagant. (Peridot Queen) +- strokes my face & joins us towards the cliffs. +- worried when she looks at Geldrin. +- she's seen all 8 pylons. +- made it to the cliff cutter town. Mostly Dwarves & gnomes +- Barrier problem seems to originate by the cliff +walk towards the barrier by the cliff 21:00 + +"cliffs are sheer drops with rifts & barriers." +"water is choppy & quite dangerous" +"Recently cutting close to the barrier" + +- Break into a tool shed for the night +wind picks up outside for a moment +- Barrier around the cliffs is the emanating point, about 20 mins away. +- not much wildlife around here. +Morning wave sounds are getting louder - Raven goes & 2 x sea creatures rushing up the sides of the cliff + +23:00 diff --git a/data/2-pages/33.txt b/data/2-pages/33.txt new file mode 100644 index 0000000..2f5bf65 --- /dev/null +++ b/data/2-pages/33.txt @@ -0,0 +1,32 @@ +Page: 33 +Source: data/1-source/IMG_5149.png + +Transcription: + +Day 14 (Monday) +29th Dec + +! Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. + +06:00 + +- Peridot Queen arrives - has wings - appearance of an elf. + +- Geldrin, Invar & Peridot Queen go down in a lift right next to the barrier (1 meter away) mine shaft with some wooden structure beams +branches off away from barrier & parallel 08:00 +further down wooden wall constructed saying "danger of collapse" hear creature saying "Mun" shoot there human with scar pushing a plank back into the wall. +Peridot Queen pays him one of the old copper coins. + +transforms into a dragon green + +(incident after days ago came +30 years not had any problems until now +bears like bulls shot up [warded?] past towards the wilderness - streaking like a banshee +gnome says "smell like candy & has legs" prob lies! +on dwarf has barrier duty & found a small crystal on last duty) + +flies out of the shaft and Alcana & Dirk see a shape 8:15 + +- see a group of miners & a dressed differently human comes over to them and doesn't see spoke to points to us - human walks the off towards the barrier. + +- [crossed out: one of] the dwarves then attack us 4 x dwarves & 1 x gnome diff --git a/data/2-pages/34.txt b/data/2-pages/34.txt new file mode 100644 index 0000000..d565ac9 --- /dev/null +++ b/data/2-pages/34.txt @@ -0,0 +1,43 @@ +Page: 34 +Source: data/1-source/IMG_5150.png + +Transcription: + +gnome throws a blue rock on the floor +a small elemental comes out & attacks +Geldrin (poss spell effect) + +Manage to knock one out & the guards come over +& bring him round & he says +"he's coming Terror of the Sands is coming for +you all" guard [kills crossed out] knocks him back out. +guards take him back to town. +Private Burke wants us to visit the Maktum +before we leave all have 5g & old copper coin +gnome has two other blue crystals. + +8:50 +gets to 9:00 more obvious. Flickering but +nothing obvious. + +Believe the human may have come through the +Barrier. + +The human came from approx where. He point +of origin. + +- invisible Joy appears & tells Dirk they are +in pain & it burns - asks for Dirk's help. +- the thing causing the barrier issues? + +9:50 +- Follow the Salt trail from the water elementals. +Salt trail thins out but no sight of them +& after a time land becomes more lush +(approx 7 miles from the barrier) with insects +which we didn't see any before. + +11:00 +River ends on the cliff and comes off in +a waterfall (shallow river) +Path ends at the river. about 20 years old. diff --git a/data/2-pages/35.txt b/data/2-pages/35.txt new file mode 100644 index 0000000..1639150 --- /dev/null +++ b/data/2-pages/35.txt @@ -0,0 +1,43 @@ +Page: 35 +Source: data/1-source/IMG_5151.png + +Transcription: + +- River appears to contain water elementals +elemental says +"Pain gone, no hurt me +you come take me like others take we escape +through pain, closest, good water" +Geldrin frees the two in the blue crystals. +elemental wants us to free the rest. +death dome - came through hole made +for poison water. hole hurts. [Monde? crossed out] (in the sea) +[Elemental shelters ->] trying to free some creatures trapped underground. +Poisoned one - made of poisoned crystal one. +Powers death dome. Garadwal was one until he +escaped. +moon rock full create hole - two moons ago += scaly dragon with web fingers. goes through +dome - blue/grey colour - [one formed crossed out] +one big one with four arms - work with +poison water & Garadwal with tridents + +- hole by cliff face at bottom of sea +occasionally somebody/thing goes down to annoy +the crystal + +13:00 +- head back to the town to speak to militia/guards. +* Salias - the guy our amulet is talking +about. - earth + water +- soon free like our master Garadwal - Sand earth & fire. +Barrier is enslavement. +* 8 altogether - soon find hidden lair of oppressors - +used us as batteries. + +[diagram left] +ooze? / earth / sand* / fire / smoke? / air / ice? / water +magma lightning. + +[diagram right] +ooze / earth / sand / magma? / fire / void? / smoke? / air / lightning / ice / water / salt diff --git a/data/2-pages/36.txt b/data/2-pages/36.txt new file mode 100644 index 0000000..926f223 --- /dev/null +++ b/data/2-pages/36.txt @@ -0,0 +1,43 @@ +Page: 36 +Source: data/1-source/IMG_5152.png + +Transcription: + +- Theories - Needs of the many outweigh the +needs of the few +- They tried to destroy the world & got locked +up +- Preemptive locked up + +Water back - 10 miles down the path from Seaward (airwise) +- 10 miles down the coast from the barrier + +head back to Quarry +16:00 +Door the left right next to the barrier +18:00 +2 panels missing from the hole. +Passage way descends down - behind the wooden +Panels. Goes down quite a way - has been +excavated. on purpose not a mantle seam. +widens out & opens to a really old built wall (1,000 years old) +- descends into underground structure. +- right old door - sign of aging handle hurts +old gnome walks out. realises we are there. +* gives him a coin. Underbelly? - truce in +place. + +- [go gnome crossed out] get a tour prison +down corridors - turn left many times +6 corners huge metal door - dragon head holding +ring - go through - see barrier at far wall. +smaller barrier encompassing a massive salt +dragon - sweating salt for 20 years into the earth. +they are trying to free it. +room was full of ooze & eels & +copper pylons were there but they removed +them. + +- runes on floor barely visible as covered in salt. +another room has 4x curved copper pylons. +removed 20 years ago - Dragon was already seeping salt. diff --git a/data/2-pages/37.txt b/data/2-pages/37.txt new file mode 100644 index 0000000..b9d043a --- /dev/null +++ b/data/2-pages/37.txt @@ -0,0 +1,39 @@ +Page: 37 +Source: data/1-source/IMG_5153.png + +Transcription: + +- Keep Justicar out of it down here. + +- down to the left is the original entrance. +go look at it - similar to a room we have seen before +in the observatory? examined in the last 20 years + +[ ] Big black dragonborn comes in - tourguide's boss - Not many around. + +- Cult looking for a laboratory + +Basalisk - There's a laboratory of a similar vein +20 miles earthwise along the barrier. + +20:00 +Head back to town. +* Common Room - sharing with one other person who hasn't +shown up + +* Message to Basalisk * +He comes to us +knows little about Salt elemental +Black Scales - mercenary group work for Infestus +(Black dragon) +Basalisk went to check observatory - couldn't open +the chest. & couldn't get in the golem underground +room either. + +Garadwal +prison at lake by lab? - ooze one. +frozen near Rhinewatch - ice one +Garadwal - Sand? seems wrong as buried North +of Aegis-on-Sands is he an elemental? + +go speak to Elementarium guy in Seaward. diff --git a/data/2-pages/38.txt b/data/2-pages/38.txt new file mode 100644 index 0000000..04c8178 --- /dev/null +++ b/data/2-pages/38.txt @@ -0,0 +1,44 @@ +Page: 38 +Source: data/1-source/IMG_5154.png + +Transcription: + +Day 15 (Friday) +30th Dec + +- Head back to Seaward +Follow a caravan of stone back to Seaward. + +19:00 +- get to town - raining +Need to see Elementharium +actually dressed this time. + +Quasi Elementals - don't have their own plain. +Known 8 major plains. light & dark effects it +to create the 8 main ones + +They became their own things & started to fight - Not become that powerful +E + W + L ooze/slime/life - spark of creation +E + W + D Salt makes water bad & crops won't grow. +E + F + L Metal - Positive construction +E + F + D Magma - Destroys farmland etc. +F + A + L Smoke - +F + A + D Void - absence of everything - Nothingness +A + W + L Ice -- +A + W + D Storm - + +Where does sand come into this? + +goes down the trapdoor after talking to us +about salt water elementals. +Dirk listens - talking to somebody about it +they don't exist. salt & water are their own +things - Pollution <= Salt elemental poisoning the water +Elemental +- Dirk - crystals helping the barrier? Elementharium [crossed out] believes it. +But he needs the Justicar to believe it so +she leaves +Geldrin to try to sway guard/towers to get +her to leave. [Rhonati?] or Hevii might have an obsidian bird to +relay a message. diff --git a/data/2-pages/39.txt b/data/2-pages/39.txt new file mode 100644 index 0000000..f759aa3 --- /dev/null +++ b/data/2-pages/39.txt @@ -0,0 +1,44 @@ +Page: 39 +Source: data/1-source/IMG_5155.png + +Transcription: + +Arrange to meet back with him @ 9:30 +Dirk asks about Garadwal - he goes down to +the chamber & retrieves a Dwarf Skull & asks +it the question about Garadwal +The information you seek is not for your kind +he is imprisoned in the prison of the Sands +Brutor Ruby Eye - knowledgeable being wizard of +great power + +- Shows us the skull room - he talks to them +for information + +What would happen if Garadwal escaped? +it would be bad indeed. The barrier would +be weakened by the loss of one of the 8 +he was the only void they could find. if one +was to escape it would be him. +feedback from the destruction of his prison would +have damaged the others. +Geldrin tells him of the tri-moon shard +Brutor knows of the first crack Envoi was tampering +with it for his own means tampering with the containment +device & if something happened to him it would be +bad & cause the crack. +Wizards didn't agree of their entrapment but they +all agreed Garadwal needed to be contained. +ooze was a good one. +ice & storm [crossed out] were put in the same chamber +as land was tricky to be dug +* Stop leaking? maybe sigils out of whack +Brutor killed by Black Dragon +Demi lich - how he was made. + +- maybe a way to reverse the polarity +! Spinal! Brutor's password. + +[boxed note] +Winter Roses? +Envoi's password diff --git a/data/2-pages/40.txt b/data/2-pages/40.txt new file mode 100644 index 0000000..c89cec5 --- /dev/null +++ b/data/2-pages/40.txt @@ -0,0 +1,49 @@ +Page: 40 +Source: data/1-source/IMG_5156.png + +Transcription: + +- Halfling killers +- 8 things linked to the poles +- Pirates +- Elementals + +Received downpayment +for our work. 50 +per 200g +20:30 + +- Put horses into the stables +- Stay at the Night candles +- to [crossed out] + +Day 16 (Saturday) +31st Dec + +Head to town hall to see Rewi - Lovelace - Gnome. +Room is very messy. +Obsidian Raven is pulled from a drawer +called Errol (But not really) +Justicar causing more problems than solving. +Request further evocation spells. + +Rewi - Thinking on how to enhance the pulley system +at the cliffs. + +10:00 +Retrieve horses & Cart and head Earthwise. +Invil Newhaven - Earthwise 4 miles, Stonebrook Earthfire wise. 3M +Continue Earthwise towards Newhaven. +Land starts to get drier & seem to +be at the edge of the salted area +12:00 +relay at a well - the only freshwater [area?] +in the area - others have been boarded up +as water is bad. +Mayor runs a farm - keeps chickens. +fill up water skins. + +- Road out of Newhaven in disrepair +outside of town grass dries up again. +town seems to have good water as an +anomaly. diff --git a/data/2-pages/41.txt b/data/2-pages/41.txt new file mode 100644 index 0000000..acb2940 --- /dev/null +++ b/data/2-pages/41.txt @@ -0,0 +1,44 @@ +Page: 41 +Source: data/1-source/IMG_5157.png + +Transcription: + +Not many birds around. + +Nothing around to indicate a laboratory. +Obsidian Raven appears - suggests meet up with +Justicar & work together - wants our location +- "don't give it to him". Flys back to Seaward. +- Keep going to 10 miles away & 1 mile from barrier +- Find charred earth - last few days. +campfire & rations - cultish? +see some tracks 5-6 people camped prints show +they are searching for something. +Nothing obvious. Follow tracks towards +barrier. they stop & we see acid +corrosion & blood speckles which look to +be swept over - Black dragons have acid +green is mist + +[boxed note] +Brutor +Abjuration +wizard of +Tor +(Rocks) + +- Geldrin checks the compass - Finds weakish signal +& we follow it about 30 ft down & +see purple & find 10 ft stone walls, with a +door - password opens it (Spinal) + +Enter into chamber 2 columns in Dwarf +form guard a door. Spinal opens the +door. + +- go left down corridor. +Enter large room - stone benches & lecture +(seat 20-30 people) +Jagged rock man - representation of Tor +Tor Protects - written underneath statue +No visible disturbance to the dust diff --git a/data/2-pages/42.txt b/data/2-pages/42.txt new file mode 100644 index 0000000..7b5ddc8 --- /dev/null +++ b/data/2-pages/42.txt @@ -0,0 +1,41 @@ +Page: 42 +Source: data/1-source/IMG_5158.png + +Transcription: + +Book on lecturn - Book of Ancient Dwarven +language on Tor + +? head across the corridor - room same +size but only contains teleport circle +(one set) Geldrin takes rune number +Dirk finds footprints that have been +tried to be covered up & lead down the +Corridor fairly recent. ago could still +be around as none go back on + +Follow footprints to a closed door +footprints seem very purposeful +ruby in the dwarf face releases +some chains which open the door + +- use my crow bar to hold both of the +chains to keep the door open. +Geldrin sets an alarm on the hatch & +teleportation circle. + +go into another door (2nd left from the hatch) +purple glow from the room. paper work on the +walls of pylons & tower structures + +Bubble of shield energy in the middle +Scale model of the penta city states +suspended globe of elements at each of the +compass points. +[crossed out text] There is a city fire airwise +of lake Azure half way between the lake +& Aegis-on-Sands. + +No sign of any of the prisons or the labs on +the model. +Elements don't move. diff --git a/data/2-pages/43.txt b/data/2-pages/43.txt new file mode 100644 index 0000000..35d635f --- /dev/null +++ b/data/2-pages/43.txt @@ -0,0 +1,37 @@ +Page: 43 +Source: data/1-source/IMG_5159.png + +Transcription: + +Teleportation circle activates. retrieve crowbar +& hide in diorama room. +1 person seems to come out & goes to +dwarf face door. to door opposite us then +in - human - desert style robe - Arabic look to +him piercing blue eyes. - doesn't work for the +black dragon. +has found several circles & +he is a collector of magical trinkets +Make a deal - he gets all the [coin crossed out] coin - gold & silver +we get first pick of the treasure. +he gets the next and then we get +3 other picks - even split + +Loung has a scepter that seems out of place. +Dirk takes it and an alarm goes off +all doors are now arcane locked. +go back through dwarf face door. +go left mouth appears and tells us +traps are active. +first door - ten skittles at the end of a lane +power table a darts board with 3 darts in +the 20. +Poker table is magical - whole room is magical +next door totally empty room... +next door - silence spell goes off! Room is full of +rows & rows of crystal balls. (Memories but we +don't know that) +back in the lounge hidden box behind the +& silence spell stops + +go back to crystal ball room diff --git a/data/2-pages/44.txt b/data/2-pages/44.txt new file mode 100644 index 0000000..1ee6383 --- /dev/null +++ b/data/2-pages/44.txt @@ -0,0 +1,37 @@ +Page: 44 +Source: data/1-source/IMG_5160.png + +Transcription: + +- Memory of goliaths helping to build grand towers + +Find the hall with the most scratched plinth - memory is filled with dread - Acid +smell like house scarred by acid & dwarf skeleton. + +- get one grand towers hall - see 4 other people in a circle around teleport +circle - human (male), elf (female), human (female), very similar to the elf, +reef jewellery, stag design on dagger hilt, helping (Enoi) +purple crystal rises up from the circle. + +- before acid splash house see tower talking to Enoin - asking about if it's affecting anything. +Joy sees of the alarm. +Ruby eye takes the dagger & splatters blood and stops the alarm. "Just his blood?" + +- before - thick white robes, Enoi talking to elven woman from circle. Joy feel content, +a dwarven lady next to him, but forlorn when looking over at Joy & Enoi. + +- Male dark elf next to Enoi being introduced - in observatory - tell Enoi she doesn't +trust him. Elf has magic. We don't see - craft flesh. Enoi wearing 5 rings. + +- Hot Spring - opposite dwarf lady (Brookville Springs) +early date - falling in love + +- Standing in a room in his building +purple dome & copper pylons with blackness & a shadow. +ask shadow what it thinks +Shadow replies saying no not while it is trapped & threatens calamity. + +- Nice room intricate vine patterns elven mage asks about change - nothing - Browny +retreated to grand towers. Dwarf she is here worried about it - (Warm) Secret: + +Think Browning is going to cover it all up - thinks if people know how it works then they will ruin it. diff --git a/data/2-pages/45.txt b/data/2-pages/45.txt new file mode 100644 index 0000000..88c7e45 --- /dev/null +++ b/data/2-pages/45.txt @@ -0,0 +1,34 @@ +Page: 45 +Source: data/1-source/IMG_5161.png + +Transcription: + +- last one - see him in mirror wearing robes +book & chain or staff. Looks down under mirror & hand on floor. Stone opens up showing skull, +puts 2 crystals in chamber & for protecting. + +- Pythous Aleyvarus? Blue dragon. + +Ruby eye seems to have planned the dome +5 pylons & 5 more around the Grand Towers to make it work. + +Early periods where he's protecting towns from elementals. + +group all fighting 6 armed rock creature +when it breaks they all make a pact. + +- Male human points him to a crater with a massive purple rock & Enoi says he will build +an observatory to track it. Brutor says it is what they need. + +- Warring kingdoms - point together to construct everything. +Huntwall - Goliaths kingdom (the one on in the mini dome) +goblenswell + +- turning on of the dome at the point of turn on something flaming bursts through +and pouring bursts through the barrier & is attacked. + +room opposite - big engineering astrolabe seems to be the planet - which is a dish - with the moons 15:00 +with their orbits in real time. + +- Display shows the date & time - current date +31st December 1011 diff --git a/data/2-pages/46.txt b/data/2-pages/46.txt new file mode 100644 index 0000000..558bd96 --- /dev/null +++ b/data/2-pages/46.txt @@ -0,0 +1,48 @@ +Page: 46 +Source: data/1-source/IMG_5162.png + +Transcription: + +Room next to orbs. +protection from elements spell +open the door boulder elements in there & try to get out +slaves? made to dig - leave them there + +Down the corridor. +room opposite same place as calendar room not locked or trapped - room is empty mirror image of calendar room. + +* opposite to boulder room +smaller room - empty aside from picture of moon with holes +look like big gem holes. + +* opposite orbs +Feel weird opening the door +glass cabinets in pedestals & shelves with various nick nacks +brass plaques & glass domes over them + +M carved with flowing water - bottle - "Containment token from Lord Hydrannis" +stones at the top 2 are glowing. + +M wooden sconce - spear - flames coming from bottom +"Spear of Ciara" (fire god) +1 magic bounds (magic missile) + +Ditto holes +wooden shield? +1 save/disabled once per day + +> great sword - stone & bone hilt with steel - darkened steel blade in friendship +- sword given by kings of the goliaths +"To the spell ones on the crafting of your big building" + +T cookbook holder - with a book very delicate +"book recovered from grand towers upon discovery" + +- Dwarf mannequin green silk dress - gold trim, ornate & tiny emeralds along the trim +"Worn by Princess Seline to the Grand Ball" + +> Cushion - small red gem - garnet += no plaque +- size of the moon holes +plain plinth writing underneath. + +> Coin press - grand towers pennies +"press used for souvenir pennies" diff --git a/data/2-pages/47.txt b/data/2-pages/47.txt new file mode 100644 index 0000000..af63441 --- /dev/null +++ b/data/2-pages/47.txt @@ -0,0 +1,39 @@ +Page: 47 +Source: data/1-source/IMG_5163.png + +Transcription: + +M Jar - eyeball in fluid +"My Eye" +scyris eye can scry once per week + +M Book - sealed not open - made of Tan leather & looks unsettling - Platinum lock +human teeth are around the edge +"Noctus Cairinium Grimoire" +lock looks like it's an adult human. [unclear side note: blue, eldritch] + +- M plinth wheat sheaf - pillow with marble cube radiating a yellow glow +"British cube a gift from the golden field Halflings" +next child Ssethon + +- Bottle - wine shaped +"first pressing of Sigerne - midh - iel" +Maidens dew drink + +M Ring - looks like bug hunter ring - ring of protection +1 +"Failed attempt to recreate my stolen ring" + +M Comb - dragon bone & jade - details carved of a forest +toothless toothbrush - deja vu +"gift from the elven princesses to my wife she never got on with it" + +V - Scepter - silver fine golden filigree - white seaward gem in the top +"staff gifted by the merfolk of the great sea" + +Gem writing - "time existed before me but history can only begin after my creation" calendar room/library + +Celestial book - tower seems to be the centre of the world & don't know where it came from - clues - +Geldrin got a vision when reading it. Saw 6 primeval elements looking down on the world. + +Geldrin's Alarm goes off - see figures at the end of the corridor (4) burly - black dragon born. +They hear alarm - "The alarm's going off somewhere in here (Draconic)" diff --git a/data/2-pages/48.txt b/data/2-pages/48.txt new file mode 100644 index 0000000..4aec5c3 --- /dev/null +++ b/data/2-pages/48.txt @@ -0,0 +1,38 @@ +Page: 48 +Source: data/1-source/IMG_5164.png + +Transcription: + +They want us to leave, claim it in the name of their master. +Shields have mosquito on it. + +Create a shield wall & we yank crowbar out. +Fight 3 1/2 swords +4 shields mosquitos +70gp 4 x tower pennies + obsidian bird. Errol. + +Errol - lost message was gnome giving our location (Rawi) +to black dragon? + +Red gem found under plinth under Celestial book +"The floor of my ship is decorated in equal parts with riches, tools, weapons & love" +- games [unclear/crossed out] + +Next room - walls & ceiling are blackened - kitchen +nothing in the oven +Jar containing gem +"The rich want it, the poor have it, both will perish if they eat it" nothing? - right here + +Barrel seems magically sealed - [crossed out: with] rune for the cold beer. +Contains a jar with a hand in it. +hand is Ruby eye's and has blood which stopped the alarm. + +Next room is warded & locked. + +- Previously empty room is now full of books +control earth elementals, Tan gems for spells, warding. +Information on how to construct crystals for magic. + +gem inside a book +"Although I'm not royalty, I'm sometimes a king or a queen, and although I never marry I'm only sometimes single" +Bed ✓ diff --git a/data/2-pages/49.txt b/data/2-pages/49.txt new file mode 100644 index 0000000..d206946 --- /dev/null +++ b/data/2-pages/49.txt @@ -0,0 +1,32 @@ +Page: 49 +Source: data/1-source/IMG_5167.png + +Transcription: + +Summon unseen servant in the elemental room + +gem Elemental Room +"in my first part stir creativity & in my full form I store the results" museum ✓ + +gem Orb room behind an orb +"You have me today, tomorrow you'll have more, as time passes I become harder to store, +I don't take up space and I'm all in one place, I can bring a tear to your eye or a smile to your face" +- memories - orb room ✓ + +memory is "if you got here you got my message, only clue is based on the layout of my rooms. When you get inside you'll know what to do" + +gem in Calendar room +"I ignore the start of this recipe just scramble, hidden" +kitchen? ✓ + +Bedroom - seems to have a womans touch, tapestries, rugs etc, wardrobes, drawers, full length mirror, +chair, fireplace. + +compartment under the mirror - skull with 2 gemstones +rolled up paper in the eye socket behind big gem. +(if you feel I've lived a good life this is the Denouement (final part, finishing piece) + +gem in the other eye. + +"They are never together, yet always follow one another, +one falls but never breaks and the other breaks but never falls" calendar ✓ diff --git a/data/2-pages/50.txt b/data/2-pages/50.txt new file mode 100644 index 0000000..9e03718 --- /dev/null +++ b/data/2-pages/50.txt @@ -0,0 +1,45 @@ +Page: 50 +Source: data/1-source/IMG_5165.png + +Transcription: + +Put all of the gems in the slots and room +opens. purple sphere but doesn't let light through +void creature? wasn't used as it may have been +too weak + +- Seems to be a self contained barrier + Void creature wants to be let out +- The diviner - the one who stole his brother - the twin we killed + +Door +Mechanical trap - activates something in the room +Magical trap - teleports to the room + +Pythus - takes creepy book "Celestial book" +Dirk sword - scepter of the merfolk +Me } coin press / cube +Inver ring of protection / potion bottle +Geldrin spear / eye + +Pythus - gives Geldrin a scroll of teleportation & goes + +Geldrin takes eye & scrys on Pythus +- Sand stone cavern, pile of gold on top is a blue + dragon ([crossed out: Serpent blade]) reading the skin book (all pages made + of cured human flesh). +Seems to be at the edge of the desert near +"Salvation" + +Back to void room. +Will tell us what is in their room in exchange +for freedom. What is in the room will help release +him. Rubyeye wanted to live forever +went in with elven woman + dark male ([uncertain: Envil]) +just a fragment of the void but if added to the +others can get more powerful but only a tiny bit + +Inside a key looks like pylons place against a barrier +circle of copper and turn it - talking like barrier +isn't active +pylon for his prison as well as [crossed out: unclear] [uncertain: ankhir] diff --git a/data/2-pages/51.txt b/data/2-pages/51.txt new file mode 100644 index 0000000..9b0e2d1 --- /dev/null +++ b/data/2-pages/51.txt @@ -0,0 +1,40 @@ +Page: 51 +Source: data/1-source/IMG_5168.png + +Transcription: + +use the ruby to open the door +then destroy it - don't give it to rubyeye as he wants to use it to become immortal. Demi Lich. + +go through door next to void +4 plinths - by the door are 4 copper pylons +look like they would go over voids force field. + +1 & 2 metal circles runes all around (copper) +1 - steering wheel size +1 - over a meter, stored upright + +3. Dragon skull - Alsafaur dog size. + +4. Book same lock as on the creepy skin book. +made of leather - unpickable lock. + +Room possibly storing one of Enoi's ring - it was under the skull. +skull is one of my kind - veridian dragon born, +dead for approx 1 thousand years. + +Enoi's ring +- a sacrifice made to live eternal, father & daughter + +Book (writing around the edge) - old dead language +- The memoirs & learnings of Aldaine Hartwell. +needs a powerful identity spell to learn the command word to open the lock & book. + +Mosquito's, woodlice & moths are now around. +rain storm - + +Void will help as long as he is not detained. + +- lightning strike is seen although underground + +Try to let void out diff --git a/data/2-pages/52.txt b/data/2-pages/52.txt new file mode 100644 index 0000000..48c53c1 --- /dev/null +++ b/data/2-pages/52.txt @@ -0,0 +1,27 @@ +Page: 52 +Source: data/1-source/IMG_5169.png + +Transcription: + +push pylon's against his dome - opposite pylons seem to switch it off very slightly. +Ring by the dome, turned & [crossed out: attacked] attaches to the pylon. One full turn releases the dome in that quadrant. + +* Void releases a circle of obsidian to contact him with. + +1. take his ring & book & small ring. + +- remove gems from the moon face lock +- head out & close the initial door behind us 18:30. + +massively overcast with the storm, air is thick with insects - moths/mosquitos, ants etc. + +circle of storm 1 1/2 miles wide moving unnaturally. + +Push of barrier looks like 8 massive claws pierces through - black dragon seems looks to be trying to come through the barrier. +he wants the remains of his son +- seems to be the skull in the sealed chamber +go back & get it. + +Missing the side of his face - think ruby eye did it but he may have started it by killing his son! +place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. +takes the skull & says we are even (for killing his men) diff --git a/data/2-pages/53.txt b/data/2-pages/53.txt new file mode 100644 index 0000000..9b2faf2 --- /dev/null +++ b/data/2-pages/53.txt @@ -0,0 +1,66 @@ +Page: 53 +Source: data/1-source/IMG_5171.png + +Transcription: + +he flys off & Thunderstorm goes with +him. + +head back to Newhaven with the cart. +go to pub - picture of 5 hands together making +(The Pact) a star. +silver dragon born behind the bar +golden rim spectacles +Halfling wait staff +Tabaxi bar maid +"Gelandril Thurtall" +been here 10 years +it's said the 5 wizards used +to meet here. + +Drayven born seen locally +- Silver Thurtall +- Copper sporadic + White +- Black + +[sleep] + +Day 17 (Thursday) +1st Tan +17 days until Tri-moon + +Goblin looking for us -- Scum. +had a message for us. + +find Scum as we leave the pub +apparently - warrant for our arrest +- Treason - Conspire against the + Towers to break barrier + +Scum - telling Clementarium to meet us with +Ruby eye skull (1 mile outside Seaward) + +Sent message via Crow to grand towers +saying we [are] going to Everchard, +to put them off the scent. + +Dragons seen +[crossed out: Veridian] +Blue (Pythas) +Black (Infestus) +Silver (Thurtall) +White - The ancient [Anaraleth] +Red? - soob + +1pm + +Message to the Basilisk +arrive at possible meeting point - waiting +for nearly 3 hours - Cart comes off road with +a human onboard. don't recognise +Seems suspicious +1 Box contains grand towers pennies +Council ask for him to transport [tubes] to +Fairshaws - The cart (Garick Black) +- looks like the gnome sent it diff --git a/data/2-pages/54.txt b/data/2-pages/54.txt new file mode 100644 index 0000000..2feb174 --- /dev/null +++ b/data/2-pages/54.txt @@ -0,0 +1,43 @@ +Page: 54 +Source: data/1-source/IMG_5170.png + +Transcription: + +Manifest + +1 currency - Towers pennies +1 provisions - Ash Jerky ??? +2 armaments - spearheads Alvoo - trident heads + copper ends tipped in copper +1 waterproof paperings - reams of enchanted waterproof + paper for salt water only. +1 Keg +1 tools - heavy duty - ship building? +1 misc goods + +should have gone out in 2 days with + +Invar [crossed out: Dith] knocks the driver out as he +see what looks like Elementharium riding + +Gnome seems to be trying to clear the decks. +Elementharium doesn't know about the spearheads etc. +wants to set up a meeting with Lady Thurtall! +they have a council to discuss security +matters within the dome + +gives us the Ruby-Eye skull + +Jerky bag contains a hemp bag - pungent +sickly sweet smell - reminds me of [winter] +Rose spice - but narcotic + +* Ruby eye infuses son - spawn of evil - needed a powerful +sacrifice - for a friend (Anvil) +- Salt dragon leading - worried tampering with the life + may have weakened the force - +- Re-inforce the barrier - if we don't possibly weakens the barrier + fix by refilling the voids + or safely disable the barrier - turn off with + the failsafe button in grand towers. +- Weird skin book - grimoire Noch's Caardium - forbidden magic diff --git a/data/2-pages/55.txt b/data/2-pages/55.txt new file mode 100644 index 0000000..a7b7703 --- /dev/null +++ b/data/2-pages/55.txt @@ -0,0 +1,46 @@ +Page: 55 +Source: data/1-source/IMG_5172.png + +Transcription: + +To stop Tri-moon shard we would need + +- Create a device to repell it but barrier would + need to go down to do it. + +- Relationship with the merfolk? (fish men) different people + than those invited into the barrier. Great helpers to + set up barriers + +- Thinks Browning had something to do with Goliath + settlement disappearing from the history, [must be traces] + Green dragon seems to be residing in the + area, + +- White Dragon - helped to build the dome. + Reds [descendants, murdered], no blues. + +- Elementals liked to attack & this is why + the barrier was put up +- Tower was perfect place but needed more. + - Backup plan for the void elemental slashed + in his safe. if not there need to find + another + +- giant Gargoyle approaches, rolls a + carpet out with a teleport rune on it. + tells us to get on the rune. + +"Thurtall!!" + +Appear in a lush castle room, at Thurtall +sat at head of table seems to be Lady Thurtall +(loudly approaches up to us) +stood beside [shunter/shutter] lady +about 1ft when the barrier went up +4 chairs by the rug +- Trip in the sky - Basilisk appears with +- Lady Catherine Cole - Earl of Stronghedge (Basilisk is Bodyguard) +- Tiefling male takes another seat - portly - appears in a purple flush (The Guilt) +- Valkyrie woman walks in - Earl of Ironcroft firewise - flanked by + 2 dwarves. diff --git a/data/2-pages/56.txt b/data/2-pages/56.txt new file mode 100644 index 0000000..c50218a --- /dev/null +++ b/data/2-pages/56.txt @@ -0,0 +1,47 @@ +Page: 56 +Source: data/1-source/IMG_5173.png + +Transcription: + +Catherine Cole vouches for me +Valkyrie vouches for Invar + +Thurtall talks to ruby eye - he was a friend of her +mother's and she hasn't aged much for 1,000 year +old. + +- Tabaxi male strides in - looks a little older. Hooka pipe + floats beside him, sprawls on the ground Earl of Salvation. +- small group of like minded to protect the barrier. + want to maintain stability of the barrier. + news reached them about the fragment. + +Concerns did friend awake The ancient one +& reported several +issues near Runewatch. + +- green dragon responsible for + destruction of Dirk's homeland. +Rubyeye [crossed out: Dith] blamed [Dith's] kind for helping +the dragons. +It's said Veridian dragon is +teaming up with the red dragon. + +* Keely Caardenalb's research maybe of use +(she lives in the desert) + +1. head to merfolk. +2. get crystal from the water +3. speak to ancient one. + +We pass off the twin mum +Elves were first on the earth. +everywhere there was light and with light there was +dark. in this came life & sprung a couple who created +mate & so did he, they then became the gods +light & dark fought & because of this the physical + +- leaking elemental prisons +- Garadwal +- void on the loose +- shield crystal in the sea. diff --git a/data/2-pages/57.txt b/data/2-pages/57.txt new file mode 100644 index 0000000..fa8571b --- /dev/null +++ b/data/2-pages/57.txt @@ -0,0 +1,41 @@ +Page: 57 +Source: data/1-source/IMG_5175.png + +Transcription: + +world was made. lots of fighting & then they made +a truce where each didn't go into each other +territory & created our 12 gods. The decided to meet +on the combination plain but it was difficult so +created 6 Excellences & they fought gods needed armies +started fighting but then they got their own free +will & thrived in certain places. The guys +with multiple arms are the excellence. 5 is a +Holy number as it's seen as removing the darkness + +Basilisk - getting someone to meet us in Fairshaws +or Freeport they will carry a Winter Rose. * +gave him the coin press & told him +the coins in the cart were a crate of them + +Back to our Cart 5:30 +head down the main road toward Fairshaws + +start hearing birds & animals etc. 10pm +find a place to camp for the night + +Dog going around with the twins & approaches the +camp 5 attacks & die [2am] + 3am. + 11am + +Day 18 (Friday) +2nd Tan +16 days until Tri-moon + +Back on the Road. +uneventful day heading to Fairshaws. + +Make up camp again + +Nothing happens diff --git a/data/2-pages/58.txt b/data/2-pages/58.txt new file mode 100644 index 0000000..c473159 --- /dev/null +++ b/data/2-pages/58.txt @@ -0,0 +1,43 @@ +Page: 58 +Source: data/1-source/IMG_5174.png + +Transcription: + +Day 19 (Saturday) +3rd Tan +15 days until Tri-moon + +approach Fairshaws see gold sands, white plaster +buildings. - looks like a Cornish Town. + +go through town to the harbor to get a boat +Temperature is oddly warm for this + +Pride of the Penta cities - Galleon take passage +Cabin 17. Figure head is a wooden shield Crystal + +ship on the horizon. Captain seems panicked +and says to try to outrun it. Not sure +what it is yet + +Hostess Lady chants & brings forth great winds +& a storm. + +Tiny flame Keely breaks out of the buffet table +heat lamps & sets a table alight then she +attacks us + +Merfolk - they've never done that before. +- Pirates - has been attacking people - + more recently. +- creatures that can petrify others by looking at them + [check]150g if we need to fight [check] 5g if we don't + +- Male half elf - bit of my kind - wearing travellers leathers, [permitted] + [icon] 10g +- Elderly dwarf woman - poor with a silver chain - worried when relieves + eye contact with Geldrin - Beautiful +- Silver Dragonborn - Bard - Beautiful. + +Ship is approaching Black sails with snake heads +seems to be propelled by water not wind. diff --git a/data/2-pages/59.txt b/data/2-pages/59.txt new file mode 100644 index 0000000..e8fb5e5 --- /dev/null +++ b/data/2-pages/59.txt @@ -0,0 +1,37 @@ +Page: 59 +Source: data/1-source/IMG_5176.png + +Transcription: + +(Kairbidius) +Pirate - big brimmed hat & worn mismatch pieces of clothes +Salinus? he calls on Salinus - worn - calls forth +salt elementals, +kill him & his crew +- free passage on any of their ships, & 400g +receive Scimitar +1 - attune for water breathing +Handblow Pistol of Never loading +1 (D8) noisy + +Retreat to cabin with a cask of rum. + +Turtle Point - docks & nearby look like they could be +under water at some point - be back for 9am + +This is the only town on the Isle +Turtle men seem to be the locals +3rd road left 3 building - Sailors Rest +Take a shrine tour - Shrine to the great Turtle. +Merfolk - the accordsmouth - look after the Turtles +we stand on the back of The Great Turtle +- 200 yr life span + +Pre Barrier, great Turtle came into this world, +trying to escape his realm, Trying to get +on his way & picked them up. Diverted to our +world. Rooted his feet in the ground, they believe +he is still awake. +Shrine is a fountain made of the white +stone Seaward is made from. Fountain is quite +elaborate. Here is a [shelter] Shrine but it is private +had a multicore attack then using his path +combination of different animals diff --git a/data/2-pages/6.txt b/data/2-pages/6.txt new file mode 100644 index 0000000..9098093 --- /dev/null +++ b/data/2-pages/6.txt @@ -0,0 +1,56 @@ +Page: 6 +Source: data/1-source/IMG_5120.png + +Transcription: + +Fire looks like it was burnt-out yesterday +upstairs looks old. - Double Bedroom & 2 sets of singles +elder couple. 1 many much dead man +1 slightly smaller. + +- Creep over to the barn & see a row of sheep +heads - seem unnaturally agitated. hear unearthly bleat +Breaks out of the barn. - Massive pile of melded +sheep - killed it. + +See things at barn and Pelt [crossed out: haunt] memories +being taken - Not here when we get to the barn +Peuned woman in the corner dead. Looks like +she lured the creature in the barn and somebody +locked them in. + +Something about Malcolm and Isabella going missing & +nobody knowing of them in town but us & Malcolm's +wife knows +11:15 + +- go to where we found the birds +take short rest. Dirk leaves Bob out & lots of different +types of birds appear. +go into swamp to find bird lady. 1 hour in +Swamp hut covered in bird poo, inside branches +covered in birds, 80ish woman Blindfolded & mouth +sewn shut. - Name "The Chorus" +Been having dreams - Hurt ain't her own. +her apprentice upped an left. +Magic word is clever - changes memories into a convenient +form - So knowing Sarah was with the Chorus it +was harder to wipe. +on of the Rubins Day they saw her by the hostel +she was distracted... + +Always had large animals in the area +somebody going through the swamp & using gas +which is hurting the birds. Q stop the Bughunter +Direct us to the place where Geldrin got the papers. Geldrin has, +2pm leave +3pm at town + +Back to town through market place. +Notice streak of fumes with a halfling (suited) +with an Ogre - Barrel with tubes & pipes going to an +ear funnel Crossbow - talking to a magpie person who +has a wagon pulled by a "Cobra Kai" type creature. + +Sneak up behind the ogre & break his equipment +goggles & let the gas out. diff --git a/data/2-pages/60.txt b/data/2-pages/60.txt new file mode 100644 index 0000000..13b2a24 --- /dev/null +++ b/data/2-pages/60.txt @@ -0,0 +1,41 @@ +Page: 60 +Source: data/1-source/IMG_5177.png + +Transcription: + +Water gets up high on a Tri-moon & covers + +- Tell the guy about our fight with Kairbidius +- thinks he knows about where Kairbidius parks + the boat & wants to show us 19:30 +- takes us there + +[crossed out: Docks] Old town in disrepair but one dock +[crossed out: look] looks fairly well maintained & repaired. +3 houses [crossed out: lot] look decent too. +[crossed out: He has] first house closest to us seem to +be lit. creep up to look in +4 fish men inside an empty tavern +attaching copper spear-heads onto [sticks] +& finished against the wall. +1 fish man tells the others The Boss (King?) will be angry +if they don't get the shipment on [time] so go +get the boss + +Both other huts have lights furthest one +seems to be more secured +One has a Conch & calls & says +Kingly comes now. +wait around for him 8:30 + 9:30 +Water comes back +Any sight? he's failed been replied "boat" +captured, think he's dead. Boat captured. +They bring out the weapons & wonder +if it is going to be enough. 10:00 +11 fish people carrying things, 15 overall, +chariot back pulled +- Something seems to be coming +by barnacled sea cows. +with hull 6 armed fish person on +skewers a fish person & eats it. diff --git a/data/2-pages/61.txt b/data/2-pages/61.txt new file mode 100644 index 0000000..6751dce --- /dev/null +++ b/data/2-pages/61.txt @@ -0,0 +1,44 @@ +Page: 61 +Source: data/1-source/IMG_5178.png + +Transcription: + +creature stops & smells they are being watched +tells them to search for us. +sees Geldrin & throws trident at him +likes being complimented & threatens to destroy everything. +Need all or the plan will not work & he will +be cross. & he will be worse. + +- think 6 armed creature will attack our ship + for the weapons. +- go back to Turtle Point 12:00 + +Day 20 (Sunday) +4th Tan +14 days until Tri-moon + +Plan to go to freeport instead of Baytrail Accord +- shipment from Earl of Fairshaws to Malcolm + Jeffries - same boxes we saw outside Seaward +- go to Barracks to tell The Pact (picture outside is + the same as the pub called The Pact) + +Pact leader Shandra - ensure the Pact's rules are +followed. & protect people who needed +it in exchange for the protection of the barrier. +- Tell her what happened - 10ft 6 armed thing is "An Excellence" +Sahuagin -> "fish people - Saguine" +from Kiendra, leader of Dunhold Cache information +who was killed. +Pact Scepter - One given to each of the wizards +requested for us to keep it as it signified +our side of the Pact +! recommends to speak to merfolk of Lake +Azure for Dirk's city +shipment - get a smell unit +Sahuagin have one of the [Scepter] Conch's +(8 in existence) Kiendra's +asked Basilisk if he can get help to Shandra +one of the Merfolk will come with us +Pact leader Freeport - Tiana diff --git a/data/2-pages/62.txt b/data/2-pages/62.txt new file mode 100644 index 0000000..343e360 --- /dev/null +++ b/data/2-pages/62.txt @@ -0,0 +1,35 @@ +Page: 62 +Source: data/1-source/IMG_5179.png + +Transcription: + +stay in the barracks for the night +Dirk has a strange dream about a goliath sitting +on a granite throne looking concerned, two females tending +(Rubyeye), fought well. *changes* tavern scene +dancing around a fire with a granite city in the distance +face in the fire ?[...]. Then? Dog? then disappears. + +head towards ship +(Merfolk) Guardfree - states his mistress has been +working on misdirection +- get food brought to our cabin. +- Journey is uneventful luckily. + +Oddly a busy bustling city mishmash of styles +Kairibidius ship is docked here. + +- Quartermaster loads shipment onto our cart to + take with us + +Baroness [crossed out: Kavaliliere] - head of Freeport. +No taxes for trade here +Newspaper +- Ancient takes flight - left his home for last 1,000 years + moving to Snow Sorrow +- fighting still goes on in the mountains near + Highden - good taking a beating. +- paper seems to be propaganda + +go shopping. 20:00 +Esmerelda - magic item shop diff --git a/data/2-pages/63.txt b/data/2-pages/63.txt new file mode 100644 index 0000000..33b611d --- /dev/null +++ b/data/2-pages/63.txt @@ -0,0 +1,48 @@ +Page: 63 +Source: data/1-source/IMG_5180.png + +Transcription: + +go to see Tiana at the Siren & Garter. + +Expecting a group of 40 to help fight Excellence. + +- They are mutual & can be slain. Delights in bossing +the mortals around. + +Baroness - seems good but lets people do what they +please. Although can be random with which groups +to dispose of. latest one around a week +ago - a group of bound elementals & gems - Arc & water. +- another group selling archeological items from desert - Tabaxi +caravan etc. +Ceased the goods. + +- go find the basalisks in a private room. + +Highden - being attacked by a fire Excellence +has something in for the elves. + +Investigated the crater & found a old lab +but unable to get in + +* Friends on the council meeting with the ancient +around Snow-sorrow. + +* azure-side - reported perodetta & spawn amassing +in the area. + +* Arabella kidnapped again. - targeted attack +faces removed. + +* No forces available - Zinquiss will meet us +at the harbour + 1 other +- Baroness Neutral Party. - fairly reclusive +following her predecessors ideas +maybe something similar to Lady Hathwall but +is not a dragon. previous of her human + +* told about copper weapons - paper - Malkolm Jethnes +& Earl of Fairport involvement in the shipment + +* get a dagger from basalisks. diff --git a/data/2-pages/64.txt b/data/2-pages/64.txt new file mode 100644 index 0000000..1bba939 --- /dev/null +++ b/data/2-pages/64.txt @@ -0,0 +1,49 @@ +Page: 64 +Source: data/1-source/IMG_5181.png + +Transcription: + +Lesser rift Blade - Dagger +1 - 3x charges + +Heartwall 2nd most +Common last name (Browning 1st) + +Always been a Heartwall in +Charge of Heartwall. No +Records of relative Very Reclusive +family who don't appear in public until the Coronation +Ceremony, only seen together to hand over the crown +(possibly disguise self spell) + +1 charge for dimension door +3 charge for teleport spell opens +a portal open for 5 seconds +think of the place to +go. - big enough for a person +1 recharge per day + +19:00 + +Go back to see Taina again. +get another guard - Guardfore + +Pirates Pearls Plundered - Ichy (owner) +Ref gut Refuge - +Cheesy Thimble Rugger + +- go out to the cart - Dirk notices the padlock +has scratches on it. the scratches look uniform & +pattern [unclear] I recognise but don't know why. +upside down thieves cant - "Drunken Duck" +& scratched with claws like mine. +change the markings to Everchard. +book into parking & guardfree keeps watch. + +parked in Bugbear next to lizardman + +Head over to the temple to give them the spear + +female half orc comes to speak to us - hand over the +Spear & she goes to check it out with others + +Donate in exchange for help? diff --git a/data/2-pages/65.txt b/data/2-pages/65.txt new file mode 100644 index 0000000..b6f6d3c --- /dev/null +++ b/data/2-pages/65.txt @@ -0,0 +1,37 @@ +Page: 65 +Source: data/1-source/IMG_5182.png + +Transcription: + +Request an audience with the higher +power to discuss - won't be here for +3 hours + +- go to get lodgings at the pirates Pearls Plundered + +- Crab man in charge - ichy + +- Baroness grants us an audience right now + +Room is old - paintings are the predecessors all +wearing the same necklace. (like a mayor necklace) & +Lots of Jewelry + +Desert relics - thought maybe they belonged to an +old friend - long time ago - Velenth Cardonald. +- worked for her before coming here - willingly + +Vote 12 heads who vote on who has +of ideals. + +Other things taken off the sheet because +she doesn't approve of the Cult. + +! will loan some forces - Promise - she gives us +information about a laboratory can we get +as diamond in the workshop +gaping hole in the side of the building +- Barrier - Emergency systems - something else +in there - very young when she ran. +* Dragon - rumor to roost in the ruins of +Dirks old city diff --git a/data/2-pages/66.txt b/data/2-pages/66.txt new file mode 100644 index 0000000..85ba688 --- /dev/null +++ b/data/2-pages/66.txt @@ -0,0 +1,46 @@ +Page: 66 +Source: data/1-source/IMG_5183.png + +Transcription: + +The creature in her chamber logs +? Garaduck? - no + +has the code to the circle & the safe +code whilst the defenses are up. gives us +permission of the lab. + +* Valenth wanted to transfer herself +into an object... + +* seems a little shook. & guard helps +her out. + +22:00 + +Return to temple of Cierra. +Huntsman has returned & comes over to us. + +* Huntmaster Thrune. + +Ruby eye spoke to this church. often & interested +in runes. + +- will provide aid to kill Excellence. + +Ruby eye thinks we might want to get +before she tries to get it. she was + +- Ruby eye's best friend wanted to craft +herself into some thing & continue in +that form. + +Spear was a gift from a Huntsman of Cierra +but it's actually an arrow and there were 5 +of them taken from Cierra's last battlefield. + +Back to Pirates Pearls Plunder. + +Guardfree - will get his mistress to bring guest shells + +- Try to plan what we are doing. diff --git a/data/2-pages/67.txt b/data/2-pages/67.txt new file mode 100644 index 0000000..6fe3d79 --- /dev/null +++ b/data/2-pages/67.txt @@ -0,0 +1,60 @@ +Page: 67 +Source: data/1-source/IMG_5184.png + +Transcription: + +Day 21 (Monday) +6th Jan 1002 +13 days until +Tri-moon + +- we all have dreams that are tinged with +cold. + +- my dream - in family home siblings playing +happy memories local town hall but looks like +a crater but is in fact a black hole +pulling in more buildings. hear a voice +"where is he I know you hide him" horrible +voice +Panic & hunt then wake up (looking for Garadwal??) Void! + +- Just our room is cold. as the ice melted. +a white dragonscale drops from the icicle. + +<> go look for the Captain for a boat +! loan the boat for 100g a day & 500g +deposit (125g each) + +Pier 12 - large group merfolk 30 + 2 littles +guardsmen 20 (Sargent has a necklace) +Zinquiss & black dragon born (Wrath) +- Speak to Pack leader Tiana +& other leaders gather + +Pack leader Alana + +Clerics 15 +& leader + +get 2 guest shells +10 spare shells + +Wrath will stay on the +other side of the barrier +once we get there + +Sargent takes our +Cart to the keep. + +Captain Huen + +Set sail - sea is calm. +water seem clear - no noticeable signs of +him yet + +merfolk, zinquiss, Wrath, half Clerics in the sea with us + +- Excellence seemed to have come from 80 miles away +when we were at the turtle village. - so possibly +Dunbold Cache or the smaller islands around diff --git a/data/2-pages/68.txt b/data/2-pages/68.txt new file mode 100644 index 0000000..e88b71c --- /dev/null +++ b/data/2-pages/68.txt @@ -0,0 +1,51 @@ +Page: 68 +Source: data/1-source/IMG_5185.png + +Transcription: + +& net +Make a pulley system to hoist shield crystal +onto the ship when we get to Fairshaws + +- Wrath (Kolin) middle name - Request to look for the location of Garadwal +when he gets to Black scale + +- Island - pass it & nothing seems to happen. + +- Arrive at Fairshaws + +- Boat is ceased upon orders from the Earl +occupants being detained for Treason etc. +Diplomatic mission carrying members of the Pact etc. + +- Suspect the Earl is part of the Cult + +- give Zinquiss 200g for 4x healing potions + +- Guards return & tell us to stay on board. whilst +investigations take place + +Zinquiss returns with 3x healing & 1x greater healing (Distribute) +News +* Highden - Battles not doing well +Strengthened by lightning dragon +* Heartmoor - People falling ill - surgeons deployed +(Perodetta?) +* Grand Towers - Justiciars leaving to the 5 +points of the penta city states +* Provincia - locust and mysterious spiritual + +Sword blessed +1 + +* get called to the mess hall by Taina. + +Day 22 (Tuesday) +6th Jan 1012 +12 days to tri-moon + +Construction under the water & they have made +paper also +Crystal is approx 1m square + +[margin] greater heal ++4 D4 +4 diff --git a/data/2-pages/69.txt b/data/2-pages/69.txt new file mode 100644 index 0000000..8fff0e5 --- /dev/null +++ b/data/2-pages/69.txt @@ -0,0 +1,51 @@ +Page: 69 +Source: data/1-source/IMG_5186.png + +Transcription: + +- can sense Kiendra but no response possibly unconscious +but seems to be in the cavern + +- split underwater group into two to sort out crystal +& also attempt to rescue Kiendra + +approach shield crystal in stealth + +See - above our field of vision are some sharks who +seem to have spotted us + +[box] guest shells last +2 hours + +fight +- we overcome & defeat mobs at the crystal site. +Kiendra - found & rescued - very weak & tortured +Find waterproof paper 3x dispel magic scrolls (geldrin) +& coin pouches - 112g (give to crew) +Bug Boss - Spear glowing dull blue - drown spear +1 returning - speaks aquan +Suit of plate mail - Plate of Hydran +1 resistance to cold + +Boat - pretty wounded + +other party - Taina's - dispelled shells & got +attacked - Hunt Master missing. +Half orc priestess on the boat wants +to check on the other team for the Huntmaster. +Necklace Sargent wants to come with us. + +go over & Huntmaster fighting an excellence +both very injured + +! Deed Excellence! + +4 mermen +all mermaids } survive +4 Clerics +6 guardsmen. + +* Moor up by Dunbold Cache for the night. + +[side notes] ++1 +-3 +8 -7 ++5 -5 diff --git a/data/2-pages/7.txt b/data/2-pages/7.txt new file mode 100644 index 0000000..76608e9 --- /dev/null +++ b/data/2-pages/7.txt @@ -0,0 +1,51 @@ +Page: 7 +Source: data/1-source/IMG_5121.png + +Transcription: + +Bughunter will do any form of Taxidermy... +* Bughunter promises to [crossed out: hunt] hunt out of town +Request him to do it the other side of the +river +5:15 + +- Magpie - [crossed out] Xinquiss can be found [crossed out: the] at +the Hartwall great bazaar + +Sheriff's office + +Very busy in there. Both Jeremiah & Deputy-Sheriff +armoured up - half orc & kobold (seem to be militia) +(human) (cher) +citizens wearing patchwork armour - Dwarf, Tabaxi, human +warforge + +- Been an attack - Walter (sheep farmer) somebody came +in & they had a cart with sheep beast in +wife sacrificed herself + +- Core - warforged - runs Peel & Core lack of custom +in the tavern - noticed wagons at the Hostel + +- Earl had a death threat. 500g bounty + +- Tiny guy - Forester - Cromwell - noticed wagons +past Walters farm - seem to have stopped there +seemed to be people in the wagons + at the mo +5:30 + +- Jeremiah & Drang to protect the Earl +Hannah & Bob - go to outskirts. + +gives us a shock dagger + +- Village is quiet +2x wagons parked outside the hostel - Livestock looking +Smells of pig manure & human faeces. Peel warmth +but can't see anything - scratched crab claw +attaches + +Dirk sees rats again & they attack. a pig beast +breaks out of one of the carts killed + +Sabotage cart & two people bring 4 horses diff --git a/data/2-pages/70.txt b/data/2-pages/70.txt new file mode 100644 index 0000000..85621d0 --- /dev/null +++ b/data/2-pages/70.txt @@ -0,0 +1,48 @@ +Page: 70 +Source: data/1-source/IMG_5187.png + +Transcription: + +Merfolk recover our dead & lay on the +help & Sacrifice + +Pull up to the Cove - lookout shouts +there is a vessel already docked. +chariot with water Elementals chained to + +- we row to shore to investigate. +Mother of Pearl framed Chariot, no other signs of +movement. + +Dirk speaks to elementals & they want +will come with us on the big boat. +! Take the chariot back with us 8-10kg. + +Zinquiss will sell it at an +auction in 7 days +have the address for the +Freeport auction house + +Day 23 (Wednesday) +7th Jan 1012 +11 days to tri-moon +7 days to auction + +go to excellence lair with Merfolk - Pack leader Alana + +* Water ebbs & flows like a tide in the underwater +cave. + +* 20ft long crystalline sculpture of a dragon - base has +runes glowing + +* 3 cages & barrels +1 cage contains a merfolk - but looks different - green not blue +Alana seems to revive him & takes him back to the ship + +* chests seem to be laced so waterproof - contents may +Not be openable under water +open one & contains white powder which I inhale. +Basilisk attack - Salamanders - & Arabic writing. +white dragon circling around the dome +Rabbits - whole room turns into a black void. diff --git a/data/2-pages/71.txt b/data/2-pages/71.txt new file mode 100644 index 0000000..1bc7025 --- /dev/null +++ b/data/2-pages/71.txt @@ -0,0 +1,43 @@ +Page: 71 +Source: data/1-source/IMG_5188.png + +Transcription: + +two blue eyes in the darkness. coming towards +me & really cold & back in the room + +other cages - in the middle of the cage they see snail +with a gleam of metal which is a jewelers chain +attaching it to the cage. - Guardseen says the +snail is a bad omen - its been drugged +back to ship. + +Merfolk - abducted from beyond the barrier +him his friend & wife. woke up one day +& they were both gone. Wife is nobility +in their pact (Sneul?) + +Hunt master dispels magic on the snail & +a mermaid appears. + +Empire of their people outside of the barrier +Captured white on diplomatic mission to the city +of Onyx, doesn't trust them +war between them & the Salt elementals. + +Princess Aquunea. + +- City of the black Scales has a "door" into +payment to access is a grand towers penny. + +Check out the barrels etc. +- sickly sweet medicinal - Potion of magical energy +regain 1 slot +- silk & parchment interleaved - Runes +- 2 x white Rose powder. Taina gives us 1000g +- metallic Censer (incense holding burning device) +silver? Religious? Water god? Censer of Noxia +ability to enrage & control water elementals. +It's active. + +* Send message to Basilisk diff --git a/data/2-pages/72.txt b/data/2-pages/72.txt new file mode 100644 index 0000000..0982b8d --- /dev/null +++ b/data/2-pages/72.txt @@ -0,0 +1,53 @@ +Page: 72 +Source: data/1-source/IMG_5189.png + +Transcription: + +Arrive back to Freeport - seems very Cold. +Much colder heading back +down to Freeport. ?Rhimechalk issue? + +Snowing over the sea. everything very dark & snowy. +guy shouting the End is Nigh - Moon is crashing down +into the city. Ask him which city. & he then isn't bothered +he dreamt it. + +22:00 + +lots of people having dreams. +Gnolls attacking a village requested backup from +Everchard & Fairshaws. +* underwater - mermaids - big cat with metal +wings attacked it. + +Happened a few nights ago. - Same time as ours - +head to the Castle to see the Baroness. +necklace is removed from the Sargent & he just +walks off. + +* Mermaids - Having a meeting in 3 days at +Baytail Accord. to discuss what happened. +we can go. + +The Dreams seem to contradict each other +possibly from the Ancient One. - So could happen. +Huntmaster - going to Grand towers to speak +* Justiciar in the city. ?Looking for us. +* Baroness gets us into the Drunken Duck - Secret in +Air wise from Jewelry District. +written on our +padlock on the +cart. + +Cart still ok in the castle. + +Baroness Master - Valenth Caerdunel Necklace. +Sister is a ring + +go to Drunken Duck +all the walls are covered in pillows & ?Soundproofing? + +Red Dragonborn +2x Tabaxi +Automaton } clientele +2x Halfling & gnome diff --git a/data/2-pages/73.txt b/data/2-pages/73.txt new file mode 100644 index 0000000..ee747a0 --- /dev/null +++ b/data/2-pages/73.txt @@ -0,0 +1,23 @@ +Page: 73 +Source: data/1-source/IMG_5190.png + +Transcription: + +gave me +(Arxion) Schnupps from the Brass city. +Barman says only the best for the "Little Finger" & +he's intrigued by who the 3 best members of the +Underbelly went on on mission + +- Tabaxi Whiskers laden with 'Dew' +Traders 'keeps' from Art to food + +faint noise through the floorboards, raised voice? +Automaton keeps talking about a factory +wants to know where the labs are. tell him +all by the barrier. cuts down his search radius... + +- get a private room to discuss matters. +- send message via the underbelly to advise we +won't be going to Baytail Accord. +- Will go to desert laboratory. diff --git a/data/2-pages/8.txt b/data/2-pages/8.txt new file mode 100644 index 0000000..fe0da25 --- /dev/null +++ b/data/2-pages/8.txt @@ -0,0 +1,63 @@ +Page: 8 +Source: data/1-source/IMG_5122.png + +Transcription: + +Woman in 50's too many teeth bigger (Sarah?) +Mouth - Bag + +Young boy 18ish (sheep farmers boy?) + +3 x patrons Crimson Bovine / Mirth's Fizzleswig +1 shortsword random herbs +1 sickle silver + +Church Tor & church Tarber +19:00 + +Take the people & cart to the church + +People unable to be saved. Boy wasn't dead at first +but now dead +Brother Fracture - looks at the cart +remembered all of the militia have been going missing. +want to try to/put them all to sleep - Bughunter! +Bughunter staying out (cider inn cider) +go to see him +20:00 + +gearsisor 5000? ether & magical sleeping +powder +has a ring with purple gem & runes - needs identifying +doing that in trade for [crossed out: got] use of gearsisor +go back to cart & use it. +get 5 Back into the church. + +1 - Gregory - homeless man restored - [crossed out: Eat] thought +he'd been taken by the militia remembers being +in the big militia house. +Park the cart behind the church & horses at the +Inn + +Random Compass box with a needle that points to the +Bughunter - Geldrin buys it + +Day 4 +19th Dec +7:00 + +- Dirk - Flower he got from a tiefling girl is still looking +new - has a magic enchantment to keep it new + +* Problems with pylon. Seawood water spirits on the move. +X * Fish men other side of barrier (massacre) Dumbold south +X * Stone giants missing under new leadership by Hyden Goldensell +warmest to investigate +* Cold air over River Rhein frozen between Honeyshore & Agladale +snow sorrows edge +* ancient [unclear] from slumber sages try to interpret omens +* gnolls attack restored point cobalt mining. bounty on gnally +* blight hits azureside cherry crops - Eereza production halted +✓ Isabella Nudegate - 500g reward (missing on route) Isle +seaside. +* Grand Festival mid-winter - held at Brookville springs next week diff --git a/data/2-pages/9.txt b/data/2-pages/9.txt new file mode 100644 index 0000000..13be208 --- /dev/null +++ b/data/2-pages/9.txt @@ -0,0 +1,48 @@ +Page: 9 +Source: data/1-source/IMG_5123.png + +Transcription: + +* Peridot chewing death spotted 50 miles earthwise +of Arrowfear. +- No mention of pig + +- Pig carcass is missing. Singe marks on the road +other cart still outside the hostel +8:20 + +Oric - Innkeeper Cider Inn Cider +Earl was holding banquet, no other strange goings on +things go crazy this close to the third + +Town Crier local news around midday + +go to sheriff - walk past Earl's manor house +Sheriff in chair kobold shuffling papers +cells Malcolm, half elf steward for the Earl apparently +behind the plots to kill the Earl. Seems +innocent - No evidence, doing to keep face +with the Earl. + +Something off with the [crossed out: Mayor] Earl, asked blacksmith to +up the production on weapons?!? Invar just delivered lots +Steward - didn't know him before thirsty Duchesses +of Hartwall sent him after the previous Earl passed. +Earl seems to be more extreme in his views +10 +to show sorrow +to black smith in town. + +Books say 27 militia - but only 4 (27 is half required amount) +Lawrence Henderson - exchequer paying wages. 8:50 +ledger given to the scribes at night & back to +Earl at 9:00 - half elf comes to scribes with us. +Pick the lock & get left to Earl's chambers right to scribes. +ledgers are all copied & old ledgers kept in a different +place current ledger around 7 days ago + +Isabella 2 weeks ago with -20 mins to search for her in the +Malcolm 6 days ago copies 13 days ago 3rd Dec +but not scribbled out in the copies. +visiting tourists. Cider brewery's & tour of woodland spoke +Elffair mead makers for the cutting. 2x body guards diff --git a/data/3-days/day-03.md b/data/3-days/day-03.md new file mode 100644 index 0000000..58c4ce8 --- /dev/null +++ b/data/3-days/day-03.md @@ -0,0 +1,190 @@ +--- +day: day-03 +date: unknown +source_pages: + - 5 + - 6 + - 7 + - 8 +complete: true +--- + +# Raw Notes + +Page: 5 +Source: data/1-source/IMG_5119.png + +Transcription: + +Day 3 + +Head over to sheep farmer. +Geldrin accidentally cast a spell sat on, +Dirks shoulders. Tore his shoulders apart like +Malcolm's wounds. +stop for short rest 10:20 +Birds circling over head Goldfinch & Starling +District lack of sleep at the farm swamp seems +to be trickling into the farm. + +30 yearish Man appears to be trampled by a head of sheep. +looks like some human sized prints 4x sets. +one looks to go to & from the barn. +we can investigate - Drew crime scene +hear something trying to breakout of the barn +run to farmhouse door has been "latched in" +Table smashed to pieces various debris about + +Page: 6 +Source: data/1-source/IMG_5120.png + +Transcription: + +Fire looks like it was burnt-out yesterday +upstairs looks old. - Double Bedroom & 2 sets of singles +elder couple. 1 many much dead man +1 slightly smaller. + +- Creep over to the barn & see a row of sheep +heads - seem unnaturally agitated. hear unearthly bleat +Breaks out of the barn. - Massive pile of melded +sheep - killed it. + +See things at barn and Pelt [crossed out: haunt] memories +being taken - Not here when we get to the barn +Peuned woman in the corner dead. Looks like +she lured the creature in the barn and somebody +locked them in. + +Something about Malcolm and Isabella going missing & +nobody knowing of them in town but us & Malcolm's +wife knows +11:15 + +- go to where we found the birds +take short rest. Dirk leaves Bob out & lots of different +types of birds appear. +go into swamp to find bird lady. 1 hour in +Swamp hut covered in bird poo, inside branches +covered in birds, 80ish woman Blindfolded & mouth +sewn shut. - Name "The Chorus" +Been having dreams - Hurt ain't her own. +her apprentice upped an left. +Magic word is clever - changes memories into a convenient +form - So knowing Sarah was with the Chorus it +was harder to wipe. +on of the Rubins Day they saw her by the hostel +she was distracted... + +Always had large animals in the area +somebody going through the swamp & using gas +which is hurting the birds. Q stop the Bughunter +Direct us to the place where Geldrin got the papers. Geldrin has, +2pm leave +3pm at town + +Back to town through market place. +Notice streak of fumes with a halfling (suited) +with an Ogre - Barrel with tubes & pipes going to an +ear funnel Crossbow - talking to a magpie person who +has a wagon pulled by a "Cobra Kai" type creature. + +Sneak up behind the ogre & break his equipment +goggles & let the gas out. + +Page: 7 +Source: data/1-source/IMG_5121.png + +Transcription: + +Bughunter will do any form of Taxidermy... +* Bughunter promises to [crossed out: hunt] hunt out of town +Request him to do it the other side of the +river +5:15 + +- Magpie - [crossed out] Xinquiss can be found [crossed out: the] at +the Hartwall great bazaar + +Sheriff's office + +Very busy in there. Both Jeremiah & Deputy-Sheriff +armoured up - half orc & kobold (seem to be militia) +(human) (cher) +citizens wearing patchwork armour - Dwarf, Tabaxi, human +warforge + +- Been an attack - Walter (sheep farmer) somebody came +in & they had a cart with sheep beast in +wife sacrificed herself + +- Core - warforged - runs Peel & Core lack of custom +in the tavern - noticed wagons at the Hostel + +- Earl had a death threat. 500g bounty + +- Tiny guy - Forester - Cromwell - noticed wagons +past Walters farm - seem to have stopped there +seemed to be people in the wagons + at the mo +5:30 + +- Jeremiah & Drang to protect the Earl +Hannah & Bob - go to outskirts. + +gives us a shock dagger + +- Village is quiet +2x wagons parked outside the hostel - Livestock looking +Smells of pig manure & human faeces. Peel warmth +but can't see anything - scratched crab claw +attaches + +Dirk sees rats again & they attack. a pig beast +breaks out of one of the carts killed + +Sabotage cart & two people bring 4 horses + +Page: 8 +Source: data/1-source/IMG_5122.png + +Transcription: + +Woman in 50's too many teeth bigger (Sarah?) +Mouth - Bag + +Young boy 18ish (sheep farmers boy?) + +3 x patrons Crimson Bovine / Mirth's Fizzleswig +1 shortsword random herbs +1 sickle silver + +Church Tor & church Tarber +19:00 + +Take the people & cart to the church + +People unable to be saved. Boy wasn't dead at first +but now dead +Brother Fracture - looks at the cart +remembered all of the militia have been going missing. +want to try to/put them all to sleep - Bughunter! +Bughunter staying out (cider inn cider) +go to see him +20:00 + +gearsisor 5000? ether & magical sleeping +powder +has a ring with purple gem & runes - needs identifying +doing that in trade for [crossed out: got] use of gearsisor +go back to cart & use it. +get 5 Back into the church. + +1 - Gregory - homeless man restored - [crossed out: Eat] thought +he'd been taken by the militia remembers being +in the big militia house. +Park the cart behind the church & horses at the +Inn + +Random Compass box with a needle that points to the +Bughunter - Geldrin buys it + diff --git a/data/3-days/day-04.md b/data/3-days/day-04.md new file mode 100644 index 0000000..da62209 --- /dev/null +++ b/data/3-days/day-04.md @@ -0,0 +1,172 @@ +--- +day: day-04 +date: 19th Dec +source_pages: + - 8 + - 9 + - 10 + - 11 +complete: true +--- + +# Raw Notes + +Page: 8 +Source: data/1-source/IMG_5122.png + +Transcription: + +Day 4 +19th Dec +7:00 + +- Dirk - Flower he got from a tiefling girl is still looking +new - has a magic enchantment to keep it new + +* Problems with pylon. Seawood water spirits on the move. +X * Fish men other side of barrier (massacre) Dumbold south +X * Stone giants missing under new leadership by Hyden Goldensell +warmest to investigate +* Cold air over River Rhein frozen between Honeyshore & Agladale +snow sorrows edge +* ancient [unclear] from slumber sages try to interpret omens +* gnolls attack restored point cobalt mining. bounty on gnally +* blight hits azureside cherry crops - Eereza production halted +✓ Isabella Nudegate - 500g reward (missing on route) Isle +seaside. +* Grand Festival mid-winter - held at Brookville springs next week + +Page: 9 +Source: data/1-source/IMG_5123.png + +Transcription: + +* Peridot chewing death spotted 50 miles earthwise +of Arrowfear. +- No mention of pig + +- Pig carcass is missing. Singe marks on the road +other cart still outside the hostel +8:20 + +Oric - Innkeeper Cider Inn Cider +Earl was holding banquet, no other strange goings on +things go crazy this close to the third + +Town Crier local news around midday + +go to sheriff - walk past Earl's manor house +Sheriff in chair kobold shuffling papers +cells Malcolm, half elf steward for the Earl apparently +behind the plots to kill the Earl. Seems +innocent - No evidence, doing to keep face +with the Earl. + +Something off with the [crossed out: Mayor] Earl, asked blacksmith to +up the production on weapons?!? Invar just delivered lots +Steward - didn't know him before thirsty Duchesses +of Hartwall sent him after the previous Earl passed. +Earl seems to be more extreme in his views +10 +to show sorrow +to black smith in town. + +Books say 27 militia - but only 4 (27 is half required amount) +Lawrence Henderson - exchequer paying wages. 8:50 +ledger given to the scribes at night & back to +Earl at 9:00 - half elf comes to scribes with us. +Pick the lock & get left to Earl's chambers right to scribes. +ledgers are all copied & old ledgers kept in a different +place current ledger around 7 days ago + +Isabella 2 weeks ago with -20 mins to search for her in the +Malcolm 6 days ago copies 13 days ago 3rd Dec +but not scribbled out in the copies. +visiting tourists. Cider brewery's & tour of woodland spoke +Elffair mead makers for the cutting. 2x body guards + +Page: 10 +Source: data/1-source/IMG_5124.png + +Transcription: + +Half Elf remembers Sir Ailbir +go see exchequer - half elf partly looking Lawrence +to ask about militia wages - he starts +to panic - says we need to speak to the sheriff +or the Inquisitor. Didn't do anything wrong +blames the scribes. 54 then baron cut down +so he was getting the payment for the other 23 +if we keep quiet he will help with more info +if needed +gives us 500g +8 carts, 16 horses, 600 swords +industrial style we have 2 extra horses +58 days left on town finances. + +Safe small black velveteen case - gems +3 treasure chest gold/copper/silver. +2 bags platinum pieces 4000go + +Earl's documents - pile is empty - Half Elf [crossed out: Victor] (Vicmur +Daros) +remembers him having documents! +leave to go see Brother Fracture +9:50 + +- Gregory doing well - not had chance to heal +the others, will feel the rest. +- No way of communicating with other churches +go see Gregory - Remembers Dec started thinks it was 7th/8th +ish few weeks ago according to +can't remember anything from then until now +Can remember 2x militia taking him to the +Hostel then setting up in the church - stonejaw & +ralfex (2 of the missing militia) +other people in the Hostel - said it looked like a jail cell +Goat Lady - Bagnall Lane & various others. +Militia house open for about 1 month - No reason +for it to still look like a jail. + +- Geldrin paints a sheriff sign on the cart +10:15 +10:30 + +cider inn cider +Homeless in town not really any but remembers +Gregory now +remembers dead goat down Bagnall Lane. about 1 +week ago +Go to hostel. Investigate round side of building +Bone stables 2 carts & 4x horses in courtyard/stables +Chain on the gates but padlock not locked +Invar breaks wheels + +Page: 11 +Source: data/1-source/IMG_5125.png + +Transcription: + +Release horses - I get magic missile'd +go into "Hostel" to fight them. one is [crossed out: Gillisa] Gelissa +(has a mystery on the side of her face) +kill other guy, subdue Gelissa. +some corruption on her mind - Invar restores both her +mind & wounds. +11:00 + +- Look around the "Hostel" but 2 cells are empty +approx 10 people still in the cells - all townsfolk + +- Invar creates a lock for the back door +12:30 +Tell Brother Fracture to concentrate on healing Militia +he will take Gelissa & militia & Cart to the +Barracks & use that as a base of operations. +Decide to go to the Barrier over the +"Swamp Laboratory". +13:00 + +- Rest for the evening - on 3rd watch pigeon lady +near the camp. Didn't get a full rest + diff --git a/data/3-days/day-05.md b/data/3-days/day-05.md new file mode 100644 index 0000000..2a2b5d0 --- /dev/null +++ b/data/3-days/day-05.md @@ -0,0 +1,134 @@ +--- +day: day-05 +date: 20th Dec +source_pages: + - 11 + - 12 + - 13 +complete: true +--- + +# Raw Notes + +Page: 11 +Source: data/1-source/IMG_5125.png + +Transcription: + +Day 5 +20th Dec +07:15 + +Approach barrier - 2 large carts in view +go off the path. tie up the horses in a +dip in the land, go round to approach from the + +find Cromwell (Ranger) quite injured looks like + +- Tracks look like heavy steel boots (Goliath in full Plakemail?) +core? +* We are about 1/2 way between the [crossed out: fire] +shield pylons. +* carts are empty - large group of people +go towards barrier 7:30 - Small group to the +swamp 7:45 + +Follow the tracks - they seem to come back on +Goliath - he went to put Cromwell safe + +Decide to follow along shield towards larger group +hear a big group of people stood next to the barrier + +Page: 12 +Source: data/1-source/IMG_5126.png + +Transcription: + +Dirk feels something is watching us +then is attacked by sheep farmer grubby. + +killed it & 11 militia & 8 townsfolk +8 townsfolk tied up with rope +Black dog thing disappeared after we killed it +But the Maggot stayed. Upon killing this it let out a +massive shriek & all the remaining townsfolk started to +attack +Located & subdued halfling girl. + +Short Rest +get horses & Cromwell head back along +the path to find a patch of trees to +hide the cart +08:00 +09:00 +09:10 + +* Long Rest +10:30 +18:30 + +Sword enchanted to added +1 [crossed out] until [crossed out] +Invar's next long rest + +2 twins commanding them 1 went to swamp other +went to Barrier (we killed it) + +go towards the swamp - following the tracks of the +swamp, tie up horses outside swamp. +Following 4 individuals - Geldrin's compass is following the +same direction +20:00 + +Come to a clearing at the barrier with a stone +building in the clearing - marble dome is against the barrier +with a large telescope through the marble dome & +Tracks lead right up to the building. built approx +1,000 years ago. +hear a strange humming - door reverberating. + +Enter building. 2 x plinths 1 empty 1 that +looks like Core dismantled. head clatters off & +roll runs through left door. +go through door by plinths + +Page: 13 +Source: data/1-source/IMG_5127.png + +Transcription: + +left door - library +* Shelves - all on one shelf missing "T" shelf in Astronomy +guess Tri-moon information. + +* Picture of a well groomed tiefling holding a baby girl +(The Mage) on of the 5 who made the barrier +* Visage Envoi * + +* paper work looks recent, drawer has been forced +open - diagrams of the stars +other drawer has Rabbit/Deer teddy. ring inside. gold band +with runes. +ring is similar to dirks - sees the teddy back up. + +Vase - "part of me can be with you while you study +all my love - Joy" + +Teddy ring runes: "a pact in darkness made in sorrow to bring +(no sharpness) +back Joy" +Dirk's ring runes: "A Bargain struck in shadows +for souls to be held in infinity" + +Paper work - measurements of the tri-moon before the +barrier went up & 20 years after. TriMoon +seems to be getting bigger. Pre barrier it was +as big as the other moons +Geldrin takes all of the notes + +Take an invisible cloak from the hatstand - wear it! +Dirk puts geldrin on the hat stand & his clothes disappear. +when things touch hatstand they disappear +Dagger & handkerchief fall to the floor +handkerchief - clean "J" in the corner +Dagger looks like a letter opener. + diff --git a/data/3-days/day-06.md b/data/3-days/day-06.md new file mode 100644 index 0000000..3cb8964 --- /dev/null +++ b/data/3-days/day-06.md @@ -0,0 +1,413 @@ +--- +day: day-06 +date: 21st Dec +source_pages: + - 13 + - 14 + - 15 + - 16 + - 17 + - 18 + - 19 + - 20 + - 21 + - 22 +complete: true +--- + +# Raw Notes + +Page: 13 +Source: data/1-source/IMG_5127.png + +Transcription: + +Day 6 +21st Dec +1:00 + +- Next room looks like a teleportation circle +with a bronze feather on the circle. like the one the other +seems more powerful than usual + +Page: 14 +Source: data/1-source/IMG_5128.png + +Transcription: + +Cages in the next room (empty) Operating table (empty) +boxes guillotine rope - lots of blood & decay with sea & sulphur + +Red door - Pic of a young tiefling - Dirk recognises - holding +Big table - set but empty. +Door @ end - Kitchen - well bucket with - doesn't +look like it's been used - pull bucket up +pour water on the floor, humanoid skull with +horns is on the floor. Horns are the same as + +Trap door under out bear rug. in office. +Door outside office is barred shut + +Trap door - 4 plinths all have the suits of Core +on them + +Geldrin goes down & suits light up. ask for +password - Joy & Tri-moon incorrect. + +- Move onto another room. +try to get through barricaded door +trapped door managed to get through + +Potion Room - Cauldron looks like it is full of water +fresh & clear. +Geldrin calls construct "Power loader" + +- another room - Stairs & a door which says +maintenance do not enter Door is trapped with +electricity. building seems protected by the same +thing the barrier is made from. + +- Room opposite - Bed room +Tankard vase with white flower in +chair [crossed out] which looks broken & open book on table +(seems out of place) +open the chest - Pulse paralyzes Invar & Geldrin +01:15 + +Page: 15 +Source: data/1-source/IMG_5129.png + +Transcription: + +Construct kills whoever was upstairs (one of them) +killed it. +shocked Invar & Geldrin back from being paralysed + +3 sets of footsteps walk past the room. & stop at + +2 come back - seem to be on guard. +Another 2 go to Joys room & comes back +all 4 killed. +Short Rest Completed. +Go into Joy's room +open the toy chest + +* Mahogany box - lock has a rune on it. - geldrin +takes it + +* Wardrobe - 3 empty hangers - Dress she was wearing +when Dirk saw her isn't there + +* Bedside [crossed out: table] table - bottom drawer is trapped. +Medical equipment, syringe, crystals, ash (used spell scroll), powder, +bag, herbs, empty vial flask, 3x full flasks. +(recognise 2 - Mirths Fizzleswig & succour, don't recognise the +other) + +Quill pen, ink & Book, kids diary + +last page "Pelt rough today. don't know how much +Longer able to write, Daddy Borrowed +mr snuffles again, daddy's friend asked +about the rings again daddy's friend is +creepy." + +Diary - bed bound for the length of the diary +approx 1 year - Robots clean & feed +Daddy's friend (Never named) making rings etc +put in box which might help her feel better +not getting better - terminal. Daddy got +upset but no payment could fix it + +Page: 16 +Source: data/1-source/IMG_5130.png + +Transcription: + +Trapdoor under the rug. Wooden ladder down +into a stone room, beanbag x toys, seems +to be a secret den. Dirk goes to the +beanbag. Little girl sat on it +gets up & goes out "maybe I should go back +up daddy can see me in my room" +"feeling better glott because daddy's creepy friend +is here so I can hide" +"he'll find me here u should go to my +holy place" + +go upstairs - opens up into a massive dome +large golden spyglass, crystals around the +telescope break the barrier. Someone sat +at chair - back to us - 2 x 8ft ugly human +but wiry creatures. chair person looks like +creature we killed but all the parts are opposite += worm & dog like creature with the creature. + +Musher asked to observe tri-moon. +No desire to fight - we killed his counterpart +worm is quite useful & rare. +900 years ago someone lived here +used the townsfolk to attack the barrier +give it one of the Brass feathers to communicate +with the master for an audience. [your] horned mechanical +hellraiser sphinx creature. + +- Garadwal? +Where is your army servant. We those guys +instead... do not need to know wot +co-ordinates required for triangulation need +to know where the army's strike next +month, so we can have freedom from the dome +shifting the barrier increases the flow & maybe + +Page: 17 +Source: data/1-source/IMG_5131.png + +Transcription: + +flow so the fragment of the moon will +destroy grand towers & destroy the dome. +- it lives outside the barrier + +might just telling freedom seemed kindof true +& "freedom from the confines of everything" was an +odd phrase. + +What would happen if creature didn't obey sphinx? +it would find him due to the pact made +in darkness? / in sorrow? - looked forlorn - to find joy? + +Tri moon is a crystal + +- Sphinx cast out for practicing unsavoury magic +- Do we wish to join him? + He is one cell - Trying to Aid to locations + to attack + +- all agree to clobber +- kill them all. - worm thing dead. think it has + mind control powers +- Papers on table. calculus & notes on the Tri moon +- Books on biology incurable diseases etc. book on the effects + of poison - Slowbane - acts like heavy metal - symptoms + match Joy's diary + I wrote a paper on it - very rare because people can't + make it but turns up in the black market + Shield pylon city's sometimes get a similar sickness + being investigated. very rare & takes a lot to take effect + Possibly same colour as the shield crystal + People get sick and come to Goldenswell + & start to get better so not really looked into + much. + +[sideways note] Slowbane + +Page: 18 +Source: data/1-source/IMG_5132.png + +Transcription: + +[sketch: 10 + 777 / 8 x 10? stones] + +Pile of goods - spices - wine - berries - parchment +platinum, gems, silk. soja digel +viel from Arvoreds. +have a book + +Copper Dodecahedron (magical) +Invar identifies Dodecahedron, - spell faults! + +[sideways] 21st Dec still +Day 6 still + +Geldrin - goes to sleep in Joy's room & realises +the lamp is a gem +3:30 + +long rest level up. +12:00 + +chest itself is magical - designed to cast +paralysis if somebody other than him opens it +Invar tries to identify it - very magical chest + +check out the skull in the kitchen. has a +deformity in the back of the skull & looks a +year younger than Joy - about 7 poss 1,000 years old. +[Dirk?] defeats + +well, goes down about 50 ft water down there +look for information in the library - built at the same +time as the barrier (in tandem) not as meeting back +then. Was put here to observe the moon. designed +specially. Caverns underneath - the area found & +built here for this purpose. Summoning circle was +connected to different towns & cities to get building +materials then supplies after observatory was built. + +- Send message to [bucsalik] + - townsfolk have memories + - creatures slain + - at observatory + - message from Geldrin for Grand Towers wizard Brownmity + +otherwise go to check maintenance area - disarm door. +barrier is directed locally around the observatory +found a really old blanket, and pillow - really +decayed + +Page: 19 +Source: data/1-source/IMG_5133.png + +Transcription: + +(Earthwise) possibly Joy's other hiding place +(Firewise) find a trap door - locked but no way to pick +handle feels hollow. Geldrin used shield crystal +to open + +stone steps into darkness. - down very far. +5 lights on ends in a door painted with white flowers +Air is filled with solemn music in the cavern. +water going through barrier fizzes. +river bank has a little shrine 6 grave stones all +marked "Joy" all have the everlasting flowers on +one has been disturbed. + +Joy - died in chamber +Joy - 3 years old lung infection +Joy - 2 1/2 unknown complications +Joy - 5 years old - (nothing written) +Joy - 9 years old - died from poisoning +Joy - 7 years old birth defect - bones off in the +other & raised + +Follow the stream - quite rocky & roots - mushrooms mildew etc +mushrooms get bigger much bigger than they should be +15-20 mins of walking everything is bigger than +it should be. head out to a cave entrance. +everything seems much bigger than it +should be everything seems to get bigger +towards a point. Massive butterfly flies +past. +13:30 + +* get to a lake massive lily pads & frogs +with massive frog spawn. +Something in the lake seems magical in (centre) + +Put this into the lake nothing happens +14:00 +Geldrin attempts to raft to the middle +but falls off & is rescued by me +give up on the lake for now as dont +have anything to get the magical thing in the middle. + +Page: 20 +Source: data/1-source/IMG_5135.png + +Transcription: + +Back at the observatory keep going round +Arrive the maintenance area - where we think front door +is it doesn't seem to be there. rune on wall +Geldrin copies. +keep going round & original entrance isn't +there - Bed at Earthwise changed to +a flower bed and barrier isn't there. +(Earthwise) + +(Firewise) no trapdoor but instead 2 x statues 1/4 of the +way down each wall. + +Throngore huge muscular. 2 arms 4 legs 2 horns dead +lef h dark goals) crab claws flesh like +god of destruction Taloned human skin +* a decay like hands broken with + flame from + one. +[Rhine] + +Igraine - pregnant elfen woman rose & scythe in hands. +goddess of life & harvest. (Alabaster stone) + +(Air wise) - wall like it would have been the door +but there wasn't a corridor at the door + +go back on ourselves - Statues. same. +(Earthwise) - flowers dead now +Invar goes round alone - to shrines & back dead +goes back round & shout for us to come. +round but we don't hear him. + +(Air wise) - runes are bleeding and seem different +(Demon magic shit) +blood hurts a little bit when touched +Geldrin copies them +Invar gets a bowl - it checks its acidity +* a tiny bit acidic. seems to be real blood. + +(Firewise) - Trapdoor is closed - we left it open. This one +is fully metal. Same lock as the other one +Metal ladder going down to a metal +floor all metal + +Page: 21 +Source: data/1-source/IMG_5136.png + +Transcription: + +around exterior of the room ur 8 glass +chambers 6 empty (6 boys?) 2 viscous liquid with +something in it. books - next to [statue] +it is a non-descript human statue without +with no sex features with arm out +palm down to the floor + +Dirk mentioned hanging his coat on it. Geldrin +tries a ring and it fits perfectly. Dirk adds +his. +Diary - seems to be trying to perfect a clone spell. +matches up with the Joys in the graves + +Dirk checks in the chamber something in +there + +rings start to glow slightly. +15:30 + +back up +(Earth wise) - no bed but barrier split is there +(Water wise) - door is there & pipes etc. +(Air wise) - triangular barrier +(Water wise) - same place both ways + +Geldrin manages to hold the book open +and copies writing - deciphers as +an illusion spell +takes the book. front has an eyeball on it. +17:00 + +* go to look at the moon +crack open maidens dew - good wine +see crystalline refraction of the moon & see +a smaller fragment at the front. what is +separate & much closer than the moon +1/2 way between planet & moon locked in +sync with where the moon is +moon is closer - think it will take another 1,000 years + +Page: 22 +Source: data/1-source/IMG_5137.png + +Transcription: + +if more magic goes through shield +pylons this will speed it up. +hitting it exactly between the pylons - conjunction +with some of the issues from town crier (pg 8) +Barrier starts flashing & lighting up +seems to be something activating it +Moon shard seems to be coming closer +with the attacks + diff --git a/data/3-days/day-07.md b/data/3-days/day-07.md new file mode 100644 index 0000000..51a5ab5 --- /dev/null +++ b/data/3-days/day-07.md @@ -0,0 +1,58 @@ +--- +day: day-07 +date: 22nd Dec +source_pages: + - 22 + - 23 +complete: true +--- + +# Raw Notes + +Page: 22 +Source: data/1-source/IMG_5137.png + +Transcription: + +[sideways] Day 7 22nd Dec + +Dirk draws boobs on the chest they disappear +after a while +01:00 + +go back to the cart with the box of copper +fashion a lock for the front door of the +observatory + +Take Cromell & Isabella back to town +with carts & horses. +- Restoration cast on Isabella - Seems confident in herself + +go back to barrier to get remaining people + +8 people left - Chorus was looking after them +12:00 + +Geldrin paints wagon white +& we head back to Everchard. +Bucsalik reply - "I'll meet you there" +Birds follow us back. +see 6 horses coming from Provista (Armoured) +Thairwell militia - have their livery on stag & dragon +* Draith (male) healer, Hethmans (male), elf (female) rearing up + +few years ago near ironcroft firewise - something +came through the barrier - Invar was there +Tell them about mind wipe & citizen stealing +lack of militia etc. barrier attacking. + +They report back to lady Thorpe + +Page: 23 +Source: data/1-source/IMG_5138.png + +Transcription: + +Healer restores the townsfolk slightly. One with tentacle +arm falls off & left with stump + diff --git a/data/3-days/day-09.md b/data/3-days/day-09.md new file mode 100644 index 0000000..319ebd2 --- /dev/null +++ b/data/3-days/day-09.md @@ -0,0 +1,68 @@ +--- +day: day-09 +date: 24th Dec +source_pages: + - 23 + - 24 +complete: true +--- + +# Raw Notes + +Page: 23 +Source: data/1-source/IMG_5138.png + +Transcription: + +[sideways] Day 9 24th Dec + +Arrive back in Everchard - streets seem busy & panicky +talking about missing people & odd faces. +13:00 +go to see Brother Fracture. people being reunited +with loved ones, & healing happening + +Earl has gone missing - sheriff taken over & called +for help + +- Core made it back to town - locked himself + in the pub with Mr Peel looking after him. +- earl disappeared when memories come back. +- set a cabin up at half way point +! Thairwell ladies request a meeting with us + (they get told we were heading to Seaward) + +Drop Isabella at cider inn Cider. + +- go to see Core - Core gets Mr Peel instead. + - Core is ok will need further repairs + - came to town from earth wise. + only spoke to say "Core da" +Geldrin thinks he tried to say "Core damaged" +go to see core. Sat motionless in a chair. +Peel thinks he needs more crystal. a repaired Core +came in the post - day after Core arrived - one word on it "GUILT" +not addressed to Peel - Pub been open for 5 years. +"The Guilt" - was the Earl of Brookville Springs + +Back to Cider Inn Cider +take rooms & have baths +!! Basalik - find Groundhog - give coin - old grand tower +penny +doesn't like that we donated the coin +to the church (1,000 year old coin) +keep on good side of mage Judicators in +Seaward. - very structured town + +- Eat & recover +17:00 +- Back to see Brother Fracture. Basalik brought the +coins - he had 10 left brought for 1g + +Page: 24 +Source: data/1-source/IMG_5139.png + +Transcription: + +* get up & on the road with Isabella + diff --git a/data/3-days/day-10.md b/data/3-days/day-10.md new file mode 100644 index 0000000..7e9d2a0 --- /dev/null +++ b/data/3-days/day-10.md @@ -0,0 +1,53 @@ +--- +day: day-10 +date: 25th Dec +source_pages: + - 24 +complete: true +--- + +# Raw Notes + +Page: 24 +Source: data/1-source/IMG_5139.png + +Transcription: + +[sideways] Day 10 25th Dec + +gets towards a days travel & see a +4 storey building - trading post Inn. "The Wayward Arms" +Merfolk on the sign. - get Peel ticket for +the horses. + +* Some play is taking place on the stage + +11 o'clock rooms ready 6 am out +Extended sleep til 8. left stairs 2nd floor +Timothy served us. +elven lady comes on stage & sings + +2 Ruffians (half elf) enter pub ramshackle armour twins +have a killer air about them, +sit down & open a bag on the table + +2 halflings enter seem to be a couple & sit at +lst table by the door. + +somebody brings a giant moth picture down the +stairs & hangs it up... +half elves look at clock. +Staff move people & pull tables together - setting +up for Mirth?!? +hear music. people rush over to the +(Mirth) halfling enters dressed as a ringmaster type -(smarmy) +claps his hands and things appear on tables +Pastries/wine/bottles etc. (general store?) +famous alchemist (Mirth's Azzlejug) +* Back here in 3 days * +Brookville Springs next + +Yadris & Yadrin (Half elves) - Dirk overhears "taking my +mind off tomorrow" sent to investigate - problem +solvers. didn't say what they were solving - work for a lady. +already up in her room. diff --git a/data/3-days/day-11.md b/data/3-days/day-11.md new file mode 100644 index 0000000..f86468c --- /dev/null +++ b/data/3-days/day-11.md @@ -0,0 +1,79 @@ +--- +day: day-11 +date: 26th Dec +source_pages: + - 25 + - 26 +complete: true +--- + +# Raw Notes + +Page: 25 +Source: data/1-source/IMG_5140.png + +Transcription: + +Day 11 +26th Dec + +! Morning announcements! + +- Pentra city mages high alert due to attack on barrier. Justicars reporting to major settlements +- Shields of the accord report Army moving Airwise led by Baron +- Loggers at pine springs missing +- Heavy blizzards caused travel to Rimesatch impossible scholars trapped. +- Goliaths of firewise deserts seeking refuge in Dunenseed + Sawtooth. Creatures of Air led by 6 armed monstrosity pierced the barrier. Colleges deny possibility +- Bonstock report Gnoll activity. +- Break in at Riversmeet menagerie. Black market confiscations + 50g fine. +- Everchard's Villainous Earl ousted by sheriff + brave deputies. Nefarious activities thwarted. Restoration under way +- Hartswell & Goldenswell armies clash with giant roam firewise of Hiylden. + +Head to Seaward. + +perfect circles of houses with a colleseum type building in the middle - used for horse & dog races etc. + +- Airwise path coming into the city - wagons going back & forth filled with the marble type material used for the buildings & roads. + +Pylon outside of the main walls of the city + +Population elves / dwarves / gnomes + +Park the cart (Paynes horsebreeder) 21:00 +go to colleseum. - midday tomorrow +forge charger race. + +[boxed note] Marble type material with dark blue vein effect + +[crossed out: messy game settings / devices in] +Seaward ran by Stonemasons guild - elf + +Inn - The Rotund Rooster Rooster Tiffany - +Roads closed due to winter so no ice. +Don't have fresh water - have to order it in + +Page: 26 +Source: data/1-source/IMG_5141.png + +Transcription: + +nearest Inn for a room - Water by Earth, Water, wine or Night candle - road 7, 3 rings Inn. + +Water Elementals - rumors are they can walk through barrier +Some altercations with the council - collective working as a water problem has been in the last [event?] 20 years. + +- Chunky chicken cooker - sponsored by Rotund Rooster Rooster redesigned as used to be a griffin - favorite +- Payneful Gamble - bad pit start time. +- Thunder [belch/belch?] - name + +Inn attacked by water elementals?? - works at the cliffs, no-one else has been attracted + +- charge mysterious owned maybe an outside duke or Earl +- Halfling asks Invar if we have any skulls (green skin Goblin) for his master (He) not allowed to say - from round here. (Chalky) + Pays well for clever people skulls + +go to Night candle - Candle lit - plush furnishing + +reason for the barrier was to keep the elementals out - but rumor is they can walk through +goblin peers into Dirk's room @ 3 am. + diff --git a/data/3-days/day-12.md b/data/3-days/day-12.md new file mode 100644 index 0000000..b96b869 --- /dev/null +++ b/data/3-days/day-12.md @@ -0,0 +1,205 @@ +--- +day: day-12 +date: 27th Dec +source_pages: + - 26 + - 27 + - 28 + - 29 + - 30 + - 31 +complete: true +--- + +# Raw Notes + +Page: 26 +Source: data/1-source/IMG_5141.png + +Transcription: + +Day 12 (Saturday) +27th Dec + +Head to shield pylon - pylon is like a gold ring with the crystal set in the claw & runes around it +2 guards outside the keep. + +Rumor - walking through chicken farm at night. +Barrier flickers for about 1 sec - happens often (comes from Dunhold Cache) but only for the last few weeks. +rains then. only notice near to pylon + +Page: 27 +Source: data/1-source/IMG_5143.png + +Transcription: + +Commotion at temple - guards carrying female elf out of the temple - current warrant public 08:00 +Indecency & corruption - cross temple with vast archways for the doors circular altar in the middle +Priest - council fabricated some charges - thinks Architect is dark magic. to make himself smarter - Architect worships light gods? on his 4th term "Ilmen Thion" + +(Bright - only temple in Pentacity? goddess of luck & trickery) +gods? (Hartha) + +[boxed list] +Riv grave 2 yr +dead dwarf 3 yr +Riundil +Ilmen Elf 4 yr +Council +9/1 1g horse. + +Council Issues - barrier & water elementals. +Row 1 ring 3 [box crossed] from centre (Public Forum) +meet Thursday's @ midday 4 hrs. +Representatives Monday Friday. + +- Place bets - The Big Bad Beauty +My missing hangover - 2 runes +from another world travelled from another world +2 guys acting as Shell company for the Guild +Rates 4/1 odds on all - The truffle hunter +- hear a yelp from the side street - Iakaxi has following us (goblin) - tells me to stop letting him follow us & gives me a job on a piece of paper. Goblin scam will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Minty house - rat droppings etc. has 3 skulls sill meet his master when he has 8. - 5 silver for skulls +- Maybe cadavers? +- go back to inn via a temple to see if we can locate skulls. + +Fire temple - war, justice & hunt. +3 people in congregation listening to priest recite poetry about battle against Soot the dragon. +Young priests -> congregation pick up wooden swords & start practicing + +Page: 28 +Source: data/1-source/IMG_5144.png + +Transcription: + +Brother Caskus - has problems in town. + +- Water elementals not killing - but heard have deputies found drowned near cliffs with fresh water +- Rivers & lakes in 10 miles are back previously got from wells & then gradually went back +- want to check the skulls for the water differences - (trying to obtain some for Skum) + - 50 years. - coughing sickness no signs of damage other than burning - see some malnourishment at early age + - 25ish. signs of damage to vertebrae stabbed. nothing obvious + +Public records - will be available. Town hall 4th ring waterwise 10:00 +Back to Inn for Isabella + +Hear elves in the city. People really finely dressed. + +Race 1 +sit in Section C +bet - 5s Wimpy Cheese 4/1 - Lost + +Race 2 +bet - 5s Where's Gravy 5/1 - Lost + +Race 3 - 5s - The Galloping Salesman - lost +Dogs + +Race 4 5s - in it for the Sugar - 3/1 - Lost. + +Race 5 Already Bet. +Sphinx style - stonemasons guild +Unicorn - first place vodker - forever 1st +Rot Horse - Payne horsebreeders +gryphon/chicken - The Rotund Rooster Rooster - chunky chicken casserole +Nightmare - on hire - Night Candle Inn +Wooden barrel - Bad barrel makers - By Bad Beauty +Gryphon/owl - 1st? - My missing Hangover. +Win nine 9g + +Page: 29 +Source: data/1-source/IMG_5145.png + +Transcription: + +The Truffle Hunter wins! mice + +Town almost finished - walls up to strength. Water problem too - looking to sort worrying rumours about members of the Council refer to forums. + +odd out of place formal announcement. + +go find Isabella's friends +knock & door swings open - middle class house - blood on the floor of the parlour. +2 halflings hanging from the ceiling by their feet - Male intestines over the floor (pattern?) +Female - looking at us but body upside down & face is right way +- suspect someone has done a divination spell using the intestines +not been dead long - but not warm. +- front door broken open - engineered force. +- physically pushed over candelabra +- Movement but nothing showing a struggle. +- No active magic - divination was used & same type as used at Everchard. + +hear heavy wing beats - Gargoyle 6ft. looks like it is made of clay - not usual in town. + +Isabella says it's from her aunt (family guardians) +Drops bag 50plat and flies off with Isabella. + +Militia come to see what is going on - direct inside & they take us to see the council 17:00 +store weapons in a chest before going in +also my medic bug + +Elementarium - Elf + +Page: 30 +Source: data/1-source/IMG_5146.png + +Transcription: + +Admits pylon is being interfered with + +Needs Justicar gone - requests us to look into the pylon +Justicar has ulterior motives +get access to shield pylon + +[boxed note] +! 2000g if we keep the information to ourselves. +get 500g now to rest on completion solve or information to help solve - Extra for water Elementals +-200g paid + +[crossed out] saw Tri-moon barrier attacks - they were different. + +Flickers - 5 mins - 2-3 hours +only from sea to seaward & nothing from Everchard direction or Dunhold Cache also +state nothing is coming their way +- started approx 3 weeks ago keeping log of it +- half [elf?] lings? suspect pirate - Captain of ship allegedly has crew but nobody has seen them - people go missing & turn up dead & magically disfigured. + +- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF - she will help us +- water spirits have usually made it through, more are making it through now along with the other elements +- try to keep body count low... + +18:00 + +Retrieve weapons. +sort horses - 1 day paid +get rooms at the Scarred Cliff +go to barrier + +19:00 + +Page: 31 +Source: data/1-source/IMG_5147.png + +Transcription: + +guards show us around. + +Gherison - Sage on duty at the moment - gives us the book to view - Time & duration of the flicker +2 weeks. - getting worse. increasing frequency. +Longest 3 secs. very random. +approx 9 am a bout of outages. +none around midnight. +Alarm clock in the home for quarrymen. + +- don't know how far the flickering goes between Seaward & Dunhold Cache +- happens towards the pylon - crawling in a horizontal pattern & don't go past the pylon. + +Crystal has thousands of tiny runes all around it. +none of the runes seem to have been tampered with. crystal is very clean +- meteowolves sometimes come down + +Geldrin touches? the barrier with his crystal shard & it goes crazy - guard said it seems like the flickering but more intense and didn't go as far + +Justicar - just checked the books & the crystal. with a eye glass +Peridot Queen + +Iaxxon - guardsman - guarding quarry, water elementals rushed past him - like he was in the way not attacking him. diff --git a/data/3-days/day-13.md b/data/3-days/day-13.md new file mode 100644 index 0000000..13b4f49 --- /dev/null +++ b/data/3-days/day-13.md @@ -0,0 +1,42 @@ +--- +day: day-13 +date: 28th Dec +source_pages: + - 32 +complete: true +--- + +# Raw Notes + +Page: 32 +Source: data/1-source/IMG_5148.png + +Transcription: + +Day 13 (Sunday) +28th Dec + +Ileep - got horses & leave for quarry. + +Follow barrier - see ripples seem worse the further away we get - Duration & frequency don't change. Pylon seems to be bringing it back under control. + +ground is very dry & loose - not many plants +get to a quiet point - see a home in the distance coming toward us - green - tall. elven woman black hair - looks eery. Very extravagant. (Peridot Queen) +- strokes my face & joins us towards the cliffs. +- worried when she looks at Geldrin. +- she's seen all 8 pylons. +- made it to the cliff cutter town. Mostly Dwarves & gnomes +- Barrier problem seems to originate by the cliff +walk towards the barrier by the cliff 21:00 + +"cliffs are sheer drops with rifts & barriers." +"water is choppy & quite dangerous" +"Recently cutting close to the barrier" + +- Break into a tool shed for the night +wind picks up outside for a moment +- Barrier around the cliffs is the emanating point, about 20 mins away. +- not much wildlife around here. +Morning wave sounds are getting louder - Raven goes & 2 x sea creatures rushing up the sides of the cliff + +23:00 diff --git a/data/3-days/day-14.md b/data/3-days/day-14.md new file mode 100644 index 0000000..c21d93d --- /dev/null +++ b/data/3-days/day-14.md @@ -0,0 +1,218 @@ +--- +day: day-14 +date: 29th Dec +source_pages: + - 33 + - 34 + - 35 + - 36 + - 37 +complete: true +--- + +# Raw Notes + +Page: 33 +Source: data/1-source/IMG_5149.png + +Transcription: + +Day 14 (Monday) +29th Dec + +! Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. + +06:00 + +- Peridot Queen arrives - has wings - appearance of an elf. + +- Geldrin, Invar & Peridot Queen go down in a lift right next to the barrier (1 meter away) mine shaft with some wooden structure beams +branches off away from barrier & parallel 08:00 +further down wooden wall constructed saying "danger of collapse" hear creature saying "Mun" shoot there human with scar pushing a plank back into the wall. +Peridot Queen pays him one of the old copper coins. + +transforms into a dragon green + +(incident after days ago came +30 years not had any problems until now +bears like bulls shot up [warded?] past towards the wilderness - streaking like a banshee +gnome says "smell like candy & has legs" prob lies! +on dwarf has barrier duty & found a small crystal on last duty) + +flies out of the shaft and Alcana & Dirk see a shape 8:15 + +- see a group of miners & a dressed differently human comes over to them and doesn't see spoke to points to us - human walks the off towards the barrier. + +- [crossed out: one of] the dwarves then attack us 4 x dwarves & 1 x gnome + +Page: 34 +Source: data/1-source/IMG_5150.png + +Transcription: + +gnome throws a blue rock on the floor +a small elemental comes out & attacks +Geldrin (poss spell effect) + +Manage to knock one out & the guards come over +& bring him round & he says +"he's coming Terror of the Sands is coming for +you all" guard [kills crossed out] knocks him back out. +guards take him back to town. +Private Burke wants us to visit the Maktum +before we leave all have 5g & old copper coin +gnome has two other blue crystals. + +8:50 +gets to 9:00 more obvious. Flickering but +nothing obvious. + +Believe the human may have come through the +Barrier. + +The human came from approx where. He point +of origin. + +- invisible Joy appears & tells Dirk they are +in pain & it burns - asks for Dirk's help. +- the thing causing the barrier issues? + +9:50 +- Follow the Salt trail from the water elementals. +Salt trail thins out but no sight of them +& after a time land becomes more lush +(approx 7 miles from the barrier) with insects +which we didn't see any before. + +11:00 +River ends on the cliff and comes off in +a waterfall (shallow river) +Path ends at the river. about 20 years old. + +Page: 35 +Source: data/1-source/IMG_5151.png + +Transcription: + +- River appears to contain water elementals +elemental says +"Pain gone, no hurt me +you come take me like others take we escape +through pain, closest, good water" +Geldrin frees the two in the blue crystals. +elemental wants us to free the rest. +death dome - came through hole made +for poison water. hole hurts. [Monde? crossed out] (in the sea) +[Elemental shelters ->] trying to free some creatures trapped underground. +Poisoned one - made of poisoned crystal one. +Powers death dome. Garadwal was one until he +escaped. +moon rock full create hole - two moons ago += scaly dragon with web fingers. goes through +dome - blue/grey colour - [one formed crossed out] +one big one with four arms - work with +poison water & Garadwal with tridents + +- hole by cliff face at bottom of sea +occasionally somebody/thing goes down to annoy +the crystal + +13:00 +- head back to the town to speak to militia/guards. +* Salias - the guy our amulet is talking +about. - earth + water +- soon free like our master Garadwal - Sand earth & fire. +Barrier is enslavement. +* 8 altogether - soon find hidden lair of oppressors - +used us as batteries. + +[diagram left] +ooze? / earth / sand* / fire / smoke? / air / ice? / water +magma lightning. + +[diagram right] +ooze / earth / sand / magma? / fire / void? / smoke? / air / lightning / ice / water / salt + +Page: 36 +Source: data/1-source/IMG_5152.png + +Transcription: + +- Theories - Needs of the many outweigh the +needs of the few +- They tried to destroy the world & got locked +up +- Preemptive locked up + +Water back - 10 miles down the path from Seaward (airwise) +- 10 miles down the coast from the barrier + +head back to Quarry +16:00 +Door the left right next to the barrier +18:00 +2 panels missing from the hole. +Passage way descends down - behind the wooden +Panels. Goes down quite a way - has been +excavated. on purpose not a mantle seam. +widens out & opens to a really old built wall (1,000 years old) +- descends into underground structure. +- right old door - sign of aging handle hurts +old gnome walks out. realises we are there. +* gives him a coin. Underbelly? - truce in +place. + +- [go gnome crossed out] get a tour prison +down corridors - turn left many times +6 corners huge metal door - dragon head holding +ring - go through - see barrier at far wall. +smaller barrier encompassing a massive salt +dragon - sweating salt for 20 years into the earth. +they are trying to free it. +room was full of ooze & eels & +copper pylons were there but they removed +them. + +- runes on floor barely visible as covered in salt. +another room has 4x curved copper pylons. +removed 20 years ago - Dragon was already seeping salt. + +Page: 37 +Source: data/1-source/IMG_5153.png + +Transcription: + +- Keep Justicar out of it down here. + +- down to the left is the original entrance. +go look at it - similar to a room we have seen before +in the observatory? examined in the last 20 years + +[ ] Big black dragonborn comes in - tourguide's boss - Not many around. + +- Cult looking for a laboratory + +Basalisk - There's a laboratory of a similar vein +20 miles earthwise along the barrier. + +20:00 +Head back to town. +* Common Room - sharing with one other person who hasn't +shown up + +* Message to Basalisk * +He comes to us +knows little about Salt elemental +Black Scales - mercenary group work for Infestus +(Black dragon) +Basalisk went to check observatory - couldn't open +the chest. & couldn't get in the golem underground +room either. + +Garadwal +prison at lake by lab? - ooze one. +frozen near Rhinewatch - ice one +Garadwal - Sand? seems wrong as buried North +of Aegis-on-Sands is he an elemental? + +go speak to Elementarium guy in Seaward. diff --git a/data/3-days/day-15.md b/data/3-days/day-15.md new file mode 100644 index 0000000..32c0c32 --- /dev/null +++ b/data/3-days/day-15.md @@ -0,0 +1,121 @@ +--- +day: day-15 +date: 30th Dec +source_pages: + - 38 + - 39 + - 40 +complete: true +--- + +# Raw Notes + +Page: 38 +Source: data/1-source/IMG_5154.png + +Transcription: + +Day 15 (Friday) +30th Dec + +- Head back to Seaward +Follow a caravan of stone back to Seaward. + +19:00 +- get to town - raining +Need to see Elementharium +actually dressed this time. + +Quasi Elementals - don't have their own plain. +Known 8 major plains. light & dark effects it +to create the 8 main ones + +They became their own things & started to fight - Not become that powerful +E + W + L ooze/slime/life - spark of creation +E + W + D Salt makes water bad & crops won't grow. +E + F + L Metal - Positive construction +E + F + D Magma - Destroys farmland etc. +F + A + L Smoke - +F + A + D Void - absence of everything - Nothingness +A + W + L Ice -- +A + W + D Storm - + +Where does sand come into this? + +goes down the trapdoor after talking to us +about salt water elementals. +Dirk listens - talking to somebody about it +they don't exist. salt & water are their own +things - Pollution <= Salt elemental poisoning the water +Elemental +- Dirk - crystals helping the barrier? Elementharium [crossed out] believes it. +But he needs the Justicar to believe it so +she leaves +Geldrin to try to sway guard/towers to get +her to leave. [Rhonati?] or Hevii might have an obsidian bird to +relay a message. + +Page: 39 +Source: data/1-source/IMG_5155.png + +Transcription: + +Arrange to meet back with him @ 9:30 +Dirk asks about Garadwal - he goes down to +the chamber & retrieves a Dwarf Skull & asks +it the question about Garadwal +The information you seek is not for your kind +he is imprisoned in the prison of the Sands +Brutor Ruby Eye - knowledgeable being wizard of +great power + +- Shows us the skull room - he talks to them +for information + +What would happen if Garadwal escaped? +it would be bad indeed. The barrier would +be weakened by the loss of one of the 8 +he was the only void they could find. if one +was to escape it would be him. +feedback from the destruction of his prison would +have damaged the others. +Geldrin tells him of the tri-moon shard +Brutor knows of the first crack Envoi was tampering +with it for his own means tampering with the containment +device & if something happened to him it would be +bad & cause the crack. +Wizards didn't agree of their entrapment but they +all agreed Garadwal needed to be contained. +ooze was a good one. +ice & storm [crossed out] were put in the same chamber +as land was tricky to be dug +* Stop leaking? maybe sigils out of whack +Brutor killed by Black Dragon +Demi lich - how he was made. + +- maybe a way to reverse the polarity +! Spinal! Brutor's password. + +[boxed note] +Winter Roses? +Envoi's password + +Page: 40 +Source: data/1-source/IMG_5156.png + +Transcription: + +- Halfling killers +- 8 things linked to the poles +- Pirates +- Elementals + +Received downpayment +for our work. 50 +per 200g +20:30 + +- Put horses into the stables +- Stay at the Night candles +- to [crossed out] + diff --git a/data/3-days/day-16.md b/data/3-days/day-16.md new file mode 100644 index 0000000..5791e80 --- /dev/null +++ b/data/3-days/day-16.md @@ -0,0 +1,561 @@ +--- +day: day-16 +date: 31st Dec +source_pages: + - 40 + - 41 + - 42 + - 43 + - 44 + - 45 + - 46 + - 47 + - 48 + - 49 + - 50 + - 51 + - 52 + - 53 +complete: true +--- + +# Raw Notes + +Page: 40 +Source: data/1-source/IMG_5156.png + +Transcription: + +Day 16 (Saturday) +31st Dec + +Head to town hall to see Rewi - Lovelace - Gnome. +Room is very messy. +Obsidian Raven is pulled from a drawer +called Errol (But not really) +Justicar causing more problems than solving. +Request further evocation spells. + +Rewi - Thinking on how to enhance the pulley system +at the cliffs. + +10:00 +Retrieve horses & Cart and head Earthwise. +Invil Newhaven - Earthwise 4 miles, Stonebrook Earthfire wise. 3M +Continue Earthwise towards Newhaven. +Land starts to get drier & seem to +be at the edge of the salted area +12:00 +relay at a well - the only freshwater [area?] +in the area - others have been boarded up +as water is bad. +Mayor runs a farm - keeps chickens. +fill up water skins. + +- Road out of Newhaven in disrepair +outside of town grass dries up again. +town seems to have good water as an +anomaly. + +Page: 41 +Source: data/1-source/IMG_5157.png + +Transcription: + +Not many birds around. + +Nothing around to indicate a laboratory. +Obsidian Raven appears - suggests meet up with +Justicar & work together - wants our location +- "don't give it to him". Flys back to Seaward. +- Keep going to 10 miles away & 1 mile from barrier +- Find charred earth - last few days. +campfire & rations - cultish? +see some tracks 5-6 people camped prints show +they are searching for something. +Nothing obvious. Follow tracks towards +barrier. they stop & we see acid +corrosion & blood speckles which look to +be swept over - Black dragons have acid +green is mist + +[boxed note] +Brutor +Abjuration +wizard of +Tor +(Rocks) + +- Geldrin checks the compass - Finds weakish signal +& we follow it about 30 ft down & +see purple & find 10 ft stone walls, with a +door - password opens it (Spinal) + +Enter into chamber 2 columns in Dwarf +form guard a door. Spinal opens the +door. + +- go left down corridor. +Enter large room - stone benches & lecture +(seat 20-30 people) +Jagged rock man - representation of Tor +Tor Protects - written underneath statue +No visible disturbance to the dust + +Page: 42 +Source: data/1-source/IMG_5158.png + +Transcription: + +Book on lecturn - Book of Ancient Dwarven +language on Tor + +? head across the corridor - room same +size but only contains teleport circle +(one set) Geldrin takes rune number +Dirk finds footprints that have been +tried to be covered up & lead down the +Corridor fairly recent. ago could still +be around as none go back on + +Follow footprints to a closed door +footprints seem very purposeful +ruby in the dwarf face releases +some chains which open the door + +- use my crow bar to hold both of the +chains to keep the door open. +Geldrin sets an alarm on the hatch & +teleportation circle. + +go into another door (2nd left from the hatch) +purple glow from the room. paper work on the +walls of pylons & tower structures + +Bubble of shield energy in the middle +Scale model of the penta city states +suspended globe of elements at each of the +compass points. +[crossed out text] There is a city fire airwise +of lake Azure half way between the lake +& Aegis-on-Sands. + +No sign of any of the prisons or the labs on +the model. +Elements don't move. + +Page: 43 +Source: data/1-source/IMG_5159.png + +Transcription: + +Teleportation circle activates. retrieve crowbar +& hide in diorama room. +1 person seems to come out & goes to +dwarf face door. to door opposite us then +in - human - desert style robe - Arabic look to +him piercing blue eyes. - doesn't work for the +black dragon. +has found several circles & +he is a collector of magical trinkets +Make a deal - he gets all the [coin crossed out] coin - gold & silver +we get first pick of the treasure. +he gets the next and then we get +3 other picks - even split + +Loung has a scepter that seems out of place. +Dirk takes it and an alarm goes off +all doors are now arcane locked. +go back through dwarf face door. +go left mouth appears and tells us +traps are active. +first door - ten skittles at the end of a lane +power table a darts board with 3 darts in +the 20. +Poker table is magical - whole room is magical +next door totally empty room... +next door - silence spell goes off! Room is full of +rows & rows of crystal balls. (Memories but we +don't know that) +back in the lounge hidden box behind the +& silence spell stops + +go back to crystal ball room + +Page: 44 +Source: data/1-source/IMG_5160.png + +Transcription: + +- Memory of goliaths helping to build grand towers + +Find the hall with the most scratched plinth - memory is filled with dread - Acid +smell like house scarred by acid & dwarf skeleton. + +- get one grand towers hall - see 4 other people in a circle around teleport +circle - human (male), elf (female), human (female), very similar to the elf, +reef jewellery, stag design on dagger hilt, helping (Enoi) +purple crystal rises up from the circle. + +- before acid splash house see tower talking to Enoin - asking about if it's affecting anything. +Joy sees of the alarm. +Ruby eye takes the dagger & splatters blood and stops the alarm. "Just his blood?" + +- before - thick white robes, Enoi talking to elven woman from circle. Joy feel content, +a dwarven lady next to him, but forlorn when looking over at Joy & Enoi. + +- Male dark elf next to Enoi being introduced - in observatory - tell Enoi she doesn't +trust him. Elf has magic. We don't see - craft flesh. Enoi wearing 5 rings. + +- Hot Spring - opposite dwarf lady (Brookville Springs) +early date - falling in love + +- Standing in a room in his building +purple dome & copper pylons with blackness & a shadow. +ask shadow what it thinks +Shadow replies saying no not while it is trapped & threatens calamity. + +- Nice room intricate vine patterns elven mage asks about change - nothing - Browny +retreated to grand towers. Dwarf she is here worried about it - (Warm) Secret: + +Think Browning is going to cover it all up - thinks if people know how it works then they will ruin it. + +Page: 45 +Source: data/1-source/IMG_5161.png + +Transcription: + +- last one - see him in mirror wearing robes +book & chain or staff. Looks down under mirror & hand on floor. Stone opens up showing skull, +puts 2 crystals in chamber & for protecting. + +- Pythous Aleyvarus? Blue dragon. + +Ruby eye seems to have planned the dome +5 pylons & 5 more around the Grand Towers to make it work. + +Early periods where he's protecting towns from elementals. + +group all fighting 6 armed rock creature +when it breaks they all make a pact. + +- Male human points him to a crater with a massive purple rock & Enoi says he will build +an observatory to track it. Brutor says it is what they need. + +- Warring kingdoms - point together to construct everything. +Huntwall - Goliaths kingdom (the one on in the mini dome) +goblenswell + +- turning on of the dome at the point of turn on something flaming bursts through +and pouring bursts through the barrier & is attacked. + +room opposite - big engineering astrolabe seems to be the planet - which is a dish - with the moons 15:00 +with their orbits in real time. + +- Display shows the date & time - current date +31st December 1011 + +Page: 46 +Source: data/1-source/IMG_5162.png + +Transcription: + +Room next to orbs. +protection from elements spell +open the door boulder elements in there & try to get out +slaves? made to dig - leave them there + +Down the corridor. +room opposite same place as calendar room not locked or trapped - room is empty mirror image of calendar room. + +* opposite to boulder room +smaller room - empty aside from picture of moon with holes +look like big gem holes. + +* opposite orbs +Feel weird opening the door +glass cabinets in pedestals & shelves with various nick nacks +brass plaques & glass domes over them + +M carved with flowing water - bottle - "Containment token from Lord Hydrannis" +stones at the top 2 are glowing. + +M wooden sconce - spear - flames coming from bottom +"Spear of Ciara" (fire god) +1 magic bounds (magic missile) + +Ditto holes +wooden shield? +1 save/disabled once per day + +> great sword - stone & bone hilt with steel - darkened steel blade in friendship +- sword given by kings of the goliaths +"To the spell ones on the crafting of your big building" + +T cookbook holder - with a book very delicate +"book recovered from grand towers upon discovery" + +- Dwarf mannequin green silk dress - gold trim, ornate & tiny emeralds along the trim +"Worn by Princess Seline to the Grand Ball" + +> Cushion - small red gem - garnet += no plaque +- size of the moon holes +plain plinth writing underneath. + +> Coin press - grand towers pennies +"press used for souvenir pennies" + +Page: 47 +Source: data/1-source/IMG_5163.png + +Transcription: + +M Jar - eyeball in fluid +"My Eye" +scyris eye can scry once per week + +M Book - sealed not open - made of Tan leather & looks unsettling - Platinum lock +human teeth are around the edge +"Noctus Cairinium Grimoire" +lock looks like it's an adult human. [unclear side note: blue, eldritch] + +- M plinth wheat sheaf - pillow with marble cube radiating a yellow glow +"British cube a gift from the golden field Halflings" +next child Ssethon + +- Bottle - wine shaped +"first pressing of Sigerne - midh - iel" +Maidens dew drink + +M Ring - looks like bug hunter ring - ring of protection +1 +"Failed attempt to recreate my stolen ring" + +M Comb - dragon bone & jade - details carved of a forest +toothless toothbrush - deja vu +"gift from the elven princesses to my wife she never got on with it" + +V - Scepter - silver fine golden filigree - white seaward gem in the top +"staff gifted by the merfolk of the great sea" + +Gem writing - "time existed before me but history can only begin after my creation" calendar room/library + +Celestial book - tower seems to be the centre of the world & don't know where it came from - clues - +Geldrin got a vision when reading it. Saw 6 primeval elements looking down on the world. + +Geldrin's Alarm goes off - see figures at the end of the corridor (4) burly - black dragon born. +They hear alarm - "The alarm's going off somewhere in here (Draconic)" + +Page: 48 +Source: data/1-source/IMG_5164.png + +Transcription: + +They want us to leave, claim it in the name of their master. +Shields have mosquito on it. + +Create a shield wall & we yank crowbar out. +Fight 3 1/2 swords +4 shields mosquitos +70gp 4 x tower pennies + obsidian bird. Errol. + +Errol - lost message was gnome giving our location (Rawi) +to black dragon? + +Red gem found under plinth under Celestial book +"The floor of my ship is decorated in equal parts with riches, tools, weapons & love" +- games [unclear/crossed out] + +Next room - walls & ceiling are blackened - kitchen +nothing in the oven +Jar containing gem +"The rich want it, the poor have it, both will perish if they eat it" nothing? - right here + +Barrel seems magically sealed - [crossed out: with] rune for the cold beer. +Contains a jar with a hand in it. +hand is Ruby eye's and has blood which stopped the alarm. + +Next room is warded & locked. + +- Previously empty room is now full of books +control earth elementals, Tan gems for spells, warding. +Information on how to construct crystals for magic. + +gem inside a book +"Although I'm not royalty, I'm sometimes a king or a queen, and although I never marry I'm only sometimes single" +Bed ✓ + +Page: 49 +Source: data/1-source/IMG_5167.png + +Transcription: + +Summon unseen servant in the elemental room + +gem Elemental Room +"in my first part stir creativity & in my full form I store the results" museum ✓ + +gem Orb room behind an orb +"You have me today, tomorrow you'll have more, as time passes I become harder to store, +I don't take up space and I'm all in one place, I can bring a tear to your eye or a smile to your face" +- memories - orb room ✓ + +memory is "if you got here you got my message, only clue is based on the layout of my rooms. When you get inside you'll know what to do" + +gem in Calendar room +"I ignore the start of this recipe just scramble, hidden" +kitchen? ✓ + +Bedroom - seems to have a womans touch, tapestries, rugs etc, wardrobes, drawers, full length mirror, +chair, fireplace. + +compartment under the mirror - skull with 2 gemstones +rolled up paper in the eye socket behind big gem. +(if you feel I've lived a good life this is the Denouement (final part, finishing piece) + +gem in the other eye. + +"They are never together, yet always follow one another, +one falls but never breaks and the other breaks but never falls" calendar ✓ + +Page: 50 +Source: data/1-source/IMG_5165.png + +Transcription: + +Put all of the gems in the slots and room +opens. purple sphere but doesn't let light through +void creature? wasn't used as it may have been +too weak + +- Seems to be a self contained barrier + Void creature wants to be let out +- The diviner - the one who stole his brother - the twin we killed + +Door +Mechanical trap - activates something in the room +Magical trap - teleports to the room + +Pythus - takes creepy book "Celestial book" +Dirk sword - scepter of the merfolk +Me } coin press / cube +Inver ring of protection / potion bottle +Geldrin spear / eye + +Pythus - gives Geldrin a scroll of teleportation & goes + +Geldrin takes eye & scrys on Pythus +- Sand stone cavern, pile of gold on top is a blue + dragon ([crossed out: Serpent blade]) reading the skin book (all pages made + of cured human flesh). +Seems to be at the edge of the desert near +"Salvation" + +Back to void room. +Will tell us what is in their room in exchange +for freedom. What is in the room will help release +him. Rubyeye wanted to live forever +went in with elven woman + dark male ([uncertain: Envil]) +just a fragment of the void but if added to the +others can get more powerful but only a tiny bit + +Inside a key looks like pylons place against a barrier +circle of copper and turn it - talking like barrier +isn't active +pylon for his prison as well as [crossed out: unclear] [uncertain: ankhir] + +Page: 51 +Source: data/1-source/IMG_5168.png + +Transcription: + +use the ruby to open the door +then destroy it - don't give it to rubyeye as he wants to use it to become immortal. Demi Lich. + +go through door next to void +4 plinths - by the door are 4 copper pylons +look like they would go over voids force field. + +1 & 2 metal circles runes all around (copper) +1 - steering wheel size +1 - over a meter, stored upright + +3. Dragon skull - Alsafaur dog size. + +4. Book same lock as on the creepy skin book. +made of leather - unpickable lock. + +Room possibly storing one of Enoi's ring - it was under the skull. +skull is one of my kind - veridian dragon born, +dead for approx 1 thousand years. + +Enoi's ring +- a sacrifice made to live eternal, father & daughter + +Book (writing around the edge) - old dead language +- The memoirs & learnings of Aldaine Hartwell. +needs a powerful identity spell to learn the command word to open the lock & book. + +Mosquito's, woodlice & moths are now around. +rain storm - + +Void will help as long as he is not detained. + +- lightning strike is seen although underground + +Try to let void out + +Page: 52 +Source: data/1-source/IMG_5169.png + +Transcription: + +push pylon's against his dome - opposite pylons seem to switch it off very slightly. +Ring by the dome, turned & [crossed out: attacked] attaches to the pylon. One full turn releases the dome in that quadrant. + +* Void releases a circle of obsidian to contact him with. + +1. take his ring & book & small ring. + +- remove gems from the moon face lock +- head out & close the initial door behind us 18:30. + +massively overcast with the storm, air is thick with insects - moths/mosquitos, ants etc. + +circle of storm 1 1/2 miles wide moving unnaturally. + +Push of barrier looks like 8 massive claws pierces through - black dragon seems looks to be trying to come through the barrier. +he wants the remains of his son +- seems to be the skull in the sealed chamber +go back & get it. + +Missing the side of his face - think ruby eye did it but he may have started it by killing his son! +place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. +takes the skull & says we are even (for killing his men) + +Page: 53 +Source: data/1-source/IMG_5171.png + +Transcription: + +he flys off & Thunderstorm goes with +him. + +head back to Newhaven with the cart. +go to pub - picture of 5 hands together making +(The Pact) a star. +silver dragon born behind the bar +golden rim spectacles +Halfling wait staff +Tabaxi bar maid +"Gelandril Thurtall" +been here 10 years +it's said the 5 wizards used +to meet here. + +Drayven born seen locally +- Silver Thurtall +- Copper sporadic + White +- Black + +[sleep] + diff --git a/data/3-days/day-17.md b/data/3-days/day-17.md new file mode 100644 index 0000000..dd9bca3 --- /dev/null +++ b/data/3-days/day-17.md @@ -0,0 +1,228 @@ +--- +day: day-17 +date: 1st Tan +source_pages: + - 53 + - 54 + - 55 + - 56 + - 57 +complete: true +--- + +# Raw Notes + +Page: 53 +Source: data/1-source/IMG_5171.png + +Transcription: + +Day 17 (Thursday) +1st Tan +17 days until Tri-moon + +Goblin looking for us -- Scum. +had a message for us. + +find Scum as we leave the pub +apparently - warrant for our arrest +- Treason - Conspire against the + Towers to break barrier + +Scum - telling Clementarium to meet us with +Ruby eye skull (1 mile outside Seaward) + +Sent message via Crow to grand towers +saying we [are] going to Everchard, +to put them off the scent. + +Dragons seen +[crossed out: Veridian] +Blue (Pythas) +Black (Infestus) +Silver (Thurtall) +White - The ancient [Anaraleth] +Red? - soob + +1pm + +Message to the Basilisk +arrive at possible meeting point - waiting +for nearly 3 hours - Cart comes off road with +a human onboard. don't recognise +Seems suspicious +1 Box contains grand towers pennies +Council ask for him to transport [tubes] to +Fairshaws - The cart (Garick Black) +- looks like the gnome sent it + +Page: 54 +Source: data/1-source/IMG_5170.png + +Transcription: + +Manifest + +1 currency - Towers pennies +1 provisions - Ash Jerky ??? +2 armaments - spearheads Alvoo - trident heads + copper ends tipped in copper +1 waterproof paperings - reams of enchanted waterproof + paper for salt water only. +1 Keg +1 tools - heavy duty - ship building? +1 misc goods + +should have gone out in 2 days with + +Invar [crossed out: Dith] knocks the driver out as he +see what looks like Elementharium riding + +Gnome seems to be trying to clear the decks. +Elementharium doesn't know about the spearheads etc. +wants to set up a meeting with Lady Thurtall! +they have a council to discuss security +matters within the dome + +gives us the Ruby-Eye skull + +Jerky bag contains a hemp bag - pungent +sickly sweet smell - reminds me of [winter] +Rose spice - but narcotic + +* Ruby eye infuses son - spawn of evil - needed a powerful +sacrifice - for a friend (Anvil) +- Salt dragon leading - worried tampering with the life + may have weakened the force - +- Re-inforce the barrier - if we don't possibly weakens the barrier + fix by refilling the voids + or safely disable the barrier - turn off with + the failsafe button in grand towers. +- Weird skin book - grimoire Noch's Caardium - forbidden magic + +Page: 55 +Source: data/1-source/IMG_5172.png + +Transcription: + +To stop Tri-moon shard we would need + +- Create a device to repell it but barrier would + need to go down to do it. + +- Relationship with the merfolk? (fish men) different people + than those invited into the barrier. Great helpers to + set up barriers + +- Thinks Browning had something to do with Goliath + settlement disappearing from the history, [must be traces] + Green dragon seems to be residing in the + area, + +- White Dragon - helped to build the dome. + Reds [descendants, murdered], no blues. + +- Elementals liked to attack & this is why + the barrier was put up +- Tower was perfect place but needed more. + - Backup plan for the void elemental slashed + in his safe. if not there need to find + another + +- giant Gargoyle approaches, rolls a + carpet out with a teleport rune on it. + tells us to get on the rune. + +"Thurtall!!" + +Appear in a lush castle room, at Thurtall +sat at head of table seems to be Lady Thurtall +(loudly approaches up to us) +stood beside [shunter/shutter] lady +about 1ft when the barrier went up +4 chairs by the rug +- Trip in the sky - Basilisk appears with +- Lady Catherine Cole - Earl of Stronghedge (Basilisk is Bodyguard) +- Tiefling male takes another seat - portly - appears in a purple flush (The Guilt) +- Valkyrie woman walks in - Earl of Ironcroft firewise - flanked by + 2 dwarves. + +Page: 56 +Source: data/1-source/IMG_5173.png + +Transcription: + +Catherine Cole vouches for me +Valkyrie vouches for Invar + +Thurtall talks to ruby eye - he was a friend of her +mother's and she hasn't aged much for 1,000 year +old. + +- Tabaxi male strides in - looks a little older. Hooka pipe + floats beside him, sprawls on the ground Earl of Salvation. +- small group of like minded to protect the barrier. + want to maintain stability of the barrier. + news reached them about the fragment. + +Concerns did friend awake The ancient one +& reported several +issues near Runewatch. + +- green dragon responsible for + destruction of Dirk's homeland. +Rubyeye [crossed out: Dith] blamed [Dith's] kind for helping +the dragons. +It's said Veridian dragon is +teaming up with the red dragon. + +* Keely Caardenalb's research maybe of use +(she lives in the desert) + +1. head to merfolk. +2. get crystal from the water +3. speak to ancient one. + +We pass off the twin mum +Elves were first on the earth. +everywhere there was light and with light there was +dark. in this came life & sprung a couple who created +mate & so did he, they then became the gods +light & dark fought & because of this the physical + +- leaking elemental prisons +- Garadwal +- void on the loose +- shield crystal in the sea. + +Page: 57 +Source: data/1-source/IMG_5175.png + +Transcription: + +world was made. lots of fighting & then they made +a truce where each didn't go into each other +territory & created our 12 gods. The decided to meet +on the combination plain but it was difficult so +created 6 Excellences & they fought gods needed armies +started fighting but then they got their own free +will & thrived in certain places. The guys +with multiple arms are the excellence. 5 is a +Holy number as it's seen as removing the darkness + +Basilisk - getting someone to meet us in Fairshaws +or Freeport they will carry a Winter Rose. * +gave him the coin press & told him +the coins in the cart were a crate of them + +Back to our Cart 5:30 +head down the main road toward Fairshaws + +start hearing birds & animals etc. 10pm +find a place to camp for the night + +Dog going around with the twins & approaches the +camp 5 attacks & die [2am] + 3am. + 11am + diff --git a/data/3-days/day-18.md b/data/3-days/day-18.md new file mode 100644 index 0000000..71e1dc8 --- /dev/null +++ b/data/3-days/day-18.md @@ -0,0 +1,25 @@ +--- +day: day-18 +date: 2nd Tan +source_pages: + - 57 +complete: true +--- + +# Raw Notes + +Page: 57 +Source: data/1-source/IMG_5175.png + +Transcription: + +Day 18 (Friday) +2nd Tan +16 days until Tri-moon + +Back on the Road. +uneventful day heading to Fairshaws. + +Make up camp again + +Nothing happens diff --git a/data/3-days/day-19.md b/data/3-days/day-19.md new file mode 100644 index 0000000..115f3fa --- /dev/null +++ b/data/3-days/day-19.md @@ -0,0 +1,153 @@ +--- +day: day-19 +date: 3rd Tan +source_pages: + - 58 + - 59 + - 60 + - 61 +complete: true +--- + +# Raw Notes + +Page: 58 +Source: data/1-source/IMG_5174.png + +Transcription: + +Day 19 (Saturday) +3rd Tan +15 days until Tri-moon + +approach Fairshaws see gold sands, white plaster +buildings. - looks like a Cornish Town. + +go through town to the harbor to get a boat +Temperature is oddly warm for this + +Pride of the Penta cities - Galleon take passage +Cabin 17. Figure head is a wooden shield Crystal + +ship on the horizon. Captain seems panicked +and says to try to outrun it. Not sure +what it is yet + +Hostess Lady chants & brings forth great winds +& a storm. + +Tiny flame Keely breaks out of the buffet table +heat lamps & sets a table alight then she +attacks us + +Merfolk - they've never done that before. +- Pirates - has been attacking people - + more recently. +- creatures that can petrify others by looking at them + [check]150g if we need to fight [check] 5g if we don't + +- Male half elf - bit of my kind - wearing travellers leathers, [permitted] + [icon] 10g +- Elderly dwarf woman - poor with a silver chain - worried when relieves + eye contact with Geldrin - Beautiful +- Silver Dragonborn - Bard - Beautiful. + +Ship is approaching Black sails with snake heads +seems to be propelled by water not wind. + +Page: 59 +Source: data/1-source/IMG_5176.png + +Transcription: + +(Kairbidius) +Pirate - big brimmed hat & worn mismatch pieces of clothes +Salinus? he calls on Salinus - worn - calls forth +salt elementals, +kill him & his crew +- free passage on any of their ships, & 400g +receive Scimitar +1 - attune for water breathing +Handblow Pistol of Never loading +1 (D8) noisy + +Retreat to cabin with a cask of rum. + +Turtle Point - docks & nearby look like they could be +under water at some point - be back for 9am + +This is the only town on the Isle +Turtle men seem to be the locals +3rd road left 3 building - Sailors Rest +Take a shrine tour - Shrine to the great Turtle. +Merfolk - the accordsmouth - look after the Turtles +we stand on the back of The Great Turtle +- 200 yr life span + +Pre Barrier, great Turtle came into this world, +trying to escape his realm, Trying to get +on his way & picked them up. Diverted to our +world. Rooted his feet in the ground, they believe +he is still awake. +Shrine is a fountain made of the white +stone Seaward is made from. Fountain is quite +elaborate. Here is a [shelter] Shrine but it is private +had a multicore attack then using his path +combination of different animals + +Page: 60 +Source: data/1-source/IMG_5177.png + +Transcription: + +Water gets up high on a Tri-moon & covers + +- Tell the guy about our fight with Kairbidius +- thinks he knows about where Kairbidius parks + the boat & wants to show us 19:30 +- takes us there + +[crossed out: Docks] Old town in disrepair but one dock +[crossed out: look] looks fairly well maintained & repaired. +3 houses [crossed out: lot] look decent too. +[crossed out: He has] first house closest to us seem to +be lit. creep up to look in +4 fish men inside an empty tavern +attaching copper spear-heads onto [sticks] +& finished against the wall. +1 fish man tells the others The Boss (King?) will be angry +if they don't get the shipment on [time] so go +get the boss + +Both other huts have lights furthest one +seems to be more secured +One has a Conch & calls & says +Kingly comes now. +wait around for him 8:30 + 9:30 +Water comes back +Any sight? he's failed been replied "boat" +captured, think he's dead. Boat captured. +They bring out the weapons & wonder +if it is going to be enough. 10:00 +11 fish people carrying things, 15 overall, +chariot back pulled +- Something seems to be coming +by barnacled sea cows. +with hull 6 armed fish person on +skewers a fish person & eats it. + +Page: 61 +Source: data/1-source/IMG_5178.png + +Transcription: + +creature stops & smells they are being watched +tells them to search for us. +sees Geldrin & throws trident at him +likes being complimented & threatens to destroy everything. +Need all or the plan will not work & he will +be cross. & he will be worse. + +- think 6 armed creature will attack our ship + for the weapons. +- go back to Turtle Point 12:00 + diff --git a/data/3-days/day-20.md b/data/3-days/day-20.md new file mode 100644 index 0000000..3f7f488 --- /dev/null +++ b/data/3-days/day-20.md @@ -0,0 +1,268 @@ +--- +day: day-20 +date: 4th Tan +source_pages: + - 61 + - 62 + - 63 + - 64 + - 65 + - 66 +complete: true +--- + +# Raw Notes + +Page: 61 +Source: data/1-source/IMG_5178.png + +Transcription: + +Day 20 (Sunday) +4th Tan +14 days until Tri-moon + +Plan to go to freeport instead of Baytrail Accord +- shipment from Earl of Fairshaws to Malcolm + Jeffries - same boxes we saw outside Seaward +- go to Barracks to tell The Pact (picture outside is + the same as the pub called The Pact) + +Pact leader Shandra - ensure the Pact's rules are +followed. & protect people who needed +it in exchange for the protection of the barrier. +- Tell her what happened - 10ft 6 armed thing is "An Excellence" +Sahuagin -> "fish people - Saguine" +from Kiendra, leader of Dunhold Cache information +who was killed. +Pact Scepter - One given to each of the wizards +requested for us to keep it as it signified +our side of the Pact +! recommends to speak to merfolk of Lake +Azure for Dirk's city +shipment - get a smell unit +Sahuagin have one of the [Scepter] Conch's +(8 in existence) Kiendra's +asked Basilisk if he can get help to Shandra +one of the Merfolk will come with us +Pact leader Freeport - Tiana + +Page: 62 +Source: data/1-source/IMG_5179.png + +Transcription: + +stay in the barracks for the night +Dirk has a strange dream about a goliath sitting +on a granite throne looking concerned, two females tending +(Rubyeye), fought well. *changes* tavern scene +dancing around a fire with a granite city in the distance +face in the fire ?[...]. Then? Dog? then disappears. + +head towards ship +(Merfolk) Guardfree - states his mistress has been +working on misdirection +- get food brought to our cabin. +- Journey is uneventful luckily. + +Oddly a busy bustling city mishmash of styles +Kairibidius ship is docked here. + +- Quartermaster loads shipment onto our cart to + take with us + +Baroness [crossed out: Kavaliliere] - head of Freeport. +No taxes for trade here +Newspaper +- Ancient takes flight - left his home for last 1,000 years + moving to Snow Sorrow +- fighting still goes on in the mountains near + Highden - good taking a beating. +- paper seems to be propaganda + +go shopping. 20:00 +Esmerelda - magic item shop + +Page: 63 +Source: data/1-source/IMG_5180.png + +Transcription: + +go to see Tiana at the Siren & Garter. + +Expecting a group of 40 to help fight Excellence. + +- They are mutual & can be slain. Delights in bossing +the mortals around. + +Baroness - seems good but lets people do what they +please. Although can be random with which groups +to dispose of. latest one around a week +ago - a group of bound elementals & gems - Arc & water. +- another group selling archeological items from desert - Tabaxi +caravan etc. +Ceased the goods. + +- go find the basalisks in a private room. + +Highden - being attacked by a fire Excellence +has something in for the elves. + +Investigated the crater & found a old lab +but unable to get in + +* Friends on the council meeting with the ancient +around Snow-sorrow. + +* azure-side - reported perodetta & spawn amassing +in the area. + +* Arabella kidnapped again. - targeted attack +faces removed. + +* No forces available - Zinquiss will meet us +at the harbour + 1 other +- Baroness Neutral Party. - fairly reclusive +following her predecessors ideas +maybe something similar to Lady Hathwall but +is not a dragon. previous of her human + +* told about copper weapons - paper - Malkolm Jethnes +& Earl of Fairport involvement in the shipment + +* get a dagger from basalisks. + +Page: 64 +Source: data/1-source/IMG_5181.png + +Transcription: + +Lesser rift Blade - Dagger +1 - 3x charges + +Heartwall 2nd most +Common last name (Browning 1st) + +Always been a Heartwall in +Charge of Heartwall. No +Records of relative Very Reclusive +family who don't appear in public until the Coronation +Ceremony, only seen together to hand over the crown +(possibly disguise self spell) + +1 charge for dimension door +3 charge for teleport spell opens +a portal open for 5 seconds +think of the place to +go. - big enough for a person +1 recharge per day + +19:00 + +Go back to see Taina again. +get another guard - Guardfore + +Pirates Pearls Plundered - Ichy (owner) +Ref gut Refuge - +Cheesy Thimble Rugger + +- go out to the cart - Dirk notices the padlock +has scratches on it. the scratches look uniform & +pattern [unclear] I recognise but don't know why. +upside down thieves cant - "Drunken Duck" +& scratched with claws like mine. +change the markings to Everchard. +book into parking & guardfree keeps watch. + +parked in Bugbear next to lizardman + +Head over to the temple to give them the spear + +female half orc comes to speak to us - hand over the +Spear & she goes to check it out with others + +Donate in exchange for help? + +Page: 65 +Source: data/1-source/IMG_5182.png + +Transcription: + +Request an audience with the higher +power to discuss - won't be here for +3 hours + +- go to get lodgings at the pirates Pearls Plundered + +- Crab man in charge - ichy + +- Baroness grants us an audience right now + +Room is old - paintings are the predecessors all +wearing the same necklace. (like a mayor necklace) & +Lots of Jewelry + +Desert relics - thought maybe they belonged to an +old friend - long time ago - Velenth Cardonald. +- worked for her before coming here - willingly + +Vote 12 heads who vote on who has +of ideals. + +Other things taken off the sheet because +she doesn't approve of the Cult. + +! will loan some forces - Promise - she gives us +information about a laboratory can we get +as diamond in the workshop +gaping hole in the side of the building +- Barrier - Emergency systems - something else +in there - very young when she ran. +* Dragon - rumor to roost in the ruins of +Dirks old city + +Page: 66 +Source: data/1-source/IMG_5183.png + +Transcription: + +The creature in her chamber logs +? Garaduck? - no + +has the code to the circle & the safe +code whilst the defenses are up. gives us +permission of the lab. + +* Valenth wanted to transfer herself +into an object... + +* seems a little shook. & guard helps +her out. + +22:00 + +Return to temple of Cierra. +Huntsman has returned & comes over to us. + +* Huntmaster Thrune. + +Ruby eye spoke to this church. often & interested +in runes. + +- will provide aid to kill Excellence. + +Ruby eye thinks we might want to get +before she tries to get it. she was + +- Ruby eye's best friend wanted to craft +herself into some thing & continue in +that form. + +Spear was a gift from a Huntsman of Cierra +but it's actually an arrow and there were 5 +of them taken from Cierra's last battlefield. + +Back to Pirates Pearls Plunder. + +Guardfree - will get his mistress to bring guest shells + +- Try to plan what we are doing. diff --git a/data/3-days/day-21.md b/data/3-days/day-21.md new file mode 100644 index 0000000..21b3c98 --- /dev/null +++ b/data/3-days/day-21.md @@ -0,0 +1,113 @@ +--- +day: day-21 +date: 6th Jan 1002 +source_pages: + - 67 + - 68 +complete: true +--- + +# Raw Notes + +Page: 67 +Source: data/1-source/IMG_5184.png + +Transcription: + +Day 21 (Monday) +6th Jan 1002 +13 days until +Tri-moon + +- we all have dreams that are tinged with +cold. + +- my dream - in family home siblings playing +happy memories local town hall but looks like +a crater but is in fact a black hole +pulling in more buildings. hear a voice +"where is he I know you hide him" horrible +voice +Panic & hunt then wake up (looking for Garadwal??) Void! + +- Just our room is cold. as the ice melted. +a white dragonscale drops from the icicle. + +<> go look for the Captain for a boat +! loan the boat for 100g a day & 500g +deposit (125g each) + +Pier 12 - large group merfolk 30 + 2 littles +guardsmen 20 (Sargent has a necklace) +Zinquiss & black dragon born (Wrath) +- Speak to Pack leader Tiana +& other leaders gather + +Pack leader Alana + +Clerics 15 +& leader + +get 2 guest shells +10 spare shells + +Wrath will stay on the +other side of the barrier +once we get there + +Sargent takes our +Cart to the keep. + +Captain Huen + +Set sail - sea is calm. +water seem clear - no noticeable signs of +him yet + +merfolk, zinquiss, Wrath, half Clerics in the sea with us + +- Excellence seemed to have come from 80 miles away +when we were at the turtle village. - so possibly +Dunbold Cache or the smaller islands around + +Page: 68 +Source: data/1-source/IMG_5185.png + +Transcription: + +& net +Make a pulley system to hoist shield crystal +onto the ship when we get to Fairshaws + +- Wrath (Kolin) middle name - Request to look for the location of Garadwal +when he gets to Black scale + +- Island - pass it & nothing seems to happen. + +- Arrive at Fairshaws + +- Boat is ceased upon orders from the Earl +occupants being detained for Treason etc. +Diplomatic mission carrying members of the Pact etc. + +- Suspect the Earl is part of the Cult + +- give Zinquiss 200g for 4x healing potions + +- Guards return & tell us to stay on board. whilst +investigations take place + +Zinquiss returns with 3x healing & 1x greater healing (Distribute) +News +* Highden - Battles not doing well +Strengthened by lightning dragon +* Heartmoor - People falling ill - surgeons deployed +(Perodetta?) +* Grand Towers - Justiciars leaving to the 5 +points of the penta city states +* Provincia - locust and mysterious spiritual + +Sword blessed +1 + +* get called to the mess hall by Taina. + diff --git a/data/3-days/day-22.md b/data/3-days/day-22.md new file mode 100644 index 0000000..671ba99 --- /dev/null +++ b/data/3-days/day-22.md @@ -0,0 +1,105 @@ +--- +day: day-22 +date: 6th Jan 1012 +source_pages: + - 68 + - 69 + - 70 +complete: true +--- + +# Raw Notes + +Page: 68 +Source: data/1-source/IMG_5185.png + +Transcription: + +Day 22 (Tuesday) +6th Jan 1012 +12 days to tri-moon + +Construction under the water & they have made +paper also +Crystal is approx 1m square + +[margin] greater heal ++4 D4 +4 + +Page: 69 +Source: data/1-source/IMG_5186.png + +Transcription: + +- can sense Kiendra but no response possibly unconscious +but seems to be in the cavern + +- split underwater group into two to sort out crystal +& also attempt to rescue Kiendra + +approach shield crystal in stealth + +See - above our field of vision are some sharks who +seem to have spotted us + +[box] guest shells last +2 hours + +fight +- we overcome & defeat mobs at the crystal site. +Kiendra - found & rescued - very weak & tortured +Find waterproof paper 3x dispel magic scrolls (geldrin) +& coin pouches - 112g (give to crew) +Bug Boss - Spear glowing dull blue - drown spear +1 returning - speaks aquan +Suit of plate mail - Plate of Hydran +1 resistance to cold + +Boat - pretty wounded + +other party - Taina's - dispelled shells & got +attacked - Hunt Master missing. +Half orc priestess on the boat wants +to check on the other team for the Huntmaster. +Necklace Sargent wants to come with us. + +go over & Huntmaster fighting an excellence +both very injured + +! Deed Excellence! + +4 mermen +all mermaids } survive +4 Clerics +6 guardsmen. + +* Moor up by Dunbold Cache for the night. + +[side notes] ++1 +-3 +8 -7 ++5 -5 + +Page: 70 +Source: data/1-source/IMG_5187.png + +Transcription: + +Merfolk recover our dead & lay on the +help & Sacrifice + +Pull up to the Cove - lookout shouts +there is a vessel already docked. +chariot with water Elementals chained to + +- we row to shore to investigate. +Mother of Pearl framed Chariot, no other signs of +movement. + +Dirk speaks to elementals & they want +will come with us on the big boat. +! Take the chariot back with us 8-10kg. + +Zinquiss will sell it at an +auction in 7 days +have the address for the +Freeport auction house + diff --git a/data/4-days-cleaned/day-01.md b/data/4-days-cleaned/day-01.md index bcbd84d..1442eb1 100644 --- a/data/4-days-cleaned/day-01.md +++ b/data/4-days-cleaned/day-01.md @@ -10,7 +10,7 @@ complete: true # Narrative -The party began in Everchurch, also later called Everchard, a swampy town of roughly three thousand people surrounded by fruit trees, orchards, and at least one brewery. It was winter, but one orchard was strangely in bloom. Bees slightly larger than normal were buzzing around the trees and pollinating them. The trees had dark bark, blue leaves, and deep red fruit. The town itself mixed light and dark woods, had no obvious districts, and had a larger manor house in the centre. +The party began in Everchurch, also later called Everchard, a swampy town of roughly three thousand people surrounded by fruit trees, orchards, cider breweries, and woodland tours that drew visiting tourists. It was winter, but one orchard was strangely in bloom. Bees slightly larger than normal were buzzing around the trees and pollinating them. The trees had dark bark, blue leaves, and deep red fruit. The town itself mixed light and dark woods, had no obvious districts, and had a larger manor house in the centre. The first important stop was the Cider Inn Cider, a small inn with a beeswaxed floor. A half-elf played a lute, and the notes suggest some half-elf and human family resemblance. Local names established there included Father Burnun, a prize fighter, and Gelissa, a half-elf. The party members noted were Invar, a greying paladin-looking figure who did not yet have plate; Dirk, described as polite; and Geldrin the Mighty, a gnome with wild brown hair and glasses with no glass. @@ -28,13 +28,13 @@ The militia records were deeply wrong. Names such as Terry, Stonejaw, Rob, and R The memory tampering became undeniable when nobody remembered Gelissa except Geldrin, though Invar remembered her for a split second. The party saw one of the people get up and walk out. They chased him, and when his hood dropped they saw a face stitched below the eye line, a mouth missing rows of teeth, bone-splinted fingers, and a split tongue. The birthmark on his right hand identified him as Malcolm. He had been a human male, and magic had clearly been used to make these changes. -The name Guardwel was connected to this horror, described as the Terror of the Sands and nightmare of the darkness, a being who would consume souls. The tales mentioned a sphinx that learned dark magic and experimented on itself. After Malcolm was found, memories shifted again. Someone remembered Isabella and remembered that Gelissa had said she had not arrived. Gelissa herself was remembered again. +The name Guardwel/Garadwal was connected to this horror, described as the Terror of the Sands and nightmare of the darkness, a being who would consume souls. The tales mentioned a sphinx that learned dark magic and experimented on itself. Garadwal was understood to be imprisoned in the Prison of the Sands; Brutor Ruby Eye called him the only void they could find, one of eight whose escape would weaken the barrier, and someone the wizards agreed needed to be contained. After Malcolm was found, memories shifted again. Someone remembered Isabella and remembered that Gelissa had said she had not arrived. Gelissa herself was remembered again. The party took Malcolm to the jail. A deputy went to fetch Sheriff Jeremia, who now remembered the third Thornhollows daughter, Gelissa, and the homeless people. Jeremia made the party deputies and gave them badges under Sir Alstir Florent. Another displaced memory also surfaced: a fifth person, a human warrior, had been at the bar helping the party and had picked one of the keys. He was remembered only up to the point when the group went fishing, around the time Dirk saw a rat. Gristak Brinson was recorded as mayor. # People, Factions, and Places Mentioned -Everchurch/Everchard, the Cider Inn Cider, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bushhunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel, and the unidentified fifth human warrior were all established or referenced. +Everchurch/Everchard, the Cider Inn Cider, the cider breweries, the woodland tours, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bushhunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel/Garadwal, Brutor Ruby Eye, the Prison of the Sands, and the unidentified fifth human warrior were all established or referenced. # Items, Rewards, and Resources @@ -42,4 +42,4 @@ The party were offered 1 gp each to investigate the missing pigs. They received # Clues, Mysteries, and Open Threads -The major open threads were the missing pigs, possible missing sheep, Bess's missing cat, the absence of rats, the missing or forgotten militia, the changing number of keys, the hostel's connection to the anti-tax, Bushhunter's arrival with tubes and pipes, the winter fruiting trees, the altered Malcolm Donovan, the shifting memories around Gelissa and the homeless people, the vanished fifth human warrior, and Guardwel, the Terror of the Sands, linked to a dark-magic sphinx that experiments on itself and consumes souls. +The major open threads were the missing pigs, possible missing sheep, Bess's missing cat, the absence of rats, the missing or forgotten militia, the changing number of keys, the hostel's connection to the anti-tax, Bushhunter's arrival with tubes and pipes, the winter fruiting trees, the altered Malcolm Donovan, the shifting memories around Gelissa and the homeless people, the vanished fifth human warrior, and Guardwel/Garadwal, the Terror of the Sands, linked to a dark-magic sphinx, the Prison of the Sands, void, one of the eight, and the barrier. diff --git a/data/4-days-cleaned/day-02.md b/data/4-days-cleaned/day-02.md index 0b3c3bd..afbe6a5 100644 --- a/data/4-days-cleaned/day-02.md +++ b/data/4-days-cleaned/day-02.md @@ -18,7 +18,7 @@ The farm had two sounders of pigs. The herd included one matriarch, three breedi At 9:45, the party walked to Thornhollows Farm, passing orchards and a brewery. The farm was surrounded by a stone hedge. On the way in they passed two ravenhound-looking dogs being walked by a black-haired girl, Annabella. The animals were craven dogs: a breeding pair, about ten in number, with puppies and a habit of mimicking noises. A younger sister was on the porch, and three puppies rested on pillows next to grandma. -The books made the scale of the problem clearer. Everything tallied until about one month earlier, when unexplained scribbling-out and removals began. Twelve pigs were missing in total. The family thought there should be fifty-seven pigs, while the records said there should be fifty-one, but the actual count was forty-six. Six pigs had gone missing over the last two weeks: three the night before last and three a week earlier. The pigs disappeared overnight. Six other pigs were missing in a way the family did not remember. The inconsistencies began around the time Sarah left. A black cat had also been missing for about one month. +The books made the scale of the problem clearer. Everything tallied until about one month earlier, when unexplained scribbling-out and removals began. Twelve pigs were missing in total. The family thought there should be fifty-seven pigs, while the records said there should be fifty-one, but the actual count was forty-six. Six pigs had gone missing over the last two weeks: three the night before last and three a week earlier. The pigs disappeared overnight. Six other pigs were missing in a way the family did not remember. The inconsistencies began around the time Sarah left. Sarah had been with The Chorus, which made her harder to wipe from memory, and she had been seen by the hostel on one of the Rubin's Days while distracted. A black cat had also been missing for about one month. The party inspected the hedged sty. The large door into the hedged area looked densely grown, and there was confidence that nothing had dug through. A hill gave four feet of hedge as an entry point, but there was no advantage for getting back out. Dirk found large divots that looked like frog footprints, suggesting a frog roughly eight feet tall. The ravenhounds had ribbited at the dark, and this had started a few weeks earlier. The suspected frogs seemed to be taking pigs while hunting and leaving toward the swamp. @@ -30,7 +30,7 @@ Back at the farmhouse, Cleara gave them a tonic that allowed them to use hit dic # People, Factions, and Places Mentioned -John Thornhollows, Sarah, Annabella, Isabella, Clara bella, paternal grandmother Bella, the sheep farmer's son, Cleara, Dirk, the Thornhollows Farm, the town hall, the brewery, the orchards, the hedged sty, the swamplands, craven dogs, ravenhound-like dogs, giant frogs, massive moths, and a missing black cat were all noted. +John Thornhollows, Sarah, Annabella, Isabella, Clara bella, paternal grandmother Bella, the sheep farmer's son, Cleara, Dirk, The Chorus, the Thornhollows Farm, the town hall, the brewery, the orchards, the hedged sty, the hostel, the swamplands, craven dogs, ravenhound-like dogs, giant frogs, massive moths, and a missing black cat were all noted. # Items, Rewards, and Resources @@ -38,4 +38,4 @@ The farm offered 100 gp to clear the frogs and had already paid 50 gp. Cleara ga # Clues, Mysteries, and Open Threads -The farm records began changing about one month earlier, around the time Sarah left and the black cat disappeared. Twelve pigs were missing, but only six were remembered. The physical evidence pointed to giant frogs entering or hunting from the swamp, while bones in the swamp suggested pigs and sheep had been taken. The craven dogs' ribbiting at the dark and the presence of massive moths remain notable. The sheep bones also strengthened the earlier lead that the sheep farmer might have a related problem. +The farm records began changing about one month earlier, around the time Sarah left and the black cat disappeared. Sarah's connection to The Chorus made her harder to erase, and her distracted appearance by the hostel ties her disappearance to the wider memory-tampering and hostel thread. Twelve pigs were missing, but only six were remembered. The physical evidence pointed to giant frogs entering or hunting from the swamp, while bones in the swamp suggested pigs and sheep had been taken. The craven dogs' ribbiting at the dark and the presence of massive moths remain notable. The sheep bones also strengthened the earlier lead that the sheep farmer might have a related problem. diff --git a/data/4-days-cleaned/day-03.md b/data/4-days-cleaned/day-03.md new file mode 100644 index 0000000..d390216 --- /dev/null +++ b/data/4-days-cleaned/day-03.md @@ -0,0 +1,49 @@ +--- +day: day-03 +date: unknown +source_pages: + - 5 + - 6 + - 7 + - 8 +complete: true +cleaned: true +--- + +# Narrative + +On Day 3, the party headed to the sheep farmer's place. On the way, Geldrin accidentally cast a spell while sitting on Dirk's shoulders, tearing Dirk's shoulders apart in a way that resembled Malcolm's wounds. The party stopped for a short rest at about 10:20. Birds circled overhead, including goldfinches and starlings, and the same lack of sleep and swamp influence seen around the farm district seemed to be trickling into the farm. + +At the farm, they found a man of about thirty who appeared to have been trampled by a herd of sheep. Around the scene were four sets of human-sized prints. One set seemed to go to and from the barn. Drew investigated the crime scene while the party heard something trying to break out of the barn. The farmhouse door had been "latched in." Inside, a table had been smashed to pieces and debris was scattered around. The fire looked as though it had burned out the previous day. Upstairs were an old-looking double bedroom and two sets of singles, suggesting an elder couple and others had lived there; one man was very much dead and another body was slightly smaller. + +The party crept toward the barn and saw a row of sheep heads. The sheep were unnaturally agitated, and an unearthly bleat came from inside. A massive pile of melded sheep broke out of the barn, and the party killed it. In the barn they saw signs connected to Pelt and memories being taken, though the memory-taker was not there when they arrived. A pinned woman was dead in the corner. It looked as if she had lured the creature into the barn and someone had locked them inside. + +The party connected this with Malcolm and Isabella going missing and with the town's failure to remember them, except for the party and Malcolm's wife. At about 11:15, they returned to where they had found the birds and took another short rest. Dirk left Bob out, and many different types of birds appeared. + +The party went into the swamp to find the bird lady. After about an hour, they found a swamp hut covered in bird poo. Inside, branches were covered in birds. An eighty-ish woman was there, blindfolded with her mouth sewn shut. Her name, or title, was "The Chorus." She had been having dreams and said the hurt was not her own. Her apprentice had upped and left. The Chorus explained that the magic word was clever: it changed memories into a convenient form. Because Sarah had been with the Chorus, it had been harder to wipe her from memory. On one of the Rubin's Days, the Chorus had seen Sarah by the hostel, distracted. + +The Chorus said there had always been large animals in the area, but someone was going through the swamp using gas that was hurting the birds. She directed the party to stop the Bughunter and pointed them toward the place where Geldrin got the papers. Geldrin already had something from there [uncertain wording]. The party left at about 2:00 and reached town at about 3:00. + +Back in town, the party passed through the marketplace and noticed a streak of fumes around a suited halfling with an ogre. The halfling had a barrel with tubes and pipes leading to an ear-funnel crossbow. He was talking to a magpie person with a wagon pulled by a "Cobra Kai" type creature. The party snuck up behind the ogre, broke the Bughunter's equipment, damaged the goggles, and let the gas out. The Bughunter said he would do any form of taxidermy and promised to hunt out of town. The party asked him to do it on the other side of the river. By about 5:15, they learned from the magpie that Xinquiss/Zinquiss could be found at the Hartwall Great Bazaar. + +At the sheriff's office, the place was very busy. Jeremiah and the deputy sheriff were armoured up. A half-orc and a kobold seemed to be militia, and citizens in patchwork armour included a dwarf, tabaxi, human, and warforged. The sheriff's office had heard about an attack: Walter, the sheep farmer, had been attacked by people who came in with a cart carrying the sheep beast, and Walter's wife had sacrificed herself. Core, a warforged who runs Peel & Core, mentioned lack of custom in the tavern and noticed wagons at the hostel. Earl had received a death threat, with a 500 gp bounty attached. Cromwell, a tiny forester, had noticed wagons passing Walter's farm and stopping there; people seemed to be in the wagons. Around 5:30, Jeremiah and Drang went to protect the Earl while Hannah and Bob went to the outskirts. The party was given a shock dagger. + +The village was quiet. Two wagons were parked outside the hostel and looked like livestock wagons. They smelled of pig manure and human faeces. Peel sensed warmth but could not see anything. A scratched crab claw attached [unclear]. Dirk saw rats again, and they attacked. A pig beast broke out of one cart and was killed. The party sabotaged a cart while two people brought four horses. + +Among those connected to the wagon were a woman in her fifties with too many teeth and a bigger mouth [possibly Sarah], and a young boy of about eighteen [possibly the sheep farmer's boy]. There were three patrons connected to the Crimson Bovine or Mirth's Fizzleswig [uncertain wording]. Loot noted included one shortsword, random herbs, one sickle, and silver. At about 19:00, the party took the people and cart to the church, associated with Church Tor and church Tarber [uncertain names]. + +At the church, the people could not be saved. The boy had not been dead at first but was now dead. Brother Fracture inspected the cart and remembered that all of the militia had been going missing. The party wanted to put the affected people to sleep, which led them back to the Bughunter. He was staying out at the Cider Inn Cider. Around 20:00, they went to see him. + +The Bughunter had a gearsisor 5000? with ether and magical sleeping powder. He also had a ring with a purple gem and runes that needed identifying. The party traded identification for use of the gearsisor and returned to the cart to use it. They got five people back into the church. One was Gregory, a homeless man who was restored. Gregory thought he had been taken by the militia and remembered being in the big militia house. The party parked the cart behind the church and put the horses at the inn. Geldrin also bought a random compass box with a needle that pointed to the Bughunter. + +# People, Factions, and Places Mentioned + +Dirk, Geldrin, Drew, Malcolm, Isabella, Sarah, Walter the sheep farmer, Walter's wife, The Chorus, The Chorus's apprentice, the Bughunter, Bob, Jeremiah, Drang, Hannah, Core, Peel & Core, Earl, Cromwell, Brother Fracture, Gregory, Xinquiss/Zinquiss, Pelt, the sheriff's office, Hartwall Great Bazaar, the hostel, the swamp, the farm, the barn, the church, Church Tor, church Tarber [uncertain], Cider Inn Cider, Crimson Bovine, Mirth's Fizzleswig, the militia, townsfolk, half-orc militia, kobold militia, dwarf citizen, tabaxi citizen, human citizen, warforged citizen, suited halfling, ogre, magpie person, and "Cobra Kai" type wagon creature. + +# Items, Rewards, and Resources + +The party received or noted a shock dagger, a gearsisor 5000? using ether and magical sleeping powder, a ring with a purple gem and runes requiring identification, Geldrin's compass box pointing to the Bughunter, one shortsword, random herbs, one sickle, silver, two wagons, four horses, the Bughunter's gas equipment with goggles and barrel tubes, and an Earl-related 500 gp bounty. + +# Clues, Mysteries, and Open Threads + +Memories are being taken or rewritten into convenient forms, and Sarah's time with The Chorus made her harder to erase. Malcolm and Isabella are missing, and the town largely does not remember them, though Malcolm's wife does. Pelt is connected to memory-taking. Someone used wagons to deliver or move animal-human beasts, including a sheep beast and pig beast, and people were found in livestock-style carts smelling of pig manure and human faeces. The militia have been going missing. Gregory remembers being taken by militia and held in the big militia house. The Bughunter's gas was harming birds in the swamp. The woman with too many teeth [possibly Sarah], the young boy [possibly sheep farmer's boy], the crab claw attachment, and the exact nature of the memory magic remain uncertain. diff --git a/data/4-days-cleaned/day-04.md b/data/4-days-cleaned/day-04.md new file mode 100644 index 0000000..9e7f17c --- /dev/null +++ b/data/4-days-cleaned/day-04.md @@ -0,0 +1,45 @@ +--- +day: day-04 +date: 19th Dec +source_pages: + - 8 + - 9 + - 10 + - 11 +complete: true +cleaned: true +--- + +# Narrative + +Day 4 began on 19th Dec at about 7:00. Dirk noticed that the flower he had received from a tiefling girl was still looking new; it had a magical enchantment that kept it fresh. + +The party reviewed local problems and wider news. There were problems with a pylon, and Seawood water spirits were on the move. Fish men had been seen on the other side of the barrier in connection with a massacre, with Dumbold to the south. Stone giants were missing under new leadership by Hyden Goldensell, and the "warmest" were to investigate [uncertain phrasing]. Cold air over the River Rhein had frozen the river between Honeyshore and Agladale, with snow at Sorrows Edge. Ancient [unclear] from slumber sages were trying to interpret omens. Gnolls had attacked Restored Point cobalt mining, with a bounty on Gnally. Blight had hit Azureside cherry crops, halting Eereza production. Isabella Nudegate was listed with a 500 gp reward after going missing on route to Isle Seaside. The Grand Festival of mid-winter would be held at Brookville Springs the next week. Peridot Chewing Death had been spotted fifty miles earthwise of Arrowfear. There was no mention of the pig. + +The pig carcass was missing. Singe marks were on the road, and the other cart still sat outside the hostel at about 8:20. At the Cider Inn Cider, Oric the innkeeper said the Earl had been holding a banquet and there were no other strange goings-on, though things go crazy this close to the third [uncertain meaning]. The town crier would give local news around midday. + +The party went to the sheriff, passing the Earl's manor house. The sheriff was in a chair while a kobold shuffled papers. Malcolm, a half-elf steward for the Earl, was in the cells and was supposedly behind plots to kill the Earl. He seemed innocent. There was no evidence, and it appeared he was being held so the sheriff could keep face with the Earl. Something seemed off with the Earl, who had asked the blacksmith to increase weapon production. Invar had just delivered many weapons. Malcolm did not know the Earl from before; the Thirsty Duchesses of Hartwall had sent Malcolm after the previous Earl died. The current Earl seemed to have become more extreme in his views and had wanted to show sorrow [uncertain wording]. + +The books said there should be twenty-seven militia, but only four were present; twenty-seven was half the required amount. Lawrence Henderson, the exchequer, was paying wages. The ledger was given to the scribes at night and returned to the Earl at 9:00. A half-elf came to the scribes with the party. They picked the lock and found that the left route led to the Earl's chambers while the right led to the scribes. The ledgers were all copied, and old ledgers were kept elsewhere. The current ledger was from around seven days ago. Isabella had disappeared two weeks earlier, with twenty minutes available to search for her [uncertain phrasing]. Malcolm had disappeared six days ago, while copies from thirteen days ago, dated 3rd Dec, had not scribbled him out. Visiting tourists were noted, along with cider breweries and a tour of woodland. The party spoke with Elffair mead makers for the cutting [uncertain wording], with two bodyguards present. + +The half-elf remembered Sir Ailbir. The party went to see Lawrence Henderson and asked about militia wages. Lawrence panicked and said they needed to speak to the sheriff or the Inquisitor. He insisted he had not done anything wrong and blamed the scribes. There had been fifty-four militia, then the baron cut the number down, so Lawrence had been taking payment for the other twenty-three. If the party kept quiet, he would help with more information if needed. He gave them 500 gp. The party learned of eight carts, sixteen horses, and six hundred swords, described as industrial style. They had two extra horses. Town finances had fifty-eight days left. A safe contained a small black velveteen case with gems, three treasure chests of gold, copper, and silver, and two bags of platinum pieces worth 4000 gp [raw note: 4000go]. The Earl's document pile was empty, but Vicmur Daros, the half-elf, remembered the Earl having documents. + +At about 9:50, the party left to see Brother Fracture. Gregory was doing well, though Brother Fracture had not had the chance to heal the others yet and would heal the rest. There was no way to communicate with other churches. Gregory remembered that the Dec started around the 7th or 8th [uncertain wording], and he could not remember anything from then until now. He remembered two militia taking him to the hostel, then setting up in the church: Stonejaw and Ralfex, two of the missing militia. Other people were in the hostel, which looked like a jail cell. Gregory also remembered Goat Lady on Bagnall Lane and various others. The militia house had been open for about a month, with no reason for it still to look like a jail. + +Geldrin painted a sheriff sign on the cart around 10:15 to 10:30. At the Cider Inn Cider, people said there were not really homeless people in town, but they now remembered Gregory. Someone remembered a dead goat down Bagnall Lane about one week earlier. + +The party went to the hostel and investigated around the side of the building. Bone stables held two carts and four horses in the courtyard or stables. A chain was on the gates, but the padlock was not locked. Invar broke the wheels. The party released the horses, and one party member was hit with magic missile. They entered the "Hostel" and fought the occupants. One was Gelissa, who had a mystery on the side of her face [uncertain wording]. They killed the other person and subdued Gelissa. There was corruption on her mind, and Invar restored both her mind and her wounds. This was around 11:00. + +Searching the hostel, the party found two empty cells and about ten people still in cells, all townsfolk. Invar created a lock for the back door. At about 12:30, the party told Brother Fracture to concentrate on healing the militia. He would take Gelissa, the militia, and the cart to the barracks and use that as a base of operations. At about 13:00, the party decided to go to the Barrier rather than the "Swamp Laboratory." They rested for the evening, but on third watch the pigeon lady came near the camp, preventing a full rest. + +# People, Factions, and Places Mentioned + +Dirk, Geldrin, Invar, Malcolm, Isabella Nudegate, Oric, Earl, previous Earl, sheriff, kobold assistant, Lawrence Henderson, Vicmur Daros, Sir Ailbir, Brother Fracture, Gregory, Stonejaw, Ralfex, Goat Lady, Gelissa, Hyden Goldensell, Peridot Chewing Death, Gnally, Elffair mead makers, Thirsty Duchesses of Hartwall, Inquisitor, baron, pigeon lady, Seawood water spirits, fish men, stone giants, slumber sages, gnolls, militia, townsfolk, scribes, Cider Inn Cider, Earl's manor house, hostel, militia house, barracks, Bagnall Lane, River Rhein, Honeyshore, Agladale, Sorrows Edge, Restored Point, Azureside, Isle Seaside, Brookville Springs, Arrowfear, Hartwall, Barrier, and "Swamp Laboratory." + +# Items, Rewards, and Resources + +Dirk's magically preserved tiefling flower remained fresh. Isabella Nudegate had a 500 gp reward. Lawrence Henderson gave the party 500 gp. Noted resources included eight carts, sixteen horses, six hundred swords, two extra horses, fifty-eight days of town finances, a small black velveteen case with gems, three treasure chests of gold, copper, and silver, and two bags of platinum pieces worth 4000 gp [raw note: 4000go]. The party used a cart marked with a painted sheriff sign and found two carts and four horses at the bone stables. The Earl's documents were missing. + +# Clues, Mysteries, and Open Threads + +The Earl appears compromised or unusually extreme, with increased weapon production, empty document piles, and an innocent-seeming Malcolm imprisoned to preserve appearances. The militia records are fraudulent or manipulated: twenty-seven are listed, four are present, and Lawrence had been taking pay for twenty-three removed positions after the baron cut numbers from fifty-four. Missing militia Stonejaw and Ralfex were involved in taking Gregory to the hostel. The hostel functioned like a jail and contained about ten townsfolk. Gelissa had mental corruption that Invar restored. The pig carcass vanished, leaving singe marks. Isabella's disappearance, Malcolm's disappearance, the dead goat on Bagnall Lane, the missing Earl's documents, the "Swamp Laboratory," and the pigeon lady remain unresolved. Wider pylon, barrier, spirit, fish men, stone giant, gnoll, blight, and Tri-moon-adjacent omens remain active background threats. diff --git a/data/4-days-cleaned/day-05.md b/data/4-days-cleaned/day-05.md new file mode 100644 index 0000000..77d3d97 --- /dev/null +++ b/data/4-days-cleaned/day-05.md @@ -0,0 +1,40 @@ +--- +day: day-05 +date: 20th Dec +source_pages: + - 11 + - 12 + - 13 +complete: true +cleaned: true +--- + +# Narrative + +Day 5 began on 20th Dec at about 07:15 as the party approached the Barrier. Two large carts were in view. The party left the path, tied the horses in a dip in the land, and circled around to approach from another direction. They found Cromwell the ranger badly injured. Tracks nearby looked like heavy steel boots, possibly a goliath in full plate mail, or Core [uncertain]. The party judged that they were about halfway between the shield pylons. The carts were empty. A large group of people had gone toward the Barrier around 7:30, and a smaller group had gone toward the swamp around 7:45. + +The party followed the tracks. Some seemed to come back on the goliath, who had gone to put Cromwell somewhere safe. The party chose to follow along the shield toward the larger group. They heard a big group of people standing next to the Barrier. Dirk felt that something was watching them, and then the party was attacked by a grubby sheep farmer creature. They killed it, along with eleven militia and eight townsfolk. Eight other townsfolk were tied up with rope. After the party killed the sheep-farmer creature, a black dog thing disappeared, but the maggot stayed. When they killed the maggot, it let out a massive shriek, and all the remaining townsfolk started to attack. The party located and subdued a halfling girl. + +After a short rest, the party retrieved the horses and Cromwell, then headed back along the path to find a patch of trees where they could hide the cart. This sequence ran from about 08:00 to 09:10. They then took a long rest from about 10:30 to 18:30. During the rest, a sword was enchanted to add +1 until Invar's next long rest. + +The party learned or concluded that two twins had been commanding the affected people. One twin had gone to the swamp, and the other had gone to the Barrier; the party had killed the Barrier twin. The party then headed toward the swamp, following the tracks. They tied the horses outside the swamp. The tracks showed four individuals, and Geldrin's compass followed the same direction. By about 20:00, the party reached a clearing at the Barrier containing a stone building. A marble dome pressed against the Barrier, with a large telescope passing through the dome. The tracks led right up to the building. The structure was about 1,000 years old. A strange humming came from the door, which reverberated. + +Inside the building were two plinths. One was empty, and one looked as if Core had been dismantled on it. A head clattered off and rolled through the left door. The party went through the door by the plinths into a library. The shelves showed that all books on one shelf were missing: the "T" shelf in Astronomy, guessed to be Tri-moon information. A picture showed a well-groomed tiefling holding a baby girl. This tiefling was identified as The Mage, one of the five who made the Barrier, with the name or title Visage Envoi. + +The paperwork looked recent. One drawer had been forced open and contained diagrams of the stars. Another drawer held a rabbit/deer teddy. Inside the teddy was a gold-band ring with runes. The ring was similar to Dirk's, and Dirk saw the teddy back up [uncertain phrasing]. A vase bore the inscription: "part of me can be with you while you study all my love - Joy." + +The runes on the teddy ring read: "a pact in darkness made in sorrow to bring (no sharpness) back Joy" [uncertain: "no sharpness" may be a note on pronunciation or text]. Dirk's ring read: "A Bargain struck in shadows for souls to be held in infinity." The paperwork contained measurements of the Tri-moon before the Barrier went up and twenty years afterward. The Tri-moon seemed to be getting bigger. Before the Barrier, it had been as big as the other moons. Geldrin took all of the notes. + +The party found an invisible cloak on a hatstand and took it. Dirk put Geldrin on the hatstand, and Geldrin's clothes disappeared. When things touched the hatstand, they disappeared. A dagger and a handkerchief fell to the floor. The handkerchief was clean and had a "J" in the corner. The dagger looked like a letter opener. + +# People, Factions, and Places Mentioned + +Dirk, Geldrin, Invar, Cromwell, Core, the halfling girl, two commanding twins, one Barrier twin, one swamp twin, The Mage, Visage Envoi, Joy, militia, townsfolk, shield pylons, the Barrier, the swamp, the stone observatory building, the marble dome, the library, and the Tri-moon. + +# Items, Rewards, and Resources + +The party used carts and horses and hid a cart in trees. A sword was enchanted with +1 until Invar's next long rest. Geldrin's compass tracked the same direction as the swamp tracks. Observatory items included two plinths, a dismantled-Core-looking plinth, recent star diagrams, missing Astronomy "T" shelf books likely concerning the Tri-moon, a rabbit/deer teddy, a gold-band rune ring, Dirk's similar ring, a vase from Joy, Tri-moon measurement notes taken by Geldrin, an invisible cloak, a disappearing hatstand, a dagger or letter opener, and a clean handkerchief marked "J." + +# Clues, Mysteries, and Open Threads + +The Barrier attack involved controlled militia and townsfolk, a sheep-farmer creature, a black dog thing, a maggot with a shriek that triggered further attacks, and two commanding twins. One twin went to the swamp and remains unresolved. The observatory is roughly 1,000 years old, built into or against the Barrier, and contains Tri-moon research. The missing "T" Astronomy books, recent star diagrams, and measurements showing the Tri-moon growing are significant. The Mage/Visage Envoi was one of the five Barrier creators and is tied to Joy. Joy's ring and Dirk's ring both reference bargains, pacts, darkness, sorrow, souls, infinity, and bringing Joy back. The disappearing hatstand, invisible cloak, handkerchief marked "J," and letter-opener-like dagger are unresolved magical or personal clues. diff --git a/data/4-days-cleaned/day-06.md b/data/4-days-cleaned/day-06.md new file mode 100644 index 0000000..298b6a1 --- /dev/null +++ b/data/4-days-cleaned/day-06.md @@ -0,0 +1,73 @@ +--- +day: day-06 +date: 21st Dec +source_pages: + - 13 + - 14 + - 15 + - 16 + - 17 + - 18 + - 19 + - 20 + - 21 + - 22 +complete: true +cleaned: true +--- + +# Narrative + +Day 6 began on 21st Dec at about 1:00 inside the observatory. The next room looked like a teleportation circle, with a bronze feather on the circle. It resembled another feather the party had seen but seemed more powerful than usual. + +Beyond it, the party found cages, now empty, an empty operating table, boxes, a guillotine, rope, and lots of blood and decay with smells of sea and sulphur. Behind a red door was a picture of a young tiefling whom Dirk recognised, holding [unclear]. A big table was set but empty. The door at the end led to a kitchen. Its well bucket did not look used. When the party pulled the bucket up and poured water on the floor, they found a humanoid skull with horns. The horns matched [unclear, likely the tiefling]. + +In an office, the party found a trapdoor under a bear rug. The outside office door was barred shut. Down the trapdoor were four plinths, each holding suits of Core. When Geldrin went down, the suits lit up and asked for a password. "Joy" and "Tri-moon" were incorrect. The party moved on and tried to get through a barricaded door, eventually managing to get through a trapped door. + +In a potion room, a cauldron appeared full of fresh, clear water. Geldrin called a construct "Power loader." Another room contained stairs and a door labelled "maintenance do not enter." The door was trapped with electricity, and the building seemed protected by the same substance or force as the Barrier. Opposite was a bedroom with a tankard, a vase holding a white flower, a broken chair, and an open book on a table that seemed out of place. When they opened a chest, a pulse paralysed Invar and Geldrin at about 01:15. + +A construct killed whoever had been upstairs [one of them], and the party killed the construct. The shock from the fight brought Invar and Geldrin back from paralysis. Three sets of footsteps walked past the room and stopped. Two came back and seemed to be on guard. Another two went to Joy's room and came back. The party killed all four and completed a short rest. They entered Joy's room and opened the toy chest. + +Joy's room contained a mahogany box with a rune on the lock, which Geldrin took. In the wardrobe were three empty hangers; the dress Joy had been wearing when Dirk saw her was not there. The bottom drawer of the bedside table was trapped. It contained medical equipment, a syringe, crystals, ash from a used spell scroll, powder, a bag, herbs, an empty vial or flask, and three full flasks. Two were recognised as Mirth's Fizzleswig and succour, while the third was unknown. There was also a quill pen, ink, and a child's diary. + +The diary's last page read: "Pelt rough today. don't know how much Longer able to write, Daddy Borrowed mr snuffles again, daddy's friend asked about the rings again daddy's friend is creepy." The diary showed that Joy had been bed-bound for about a year. Robots cleaned and fed her. Daddy's friend, never named, was making rings and putting something in a box that might help her feel better. Joy was not getting better and was terminal. Daddy became upset, but no payment could fix it. + +Under another rug was a trapdoor with a wooden ladder down into a stone room containing a beanbag and toys, apparently a secret den. Dirk went to the beanbag and saw a little girl sitting there. She got up and said, "maybe I should go back up daddy can see me in my room." She also said she was "feeling better glott because daddy's creepy friend is here so I can hide" [uncertain wording], and "he'll find me here u should go to my holy place." The party went upstairs into a massive dome with a large golden spyglass. Crystals around the telescope broke the Barrier. Someone sat in a chair with their back to the party. Two eight-foot ugly, wiry humanoids were present. The chair-person looked like the creature the party had killed, but with all the parts opposite: a worm and dog-like creature were with it. + +The being, Musher, had been asked to observe the Tri-moon and had no desire to fight. The party had killed his counterpart. He said the worm was useful and rare. He spoke of someone living there 900 years ago and of using townsfolk to attack the Barrier. He gave the party one of the brass feathers to communicate with the master for an audience: [your] horned mechanical hellraiser sphinx creature [uncertain wording]. The name Garadwal was raised. The speaker asked, "Where is your army servant," and spoke of using those people instead. It did not need to know what coordinates were required for triangulation, but needed to know where the army would strike next month so they could have freedom from the dome. Shifting the Barrier increased the flow, possibly enough for the fragment of the moon to destroy Grand Towers and destroy the dome. The being lived outside the Barrier. Its talk of freedom seemed partly true, but the phrase "freedom from the confines of everything" was odd. + +The party asked what would happen if the creature did not obey the sphinx. It would find him because of the pact made in darkness or in sorrow; the creature looked forlorn, perhaps tied to finding Joy. They learned or stated that the Tri-moon is a crystal. The sphinx had been cast out for practicing unsavoury magic. The creature asked whether the party wished to join him. He was one cell [uncertain phrasing], trying to aid locations to attack. The party all agreed to clobber him. They killed them all, including the worm thing, which they suspected had mind-control powers. + +Papers on the table contained calculus and notes on the Tri-moon. Books covered biology, incurable diseases, and poison. One poison, Slowbane, acted like a heavy metal and matched symptoms in Joy's diary. The writer had written a paper on it. Slowbane was very rare because people cannot make it, though it appears on the black market. Shield pylon cities sometimes get a similar sickness, but because people get sick and then come to Goldenswell and start to recover, it has not been heavily investigated. The sickness may be the same colour as the shield crystal. + +The party found a pile of goods: spices, wine, berries, parchment, platinum, gems, silk, soja digel [uncertain], and a viel/vial from Arvoreds [uncertain]. They had a book. They also found a magical copper dodecahedron. Invar identified it and discovered "spell faults!" [uncertain exact meaning]. Geldrin slept in Joy's room and realised the lamp was a gem at about 3:30. The party took a long rest and levelled up, waking around 12:00. + +The magical chest itself was designed to cast paralysis if someone other than him opened it [uncertain owner]. Invar tried to identify it and found it very magical. The party examined the skull in the kitchen. It had a deformity in the back of the skull and looked a year younger than Joy, about seven years old, and possibly 1,000 years old. [Dirk?] defeats [unclear]. The well went down about fifty feet to water. Library research showed that the observatory was built at the same time as the Barrier, in tandem with it, not as a meeting place. It was designed specifically to observe the moon. Caverns underneath were found, and the site was built for this purpose. The summoning circle was connected to different towns and cities to bring building materials, then supplies after the observatory was built. + +The party sent a message to [bucsalik]: the townsfolk have memories, the creatures were slain, they were at the observatory, and there was a message from Geldrin for Grand Towers wizard Brownmity. They then checked the maintenance area and disarmed the door. The Barrier was directed locally around the observatory. They found an old blanket and pillow, both very decayed. + +Earthwise, the party thought they had possibly found Joy's other hiding place. Firewise, they found a locked trapdoor with no way to pick it; the handle felt hollow. Geldrin used shield crystal to open it. Stone steps descended far into darkness. Five lights ended at a door painted with white flowers. Solemn music filled the cavern. Water passing through the Barrier fizzed. A riverbank shrine held six gravestones, all marked "Joy," all with everlasting flowers; one grave had been disturbed. The graves read: Joy, died in chamber; Joy, 3 years old, lung infection; Joy, 2 1/2, unknown complications; Joy, 5 years old, with nothing else written; Joy, 9 years old, died from poisoning; and Joy, 7 years old, birth defect, with bones off in the other and raised [uncertain wording]. + +Following the stream, the party passed rocky ground, roots, mushrooms, mildew, and then mushrooms that became much larger than they should be. After fifteen to twenty minutes, everything was larger than it should be, growing bigger toward a point. A massive butterfly flew past. At about 13:30, the party reached a lake with massive lily pads, frogs, and frog spawn. Something magical was in the centre of the lake. The party put something into the lake, but nothing happened [uncertain object]. At about 14:00, Geldrin tried to raft to the middle, fell off, and was rescued. The party gave up on the lake for the moment because they lacked a way to retrieve the magical thing in the middle. + +Back at the observatory, the party kept circling. Where they thought the front door should be, it was not there. A rune was on the wall, and Geldrin copied it. Continuing around, even the original entrance was gone. Earthwise, the bed had changed into a flower bed and the Barrier was not there. Firewise, there was no trapdoor; instead, two statues stood a quarter of the way down each wall. One was Throngore, huge and muscular with two arms, four legs, two horns, and dead [unclear], described with dark goals [uncertain], crab claws, flesh-like taloned human-like hands, broken skin, and flame from one side. Throngore was identified as a god of destruction. The other statue was Igraine, a pregnant elven woman holding a rose and scythe, goddess of life and harvest, made of alabaster stone. Rhine was noted nearby [uncertain context]. Airwise, the wall looked as if it should have been the door, but there was no corridor. + +The party retraced their path. The statues were the same. Earthwise, the flowers were now dead. Invar went around alone to the shrines and back, found things dead, then went back around and shouted for the others, but they did not hear him. Airwise, the runes were bleeding and seemed different: "Demon magic shit." The blood hurt slightly when touched. Geldrin copied the runes. Invar collected some in a bowl and checked its acidity; it was slightly acidic and seemed to be real blood. + +Firewise, the trapdoor was closed even though the party had left it open. This version was fully metal with the same lock as the other one. A metal ladder led down to a metal floor. Around the exterior of the room were eight glass chambers, six empty and two filled with viscous liquid and something inside. The six empty chambers suggested six boys [uncertain]. Books sat near a statue. The statue was a nondescript human figure with no sex features, one arm out and palm down to the floor. Dirk mentioned hanging his coat on it. Geldrin tried a ring on it and it fit perfectly; Dirk added his. The diary there seemed to be trying to perfect a clone spell and matched the Joys in the graves. Dirk checked one chamber and saw something inside. The rings began to glow slightly around 15:30. + +The party went back up. Earthwise, there was no bed, but the Barrier split was there. Waterwise, the door was there with pipes and other mechanisms. Airwise, there was a triangular Barrier. Waterwise was the same place both ways [uncertain]. Geldrin managed to hold the book open, copied writing, and deciphered it as an illusion spell. He took the book, whose front had an eyeball on it. This was around 17:00. + +The party went to look at the moon and opened Maiden's Dew, a good wine. Through crystalline refraction, they saw the moon and a smaller fragment at the front. The fragment was separate and much closer than the moon, about halfway between the planet and moon, locked in sync with the moon's position. The moon was closer than expected; the party thought it would take another 1,000 years. If more magic went through the shield pylons, however, it would speed up. The fragment was aimed to hit exactly between the pylons. This connected with conjunctions and some of the issues from the town crier. The Barrier started flashing and lighting up, as if something were activating it. The moon shard seemed to be coming closer with the attacks. + +# People, Factions, and Places Mentioned + +Dirk, Geldrin, Invar, Joy, Joy's father/Daddy, Daddy's creepy friend, Pelt, Musher, Garadwal [possible], horned mechanical hellraiser sphinx creature, Brownmity, [bucsalik], Core, Throngore, Igraine, Envoi/The Mage by implication, townsfolk, Grand Towers, Goldenswell, Arvoreds [uncertain], observatory, Barrier, shield pylons, Tri-moon, Joy's room, Joy's secret den, Joy's holy place, maintenance area, kitchen, library, riverbank shrine, lake, caverns, and towns/cities connected by summoning circle. + +# Items, Rewards, and Resources + +Important items and resources included a bronze feather, brass feather for communicating with the master, teleportation/summoning circle, cages, operating table, guillotine, rope, humanoid horned skull, Core suits on four plinths, fresh-water cauldron, trapped maintenance door, trapped magical chest, white flower, mahogany rune-locked box taken by Geldrin, medical equipment, syringe, crystals, used spell-scroll ash, powder, herbs, empty vial/flask, three full flasks including Mirth's Fizzleswig and succour plus one unknown, quill, ink, Joy's diary, golden spyglass, Barrier-breaking crystals, calculus and Tri-moon notes, books on biology, incurable diseases, poison, and Slowbane, spices, wine, berries, parchment, platinum, gems, silk, soja digel [uncertain], viel/vial from Arvoreds [uncertain], a book, magical copper dodecahedron, gem lamp, shield crystal used as a key, everlasting flowers, Maiden's Dew wine, copied runes, blood from bleeding runes, clone-spell diary/book, eyeball-front illusion book taken by Geldrin, two rings placed on the statue, and the magical object in the centre of the giant lake. + +# Clues, Mysteries, and Open Threads + +Joy appears to have died or been recreated multiple times, with six Joy graves and clone-spell research matching them. Joy's illness may have been Slowbane poisoning, a rare heavy-metal-like poison found on the black market and possibly connected to shield crystal sickness near pylon cities. Joy's father and an unnamed creepy friend were making rings, using boxes, and trying to save Joy when payment could not cure her. The rings refer to pacts, bargains, sorrow, darkness, souls, infinity, and bringing Joy back. The horned sphinx or Garadwal-like master lives outside the Barrier or dome and seeks freedom from the dome or "freedom from the confines of everything." The attacks on the Barrier and shield pylons may accelerate the Tri-moon shard's fall. The Tri-moon is a crystal, and a smaller shard is halfway between the world and moon, synced with it. The observatory changes by direction: earthwise, firewise, airwise, and waterwise routes produce different rooms, runes, barriers, shrines, flowers, doors, and traps. The bleeding acidic runes, Throngore and Igraine statues, metal clone chamber, empty glass chambers, two filled chambers, glowing rings, giant lake object, disturbed Joy grave, and the exact identity of Daddy's friend remain unresolved. diff --git a/data/4-days-cleaned/day-07.md b/data/4-days-cleaned/day-07.md new file mode 100644 index 0000000..d7ee16a --- /dev/null +++ b/data/4-days-cleaned/day-07.md @@ -0,0 +1,33 @@ +--- +day: day-07 +date: 22nd Dec +source_pages: + - 22 + - 23 +complete: true +cleaned: true +--- + +# Narrative + +Day 7 began on 22nd Dec. At about 01:00, Dirk drew boobs on the chest, and they disappeared after a while. The party returned to the cart with the box of copper and fashioned a lock for the front door of the observatory. + +The party took Cromwell and Isabella back to town with carts and horses. Restoration was cast on Isabella, and she seemed confident in herself afterward. The party then went back to the Barrier to retrieve the remaining people. + +Eight people were left, and The Chorus was looking after them. Around 12:00, Geldrin painted the wagon white, and the party headed back to Everchard. Bucsalik replied to the earlier message with: "I'll meet you there." Birds followed the party back. + +On the way, the party saw six armoured horses coming from Provista. They were Thairwell militia, wearing livery with a stag and dragon. Named members included Draith, a male healer; Hethmans, male; and an elf woman who was rearing up [uncertain wording]. The party told them about the mind wipe, citizen stealing, lack of militia, and Barrier attacks. Invar had been present a few years earlier near Ironcroft firewise when something came through the Barrier. The Thairwell militia reported back to Lady Thorpe. + +On page 23, the healer restored the townsfolk slightly. One person whose arm had become a tentacle had the tentacle arm fall off, leaving a stump. + +# People, Factions, and Places Mentioned + +Dirk, Geldrin, Invar, Cromwell, Isabella, The Chorus, Bucsalik, Draith, Hethmans, an unnamed elf woman, Lady Thorpe, Thairwell militia, townsfolk, Everchard, Provista, Ironcroft, Barrier, and the observatory. + +# Items, Rewards, and Resources + +The party used carts, horses, a white-painted wagon, a box of copper, and a newly fashioned lock for the observatory front door. Restoration magic was cast on Isabella, and the Thairwell healer restored the townsfolk slightly. One tentacle arm fell off and left a stump. + +# Clues, Mysteries, and Open Threads + +The observatory chest continues to erase or remove marks placed on it. Isabella recovered confidence after Restoration, but the full extent of her recovery is unknown. Eight remaining people were being watched by The Chorus. Bucsalik is coming to meet the party. The Thairwell militia and Lady Thorpe have been informed about the mind wipe, citizen stealing, missing militia, and Barrier attacks. Invar's earlier experience near Ironcroft, where something came through the Barrier, may connect to the current Barrier crisis. The transformed townsfolk can be partially restored, but at least one tentacle limb fell off and left a stump, leaving the long-term consequences uncertain. diff --git a/data/4-days-cleaned/day-09.md b/data/4-days-cleaned/day-09.md new file mode 100644 index 0000000..37a2fe2 --- /dev/null +++ b/data/4-days-cleaned/day-09.md @@ -0,0 +1,32 @@ +--- +day: day-09 +date: 24th Dec +source_pages: + - 23 + - 24 +complete: true +--- + +# Narrative + +On Day 9, 24th Dec, the party arrived back in Everchard at about 13:00. The streets were busy and panicky, with people talking about missing people and odd faces. The party went to see Brother Fracture, where people were being reunited with loved ones and healing was happening. + +Everchard's Earl had gone missing. The sheriff had taken over and called for help. Core had made it back to town and had locked himself in the pub, with Mr Peel looking after him. The Earl apparently disappeared when the memories came back. A cabin had been set up at the halfway point. The Thairwell ladies requested a meeting with the party, and they were told the party was heading to Seaward. + +The party dropped Isabella at the Cider Inn Cider, then went to see Core. They reached Mr Peel first. Peel said Core was okay but would need further repairs. Core had come to town from earthwise and had only spoken enough to say something like "Core da." Geldrin thought Core had tried to say "Core damaged." When the party saw Core, he was sitting motionless in a chair. Peel thought Core needed more crystal. A repaired Core had arrived in the post the day after Core himself arrived, with a single word on it: "GUILT." It had not been addressed to Peel. The pub had been open for five years. "The Guilt" was also connected to the Earl of Brookville Springs. + +The party returned to the Cider Inn Cider, took rooms, and had baths. A note about Basalik records that he was to find Groundhog and give a coin connected to the old grand tower penny. Basalik did not like that the party had donated the coin to the church, as it was a 1,000-year-old coin. He warned them to keep on the good side of the mage Judicators in Seaward, describing Seaward as a very structured town. + +The party ate and recovered. At about 17:00, they went back to see Brother Fracture. Basalik brought coins with him; he had ten left and had bought them for 1 gp. The next morning entry begins with the party getting up and going on the road with Isabella. + +# People, Factions, and Places Mentioned + +Everchard, Brother Fracture, the Earl of Everchard, the sheriff, Core, Mr Peel, Isabella, the Cider Inn Cider, the Thairwell ladies, Seaward, Basalik, Groundhog, the old grand tower, the mage Judicators, and the Earl of Brookville Springs were all mentioned. Directional travel from earthwise was associated with Core's return. + +# Items, Rewards, and Resources + +Core needed further repairs and possibly more crystal. A repaired Core arrived by post with the word "GUILT" on it. Basalik discussed an old grand tower penny or coin, described as 1,000 years old, and brought ten coins that he had bought for 1 gp. The party took rooms and baths at the Cider Inn Cider. + +# Clues, Mysteries, and Open Threads + +Everchard was still dealing with missing people, odd faces, restored memories, reunions, and healing. The Earl disappeared when the memories came back, and the sheriff had taken over. Core's exact words remain uncertain: "Core da" may have meant "Core damaged." The repaired Core sent in the post, the word "GUILT," and the link to the Earl of Brookville Springs remain unresolved. The Thairwell ladies' requested meeting is still pending. Basalik's concern over the donated 1,000-year-old coin and his warning about the mage Judicators in Seaward remain important leads. diff --git a/data/4-days-cleaned/day-10.md b/data/4-days-cleaned/day-10.md new file mode 100644 index 0000000..1f5bf91 --- /dev/null +++ b/data/4-days-cleaned/day-10.md @@ -0,0 +1,31 @@ +--- +day: day-10 +date: 25th Dec +source_pages: + - 24 +complete: true +--- + +# Narrative + +On Day 10, 25th Dec, after roughly a day's travel, the party saw a four-storey building that served as a trading post and inn: The Wayward Arms. Its sign showed a merfolk. The party got a Peel ticket for the horses. A play was taking place on the stage. + +The party arranged rooms, with a note that the rooms were ready at 11 o'clock and that departure could be at 6 am, though extended sleep until 8 was also recorded. The stairs were on the left of the second floor. Timothy served the party. An elven lady came on stage and sang. + +Two half-elf ruffians entered the pub wearing ramshackle armour. They were twins, had a killer air about them, sat down, and opened a bag on the table. Two halflings also entered, seemed to be a couple, and sat at the first table by the door. + +Someone brought a giant moth picture down the stairs and hung it up. The half-elves looked at the clock. Staff moved people and pulled tables together, apparently setting up for Mirth. Music was heard, and people rushed over. Mirth entered as a halfling dressed like a ringmaster, with a smarmy air. He clapped his hands and things appeared on the tables: pastries, wine, bottles, and similar goods, possibly from a general store. He was identified as a famous alchemist, Mirth's Azzlejug. A note says to be back here in three days. The next destination was Brookville Springs. + +Dirk overheard the half-elves' names as Yadris and Yadrin. One of them said something like "taking my mind off tomorrow." They had been sent to investigate as problem solvers, but did not say what problem they were solving. They worked for a lady who was already upstairs in her room. + +# People, Factions, and Places Mentioned + +The Wayward Arms, Timothy, an elven singer, two unnamed halflings, Mirth, Mirth's Azzlejug, Dirk, Yadris, Yadrin, Brookville Springs, and the unnamed lady upstairs were all mentioned. The inn was a trading post with a merfolk sign. + +# Items, Rewards, and Resources + +The party obtained a Peel ticket for the horses. The Wayward Arms provided rooms. Mirth caused pastries, wine, bottles, and other goods to appear on the tables. A giant moth picture was hung in the inn. + +# Clues, Mysteries, and Open Threads + +The giant moth picture may connect to earlier massive moth sightings. Mirth's appearance, magical table goods, and the note to return in three days are unresolved. Yadris and Yadrin, the armoured half-elf twins, were sent as problem solvers for an unnamed lady upstairs; the problem they were investigating was not disclosed. Their comment about "tomorrow" suggests something expected or worrying on Day 11. diff --git a/data/4-days-cleaned/day-11.md b/data/4-days-cleaned/day-11.md new file mode 100644 index 0000000..81c1e8b --- /dev/null +++ b/data/4-days-cleaned/day-11.md @@ -0,0 +1,36 @@ +--- +day: day-11 +date: 26th Dec +source_pages: + - 25 + - 26 +complete: true +--- + +# Narrative + +Day 11, 26th Dec, began with morning announcements. Pentra city mages were on high alert because of an attack on the barrier, and Justicars were reporting to major settlements. The Shields of the Accord reported an army moving airwise, led by a Baron. Loggers at Pine Springs were missing. Heavy blizzards had made travel to Rimesatch impossible, trapping scholars. Goliaths from the firewise deserts were seeking refuge in Dunenseed and Sawtooth. Creatures of Air, led by a six-armed monstrosity, had pierced the barrier, though the colleges denied this was possible. Bonstock reported gnoll activity. Riversmeet had suffered a break-in at its menagerie, with black market confiscations and a 50 gp fine. Everchard's villainous Earl had been ousted by the sheriff and brave deputies, with his nefarious activities thwarted and restoration under way. Hartswell and Goldenswell armies were clashing with a giant roaming firewise of Hiylden. + +The party headed to Seaward. The city was laid out in perfect circles of houses, with a colosseum-like building in the middle used for horse and dog races. An airwise path entered the city, with wagons going back and forth full of the marble-like material used for the buildings and roads. A shield pylon stood outside the main city walls. The population was noted as elves, dwarves, and gnomes. The marble-like material had a dark blue vein effect. + +At about 21:00, the party parked the cart at Paynes horsebreeder and went to the colosseum, where a forge charger race was scheduled for midday tomorrow. Seaward was run by the Stonemasons Guild and an elf. The party found the Rotund Rooster Rooster inn, where Tiffany was associated with the inn. Roads were closed due to winter, so there was no ice. The inn did not have fresh water and had to order it in. + +The party also learned about another inn option: the Night Candle, on road 7, ring 3, described in the notes as "Water by Earth, Water, wine or Night candle." Rumours in Seaward said water elementals could walk through the barrier. There had been altercations with the council. A collective was working on the water problem, which had been present for about the last [event?] 20 years. + +Racing names and sponsors were noted. Chunky Chicken Cooker was sponsored by the Rotund Rooster Rooster and had been redesigned; it used to be a griffin and was a favourite. Payneful Gamble had a bad pit start time. Thunder [belch/belch?] was another name. The inn had apparently been attacked by water elementals, or there was uncertainty around that, and someone who worked at the cliffs said no one else had been attracted or attacked [uncertain phrasing]. + +One mysterious charger was owned by someone outside the usual circles, maybe an outside duke or Earl. A halfling asked Invar whether the party had any skulls, specifically green-skin goblin skulls, for his master. The halfling was not allowed to say who the master was, only that he was from around here. The name Chalky was associated with this skull-buyer. The master paid well for clever people's skulls. + +The party went to the Night Candle. It was candle-lit, with plush furnishings. The notes again record that the reason for the barrier was to keep the elementals out, but rumour said they could walk through it. At 3 am, a goblin peered into Dirk's room. + +# People, Factions, and Places Mentioned + +Pentra city mages, Justicars, the Shields of the Accord, a Baron, Pine Springs loggers, Rimesatch scholars, firewise desert goliaths, Dunenseed, Sawtooth, Creatures of Air, the six-armed monstrosity, the colleges, Bonstock, gnolls, Riversmeet menagerie, Everchard, the Everchard sheriff and deputies, Hartswell, Goldenswell, Hiylden, Seaward, the Stonemasons Guild, Paynes horsebreeder, the Rotund Rooster Rooster, Tiffany, the Night Candle, water elementals, Seaward council, Invar, Chalky, Dirk, and an unidentified goblin were all mentioned. + +# Items, Rewards, and Resources + +The morning announcements mentioned black market confiscations and a 50 gp fine after the Riversmeet menagerie break-in. Seaward used a marble-like building material with dark blue veining. The party parked the cart at Paynes horsebreeder. Racing names included Chunky Chicken Cooker, Payneful Gamble, Thunder [belch/belch?], and a mysterious charger. Fresh water in Seaward was scarce enough that the Rotund Rooster Rooster had to order it in. Chalky or his master paid well for clever people's skulls, including green-skin goblin skulls. + +# Clues, Mysteries, and Open Threads + +The barrier attack, Pentra mages' high alert, Justicars reporting to major settlements, and creatures breaching the barrier all point to wider instability. Seaward's water problem, rumours that water elementals can walk through the barrier, and the pylon outside the walls are major unresolved threads. The water problem may have lasted about [event?] 20 years. The skull-buying halfling, Chalky, the unnamed master, and the request for clever people's skulls remain suspicious. The goblin peering into Dirk's room at 3 am is unresolved. The mysterious charger owned by an outside duke or Earl may also be relevant. diff --git a/data/4-days-cleaned/day-12.md b/data/4-days-cleaned/day-12.md new file mode 100644 index 0000000..12de4f2 --- /dev/null +++ b/data/4-days-cleaned/day-12.md @@ -0,0 +1,54 @@ +--- +day: day-12 +date: 27th Dec +source_pages: + - 26 + - 27 + - 28 + - 29 + - 30 + - 31 +complete: true +--- + +# Narrative + +Day 12, Saturday 27th Dec, began with the party heading to the shield pylon. The pylon looked like a gold ring with a crystal set in a claw, with runes around it. Two guards stood outside the keep. A rumour said something was walking through a chicken farm at night. The barrier flickered for about one second at a time, and this happened often. It was said to come from Dunhold Cache, but only for the last few weeks. Rain followed, and the flickers were only noticed near the pylon. + +There was commotion at a temple, with guards carrying a female elf out. A public warrant was current at 08:00 for indecency and corruption. The temple had a cross shape, vast archways for doors, and a circular altar in the middle. A priest said the council had fabricated some charges. The priest thought the Architect was using dark magic to make himself smarter, though the Architect worshipped light gods. The Architect was on his fourth term and was named Ilmen Thion. Bright was noted as possibly the only temple in Pentacity, a goddess of luck and trickery. Hartha was also noted as a possible god or divine name. A boxed list recorded Riv grave 2 yr, dead dwarf 3 yr, Riundil, Ilmen Elf 4 yr, Council, and "9/1 1g horse." + +The council issues were identified as the barrier and water elementals. The public forum was in row 1, ring 3 from the centre, and met Thursdays at midday for four hours. Representatives met Monday and Friday. + +The party placed bets. The Big Bad Beauty, My Missing Hangover, two runes, "from another world travelled from another world," two men acting as a shell company for the Guild, 4/1 odds on all, and The Truffle Hunter were all recorded around the betting and race context. In a side street, the party heard a yelp. Iakaxi, a goblin, had been following them. He told the party to stop letting him follow them and gave them a job on a piece of paper. The goblin scam would keep following them because the party might have skulls. Dirk said they could leave one for him at his house, and Iakaxi took the party there. His house was described as minty, with rat droppings and three skulls. He would meet his master when he had eight skulls. The rate was 5 silver for skulls. The party considered whether cadavers might work and returned toward the inn via a temple to see if they could locate skulls. + +At the fire temple, dedicated to war, justice, and the hunt, three people in the congregation listened to a priest recite poetry about a battle against Soot the dragon. Young priests then had the congregation pick up wooden swords and start practising. + +Brother Caskus said there were problems in town. The water elementals were not killing people, but he had heard that deputies had been found drowned near the cliffs with fresh water. Rivers and lakes within ten miles were back; previously, water came from wells and then gradually went back. The party wanted to check the skulls for water differences while trying to obtain some for Skum. One skull was about 50 years old, showed coughing sickness, no signs of damage other than burning, and some malnourishment at an early age. Another was about 25ish, showed damage to the vertebrae from stabbing, and nothing else obvious. Public records would be available at town hall, fourth ring waterwise, at 10:00. The party went back to the inn for Isabella and heard elves in the city, with people very finely dressed. + +The party attended races in Section C. In race 1, they bet 5 silver on Wimpy Cheese at 4/1 and lost. In race 2, they bet 5 silver on Where's Gravy at 5/1 and lost. In race 3, they bet 5 silver on The Galloping Salesman and lost. Race 4 was dogs; they bet 5 silver on In It for the Sugar at 3/1 and lost. Race 5 had already been bet. The entrants or associated figures included a sphinx style entry tied to the Stonemasons Guild, a unicorn called Forever 1st that took first place and was linked with vodker, a rot horse from Payne horsebreeders, a gryphon/chicken from the Rotund Rooster Rooster associated with chunky chicken casserole, a nightmare on hire from the Night Candle Inn, a wooden barrel from Bad Barrel Makers tied to Big Bad Beauty, and a gryphon/owl possibly first for My Missing Hangover. The party won 9 gp. The Truffle Hunter won, with mice noted. + +After the race, an announcement said the town was almost finished and the walls were up to strength. The water problem was also being looked into, along with worrying rumours about council members; people were referred to forums. The announcement seemed odd, out of place, and formal. + +The party went to find Isabella's friends. They knocked, and the door swung open. Inside the middle-class house, there was blood on the parlour floor. Two halflings were hanging from the ceiling by their feet. The male's intestines were across the floor, possibly in a pattern. The female looked at the party, but though her body was upside down, her face was right way up. The party suspected someone had used the intestines for a divination spell. The victims had not been dead long but were not warm. The front door had been broken open by engineered force. A candelabra had been physically pushed over. There had been movement, but no evidence of a struggle. No active magic remained, but divination had been used, of the same type as at Everchard. + +The party heard heavy wing beats. A six-foot gargoyle appeared, looking as if it were made of clay and not usual for the town. Isabella said it was from her aunt and that it was one of the family guardians. It dropped a bag containing 50 platinum and flew off with Isabella. + +The militia arrived to see what was going on. The party directed them inside, and the militia took the party to see the council at 17:00. The party stored their weapons in a chest before going in, including a medic bug. Elementarium, an elf, was present. He admitted the pylon was being interfered with. He needed the Justicar gone and asked the party to look into the pylon, saying the Justicar had ulterior motives. The party received access to the shield pylon. Elementarium offered 2,000 gp if the party kept the information to themselves, with 500 gp now and the rest on completion for solving the problem or providing information that helped solve it. Extra payment was available for water elementals. A note records 200 gp paid. + +The party noted that Tri-moon barrier attacks had looked different. The flickers occurred every 5 minutes to 2-3 hours, only from the sea to Seaward, with nothing from the Everchard direction or Dunhold Cache, and other places stated that nothing was coming their way. The issue had started approximately three weeks earlier, and logs were being kept. Suspicion fell on half-[elf?] lings or pirates: the captain of a ship allegedly had a crew, but nobody had seen them. People went missing and turned up dead and magically disfigured. Elementarium's aide was the Peridot Queen; the warning was "DO NOT PISS HER OFF." She would help the party. Water spirits had usually made it through, but more were now making it through along with the other elements. The party were asked to keep the body count low. + +At 18:00, the party retrieved their weapons, sorted the horses with one day paid, got rooms at the Scarred Cliff, and went to the barrier. At 19:00, guards showed them around. Gherison, the sage on duty, gave the party the book showing the times and durations of the flickers. The flickers had been happening for two weeks, were getting worse, and were increasing in frequency. The longest lasted three seconds. They were very random, with about a 9 am bout of outages and none around midnight. An alarm clock in the home for quarrymen was noted. It was unknown how far the flickering extended between Seaward and Dunhold Cache. The flickering happened toward the pylon, crawled in a horizontal pattern, and did not go past the pylon. + +The crystal had thousands of tiny runes around it. None of the runes seemed to have been tampered with, and the crystal was very clean. Meteowolves sometimes came down. Geldrin touched the barrier, possibly with his crystal shard, and it went crazy. A guard said it looked like the flickering, but more intense and not as far-reaching. The Justicar had only checked the books and crystal with an eyeglass. The Peridot Queen was again noted. Iaxxon, a guardsman guarding the quarry, had seen water elementals rush past him like he was simply in the way, not as if they were attacking him. + +# People, Factions, and Places Mentioned + +The shield pylon, Dunhold Cache, Seaward temple, the female elf under warrant, the council, the Architect Ilmen Thion, Bright, Hartha, Riv, Riundil, the public forum, the Guild, Iakaxi, Dirk, Skum, the fire temple, Soot the dragon, Brother Caskus, Isabella, Isabella's aunt, Isabella's friends, the militia, Elementarium, the Justicar, the Peridot Queen, Gherison, Geldrin, Iaxxon, the Scarred Cliff, the Night Candle Inn, Payne horsebreeders, the Rotund Rooster Rooster, Bad Barrel Makers, Stonemasons Guild, Everchard, and the quarry were all mentioned. + +# Items, Rewards, and Resources + +The shield pylon consisted of a gold ring, a claw-set crystal, and runes. The party placed several 5 silver bets and won 9 gp. Iakaxi paid or offered 5 silver for skulls and needed eight skulls to meet his master; he had three. Skull examinations identified one about 50 years old with coughing sickness, burning, and childhood malnourishment, and one about 25ish with vertebrae damage from stabbing. The gargoyle dropped a bag containing 50 platinum before taking Isabella. Elementarium offered 2,000 gp for discretion and results, 500 gp in advance, with the rest on completion and extra payment for water elementals; a note records 200 gp paid. The party stored weapons and a medic bug before seeing the council, then retrieved them. They paid for one day of horse care and took rooms at the Scarred Cliff. + +# Clues, Mysteries, and Open Threads + +The barrier flickers, water elementals, pylon interference, and Seaward council politics are central unresolved threads. The flickering began about three weeks earlier by one account and two weeks earlier in Gherison's log, is increasing in frequency, has random timing, usually lasts up to three seconds, has a 9 am cluster, and does not occur around midnight. The flickers seem to come from the sea-to-Seaward side rather than Everchard or Dunhold Cache, crawl horizontally toward the pylon, and do not pass the pylon. Geldrin's crystal shard caused a stronger but smaller version of the effect when touching the barrier. The Justicar may have ulterior motives, and Elementarium explicitly wanted the Justicar gone. The Peridot Queen is an important but dangerous contact. The murdered halflings, intestinal divination, right-way-up face on an upside-down body, engineered forced entry, and magic matching Everchard remain major mysteries. The skull-buying goblin scam, Iakaxi's unnamed master, the need for eight skulls, and Skum's interest in water differences remain unresolved. Isabella was taken by a clay-like gargoyle family guardian from her aunt after receiving 50 platinum, leaving her status and destination uncertain. diff --git a/data/4-days-cleaned/day-13.md b/data/4-days-cleaned/day-13.md new file mode 100644 index 0000000..9c3bfcc --- /dev/null +++ b/data/4-days-cleaned/day-13.md @@ -0,0 +1,29 @@ +--- +day: day-13 +date: 28th Dec +source_pages: + - 32 +complete: true +--- + +# Narrative + +On Day 13, Sunday 28th Dec, Ileep got the horses, and the party left for the quarry. They followed the barrier and saw that the ripples seemed worse the farther they got from the pylon, though the duration and frequency did not change. The pylon appeared to be bringing the disturbance back under control. + +The ground on the route was very dry and loose, with few plants. At a quiet point, the party saw what first appeared to be a home in the distance coming toward them. It was green and tall, and resolved into an eerie elven woman with black hair and very extravagant presentation: the Peridot Queen. She stroked the narrator's face and joined the party toward the cliffs. She looked worried when she looked at Geldrin. She had seen all eight pylons. + +The party made it to the cliff cutter town, which was mostly dwarves and gnomes. The barrier problem seemed to originate by the cliff. At about 21:00, the party walked toward the barrier by the cliff. The cliffs were sheer drops with rifts and barriers. The water was choppy and quite dangerous, and had recently been cutting close to the barrier. + +The party broke into a tool shed for the night. Outside, the wind picked up for a moment. The emanating point of the barrier problem around the cliffs was about 20 minutes away. There was not much wildlife around. In the morning, wave sounds grew louder. Raven went out and saw two sea creatures rushing up the sides of the cliff. A time of 23:00 was also recorded in the notes. + +# People, Factions, and Places Mentioned + +Ileep, the party, the quarry, the barrier, the pylon, the Peridot Queen, Geldrin, the cliff cutter town, dwarves, gnomes, Raven, and two sea creatures were mentioned. The Peridot Queen had seen all eight pylons. + +# Items, Rewards, and Resources + +Ileep got the horses for the trip to the quarry. The party used a tool shed for shelter after breaking into it. The route followed the barrier, and the pylon's stabilising influence was observed indirectly through the worsening ripples farther away. + +# Clues, Mysteries, and Open Threads + +The barrier ripples worsened with distance from the pylon, while duration and frequency stayed the same, suggesting the pylon was partially controlling the disturbance. The Peridot Queen's worry when looking at Geldrin is unexplained. The Peridot Queen has seen all eight pylons, making her a significant source of knowledge. The barrier problem seemed to originate by the cliff, about 20 minutes from the party's shelter. The choppy water, the sea cutting close to the barrier, the temporary wind outside the tool shed, the lack of wildlife, and the two sea creatures rushing up the cliff remain unresolved threats or clues. diff --git a/data/4-days-cleaned/day-14.md b/data/4-days-cleaned/day-14.md new file mode 100644 index 0000000..520b97b --- /dev/null +++ b/data/4-days-cleaned/day-14.md @@ -0,0 +1,96 @@ +--- +day: day-14 +date: 29th Dec +source_pages: + - 33 + - 34 + - 35 + - 36 + - 37 +complete: true +--- + +# Narrative + +Day 14 began on Monday, 29th Dec, at the barrier. Elementals came over the side of the cliff and reformed as bulls, then followed the path away from the barrier. At 06:00 the Peridot Queen arrived, winged and with the appearance of an elf. + +Geldrin, Invar, and the Peridot Queen went down in a lift immediately beside the barrier, only about one meter away from it. The lift descended through a mine shaft reinforced with wooden beams. The shaft branched away from the barrier and then ran parallel to it. By about 08:00, farther down, they found a constructed wooden wall marked with a warning about danger of collapse. They heard a creature saying, "Mun," and saw a human with a scar pushing a plank back into the wall. The Peridot Queen paid him one of the old copper coins, then transformed into a green dragon. + +The miners reported that there had not been problems for about thirty years until the recent incident. Bears like bulls had shot up [warded?] past toward the wilderness, streaking like a banshee. A gnome claimed they "smell like candy & has legs," though the note says this was probably lies. One dwarf on barrier duty had found a small crystal during his last duty. + +At about 08:15 the Peridot Queen flew out of the shaft, and Alcana and Dirk saw a shape. A group of miners appeared, and a differently dressed human came over to them. The human did not seem to see or speak to the party, pointed toward them, and then walked off toward the barrier. The party suspected later that this human might have come through the barrier, from approximately the point where he had appeared. + +The encounter escalated when dwarves and a gnome attacked the party: four dwarves and one gnome. The gnome threw a blue rock onto the floor, and a small elemental came out and attacked Geldrin, possibly through a spell effect. The party managed to knock one attacker out. Guards came over, brought him round, and he warned, "he's coming Terror of the Sands is coming for you all." The guard knocked him unconscious again, and the guards took him back to town. Private Burke wanted the party to visit the Maktum before leaving. The party had 5 gp each and an old copper coin; the gnome also had two other blue crystals. + +By 08:50 and then 09:00 the barrier problem was more obvious: it was flickering, but nothing else was immediately clear. Invisible Joy appeared to Dirk and said they were in pain and that it burned. Joy asked for Dirk's help. The party wondered whether Joy, or what was harming Joy, was connected to the barrier issues. + +At 09:50 the party followed the salt trail left by the water elementals. The trail thinned out, with no sight of the elementals, but after some time the land became more lush. This was about seven miles from the barrier, and insects appeared there, which the party had not seen before. At 11:00 they reached a river that ended at the cliff and fell away as a waterfall. The river was shallow, and the path ended at the river. The route seemed about twenty years old. + +The river appeared to contain water elementals. One elemental said, "Pain gone, no hurt me / you come take me like others take we escape / through pain, closest, good water." Geldrin freed the two elementals trapped in the blue crystals. The elemental wanted the party to free the rest. It described a "death dome" and said they had come through a hole made for poison water. The hole hurt and was in the sea. The elementals seemed to be trying to free creatures trapped underground. A poisoned one, made of poisoned crystal, powered the death dome. Garadwal was apparently one of these beings until he escaped. A moon rock had created the hole two moons ago. The notes connect this with a scaly dragon with webbed fingers, blue-grey in colour, that goes through the dome, and with one big four-armed being that worked with poison water and Garadwal using tridents. + +The hole was said to be by the cliff face at the bottom of the sea. Occasionally somebody or something went down to annoy the crystal. At 13:00 the party headed back to town to speak to the militia or guards. They identified Salias as the person or being their amulet was talking about, associated with earth and water. The notes record language from the elementals or related beings: "soon free like our master Garadwal," with Garadwal associated with sand, earth, and fire. They called the barrier enslavement. They said there were eight altogether and that they would soon find the hidden lair of their oppressors, who had used them as batteries. + +The party theorised about the elemental categories. One diagram listed ooze, earth, sand, fire, smoke, air, ice, water, with magma and lightning also noted. Another listed ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt. The party debated whether the prisons were justified: perhaps the needs of the many outweighed the needs of the few; perhaps the beings had tried to destroy the world and were locked up; or perhaps they were preemptively locked up. + +The party placed the water back as ten miles down the path from Seaward, airwise, and ten miles down the coast from the barrier. They returned to the quarry. At 16:00 they found a door to the left, right next to the barrier. By 18:00 they had identified that two panels were missing from the hole. Behind the wooden panels, a passage descended a long way. It had been deliberately excavated and was not a mantle seam. It widened into a very old built wall, perhaps a thousand years old, and descended into an underground structure. + +At an old door on the right, the sign of aging or the handle hurt. An old gnome walked out and realised the party was there. The party gave him a coin. The Underbelly was mentioned, and a truce seemed to be in place. The gnome gave them a tour of the prison. They went down corridors and turned left many times, passing six corners to a huge metal door with a dragon head holding a ring. Through it, they saw the barrier at the far wall. A smaller barrier encompassed a massive salt dragon, which had been sweating salt into the earth for twenty years. The Underbelly or the people there were trying to free it. The room had once been full of ooze and eels, and copper pylons had been there, but they had been removed. Runes on the floor were barely visible beneath the salt. Another room had four curved copper pylons. The pylons had been removed twenty years earlier; the dragon was already seeping salt then. + +The gnome or the locals wanted the Justicar kept out of what was happening below. Down to the left was the original entrance. The party looked at it and found it similar to a room they had seen before in the observatory. It had been examined in the last twenty years. A big black dragonborn then came in, described as the tour guide's boss and as one of not many around. + +The party learned that the cult was looking for a laboratory. Basalisk said there was a laboratory of a similar vein twenty miles earthwise along the barrier. At 20:00 the party headed back to town. In the common room they were sharing with one other person who had not shown up. + +The party sent a message to Basalisk, who came to them. He knew little about the salt elemental. He identified the Black Scales as a mercenary group working for Infestus, the black dragon. Basalisk had checked the observatory but could not open the chest and could not get into the golem underground room either. The party discussed Garadwal and the elemental prisons: a prison at a lake by a lab might hold the ooze one; one was frozen near Rhinewatch or Runewatch and might be the ice one; Garadwal was thought to be sand, though that seemed wrong because he was buried north of Aegis-on-Sands, raising the question of whether he was an elemental. The party planned to speak to the Elementarium person in Seaward. + +# People, Factions, and Places Mentioned + +- Peridot Queen: arrived winged in elven form, paid an old copper coin, and transformed into a green dragon. +- Geldrin: went down the lift, was attacked by a small elemental, freed two elementals from blue crystals, and later discussed or investigated the prisons. +- Invar: went down the lift with Geldrin and the Peridot Queen. +- Alcana: saw a shape when the Peridot Queen flew out of the shaft. +- Dirk: saw a shape and was contacted by invisible Joy. +- Joy: invisible, in pain, said it burned, and asked Dirk for help. +- Private Burke: wanted the party to visit the Maktum before leaving. +- Maktum: a person, group, or place the party was asked to visit before leaving. +- Salias: identified as the person or being the party's amulet was talking about; associated with earth and water. +- Garadwal / Terror of the Sands: described as master by the elementals, linked with sand, earth, and fire, said to have escaped, and possibly one of the beings used in the barrier system. +- Underbelly: mentioned during the underground prison tour; a truce seemed to be in place. +- Justicar: locals wanted the Justicar kept out of the underground prison area. +- Black dragonborn tour-guide's boss: came into the prison area; noted as one of few black dragonborn around. +- Basalisk: provided information about a similar laboratory twenty miles earthwise along the barrier and later came after the party messaged him. +- Black Scales: mercenary group working for Infestus. +- Infestus: identified as the black dragon employing or commanding the Black Scales. +- Elementarium person in Seaward: the party planned to speak with him about elementals and the barrier. +- Seaward: reference point for travel and the planned Elementarium visit. +- Barrier: flickering and painful to Joy or the elementals; central to the day's investigations. +- Quarry: the party returned there and found access to the underground structure. +- Laboratory: a cult target; one similar to the current structure was said to be twenty miles earthwise along the barrier. +- Observatory: the original entrance resembled a room previously seen there. +- Rhinewatch / Runewatch [uncertain]: place near a frozen prison, possibly holding the ice one. +- Aegis-on-Sands: Garadwal was said to have been buried north of it. + +# Items, Rewards, and Resources + +- Old copper coins: used by the Peridot Queen to pay the scarred human; the party also had an old copper coin. +- 5 gp each: recorded as held by the party after the guard encounter. +- Blue crystals: the gnome threw one blue rock that released a small elemental and had two other blue crystals; Geldrin freed two elementals from crystals. +- Copper pylons: removed from the salt dragon prison room; four curved copper pylons were seen in another room. +- Dragon-head ring door: huge metal door with a dragon head holding a ring, leading toward the salt dragon prison. +- Runes on the floor: barely visible under salt in the salt dragon chamber. +- Party amulet: referred to as talking about Salias. +- Salt trail: followed from the water elementals toward the river. + +# Clues, Mysteries, and Open Threads + +- The differently dressed human may have come through the barrier, and his exact origin remains uncertain. +- Joy's pain and burning may be directly connected to the barrier issues, but the cause was not confirmed. +- The barrier flickered and was worsening by 09:00, but no obvious mechanism was identified. +- Water elementals described a painful hole in the sea made for poison water, a death dome, and trapped underground creatures. +- A poisoned crystal one may power the death dome; the identity and exact nature of this being remain unresolved. +- Garadwal may be one of the eight imprisoned beings, but his category is uncertain: sand, earth, fire, or possibly something else. +- The beings call the barrier enslavement and claim the prisons used them as batteries, but the party also considered that they may have been locked up for dangerous reasons. +- There may be eight major imprisoned entities, but the diagrams list more possible quasi-elemental categories: ooze, earth, sand, magma, fire, void, smoke, air, lightning, ice, water, and salt. +- The massive salt dragon has been sweating salt into the earth for twenty years, and the reason the copper pylons were removed remains important. +- The cult is looking for a laboratory twenty miles earthwise along the barrier. +- Basalisk could not open the observatory chest or enter the golem underground room. +- The location and identity of the ooze prison, ice prison, and Garadwal's prison remain uncertain. diff --git a/data/4-days-cleaned/day-15.md b/data/4-days-cleaned/day-15.md new file mode 100644 index 0000000..fbf3969 --- /dev/null +++ b/data/4-days-cleaned/day-15.md @@ -0,0 +1,68 @@ +--- +day: day-15 +date: 30th Dec +source_pages: + - 38 + - 39 + - 40 +complete: true +--- + +# Narrative + +Day 15 began on Friday, 30th Dec, with the party heading back to Seaward. They followed a caravan of stone back toward town and arrived at about 19:00 in the rain. They needed to see the Elementharium, who was actually dressed this time. + +The Elementharium explained quasi-elementals. They do not have their own plane. There are eight known major planes, and light and dark affect combinations of them to create the eight main quasi-elemental forms. These combinations became their own things and started to fight, though the Elementharium said they had not become that powerful. + +He outlined the combinations: earth, water, and light create ooze, slime, or life, described as the spark of creation. Earth, water, and dark create salt, which makes water bad and causes crops not to grow. Earth, fire, and light create metal, associated with positive construction. Earth, fire, and dark create magma, which destroys farmland and similar things. Fire, air, and light create smoke. Fire, air, and dark create void, the absence of everything and nothingness. Air, water, and light create ice. Air, water, and dark create storm. The party still questioned where sand fit into this structure. + +After discussing salt water elementals with the party, the Elementharium went down through a trapdoor. Dirk listened and heard him talking to somebody about the subject. The conclusion was that salt water elementals do not exist: salt and water are their own things. The situation was framed as pollution, with a salt elemental poisoning a water elemental. + +Dirk asked whether crystals were helping the barrier. The Elementharium seemed to believe it, but he needed the Justicar to believe it so that she would leave. Geldrin planned to try to sway the guards or towers to persuade the Justicar to leave. [Rhonati?] or Hevii might have an obsidian bird for relaying a message. The party arranged to meet back with the Elementharium at 21:30. + +Dirk asked about Garadwal. The Elementharium went down to the chamber, retrieved a dwarf skull, and asked it the question about Garadwal. The skull replied, "The information you seek is not for your kind." It then said Garadwal was imprisoned in the Prison of the Sands. The skull was Brutor Ruby Eye, a knowledgeable being and wizard of great power. + +The Elementharium showed the party the skull room, where he speaks to skulls for information. When asked what would happen if Garadwal escaped, Brutor answered that it would be bad indeed. The barrier would be weakened by the loss of one of the eight. Brutor said Garadwal was the only void they could find, and that if one of the eight were to escape, it would be him. The feedback from the destruction of his prison would have damaged the others. Geldrin told Brutor about the Tri-moon shard. Brutor knew of the first crack and said Envoi had been tampering with it for his own means, meddling with the containment device. If something happened to Envoi, it would be bad and could cause the crack. + +Brutor said the wizards did not agree about the entrapment of the elementals, but they all agreed that Garadwal needed to be contained. The ooze one was described as a good one. Ice and storm [crossed out] were placed in the same chamber because the land was tricky to dig. The party considered whether the leaking might be stopped by correcting sigils that were out of alignment. The notes also say Brutor was killed by the Black Dragon and identify him as a demi-lich, or mention how he was made. + +The party considered whether there might be a way to reverse the polarity. They learned or recorded "Spinal" as Brutor's password. A boxed note also records "Winter Roses?" as Envoi's password. + +The party's broader thread list included halfling killers, eight things linked to the poles, pirates, and elementals. They also received a downpayment for their work: 50 per 200 gp [uncertain phrasing]. At 20:30 they put the horses into the stables and stayed at the Night Candles. + +# People, Factions, and Places Mentioned + +- Elementharium: Seaward elemental expert who explained quasi-elementals, discussed salt and water as separate beings, and used skulls for information. +- Dirk: listened to the Elementharium's private conversation and asked about Garadwal. +- Geldrin: planned to sway the guards or towers and told Brutor about the Tri-moon shard. +- Justicar: needed to be convinced that the crystals were helping the barrier so she would leave. +- [Rhonati?] or Hevii: possible source of an obsidian bird for relaying a message. +- Garadwal: said by Brutor to be imprisoned in the Prison of the Sands and also called the only void they could find. +- Brutor Ruby Eye: dwarf skull, knowledgeable being, powerful wizard, demi-lich, source of information about Garadwal, Envoi, and the containment system. +- Envoi: said to have tampered with the containment device for his own ends; linked to the first crack and a possible password, "Winter Roses?" +- Black Dragon: said to have killed Brutor. +- Seaward: town where the party met the Elementharium and stayed the night. +- Night Candles: inn or lodging where the party stayed. + +# Items, Rewards, and Resources + +- Dwarf skull / Brutor Ruby Eye's skull: used by the Elementharium as an information source. +- Obsidian bird: possible communication device held by [Rhonati?] or Hevii. +- Crystals: suspected by Dirk and the Elementharium of helping the barrier. +- Password "Spinal": recorded as Brutor's password. +- Password "Winter Roses?": boxed note, possibly Envoi's password. +- Downpayment: recorded as "50 per 200g" [uncertain phrasing]. +- Horses: put into the stables at 20:30. + +# Clues, Mysteries, and Open Threads + +- Salt water elementals may not exist; instead, salt and water are separate entities, with salt acting as pollution against water. +- Sand still does not fit cleanly into the Elementharium's quasi-elemental model. +- The Justicar's presence is considered a problem, and the party wants her to leave. +- Brutor said Garadwal was the only void they could find, which complicates earlier associations of Garadwal with sand, earth, and fire. +- The barrier depends on eight beings linked to poles; losing one would weaken it. +- Envoi tampered with the containment device, and something happening to him could have caused or worsened the first crack. +- The wizards disagreed about elemental entrapment, but agreed Garadwal had to be contained. +- Ice and storm may have been placed in the same chamber due to difficult land, though "storm" is crossed out in the raw notes. +- Leaking prisons might be repairable if the sigils are out of alignment, or perhaps by reversing polarity. +- Halfling killers, pirates, elementals, and the eight pole-linked entities remain active unresolved threads. diff --git a/data/4-days-cleaned/day-16.md b/data/4-days-cleaned/day-16.md new file mode 100644 index 0000000..d7105c0 --- /dev/null +++ b/data/4-days-cleaned/day-16.md @@ -0,0 +1,158 @@ +--- +day: day-16 +date: 31st Dec +source_pages: + - 40 + - 41 + - 42 + - 43 + - 44 + - 45 + - 46 + - 47 + - 48 + - 49 + - 50 + - 51 + - 52 + - 53 +complete: true +--- + +# Narrative + +Day 16 began on Saturday, 31st Dec. The party went to town hall to see Rewi Lovelace, a gnome whose room was very messy. Rewi pulled an obsidian raven from a drawer and called it Errol, though the note says "but not really." The party said the Justicar was causing more problems than she solved and requested further evocation spells. Rewi was thinking about how to enhance the pulley system at the cliffs. + +At 10:00 the party retrieved the horses and cart and headed earthwise. They noted Invil Newhaven four miles earthwise and Stonebrook three miles earthfire wise. Continuing toward Newhaven, the land became drier and seemed to be at the edge of the salted area. At noon they stopped at a well, apparently the only freshwater [area?] around. Other wells had been boarded up because the water was bad. The mayor ran a farm and kept chickens. The party filled their waterskins. The road out of Newhaven was in disrepair, and outside town the grass dried up again. Newhaven's good water appeared to be an anomaly. There were not many birds. + +The party found nothing around to indicate a laboratory at first. The obsidian raven appeared and suggested they meet with the Justicar and work together. It wanted their location, but someone said, "don't give it to him." The raven flew back to Seaward. The party kept going until they were ten miles away and one mile from the barrier. They found charred earth from the last few days, a campfire, and rations, possibly cultish. Tracks showed five or six people had camped there and seemed to be searching for something. The tracks led toward the barrier, then stopped. The party saw acid corrosion and blood speckles that looked as though they had been swept over. The notes distinguish black dragons as acid and green dragons as mist. + +Geldrin checked the compass and found a weakish signal. The party followed it about thirty feet down and saw purple. They found ten-foot stone walls with a door. The password "Spinal" opened it. Inside was a chamber with two columns in dwarf form guarding a door, and "Spinal" opened that door as well. A boxed note records Brutor as an abjuration wizard of Tor, associated with rocks. + +The party went left down a corridor and entered a large room with stone benches and a lecture area seating twenty to thirty people. There was a jagged rock-man statue representing Tor, with "Tor Protects" written beneath it. There was no visible disturbance in the dust. A book on a lectern was about Tor and written in ancient Dwarven. Across the corridor was a room of the same size containing only one teleportation circle. Geldrin copied the rune number. Dirk found fairly recent footprints that had been deliberately covered. They led down the corridor and had no returning prints, suggesting someone might still be inside. The footprints led to a closed door. A ruby in a dwarf face released chains that opened the door. Dirk used his crowbar to hold both chains and keep the door open. Geldrin set an alarm on the hatch and teleportation circle. + +The party entered another door, the second left from the hatch, and found purple light coming from the room. Paperwork on the walls showed pylons and tower structures. A bubble of shield energy floated in the middle, with a scale model of the Penta City states and a suspended globe of elements at each compass point. A crossed-out note says there is a city fire airwise of Lake Azure, halfway between the lake and Aegis-on-Sands. The model showed no sign of the prisons or laboratories, and the elements did not move. + +The teleportation circle activated. The party retrieved the crowbar and hid in the diorama room. One person came out, went to the dwarf-face door, then entered the door opposite them. He was human, wearing desert-style robes with an Arabic look and piercing blue eyes. He said he did not work for the black dragon. He had found several circles and described himself as a collector of magical trinkets. The party made a deal with him: he would get all the coin, gold, and silver; the party would get first pick of treasure; he would get the next pick; then the party would get three other picks; and the rest would be split evenly. This person was later identified as Pythus Aleyvarus, a blue dragon. + +In the lounge, a scepter seemed out of place. Dirk took it, setting off an alarm. All doors became arcane locked. The party went back through the dwarf-face door. A mouth appeared and told them the traps were active. In the first room, ten skittles stood at the end of a lane, with a power table and a darts board holding three darts in the 20. The poker table was magical, and the whole room radiated magic. The next door opened into an apparently empty room. The next door triggered a silence spell, and the room was full of rows and rows of crystal balls, later understood as memories. In the lounge, they found a hidden box, and the silence spell stopped. They returned to the crystal ball room. + +The crystal balls revealed many memories. One showed goliaths helping build the grand towers. The hall with the most scratched plinth held a memory filled with dread and the smell of acid: a house scarred by acid and a dwarf skeleton. Another grand towers hall showed four people around a teleportation circle: a human male, an elven female, a human female very similar to the elf, and someone with reef jewellery and a stag design on a dagger hilt, helping Envoi. A purple crystal rose from the circle. + +Another memory showed a tower before the acid-splashed house, with someone talking to Envoi and asking whether it was affecting anything. Joy set off the alarm. Ruby Eye took the dagger, splattered blood, and stopped the alarm, prompting the note "Just his blood?" A prior memory showed Envoi in thick white robes talking to the elven woman from the circle. Joy felt content. A dwarven lady was next to him, but was forlorn when looking at Joy and Envoi. Another memory showed a male dark elf next to Envoi being introduced in the observatory; someone told Envoi she did not trust him. The elf had magic, with a note "craft flesh." Envoi wore five rings. Another memory showed a hot spring, opposite the dwarf lady, at Brookville Springs, apparently an early date and falling in love. + +One memory showed Ruby Eye standing in a room in his building with a purple dome and copper pylons around blackness and a shadow. He asked the shadow what it thought. The shadow replied that it would not cooperate while trapped and threatened calamity. Another memory in a nice room with intricate vine patterns showed an elven mage asking about a change. The answer was nothing. Browny had retreated to the grand towers. The dwarf was worried about it. The party interpreted a secret: Browning was going to cover it all up, believing that if people knew how it worked, they would ruin it. + +The last memory showed Ruby Eye in a mirror wearing robes, with a book and chain or staff. He looked down beneath the mirror, where his hand on the floor opened stone to reveal a skull. He put two crystals in the chamber for protection. The party connected this to Pythus Aleyvarus, the blue dragon. They concluded Ruby Eye seemed to have planned the dome: five pylons and five more around the Grand Towers to make it work. Early memories showed him protecting towns from elementals. One memory showed a group fighting a six-armed rock creature; when it broke, they all made a pact. Another showed a male human pointing him to a crater with a massive purple rock, and Envoi saying he would build an observatory to track it. Brutor said it was what they needed. The notes mention warring kingdoms coming together to construct everything, including Huntwall, the goliath kingdom shown in the mini-dome, and [goblenswell]. When the dome was turned on, something flaming burst through, pouring through the barrier, and was attacked. + +The room opposite held a large engineering astrolabe showing the planet, which appeared as a dish, and the moons in real-time orbit. At 15:00 the display showed the current date and time: 31st December 1011. + +The party explored further. In the room next to the orbs, they used protection from elements before opening the door. Boulder elementals were inside and tried to get out. The notes question whether they were slaves made to dig; the party left them there. Down the corridor, a room opposite the calendar room was unlocked, untrapped, and empty, mirroring the calendar room. Opposite the boulder room, a smaller room was empty except for a picture of a moon with holes that looked like large gem sockets. Opposite the orbs, opening the door felt strange. Inside were glass cabinets, pedestals, shelves, nick-nacks, brass plaques, and glass domes. + +The museum-like room contained many marked objects. A bottle marked with an M and carved with flowing water was labelled "Containment token from Lord Hydrannis"; two stones at the top were glowing. A wooden sconce held a spear with flames coming from the bottom, labelled "Spear of Ciara," the fire god; it was a +1 magic weapon and bound to magic missile [uncertain phrasing: "+1 magic bounds (magic missile)"]. A wooden shield was noted as granting +1 to saves or being disabled once per day [uncertain]. A great sword with a stone and bone hilt and darkened steel blade was a gift from the kings of the goliaths, labelled, "To the spell ones on the crafting of your big building." A cookbook holder held a very delicate book labelled "book recovered from grand towers upon discovery." A dwarf mannequin wore a green silk dress with gold trim and tiny emeralds along the trim, labelled "Worn by Princess Seline to the Grand Ball." A cushion held a small red garnet with no plaque, apparently the size of the moon holes. A coin press made grand towers pennies and was labelled "press used for souvenir pennies." + +Other displays included a jar with an eyeball in fluid labelled "My Eye"; the eye could scry once per week [scyris eye]. A sealed book made of Tan leather, unsettling in appearance, had a platinum lock and human teeth around the edge; it was labelled "Noctus Cairinium Grimoire" and the lock looked like an adult human [unclear side note: blue, eldritch]. A wheat-sheaf plinth held a pillow with a marble cube radiating yellow light, labelled "British cube a gift from the golden field Halflings," with "next child Ssethon" noted. A wine-shaped bottle was labelled "first pressing of Sigerne - midh - iel" and "Maidens dew drink." A ring like a bug hunter ring was a ring of protection +1 and was labelled "Failed attempt to recreate my stolen ring." A comb made of dragon bone and jade, carved with a forest, was labelled "gift from the elven princesses to my wife she never got on with it"; the note adds toothless toothbrush and deja vu. A silver scepter with fine golden filigree and a white Seaward gem was labelled "staff gifted by the merfolk of the great sea." + +The gem-writing riddle said, "time existed before me but history can only begin after my creation," pointing to the calendar room or library. The celestial book suggested the tower was the centre of the world, though the party did not know where it came from. Geldrin read it and had a vision of six primeval elements looking down on the world. + +Geldrin's alarm went off. Four burly black dragonborn figures appeared at the end of the corridor. They heard the alarm and said in Draconic, "The alarm's going off somewhere in here." They wanted the party to leave and claimed the place in the name of their master. Their shields bore mosquitos. The party created a shield wall and yanked the crowbar out. They fought them, with notes recording 3 1/2 swords, four mosquito shields, 70 gp, four tower pennies, and an obsidian bird named Errol. Errol's lost message revealed that the gnome, Rawi/Rewi, had given the party's location to the black dragon [uncertain]. + +The party continued solving gem riddles. A red gem under the celestial book's plinth bore the line, "The floor of my ship is decorated in equal parts with riches, tools, weapons & love"; this may have pointed to games [unclear/crossed out]. In the kitchen, whose walls and ceiling were blackened and whose oven was empty, a jar contained a gem with the riddle, "The rich want it, the poor have it, both will perish if they eat it," answered as nothing. A magically sealed barrel with a cold-beer rune contained a jar with a hand in it: Ruby Eye's hand, with the blood that stopped the alarm. Another room was warded and locked. The previously empty room was now full of books about controlling earth elementals, Tan gems for spells, warding, and constructing crystals for magic. A gem inside a book had the riddle, "Although I'm not royalty, I'm sometimes a king or a queen, and although I never marry I'm only sometimes single," answered as bed. + +The party used unseen servant in the elemental room. A gem in the elemental room had the riddle, "in my first part stir creativity & in my full form I store the results," answered as museum. A gem in the orb room behind an orb said, "You have me today, tomorrow you'll have more, as time passes I become harder to store, I don't take up space and I'm all in one place, I can bring a tear to your eye or a smile to your face," answered as memories. One memory said, "if you got here you got my message, only clue is based on the layout of my rooms. When you get inside you'll know what to do." A gem in the calendar room had the riddle, "I ignore the start of this recipe just scramble, hidden," with kitchen as the answer. In the bedroom, which had a woman's touch with tapestries, rugs, wardrobes, drawers, a full-length mirror, chair, and fireplace, a compartment under the mirror held a skull with two gemstones. A rolled-up paper sat in an eye socket behind a big gem. The note says, "if you feel I've lived a good life this is the Denouement (final part, finishing piece)." Another gem in the other eye bore the riddle, "They are never together, yet always follow one another, one falls but never breaks and the other breaks but never falls," answered as calendar. + +When the gems were placed in the slots, a room opened. Inside was a purple sphere that did not let light through. The party wondered if it contained a void creature that had not been used because it might have been too weak. It seemed to be a self-contained barrier, and the void creature wanted to be let out. It referred to "the diviner," the one who stole his brother, the twin the party had killed. The nearby door had both a mechanical trap, which activated something in the room, and a magical trap, which teleported someone to the room. + +The treasure was divided according to the agreement. Pythus took the creepy book, the Celestial book. Dirk took the sword and the scepter of the merfolk. The note-writer took the coin press and cube. Invar took the ring of protection and potion bottle. Geldrin took the spear and eye. Pythus gave Geldrin a scroll of teleportation and left. Geldrin took the eye and scried on Pythus, seeing a sandstone cavern and a pile of gold with a blue dragon on top reading the skin book, whose pages were made of cured human flesh. The place seemed to be at the edge of the desert near "Salvation." + +The party returned to the void room. The void creature said it would tell them what was in its room in exchange for freedom, and that what was in the room would help release it. It said Ruby Eye wanted to live forever and went in with an elven woman and a dark male [uncertain: Envil]. The creature was only a fragment of the void, but if added to the others it could become more powerful, though only a tiny bit. Inside was a key that looked like pylons placed against a barrier: a copper circle that could be turned. The void talked as though the barrier was not active. The device seemed to be a pylon for its prison as well as [uncertain: ankhir]. + +The party used the ruby to open the door and then planned to destroy it rather than give it to Ruby Eye, because he wanted to use it to become immortal as a demi-lich. Through the door next to the void were four plinths. By the door were four copper pylons that looked as though they would go over the void's force field. Two metal copper circles, one steering-wheel sized and one over a meter wide, were stored upright with runes around them. A dragon skull, about dog-sized and identified as Alsafaur, lay on another plinth. A book with the same lock as the creepy skin book was made of leather and had an unpickable lock. The room may have stored one of Envoi's rings under the skull. The skull was one of the void creature's kind, a veridian dragonborn, dead for about one thousand years. Envoi's ring was described as "a sacrifice made to live eternal, father & daughter." The book had writing around the edge in an old dead language and was called "The memoirs & learnings of Aldaine Hartwell." It needed a powerful identity spell to learn the command word to open the lock and book. + +Mosquitos, woodlice, and moths appeared, and a rain storm began. The void said it would help as long as it was not detained. A lightning strike was seen although the party was underground. They tried to let the void out. Pushing pylons against its dome caused opposite pylons to switch it off very slightly. A ring by the dome turned and attached to the pylon; one full turn released the dome in that quadrant. The void released a circle of obsidian that could be used to contact it. The party took its ring, book, and small ring, removed the gems from the moon-face lock, headed out, and closed the initial door behind them at 18:30. + +Outside, the sky was massively overcast with the storm. The air was thick with insects: moths, mosquitos, ants, and others. A circle of storm about one and a half miles wide moved unnaturally. At the barrier, a push looked like eight massive claws piercing through. A black dragon seemed to be trying to come through the barrier. He wanted the remains of his son, which seemed to be the skull in the sealed chamber. The party went back and got it. The dragon was missing part of his face. The party thought Ruby Eye did it, though the dragon may have started it by killing Ruby Eye's son. When the skull was placed near the barrier, crystals on the dragon's scales parted the barrier a little, though it still hurt him. He took the skull and said they were even for killing his men. He flew off, and the thunderstorm went with him. + +The party headed back to Newhaven with the cart. They went to a pub whose sign or picture showed five hands together making a star, identified as the Pact. A silver dragonborn with golden-rim spectacles was behind the bar. Halfling wait staff and a Tabaxi barmaid were present. The name "Gelandril Thurtall" was recorded. He had been there ten years, and it was said the five wizards used to meet there. Dragonborn seen locally included Silver Thurtall, sporadic copper, white, and black. The party then slept. + +# People, Factions, and Places Mentioned + +- Rewi Lovelace / Rawi [uncertain]: gnome at Seaward town hall; had obsidian raven Errol and may have sent the party's location to the black dragon. +- Errol: obsidian raven communication device, "called Errol (But not really)." +- Justicar: still a problem; the raven suggested cooperating with her, but the party resisted sharing their location. +- Geldrin: copied teleportation circle runes, set alarms, read the celestial book, received a vision, took the spear and eye, received a teleportation scroll, and scried on Pythus. +- Dirk: found covered footprints, used a crowbar on the door chains, took the out-of-place scepter, and later took the sword and merfolk scepter. +- Invar: received the ring of protection and potion bottle. +- Pythus Aleyvarus: blue dragon in human desert robes; claimed not to work for the black dragon; collector of magical trinkets; took the creepy book and Celestial book; later scried in a sandstone cavern near Salvation. +- Brutor Ruby Eye: abjuration wizard of Tor, creator or planner of the dome, demi-lich figure seeking immortality, source of memories and blood-hand alarm mechanism. +- Tor: rock-associated divine or elemental figure represented by a jagged rock-man statue; "Tor Protects." +- Envoi / Enoi / Enoin [uncertain spelling]: central wizard figure in memories, wore five rings, planned an observatory for the purple rock, associated with Joy and the containment system. +- Joy: present in memories, set off the alarm, and seemed emotionally connected to Envoi. +- Browny / Browning [uncertain]: believed likely to cover up how the system worked. +- Lord Hydrannis: associated with a containment token. +- Ciara: fire god linked to the Spear of Ciara. +- Princess Seline: wore the green silk dress to the Grand Ball. +- Golden field Halflings: gifted the glowing cube. +- Ssethon: name noted beside the glowing cube display. +- Merfolk of the Great Sea: gifted the silver and gold-filigrreed scepter. +- Black dragonborn with mosquito shields: claimed the site for their master and fought the party. +- Black dragon / Infestus [likely but not explicitly named here]: master associated with the black dragonborn and with the storm at the barrier. +- Alsafaur: dog-sized dragon skull, one of the void creature's kind, a veridian dragonborn dead for about a thousand years. +- Aldaine Hartwell: author of "The memoirs & learnings of Aldaine Hartwell." +- Gelandril Thurtall: recorded at the Newhaven pub; connected to Silver Thurtall. +- Silver Thurtall: local silver dragonborn. +- Newhaven: anomalous fresh-water town near salted land, where the party returned at night. +- Seaward: town from which the raven flew and where Rewi was based. +- Stonebrook: town three miles earthfire wise. +- Lake Azure: reference point for a crossed-out city note. +- Aegis-on-Sands: reference point for the crossed-out city note. +- Grand Towers: built with goliath help; focus of memories and artifacts. +- Huntwall: goliath kingdom shown in the mini-dome. +- [goblenswell]: one of the warring kingdoms [uncertain spelling]. +- Brookville Springs: location of an early romantic memory. +- Salvation: desert-edge location near where Pythus was scried. +- The Pact: symbol of five hands making a star at the Newhaven pub; also tied to the five wizards. + +# Items, Rewards, and Resources + +- Obsidian raven Errol: communication device; one recovered from the black dragonborn fight. +- Password "Spinal": opened the laboratory doors. +- Compass: Geldrin used it to find the weak signal leading to the hidden site. +- Teleportation circle rune number: copied by Geldrin. +- Crowbar: used to hold the dwarf-face door chains open. +- Ruby in dwarf face: released chains to open the door. +- Scale model of the Penta City states: showed shield energy and elements at compass points, but not prisons or labs. +- Crystal balls: memory storage or viewing devices. +- Astrolabe: real-time model of the dish-like planet and moons; displayed 31st December 1011. +- Protection from elements spell: used before opening the boulder elemental room. +- Museum artifacts: Containment token from Lord Hydrannis; Spear of Ciara; wooden shield with +1 save/once-per-day disable [uncertain]; goliath great sword; delicate grand towers book; Princess Seline's dress; garnet; grand towers penny press; scrying eye; Noctus Cairinium Grimoire; glowing marble cube; first pressing of [Sigerne - midh - iel] / Maidens dew drink; ring of protection +1; dragon bone and jade comb; merfolk scepter. +- 70 gp, four tower pennies, four mosquito shields, and an obsidian bird: recovered after fighting black dragonborn. +- Ruby Eye's hand in a jar: contained blood that stopped the alarm. +- Books on earth elemental control, Tan gems for spells, warding, and crystal construction: appeared in the formerly empty room. +- Riddle gems: recovered from the celestial book plinth, kitchen, books, elemental room, orb room, calendar room, bedroom skull, and moon-face lock. +- Scroll of teleportation: given by Pythus to Geldrin. +- Void contact circle of obsidian: given or released by the void creature to contact it. +- Envoi's ring: found under the skull, tied to "a sacrifice made to live eternal, father & daughter." +- Leather book with unpickable lock: "The memoirs & learnings of Aldaine Hartwell," requiring a powerful identity spell to learn the command word. +- Copper pylons and copper rings: used to manipulate the void creature's force field or prison. +- Dragon skull of Alsafaur: given to the black dragon at the barrier. + +# Clues, Mysteries, and Open Threads + +- Newhaven has anomalous good water while surrounding wells and land are salted. +- Rewi/Rawi may have betrayed the party's location to the black dragon through Errol. +- Five or six searchers camped near the barrier recently; acid corrosion, blood, and swept-over traces suggest black dragon involvement. +- The hidden laboratory uses Brutor's password and contains records of pylons, towers, shield energy, and containment technology. +- The model did not show prisons or labs, raising questions about deliberate omission or later construction. +- Pythus claimed not to work for the black dragon but took dangerous books, including a human-flesh grimoire, and was later seen reading it near Salvation. +- The memories suggest the barrier, Grand Towers, observatory, pact, purple rock, and elemental containment were planned together. +- Envoi's five rings and the ring found under Alsafaur's skull are important, but their full function is unresolved. +- Browning may have deliberately erased or hidden knowledge of how the barrier works. +- Ruby Eye may have used blood, sacrifice, a preserved hand, or family links in his alarm and immortality plans. +- The six primeval elements in Geldrin's vision may explain the deeper cosmology behind the barrier. +- The void creature may be only a fragment of void, distinct from the larger void prison, and is now free or at least contactable. +- The void says it will help if not detained, but its reliability and intentions remain uncertain. +- The black dragon wanted his son's skull and considered the party even after receiving it, but his wider goals remain dangerous. +- Crystals on the black dragon's scales can part the barrier slightly, though it hurts him. +- The unnatural storm and insects followed the void or black dragon events and dispersed when the black dragon left. +- The five-hand Pact symbol and claim that five wizards met at the Newhaven pub link the pub to the original barrier creators. diff --git a/data/4-days-cleaned/day-17.md b/data/4-days-cleaned/day-17.md new file mode 100644 index 0000000..cc08388 --- /dev/null +++ b/data/4-days-cleaned/day-17.md @@ -0,0 +1,107 @@ +--- +day: day-17 +date: 1st Tan +source_pages: + - 53 + - 54 + - 55 + - 56 + - 57 +complete: true +--- + +# Narrative + +Day 17 began on Thursday, 1st Tan, with seventeen days until Tri-moon. A goblin named Scum was looking for the party and had a message. The party found Scum as they left the pub. Apparently there was now a warrant for their arrest, accusing them of treason and conspiring against the Towers to break the barrier. + +Scum had instructions or a message telling the Clementarium to meet the party with the Ruby Eye skull one mile outside Seaward. The party sent a message by crow to the Grand Towers saying they were going to Everchard, intending to put pursuers off the scent. The notes listed dragons seen or known: Blue, Pythas; Black, Infestus; Silver, Thurtall; White, the ancient [Anaraleth]; and Red, [soob?]. A crossed-out "Veridian" was also recorded. + +At 13:00 the party messaged the Basilisk and arrived at the possible meeting point. They waited nearly three hours. A cart came off the road with an unfamiliar human aboard. The party found it suspicious. One box contained Grand Towers pennies. The council had asked the driver to transport [tubes] to Fairshaws. The cart was associated with Garick Black and appeared to have been sent by the gnome. + +The manifest listed one currency shipment of Towers pennies; one provisions shipment of ash jerky [uncertain]; two armaments shipments, including spearheads from Alvoo and trident heads tipped in copper; one waterproof paperings shipment, reams of enchanted waterproof paper for salt water only; one keg; one tools shipment of heavy-duty tools, possibly for shipbuilding; and one miscellaneous goods shipment. The shipment should have gone out in two days. + +Invar knocked the driver out when he saw what looked like the Elementharium riding. The gnome seemed to be trying to clear the decks. The Elementharium did not know about the spearheads and other goods. He wanted to set up a meeting with Lady Thurtall because they had a council to discuss security matters within the dome. He gave the party the Ruby Eye skull. + +The jerky bag contained a hemp bag with a pungent, sickly sweet smell. It reminded the note-writer of [winter] Rose spice, but seemed narcotic. Through Ruby Eye or the skull, the party learned that Ruby Eye had infused a son or "spawn of evil" and needed a powerful sacrifice for a friend, [Anvil]. The salt dragon was leading something. They were worried that tampering with life may have weakened the force. Ruby Eye or the Elementharium said the barrier needed to be reinforced, because if it was not, it might weaken. Possible fixes included refilling the voids, or safely disabling the barrier with the failsafe button in the Grand Towers. The weird skin book was identified as the grimoire "Noch's Caardium," containing forbidden magic. + +To stop the Tri-moon shard, the party would need to create a device to repel it, but the barrier would have to go down to do so. They discussed the relationship with the merfolk, who were different people from the fish men invited into the barrier and who were great helpers in setting up barriers. They suspected Browning had something to do with the Goliath settlement disappearing from history, though there must be traces. The green dragon seemed to be residing in that area. The white dragon helped build the dome. The reds were [descendants, murdered], and there were no blues. Elementals had liked to attack, which was why the barrier was put up. The Tower was the perfect place but needed more. A backup plan for the void elemental might be stashed in his safe; if it was not there, the party needed to find another. + +A giant gargoyle approached, rolled out a carpet with a teleport rune on it, and told the party to get on the rune. Someone shouted, "Thurtall!!" The party appeared in a lush castle room. Thurtall sat at the head of the table and seemed to be Lady Thurtall. She loudly approached the party. Standing beside her was a [shunter/shutter] lady, who was about one foot tall when the barrier went up. Four chairs stood by the rug. Basilisk appeared in the sky-trip or teleport event with Lady Catherine Cole, Earl of Stronghedge, for whom Basilisk was bodyguard. A portly tiefling male appeared in a purple flush and took another seat; he was called The Guilt. A Valkyrie woman, Earl of Ironcroft firewise, walked in flanked by two dwarves. + +Lady Catherine Cole vouched for the note-writer, and the Valkyrie vouched for Invar. Thurtall spoke to Ruby Eye. He had been a friend of her mother's, and she had not aged much in about a thousand years. A Tabaxi male, looking a little older, strode in with a hookah pipe floating beside him. He sprawled on the ground and was identified as the Earl of Salvation. The gathering described itself as a small group of like-minded people trying to protect the barrier and maintain its stability. News had reached them about the fragment. + +The council had concerns about whether the party's friend had awakened the ancient one, and they reported several issues near Runewatch. They said the green dragon was responsible for the destruction of Dirk's homeland. Ruby Eye blamed [Dith's] kind for helping the dragons [uncertain due to crossed-out text]. It was said the veridian dragon was teaming up with the red dragon. Keely Caardenalb's research might be useful; she lives in the desert. + +The council suggested three possible priorities: head to the merfolk, get the crystal from the water, or speak to the ancient one. The party passed off the twin mum. They also discussed elven creation theology or history. Elves were first on the earth. Everywhere there was light, and with light there was dark. From this came life, and a couple sprang forth; one created a mate, and so did he, and they then became the gods. Light and dark fought, and because of this the physical world was made. There was much fighting, then a truce in which each side agreed not to enter the other's territory and created the twelve gods. They decided to meet on the combination plane, but it was difficult, so they created six Excellences. The Excellences fought, the gods needed armies, and fighting continued, but those armies gained free will and thrived in certain places. The multiple-armed beings are the Excellences. Five is a holy number because it is seen as removing the darkness. + +The major crisis list remained: leaking elemental prisons, Garadwal, the void on the loose, and the shield crystal in the sea. Basilisk was arranging for someone to meet the party in Fairshaws or Freeport; that contact would carry a Winter Rose. The party gave Basilisk the coin press and told him the coins in the cart were a crate of them. + +At 17:30 the party returned to their cart and headed down the main road toward Fairshaws. By 22:00 they began hearing birds and animals again and found a place to camp for the night. Around 02:00 or 03:00, a dog going around with the twins approached the camp. Five attackers attacked and died. The notes also show 11:00, likely pointing into the following day. + +# People, Factions, and Places Mentioned + +- Scum: goblin messenger looking for the party. +- Clementarium / Elementharium [uncertain]: asked to meet the party with the Ruby Eye skull one mile outside Seaward; later appeared riding and gave the skull. +- Ruby Eye / Brutor Ruby Eye: skull used for information; friend of Lady Thurtall's mother; linked to forbidden magic, sacrifices, and barrier repair. +- Grand Towers: party sent a misleading crow message there; possible location of a barrier failsafe button. +- Towers: authority accusing the party of treason and conspiring to break the barrier. +- Pythas / Pythus: blue dragon listed among known dragons. +- Infestus: black dragon listed among known dragons. +- Thurtall: silver dragon and/or Lady Thurtall's house; Lady Thurtall hosted the council. +- The ancient [Anaraleth]: white dragon. +- [soob?]: red dragon [uncertain]. +- Garick Black: name associated with the suspicious cart. +- Invar: knocked out the driver and was vouched for by the Valkyrie. +- Lady Thurtall: hosted the security council; very old, barely aged in a thousand years. +- [shunter/shutter] lady: stood beside Lady Thurtall; about one foot tall when the barrier went up [uncertain]. +- Basilisk: bodyguard to Lady Catherine Cole, arranged future contact in Fairshaws or Freeport, received the coin press. +- Lady Catherine Cole: Earl of Stronghedge; vouched for the note-writer. +- The Guilt: portly tiefling male who appeared in a purple flush. +- Valkyrie woman: Earl of Ironcroft firewise; vouched for Invar and was flanked by two dwarves. +- Earl of Salvation: older Tabaxi male with a floating hookah pipe. +- Dirk: his homeland was destroyed by the green dragon. +- [Dith] / [Dith's] kind: blamed by Ruby Eye for helping dragons [uncertain due to crossed-out text]. +- Keely Caardenalb: desert researcher whose work may be useful. +- Browning: suspected of erasing the Goliath settlement from history. +- Merfolk: helped set up barriers and are different from the fish men invited into the barrier. +- Goliaths: their settlement may have been erased from history. +- Fairshaws: destination for the suspicious shipment and the party's travel. +- Freeport: possible meeting place for a Basilisk-arranged contact carrying Winter Rose. +- Seaward: meeting area one mile outside town. +- Everchard: false destination sent to the Grand Towers. +- Stronghedge, Ironcroft, Salvation: represented by council members. +- Runewatch: area with several reported issues. + +# Items, Rewards, and Resources + +- Warrant for arrest: charges of treason and conspiracy against the Towers to break the barrier. +- Crow message: sent to Grand Towers falsely claiming the party was going to Everchard. +- Ruby Eye skull: transferred to the party by the Elementharium/Clementarium. +- Suspicious cart manifest: Towers pennies, ash jerky [uncertain], spearheads from Alvoo, copper-tipped trident heads, enchanted waterproof paper for salt water only, one keg, heavy-duty tools possibly for shipbuilding, and miscellaneous goods. +- Hemp bag in jerky: pungent, sickly sweet narcotic smelling like [winter] Rose spice. +- Grimoire "Noch's Caardium": weird skin book containing forbidden magic. +- Device to repel the Tri-moon shard: needed to stop the shard, but would require the barrier to go down. +- Barrier failsafe button: said to be in the Grand Towers. +- Backup plan for void elemental: may be in Ruby Eye's safe; otherwise another solution is needed. +- Teleport carpet: rolled out by a giant gargoyle, with a teleport rune. +- Coin press: given to Basilisk; party told him the cart coins were a crate of them. +- Winter Rose: identifying token for a future contact in Fairshaws or Freeport. + +# Clues, Mysteries, and Open Threads + +- The party is now wanted for treason, accused of conspiring to break the barrier. +- The gnome may have sent a suspicious cart carrying currency, weapons components, salt-water paper, tools, and narcotic-like spice. +- The purpose of the spearheads, copper-tipped trident heads, waterproof salt-water paper, keg, tools, and Towers pennies remains unclear. +- The narcotic in the jerky bag may be Winter Rose spice or related to it. +- Ruby Eye's sacrifice for [Anvil] and the creation or infusion of a "spawn of evil" remain unresolved. +- Barrier repair options include reinforcing it, refilling the voids, or safely disabling it with the Grand Towers failsafe. +- Stopping the Tri-moon shard may require dropping the barrier to use a repelling device. +- Browning may have erased Goliath history, and the green dragon may now be in that area. +- The white dragon helped build the dome, while the status of red and blue dragons is historically complicated. +- The ancient one may have been awakened by someone connected to the party. +- The veridian dragon may be teaming up with the red dragon. +- Keely Caardenalb's desert research may be critical. +- The party must choose between heading to the merfolk, getting the water crystal, or speaking to the ancient one. +- Leaking elemental prisons, Garadwal, the free void fragment, and the sea shield crystal remain immediate threats. +- A Fairshaws or Freeport contact carrying Winter Rose is expected. +- The dog traveling with the twins and the five attackers at camp are unexplained. diff --git a/data/4-days-cleaned/day-18.md b/data/4-days-cleaned/day-18.md new file mode 100644 index 0000000..e90f375 --- /dev/null +++ b/data/4-days-cleaned/day-18.md @@ -0,0 +1,26 @@ +--- +day: day-18 +date: 2nd Tan +source_pages: + - 57 +complete: true +--- + +# Narrative + +Day 18 began on Friday, 2nd Tan, with sixteen days until Tri-moon. The party was back on the road after the previous night's camp. The day was uneventful as they continued heading toward Fairshaws. + +They made camp again at the end of the day. Nothing happened. + +# People, Factions, and Places Mentioned + +- Fairshaws: the party's destination on the road. + +# Items, Rewards, and Resources + +- Camp: the party made camp again while traveling. + +# Clues, Mysteries, and Open Threads + +- Tri-moon is sixteen days away. +- No new events occurred during the day's travel, and no new clues were recorded. diff --git a/data/4-days-cleaned/day-19.md b/data/4-days-cleaned/day-19.md new file mode 100644 index 0000000..158e85b --- /dev/null +++ b/data/4-days-cleaned/day-19.md @@ -0,0 +1,46 @@ +--- +day: day-19 +date: 3rd Tan +source_pages: + - 58 + - 59 + - 60 + - 61 +complete: true +--- + +# Narrative + +Day 19 was Saturday, 3rd Tan, with 15 days until the Tri-moon. The party approached Fairshaws and saw gold sands and white plaster buildings. The settlement looked like a Cornish town, and the temperature was oddly warm. They went through town to the harbour to find a boat. + +At the harbour they took passage on the Pride of the Penta Cities, a galleon. The party were assigned Cabin 17. The ship's figurehead was a wooden shield crystal. While at sea, another ship appeared on the horizon. The captain seemed panicked and ordered an attempt to outrun it, though the threat was not yet identified. + +The hostess lady began chanting and called forth great winds and a storm. A tiny flame called Keely broke out from the buffet table heat lamps, set a table alight, and attacked the party. Merfolk on board said that had never happened before. They also warned that pirates had been attacking people more recently, and mentioned creatures able to petrify others by looking at them. The notes record a possible arrangement of 150 gp if the party needed to fight and 5 gp if they did not. + +Several passengers or figures were noted aboard the ship. A male half-elf in traveller's leathers was recorded with the phrase "bit of my kind" and possibly "[permitted]," along with an icon and 10 gp. An elderly dwarf woman wore a silver chain and became worried when she relieved eye contact with Geldrin; she was described as beautiful. A silver dragonborn bard was also described as beautiful. + +The pursuing ship drew closer. It had black sails with snake heads and seemed to be propelled by water rather than wind. Its pirate captain was Kairbidius, wearing a big-brimmed hat and worn, mismatched clothes. He called on Salinus and summoned salt elementals. The party killed Kairbidius and his crew. In reward, they received free passage on any of the ship operators' vessels, 400 gp, a scimitar +1 that can be attuned for water breathing, and a Handblow Pistol of Never Loading +1, a noisy d8 weapon. + +After the fight, the party retreated to their cabin with a cask of rum. They later reached Turtle Point, where the docks and nearby areas looked as if they could be underwater at some point. They were told to be back for 9:00. Turtle Point was the only town on the isle, and turtle men appeared to be the locals. Directions were given to the Sailors Rest: third road left, third building. + +The party took a shrine tour. The shrine was to the Great Turtle, and the merfolk, called the accordsmouth, looked after the turtles. The locals believed they stood on the back of the Great Turtle. The turtles had a 200-year lifespan. Before the Barrier, the Great Turtle had come into this world while trying to escape his own realm. He had been trying to continue on his way, but picked the people up and was diverted into this world. He rooted his feet in the ground, and the locals believe he is still awake. The shrine was an elaborate fountain made from the same white stone as Seaward. A private shrine or shelter shrine was also mentioned, along with an unclear account that it had a multicore attack and then used his path as a combination of different animals. The water rises high during a Tri-moon and covers the area. + +The party told their guide or contact about the fight with Kairbidius. He thought he knew where Kairbidius parked the boat and wanted to show them. At about 19:30 he took them there. They found an old town in disrepair, but one dock was fairly well maintained and repaired. Three houses also looked decent. The first house, closest to the party, seemed lit, so they crept up to look inside. + +Inside an otherwise empty tavern were four fish men attaching copper spear-heads onto sticks, with finished weapons stacked against the wall. One fish man told the others that the Boss, possibly the King, would be angry if they did not get the shipment on time, and ordered someone to get the boss. Both other huts had lights, with the furthest one seeming more secured. One fish man used a conch to call out and say that "Kingly comes now." The party waited. The notes mark 8:30, then 9:30, when the water came back. + +The fish people discussed whether there was any sight of someone. A reply indicated failure: "boat" captured, he was thought dead, and the boat had been captured. They brought out the weapons and wondered whether they would be enough. Around 10:00, 11 fish people were carrying things, with 15 overall. A chariot was pulled by barnacled sea cows. Something approached with a hull, and a six-armed fish person on it skewered another fish person and ate it. + +The six-armed creature stopped, smelled that it was being watched, and told the others to search for the party. It saw Geldrin and threw a trident at him. The creature liked being complimented, but also threatened to destroy everything. It said it needed all of something or the plan would not work, and that he would be cross, and "he will be worse." The party thought the six-armed creature would attack their ship for the weapons. They returned to Turtle Point at about 12:00. + +# People, Factions, and Places Mentioned + +Fairshaws, the harbour, the Pride of the Penta Cities, Cabin 17, Turtle Point, the Sailors Rest, Seaward, the old town, the Great Turtle, the Barrier, the hostess lady, Keely, the captain, Kairbidius, Salinus, merfolk, the accordsmouth, turtle men, pirates, salt elementals, fish men, the Boss or King, Kingly, Geldrin, the male half-elf passenger, the elderly dwarf woman, the silver dragonborn bard, barnacled sea cows, and the six-armed fish person or creature were all mentioned. + +# Items, Rewards, and Resources + +The party received free passage on any of the relevant ships, 400 gp, a scimitar +1 that can be attuned for water breathing, and a Handblow Pistol of Never Loading +1, recorded as a noisy d8 weapon. Other noted resources and objects included the Pride of the Penta Cities' wooden shield crystal figurehead, a cask of rum, the Great Turtle shrine fountain made from white Seaward stone, copper spear-heads being attached to sticks, finished copper weapons, a conch used for communication, a chariot pulled by barnacled sea cows, and the possible payment notes of 150 gp if the party had to fight and 5 gp if they did not. + +# Clues, Mysteries, and Open Threads + +The pursuing pirate ship was propelled by water rather than wind and had black sails with snake heads. Merfolk said the flame attack from the buffet heat lamps had never happened before. Pirates had recently been attacking more people, and creatures capable of petrifying by sight were mentioned. Turtle Point's docks can apparently be covered by water, especially around the Tri-moon. The Great Turtle's origin from another realm and continued wakefulness remain important lore. The fish men were preparing copper weapons for a shipment, feared the Boss or King, and used a conch to summon Kingly. The six-armed creature threatened to destroy everything, wanted all of something for a plan, implied someone worse would be angry, and may have intended to attack the party's ship for the weapons. diff --git a/data/4-days-cleaned/day-20.md b/data/4-days-cleaned/day-20.md new file mode 100644 index 0000000..dd6ddad --- /dev/null +++ b/data/4-days-cleaned/day-20.md @@ -0,0 +1,58 @@ +--- +day: day-20 +date: 4th Tan +source_pages: + - 61 + - 62 + - 63 + - 64 + - 65 + - 66 +complete: true +--- + +# Narrative + +Day 20 was Sunday, 4th Tan, with 14 days until the Tri-moon. The party planned to go to Freeport instead of Baytrail Accord. They had identified a shipment from the Earl of Fairshaws to Malcolm Jeffries, using the same kind of boxes they had seen outside Seaward. They went to the barracks to tell the Pact; the picture outside matched the pub called The Pact. + +The Pact leader in Turtle Point was Shandra. She explained that the Pact ensures the Pact's rules are followed and protects people who need it in exchange for protecting the Barrier. The party told her what had happened. The 10-foot, six-armed creature was identified as "An Excellence." The fish people were Sahuagin, written in the notes as "Saguine." Shandra's information came from Kiendra, leader of Dunhold Cache, who had been killed, or was believed killed. A Pact Scepter was discussed: one had been given to each of the wizards, and Shandra asked the party to keep it because it signified their side of the Pact. + +Shandra recommended speaking to the merfolk of Lake Azure for Dirk's city. For the shipment, she advised getting a smell unit. The Sahuagin had one of the scepter conches, of which only eight exist; this one was Kiendra's. The party asked Basilisk whether he could get help to Shandra. One of the merfolk would come with the party. The Pact leader in Freeport was named Tiana. + +The party stayed in the barracks overnight. Dirk had a strange dream. In it, a goliath sat on a granite throne looking concerned while two females tended Rubyeye. The dream included the phrase "fought well," then changed to a tavern scene with dancing around a fire and a granite city in the distance. There was a face in the fire, then possibly "Then? Dog?" before it disappeared. + +The party headed toward the ship. A merfolk named Guardfree said his mistress had been working on misdirection. Food was brought to the party's cabin, and the journey was luckily uneventful. Freeport appeared as an oddly busy, bustling city and a mishmash of styles. Kairibidius's ship was docked there. A quartermaster loaded the shipment onto the party's cart to take with them. + +The Baroness, initially written then crossed out as [Kavaliliere], was the head of Freeport. Freeport had no taxes for trade. A local newspaper appeared to be propaganda. Its stories included "Ancient takes flight," reporting that an ancient had left his home for the first time in 1,000 years and was moving to Snow Sorrow; fighting continuing in the mountains near Highden, where the good side was taking a beating; and other slanted reports. Around 20:00 the party went shopping, including at Esmerelda's magic item shop. + +The party went to see Tiana at the Siren & Garter. She expected a group of 40 to help fight the Excellence. The Excellence were described as mutual, able to be slain, and as beings that delight in bossing mortals around. Tiana said the Baroness seemed good but let people do what they pleased. The Baroness could be random about which groups to dispose of. About a week earlier, she had disposed of a group involving bound elementals and gems, including arc and water. Another group had been selling archaeological items from the desert, involving a Tabaxi caravan, and she had seized the goods. + +The party found the basilisks in a private room. They learned that Highden was being attacked by a fire Excellence, which had something against the elves. Someone had investigated the crater and found an old lab but had been unable to get in. Friends on the council were meeting with the ancient around Snow-sorrow. Azure-side had reported Perodetta and spawn amassing in the area. Arabella had been kidnapped again in a targeted attack, with faces removed. No forces were available, but Zinquiss would meet the party at the harbour with one other. The Baroness was considered a neutral party, fairly reclusive, and following her predecessors' ideas. There was speculation that she might be something similar to Lady Hathwall but not a dragon; the previous Baroness had been human. + +The party told the basilisks about the copper weapons and the paper trail showing Malcolm Jethnes and the Earl of Fairport's involvement in the shipment. They received a dagger from the basilisks: a Lesser Rift Blade, a dagger +1 with three charges. One charge can cast dimension door. Three charges can cast teleport, opening a portal for 5 seconds; the user thinks of the place to go, and the portal is big enough for a person. The blade recharges one charge per day. + +The notes also recorded Heartwall as the second most common last name, after Browning. There had always been a Heartwall in charge of Heartwall. There were no records of relatives. The Heartwalls were a very reclusive family who did not appear in public until the coronation ceremony and were only seen together to hand over the crown, possibly using disguise self. + +At 19:00 the party went back to see Taina again and got another guard, Guardfore. They noted possible locations or names: Pirates Pearls Plundered, Ichy as owner, Ref gut Refuge, and Cheesy Thimble Rugger. At the cart, Dirk noticed scratches on the padlock. The scratches looked uniform and patterned in a way he recognized but did not know why. They were upside-down thieves' cant reading "Drunken Duck," scratched with claws like Dirk's. The party changed the markings to Everchard, booked the cart into parking, and Guardfree kept watch. The cart was parked in Bugbear next to a lizardman. + +The party headed to the temple to give them the spear. A female half-orc came to speak with them, took the spear, and went to check it with others. The party discussed whether to donate it in exchange for help. They requested an audience with the higher power to discuss it, but the relevant figure would not be there for three hours. The party went to get lodgings at Pirates Pearls Plundered. A crab man named Ichy was in charge. + +The Baroness then granted the party an audience immediately. Her room was old and contained paintings of her predecessors, all wearing the same necklace, like a mayoral necklace, and lots of jewelry. She said the desert relics might have belonged to an old friend from long ago, Velenth Cardonald, who had worked for her before coming here willingly. The notes mention a vote by 12 heads who vote on who has [unclear] of ideals. Other things had been taken off the sheet because she did not approve of the Cult. + +The Baroness promised to loan some forces and gave information about a laboratory. She said there could be a diamond in the workshop, a gaping hole in the side of the building, Barrier emergency systems, and something else inside. She had been very young when she ran. A dragon was rumoured to roost in the ruins of Dirk's old city. The creature in her chamber logs was noted as possibly "Garaduck?" but then rejected with "no." She had the code to the circle and the safe, and said the code worked while the defences were up. She gave the party permission for the lab. Valenth wanted to transfer herself into an object. The Baroness seemed shaken, and a guard helped her out. + +At 22:00 the party returned to the temple of Cierra. The Huntsman had returned and came over to them. He was Huntmaster Thrune. Ruby Eye had spoken to this church often and was interested in runes. Huntmaster Thrune agreed to provide aid to kill the Excellence. Ruby Eye thought the party might want to get something before she tried to get it; the sentence is unfinished in the raw notes. Ruby Eye's best friend had wanted to craft herself into something and continue in that form. The spear was a gift from a Huntsman of Cierra, but it was actually an arrow. There were five of them, taken from Cierra's last battlefield. + +The party returned to Pirates Pearls Plundered. Guardfree said he would get his mistress to bring guest shells. The party tried to plan what they were doing next. + +# People, Factions, and Places Mentioned + +Freeport, Baytrail Accord, Seaward, Turtle Point, the barracks, The Pact, the Barrier, Lake Azure, Dunhold Cache, the Siren & Garter, Snow Sorrow or Snow-sorrow, Highden, Azure-side, Heartwall, Pirates Pearls Plundered, Bugbear, the Drunken Duck, Everchard, the temple of Cierra, Dirk's old city, Shandra, Tiana or Taina, Guardfree, Guardfore, Basilisk, the basilisks, Kiendra, Malcolm Jeffries or Malcolm Jethnes, the Earl of Fairshaws or Earl of Fairport, the Baroness [Kavaliliere], Esmerelda, Kairibidius, Zinquiss, Perodetta, Arabella, Lady Hathwall, Rubyeye or Ruby Eye, Velenth Cardonald, Huntmaster Thrune, Ichy, the crab man, Sahuagin, merfolk, a goliath on a granite throne, two unnamed females, a fire Excellence, an Excellence, a Tabaxi caravan, bound elementals, and the Cult were all mentioned. + +# Items, Rewards, and Resources + +Important items and resources included the shipment from the Earl to Malcolm Jeffries or Malcolm Jethnes, boxes like those seen outside Seaward, the Pact Scepter, scepter conches with only eight in existence, Kiendra's conch, a smell unit for the shipment, food brought to the cabin, the party's cart, the seized desert archaeological goods, bound elementals and arc and water gems, the Lesser Rift Blade dagger +1, the copper weapons, the marked padlock, the spear that was actually one of five arrows from Cierra's last battlefield, guest shells, possible forces loaned by the Baroness, and possible aid from Huntmaster Thrune. The Lesser Rift Blade has three charges, can spend one charge for dimension door, can spend three charges for teleport through a 5-second person-sized portal, and recharges one charge per day. + +# Clues, Mysteries, and Open Threads + +The Sahuagin had Kiendra's scepter conch, one of only eight, and Kiendra was believed killed or lost. The six-armed creature from Day 19 was identified as An Excellence. The shipment tied the Earl of Fairshaws or Fairport to Malcolm Jeffries or Malcolm Jethnes and to boxes like those outside Seaward. Dirk's dream connected Rubyeye, a granite throne, a granite city, fire imagery, and possibly a dog. Kairibidius's ship was docked in Freeport. The newspaper may be propaganda, and its reports point to the ancient moving to Snow Sorrow, Highden losing battles, and wider instability. Highden was under attack by a fire Excellence hostile to elves. An old lab was found in a crater but could not be entered. Perodetta and spawn were amassing near Azure-side. Arabella was kidnapped again in a targeted attack involving removed faces. The Baroness's identity, predecessors, necklace, connection to Lady Hathwall, and Heartwall-like secrecy remain suspicious. Velenth Cardonald wanted to transfer herself into an object, echoing Ruby Eye's best friend wanting to craft herself into something and continue in that form. The lab may contain a diamond, Barrier emergency systems, a safe and circle code, and something else. A dragon may roost in the ruins of Dirk's old city. Ruby Eye's warning about getting something before she tries to get it is incomplete and unresolved. diff --git a/data/4-days-cleaned/day-21.md b/data/4-days-cleaned/day-21.md new file mode 100644 index 0000000..bee85d4 --- /dev/null +++ b/data/4-days-cleaned/day-21.md @@ -0,0 +1,36 @@ +--- +day: day-21 +date: 6th Jan 1002 +source_pages: + - 67 + - 68 +complete: true +--- + +# Narrative + +Day 21 was Monday, 6th Jan 1002, with 13 days until the Tri-moon. Everyone had dreams tinged with cold. One dream took place in the dreamer's family home, with siblings playing and happy memories around the local town hall. The town hall looked like a crater, but was actually a black hole pulling in more buildings. A horrible voice said, "where is he I know you hide him." The dreamer panicked, hunted, and woke up, wondering if the voice was looking for Garadwal. The note "Void!" was attached to this dream. + +Only the party's room was cold. As the ice melted, a white dragonscale dropped from an icicle. The party went looking for the captain for a boat. They arranged to loan a boat for 100 gp per day with a 500 gp deposit, divided as 125 gp each. + +At Pier 12, a large force gathered. There were about 30 merfolk plus two little ones, 20 guardsmen whose sergeant had a necklace, Zinquiss, and a black dragonborn named Wrath. The party spoke to Pact leader Tiana and other leaders gathered there. Pact leader Alana was also present. There were 15 clerics and their leader. The party received two guest shells and 10 spare shells. Wrath would stay on the other side of the Barrier once they arrived. The sergeant took the party's cart to the keep. The captain was named Captain Huen. + +The group set sail on a calm sea. The water seemed clear, with no noticeable sign of the Excellence yet. Merfolk, Zinquiss, Wrath, and half the clerics were in the sea with the party. The party considered that the Excellence had seemed to come from 80 miles away when they were at the turtle village, so it might have come from Dunbold Cache or the smaller islands around it. + +The party made or planned a pulley system and net to hoist the shield crystal onto the ship when they reached Fairshaws. Wrath's middle name was recorded as Kolin. The party asked him to look for the location of Garadwal when he got to Black Scale. + +They passed an island and nothing seemed to happen. When they arrived at Fairshaws, their boat was seized on the Earl's orders, and the occupants were detained for treason and related accusations. The party presented the situation as a diplomatic mission carrying members of the Pact. They suspected the Earl was part of the Cult. + +The party gave Zinquiss 200 gp for four healing potions. Guards returned and told them to stay on board while investigations took place. Zinquiss came back with three healing potions and one greater healing potion, which were distributed. They also received news: Highden's battles were not going well and had been strengthened by a lightning dragon; in Heartmoor, people were falling ill and surgeons were deployed, possibly connected to Perodetta; in Grand Towers, Justiciars were leaving to the five points of the Penta City states; and Provincia had locusts and something mysteriously spiritual. A sword was blessed to +1. The party were called to the mess hall by Taina. + +# People, Factions, and Places Mentioned + +Fairshaws, Pier 12, the Barrier, the keep, the turtle village, Dunbold Cache, the smaller islands around Dunbold Cache, Black Scale, Highden, Heartmoor, Grand Towers, the five points of the Penta City states, Provincia, the Earl, the Cult, Garadwal, Zinquiss, Wrath or Kolin, Tiana or Taina, Pact leader Alana, Captain Huen, the sergeant with a necklace, merfolk, guardsmen, clerics, Justiciars, Perodetta, a lightning dragon, a white dragon or source of a white dragonscale, the Excellence, and the Pact were all mentioned. + +# Items, Rewards, and Resources + +The party loaned a boat for 100 gp per day with a 500 gp deposit, paid as 125 gp each. They received two guest shells and 10 spare shells. The sergeant took the cart to the keep. A pulley system and net were made or planned to hoist the shield crystal onto the ship. Zinquiss was given 200 gp for four healing potions and returned with three healing potions and one greater healing potion, which were distributed. A sword was blessed to +1. A white dragonscale dropped from a melting icicle in the party's cold room. + +# Clues, Mysteries, and Open Threads + +The cold dreams, the black hole in the town hall, the horrible voice asking "where is he I know you hide him," the possible link to Garadwal, the word "Void!," and the white dragonscale are all unresolved. The Excellence may have come from Dunbold Cache or nearby islands, based on the apparent 80-mile distance from the turtle village. Wrath was asked to search for Garadwal's location when he reached Black Scale. The Earl seized the party's boat and accused the diplomatic mission of treason, strengthening suspicion that the Earl was connected to the Cult. News from Highden, Heartmoor, Grand Towers, and Provincia indicates simultaneous crises involving a lightning dragon, illness possibly linked to Perodetta, Justiciars moving to the five points, locusts, and mysterious spiritual activity. diff --git a/data/4-days-cleaned/day-22.md b/data/4-days-cleaned/day-22.md new file mode 100644 index 0000000..d45ffd5 --- /dev/null +++ b/data/4-days-cleaned/day-22.md @@ -0,0 +1,39 @@ +--- +day: day-22 +date: 6th Jan 1012 +source_pages: + - 68 + - 69 + - 70 +complete: true +--- + +# Narrative + +Day 22 was Tuesday, 6th Jan 1012, with 12 days to the Tri-moon. The notes begin with construction under the water, and the underwater group had also made paper. The shield crystal was approximately 1 metre square. A margin note recorded greater healing as +4d4 +4. + +Someone could sense Kiendra but received no response. Kiendra was possibly unconscious and seemed to be in the cavern. The party split the underwater group in two: one group would deal with the shield crystal, while the other would attempt to rescue Kiendra. + +The group approached the shield crystal stealthily. Above their field of vision were sharks that seemed to have spotted them. Guest shells were noted to last 2 hours. A fight broke out, and the party overcame and defeated the mobs at the crystal site. Kiendra was found and rescued, but she was very weak and had been tortured. + +At the crystal site, the party found waterproof paper, three dispel magic scrolls that went to Geldrin, and coin pouches containing 112 gp, which they gave to the crew. The Bug Boss had a spear glowing dull blue: a drown spear +1 returning, which speaks Aquan. They also found a suit of plate mail, Plate of Hydran +1, granting resistance to cold. + +The boat was badly wounded. The other party, Taina's group, had their shells dispelled and was attacked. The Huntmaster was missing. A half-orc priestess on the boat wanted to check on the other team for the Huntmaster. The sergeant with the necklace wanted to come with the party. They went over and found the Huntmaster fighting an Excellence, with both of them very injured. The note "Deed Excellence!" records the defeat or deed against the Excellence. + +Survivors were recorded as four mermen, all mermaids, four clerics, and six guardsmen. The party moored up by Dunbold Cache for the night. + +The merfolk recovered the dead and laid on the help and sacrifice. The party pulled up to the cove, where the lookout shouted that a vessel was already docked. There was a chariot with water elementals chained to it. The party rowed to shore to investigate. The chariot had a mother-of-pearl frame, and there were no other signs of movement. + +Dirk spoke to the elementals. The raw notes only record that "they want" [unclear], and that they would come with the party on the big boat. The party took the chariot back with them; its weight was recorded as 8-10 kg. Zinquiss would sell it at an auction in 7 days, and the party had the address for the Freeport auction house. + +# People, Factions, and Places Mentioned + +Dunbold Cache, the cavern, the shield crystal site, the cove, Freeport auction house, Kiendra, Geldrin, Dirk, Taina, the Huntmaster, the half-orc priestess, the sergeant with the necklace, Zinquiss, merfolk, mermen, mermaids, clerics, guardsmen, sharks, mobs at the crystal site, the Bug Boss, an Excellence, water elementals, and the crew were all mentioned. + +# Items, Rewards, and Resources + +The shield crystal was about 1 metre square. Guest shells lasted 2 hours. A greater healing note recorded +4d4 +4. The party recovered waterproof paper, three dispel magic scrolls for Geldrin, coin pouches containing 112 gp that were given to the crew, a dull-blue glowing drown spear +1 returning that speaks Aquan, and Plate of Hydran +1 with resistance to cold. They also recovered a mother-of-pearl framed chariot chained to water elementals, weighing 8-10 kg, which Zinquiss planned to sell at auction in 7 days at the Freeport auction house. + +# Clues, Mysteries, and Open Threads + +Kiendra could be sensed in the cavern but did not respond, and when rescued she was very weak and tortured. The underwater enemies used dispelling against Taina's group's shells, causing an attack and leaving the Huntmaster missing until he was found fighting the Excellence. The exact meaning of "Deed Excellence!" is preserved as an uncertain shorthand for the party's success against the Excellence. The merfolk recovered the dead, and the recorded survivors imply significant losses. The water elementals chained to the chariot wanted something [unclear] but agreed to come with the party on the big boat. The chariot's origin, the vessel already docked at the cove, and the auction outcome remain open. diff --git a/data/5-retrospective/day-01.txt b/data/5-retrospective/day-01.txt index 9e3533b..aa1f4fa 100644 --- a/data/5-retrospective/day-01.txt +++ b/data/5-retrospective/day-01.txt @@ -1,3 +1,11 @@ Retrospective Context: day-01 Later notes on page 4 establish that Everchurch/Everchard has a brewery among the orchards, observed as the party travelled to Thornhollows Farm. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. Source: data/2-pages/4.txt + +Retrospective Context: day-01 +Later notes on page 9 establish that Everchard had visiting tourists, cider breweries, and a woodland tour. This expands the earlier Day 1 town description and Cider Inn context but was not explicitly recorded on Day 1. +Source: data/2-pages/9.txt + +Retrospective Context: day-01 +Later notes on page 39 establish that Guardwel/Garadwal is imprisoned in the Prison of the Sands, that Brutor Ruby Eye called him the only void they could find, and that the wizards agreed Garadwal needed to be contained because his escape would weaken the barrier through the loss of one of the eight. This clarifies the Day 1 Terror of the Sands reference while preserving the original uncertain spelling. +Source: data/2-pages/39.txt diff --git a/data/5-retrospective/day-02.txt b/data/5-retrospective/day-02.txt new file mode 100644 index 0000000..c4e0fbf --- /dev/null +++ b/data/5-retrospective/day-02.txt @@ -0,0 +1,3 @@ +Retrospective Context: day-02 +Later notes on page 6 establish that Sarah had been with The Chorus, which made her harder to wipe from memory, and that The Chorus had seen Sarah by the hostel on one of the Rubin's Days while Sarah was distracted. This clarifies the Day 2 farm-record inconsistency that began around the time Sarah left. +Source: data/2-pages/6.txt -
85092ccMore skills + MDby Bas Mostert
.agents/skills/dnd-clean-day-narrative/SKILL.md | 29 ++-- .agents/skills/dnd-retrospective-context/SKILL.md | 1 + .agents/skills/dnd-split-pages-into-days/SKILL.md | 17 +- AGENTS.md | 1 + data/3-days/day-01.md | 180 ++++++++++++++++++++++ data/3-days/day-02.md | 120 +++++++++++++++ data/4-days-cleaned/day-01.md | 45 ++++++ data/4-days-cleaned/day-02.md | 41 +++++ data/5-retrospective/day-01.txt | 3 + 9 files changed, 422 insertions(+), 15 deletions(-)Show diff
diff --git a/.agents/skills/dnd-clean-day-narrative/SKILL.md b/.agents/skills/dnd-clean-day-narrative/SKILL.md index 218208d..7691481 100644 --- a/.agents/skills/dnd-clean-day-narrative/SKILL.md +++ b/.agents/skills/dnd-clean-day-narrative/SKILL.md @@ -12,6 +12,7 @@ This stage should only clean confirmed-complete days. The day-based pipeline int ## Outputs - `data/4-days-cleaned/<day>.md`, matching the input day stem. +- Files must be valid Markdown with metadata at the top and consistent Markdown headings. ## Idempotency @@ -49,26 +50,36 @@ Write the result to `data/4-days-cleaned`. ## Recommended Output Structure -Use this structure unless the day is too short to need all sections: +Use this Markdown structure unless the day is too short to need all sections: -```text -Day: <day> -Date: <date if known> -Source pages: <source pages if known> +```markdown +--- +day: <day> +date: <date if known, otherwise unknown> +source_pages: + - <page number if known> +complete: true +--- + +# Narrative -Narrative <story-based detailed narrative> -People, Factions, and Places Mentioned +# People, Factions, and Places Mentioned + <compact prose or bullets if useful> -Items, Rewards, and Resources +# Items, Rewards, and Resources + <compact prose or bullets if useful> -Clues, Mysteries, and Open Threads +# Clues, Mysteries, and Open Threads + <compact prose or bullets if useful> ``` +Do not use plain text labels like `Narrative` or `Source pages:` in place of Markdown front matter and headings. + ## Completion Report When finished, report: diff --git a/.agents/skills/dnd-retrospective-context/SKILL.md b/.agents/skills/dnd-retrospective-context/SKILL.md index 3a20d25..d1b558d 100644 --- a/.agents/skills/dnd-retrospective-context/SKILL.md +++ b/.agents/skills/dnd-retrospective-context/SKILL.md @@ -81,6 +81,7 @@ After recording this in `data/5-retrospective/day-01.txt`, regenerate `data/4-da ## Regeneration Requirements - Use the same narrative standards as `dnd-clean-day-narrative`. +- Regenerated cleaned days must keep the `dnd-clean-day-narrative` Markdown structure: YAML-style metadata at the top and proper headings for narrative, people/factions/places, items/rewards/resources, and clues/mysteries/open threads. - Use `data/3-days/<day>.md` as the primary source of the day narrative. - Use `data/5-retrospective/<day>.txt` as additional context only. - Preserve source uncertainty and variant spellings. diff --git a/.agents/skills/dnd-split-pages-into-days/SKILL.md b/.agents/skills/dnd-split-pages-into-days/SKILL.md index 1fbcd9c..b61eca7 100644 --- a/.agents/skills/dnd-split-pages-into-days/SKILL.md +++ b/.agents/skills/dnd-split-pages-into-days/SKILL.md @@ -12,6 +12,7 @@ This stage intentionally lags one in-game day behind page transcription. A day m ## Outputs - `data/3-days/<day>.md`, where `<day>` is the in-game day identifier. +- Files must be valid Markdown with metadata at the top. ## Idempotency @@ -48,14 +49,18 @@ This stage intentionally lags one in-game day behind page transcription. A day m ## Output Format -Each day file should start with: +Each day file must be proper Markdown. Start with YAML-style metadata, then use headings for the raw notes: -```text -Day: <day> -Date: <date if known, otherwise unknown> -Source pages: <comma-separated page numbers> +```markdown +--- +day: <day> +date: <date if known, otherwise unknown> +source_pages: + - <page number> +complete: true +--- -Raw notes: +# Raw Notes ``` Then include the relevant transcribed notes for that day. diff --git a/AGENTS.md b/AGENTS.md index 7dd55d1..0bf467a 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -23,6 +23,7 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - Preserve uncertainty. If source notes use uncertain names or spellings, keep the uncertainty rather than silently normalizing it. Examples: `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, `Velenth/Valenth`. - Preserve campaign-specific directional and calendar terms such as `airwise`, `earthwise`, `firewise`, `waterwise`, `Tri-moon`, `Timnor`, and `Tan`. - When cleaning notes into narrative, include details that may later become searchable wiki entries: people, places, factions, items, money, rewards, spell effects, dreams, clues, rumours, warnings, inscriptions, passwords, dates, travel decisions, combat outcomes, and open questions. +- Day files in `data/3-days` and cleaned day files in `data/4-days-cleaned` must be proper Markdown: YAML-style metadata at the top, followed by Markdown headings for content sections. - Do not invent missing facts. If text is illegible or unclear, mark it as uncertain in square brackets, such as `[unclear]` or `[uncertain: possible name]`. ## Processing Pipeline diff --git a/data/3-days/day-01.md b/data/3-days/day-01.md new file mode 100644 index 0000000..addba60 --- /dev/null +++ b/data/3-days/day-01.md @@ -0,0 +1,180 @@ +--- +day: day-01 +date: unknown +source_pages: + - 1 + - 2 + - 3 +complete: true +--- + +# Raw Notes + +Page: 1 +Source: data/1-source/IMG_5115.png + +Transcription: + +Everchurch +Swampy land - fruit trees orchards + +Winter - 1 orchard has trees in bloom - [unclear/crossed out] + buzzing - bee pollinating & enabling trees + to live - slightly bigger than normal bees. + - dark bark, blue leaves, red fruit (deep) + +Town mix of light & dark woods. +Population [crossed/unclear] 3k +no visible district - larger manor house in centre. + +Cider inn cider +Beeswaxed floor a nice small +half elf playing a lute [unclear/crossed out] music's half elf & human +family resemblance. +Father Burnun - prize fighter +half elf - Gelissa * + +[boxed notes] +Bas - Invar + greying hair - Paladin-looking + had not got the plate +Laura - Dirk + politely +Shawn - Geldrin (the mighty) + gnome wild brown hair + glasses with no glass + +Farmer - old John Thornhollows. 3 daughters + another 3 pigs gone + vanished + [side note:] Annabel / Isabelle / Clarabella + 6 missing but only has the ledgers + for 3. Had a group of around 30 pigs? + +5 keys on the bar - but changed to 4 & no idea +how it changed + +Register with Earl - ? mercenaries. + +Pigs. Daughters keep best books v[unclear] - 1g each to go look. + +Shepherd maybe missing some sheep +Bess - cat missing but no rats recently either + Rats missing too? + +last summer built a hostel - house all the homeless +people but not enough for homeless so letting out. Inn's +not happy. + +go to Earl - half orc (rough looking) black clothing covered with birdy, +geese - missing. + +- Butcher - serving new mushroom burgers since meat not coming + in + +- woman - out of town came to find husband come from Albec + for work no one seen him, saw putting up fences at a farm. + Malcolm Donovan - sent to [unclear: galler?] - Birth mark on back of right hand + +- apply for poverty tax - eligible - slides 2g over to her. + for the anti-tax + +Page: 2 +Source: data/1-source/IMG_5116.png + +Transcription: + +Funds from the hostel go to the anti-tax +since wife left him - [crossed out: going] disappear + +Census - in spring - 3c for the number. + payable in the morning, ask half elf + +- No trouble in town. + +- Bushhunter - registered Mercenary. + +Last 2 weeks + Bushhunter came to town 2 weeks ago + winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +Invar - delivered weapons but no militia? + order was put in a few months ago {20 weapons + about 5 left. Earl downsizing. 10 armour + can't remember any of the old militia + go to jail & talk to sheriff for current militia + forgetting names. + Bushhunter - had tubes & pipes. + used to do a lot of swords. + +Jail +- now believe should get a package from + a crazy haired gnome. +- location changed. Used to be where hostel + used to be. +- 2 empty cells +- Law - big scar over her eye. +- her, sheriff & other 2 deputies (Bob) +- 11 years always something so old here isn't anything +- no reports of people missing. +- home theft week ago +- Bushhunter doing a sale of giant bugs in frames + last sale 6 days ago +- shepherd had new fence? Yes. + +Terry left town - 2 months ago +Stonejaw passed away +Rob. retired +ralfrex - Bucksmouth somewhere +none left in town +43 used to be hired. + +Part of militia state charter to have sufficient +militia this close to barrier. +1100 militia - 45000 population +Due in a month to check & last visited 5 months +ago + +Page: 3 +Source: data/1-source/IMG_5117.png + +Transcription: + +Nobody remembers [crossed out: Gelissa] Gelissa except +Geldrin. +Invar remembered for a split second + +* see one of the people gets up and walks +out +Chase him, +hood drops face stitched below eye line +mouth missing a rows of teeth, +Bone splint fingers & split tongue. +has Birth mark on right hand. - Malcolm. +was a human male - had to use magic for these +changes. + +Guardwel - Terror of the sands nightmare of the darkness + he will consume your soul + - Tales of the sphinx who learnt dark magic + experimenting on itself. + +- Remembered Isabella and that Gelissa said she + hadn't arrived. - remembered her again. + +look Malcolm to the Jail + Deputy went to get the sheriff - Jeremia + now remembers 3rd Daughter Gelissa + now remembers homeless people. + makes us deputies - we get badges + (Sir Alstir Florent) + +Bar 5th person human warrior - helping +out with us & picked one of the keys +& remembered him all the way +up to when we went fishing +around the time Dirk saw the rat + +Gristak Brinson - mayor diff --git a/data/3-days/day-02.md b/data/3-days/day-02.md new file mode 100644 index 0000000..31bdc12 --- /dev/null +++ b/data/3-days/day-02.md @@ -0,0 +1,120 @@ +--- +day: day-02 +date: unknown +source_pages: + - 3 + - 4 + - 5 +complete: true +--- + +# Raw Notes + +Page: 3 +Source: data/1-source/IMG_5117.png + +Transcription: + +Day 2 + +Head back to the town hall + +* received whole census for John's pig farm 9:00 + +5th name on the ledger has been scribbled out +claims it was a mistake + +- unemployed & holding's worth <50g - anti-tax criteria + +3g anti-Tax + +Page: 4 +Source: data/1-source/IMG_5118.png + +Transcription: + +Thornhollows farm Census. April 4th. + +registered {wife Sarah 47 Annabella 18 Clara bella 14. + John 50 Isabella 16 seeing sheep farmers + son + +Paternal grandmother Bella + +2 sounders of pigs 1x matriarch 2x breeding sows + 3x Breeding Boars +1 has 17 female younglings +other has 21 female younglings No males. + +Paid tax as billed. +Farmhouse 3x orchards stable veg garden +2x outbuildings which back onto a hedged sty. + +- planned employment 3x hands. + +- grazing rights for area inc edge of swamp lands. + +walk to Thornhollows Farm. past orchards & brewery. 9:45 + +Farm surrounded by Stone hedge + +Pass 2 ravenhound looking dogs - girl walking with them. black hair +missing from census -> craven dogs, breeding pair, approx 10 - Annabella. + mimicing noise - have puppies. +- younger sister on the porch. - 3 puppies on pillows next to grandma. + +Books - everything tallies until about 1 month +ago. - scribbling out & removed with out explanation +missing 12 pigs in total - think there should be 57 +records say should be 51 they've recorded. +6 missing over the last 2 weeks +actually 46 +3 last night before last +3 a week ago. + +- missing pigs went over night. + +* inconsistencies start about the time Sarah left. + +45 +Nights of disappearances. +not looked up at night. + +cat is missing too +about 1 month ago +(Black cat) + +- large door to enter the hedged area looks densely grown +confident there is no dig throughs. +hill giving 4 foot of hedge to get in but no +advantage to get out + +Page: 5 +Source: data/1-source/IMG_5119.png + +Transcription: + +Dirk finds big divots that look like foot +prints - looks like a frog - approx 8 foot frog. + ravenhounds ribbited at dark + started few weeks + ago - take the pigs while hunting. +Seem to head to swamp + +massive moths. been around for a while. + +Q - 100g to clear the frogs. - had 50g so far + +- 6 pigs missing to the frogs as they remember +these but 6 others missing they don't remember + +go through swamp +feels like we are being watched +massive moth appears during the day... +stealth off & get attacked by a frog - killed 2 + +find bones that appear to belong to pigs & sheep 16:00 + +Back to farmhouse +Cleara gives a tonic where we can use hit dice. +* Potion of recovery. * Succour +stay over the night. diff --git a/data/4-days-cleaned/day-01.md b/data/4-days-cleaned/day-01.md new file mode 100644 index 0000000..bcbd84d --- /dev/null +++ b/data/4-days-cleaned/day-01.md @@ -0,0 +1,45 @@ +--- +day: day-01 +date: unknown +source_pages: + - 1 + - 2 + - 3 +complete: true +--- + +# Narrative + +The party began in Everchurch, also later called Everchard, a swampy town of roughly three thousand people surrounded by fruit trees, orchards, and at least one brewery. It was winter, but one orchard was strangely in bloom. Bees slightly larger than normal were buzzing around the trees and pollinating them. The trees had dark bark, blue leaves, and deep red fruit. The town itself mixed light and dark woods, had no obvious districts, and had a larger manor house in the centre. + +The first important stop was the Cider Inn Cider, a small inn with a beeswaxed floor. A half-elf played a lute, and the notes suggest some half-elf and human family resemblance. Local names established there included Father Burnun, a prize fighter, and Gelissa, a half-elf. The party members noted were Invar, a greying paladin-looking figure who did not yet have plate; Dirk, described as polite; and Geldrin the Mighty, a gnome with wild brown hair and glasses with no glass. + +Old John Thornhollows, a farmer with three daughters, brought the first job. Another three pigs had vanished, but the numbers were already wrong: six pigs seemed to be missing, yet John only had ledgers for three. He may have had around thirty pigs. His daughters' names were recorded as Annabel, Isabelle, and Clarabella. The daughters kept the best books, and the party were offered 1 gp each to investigate. At the inn, five keys on the bar somehow became four, and nobody knew how the change happened. + +Other local problems surfaced immediately. A shepherd might also have missing sheep. Bess had a missing cat, and there were no rats recently either, raising the possibility that rats were missing too. Meat was not coming in, so the butcher was serving new mushroom burgers. There was also a woman from out of town looking for her husband, Malcolm Donovan, who had come from Albec for work and had been seen putting up fences at a farm. Malcolm had a birthmark on the back of his right hand. + +Everchurch had built a hostel the previous summer to house homeless people, but it had not been enough for that purpose and was also being let out, angering the inns. The Earl was a rough-looking half-orc dressed in black clothing covered with bird or goose motifs. Funds from the hostel were apparently going into an anti-tax system. A woman who applied for the poverty tax was told she was eligible and slid 2 gp across for the anti-tax. The census was due in spring and charged 3 cp per number, payable in the morning, with a note to ask the half-elf. + +The town insisted there was no trouble, but several details contradicted that. Bushhunter, a registered mercenary known for tubes and pipes, had come to town two weeks earlier. The winter apple trees had also started fruiting about two weeks earlier. The last Third Moon had been one week earlier. Invar had delivered weapons, but the militia seemed to have almost vanished. An order had been placed a few months earlier for twenty weapons and ten armour, yet only about five militia remained. People said the Earl was downsizing and could not remember the old militia properly. + +At the jail, reality and memory seemed unstable. The jail's location had changed and was now where the hostel used to be. It had two empty cells. The law officer or sheriff had a large scar over her eye, and the staff included her, Sheriff Jeremia, and two deputies, one named Bob. They reported no missing people, though there had been a home theft a week earlier, Bushhunter had held a sale of giant bugs in frames six days earlier, and the shepherd did have a new fence. The jail also now believed it should receive a package from a crazy-haired gnome. + +The militia records were deeply wrong. Names such as Terry, Stonejaw, Rob, and Ralfrex were offered as explanations: Terry left town two months earlier, Stonejaw passed away, Rob retired, and Ralfrex was somewhere in Bucksmouth. None were left in town. Yet forty-three people used to be hired. A state charter required a sufficient militia this close to the barrier, with a wider figure of 1,100 militia for a population of 45,000. A check was due in a month, and the last visit had been five months earlier. + +The memory tampering became undeniable when nobody remembered Gelissa except Geldrin, though Invar remembered her for a split second. The party saw one of the people get up and walk out. They chased him, and when his hood dropped they saw a face stitched below the eye line, a mouth missing rows of teeth, bone-splinted fingers, and a split tongue. The birthmark on his right hand identified him as Malcolm. He had been a human male, and magic had clearly been used to make these changes. + +The name Guardwel was connected to this horror, described as the Terror of the Sands and nightmare of the darkness, a being who would consume souls. The tales mentioned a sphinx that learned dark magic and experimented on itself. After Malcolm was found, memories shifted again. Someone remembered Isabella and remembered that Gelissa had said she had not arrived. Gelissa herself was remembered again. + +The party took Malcolm to the jail. A deputy went to fetch Sheriff Jeremia, who now remembered the third Thornhollows daughter, Gelissa, and the homeless people. Jeremia made the party deputies and gave them badges under Sir Alstir Florent. Another displaced memory also surfaced: a fifth person, a human warrior, had been at the bar helping the party and had picked one of the keys. He was remembered only up to the point when the group went fishing, around the time Dirk saw a rat. Gristak Brinson was recorded as mayor. + +# People, Factions, and Places Mentioned + +Everchurch/Everchard, the Cider Inn Cider, the central manor house, the hostel, the jail, the barrier, Albec, Bucksmouth, Old John Thornhollows, Annabel, Isabelle, Clarabella, Father Burnun, Gelissa, Invar, Dirk, Geldrin, Bess, Malcolm Donovan, the Earl, Bushhunter, Sheriff Jeremia, Bob, Terry, Stonejaw, Rob, Ralfrex, Sir Alstir Florent, Gristak Brinson, Guardwel, and the unidentified fifth human warrior were all established or referenced. + +# Items, Rewards, and Resources + +The party were offered 1 gp each to investigate the missing pigs. They received deputy badges from Sheriff Jeremia under Sir Alstir Florent. The militia order involved twenty weapons and ten armour. The anti-tax payment noted was 2 gp, and the spring census charged 3 cp per number. + +# Clues, Mysteries, and Open Threads + +The major open threads were the missing pigs, possible missing sheep, Bess's missing cat, the absence of rats, the missing or forgotten militia, the changing number of keys, the hostel's connection to the anti-tax, Bushhunter's arrival with tubes and pipes, the winter fruiting trees, the altered Malcolm Donovan, the shifting memories around Gelissa and the homeless people, the vanished fifth human warrior, and Guardwel, the Terror of the Sands, linked to a dark-magic sphinx that experiments on itself and consumes souls. diff --git a/data/4-days-cleaned/day-02.md b/data/4-days-cleaned/day-02.md new file mode 100644 index 0000000..0b3c3bd --- /dev/null +++ b/data/4-days-cleaned/day-02.md @@ -0,0 +1,41 @@ +--- +day: day-02 +date: "unknown; Thornhollows farm census dated April 4th" +source_pages: + - 3 + - 4 + - 5 +complete: true +--- + +# Narrative + +Day 2 began with the party returning to the town hall. At 9:00, they received the full census for John Thornhollows' pig farm. A fifth name on the ledger had been scribbled out and dismissed as a mistake. The anti-tax criteria were also noted: a person qualified if unemployed and if their holdings were worth less than 50 gp. The anti-tax amount was noted as 3 gp. + +The Thornhollows farm census was dated April 4th. It registered Sarah, John's wife, age 47; John, age 50; Annabella, age 18; Isabella, age 16; and Clara bella, age 14. Clara bella was noted as seeing the sheep farmer's son. Paternal grandmother Bella was also listed. + +The farm had two sounders of pigs. The herd included one matriarch, three breeding boars, two breeding sows, one sow with seventeen female younglings, and another with twenty-one female younglings. There were no males among the younglings. The census said the farm had paid tax as billed. The property included the farmhouse, three orchards, a stable, a vegetable garden, and two outbuildings backing onto a hedged sty. The farm had planned employment for three hands and grazing rights for an area including the edge of the swamplands. + +At 9:45, the party walked to Thornhollows Farm, passing orchards and a brewery. The farm was surrounded by a stone hedge. On the way in they passed two ravenhound-looking dogs being walked by a black-haired girl, Annabella. The animals were craven dogs: a breeding pair, about ten in number, with puppies and a habit of mimicking noises. A younger sister was on the porch, and three puppies rested on pillows next to grandma. + +The books made the scale of the problem clearer. Everything tallied until about one month earlier, when unexplained scribbling-out and removals began. Twelve pigs were missing in total. The family thought there should be fifty-seven pigs, while the records said there should be fifty-one, but the actual count was forty-six. Six pigs had gone missing over the last two weeks: three the night before last and three a week earlier. The pigs disappeared overnight. Six other pigs were missing in a way the family did not remember. The inconsistencies began around the time Sarah left. A black cat had also been missing for about one month. + +The party inspected the hedged sty. The large door into the hedged area looked densely grown, and there was confidence that nothing had dug through. A hill gave four feet of hedge as an entry point, but there was no advantage for getting back out. Dirk found large divots that looked like frog footprints, suggesting a frog roughly eight feet tall. The ravenhounds had ribbited at the dark, and this had started a few weeks earlier. The suspected frogs seemed to be taking pigs while hunting and leaving toward the swamp. + +Massive moths were also present and had apparently been around for a while. The family offered 100 gp to clear the frogs and had already paid 50 gp so far. The party understood that six pigs were now remembered as missing to the frogs, while six others were missing but not remembered. + +The party went into the swamp. They felt as if they were being watched. A massive moth appeared during the day, and after stealth failed the party were attacked by a frog. They killed two frogs. At 16:00, they found bones that appeared to belong to pigs and sheep. + +Back at the farmhouse, Cleara gave them a tonic that allowed them to use hit dice. It was identified or described as a Potion of Recovery or Succour. The party stayed overnight at the farm. + +# People, Factions, and Places Mentioned + +John Thornhollows, Sarah, Annabella, Isabella, Clara bella, paternal grandmother Bella, the sheep farmer's son, Cleara, Dirk, the Thornhollows Farm, the town hall, the brewery, the orchards, the hedged sty, the swamplands, craven dogs, ravenhound-like dogs, giant frogs, massive moths, and a missing black cat were all noted. + +# Items, Rewards, and Resources + +The farm offered 100 gp to clear the frogs and had already paid 50 gp. Cleara gave the party a tonic that allowed use of hit dice, recorded as a Potion of Recovery or Succour. The census recorded farm assets including two sounders of pigs, breeding animals, younglings, three orchards, a stable, a vegetable garden, two outbuildings, planned employment for three hands, and grazing rights by the swamp. + +# Clues, Mysteries, and Open Threads + +The farm records began changing about one month earlier, around the time Sarah left and the black cat disappeared. Twelve pigs were missing, but only six were remembered. The physical evidence pointed to giant frogs entering or hunting from the swamp, while bones in the swamp suggested pigs and sheep had been taken. The craven dogs' ribbiting at the dark and the presence of massive moths remain notable. The sheep bones also strengthened the earlier lead that the sheep farmer might have a related problem. diff --git a/data/5-retrospective/day-01.txt b/data/5-retrospective/day-01.txt new file mode 100644 index 0000000..9e3533b --- /dev/null +++ b/data/5-retrospective/day-01.txt @@ -0,0 +1,3 @@ +Retrospective Context: day-01 +Later notes on page 4 establish that Everchurch/Everchard has a brewery among the orchards, observed as the party travelled to Thornhollows Farm. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. +Source: data/2-pages/4.txt -
954a5b0Markdownby Bas Mostert
.agents/skills/dnd-clean-day-narrative/SKILL.md | 8 +- .agents/skills/dnd-notes-pipeline/SKILL.md | 2 +- .agents/skills/dnd-retrospective-context/SKILL.md | 22 +-- .agents/skills/dnd-split-pages-into-days/SKILL.md | 12 +- AGENTS.md | 8 +- data/3-days/day-01.txt | 159 ---------------------- data/3-days/day-02.txt | 99 -------------- data/4-days-cleaned/day-01.txt | 55 -------- data/4-days-cleaned/day-02.txt | 40 ------ data/5-retrospective/day-01.txt | 16 --- data/5-retrospective/day-02.txt | 4 - 11 files changed, 26 insertions(+), 399 deletions(-)Show diff
diff --git a/.agents/skills/dnd-clean-day-narrative/SKILL.md b/.agents/skills/dnd-clean-day-narrative/SKILL.md index 3f5c0c4..218208d 100644 --- a/.agents/skills/dnd-clean-day-narrative/SKILL.md +++ b/.agents/skills/dnd-clean-day-narrative/SKILL.md @@ -6,12 +6,12 @@ This stage should only clean confirmed-complete days. The day-based pipeline int ## Inputs -- Raw day files: `data/3-days/*.txt` -- Existing cleaned day files: `data/4-days-cleaned/*.txt` +- Raw day files: `data/3-days/*.md` +- Existing cleaned day files: `data/4-days-cleaned/*.md` ## Outputs -- `data/4-days-cleaned/<day>.txt`, matching the input day filename. +- `data/4-days-cleaned/<day>.md`, matching the input day stem. ## Idempotency @@ -26,7 +26,7 @@ This stage should only clean confirmed-complete days. The day-based pipeline int - Prefer cleaning only raw day files produced by `dnd-split-pages-into-days`, because that skill should only write confirmed-complete days. - Before cleaning the newest raw day, verify that `data/2-pages` contains a clear marker for the next in-game day. - If that marker is missing or ambiguous, skip cleaning and report that the day is pending more source pages or user confirmation. -- Never create `data/4-days-cleaned/<day>.txt` from partial current-day notes unless the user explicitly asks to override the lag rule. +- Never create `data/4-days-cleaned/<day>.md` from partial current-day notes unless the user explicitly asks to override the lag rule. ## Cleaning Prompt diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index dbecf95..05a28b8 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -48,7 +48,7 @@ Ask the user before proceeding if: - After transcription, verify that every newly processed image has a corresponding `data/2-pages/<page>.txt` file. - After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. -- After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.txt` file and was confirmed complete before cleaning. +- After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.md` file and was confirmed complete before cleaning. - After retrospective updates, verify that each recorded context item has a source reference, does not duplicate an existing note, any affected cleaned day was regenerated from the raw day plus the retrospective context, and the cleaned day does not expose retrospective source references. - Report skipped files and the reason they were skipped. diff --git a/.agents/skills/dnd-retrospective-context/SKILL.md b/.agents/skills/dnd-retrospective-context/SKILL.md index 02c159f..3a20d25 100644 --- a/.agents/skills/dnd-retrospective-context/SKILL.md +++ b/.agents/skills/dnd-retrospective-context/SKILL.md @@ -5,9 +5,9 @@ Use this skill when later transcribed pages or cleaned days reveal information t ## Inputs - Later source page transcriptions: `data/2-pages/*.txt` -- Later raw or cleaned day files: `data/3-days/*.txt` and `data/4-days-cleaned/*.txt` -- Raw day files to regenerate from: `data/3-days/*.txt` -- Earlier cleaned day files to regenerate: `data/4-days-cleaned/*.txt` +- Later raw or cleaned day files: `data/3-days/*.md` and `data/4-days-cleaned/*.md` +- Raw day files to regenerate from: `data/3-days/*.md` +- Earlier cleaned day files to regenerate: `data/4-days-cleaned/*.md` ## Outputs @@ -17,7 +17,7 @@ Use this skill when later transcribed pages or cleaned days reveal information t ## Core Rule -This skill may rewrite earlier cleaned day narratives when later notes clarify earlier context. First record a clearly marked and sourced retrospective update in `data/5-retrospective/`, then regenerate the affected `data/4-days-cleaned/<day>.txt` from the raw day notes plus the retrospective context. Do not mention the retrospective source, later page, later day, or regeneration inside the cleaned day itself. +This skill may rewrite earlier cleaned day narratives when later notes clarify earlier context. First record a clearly marked and sourced retrospective update in `data/5-retrospective/`, then regenerate the affected `data/4-days-cleaned/<day>.md` from the raw day notes plus the retrospective context. Do not mention the retrospective source, later page, later day, or regeneration inside the cleaned day itself. This is an explicit exception to the normal cleaned-day idempotency rule. A cleaned day may be overwritten when, and only when, a sourced retrospective context update targets that day. @@ -37,15 +37,15 @@ Do not use this skill for ordinary later plot progression that belongs only in t ## Workflow 1. Identify a later fact that clarifies an earlier cleaned day. -2. Confirm the later fact has a concrete source path, such as `data/2-pages/4.txt` or `data/4-days-cleaned/day-03.txt`. -3. Identify the earlier raw day file and cleaned day file that should receive the context, such as `data/3-days/day-01.txt` and `data/4-days-cleaned/day-01.txt`. +2. Confirm the later fact has a concrete source path, such as `data/2-pages/4.txt` or `data/4-days-cleaned/day-03.md`. +3. Identify the earlier raw day file and cleaned day file that should receive the context, such as `data/3-days/day-01.md` and `data/4-days-cleaned/day-01.md`. 4. If the target day is uncertain, ask the user or write a pending audit note in `data/5-retrospective/pending.txt` rather than regenerating a day file. 5. Create or update a retrospective context file for the target day, such as `data/5-retrospective/day-01.txt`. 6. Check whether the same fact and source are already recorded. If so, do not duplicate it and do not regenerate solely for a duplicate. 7. Regenerate the affected cleaned day from the raw day file using the normal `dnd-clean-day-narrative` requirements plus all relevant retrospective context from `data/5-retrospective/<day>.txt`. 8. Preserve chronology in the regenerated narrative while folding the retrospective fact into the prose naturally. 9. Include the retrospective fact in the cleaned day in a way that is searchable, but do not mention that the fact came from a later page or day. -10. Do not add `Retrospective Context`, source paths, page references, day-reference explanations, or regeneration notes to `data/4-days-cleaned/<day>.txt`. +10. Do not add `Retrospective Context`, source paths, page references, day-reference explanations, or regeneration notes to `data/4-days-cleaned/<day>.md`. ## Retrospective File Format @@ -69,7 +69,7 @@ Retrospective Context: day-01 Source: data/2-pages/4.txt ``` -After recording this in `data/5-retrospective/day-01.txt`, regenerate `data/4-days-cleaned/day-01.txt` from `data/3-days/day-01.txt` using the retrospective context. The regenerated Day 1 summary should simply describe Everchard as having breweries; it should not say that this came from page 4 or from a retrospective update. +After recording this in `data/5-retrospective/day-01.txt`, regenerate `data/4-days-cleaned/day-01.md` from `data/3-days/day-01.md` using the retrospective context. The regenerated Day 1 summary should simply describe Everchard as having breweries; it should not say that this came from page 4 or from a retrospective update. ## Duplicate Avoidance @@ -81,12 +81,12 @@ After recording this in `data/5-retrospective/day-01.txt`, regenerate `data/4-da ## Regeneration Requirements - Use the same narrative standards as `dnd-clean-day-narrative`. -- Use `data/3-days/<day>.txt` as the primary source of the day narrative. +- Use `data/3-days/<day>.md` as the primary source of the day narrative. - Use `data/5-retrospective/<day>.txt` as additional context only. - Preserve source uncertainty and variant spellings. - Preserve chronology, but fold later context into the cleaned prose transparently. -- Keep source paths, later-page references, and retrospective explanations out of `data/4-days-cleaned/<day>.txt`; those belong in `data/5-retrospective/<day>.txt` only. -- Overwrite `data/4-days-cleaned/<day>.txt` only after recording the retrospective context that justifies regeneration. +- Keep source paths, later-page references, and retrospective explanations out of `data/4-days-cleaned/<day>.md`; those belong in `data/5-retrospective/<day>.txt` only. +- Overwrite `data/4-days-cleaned/<day>.md` only after recording the retrospective context that justifies regeneration. ## Optional Audit Files diff --git a/.agents/skills/dnd-split-pages-into-days/SKILL.md b/.agents/skills/dnd-split-pages-into-days/SKILL.md index 4ebaadc..1fbcd9c 100644 --- a/.agents/skills/dnd-split-pages-into-days/SKILL.md +++ b/.agents/skills/dnd-split-pages-into-days/SKILL.md @@ -7,15 +7,15 @@ This stage intentionally lags one in-game day behind page transcription. A day m ## Inputs - Page transcriptions: `data/2-pages/*.txt` -- Existing day files: `data/3-days/*.txt` +- Existing day files: `data/3-days/*.md` ## Outputs -- `data/3-days/<day>.txt`, where `<day>` is the in-game day identifier. +- `data/3-days/<day>.md`, where `<day>` is the in-game day identifier. ## Idempotency -- Do not reprocess or overwrite an existing `data/3-days/<day>.txt` file unless the user explicitly asks. +- Do not reprocess or overwrite an existing `data/3-days/<day>.md` file unless the user explicitly asks. - If only some days are missing, process only the missing days. - If a page spans an existing day and a missing day, preserve the existing day and only write the missing day after confirming the boundary is clear. - Do not create a day file for the latest apparent in-game day unless a later page clearly shows the next day starting. @@ -29,8 +29,8 @@ This stage intentionally lags one in-game day behind page transcription. A day m ## Day Naming -- Prefer simple numeric campaign day names when available, such as `day-01.txt`, `day-02.txt`, or `day-23.txt`. -- If the notes use a date but no campaign day number, use a stable lowercase filename based on the date, such as `1012-jan-07.txt`. +- Prefer simple numeric campaign day names when available, such as `day-01.md`, `day-02.md`, or `day-23.md`. +- If the notes use a date but no campaign day number, use a stable lowercase filename based on the date, such as `1012-jan-07.md`. - If both are available, prefer the campaign day number and include the calendar date inside the file. - If the day identifier is ambiguous, ask the user before writing output. @@ -42,7 +42,7 @@ This stage intentionally lags one in-game day behind page transcription. A day m 4. Determine which days are confirmed complete by finding the clear start of the following in-game day. 5. Preserve text that appears before the first explicit day marker by assigning it to the current known day only if the context is clear. If unclear, ask the user. 6. Combine all page text belonging to each confirmed-complete in-game day. -7. Write one file per missing confirmed-complete day in `data/3-days/<day>.txt`. +7. Write one file per missing confirmed-complete day in `data/3-days/<day>.md`. 8. Leave the latest apparent day unwritten if no following day marker exists yet. 9. Do not clean, rewrite, or narrativize the text at this stage. diff --git a/AGENTS.md b/AGENTS.md index 21c032a..7dd55d1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -6,8 +6,8 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - `data/1-source/`: handwritten source note images. New pages are added here over time. - `data/2-pages/`: one transcription file per handwritten page, named `data/2-pages/<page>.txt`. -- `data/3-days/`: one raw combined notes file per in-game day, named `data/3-days/<day>.txt`. -- `data/4-days-cleaned/`: one cleaned narrative file per in-game day, named `data/4-days-cleaned/<day>.txt`. +- `data/3-days/`: one raw combined notes file per in-game day, named `data/3-days/<day>.md`. +- `data/4-days-cleaned/`: one cleaned narrative file per in-game day, named `data/4-days-cleaned/<day>.md`. - `data/5-retrospective/`: sourced retrospective context files for later information that should be used when regenerating earlier cleaned days. - `.agents/skills/`: repeatable skills for each processing stage. @@ -39,11 +39,11 @@ Use the skills in `.agents/skills` for repeatable work: Later pages or days may reveal details relevant to earlier day narratives. For example, a later page may mention Everchard breweries while describing the party leaving Everchard, even though the Day 1 Everchard description has already been cleaned. -When this happens, create or update a sourced retrospective context file in `data/5-retrospective/`, then regenerate the affected `data/4-days-cleaned/<day>.txt` from `data/3-days/<day>.txt` using that retrospective context. This is an explicit exception to the normal no-reprocessing rule: if a retrospective context update targets a cleaned day, the cleaned day should be redone so the new information can inform the narrative. +When this happens, create or update a sourced retrospective context file in `data/5-retrospective/`, then regenerate the affected `data/4-days-cleaned/<day>.md` from `data/3-days/<day>.md` using that retrospective context. This is an explicit exception to the normal no-reprocessing rule: if a retrospective context update targets a cleaned day, the cleaned day should be redone so the new information can inform the narrative. The Everchard breweries example is the model case: if page 4 later establishes that Everchard has breweries while the party is leaving town, Day 1 may be regenerated so the opening Everchard description simply includes breweries among the town details. -The regenerated day must preserve chronology while avoiding visible retrospective machinery. Do not mention later pages, later days, source paths, retrospective context, or the fact that the day was regenerated inside `data/4-days-cleaned/<day>.txt`. Source references belong only in `data/5-retrospective/`. +The regenerated day must preserve chronology while avoiding visible retrospective machinery. Do not mention later pages, later days, source paths, retrospective context, or the fact that the day was regenerated inside `data/4-days-cleaned/<day>.md`. Source references belong only in `data/5-retrospective/`. Use this style: diff --git a/data/3-days/day-01.txt b/data/3-days/day-01.txt deleted file mode 100644 index 81f1ddd..0000000 --- a/data/3-days/day-01.txt +++ /dev/null @@ -1,159 +0,0 @@ -Day: 1 -Date: unknown -Source pages: 1, 2, 3 - -Raw notes: - -Everchurch -Swampy land - fruit trees orchards - -Winter - 1 orchard has trees in bloom - [unclear/crossed out] - buzzing - bee pollinating & enabling trees - to live - slightly bigger than normal bees. - - dark bark, blue leaves, red fruit (deep) - -Town mix of light & dark woods. -Population [crossed/unclear] 3k -no visible district - larger manor house in centre. - -Cider inn cider -Beeswaxed floor a nice small -half elf playing a lute [unclear/crossed out] music's half elf & human -family resemblance. -Father Burnun - prize fighter -half elf - Gelissa * - -[boxed notes] -Bas - Invar - greying hair - Paladin-looking - had not got the plate -Laura - Dirk - politely -Shawn - Geldrin (the mighty) - gnome wild brown hair - glasses with no glass - -Farmer - old John Thornhollows. 3 daughters - another 3 pigs gone - vanished - [side note:] Annabel / Isabelle / Clarabella - 6 missing but only has the ledgers - for 3. Had a group of around 30 pigs? - -5 keys on the bar - but changed to 4 & no idea -how it changed - -Register with Earl - ? mercenaries. - -Pigs. Daughters keep best books v[unclear] - 1g each to go look. - -Shepherd maybe missing some sheep -Bess - cat missing but no rats recently either - Rats missing too? - -last summer built a hostel - house all the homeless -people but not enough for homeless so letting out. Inn's -not happy. - -go to Earl - half orc (rough looking) black clothing covered with birdy, -geese - missing. - -- Butcher - serving new mushroom burgers since meat not coming - in - -- woman - out of town came to find husband come from Albec - for work no one seen him, saw putting up fences at a farm. - Malcolm Donovan - sent to [unclear: galler?] - Birth mark on back of right hand - -- apply for poverty tax - eligible - slides 2g over to her. - for the anti-tax - -Funds from the hostel go to the anti-tax -since wife left him - [crossed out: going] disappear - -Census - in spring - 3c for the number. - payable in the morning, ask half elf - -- No trouble in town. - -- Bushhunter - registered Mercenary. - -Last 2 weeks - Bushhunter came to town 2 weeks ago - winter apple trees started to fruit. - -Last 3rd Moon was 1 week ago. - -Invar - delivered weapons but no militia? - order was put in a few months ago {20 weapons - about 5 left. Earl downsizing. 10 armour - can't remember any of the old militia - go to jail & talk to sheriff for current militia - forgetting names. - Bushhunter - had tubes & pipes. - used to do a lot of swords. - -Jail -- now believe should get a package from - a crazy haired gnome. -- location changed. Used to be where hostel - used to be. -- 2 empty cells -- Law - big scar over her eye. -- her, sheriff & other 2 deputies (Bob) -- 11 years always something so old here isn't anything -- no reports of people missing. -- home theft week ago -- Bushhunter doing a sale of giant bugs in frames - last sale 6 days ago -- shepherd had new fence? Yes. - -Terry left town - 2 months ago -Stonejaw passed away -Rob. retired -ralfrex - Bucksmouth somewhere -none left in town -43 used to be hired. - -Part of militia state charter to have sufficient -militia this close to barrier. -1100 militia - 45000 population -Due in a month to check & last visited 5 months -ago - -Nobody remembers [crossed out: Gelissa] Gelissa except -Geldrin. -Invar remembered for a split second - -* see one of the people gets up and walks -out -Chase him, -hood drops face stitched below eye line -mouth missing a rows of teeth, -Bone splint fingers & split tongue. -has Birth mark on right hand. - Malcolm. -was a human male - had to use magic for these -changes. - -Guardwel - Terror of the sands nightmare of the darkness - he will consume your soul - - Tales of the sphinx who learnt dark magic - experimenting on itself. - -- Remembered Isabella and that Gelissa said she - hadn't arrived. - remembered her again. - -look Malcolm to the Jail - Deputy went to get the sheriff - Jeremia - now remembers 3rd Daughter Gelissa - now remembers homeless people. - makes us deputies - we get badges - (Sir Alstir Florent) - -Bar 5th person human warrior - helping -out with us & picked one of the keys -& remembered him all the way -up to when we went fishing -around the time Dirk saw the rat - -Gristak Brinson - mayor diff --git a/data/3-days/day-02.txt b/data/3-days/day-02.txt deleted file mode 100644 index 7f67385..0000000 --- a/data/3-days/day-02.txt +++ /dev/null @@ -1,99 +0,0 @@ -Day: 2 -Date: unknown -Source pages: 3, 4, 5 - -Raw notes: - -Day 2 - -Head back to the town hall - -* received whole census for John's pig farm 9:00 - -5th name on the ledger has been scribbled out -claims it was a mistake - -- unemployed & holding's worth <50g - anti-tax criteria - -3g anti-Tax - -Thornhollows farm Census. April 4th. - -registered {wife Sarah 47 Annabella 18 Clara bella 14. - John 50 Isabella 16 seeing sheep farmers - son - -Paternal grandmother Bella - -2 sounders of pigs 1x matriarch 2x breeding sows - 3x Breeding Boars -1 has 17 female younglings -other has 21 female younglings No males. - -Paid tax as billed. -Farmhouse 3x orchards stable veg garden -2x outbuildings which back onto a hedged sty. - -- planned employment 3x hands. - -- grazing rights for area inc edge of swamp lands. - -walk to Thornhollows Farm. past orchards & brewery. 9:45 - -Farm surrounded by Stone hedge - -Pass 2 ravenhound looking dogs - girl walking with them. black hair -missing from census -> craven dogs, breeding pair, approx 10 - Annabella. - mimicing noise - have puppies. -- younger sister on the porch. - 3 puppies on pillows next to grandma. - -Books - everything tallies until about 1 month -ago. - scribbling out & removed with out explanation -missing 12 pigs in total - think there should be 57 -records say should be 51 they've recorded. -6 missing over the last 2 weeks -actually 46 -3 last night before last -3 a week ago. - -- missing pigs went over night. - -* inconsistencies start about the time Sarah left. - -45 -Nights of disappearances. -not looked up at night. - -cat is missing too -about 1 month ago -(Black cat) - -- large door to enter the hedged area looks densely grown -confident there is no dig throughs. -hill giving 4 foot of hedge to get in but no -advantage to get out - -Dirk finds big divots that look like foot -prints - looks like a frog - approx 8 foot frog. - ravenhounds ribbited at dark + started few weeks - ago - take the pigs while hunting. -Seem to head to swamp - -massive moths. been around for a while. - -Q - 100g to clear the frogs. - had 50g so far - -- 6 pigs missing to the frogs as they remember -these but 6 others missing they don't remember - -go through swamp -feels like we are being watched -massive moth appears during the day... -stealth off & get attacked by a frog - killed 2 - -find bones that appear to belong to pigs & sheep 16:00 - -Back to farmhouse -Cleara gives a tonic where we can use hit dice. -* Potion of recovery. * Succour -stay over the night. diff --git a/data/4-days-cleaned/day-01.txt b/data/4-days-cleaned/day-01.txt deleted file mode 100644 index b85f63b..0000000 --- a/data/4-days-cleaned/day-01.txt +++ /dev/null @@ -1,55 +0,0 @@ -Day: 1 -Date: unknown -Source pages: 1, 2, 3 - -Narrative - -The campaign began in Everchurch, a town in swampy land with fruit trees and orchards. Although it was winter, one orchard had trees in bloom. Bees, slightly larger than normal, were pollinating and apparently enabling the trees to live. The trees had dark bark, blue leaves, and deep red fruit. The town was a mix of light and dark woods, had a population of roughly 3,000, and showed no obvious districts, though a larger manor house stood in the centre. - -The party first visited the Cider Inn Cider, a small inn with a beeswaxed floor. A half-elf was playing a lute, and there was a noted resemblance between the half-elf musician and a human. Early local names included Father Burnun, a prize fighter, and Gelissa, a half-elf. The player characters noted were Invar, a greying paladin-looking figure who did not yet have plate armour; Dirk; and Geldrin, a gnome with wild brown hair and glasses with no glass. - -The first job came from old John Thornhollows, a farmer with three daughters. Another three pigs had vanished, but there was already confusion in the numbers: six pigs seemed to be missing, yet the ledgers only accounted for three, and John may have had a group of around thirty pigs. The daughters' names were noted as Annabel, Isabelle, and Clarabella. The party also noticed a memory or reality inconsistency at the bar: five keys became four, with nobody knowing how it changed. The daughters were said to keep the best books, and the reward for looking into the pigs was 1 gp each. A shepherd might also be missing sheep. Bess had a missing cat, and the town also seemed to have no rats recently. - -Everchurch had built a hostel the previous summer to house homeless people, but it had not been enough for that purpose and was also being let out, annoying the inns. The Earl, a rough-looking half-orc in black clothing covered with bird or goose motifs, was linked to the hostel. Funds from the hostel were apparently going to the anti-tax. A woman applying for poverty tax was deemed eligible and slid 2 gp over for the anti-tax. The census was due in spring, charging 3 cp per number, payable in the morning. The anti-tax criteria included being unemployed and having holdings worth less than 50 gp; a 3 gp anti-tax amount was also noted. - -Other early rumours and observations deepened the mystery. A butcher was serving new mushroom burgers because meat was not coming in. A woman from out of town had come looking for her husband, Malcolm Donovan, from Albec. Nobody had seen him, though he had been putting up fences at a farm. Malcolm had a birthmark on the back of his right hand and may have been sent to [unclear: galler?]. The town otherwise claimed there was no trouble. - -Bushhunter was identified as a registered mercenary. He had come to town two weeks earlier, around the same time the winter apple trees started to fruit. He was associated with tubes and pipes and had previously done a lot of swords. The last third moon had been one week earlier. - -Invar had delivered weapons, but the militia situation was wrong. An order had been put in a few months earlier for twenty weapons and ten suits of armour, yet only about five militia were left. The explanation given was that the Earl was downsizing. People could not remember the old militia, and the party was directed to the jail and sheriff for current militia names. - -At the jail, reality or memory seemed to have shifted again. The jail was now believed to be where a package from a crazy-haired gnome should arrive, and its location had changed: it used to be where the hostel was. It had two empty cells. The law officer had a large scar over her eye; the sheriff had two deputies, including Bob. The locals said that in eleven years there was always something, so something old in town was not unusual. There were no official reports of missing people, though there had been a home theft a week earlier. Bushhunter had held a sale of giant bugs in frames, with the last sale six days earlier. The shepherd had apparently had a new fence. - -The militia records and remembered names were inconsistent. Terry had left town two months ago, Stonejaw had passed away, Rob had retired, and Ralfrex was somewhere in Bucksmouth, leaving none of them in town. Forty-three people used to be hired. The militia state charter required a sufficient militia this close to the barrier: 1,100 militia for a 45,000 population was noted. A check was due in a month, with the last visit five months earlier. - -The supernatural memory problem became clearer when nobody remembered Gelissa except Geldrin. Invar remembered her only for a split second. Then the party saw one of the people get up and walk out. They chased him. When his hood dropped, his face was stitched below the eye line, his mouth was missing a row of teeth, his fingers were bone-splinted, and his tongue was split. He had Malcolm's birthmark on his right hand. He had been a human male, but magic had been used to create these changes. - -The name Guardwel was connected to this horror: the Terror of the Sands, nightmare of the darkness, said to consume souls. Tales described a sphinx who learned dark magic and experimented on itself. After the encounter, people remembered Isabella, and remembered that Gelissa had said she had not arrived. Gelissa herself was remembered again. - -The party took Malcolm to the jail. A deputy went to get Sheriff Jeremia. Jeremia now remembered the third daughter, Gelissa, and also remembered the homeless people. The party were made deputies and given badges under Sir Alstir Florent. Another memory fragment emerged at the bar: there had been a fifth person, a human warrior, helping the party and picking one of the keys. The group remembered him all the way up to when they went fishing, around the time Dirk saw the rat. Gristak Brinson was noted as mayor. - -People, Factions, and Places Mentioned - -Everchurch; Cider Inn Cider; John Thornhollows; Annabel, Isabelle, and Clarabella; Bess; the Earl; Malcolm Donovan of Albec; Bushhunter; Invar; Dirk; Geldrin; Father Burnun; Gelissa; Sheriff Jeremia; Bob; Terry; Stonejaw; Rob; Ralfrex; Sir Alstir Florent; Gristak Brinson; Guardwel, Terror of the Sands; the barrier; Bucksmouth. - -Items, Rewards, and Resources - -The pig investigation offered 1 gp each. The hostel was linked to anti-tax funds. The poverty or anti-tax notes included 2 gp slid over, 3 cp per census number, and a 3 gp anti-tax. Invar had delivered weapons connected to an order for twenty weapons and ten suits of armour. The jail gave the party deputy badges. - -Clues, Mysteries, and Open Threads - -The missing pigs, missing sheep, missing cat, and lack of rats all point to broader disappearances. Town memories and physical records are unreliable: keys changed number, Gelissa was forgotten and remembered, the jail location shifted, and militia history no longer makes sense. Malcolm Donovan was magically altered into a stitched creature. Guardwel, the Terror of the Sands, may be linked to a dark-magic sphinx that experiments on itself and consumes souls. Bushhunter arrived around the same time the winter apple trees began fruiting and is associated with pipes, tubes, giant bugs, and weapon work. - -Retrospective Context - -- Later notes on page 4 establish that the Thornhollows farm census was dated April 4th and listed John, Sarah, Annabella, Isabella, Clara bella, and paternal grandmother Bella. This clarifies the earlier Day 1 references to John's three daughters as Annabel / Isabelle / Clarabella and adds Sarah and Bella to the family context, but was not explicitly recorded at that point. - Source: data/2-pages/4.txt - -- Later notes on page 4 establish that Thornhollows Farm had a farmhouse, three orchards, a stable, a vegetable garden, two outbuildings backing onto a hedged sty, grazing rights near the edge of the swamplands, and that the party passed orchards and a brewery on the walk there. This expands the earlier Day 1 town and farm geography around Everchurch, orchards, pigs, and local food production, but was not explicitly recorded on Day 1. - Source: data/2-pages/4.txt - -- Later notes on pages 4 and 5 establish that the pig records had been inconsistent for about one month, around the time Sarah left and the black cat disappeared; six pigs were remembered as frog losses, while six others were missing without being remembered. This clarifies the earlier Day 1 oddities around missing pigs, Bess's missing cat, the absence of rats, and unreliable records or memories. - Source: data/2-pages/4.txt; data/2-pages/5.txt - -- Later notes on page 5 establish that bones in the swamp appeared to belong to pigs and sheep. This clarifies the earlier Day 1 rumour that the shepherd might be missing sheep and links it to the swamp and frog threat. - Source: data/2-pages/5.txt diff --git a/data/4-days-cleaned/day-02.txt b/data/4-days-cleaned/day-02.txt deleted file mode 100644 index 90e0a4c..0000000 --- a/data/4-days-cleaned/day-02.txt +++ /dev/null @@ -1,40 +0,0 @@ -Day: 2 -Date: unknown; Thornhollows farm census dated April 4th -Source pages: 3, 4, 5 - -Narrative - -On Day 2, the party headed back to the town hall and received the whole census for John's pig farm at 9:00. A fifth name on the ledger had been scribbled out, and someone claimed it had been a mistake. The anti-tax criteria were again noted: unemployed and holdings worth less than 50 gp. A 3 gp anti-tax amount was recorded. - -The Thornhollows farm census, dated April 4th, listed Sarah, wife, age 47; John, age 50; Annabella, age 18; Isabella, age 16; and Clara bella, age 14. Clara bella was linked to seeing the sheep farmer's son. Paternal grandmother Bella was also listed. The farm had two sounders of pigs: one matriarch, three breeding boars, two breeding sows, one sow with seventeen female younglings, and another with twenty-one female younglings. No males were listed among the younglings. The tax had been paid as billed. - -The property included a farmhouse, three orchards, a stable, a vegetable garden, and two outbuildings backing onto a hedged sty. Planned employment was three hands, and the farm held grazing rights for an area including the edge of the swamplands. - -At about 9:45, the party walked to Thornhollows Farm, passing orchards and a brewery. The farm was surrounded by a stone hedge. On the way in, they passed two ravenhound-looking dogs being walked by a black-haired girl. These were craven dogs, a breeding pair with puppies, and they could mimic noises. The girl was Annabella, apparently missing from the census note as read in the moment. A younger sister was on the porch, and three puppies lay on pillows next to grandma. - -The books showed that everything tallied until about one month earlier, when names or numbers began being scribbled out and removed without explanation. The pig count was inconsistent. Twelve pigs seemed to be missing in total. The party thought there should be fifty-seven pigs, while records said there should be fifty-one, and the actual count was forty-six. Six pigs had gone missing over the last two weeks: three the night before last, and three a week earlier. The missing pigs vanished overnight. The inconsistencies began around the time Sarah left. A black cat had also been missing for about one month. Nights of disappearances were noted, but nobody had looked up at night. - -The hedged sty had a large door and looked densely grown. The party was confident there were no dig-throughs. A hill gave about four feet of hedge to get in, but there was no advantage for getting out. - -Dirk found large divots that looked like footprints. They looked frog-like, suggesting an approximately eight-foot frog. The ravenhounds had ribbited at the dark, and this had started a few weeks earlier. The tracks seemed to head toward the swamp. Massive moths had also been around for a while. The farm offered 100 gp to clear the frogs, with 50 gp already paid so far. - -The family remembered six pigs missing to the frogs, but six other pigs were missing in a way they did not remember. The party went through the swamp and felt as if they were being watched. A massive moth appeared during the day. The party tried stealth but were attacked by frogs and killed two. At 16:00, they found bones that appeared to belong to pigs and sheep. - -The party returned to the farmhouse. Cleara gave them a tonic that let them use hit dice, noted as a Potion of Recovery or Succour. The party stayed overnight at the farm. - -People, Factions, and Places Mentioned - -John Thornhollows; Sarah; Annabella; Isabella; Clara bella; paternal grandmother Bella; Cleara; Dirk; the sheep farmer's son; Thornhollows Farm; the town hall; the brewery; the swamp; craven dogs or ravenhound-like dogs. - -Items, Rewards, and Resources - -The farm offered 100 gp to clear the frogs, with 50 gp already paid. Cleara gave the party a tonic identified as a Potion of Recovery or Succour, allowing use of hit dice. The farm records and census are important evidence, especially the scribbled-out fifth name and contradictory pig counts. - -Clues, Mysteries, and Open Threads - -The pig records contradict both memory and reality: there should be fifty-seven, records say fifty-one, and forty-six are present. Six pigs are remembered as frog losses, while six more are missing without being remembered. The problems began around Sarah's departure and around the black cat's disappearance one month earlier. The frog-like tracks suggest an eight-foot frog, and sheep bones in the swamp connect the pig problem to the sheep farmer. The craven dogs' ribbited mimicry and the massive moths may be clues to the swamp threat. - -Retrospective Context - -- Later notes on page 5, after Day 3 begins, establish that the farm district lacked sleep and that the swamp seemed to be trickling into the farm. This clarifies the Day 2 overnight stay at Thornhollows Farm and the swamp's influence on the farm, but was not explicitly recorded before the party stayed there. - Source: data/2-pages/5.txt diff --git a/data/5-retrospective/day-01.txt b/data/5-retrospective/day-01.txt deleted file mode 100644 index 0e2a67d..0000000 --- a/data/5-retrospective/day-01.txt +++ /dev/null @@ -1,16 +0,0 @@ -Retrospective Context: day-01 - -- Later notes on page 4 establish that the Thornhollows farm census was dated April 4th and listed John, Sarah, Annabella, Isabella, Clara bella, and paternal grandmother Bella. This clarifies the earlier Day 1 references to John's three daughters as Annabel / Isabelle / Clarabella and adds Sarah and Bella to the family context, but was not explicitly recorded at that point. - Source: data/2-pages/4.txt - -- Later notes on page 4 establish that Thornhollows Farm had a farmhouse, three orchards, a stable, a vegetable garden, two outbuildings backing onto a hedged sty, grazing rights near the edge of the swamplands, and that the party passed orchards and a brewery on the walk there. This expands the earlier Day 1 town and farm geography around Everchurch, orchards, pigs, and local food production, but was not explicitly recorded on Day 1. - Source: data/2-pages/4.txt - -- Later notes on pages 4 and 5 establish that the pig records had been inconsistent for about one month, around the time Sarah left and the black cat disappeared; six pigs were remembered as frog losses, while six others were missing without being remembered. This clarifies the earlier Day 1 oddities around missing pigs, Bess's missing cat, the absence of rats, and unreliable records or memories. - Source: data/2-pages/4.txt; data/2-pages/5.txt - -- Later notes on page 5 establish that bones in the swamp appeared to belong to pigs and sheep. This clarifies the earlier Day 1 rumour that the shepherd might be missing sheep and links it to the swamp and frog threat. - Source: data/2-pages/5.txt - -- Later notes on page 3, after Day 2 begins, establish that the anti-tax criteria included being unemployed and having holdings worth less than 50 gp, with a 3 gp anti-tax amount noted. This clarifies the earlier Day 1 hostel, poverty tax, and anti-tax discussion but was not explicitly recorded at that point. - Source: data/2-pages/3.txt diff --git a/data/5-retrospective/day-02.txt b/data/5-retrospective/day-02.txt deleted file mode 100644 index 295e2b8..0000000 --- a/data/5-retrospective/day-02.txt +++ /dev/null @@ -1,4 +0,0 @@ -Retrospective Context: day-02 - -- Later notes on page 5, after Day 3 begins, establish that the farm district lacked sleep and that the swamp seemed to be trickling into the farm. This clarifies the Day 2 overnight stay at Thornhollows Farm and the swamp's influence on the farm, but was not explicitly recorded before the party stayed there. - Source: data/2-pages/5.txt -
0b8a8b0Updateby Bas Mostert
.agents/skills/dnd-clean-day-narrative/SKILL.md | 2 + .agents/skills/dnd-notes-pipeline/SKILL.md | 10 ++-- .agents/skills/dnd-retrospective-context/SKILL.md | 58 +++++++++++++++-------- AGENTS.md | 16 ++++--- data/5-retrospective/day-01.txt | 16 +++++++ data/5-retrospective/day-02.txt | 4 ++ 6 files changed, 76 insertions(+), 30 deletions(-)Show diff
diff --git a/.agents/skills/dnd-clean-day-narrative/SKILL.md b/.agents/skills/dnd-clean-day-narrative/SKILL.md index 521caa6..3f5c0c4 100644 --- a/.agents/skills/dnd-clean-day-narrative/SKILL.md +++ b/.agents/skills/dnd-clean-day-narrative/SKILL.md @@ -17,6 +17,7 @@ This stage should only clean confirmed-complete days. The day-based pipeline int - Process one day at a time unless the user explicitly asks for multiple days. - Do not reprocess or overwrite an existing cleaned day file unless the user explicitly asks. +- Exception: if `dnd-retrospective-context` records new sourced context for a cleaned day, regenerate and overwrite that cleaned day using the raw day notes plus the retrospective context. - If all candidate days already have cleaned outputs, report that there is nothing new to clean. - Do not clean a raw day if it appears to be the latest unconfirmed day and there is no clear next-day marker in `data/2-pages`. @@ -38,6 +39,7 @@ Write the result to `data/4-days-cleaned`. ## Narrative Requirements - Preserve chronology within the day. +- If regenerating because of retrospective context, use that context to improve the day summary transparently, as if the information had been available during the original cleaning pass. Do not mention later pages, later days, source paths, retrospective context, or regeneration in the cleaned day. - Write in clear prose, not bullet-point session notes, unless a short list is necessary for dense item inventories. - Keep all potentially useful searchable details: names, places, items, rewards, money, factions, dates, page references, dreams, clues, rumours, warnings, inscriptions, passwords, spell effects, creature descriptions, deaths, rescued people, travel plans, and unresolved questions. - Preserve uncertainty and variant spellings from the source. Do not silently correct uncertain names. diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index d35e52e..dbecf95 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -7,7 +7,7 @@ Use this skill to coordinate the full Pentacity handwritten notes processing pip 1. `dnd-transcribe-pages`: `data/1-source` -> `data/2-pages` 2. `dnd-split-pages-into-days`: `data/2-pages` -> `data/3-days` 3. `dnd-clean-day-narrative`: `data/3-days` -> `data/4-days-cleaned` -4. `dnd-retrospective-context`: later pages/days -> sourced retrospective notes on earlier cleaned days +4. `dnd-retrospective-context`: later pages/days -> sourced retrospective context and regenerated earlier cleaned days ## Core Rule @@ -15,7 +15,7 @@ The pipeline is incremental. Never reprocess existing outputs unless the user ex The day-based stages intentionally lag one complete in-game day behind image/page processing. Do not split or clean the latest apparent day until a source page or transcription clearly shows the next in-game day starting. -Later context should not silently rewrite earlier chronology. If a later page clarifies an earlier day, append a sourced `Retrospective Context` note to the earlier cleaned day or record the pending update separately. +The retrospective process may rewrite earlier cleaned days with context obtained from later pages or days. If a later page clarifies an earlier day, record sourced context in `data/5-retrospective/<day>.txt`, then regenerate the affected cleaned day from the raw day plus that context. The Everchard breweries detail from page 4 is the model example: the regenerated Day 1 summary should simply include breweries in Everchard's description, without mentioning page 4, later context, or regeneration. If the target is unclear, record the pending update separately. ## Workflow @@ -28,7 +28,7 @@ Later context should not silently rewrite earlier chronology. If a later page cl 7. Identify confirmed-complete raw day files without matching cleaned outputs. 8. Run the cleaned narrative stage one confirmed-complete day at a time. 9. Review newly processed pages and cleaned days for retrospective facts that clarify earlier cleaned day narratives. -10. Run the retrospective context stage for clear, sourceable updates. +10. Run the retrospective context stage for clear, sourceable updates, including regenerating affected cleaned days. 11. Skip and report the latest apparent day if no following day marker exists yet. 12. Stop and ask the user whenever a page number, day boundary, completeness marker, retrospective target day, or filename would be uncertain. @@ -49,7 +49,7 @@ Ask the user before proceeding if: - After transcription, verify that every newly processed image has a corresponding `data/2-pages/<page>.txt` file. - After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. - After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.txt` file and was confirmed complete before cleaning. -- After retrospective updates, verify that each added note has a source reference and does not duplicate an existing note. +- After retrospective updates, verify that each recorded context item has a source reference, does not duplicate an existing note, any affected cleaned day was regenerated from the raw day plus the retrospective context, and the cleaned day does not expose retrospective source references. - Report skipped files and the reason they were skipped. ## Final Report @@ -59,7 +59,7 @@ At the end of a pipeline run, report: - New page transcriptions created. - New raw day files created. - New cleaned day narratives created. -- Retrospective context notes added or skipped. +- Retrospective context recorded, cleaned days regenerated, or updates skipped. - Files skipped because they already existed. - Latest apparent day skipped because the next-day marker has not appeared yet. - Any user confirmations still needed. diff --git a/.agents/skills/dnd-retrospective-context/SKILL.md b/.agents/skills/dnd-retrospective-context/SKILL.md index 397a9ae..02c159f 100644 --- a/.agents/skills/dnd-retrospective-context/SKILL.md +++ b/.agents/skills/dnd-retrospective-context/SKILL.md @@ -1,27 +1,31 @@ # Skill: D&D Retrospective Context -Use this skill when later transcribed pages or cleaned days reveal information that clarifies an earlier day narrative. The goal is to keep earlier day files useful for search without corrupting chronology. +Use this skill when later transcribed pages or cleaned days reveal information that clarifies an earlier day narrative. The retrospective process is allowed to rewrite the affected cleaned day with context obtained from later pages or days, as long as the later context is recorded and sourced first. The regenerated cleaned day must fold the information in transparently, as if it had been available during the original cleaning pass. ## Inputs - Later source page transcriptions: `data/2-pages/*.txt` - Later raw or cleaned day files: `data/3-days/*.txt` and `data/4-days-cleaned/*.txt` -- Earlier cleaned day files to update: `data/4-days-cleaned/*.txt` +- Raw day files to regenerate from: `data/3-days/*.txt` +- Earlier cleaned day files to regenerate: `data/4-days-cleaned/*.txt` ## Outputs -- Sourced `Retrospective Context` notes appended to relevant files in `data/4-days-cleaned`. -- Optional audit notes in `data/5-retrospective/` when the target day is unclear or the update should be reviewed before applying. +- Sourced retrospective context files in `data/5-retrospective/`. +- Regenerated cleaned day files in `data/4-days-cleaned` for any affected days. +- Optional pending audit notes in `data/5-retrospective/pending.txt` when the target day is unclear or the update should be reviewed before applying. ## Core Rule -Do not silently rewrite earlier day narratives. If later notes clarify earlier context, append a clearly marked and sourced retrospective note. +This skill may rewrite earlier cleaned day narratives when later notes clarify earlier context. First record a clearly marked and sourced retrospective update in `data/5-retrospective/`, then regenerate the affected `data/4-days-cleaned/<day>.txt` from the raw day notes plus the retrospective context. Do not mention the retrospective source, later page, later day, or regeneration inside the cleaned day itself. + +This is an explicit exception to the normal cleaned-day idempotency rule. A cleaned day may be overwritten when, and only when, a sourced retrospective context update targets that day. ## When To Use This Skill Use this skill when later notes reveal or clarify: -- A location detail relevant to an earlier description, such as Everchard having breweries. +- A location detail relevant to an earlier description, such as page 4 later establishing that Everchard has breweries after Day 1 has already described the town. - A person's identity, title, faction, spelling, relationship, or later-confirmed alias. - An item's purpose, origin, command word, curse, or later significance. - A faction's role, allegiance, symbol, logistics, or hidden motive. @@ -34,43 +38,59 @@ Do not use this skill for ordinary later plot progression that belongs only in t 1. Identify a later fact that clarifies an earlier cleaned day. 2. Confirm the later fact has a concrete source path, such as `data/2-pages/4.txt` or `data/4-days-cleaned/day-03.txt`. -3. Identify the earlier cleaned day file that should receive the retrospective note. -4. If the target day is uncertain, ask the user or write a pending audit note in `data/5-retrospective/` rather than editing a day file. -5. Read the target cleaned day and check whether the retrospective note already exists. -6. If the note is new, append it under an existing `Retrospective Context` section or create that section at the end of the file. -7. Keep the note concise but searchable, with names, places, and source references included. +3. Identify the earlier raw day file and cleaned day file that should receive the context, such as `data/3-days/day-01.txt` and `data/4-days-cleaned/day-01.txt`. +4. If the target day is uncertain, ask the user or write a pending audit note in `data/5-retrospective/pending.txt` rather than regenerating a day file. +5. Create or update a retrospective context file for the target day, such as `data/5-retrospective/day-01.txt`. +6. Check whether the same fact and source are already recorded. If so, do not duplicate it and do not regenerate solely for a duplicate. +7. Regenerate the affected cleaned day from the raw day file using the normal `dnd-clean-day-narrative` requirements plus all relevant retrospective context from `data/5-retrospective/<day>.txt`. +8. Preserve chronology in the regenerated narrative while folding the retrospective fact into the prose naturally. +9. Include the retrospective fact in the cleaned day in a way that is searchable, but do not mention that the fact came from a later page or day. +10. Do not add `Retrospective Context`, source paths, page references, day-reference explanations, or regeneration notes to `data/4-days-cleaned/<day>.txt`. -## Note Format +## Retrospective File Format -Use this format: +Use this format in `data/5-retrospective/<day>.txt`: ```text -Retrospective Context +Retrospective Context: <day> - Later notes on <source> establish that <fact>. This clarifies <earlier day context> but was not explicitly recorded at that point. Source: <source path> ``` -If the file already has a `Retrospective Context` section, append only the bullet and source line. +If the file already exists, append only new bullets and source lines. ## Example ```text -Retrospective Context +Retrospective Context: day-01 - Later notes on page 4 establish that Everchard has breweries, observed as the party left town. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. Source: data/2-pages/4.txt ``` +After recording this in `data/5-retrospective/day-01.txt`, regenerate `data/4-days-cleaned/day-01.txt` from `data/3-days/day-01.txt` using the retrospective context. The regenerated Day 1 summary should simply describe Everchard as having breweries; it should not say that this came from page 4 or from a retrospective update. + ## Duplicate Avoidance - Do not add a retrospective note if the same fact and source are already present. - If the same fact appears from a new source, append the new source to the existing note when practical instead of creating a near-duplicate. - Do not remove or rewrite existing retrospective notes unless the user asks. +- Do not regenerate a cleaned day if no new retrospective context was recorded. + +## Regeneration Requirements + +- Use the same narrative standards as `dnd-clean-day-narrative`. +- Use `data/3-days/<day>.txt` as the primary source of the day narrative. +- Use `data/5-retrospective/<day>.txt` as additional context only. +- Preserve source uncertainty and variant spellings. +- Preserve chronology, but fold later context into the cleaned prose transparently. +- Keep source paths, later-page references, and retrospective explanations out of `data/4-days-cleaned/<day>.txt`; those belong in `data/5-retrospective/<day>.txt` only. +- Overwrite `data/4-days-cleaned/<day>.txt` only after recording the retrospective context that justifies regeneration. ## Optional Audit Files -If a retrospective update is useful but should not be applied automatically, create or append to an audit file in `data/5-retrospective/`, such as `data/5-retrospective/pending.txt`. +If a retrospective update is useful but should not be applied automatically, create or append to `data/5-retrospective/pending.txt`. Use this format: @@ -86,7 +106,7 @@ Reason for review: <why not applied automatically> When finished, report: -- Retrospective notes added. -- Target cleaned day files updated. +- Retrospective context files created or updated. +- Target cleaned day files regenerated. - Potential updates skipped because they were duplicates. - Potential updates deferred to `data/5-retrospective/` or user confirmation. diff --git a/AGENTS.md b/AGENTS.md index ac80585..21c032a 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -8,7 +8,7 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - `data/2-pages/`: one transcription file per handwritten page, named `data/2-pages/<page>.txt`. - `data/3-days/`: one raw combined notes file per in-game day, named `data/3-days/<day>.txt`. - `data/4-days-cleaned/`: one cleaned narrative file per in-game day, named `data/4-days-cleaned/<day>.txt`. -- `data/5-retrospective/`: optional audit files for later context updates, named by source page or day when useful. +- `data/5-retrospective/`: sourced retrospective context files for later information that should be used when regenerating earlier cleaned days. - `.agents/skills/`: repeatable skills for each processing stage. ## General Rules @@ -19,7 +19,7 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - Do not run day-specific processing for the latest apparent in-game day unless there is a later source page or transcription that clearly shows the next in-game day starting. The day-based pipeline intentionally lags one complete day behind image/page processing. - Treat a day as complete only when the next day start is visible and unambiguous in the transcribed notes. If the next day has not yet appeared, leave the current day unprocessed in `data/3-days` and `data/4-days-cleaned`. - Preserve chronology. Do not reorder events except to group text under the correct in-game day. -- Do not silently rewrite older day narratives when later notes clarify earlier people, places, items, or events. Add clearly marked retrospective context with source references instead. +- The retrospective process is allowed to rewrite older cleaned day narratives with context obtained from later pages or days. Record sourced retrospective context first, then intentionally regenerate the affected cleaned day using the original raw day notes plus the new retrospective context. The regenerated cleaned day should fold this information in transparently, as if it had been available during the original cleaning pass. - Preserve uncertainty. If source notes use uncertain names or spellings, keep the uncertainty rather than silently normalizing it. Examples: `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, `Velenth/Valenth`. - Preserve campaign-specific directional and calendar terms such as `airwise`, `earthwise`, `firewise`, `waterwise`, `Tri-moon`, `Timnor`, and `Tan`. - When cleaning notes into narrative, include details that may later become searchable wiki entries: people, places, factions, items, money, rewards, spell effects, dreams, clues, rumours, warnings, inscriptions, passwords, dates, travel decisions, combat outcomes, and open questions. @@ -32,24 +32,28 @@ Use the skills in `.agents/skills` for repeatable work: 1. `dnd-transcribe-pages`: transcribe unprocessed handwritten images from `data/1-source` into `data/2-pages/<page>.txt`. 2. `dnd-split-pages-into-days`: split only confirmed-complete day transcriptions from `data/2-pages` into per-day files in `data/3-days`. 3. `dnd-clean-day-narrative`: clean only confirmed-complete raw days from `data/3-days` into detailed story-based narratives in `data/4-days-cleaned`. -4. `dnd-retrospective-context`: record later clarifications that improve earlier day narratives without corrupting chronology. +4. `dnd-retrospective-context`: record later clarifications and regenerate affected cleaned day narratives with the new sourced context. 5. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. ## Retrospective Context Later pages or days may reveal details relevant to earlier day narratives. For example, a later page may mention Everchard breweries while describing the party leaving Everchard, even though the Day 1 Everchard description has already been cleaned. -When this happens, prefer adding a clearly marked `Retrospective Context` section to the relevant cleaned day file instead of rewriting the original narrative as if the information had been known at the time. Every retrospective note must cite the later source page or day that revealed the information. +When this happens, create or update a sourced retrospective context file in `data/5-retrospective/`, then regenerate the affected `data/4-days-cleaned/<day>.txt` from `data/3-days/<day>.txt` using that retrospective context. This is an explicit exception to the normal no-reprocessing rule: if a retrospective context update targets a cleaned day, the cleaned day should be redone so the new information can inform the narrative. + +The Everchard breweries example is the model case: if page 4 later establishes that Everchard has breweries while the party is leaving town, Day 1 may be regenerated so the opening Everchard description simply includes breweries among the town details. + +The regenerated day must preserve chronology while avoiding visible retrospective machinery. Do not mention later pages, later days, source paths, retrospective context, or the fact that the day was regenerated inside `data/4-days-cleaned/<day>.txt`. Source references belong only in `data/5-retrospective/`. Use this style: ```text -Retrospective Context +Retrospective Context: day-01 Later notes on page 4 establish that Everchard has breweries, observed as the party left town. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. Source: data/2-pages/4.txt ``` -If a cleaned day already has a `Retrospective Context` section, append new sourced notes there. Do not duplicate an existing retrospective note. +If a retrospective context file already contains the same fact and source, do not duplicate it. If a cleaned day is regenerated because of retrospective context, keep the output searchable, but do not expose the retrospective source references in the cleaned day. ## Current Campaign Context diff --git a/data/5-retrospective/day-01.txt b/data/5-retrospective/day-01.txt new file mode 100644 index 0000000..0e2a67d --- /dev/null +++ b/data/5-retrospective/day-01.txt @@ -0,0 +1,16 @@ +Retrospective Context: day-01 + +- Later notes on page 4 establish that the Thornhollows farm census was dated April 4th and listed John, Sarah, Annabella, Isabella, Clara bella, and paternal grandmother Bella. This clarifies the earlier Day 1 references to John's three daughters as Annabel / Isabelle / Clarabella and adds Sarah and Bella to the family context, but was not explicitly recorded at that point. + Source: data/2-pages/4.txt + +- Later notes on page 4 establish that Thornhollows Farm had a farmhouse, three orchards, a stable, a vegetable garden, two outbuildings backing onto a hedged sty, grazing rights near the edge of the swamplands, and that the party passed orchards and a brewery on the walk there. This expands the earlier Day 1 town and farm geography around Everchurch, orchards, pigs, and local food production, but was not explicitly recorded on Day 1. + Source: data/2-pages/4.txt + +- Later notes on pages 4 and 5 establish that the pig records had been inconsistent for about one month, around the time Sarah left and the black cat disappeared; six pigs were remembered as frog losses, while six others were missing without being remembered. This clarifies the earlier Day 1 oddities around missing pigs, Bess's missing cat, the absence of rats, and unreliable records or memories. + Source: data/2-pages/4.txt; data/2-pages/5.txt + +- Later notes on page 5 establish that bones in the swamp appeared to belong to pigs and sheep. This clarifies the earlier Day 1 rumour that the shepherd might be missing sheep and links it to the swamp and frog threat. + Source: data/2-pages/5.txt + +- Later notes on page 3, after Day 2 begins, establish that the anti-tax criteria included being unemployed and having holdings worth less than 50 gp, with a 3 gp anti-tax amount noted. This clarifies the earlier Day 1 hostel, poverty tax, and anti-tax discussion but was not explicitly recorded at that point. + Source: data/2-pages/3.txt diff --git a/data/5-retrospective/day-02.txt b/data/5-retrospective/day-02.txt new file mode 100644 index 0000000..295e2b8 --- /dev/null +++ b/data/5-retrospective/day-02.txt @@ -0,0 +1,4 @@ +Retrospective Context: day-02 + +- Later notes on page 5, after Day 3 begins, establish that the farm district lacked sleep and that the swamp seemed to be trickling into the farm. This clarifies the Day 2 overnight stay at Thornhollows Farm and the swamp's influence on the farm, but was not explicitly recorded before the party stayed there. + Source: data/2-pages/5.txt -
2188585Moreby Bas Mostert
.agents/skills/dnd-notes-pipeline/SKILL.md | 12 ++- .agents/skills/dnd-retrospective-context/SKILL.md | 92 +++++++++++++++++++++++ AGENTS.md | 21 +++++- data/4-days-cleaned/day-01.txt | 14 ++++ data/4-days-cleaned/day-02.txt | 5 ++ data/5-retrospective/.gitkeep | 0 6 files changed, 141 insertions(+), 3 deletions(-)Show diff
diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index d03b5de..d35e52e 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -7,6 +7,7 @@ Use this skill to coordinate the full Pentacity handwritten notes processing pip 1. `dnd-transcribe-pages`: `data/1-source` -> `data/2-pages` 2. `dnd-split-pages-into-days`: `data/2-pages` -> `data/3-days` 3. `dnd-clean-day-narrative`: `data/3-days` -> `data/4-days-cleaned` +4. `dnd-retrospective-context`: later pages/days -> sourced retrospective notes on earlier cleaned days ## Core Rule @@ -14,6 +15,8 @@ The pipeline is incremental. Never reprocess existing outputs unless the user ex The day-based stages intentionally lag one complete in-game day behind image/page processing. Do not split or clean the latest apparent day until a source page or transcription clearly shows the next in-game day starting. +Later context should not silently rewrite earlier chronology. If a later page clarifies an earlier day, append a sourced `Retrospective Context` note to the earlier cleaned day or record the pending update separately. + ## Workflow 1. Inspect the repository layout and confirm the expected data directories exist. @@ -24,8 +27,10 @@ The day-based stages intentionally lag one complete in-game day behind image/pag 6. Run the day-splitting stage only for missing confirmed-complete day files. 7. Identify confirmed-complete raw day files without matching cleaned outputs. 8. Run the cleaned narrative stage one confirmed-complete day at a time. -9. Skip and report the latest apparent day if no following day marker exists yet. -10. Stop and ask the user whenever a page number, day boundary, completeness marker, or filename would be uncertain. +9. Review newly processed pages and cleaned days for retrospective facts that clarify earlier cleaned day narratives. +10. Run the retrospective context stage for clear, sourceable updates. +11. Skip and report the latest apparent day if no following day marker exists yet. +12. Stop and ask the user whenever a page number, day boundary, completeness marker, retrospective target day, or filename would be uncertain. ## User Confirmation Triggers @@ -36,6 +41,7 @@ Ask the user before proceeding if: - A day marker is illegible or ambiguous. - A page appears to contain notes for multiple days but the split point is unclear. - The next-day marker needed to prove a day is complete is missing, illegible, or ambiguous and the user wants to override the lag rule. +- A later clarification appears relevant to an earlier day but the correct target day is uncertain. - An output file already exists and would need to be overwritten. ## Quality Checks @@ -43,6 +49,7 @@ Ask the user before proceeding if: - After transcription, verify that every newly processed image has a corresponding `data/2-pages/<page>.txt` file. - After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. - After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.txt` file and was confirmed complete before cleaning. +- After retrospective updates, verify that each added note has a source reference and does not duplicate an existing note. - Report skipped files and the reason they were skipped. ## Final Report @@ -52,6 +59,7 @@ At the end of a pipeline run, report: - New page transcriptions created. - New raw day files created. - New cleaned day narratives created. +- Retrospective context notes added or skipped. - Files skipped because they already existed. - Latest apparent day skipped because the next-day marker has not appeared yet. - Any user confirmations still needed. diff --git a/.agents/skills/dnd-retrospective-context/SKILL.md b/.agents/skills/dnd-retrospective-context/SKILL.md new file mode 100644 index 0000000..397a9ae --- /dev/null +++ b/.agents/skills/dnd-retrospective-context/SKILL.md @@ -0,0 +1,92 @@ +# Skill: D&D Retrospective Context + +Use this skill when later transcribed pages or cleaned days reveal information that clarifies an earlier day narrative. The goal is to keep earlier day files useful for search without corrupting chronology. + +## Inputs + +- Later source page transcriptions: `data/2-pages/*.txt` +- Later raw or cleaned day files: `data/3-days/*.txt` and `data/4-days-cleaned/*.txt` +- Earlier cleaned day files to update: `data/4-days-cleaned/*.txt` + +## Outputs + +- Sourced `Retrospective Context` notes appended to relevant files in `data/4-days-cleaned`. +- Optional audit notes in `data/5-retrospective/` when the target day is unclear or the update should be reviewed before applying. + +## Core Rule + +Do not silently rewrite earlier day narratives. If later notes clarify earlier context, append a clearly marked and sourced retrospective note. + +## When To Use This Skill + +Use this skill when later notes reveal or clarify: + +- A location detail relevant to an earlier description, such as Everchard having breweries. +- A person's identity, title, faction, spelling, relationship, or later-confirmed alias. +- An item's purpose, origin, command word, curse, or later significance. +- A faction's role, allegiance, symbol, logistics, or hidden motive. +- A place's geography, economy, defenses, history, or connection to earlier events. +- A mystery clue that makes an earlier odd detail searchable or more meaningful. + +Do not use this skill for ordinary later plot progression that belongs only in the later day narrative. + +## Workflow + +1. Identify a later fact that clarifies an earlier cleaned day. +2. Confirm the later fact has a concrete source path, such as `data/2-pages/4.txt` or `data/4-days-cleaned/day-03.txt`. +3. Identify the earlier cleaned day file that should receive the retrospective note. +4. If the target day is uncertain, ask the user or write a pending audit note in `data/5-retrospective/` rather than editing a day file. +5. Read the target cleaned day and check whether the retrospective note already exists. +6. If the note is new, append it under an existing `Retrospective Context` section or create that section at the end of the file. +7. Keep the note concise but searchable, with names, places, and source references included. + +## Note Format + +Use this format: + +```text +Retrospective Context + +- Later notes on <source> establish that <fact>. This clarifies <earlier day context> but was not explicitly recorded at that point. + Source: <source path> +``` + +If the file already has a `Retrospective Context` section, append only the bullet and source line. + +## Example + +```text +Retrospective Context + +- Later notes on page 4 establish that Everchard has breweries, observed as the party left town. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. + Source: data/2-pages/4.txt +``` + +## Duplicate Avoidance + +- Do not add a retrospective note if the same fact and source are already present. +- If the same fact appears from a new source, append the new source to the existing note when practical instead of creating a near-duplicate. +- Do not remove or rewrite existing retrospective notes unless the user asks. + +## Optional Audit Files + +If a retrospective update is useful but should not be applied automatically, create or append to an audit file in `data/5-retrospective/`, such as `data/5-retrospective/pending.txt`. + +Use this format: + +```text +Potential retrospective update +Source: <source path> +Likely target: <day file or unknown> +Fact: <fact> +Reason for review: <why not applied automatically> +``` + +## Completion Report + +When finished, report: + +- Retrospective notes added. +- Target cleaned day files updated. +- Potential updates skipped because they were duplicates. +- Potential updates deferred to `data/5-retrospective/` or user confirmation. diff --git a/AGENTS.md b/AGENTS.md index 38ef868..ac80585 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -8,6 +8,7 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - `data/2-pages/`: one transcription file per handwritten page, named `data/2-pages/<page>.txt`. - `data/3-days/`: one raw combined notes file per in-game day, named `data/3-days/<day>.txt`. - `data/4-days-cleaned/`: one cleaned narrative file per in-game day, named `data/4-days-cleaned/<day>.txt`. +- `data/5-retrospective/`: optional audit files for later context updates, named by source page or day when useful. - `.agents/skills/`: repeatable skills for each processing stage. ## General Rules @@ -18,6 +19,7 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - Do not run day-specific processing for the latest apparent in-game day unless there is a later source page or transcription that clearly shows the next in-game day starting. The day-based pipeline intentionally lags one complete day behind image/page processing. - Treat a day as complete only when the next day start is visible and unambiguous in the transcribed notes. If the next day has not yet appeared, leave the current day unprocessed in `data/3-days` and `data/4-days-cleaned`. - Preserve chronology. Do not reorder events except to group text under the correct in-game day. +- Do not silently rewrite older day narratives when later notes clarify earlier people, places, items, or events. Add clearly marked retrospective context with source references instead. - Preserve uncertainty. If source notes use uncertain names or spellings, keep the uncertainty rather than silently normalizing it. Examples: `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, `Velenth/Valenth`. - Preserve campaign-specific directional and calendar terms such as `airwise`, `earthwise`, `firewise`, `waterwise`, `Tri-moon`, `Timnor`, and `Tan`. - When cleaning notes into narrative, include details that may later become searchable wiki entries: people, places, factions, items, money, rewards, spell effects, dreams, clues, rumours, warnings, inscriptions, passwords, dates, travel decisions, combat outcomes, and open questions. @@ -30,7 +32,24 @@ Use the skills in `.agents/skills` for repeatable work: 1. `dnd-transcribe-pages`: transcribe unprocessed handwritten images from `data/1-source` into `data/2-pages/<page>.txt`. 2. `dnd-split-pages-into-days`: split only confirmed-complete day transcriptions from `data/2-pages` into per-day files in `data/3-days`. 3. `dnd-clean-day-narrative`: clean only confirmed-complete raw days from `data/3-days` into detailed story-based narratives in `data/4-days-cleaned`. -4. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. +4. `dnd-retrospective-context`: record later clarifications that improve earlier day narratives without corrupting chronology. +5. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. + +## Retrospective Context + +Later pages or days may reveal details relevant to earlier day narratives. For example, a later page may mention Everchard breweries while describing the party leaving Everchard, even though the Day 1 Everchard description has already been cleaned. + +When this happens, prefer adding a clearly marked `Retrospective Context` section to the relevant cleaned day file instead of rewriting the original narrative as if the information had been known at the time. Every retrospective note must cite the later source page or day that revealed the information. + +Use this style: + +```text +Retrospective Context +Later notes on page 4 establish that Everchard has breweries, observed as the party left town. This expands the earlier Day 1 town description but was not explicitly recorded on Day 1. +Source: data/2-pages/4.txt +``` + +If a cleaned day already has a `Retrospective Context` section, append new sourced notes there. Do not duplicate an existing retrospective note. ## Current Campaign Context diff --git a/data/4-days-cleaned/day-01.txt b/data/4-days-cleaned/day-01.txt index 7efbb2b..b85f63b 100644 --- a/data/4-days-cleaned/day-01.txt +++ b/data/4-days-cleaned/day-01.txt @@ -39,3 +39,17 @@ The pig investigation offered 1 gp each. The hostel was linked to anti-tax funds Clues, Mysteries, and Open Threads The missing pigs, missing sheep, missing cat, and lack of rats all point to broader disappearances. Town memories and physical records are unreliable: keys changed number, Gelissa was forgotten and remembered, the jail location shifted, and militia history no longer makes sense. Malcolm Donovan was magically altered into a stitched creature. Guardwel, the Terror of the Sands, may be linked to a dark-magic sphinx that experiments on itself and consumes souls. Bushhunter arrived around the same time the winter apple trees began fruiting and is associated with pipes, tubes, giant bugs, and weapon work. + +Retrospective Context + +- Later notes on page 4 establish that the Thornhollows farm census was dated April 4th and listed John, Sarah, Annabella, Isabella, Clara bella, and paternal grandmother Bella. This clarifies the earlier Day 1 references to John's three daughters as Annabel / Isabelle / Clarabella and adds Sarah and Bella to the family context, but was not explicitly recorded at that point. + Source: data/2-pages/4.txt + +- Later notes on page 4 establish that Thornhollows Farm had a farmhouse, three orchards, a stable, a vegetable garden, two outbuildings backing onto a hedged sty, grazing rights near the edge of the swamplands, and that the party passed orchards and a brewery on the walk there. This expands the earlier Day 1 town and farm geography around Everchurch, orchards, pigs, and local food production, but was not explicitly recorded on Day 1. + Source: data/2-pages/4.txt + +- Later notes on pages 4 and 5 establish that the pig records had been inconsistent for about one month, around the time Sarah left and the black cat disappeared; six pigs were remembered as frog losses, while six others were missing without being remembered. This clarifies the earlier Day 1 oddities around missing pigs, Bess's missing cat, the absence of rats, and unreliable records or memories. + Source: data/2-pages/4.txt; data/2-pages/5.txt + +- Later notes on page 5 establish that bones in the swamp appeared to belong to pigs and sheep. This clarifies the earlier Day 1 rumour that the shepherd might be missing sheep and links it to the swamp and frog threat. + Source: data/2-pages/5.txt diff --git a/data/4-days-cleaned/day-02.txt b/data/4-days-cleaned/day-02.txt index 3048ef9..90e0a4c 100644 --- a/data/4-days-cleaned/day-02.txt +++ b/data/4-days-cleaned/day-02.txt @@ -33,3 +33,8 @@ The farm offered 100 gp to clear the frogs, with 50 gp already paid. Cleara gave Clues, Mysteries, and Open Threads The pig records contradict both memory and reality: there should be fifty-seven, records say fifty-one, and forty-six are present. Six pigs are remembered as frog losses, while six more are missing without being remembered. The problems began around Sarah's departure and around the black cat's disappearance one month earlier. The frog-like tracks suggest an eight-foot frog, and sheep bones in the swamp connect the pig problem to the sheep farmer. The craven dogs' ribbited mimicry and the massive moths may be clues to the swamp threat. + +Retrospective Context + +- Later notes on page 5, after Day 3 begins, establish that the farm district lacked sleep and that the swamp seemed to be trickling into the farm. This clarifies the Day 2 overnight stay at Thornhollows Farm and the swamp's influence on the farm, but was not explicitly recorded before the party stayed there. + Source: data/2-pages/5.txt diff --git a/data/5-retrospective/.gitkeep b/data/5-retrospective/.gitkeep new file mode 100644 index 0000000..e69de29 -
8950d84Update pipelineby Bas Mostert
.agents/skills/dnd-clean-day-narrative/SKILL.md | 11 +++++++++++ .agents/skills/dnd-notes-pipeline/SKILL.md | 18 ++++++++++++------ .agents/skills/dnd-split-pages-into-days/SKILL.md | 23 +++++++++++++++++++---- AGENTS.md | 6 ++++-- 4 files changed, 46 insertions(+), 12 deletions(-)Show diff
diff --git a/.agents/skills/dnd-clean-day-narrative/SKILL.md b/.agents/skills/dnd-clean-day-narrative/SKILL.md index 6928cd8..521caa6 100644 --- a/.agents/skills/dnd-clean-day-narrative/SKILL.md +++ b/.agents/skills/dnd-clean-day-narrative/SKILL.md @@ -2,6 +2,8 @@ Use this skill to process one raw in-game day file from `data/3-days` into a detailed, story-based narrative in `data/4-days-cleaned`. +This stage should only clean confirmed-complete days. The day-based pipeline intentionally lags one in-game day behind image/page processing, so the newest apparent day should remain uncleaned until the next day has clearly started in the source transcriptions. + ## Inputs - Raw day files: `data/3-days/*.txt` @@ -16,6 +18,14 @@ Use this skill to process one raw in-game day file from `data/3-days` into a det - Process one day at a time unless the user explicitly asks for multiple days. - Do not reprocess or overwrite an existing cleaned day file unless the user explicitly asks. - If all candidate days already have cleaned outputs, report that there is nothing new to clean. +- Do not clean a raw day if it appears to be the latest unconfirmed day and there is no clear next-day marker in `data/2-pages`. + +## Completeness Requirement + +- Prefer cleaning only raw day files produced by `dnd-split-pages-into-days`, because that skill should only write confirmed-complete days. +- Before cleaning the newest raw day, verify that `data/2-pages` contains a clear marker for the next in-game day. +- If that marker is missing or ambiguous, skip cleaning and report that the day is pending more source pages or user confirmation. +- Never create `data/4-days-cleaned/<day>.txt` from partial current-day notes unless the user explicitly asks to override the lag rule. ## Cleaning Prompt @@ -64,4 +74,5 @@ When finished, report: - Cleaned day file created. - Source day file used. - Existing cleaned files skipped. +- Candidate days skipped because the next-day marker is not confirmed. - Any uncertainty or missing context that should be reviewed by the user. diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md index 1ca52d1..d03b5de 100644 --- a/.agents/skills/dnd-notes-pipeline/SKILL.md +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -12,16 +12,20 @@ Use this skill to coordinate the full Pentacity handwritten notes processing pip The pipeline is incremental. Never reprocess existing outputs unless the user explicitly asks to reprocess or overwrite them. +The day-based stages intentionally lag one complete in-game day behind image/page processing. Do not split or clean the latest apparent day until a source page or transcription clearly shows the next in-game day starting. + ## Workflow 1. Inspect the repository layout and confirm the expected data directories exist. 2. Identify unprocessed source images in `data/1-source`. 3. Run the page transcription stage for unprocessed images. 4. Identify page transcriptions that have not yet been assigned to day files. -5. Run the day-splitting stage for missing day files. -6. Identify raw day files without matching cleaned outputs. -7. Run the cleaned narrative stage one day at a time. -8. Stop and ask the user whenever a page number, day boundary, or filename would be uncertain. +5. Determine which in-game days are confirmed complete by locating the clear start of the next in-game day. +6. Run the day-splitting stage only for missing confirmed-complete day files. +7. Identify confirmed-complete raw day files without matching cleaned outputs. +8. Run the cleaned narrative stage one confirmed-complete day at a time. +9. Skip and report the latest apparent day if no following day marker exists yet. +10. Stop and ask the user whenever a page number, day boundary, completeness marker, or filename would be uncertain. ## User Confirmation Triggers @@ -31,13 +35,14 @@ Ask the user before proceeding if: - Two source images appear to have the same page number. - A day marker is illegible or ambiguous. - A page appears to contain notes for multiple days but the split point is unclear. +- The next-day marker needed to prove a day is complete is missing, illegible, or ambiguous and the user wants to override the lag rule. - An output file already exists and would need to be overwritten. ## Quality Checks - After transcription, verify that every newly processed image has a corresponding `data/2-pages/<page>.txt` file. -- After day splitting, verify that every newly identified day has a `data/3-days/<day>.txt` file. -- After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.txt` file. +- After day splitting, verify that every newly written day has a confirmed next-day marker in `data/2-pages`. +- After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.txt` file and was confirmed complete before cleaning. - Report skipped files and the reason they were skipped. ## Final Report @@ -48,5 +53,6 @@ At the end of a pipeline run, report: - New raw day files created. - New cleaned day narratives created. - Files skipped because they already existed. +- Latest apparent day skipped because the next-day marker has not appeared yet. - Any user confirmations still needed. - The recommended next pipeline action, if any. diff --git a/.agents/skills/dnd-split-pages-into-days/SKILL.md b/.agents/skills/dnd-split-pages-into-days/SKILL.md index 6949b1b..4ebaadc 100644 --- a/.agents/skills/dnd-split-pages-into-days/SKILL.md +++ b/.agents/skills/dnd-split-pages-into-days/SKILL.md @@ -2,6 +2,8 @@ Use this skill to combine page transcriptions from `data/2-pages` into one raw notes file per in-game day in `data/3-days`. +This stage intentionally lags one in-game day behind page transcription. A day must not be written until the transcriptions contain a clear start marker for the following in-game day. + ## Inputs - Page transcriptions: `data/2-pages/*.txt` @@ -16,6 +18,14 @@ Use this skill to combine page transcriptions from `data/2-pages` into one raw n - Do not reprocess or overwrite an existing `data/3-days/<day>.txt` file unless the user explicitly asks. - If only some days are missing, process only the missing days. - If a page spans an existing day and a missing day, preserve the existing day and only write the missing day after confirming the boundary is clear. +- Do not create a day file for the latest apparent in-game day unless a later page clearly shows the next day starting. + +## Completeness Requirement + +- Treat an in-game day as complete only when the source transcriptions include an unambiguous marker for the start of the next in-game day. +- The next-day marker may appear on the same page or a later page, but it must be visible in `data/2-pages` before writing the previous day to `data/3-days`. +- If the current latest day has notes but no confirmed next-day marker, leave it unprocessed and report it as pending more source pages. +- If the next-day marker is present but ambiguous, ask the user before writing any affected day files. ## Day Naming @@ -29,10 +39,12 @@ Use this skill to combine page transcriptions from `data/2-pages` into one raw n 1. List `data/2-pages/*.txt` and sort them by numeric page number. 2. Read only the page files needed to identify unprocessed days. 3. Identify in-game day starts and day transitions from headings or note text. -4. Preserve text that appears before the first explicit day marker by assigning it to the current known day only if the context is clear. If unclear, ask the user. -5. Combine all page text belonging to each in-game day. -6. Write one file per missing day in `data/3-days/<day>.txt`. -7. Do not clean, rewrite, or narrativize the text at this stage. +4. Determine which days are confirmed complete by finding the clear start of the following in-game day. +5. Preserve text that appears before the first explicit day marker by assigning it to the current known day only if the context is clear. If unclear, ask the user. +6. Combine all page text belonging to each confirmed-complete in-game day. +7. Write one file per missing confirmed-complete day in `data/3-days/<day>.txt`. +8. Leave the latest apparent day unwritten if no following day marker exists yet. +9. Do not clean, rewrite, or narrativize the text at this stage. ## Output Format @@ -52,6 +64,8 @@ Then include the relevant transcribed notes for that day. - When a new in-game day starts mid-page, split the text at that point. - If a day transition is implied but not explicit, include a note like `[uncertain day boundary]` and ask the user before writing if the uncertainty affects file boundaries. +- Do not use an implied transition as the completeness proof for the previous day. The next day must be clearly shown. +- Do not write partial current-day notes just because they are the newest available notes. - Keep duplicate references if they appear in source notes; do not deduplicate facts here. ## Completion Report @@ -60,5 +74,6 @@ When finished, report: - Day files created. - Day files skipped because they already existed. +- Latest apparent day skipped because no next-day marker exists yet. - Source pages used. - Any uncertain day boundaries or pages that need user input. diff --git a/AGENTS.md b/AGENTS.md index 3397e3a..38ef868 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -15,6 +15,8 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not - Do not reprocess an image, page, day, or cleaned day if the corresponding output already exists, unless the user explicitly asks to reprocess or overwrite it. - If a page number cannot be read from the top-right corner of a source image, or the guess is uncertain, ask the user to provide or confirm the page number before writing the transcription. - If an in-game day boundary is ambiguous, ask the user for confirmation before writing or splitting the affected day files. +- Do not run day-specific processing for the latest apparent in-game day unless there is a later source page or transcription that clearly shows the next in-game day starting. The day-based pipeline intentionally lags one complete day behind image/page processing. +- Treat a day as complete only when the next day start is visible and unambiguous in the transcribed notes. If the next day has not yet appeared, leave the current day unprocessed in `data/3-days` and `data/4-days-cleaned`. - Preserve chronology. Do not reorder events except to group text under the correct in-game day. - Preserve uncertainty. If source notes use uncertain names or spellings, keep the uncertainty rather than silently normalizing it. Examples: `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, `Velenth/Valenth`. - Preserve campaign-specific directional and calendar terms such as `airwise`, `earthwise`, `firewise`, `waterwise`, `Tri-moon`, `Timnor`, and `Tan`. @@ -26,8 +28,8 @@ This repository stores and processes handwritten Dungeons & Dragons campaign not Use the skills in `.agents/skills` for repeatable work: 1. `dnd-transcribe-pages`: transcribe unprocessed handwritten images from `data/1-source` into `data/2-pages/<page>.txt`. -2. `dnd-split-pages-into-days`: split page transcriptions from `data/2-pages` into per-day files in `data/3-days`. -3. `dnd-clean-day-narrative`: clean each raw day from `data/3-days` into a detailed story-based narrative in `data/4-days-cleaned`. +2. `dnd-split-pages-into-days`: split only confirmed-complete day transcriptions from `data/2-pages` into per-day files in `data/3-days`. +3. `dnd-clean-day-narrative`: clean only confirmed-complete raw days from `data/3-days` into detailed story-based narratives in `data/4-days-cleaned`. 4. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. ## Current Campaign Context -
4ad83aeInitial batchby Bas Mostert
data/1-source/IMG_5116.png | Bin 0 -> 2842840 bytes data/1-source/IMG_5117.png | Bin 0 -> 2804917 bytes data/1-source/IMG_5118.png | Bin 0 -> 2797870 bytes data/1-source/IMG_5119.png | Bin 0 -> 2950964 bytes data/2-pages/1.txt | 68 ++++++++++++++++++ data/2-pages/2.txt | 57 +++++++++++++++ data/2-pages/3.txt | 54 ++++++++++++++ data/2-pages/4.txt | 60 ++++++++++++++++ data/2-pages/5.txt | 48 +++++++++++++ data/3-days/day-01.txt | 159 +++++++++++++++++++++++++++++++++++++++++ data/3-days/day-02.txt | 99 +++++++++++++++++++++++++ data/4-days-cleaned/day-01.txt | 41 +++++++++++ data/4-days-cleaned/day-02.txt | 35 +++++++++ 13 files changed, 621 insertions(+)Show diff
diff --git a/data/1-source/IMG_5116.png b/data/1-source/IMG_5116.png new file mode 100644 index 0000000..cfca911 Binary files /dev/null and b/data/1-source/IMG_5116.png differ diff --git a/data/1-source/IMG_5117.png b/data/1-source/IMG_5117.png new file mode 100644 index 0000000..573a5d2 Binary files /dev/null and b/data/1-source/IMG_5117.png differ diff --git a/data/1-source/IMG_5118.png b/data/1-source/IMG_5118.png new file mode 100644 index 0000000..63fb5aa Binary files /dev/null and b/data/1-source/IMG_5118.png differ diff --git a/data/1-source/IMG_5119.png b/data/1-source/IMG_5119.png new file mode 100644 index 0000000..42144bd Binary files /dev/null and b/data/1-source/IMG_5119.png differ diff --git a/data/2-pages/1.txt b/data/2-pages/1.txt new file mode 100644 index 0000000..d0400c3 --- /dev/null +++ b/data/2-pages/1.txt @@ -0,0 +1,68 @@ +Page: 1 +Source: data/1-source/IMG_5115.png + +Transcription: + +Everchurch +Swampy land - fruit trees orchards + +Winter - 1 orchard has trees in bloom - [unclear/crossed out] + buzzing - bee pollinating & enabling trees + to live - slightly bigger than normal bees. + - dark bark, blue leaves, red fruit (deep) + +Town mix of light & dark woods. +Population [crossed/unclear] 3k +no visible district - larger manor house in centre. + +Cider inn cider +Beeswaxed floor a nice small +half elf playing a lute [unclear/crossed out] music's half elf & human +family resemblance. +Father Burnun - prize fighter +half elf - Gelissa * + +[boxed notes] +Bas - Invar + greying hair - Paladin-looking + had not got the plate +Laura - Dirk + politely +Shawn - Geldrin (the mighty) + gnome wild brown hair + glasses with no glass + +Farmer - old John Thornhollows. 3 daughters + another 3 pigs gone + vanished + [side note:] Annabel / Isabelle / Clarabella + 6 missing but only has the ledgers + for 3. Had a group of around 30 pigs? + +5 keys on the bar - but changed to 4 & no idea +how it changed + +Register with Earl - ? mercenaries. + +Pigs. Daughters keep best books v[unclear] - 1g each to go look. + +Shepherd maybe missing some sheep +Bess - cat missing but no rats recently either + Rats missing too? + +last summer built a hostel - house all the homeless +people but not enough for homeless so letting out. Inn's +not happy. + +go to Earl - half orc (rough looking) black clothing covered with birdy, +geese - missing. + +- Butcher - serving new mushroom burgers since meat not coming + in + +- woman - out of town came to find husband come from Albec + for work no one seen him, saw putting up fences at a farm. + Malcolm Donovan - sent to [unclear: galler?] - Birth mark on back of right hand + +- apply for poverty tax - eligible - slides 2g over to her. + for the anti-tax diff --git a/data/2-pages/2.txt b/data/2-pages/2.txt new file mode 100644 index 0000000..350189c --- /dev/null +++ b/data/2-pages/2.txt @@ -0,0 +1,57 @@ +Page: 2 +Source: data/1-source/IMG_5116.png + +Transcription: + +Funds from the hostel go to the anti-tax +since wife left him - [crossed out: going] disappear + +Census - in spring - 3c for the number. + payable in the morning, ask half elf + +- No trouble in town. + +- Bushhunter - registered Mercenary. + +Last 2 weeks + Bushhunter came to town 2 weeks ago + winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +Invar - delivered weapons but no militia? + order was put in a few months ago {20 weapons + about 5 left. Earl downsizing. 10 armour + can't remember any of the old militia + go to jail & talk to sheriff for current militia + forgetting names. + Bushhunter - had tubes & pipes. + used to do a lot of swords. + +Jail +- now believe should get a package from + a crazy haired gnome. +- location changed. Used to be where hostel + used to be. +- 2 empty cells +- Law - big scar over her eye. +- her, sheriff & other 2 deputies (Bob) +- 11 years always something so old here isn't anything +- no reports of people missing. +- home theft week ago +- Bushhunter doing a sale of giant bugs in frames + last sale 6 days ago +- shepherd had new fence? Yes. + +Terry left town - 2 months ago +Stonejaw passed away +Rob. retired +ralfrex - Bucksmouth somewhere +none left in town +43 used to be hired. + +Part of militia state charter to have sufficient +militia this close to barrier. +1100 militia - 45000 population +Due in a month to check & last visited 5 months +ago diff --git a/data/2-pages/3.txt b/data/2-pages/3.txt new file mode 100644 index 0000000..54898c9 --- /dev/null +++ b/data/2-pages/3.txt @@ -0,0 +1,54 @@ +Page: 3 +Source: data/1-source/IMG_5117.png + +Transcription: + +Nobody remembers [crossed out: Gelissa] Gelissa except +Geldrin. +Invar remembered for a split second + +* see one of the people gets up and walks +out +Chase him, +hood drops face stitched below eye line +mouth missing a rows of teeth, +Bone splint fingers & split tongue. +has Birth mark on right hand. - Malcolm. +was a human male - had to use magic for these +changes. + +Guardwel - Terror of the sands nightmare of the darkness + he will consume your soul + - Tales of the sphinx who learnt dark magic + experimenting on itself. + +- Remembered Isabella and that Gelissa said she + hadn't arrived. - remembered her again. + +look Malcolm to the Jail + Deputy went to get the sheriff - Jeremia + now remembers 3rd Daughter Gelissa + now remembers homeless people. + makes us deputies - we get badges + (Sir Alstir Florent) + +Bar 5th person human warrior - helping +out with us & picked one of the keys +& remembered him all the way +up to when we went fishing +around the time Dirk saw the rat + +Gristak Brinson - mayor + +Day 2 + +Head back to the town hall + +* received whole census for John's pig farm 9:00 + +5th name on the ledger has been scribbled out +claims it was a mistake + +- unemployed & holding's worth <50g - anti-tax criteria + +3g anti-Tax diff --git a/data/2-pages/4.txt b/data/2-pages/4.txt new file mode 100644 index 0000000..bc97a3e --- /dev/null +++ b/data/2-pages/4.txt @@ -0,0 +1,60 @@ +Page: 4 +Source: data/1-source/IMG_5118.png + +Transcription: + +Thornhollows farm Census. April 4th. + +registered {wife Sarah 47 Annabella 18 Clara bella 14. + John 50 Isabella 16 seeing sheep farmers + son + +Paternal grandmother Bella + +2 sounders of pigs 1x matriarch 2x breeding sows + 3x Breeding Boars +1 has 17 female younglings +other has 21 female younglings No males. + +Paid tax as billed. +Farmhouse 3x orchards stable veg garden +2x outbuildings which back onto a hedged sty. + +- planned employment 3x hands. + +- grazing rights for area inc edge of swamp lands. + +walk to Thornhollows Farm. past orchards & brewery. 9:45 + +Farm surrounded by Stone hedge + +Pass 2 ravenhound looking dogs - girl walking with them. black hair +missing from census -> craven dogs, breeding pair, approx 10 - Annabella. + mimicing noise - have puppies. +- younger sister on the porch. - 3 puppies on pillows next to grandma. + +Books - everything tallies until about 1 month +ago. - scribbling out & removed with out explanation +missing 12 pigs in total - think there should be 57 +records say should be 51 they've recorded. +6 missing over the last 2 weeks +actually 46 +3 last night before last +3 a week ago. + +- missing pigs went over night. + +* inconsistencies start about the time Sarah left. + +45 +Nights of disappearances. +not looked up at night. + +cat is missing too +about 1 month ago +(Black cat) + +- large door to enter the hedged area looks densely grown +confident there is no dig throughs. +hill giving 4 foot of hedge to get in but no +advantage to get out diff --git a/data/2-pages/5.txt b/data/2-pages/5.txt new file mode 100644 index 0000000..6f0c08a --- /dev/null +++ b/data/2-pages/5.txt @@ -0,0 +1,48 @@ +Page: 5 +Source: data/1-source/IMG_5119.png + +Transcription: + +Dirk finds big divots that look like foot +prints - looks like a frog - approx 8 foot frog. + ravenhounds ribbited at dark + started few weeks + ago - take the pigs while hunting. +Seem to head to swamp + +massive moths. been around for a while. + +Q - 100g to clear the frogs. - had 50g so far + +- 6 pigs missing to the frogs as they remember +these but 6 others missing they don't remember + +go through swamp +feels like we are being watched +massive moth appears during the day... +stealth off & get attacked by a frog - killed 2 + +find bones that appear to belong to pigs & sheep 16:00 + +Back to farmhouse +Cleara gives a tonic where we can use hit dice. +* Potion of recovery. * Succour +stay over the night. + +Day 3 + +Head over to sheep farmer. +Geldrin accidentally cast a spell sat on, +Dirks shoulders. Tore his shoulders apart like +Malcolm's wounds. +stop for short rest 10:20 +Birds circling over head Goldfinch & Starling +District lack of sleep at the farm swamp seems +to be trickling into the farm. + +30 yearish Man appears to be trampled by a head of sheep. +looks like some human sized prints 4x sets. +one looks to go to & from the barn. +we can investigate - Drew crime scene +hear something trying to breakout of the barn +run to farmhouse door has been "latched in" +Table smashed to pieces various debris about diff --git a/data/3-days/day-01.txt b/data/3-days/day-01.txt new file mode 100644 index 0000000..81f1ddd --- /dev/null +++ b/data/3-days/day-01.txt @@ -0,0 +1,159 @@ +Day: 1 +Date: unknown +Source pages: 1, 2, 3 + +Raw notes: + +Everchurch +Swampy land - fruit trees orchards + +Winter - 1 orchard has trees in bloom - [unclear/crossed out] + buzzing - bee pollinating & enabling trees + to live - slightly bigger than normal bees. + - dark bark, blue leaves, red fruit (deep) + +Town mix of light & dark woods. +Population [crossed/unclear] 3k +no visible district - larger manor house in centre. + +Cider inn cider +Beeswaxed floor a nice small +half elf playing a lute [unclear/crossed out] music's half elf & human +family resemblance. +Father Burnun - prize fighter +half elf - Gelissa * + +[boxed notes] +Bas - Invar + greying hair - Paladin-looking + had not got the plate +Laura - Dirk + politely +Shawn - Geldrin (the mighty) + gnome wild brown hair + glasses with no glass + +Farmer - old John Thornhollows. 3 daughters + another 3 pigs gone + vanished + [side note:] Annabel / Isabelle / Clarabella + 6 missing but only has the ledgers + for 3. Had a group of around 30 pigs? + +5 keys on the bar - but changed to 4 & no idea +how it changed + +Register with Earl - ? mercenaries. + +Pigs. Daughters keep best books v[unclear] - 1g each to go look. + +Shepherd maybe missing some sheep +Bess - cat missing but no rats recently either + Rats missing too? + +last summer built a hostel - house all the homeless +people but not enough for homeless so letting out. Inn's +not happy. + +go to Earl - half orc (rough looking) black clothing covered with birdy, +geese - missing. + +- Butcher - serving new mushroom burgers since meat not coming + in + +- woman - out of town came to find husband come from Albec + for work no one seen him, saw putting up fences at a farm. + Malcolm Donovan - sent to [unclear: galler?] - Birth mark on back of right hand + +- apply for poverty tax - eligible - slides 2g over to her. + for the anti-tax + +Funds from the hostel go to the anti-tax +since wife left him - [crossed out: going] disappear + +Census - in spring - 3c for the number. + payable in the morning, ask half elf + +- No trouble in town. + +- Bushhunter - registered Mercenary. + +Last 2 weeks + Bushhunter came to town 2 weeks ago + winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +Invar - delivered weapons but no militia? + order was put in a few months ago {20 weapons + about 5 left. Earl downsizing. 10 armour + can't remember any of the old militia + go to jail & talk to sheriff for current militia + forgetting names. + Bushhunter - had tubes & pipes. + used to do a lot of swords. + +Jail +- now believe should get a package from + a crazy haired gnome. +- location changed. Used to be where hostel + used to be. +- 2 empty cells +- Law - big scar over her eye. +- her, sheriff & other 2 deputies (Bob) +- 11 years always something so old here isn't anything +- no reports of people missing. +- home theft week ago +- Bushhunter doing a sale of giant bugs in frames + last sale 6 days ago +- shepherd had new fence? Yes. + +Terry left town - 2 months ago +Stonejaw passed away +Rob. retired +ralfrex - Bucksmouth somewhere +none left in town +43 used to be hired. + +Part of militia state charter to have sufficient +militia this close to barrier. +1100 militia - 45000 population +Due in a month to check & last visited 5 months +ago + +Nobody remembers [crossed out: Gelissa] Gelissa except +Geldrin. +Invar remembered for a split second + +* see one of the people gets up and walks +out +Chase him, +hood drops face stitched below eye line +mouth missing a rows of teeth, +Bone splint fingers & split tongue. +has Birth mark on right hand. - Malcolm. +was a human male - had to use magic for these +changes. + +Guardwel - Terror of the sands nightmare of the darkness + he will consume your soul + - Tales of the sphinx who learnt dark magic + experimenting on itself. + +- Remembered Isabella and that Gelissa said she + hadn't arrived. - remembered her again. + +look Malcolm to the Jail + Deputy went to get the sheriff - Jeremia + now remembers 3rd Daughter Gelissa + now remembers homeless people. + makes us deputies - we get badges + (Sir Alstir Florent) + +Bar 5th person human warrior - helping +out with us & picked one of the keys +& remembered him all the way +up to when we went fishing +around the time Dirk saw the rat + +Gristak Brinson - mayor diff --git a/data/3-days/day-02.txt b/data/3-days/day-02.txt new file mode 100644 index 0000000..7f67385 --- /dev/null +++ b/data/3-days/day-02.txt @@ -0,0 +1,99 @@ +Day: 2 +Date: unknown +Source pages: 3, 4, 5 + +Raw notes: + +Day 2 + +Head back to the town hall + +* received whole census for John's pig farm 9:00 + +5th name on the ledger has been scribbled out +claims it was a mistake + +- unemployed & holding's worth <50g - anti-tax criteria + +3g anti-Tax + +Thornhollows farm Census. April 4th. + +registered {wife Sarah 47 Annabella 18 Clara bella 14. + John 50 Isabella 16 seeing sheep farmers + son + +Paternal grandmother Bella + +2 sounders of pigs 1x matriarch 2x breeding sows + 3x Breeding Boars +1 has 17 female younglings +other has 21 female younglings No males. + +Paid tax as billed. +Farmhouse 3x orchards stable veg garden +2x outbuildings which back onto a hedged sty. + +- planned employment 3x hands. + +- grazing rights for area inc edge of swamp lands. + +walk to Thornhollows Farm. past orchards & brewery. 9:45 + +Farm surrounded by Stone hedge + +Pass 2 ravenhound looking dogs - girl walking with them. black hair +missing from census -> craven dogs, breeding pair, approx 10 - Annabella. + mimicing noise - have puppies. +- younger sister on the porch. - 3 puppies on pillows next to grandma. + +Books - everything tallies until about 1 month +ago. - scribbling out & removed with out explanation +missing 12 pigs in total - think there should be 57 +records say should be 51 they've recorded. +6 missing over the last 2 weeks +actually 46 +3 last night before last +3 a week ago. + +- missing pigs went over night. + +* inconsistencies start about the time Sarah left. + +45 +Nights of disappearances. +not looked up at night. + +cat is missing too +about 1 month ago +(Black cat) + +- large door to enter the hedged area looks densely grown +confident there is no dig throughs. +hill giving 4 foot of hedge to get in but no +advantage to get out + +Dirk finds big divots that look like foot +prints - looks like a frog - approx 8 foot frog. + ravenhounds ribbited at dark + started few weeks + ago - take the pigs while hunting. +Seem to head to swamp + +massive moths. been around for a while. + +Q - 100g to clear the frogs. - had 50g so far + +- 6 pigs missing to the frogs as they remember +these but 6 others missing they don't remember + +go through swamp +feels like we are being watched +massive moth appears during the day... +stealth off & get attacked by a frog - killed 2 + +find bones that appear to belong to pigs & sheep 16:00 + +Back to farmhouse +Cleara gives a tonic where we can use hit dice. +* Potion of recovery. * Succour +stay over the night. diff --git a/data/4-days-cleaned/day-01.txt b/data/4-days-cleaned/day-01.txt new file mode 100644 index 0000000..7efbb2b --- /dev/null +++ b/data/4-days-cleaned/day-01.txt @@ -0,0 +1,41 @@ +Day: 1 +Date: unknown +Source pages: 1, 2, 3 + +Narrative + +The campaign began in Everchurch, a town in swampy land with fruit trees and orchards. Although it was winter, one orchard had trees in bloom. Bees, slightly larger than normal, were pollinating and apparently enabling the trees to live. The trees had dark bark, blue leaves, and deep red fruit. The town was a mix of light and dark woods, had a population of roughly 3,000, and showed no obvious districts, though a larger manor house stood in the centre. + +The party first visited the Cider Inn Cider, a small inn with a beeswaxed floor. A half-elf was playing a lute, and there was a noted resemblance between the half-elf musician and a human. Early local names included Father Burnun, a prize fighter, and Gelissa, a half-elf. The player characters noted were Invar, a greying paladin-looking figure who did not yet have plate armour; Dirk; and Geldrin, a gnome with wild brown hair and glasses with no glass. + +The first job came from old John Thornhollows, a farmer with three daughters. Another three pigs had vanished, but there was already confusion in the numbers: six pigs seemed to be missing, yet the ledgers only accounted for three, and John may have had a group of around thirty pigs. The daughters' names were noted as Annabel, Isabelle, and Clarabella. The party also noticed a memory or reality inconsistency at the bar: five keys became four, with nobody knowing how it changed. The daughters were said to keep the best books, and the reward for looking into the pigs was 1 gp each. A shepherd might also be missing sheep. Bess had a missing cat, and the town also seemed to have no rats recently. + +Everchurch had built a hostel the previous summer to house homeless people, but it had not been enough for that purpose and was also being let out, annoying the inns. The Earl, a rough-looking half-orc in black clothing covered with bird or goose motifs, was linked to the hostel. Funds from the hostel were apparently going to the anti-tax. A woman applying for poverty tax was deemed eligible and slid 2 gp over for the anti-tax. The census was due in spring, charging 3 cp per number, payable in the morning. The anti-tax criteria included being unemployed and having holdings worth less than 50 gp; a 3 gp anti-tax amount was also noted. + +Other early rumours and observations deepened the mystery. A butcher was serving new mushroom burgers because meat was not coming in. A woman from out of town had come looking for her husband, Malcolm Donovan, from Albec. Nobody had seen him, though he had been putting up fences at a farm. Malcolm had a birthmark on the back of his right hand and may have been sent to [unclear: galler?]. The town otherwise claimed there was no trouble. + +Bushhunter was identified as a registered mercenary. He had come to town two weeks earlier, around the same time the winter apple trees started to fruit. He was associated with tubes and pipes and had previously done a lot of swords. The last third moon had been one week earlier. + +Invar had delivered weapons, but the militia situation was wrong. An order had been put in a few months earlier for twenty weapons and ten suits of armour, yet only about five militia were left. The explanation given was that the Earl was downsizing. People could not remember the old militia, and the party was directed to the jail and sheriff for current militia names. + +At the jail, reality or memory seemed to have shifted again. The jail was now believed to be where a package from a crazy-haired gnome should arrive, and its location had changed: it used to be where the hostel was. It had two empty cells. The law officer had a large scar over her eye; the sheriff had two deputies, including Bob. The locals said that in eleven years there was always something, so something old in town was not unusual. There were no official reports of missing people, though there had been a home theft a week earlier. Bushhunter had held a sale of giant bugs in frames, with the last sale six days earlier. The shepherd had apparently had a new fence. + +The militia records and remembered names were inconsistent. Terry had left town two months ago, Stonejaw had passed away, Rob had retired, and Ralfrex was somewhere in Bucksmouth, leaving none of them in town. Forty-three people used to be hired. The militia state charter required a sufficient militia this close to the barrier: 1,100 militia for a 45,000 population was noted. A check was due in a month, with the last visit five months earlier. + +The supernatural memory problem became clearer when nobody remembered Gelissa except Geldrin. Invar remembered her only for a split second. Then the party saw one of the people get up and walk out. They chased him. When his hood dropped, his face was stitched below the eye line, his mouth was missing a row of teeth, his fingers were bone-splinted, and his tongue was split. He had Malcolm's birthmark on his right hand. He had been a human male, but magic had been used to create these changes. + +The name Guardwel was connected to this horror: the Terror of the Sands, nightmare of the darkness, said to consume souls. Tales described a sphinx who learned dark magic and experimented on itself. After the encounter, people remembered Isabella, and remembered that Gelissa had said she had not arrived. Gelissa herself was remembered again. + +The party took Malcolm to the jail. A deputy went to get Sheriff Jeremia. Jeremia now remembered the third daughter, Gelissa, and also remembered the homeless people. The party were made deputies and given badges under Sir Alstir Florent. Another memory fragment emerged at the bar: there had been a fifth person, a human warrior, helping the party and picking one of the keys. The group remembered him all the way up to when they went fishing, around the time Dirk saw the rat. Gristak Brinson was noted as mayor. + +People, Factions, and Places Mentioned + +Everchurch; Cider Inn Cider; John Thornhollows; Annabel, Isabelle, and Clarabella; Bess; the Earl; Malcolm Donovan of Albec; Bushhunter; Invar; Dirk; Geldrin; Father Burnun; Gelissa; Sheriff Jeremia; Bob; Terry; Stonejaw; Rob; Ralfrex; Sir Alstir Florent; Gristak Brinson; Guardwel, Terror of the Sands; the barrier; Bucksmouth. + +Items, Rewards, and Resources + +The pig investigation offered 1 gp each. The hostel was linked to anti-tax funds. The poverty or anti-tax notes included 2 gp slid over, 3 cp per census number, and a 3 gp anti-tax. Invar had delivered weapons connected to an order for twenty weapons and ten suits of armour. The jail gave the party deputy badges. + +Clues, Mysteries, and Open Threads + +The missing pigs, missing sheep, missing cat, and lack of rats all point to broader disappearances. Town memories and physical records are unreliable: keys changed number, Gelissa was forgotten and remembered, the jail location shifted, and militia history no longer makes sense. Malcolm Donovan was magically altered into a stitched creature. Guardwel, the Terror of the Sands, may be linked to a dark-magic sphinx that experiments on itself and consumes souls. Bushhunter arrived around the same time the winter apple trees began fruiting and is associated with pipes, tubes, giant bugs, and weapon work. diff --git a/data/4-days-cleaned/day-02.txt b/data/4-days-cleaned/day-02.txt new file mode 100644 index 0000000..3048ef9 --- /dev/null +++ b/data/4-days-cleaned/day-02.txt @@ -0,0 +1,35 @@ +Day: 2 +Date: unknown; Thornhollows farm census dated April 4th +Source pages: 3, 4, 5 + +Narrative + +On Day 2, the party headed back to the town hall and received the whole census for John's pig farm at 9:00. A fifth name on the ledger had been scribbled out, and someone claimed it had been a mistake. The anti-tax criteria were again noted: unemployed and holdings worth less than 50 gp. A 3 gp anti-tax amount was recorded. + +The Thornhollows farm census, dated April 4th, listed Sarah, wife, age 47; John, age 50; Annabella, age 18; Isabella, age 16; and Clara bella, age 14. Clara bella was linked to seeing the sheep farmer's son. Paternal grandmother Bella was also listed. The farm had two sounders of pigs: one matriarch, three breeding boars, two breeding sows, one sow with seventeen female younglings, and another with twenty-one female younglings. No males were listed among the younglings. The tax had been paid as billed. + +The property included a farmhouse, three orchards, a stable, a vegetable garden, and two outbuildings backing onto a hedged sty. Planned employment was three hands, and the farm held grazing rights for an area including the edge of the swamplands. + +At about 9:45, the party walked to Thornhollows Farm, passing orchards and a brewery. The farm was surrounded by a stone hedge. On the way in, they passed two ravenhound-looking dogs being walked by a black-haired girl. These were craven dogs, a breeding pair with puppies, and they could mimic noises. The girl was Annabella, apparently missing from the census note as read in the moment. A younger sister was on the porch, and three puppies lay on pillows next to grandma. + +The books showed that everything tallied until about one month earlier, when names or numbers began being scribbled out and removed without explanation. The pig count was inconsistent. Twelve pigs seemed to be missing in total. The party thought there should be fifty-seven pigs, while records said there should be fifty-one, and the actual count was forty-six. Six pigs had gone missing over the last two weeks: three the night before last, and three a week earlier. The missing pigs vanished overnight. The inconsistencies began around the time Sarah left. A black cat had also been missing for about one month. Nights of disappearances were noted, but nobody had looked up at night. + +The hedged sty had a large door and looked densely grown. The party was confident there were no dig-throughs. A hill gave about four feet of hedge to get in, but there was no advantage for getting out. + +Dirk found large divots that looked like footprints. They looked frog-like, suggesting an approximately eight-foot frog. The ravenhounds had ribbited at the dark, and this had started a few weeks earlier. The tracks seemed to head toward the swamp. Massive moths had also been around for a while. The farm offered 100 gp to clear the frogs, with 50 gp already paid so far. + +The family remembered six pigs missing to the frogs, but six other pigs were missing in a way they did not remember. The party went through the swamp and felt as if they were being watched. A massive moth appeared during the day. The party tried stealth but were attacked by frogs and killed two. At 16:00, they found bones that appeared to belong to pigs and sheep. + +The party returned to the farmhouse. Cleara gave them a tonic that let them use hit dice, noted as a Potion of Recovery or Succour. The party stayed overnight at the farm. + +People, Factions, and Places Mentioned + +John Thornhollows; Sarah; Annabella; Isabella; Clara bella; paternal grandmother Bella; Cleara; Dirk; the sheep farmer's son; Thornhollows Farm; the town hall; the brewery; the swamp; craven dogs or ravenhound-like dogs. + +Items, Rewards, and Resources + +The farm offered 100 gp to clear the frogs, with 50 gp already paid. Cleara gave the party a tonic identified as a Potion of Recovery or Succour, allowing use of hit dice. The farm records and census are important evidence, especially the scribbled-out fifth name and contradictory pig counts. + +Clues, Mysteries, and Open Threads + +The pig records contradict both memory and reality: there should be fifty-seven, records say fifty-one, and forty-six are present. Six pigs are remembered as frog losses, while six more are missing without being remembered. The problems began around Sarah's departure and around the black cat's disappearance one month earlier. The frog-like tracks suggest an eight-foot frog, and sheep bones in the swamp connect the pig problem to the sheep farmer. The craven dogs' ribbited mimicry and the massive moths may be clues to the swamp threat. -
82ad233Initial pipelineby Bas Mostert
.agents/skills/dnd-clean-day-narrative/SKILL.md | 67 +++++++++++++++++++++++ .agents/skills/dnd-notes-pipeline/SKILL.md | 52 ++++++++++++++++++ .agents/skills/dnd-split-pages-into-days/SKILL.md | 64 ++++++++++++++++++++++ .agents/skills/dnd-transcribe-pages/SKILL.md | 59 ++++++++++++++++++++ AGENTS.md | 37 +++++++++++++ 5 files changed, 279 insertions(+)Show diff
diff --git a/.agents/skills/dnd-clean-day-narrative/SKILL.md b/.agents/skills/dnd-clean-day-narrative/SKILL.md new file mode 100644 index 0000000..6928cd8 --- /dev/null +++ b/.agents/skills/dnd-clean-day-narrative/SKILL.md @@ -0,0 +1,67 @@ +# Skill: D&D Clean Day Narrative + +Use this skill to process one raw in-game day file from `data/3-days` into a detailed, story-based narrative in `data/4-days-cleaned`. + +## Inputs + +- Raw day files: `data/3-days/*.txt` +- Existing cleaned day files: `data/4-days-cleaned/*.txt` + +## Outputs + +- `data/4-days-cleaned/<day>.txt`, matching the input day filename. + +## Idempotency + +- Process one day at a time unless the user explicitly asks for multiple days. +- Do not reprocess or overwrite an existing cleaned day file unless the user explicitly asks. +- If all candidate days already have cleaned outputs, report that there is nothing new to clean. + +## Cleaning Prompt + +Use this prompt as the core instruction for each day: + +> Give me a story-based, detailed narrative of everything that has happened so far. Make sure no facts, items gained or other potentially very important details are left out. This narrative will form the basis of a searchable wiki, so details are important. + +Write the result to `data/4-days-cleaned`. + +## Narrative Requirements + +- Preserve chronology within the day. +- Write in clear prose, not bullet-point session notes, unless a short list is necessary for dense item inventories. +- Keep all potentially useful searchable details: names, places, items, rewards, money, factions, dates, page references, dreams, clues, rumours, warnings, inscriptions, passwords, spell effects, creature descriptions, deaths, rescued people, travel plans, and unresolved questions. +- Preserve uncertainty and variant spellings from the source. Do not silently correct uncertain names. +- Do not invent motivations, explanations, or causal links not present in the source notes. +- Do not remove odd details just because they seem minor; minor details often become important later. +- If something is unclear, mark it as `[unclear]` or `[uncertain: ...]`. + +## Recommended Output Structure + +Use this structure unless the day is too short to need all sections: + +```text +Day: <day> +Date: <date if known> +Source pages: <source pages if known> + +Narrative +<story-based detailed narrative> + +People, Factions, and Places Mentioned +<compact prose or bullets if useful> + +Items, Rewards, and Resources +<compact prose or bullets if useful> + +Clues, Mysteries, and Open Threads +<compact prose or bullets if useful> +``` + +## Completion Report + +When finished, report: + +- Cleaned day file created. +- Source day file used. +- Existing cleaned files skipped. +- Any uncertainty or missing context that should be reviewed by the user. diff --git a/.agents/skills/dnd-notes-pipeline/SKILL.md b/.agents/skills/dnd-notes-pipeline/SKILL.md new file mode 100644 index 0000000..1ca52d1 --- /dev/null +++ b/.agents/skills/dnd-notes-pipeline/SKILL.md @@ -0,0 +1,52 @@ +# Skill: D&D Notes Pipeline + +Use this skill to coordinate the full Pentacity handwritten notes processing pipeline. + +## Pipeline Stages + +1. `dnd-transcribe-pages`: `data/1-source` -> `data/2-pages` +2. `dnd-split-pages-into-days`: `data/2-pages` -> `data/3-days` +3. `dnd-clean-day-narrative`: `data/3-days` -> `data/4-days-cleaned` + +## Core Rule + +The pipeline is incremental. Never reprocess existing outputs unless the user explicitly asks to reprocess or overwrite them. + +## Workflow + +1. Inspect the repository layout and confirm the expected data directories exist. +2. Identify unprocessed source images in `data/1-source`. +3. Run the page transcription stage for unprocessed images. +4. Identify page transcriptions that have not yet been assigned to day files. +5. Run the day-splitting stage for missing day files. +6. Identify raw day files without matching cleaned outputs. +7. Run the cleaned narrative stage one day at a time. +8. Stop and ask the user whenever a page number, day boundary, or filename would be uncertain. + +## User Confirmation Triggers + +Ask the user before proceeding if: + +- A source image's page number cannot be confidently read from the top-right corner. +- Two source images appear to have the same page number. +- A day marker is illegible or ambiguous. +- A page appears to contain notes for multiple days but the split point is unclear. +- An output file already exists and would need to be overwritten. + +## Quality Checks + +- After transcription, verify that every newly processed image has a corresponding `data/2-pages/<page>.txt` file. +- After day splitting, verify that every newly identified day has a `data/3-days/<day>.txt` file. +- After cleaning, verify that every processed raw day has a matching `data/4-days-cleaned/<day>.txt` file. +- Report skipped files and the reason they were skipped. + +## Final Report + +At the end of a pipeline run, report: + +- New page transcriptions created. +- New raw day files created. +- New cleaned day narratives created. +- Files skipped because they already existed. +- Any user confirmations still needed. +- The recommended next pipeline action, if any. diff --git a/.agents/skills/dnd-split-pages-into-days/SKILL.md b/.agents/skills/dnd-split-pages-into-days/SKILL.md new file mode 100644 index 0000000..6949b1b --- /dev/null +++ b/.agents/skills/dnd-split-pages-into-days/SKILL.md @@ -0,0 +1,64 @@ +# Skill: D&D Split Pages Into Days + +Use this skill to combine page transcriptions from `data/2-pages` into one raw notes file per in-game day in `data/3-days`. + +## Inputs + +- Page transcriptions: `data/2-pages/*.txt` +- Existing day files: `data/3-days/*.txt` + +## Outputs + +- `data/3-days/<day>.txt`, where `<day>` is the in-game day identifier. + +## Idempotency + +- Do not reprocess or overwrite an existing `data/3-days/<day>.txt` file unless the user explicitly asks. +- If only some days are missing, process only the missing days. +- If a page spans an existing day and a missing day, preserve the existing day and only write the missing day after confirming the boundary is clear. + +## Day Naming + +- Prefer simple numeric campaign day names when available, such as `day-01.txt`, `day-02.txt`, or `day-23.txt`. +- If the notes use a date but no campaign day number, use a stable lowercase filename based on the date, such as `1012-jan-07.txt`. +- If both are available, prefer the campaign day number and include the calendar date inside the file. +- If the day identifier is ambiguous, ask the user before writing output. + +## Workflow + +1. List `data/2-pages/*.txt` and sort them by numeric page number. +2. Read only the page files needed to identify unprocessed days. +3. Identify in-game day starts and day transitions from headings or note text. +4. Preserve text that appears before the first explicit day marker by assigning it to the current known day only if the context is clear. If unclear, ask the user. +5. Combine all page text belonging to each in-game day. +6. Write one file per missing day in `data/3-days/<day>.txt`. +7. Do not clean, rewrite, or narrativize the text at this stage. + +## Output Format + +Each day file should start with: + +```text +Day: <day> +Date: <date if known, otherwise unknown> +Source pages: <comma-separated page numbers> + +Raw notes: +``` + +Then include the relevant transcribed notes for that day. + +## Boundary Rules + +- When a new in-game day starts mid-page, split the text at that point. +- If a day transition is implied but not explicit, include a note like `[uncertain day boundary]` and ask the user before writing if the uncertainty affects file boundaries. +- Keep duplicate references if they appear in source notes; do not deduplicate facts here. + +## Completion Report + +When finished, report: + +- Day files created. +- Day files skipped because they already existed. +- Source pages used. +- Any uncertain day boundaries or pages that need user input. diff --git a/.agents/skills/dnd-transcribe-pages/SKILL.md b/.agents/skills/dnd-transcribe-pages/SKILL.md new file mode 100644 index 0000000..971f914 --- /dev/null +++ b/.agents/skills/dnd-transcribe-pages/SKILL.md @@ -0,0 +1,59 @@ +# Skill: D&D Transcribe Pages + +Use this skill to process handwritten source note images from `data/1-source` into page transcription files in `data/2-pages`. + +## Inputs + +- Source images: `data/1-source/*` +- Existing page transcriptions: `data/2-pages/*.txt` + +## Outputs + +- `data/2-pages/<page>.txt`, where `<page>` is the page number written in the top-right corner of the image. + +## Idempotency + +- If `data/2-pages/<page>.txt` already exists, skip that page unless the user explicitly asks to reprocess it. +- If the same source image appears to have been processed before, skip it unless explicitly asked to reprocess it. +- Never overwrite an existing transcription without explicit user approval. + +## Workflow + +1. List source images in `data/1-source`. +2. List existing page files in `data/2-pages`. +3. For each unprocessed image, inspect it visually. +4. Read the page number from the top-right corner of the image. +5. If the page number is missing, illegible, cropped, or uncertain, ask the user to provide or confirm the page number before writing the file. +6. Transcribe the page as faithfully as possible. +7. Preserve line breaks and note structure when useful, but prioritize readable text. +8. Preserve in-game day markers exactly and make them easy to find. +9. Mark unclear text with square brackets, for example `[unclear]`, `[uncertain: Malcolm?]`, or `[illegible word]`. +10. Write the transcription to `data/2-pages/<page>.txt`. + +## Transcription Requirements + +- Include all visible text, including marginal notes, arrows, headings, boxed text, diagrams, labels, crossed-out but still readable text, and page numbers. +- Preserve names, places, dates, items, coin amounts, spell names, creature descriptions, faction names, passwords, inscriptions, rumours, dreams, and unresolved questions. +- If handwriting suggests multiple possible readings, include the uncertainty rather than choosing silently. +- Do not summarize at this stage. This stage is transcription, not cleaning. +- Do not add facts from campaign memory or `party-diary.txt` into the page transcription. + +## Recommended File Header + +Each page transcription should start with: + +```text +Page: <page> +Source: data/1-source/<filename> + +Transcription: +``` + +## Completion Report + +When finished, report: + +- Pages transcribed. +- Images skipped because output already existed. +- Any images needing user confirmation. +- Any illegible or uncertain sections. diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..3397e3a --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,37 @@ +# Pentacity Notes Agent Instructions + +This repository stores and processes handwritten Dungeons & Dragons campaign notes for the Pentacity campaign. The goal is to turn source page images into searchable, chronologically reliable campaign records while preserving facts, names, items, clues, factions, dates, rewards, odd phrasing, and unresolved mysteries. + +## Repository Layout + +- `data/1-source/`: handwritten source note images. New pages are added here over time. +- `data/2-pages/`: one transcription file per handwritten page, named `data/2-pages/<page>.txt`. +- `data/3-days/`: one raw combined notes file per in-game day, named `data/3-days/<day>.txt`. +- `data/4-days-cleaned/`: one cleaned narrative file per in-game day, named `data/4-days-cleaned/<day>.txt`. +- `.agents/skills/`: repeatable skills for each processing stage. + +## General Rules + +- Do not reprocess an image, page, day, or cleaned day if the corresponding output already exists, unless the user explicitly asks to reprocess or overwrite it. +- If a page number cannot be read from the top-right corner of a source image, or the guess is uncertain, ask the user to provide or confirm the page number before writing the transcription. +- If an in-game day boundary is ambiguous, ask the user for confirmation before writing or splitting the affected day files. +- Preserve chronology. Do not reorder events except to group text under the correct in-game day. +- Preserve uncertainty. If source notes use uncertain names or spellings, keep the uncertainty rather than silently normalizing it. Examples: `Garadwal/Guardwell`, `Zinquiss/Xinquiss`, `Velenth/Valenth`. +- Preserve campaign-specific directional and calendar terms such as `airwise`, `earthwise`, `firewise`, `waterwise`, `Tri-moon`, `Timnor`, and `Tan`. +- When cleaning notes into narrative, include details that may later become searchable wiki entries: people, places, factions, items, money, rewards, spell effects, dreams, clues, rumours, warnings, inscriptions, passwords, dates, travel decisions, combat outcomes, and open questions. +- Do not invent missing facts. If text is illegible or unclear, mark it as uncertain in square brackets, such as `[unclear]` or `[uncertain: possible name]`. + +## Processing Pipeline + +Use the skills in `.agents/skills` for repeatable work: + +1. `dnd-transcribe-pages`: transcribe unprocessed handwritten images from `data/1-source` into `data/2-pages/<page>.txt`. +2. `dnd-split-pages-into-days`: split page transcriptions from `data/2-pages` into per-day files in `data/3-days`. +3. `dnd-clean-day-narrative`: clean each raw day from `data/3-days` into a detailed story-based narrative in `data/4-days-cleaned`. +4. `dnd-notes-pipeline`: coordinate the full pipeline while respecting existing outputs. + +## Current Campaign Context + +The campaign has involved Everchurch/Everchard memory tampering, missing pigs and militia, the barrier observatory and Joy, shield pylons, elemental prisons, Brutor Ruby Eye, Envoi, Garadwal the Terror of the Sands, the Tri-moon shard, the Pact, Freeport, the Underbelly, the Black Scales, Infestus, Pythus Aleyvarus, Valenth Caerduinel, and a current direction toward a desert laboratory. + +Use existing summaries such as `party-diary.txt` if present as campaign context only. Do not treat summary text as a substitute for processing new source images or page transcriptions unless the user explicitly asks for that. -
276a19eTidyby Bas Mostert
AGENTS.md | 69 - {src => data/1-source}/IMG_5115.png | Bin diary/day-01.txt | 68 - diary/day-02.txt | 42 - diary/day-03.txt | 64 - diary/day-04.txt | 50 - diary/day-05.txt | 42 - diary/day-06.txt | 136 - diary/day-07.txt | 4 - diary/day-08.txt | 12 - diary/day-09.txt | 16 - diary/day-10.txt | 18 - diary/day-11.txt | 30 - diary/day-12.txt | 72 - diary/day-13.txt | 12 - diary/day-14.txt | 66 - diary/day-15.txt | 30 - diary/day-16.txt | 176 -- diary/day-17.txt | 60 - diary/day-18.txt | 4 - diary/day-19.txt | 66 - diary/day-20.txt | 74 - diary/day-21.txt | 30 - diary/day-22.txt | 36 - diary/day-23.txt | 54 - out/1.txt | 62 - out/10.txt | 49 - out/11.txt | 40 - out/12.txt | 39 - out/13.txt | 40 - out/14.txt | 35 - out/15.txt | 34 - out/16.txt | 32 - out/17.txt | 36 - out/18.txt | 38 - out/19.txt | 36 - out/2.txt | 52 - out/20.txt | 34 - out/21.txt | 29 - out/22.txt | 30 - out/23.txt | 39 - out/24.txt | 33 - out/25.txt | 39 - out/26.txt | 35 - out/27.txt | 35 - out/28.txt | 32 - out/29.txt | 29 - out/3.txt | 43 - out/30.txt | 27 - out/31.txt | 29 - out/32.txt | 29 - out/33.txt | 25 - out/34.txt | 29 - out/35.txt | 31 - out/36.txt | 31 - out/37.txt | 28 - out/38.txt | 31 - out/39.txt | 32 - out/4.txt | 56 - out/40.txt | 33 - out/41.txt | 24 - out/42.txt | 21 - out/43.txt | 24 - out/44.txt | 32 - out/45.txt | 24 - out/46.txt | 37 - out/47.txt | 32 - out/48.txt | 33 - out/49.txt | 32 - out/5.txt | 41 - out/50.txt | 33 - out/51.txt | 31 - out/52.txt | 23 - out/53.txt | 39 - out/54.txt | 31 - out/55.txt | 23 - out/56.txt | 30 - out/57.txt | 25 - out/58.txt | 32 - out/59.txt | 24 - out/6.txt | 49 - out/60.txt | 25 - out/61.txt | 34 - out/62.txt | 31 - out/63.txt | 42 - out/64.txt | 39 - out/65.txt | 35 - out/66.txt | 38 - out/67.txt | 54 - out/68.txt | 43 - out/69.txt | 38 - out/7.txt | 40 - out/70.txt | 38 - out/71.txt | 37 - out/72.txt | 45 - out/73.txt | 17 - out/8.txt | 49 - out/9.txt | 43 - scripts/__pycache__/build_all.cpython-314.pyc | Bin 1941 -> 0 bytes .../__pycache__/build_party_diary.cpython-314.pyc | Bin 1690 -> 0 bytes scripts/__pycache__/process_notes.cpython-314.pyc | Bin 7809 -> 0 bytes scripts/__pycache__/split_diary.cpython-314.pyc | Bin 5308 -> 0 bytes scripts/build_all.py | 30 - scripts/build_party_diary.py | 31 - scripts/process_notes.py | 129 - scripts/split_diary.py | 91 - skills/build-campaign-corpus/SKILL.md | 36 - skills/full-note-ingestion-pipeline/SKILL.md | 38 - skills/split-day-diaries/SKILL.md | 33 - skills/transcribe-campaign-notes/SKILL.md | 39 - skills/write-party-diary/SKILL.md | 33 - src/IMG_5116.png | Bin 2842840 -> 0 bytes src/IMG_5117.png | Bin 2804917 -> 0 bytes src/IMG_5118.png | Bin 2797870 -> 0 bytes src/IMG_5119.png | Bin 2950964 -> 0 bytes src/IMG_5120.png | Bin 3013690 -> 0 bytes src/IMG_5121.png | Bin 2960778 -> 0 bytes src/IMG_5122.png | Bin 2960428 -> 0 bytes src/IMG_5123.png | Bin 3001689 -> 0 bytes src/IMG_5124.png | Bin 3013009 -> 0 bytes src/IMG_5125.png | Bin 2891715 -> 0 bytes src/IMG_5126.png | Bin 2867922 -> 0 bytes src/IMG_5127.png | Bin 2878351 -> 0 bytes src/IMG_5128.png | Bin 2819072 -> 0 bytes src/IMG_5129.png | Bin 2849353 -> 0 bytes src/IMG_5130.png | Bin 2974327 -> 0 bytes src/IMG_5131.png | Bin 2817007 -> 0 bytes src/IMG_5132.png | Bin 2954304 -> 0 bytes src/IMG_5133.png | Bin 2881764 -> 0 bytes src/IMG_5134.png | Bin 2888498 -> 0 bytes src/IMG_5135.png | Bin 2849632 -> 0 bytes src/IMG_5136.png | Bin 2917551 -> 0 bytes src/IMG_5137.png | Bin 2847494 -> 0 bytes src/IMG_5138.png | Bin 3038771 -> 0 bytes src/IMG_5139.png | Bin 2847099 -> 0 bytes src/IMG_5140.png | Bin 2993713 -> 0 bytes src/IMG_5141.png | Bin 2823087 -> 0 bytes src/IMG_5142.png | Bin 2761840 -> 0 bytes src/IMG_5143.png | Bin 2970202 -> 0 bytes src/IMG_5144.png | Bin 2834974 -> 0 bytes src/IMG_5145.png | Bin 2647399 -> 0 bytes src/IMG_5146.png | Bin 2746547 -> 0 bytes src/IMG_5147.png | Bin 2759134 -> 0 bytes src/IMG_5148.png | Bin 2780868 -> 0 bytes src/IMG_5149.png | Bin 2819010 -> 0 bytes src/IMG_5150.png | Bin 2796533 -> 0 bytes src/IMG_5151.png | Bin 2921370 -> 0 bytes src/IMG_5152.png | Bin 2819984 -> 0 bytes src/IMG_5153.png | Bin 2629032 -> 0 bytes src/IMG_5154.png | Bin 2826629 -> 0 bytes src/IMG_5155.png | Bin 2816486 -> 0 bytes src/IMG_5156.png | Bin 2639066 -> 0 bytes src/IMG_5157.png | Bin 2675515 -> 0 bytes src/IMG_5158.png | Bin 2706953 -> 0 bytes src/IMG_5159.png | Bin 2676229 -> 0 bytes src/IMG_5160.png | Bin 2843135 -> 0 bytes src/IMG_5161.png | Bin 2707025 -> 0 bytes src/IMG_5162.png | Bin 2643833 -> 0 bytes src/IMG_5163.png | Bin 2816041 -> 0 bytes src/IMG_5164.png | Bin 2560012 -> 0 bytes src/IMG_5165.png | Bin 2531021 -> 0 bytes src/IMG_5166.png | Bin 2511691 -> 0 bytes src/IMG_5167.png | Bin 2445608 -> 0 bytes src/IMG_5168.png | Bin 2439510 -> 0 bytes src/IMG_5169.png | Bin 2662828 -> 0 bytes src/IMG_5170.png | Bin 2769475 -> 0 bytes src/IMG_5171.png | Bin 2718681 -> 0 bytes src/IMG_5172.png | Bin 2761571 -> 0 bytes src/IMG_5173.png | Bin 2661598 -> 0 bytes src/IMG_5174.png | Bin 2653204 -> 0 bytes src/IMG_5175.png | Bin 2670582 -> 0 bytes src/IMG_5176.png | Bin 2739500 -> 0 bytes src/IMG_5177.png | Bin 2721773 -> 0 bytes src/IMG_5178.png | Bin 2878099 -> 0 bytes src/IMG_5179.png | Bin 2624748 -> 0 bytes src/IMG_5180.png | Bin 2712135 -> 0 bytes src/IMG_5181.png | Bin 2671122 -> 0 bytes src/IMG_5182.png | Bin 2622338 -> 0 bytes src/IMG_5183.png | Bin 2658879 -> 0 bytes src/IMG_5184.png | Bin 2683727 -> 0 bytes src/IMG_5185.png | Bin 2731196 -> 0 bytes src/IMG_5186.png | Bin 2562155 -> 0 bytes src/IMG_5187.png | Bin 2722469 -> 0 bytes src/IMG_5188.png | Bin 2686271 -> 0 bytes src/IMG_5189.png | Bin 2713999 -> 0 bytes src/IMG_5190.png | Bin 2380107 -> 0 bytes tmp/all-processed-edited.txt | 1628 ------------ tmp/all-processed.txt | 1710 ------------- tmp/all.txt | 2612 -------------------- tmp/party-diary.txt | 267 -- tmp/summary.txt | 78 - transcribe_notes.py | 120 - 192 files changed, 10646 deletions(-)Show diff
diff --git a/AGENTS.md b/AGENTS.md deleted file mode 100644 index c462bb3..0000000 --- a/AGENTS.md +++ /dev/null @@ -1,69 +0,0 @@ -# Pentacity Notes Agent Instructions - -This repository stores handwritten D&D campaign notes and derived wiki-friendly text. - -## Core Workflow - -When new note pages are added, follow this pipeline unless the user asks for only one step: - -1. Transcribe new images from `data/1-source/` into numbered page files in `data/2-pages/` using the agent's built-in vision model by reading each image directly. -2. Build or rebuild `all.txt` from `data/2-pages/*.txt` in numeric page order. -3. Convert `all.txt` into readable, searchable prose in `all-processed.txt` while preserving detail. -4. Generate `party-diary.txt` as a long-form campaign narrative. -5. Generate one per-day diary file in `data/3-days/day-XX.txt`. - -## Source of Truth - -- `data/1-source/`: original note page images. -- `data/2-pages/`: raw page transcriptions, one file per page number. -- `all.txt`: concatenated raw transcription in page order. -- `all-processed.txt`: cleaned readable notes preserving chronology and facts. -- `party-diary.txt`: full story-based narrative. -- `data/3-days/`: one narrative file per campaign day. - -When writing summaries or diary files, use `all-processed.txt` as the source of truth unless the user explicitly says to use edited files such as `all-processed-edited.txt`. - -## Style Requirements - -- Preserve all names, places, dates, times, items, rewards, clues, factions, quotes, uncertainties, and unresolved questions. -- Do not compress away details because they may be relevant later. -- Prefer clear narrative paragraphs over raw bullet fragments. -- Keep headings searchable and stable. -- Preserve uncertain readings with `?`, `[unclear]`, or the original wording rather than inventing certainty. -- Do not invent lore or resolve ambiguities not present in the notes. -- Keep fantasy terms as written unless a correction is obvious from nearby context. - -## Transcription Requirement - -- Use the agent's own vision model for handwritten image transcription. -- Read image files from `data/1-source/` directly with the available file/image reading tool. -- Infer the handwritten page number from the page itself and write the transcription to `data/2-pages/<page-number>.txt`. -- Do not use `transcribe_notes.py` by default. It is a legacy local Ollama/ImageMagick script that did not work reliably for this repository. -- Only use `transcribe_notes.py` if the user explicitly asks to try the local Ollama workflow. - -## Existing Automation - -- `transcribe_notes.py` is a legacy fallback that attempts local `ollama` and ImageMagick `magick` transcription. It is not the preferred workflow. -- `scripts/build_all.py` concatenates `data/2-pages/*.txt` into `all.txt` in numeric order. -- `scripts/process_notes.py` converts `all.txt` to `all-processed.txt`. -- `scripts/split_diary.py` splits `all-processed.txt` into `data/3-days/day-XX.txt` files. -- `scripts/build_party_diary.py` creates `party-diary.txt` from `all-processed.txt` using the current narrative structure. - -## Useful Commands - -- Transcribe images: read each new image in `data/1-source/` with the agent's vision model and write `data/2-pages/<page-number>.txt` manually. -- Legacy local transcription fallback, only if explicitly requested: `python3 transcribe_notes.py --src data/1-source --dest data/2-pages` -- Build raw combined notes: `python3 scripts/build_all.py` -- Build processed notes: `python3 scripts/process_notes.py` -- Build full party diary: `python3 scripts/build_party_diary.py` -- Build per-day diaries: `python3 scripts/split_diary.py` -- Run whole text-processing pipeline after transcriptions: `python3 scripts/build_all.py && python3 scripts/process_notes.py && python3 scripts/build_party_diary.py && python3 scripts/split_diary.py` - -## Verification - -After generating outputs, verify: - -- `all.txt` contains pages in numeric order. -- `all-processed.txt` has all campaign day headings. -- `party-diary.txt` exists and is non-empty. -- `data/3-days/` contains one file for each day heading in `all-processed.txt`. diff --git a/src/IMG_5115.png b/data/1-source/IMG_5115.png similarity index 100% rename from src/IMG_5115.png rename to data/1-source/IMG_5115.png diff --git a/diary/day-01.txt b/diary/day-01.txt deleted file mode 100644 index 5c420d1..0000000 --- a/diary/day-01.txt +++ /dev/null @@ -1,68 +0,0 @@ -Day 1 -===== - -Ever Church - -Swampy woods - fruit trees orchards - -Winter - 1 orchard has trees in bloom - [unclear] buzzing - bee pollinating and enabling trees to live - slightly bigger than normal bees. dark bark, blue leaves, red fruit (deep) Town - mix of light and dark woods. Population 3k No visible district - larger manor house in centre. - -Cider inn, cider. Beeswaxed floor, a nice small half elf playing a lute, much is half elf and human family resemblance Father Burnun - prize fighter half elf - Gelissa * - -Box: Baz - Invar greying hair - paladin looking, did not get the plate. Leonard Dirk politely - -Shaun - Geblin (the mighty) gnome, wild brown hair glasses with no glass - -Farmer - old John Thornhollows. Another 3 pigs gone Vanished - -6 missing but only has the ledgers for 3. Had a group of around 30 pigs? - -3 daughters: Annabel, Isabelle, Cumberella 5 keys on the bar - but changed to 4 and no idea how it changed. - -Register with Earl - ? mercenaries. - -Pig's daughter keep best books, 1g each to go look. Shepherd maybe missing some sheep. - -Bess - cat missing but no rats recently either. Rats missing too? - -Last summer built a hostel - house all the homeless people, but not enough for homeless so letting out. Inn's not happy. - -Go to Earl - half-orc (crunch looking), black clothing covered with birds. Geese missing. - -Butcher - serving new mushroom burgers since meat not coming in. Woman - out of town come to find husband, come from Albec for work, no one seen him, was putting up fences at a farm. Malcolm Donovan - sent to jailer - birth mark on back of right hand. - -Apply for poverty tax - eligible - slides 2g over to her for the anti-tax. Funds from the hostel go to the anti-tax since wife left him - going to disappear. - -Census - in spring - 3c for the number, payable in the morning, ask half elf. - -No trouble in town. Bushhunter - registered mercenary. Last 2 weeks: Bushhunter came to town 2 weeks ago. Winter apple trees started to fruit. - -Last 3rd Moon was 1 week ago. - -Invar - delivered weapons but no militia? Order was put in a few months ago. About 5 left. Earl downsizing. - -20 weapons, 10 armour. Can't remember any of the old militia. Go to jail and talk to sheriff for current militia forgetting names. - -Bushhunter - had tubes and pipes. Used to do a lot of swords. - -Jail - -Now believes should get a package from a crazy haired gnome. Location changed. Used to be where hostel used to be. 2 empty cells. Laws - big scar over her eye. Her, sheriff and other 2 deputies (Bob). 11 years, always something so old there isn't anything. No reports of people missing. Home theft week ago. Bushhunter doing a sale of giant bugs in frames, last sale 6 days ago. Shepherd had new fence? Yes. Terry left town - 2 months ago Johnjaw passed away Abo. arrested - -Ralfeck - Buckworth somewhere None left in town - -43 used to be hired. Parch of militia statute charter to have sufficient militia for close to barrier. - -1100 militia - 45,000 population. Due in a month to check; last visited 5 months ago. - -Nobody remembers Gelissa except Gedrin. Invar remembered for a split second. - -See one of the people gets up and walks out. Chase him. Hood drops, face stitched below eye line, mouth missing a row of teeth. Bone splint fingers and split tongue. Has birth mark on right hand - Malcolm. Was a human male - had to use magic for these changes. - -Guardwell - Terror of the Sands, nightmare of the darkness. He will consume your soul. - -Tales of the sphinx who learnt dark magic experimenting on itself. Remembered Isabella and that Gelissa said she hadn't arrived. Remembered her again! Took Malcolm to the jail. Deputy went to get the sheriff - Jeremia. Now remembers 3rd daughter Gelissa. Now remembers homeless people. Makes us deputies - we get badges. Sir Alstir Florent. - -Bar 5th person, human warrior - helping out with us and picked one of the keys and remembered him all the way up to when we went fishing, around the time Dirk saw the rat. - -Gristak Brinson - mayor. diff --git a/diary/day-02.txt b/diary/day-02.txt deleted file mode 100644 index d7084c0..0000000 --- a/diary/day-02.txt +++ /dev/null @@ -1,42 +0,0 @@ -Day 2 -===== - -Head back to the town hall. - -Received whole census for John's pig farm, 9:00. 5th name on the ledger has been scribbled out. Claims it was a mistake. - -Unemployed and holdings worth <50g - anti-tax criteria. 3g anti-tax. Thornhollows farm Census April 4th - -registered: wife Sarah 47 John 50 Annabella 18 Isabella 16 Clarabella 14 seeing sheep farmer's son - -Paternal grandmother Bella. - -2 sounders of pigs: 1x matriarch 3x breeding boars 2x breeding sows 1 has 17 female younglings other has 21 female younglings No males. - -Paid tax as billed. Farmhouse, 3x orchards, stable, veg garden. - -2x outbuildings which back onto a hedged sty. Planned employment: 3x hands. Grazing rights for area in edge of swamplands. Walk to Thornhollows farm, past orchards and brewery, 9:45. Farm surrounded by stone hedge. - -Pass 2 ravenhound looking dogs - girl walking with them, black hair, missing from census? Craven dogs, breeding pair, mimicry noise, have puppies. Approaches us - Annabella. - -Younger sister on the porch. 3 puppies on pillows next to grandma. Books - everything tallies until about 1 month ago. Scribbling out and removed without explanation, think there should. Missing 12 pigs in total - should be 57. Records say should be 51 they've recorded. - -6 missing over the last 2 weeks: actually 46. - -3 last night, before last 3 a week ago. Missing pigs went overnight. Inconsistencies start about the time Sarah left. - -45 Cat is missing too, about 1 month ago (black cat). Nights of disappearances, not locked up at night. - -Large door to enter the hedged area, looks densely grown. Confident there is no dig through. Hill giving 4 foot of hedge to get in but no advantage to get out. - -Dirk finds big divots that look like foot - -prints - looks like a frog - approx 8 foot frog. Ravenhounds ribbited at dark. Started a few weeks ago - take the pigs, gruffle hunting. Seem to head to swamp. - -Massive moths, been around for a while. - -Quest: 100g to clear the frogs. Had 50g so far. 6 pigs missing to the frogs as they remember these, but 6 others missing they don't remember. Go through swamp. Feels like we are being watched. Massive moth appears during the day... Stealth off and get attacked by a frog - killed 2. Find bones that appear to belong to pigs and sheep. - -Back to farmhouse, 16:00. Cleara gives a tonic where we can use hit dice. - -Potion of recovery. * Succour. Stay over the night. diff --git a/diary/day-03.txt b/diary/day-03.txt deleted file mode 100644 index 2efef83..0000000 --- a/diary/day-03.txt +++ /dev/null @@ -1,64 +0,0 @@ -Day 3 -===== - -Head over to sheep farmer. Geldrin accidentally cast a spell sat on Dirk's shoulders. Tore his shoulders apart like Malcolm's wounds. Stop for short rest. Birds circling overhead: goldfinch and starling. - -District lack of sheep at the farm, swamp seems to be trickling into the farms. - -30-yearish man appears to be trampled by a herd of sheep. Looks like some human sized prints, 4x sets. One looks to go to and from the barn. We can investigate - drew crime scene. Hear something trying to break out of the barn. Run to farmhouse; door has been "latched in". Table smashed to pieces, various debris about. - -Fire looks like it was burnt out yesterday. Upstairs looks old. Double bedroom and 2 sets of singles. Older couple. 1 may match dead man, 1 slightly smaller. - -Creep over to the barn and see a row of sheep heads - seem unnaturally agitated. Hear unevening bleat. Breaks out of the barn - massive pile of melted - -sheep - killed it. See things at barn and felt memories being taken - not there when we get to the barn. Found woman in the corner dead. Looks like she lured the creature in the barn and somebody locked them in. Something about Malcolm and Isabella going missing & nobody knowing of them in town but us and Malcolm's wife knows. 11:15. - -Go to where we found the birds. Take short rest. Dirk leaves food out and lots of different types of birds appear. Go into swamp to find bird lady. 1 hour in. Swamp hut covered in bird poo, inside branches covered in birds. 80ish woman, blindfolded and mouth sewn shut. Name: "The Chorus". - -Been having dreams - that aren't her own. Her apprentice upped and left. Magic used is clever - changes memories into a convenient - -form - so knowing Sarah was with The Chorus it was harder to wipe. On of the Robins' Day they saw her by the hostel. She was distorted... - -Always had large animals in the area. Somebody going through the swamp and using gas which is hurting the birds. Q: Stop the Bushhunter. Direct us to the place where Gedrin has the papers. - -2pm leave, 5pm at town. Back to town through market place. Notice stack of frames with a halfling (suited) with an ogre - barrel with tubes and pipes going to an ear funnel crossbow - talking to a masked person who has a wagon pulled by a "cobra koi" type creature. - -Sneak up behind the ogre and break his equipment. Goggles and let the gas out. - -Bushhunter will do any form of Taxidermy... - -Bushhunter promises to hunt out of town. Request him to do it the other side of the river. - -Magpie / Xinquiss can be found at the Hatrall great bazaar. 5:15. Sheriff's office. Very busy in there. Both Jeremia and deputy sheriff armoured up - half-orc and kobold (seem to be militia). Citizens wearing patchwork armour - bear, tabaxi, human, warforged. - -Been an attack - Walter (sheep farmer). Somebody came in and they had a cult with sheep beast in. Wife sacrificed herself. - -Core - warforged - runs Peel and Core, lack of custom in the tavern - noticed wagons at the hostel. Earl had a death threat. 500g bounty. Tiny guy - forester - Cromwell - noticed wagons past Walter's farm, seem to have stopped there. Seemed to be people in the wagons. What the mo... 5:30. - -Jeremia and Drang to protect the Earl. Hannah and Bob - go to outskirts. - -Gives us a shock dagger. - -Village is quiet. 2x wagons parked outside the hostel - livestock looking. Smells of pig manure and human faeces. Feel warmth but can't see anything - scratched crab claws. - -Dirk sees rats again and they attack. A pig beast breaks out of one of the carts, killed. Sabotage carts and two people bring 4 horses. - -Woman in 50's, too many teeth, bigger (Sarah?) - -Mouth - big. Young boy 18ish (sheep farmer's boy?) - -3x patrons: Crimson, Bovine, Mirthis Fizzleswig. 1 shortsword. 1 sickle, silver. Random herbs. Church Tor and church Tarber. 19:00. - -Take the people and cart to the church. People unable to be saved. Boy wasn't dead at first but now dead. - -Brother Fracture - looks at the cart. Remembered all of the militia have been going missing. Want to try to put them all to sleep - Bushhunter! Bushhunter staying out at cider inn/cider. - -Go to see him, 20:00. Has a ring with purple gem and runes, needs identifying. Doing that in trade for use of quaverisior / magical hearing powder, 5000? etc. Go back to cart and use it. Get 5 back into the church. - -1 - Gregory, homeless man, restored. Thought he'd been taken by the militia. Remembers being in the big militia house. - -Park the cart behind the church and horses at the inn. - -Random compass box with a needle that points to the - -Bushhunter - Geldrin buys it. diff --git a/diary/day-04.txt b/diary/day-04.txt deleted file mode 100644 index a5fdd91..0000000 --- a/diary/day-04.txt +++ /dev/null @@ -1,50 +0,0 @@ -Day 4 19th Dec, 7:00 -==================== - -Dirk - flower he got from a tiefling girl is still looking new - has a magic enchantment to keep it new. Problems with Pylon: Seaweed water spirits on the move. Fish men other side of barrier (massacre), dumbold south. Stone giants missing under new leadership by Hyden Goldensoul, armies too insignificant. Cold air over River Rhein, frozen between Snowshore and Highland edge. - -Ancient [unclear] from slumber, sages try to interpret omens. Gnolls attack restored point, cows missing, bounty on gnoll. Blight hits azureside cherry crops - Cereza production halted. Isabella Nudegate, 500g reward (missing on route), not searched. Grand festival, midwinter - held at Brockville spring next week. Peridobit cloaking death spotted 50 miles eastwise of Arrowfeur. No mention of pig. Pig carcass is missing. Singe marks on the road. Other cart still outside the hostel. 8:20. Oric - innkeeper, Cider Inn Cider. Earl was holding banquet, no other strange goings on. Things go crazy this close to the third. Town crier local news around midday. - -Go to sheriff - walk past Earl's manor house. Sheriff in chair, kobold shuffling papers. Calls Malcolm, half elf steward for the Earl apparently behind the plots to kill the Earl. Seems innocent - no evidence, doing to keep face with the Earl. - -Something off with the Earl. Asked blacksmith to up the production on weapons?! Invar just delivered lots. - -Steward - didn't know him before; thinks duchesses of Harthwall sent him after the previous Earl passed. - -Earl seems to be more extreme in his views: 10 show sorrow, 10 blacksmith in town. Books say 27 militia - but only 4 (27 is half required amount). Lawrence Henderson - exchequer, paying wages. 8:00. Ledger given to the scribes at night and back to Earl at 9:00 - half elf comes to scribes with us. - -Pick the lock and get left to Earl's chambers, right for scribes. Ledgers are all copied and old ledgers kept in a different place. Current ledger around 7 days ago. - -Isabella 2 weeks ago with 20 min to search for her in the copies. Malcolm 6 days ago - name scrubbed out in the ledger but not scribbled out in the copies. - -Visiting tourists: cider brewery and tour of woodland. Spoke to the Earl for permission to take a cutting from the Everchurch tree. Staying at beekeeper's. Elfin meadowmaker for the cutting, 2x bodyguard. - -Half elf remembers Sir Alistair. - -Go see exchequer - half elf portly looking, Lawrence. Ask about militia wages - he starts to panic. Says we need to speak to the sheriff or the Justice. Didn't do anything wrong. Blames the scribes. Set them baron cut down. So he was getting the payment for the other 23. If we keep quiet he will help with more info if needed. Gives us 50g. - -8 carts, 16 horses, 60 swords. Industrial angle: we have 2 extra horses. - -58 days left on town finances. Safe: small black velveteen case, gems. - -3 treasure chest: gold/copper/silver. 2 bags platinum pieces. 6000gp. Earl's documents - file is empty. Half elf remembers him having documents! Vicmar Danbos? - -Leave to go see Brother Fracture, 9:50. - -Gregory doing well - not had chance to heal the others, will feed the rest. No way of communicating with other churches. Go see Gregory: Remembers Dec started, thinks it was 7th/8th. A few weeks ago according to the information from the town crier. Can't remember anything from then until now. Can remember 2x militia taking him to the hotel, then waking up in the church. Stonejaw and Ralfrex (2 of the missing militia). Other people in the hostel - said it looked like a jail still. Goat lady - Bagnall Lane - and various others. Militia house open for about 1 month - no reason for it to still look like a jail. - -Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. - -Cider inn cider. Homeless in town not really any but remembers Gregory now. Remembers dead goat down Bagnall Lane about 1 week ago. - -Go to hostel. Investigate round side of building. Stone stables, 2 carts and 4x horses in courtyard/stables. Chain on the gates but padlock not locked. Invar breaks wheels. - -Release horses - I get magic missile. Go into "hostel" to fight them. One is Gelissa. Has a mark on the side of her face. Kill other guy, subdue Gelissa. Some corruption on her mind - Invar restores both her mind and wounds. 11:00. - -Look around the "hotel". First 2 cells are empty. Approx 10 people still in the cells - all townsfolk. - -Invar creates a lock for the back door. 12:30. Tell Brother Fracture to concentrate on healing militia. He will take Gelissa and militia and cart to the Barracks and use that as a base of operations. - -Decide to go to the Barrier over the "Swamp Laboratory". 13:00. - -Rest for the evening - on 3rd watch, pigeon lady near the camp. Didn't get a full rest. diff --git a/diary/day-05.txt b/diary/day-05.txt deleted file mode 100644 index c179501..0000000 --- a/diary/day-05.txt +++ /dev/null @@ -1,42 +0,0 @@ -Day 5 20th Dec, 07:15 -===================== - -Approach barrier - 2 large carts in view. Go off the path. Tie up the horses in a dip in the land. Go round to approach from the trees. - -Find Cromwell (ranger) quite injured. Looks like the damage Geldrin did to Dirk accidentally. - -Tracks look like heavy steel boots (Goliath in full platemail? Core?) We are about 1/2 way between the shield pylons. Carts are empty - large group of people go towards barrier, small group to the swamp. Follow the tracks - they seem to come back on themselves and head towards town. Looks like just Goliath. We want to put Cromwell safe. - -Decide to follow along shield towards larger group. Hear a big group of people stood next to the barrier. - -Dirk feels something is watching us. Then is attacked by sheep farmer grubby. Killed it and 11 militia and 8 townsfolk. - -8 townsfolk tied up with rope. Black dog thing disappeared after we killed it. But the maggot stayed. Upon killing this it let out a massive shriek and all the remaining townsfolk started to attack. Located and subdued halfling girl. 08:00. - -Short rest. 09:00 / 09:10. Get horses and Cromwell, head back along the path to find a patch of trees to hide the cart. - -Long rest. 10:30 / 18:30. Sword enchanted to add +1 until Invar's next long rest. - -2 twins commanding them. 1 went to swamp, other went to Barrier (we killed it). - -Go towards the swamp - following the tracks of the swamp, tie up horses outside swamp. 20:00. Following 4 individuals - Geldrin's compass is following the same direction. - -Come to a clearing at the barrier with a stone building in the clearing - marble dome is against the barrier with a large telescope through the marble dome & the barrier. Approx 10 rooms. No windows. Tracks lead right up to the building. Built approx - -1,000 years ago. Hear a strange humming - door reverberating. 23:00. Enter building. 2x plinths, 1 empty, 1 that looks like Core dismantled. Head clatters off & rat runs through left door. Go through door by plinths. - -Left door - library. - -Shelves - all on one shelf missing "T" shelf in Astronomy. Guess Trimoons information. - -Picture of a well groomed tiefling holding a baby girl. (The Mage) one of the 5 who made the barrier. - -Vixago Eros * Paper work looks recent, drawer has been forced open - diagrams of the stars. Other drawer has rabbit/deer teddy, ring inside, gold band with runes. Ring is similar to Dirk's - sews the teddy back up. - -Vase - "part of me can be with you while you study, all my love - Joy" - -Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring back Joy" - -Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" Paper work - measurements of the tri-moon before the barrier went up and 20 years after. Tri-moon seems to be getting bigger. Pre barrier it was twice the size of the other moons - now it's 4x as big as the other moons. Geldrin takes all of the notes. - -Take an invisible cloak from the hatstand - wear it! Dirk puts Geldrin on the hat stand and his clothes disappear. When things touch hat stand they disappear. diff --git a/diary/day-06.txt b/diary/day-06.txt deleted file mode 100644 index fa6d4d2..0000000 --- a/diary/day-06.txt +++ /dev/null @@ -1,136 +0,0 @@ -Day 6 21st Dec, 1:00 -==================== - -Dagger and handkerchief fall to the floor. - -Handkerchief - clean "J" in the corner. Dagger looks like a letter opener. - -Next room looks like a teleportation circle with a bronze feather on the circle. Like the one the other twin had; seems more powerful than usual. Cages in the next room (empty). Operating table (empty). Boxes, guillotine rope - lots of blood and decay with sea and sulfur. - -Red door - picture of a young tiefling. Dirk recognises - holding the wolpertinger. Very big portrait. Big table - set but empty. - -Door @ end - kitchen. Well/bucket, doesn't look like it's been used. Pull bucket up, pour water on the floor. Humanoid skull with horns is on the floor. Horns are the same as the race of the girl - 100's of years old. - -Trap door under owlbear rug in office. Door outside office is barred shut. - -Trap door - 4 plinths, all have the suits of Core on them. Geldrin goes down and suits light up, ask for password. "Joy" and "Tri-moon" incorrect. - -Move onto another room. Try to get through barricaded door. Trapped door managed to get through. - -Potion room - cauldron looks like it is full of water, fresh and clear. Geldrin calls construct "Powerloader". - -Another room - stairs and a door which says "maintenance do not enter". Door is trapped with electricity. Building seems protected by the same thing the barrier is made from. 01:15. - -Room opposite - bedroom. Tarnished vase with white flower in. Chair which looks broken and open book on table (seems out of place). Open the chest - pulse paralyses Invar and Geldrin. - -Construct kills whoever was upstairs (one of them). Killed it. Shocked Invar and Geldrin back from being paralysed. - -3 sets of footsteps walk past the room and stop at guillotine door, come back and go upstairs. - -2 come back - seem to be on guard. Another 2 go to Joy's room and comes back. All 4 killed. - -Short rest completed. Go into Joy's room. Open the toy chest. - -Mahogany box - lock has a rune on it. Geldrin takes it. Wardrobe - 3 empty hangers. Dress she was wearing when Dirk saw her isn't there. Bedside table - bottom drawer is trapped. bag, herbs, empty flask, 3x full flasks. Medical equipment, syringe, crystals, ink, powder, Recognise 2 - Mirthis Fizzleswig and succour, don't recognise the other. - -Quill pen, ink and book, kids diary. - -Last page: "Felt rough today, don't know how much longer able to write. Daddy borrowed Mr Snuffles again, Daddy's friend asked about the rings again. Daddy's friend is creepy." - -Diary - bed bound for length of the diary, approx 1 year. Robots clean and feed. Daddy's friend (never named) making rings etc, put in box which might help her feel better. Not getting better - terminal. Daddy got upset but no payment could fix it. - -Trapdoor under the rug, wooden ladder down into a store room, beanbag and toys, seems to be a secret den. Dirk goes to the beanbag. - -Little girl sat on it gets up and goes out: "Maybe I should go back up. Daddy can see me in my room." "Feeling better, glad because Daddy's creepy friend is here so I can hide." "He'll find me here, I should go to my hidey place." - -Go upstairs - opens up into a massive dome, huge golden spyglass, crystals around the telescope break the barrier. Someone sat at chair - back to us - - -2x 8ft ugly human but wing creatures. Chair person looks like creature we killed but all the parts are opposite worm and dog like creature with the creature. - -Master asked to observe tri-moon. No desire to fight us as killed his counterpart. Worm is quite useful and rare. - -900 years ago someone lived here. Used the townsfolk to attack the barrier. Give it one of the brass feathers to communicate - -with the master for an audience: "Vann, if horrid mechanical hellraiser sphinx creature." - -Garadwal? Where is your army servant? Were those guys instead... do not need to know us. - -Co-ordinates required for triangulation need to know where the armies strike next month, so we can have freedom from the dome. Striking the barrier increases the flow and maybe. - -Flows so the fragment of the moon will destroy grand towers and destroy the dome. - -It lives outside the barrier. Might just talking freedom seemed kind of true, & "freedom from the confines of everything" was an odd phrase. - -What would happen if creature didn't obey sphinx? It would find him due to the pact made in darkness? In sorrow? Looked forlorn - to find Joy? Nothing. - -Tri moon is a crystal. - -Sphinx cast out for practising unsavoury magic. Do we wish to join him? He is one cell - trying to find two locations to attack. - -All agree to clobber. Kill them all. Worm thing dead, think it has mind control powers. Papers on table - calculus and notes on the Tri moon. Books on biology, incurable diseases etc. Book on the effects of poison - slowbane - acts like heavy metal - symptoms match Joy's diary. I wrote a paper on it - very rare because people can't make it but turns up in the black market. - -Shield pylon city sometimes get a similar sickness being investigated. Very rare and takes a lot to take effect, possibly same colour as the shield crystal. People get sick and come to Goldenswell & start to get better so not really looked into much. - -Pile of goods - spices, wine, cherries, parchment, platinum, gems, silk. Saja digel / fire from azureside - have a blight. Copper Dodecahedron (magical). - -Invar identifies Dodecahedron - spell facts! - -21st Dec, Day 6 still. Geldrin goes to sleep in Joy's room and realises the lamp is a gem. 3:30. Long rest level up. 12:00. - -Chest itself is magical - designed to cast paralysis if somebody other than him opens it. Invar tries to identify it - very magical chest. - -Check out the skull in the kitchen - has a deformity in the back of the skull and looks a year younger than Joy - about 7, possibly 1,000 years old. - -Well goes down about 50ft, water down there. Look for information in the library - built at the same time as the barrier (in tandem), not as mainly back then. Was put here to observe the moon, designed specially. Caverns underneath the area found & built here for this purpose. Summoning circle was connected to different towns and cities to get building materials then supplies after observatory was built. - -Send message to Bushhunter: townsfolk have memories creatures slain at observatory message from Geldrin for Grand Towers wizard Brownmitty Waterwise, go to check maintenance area - disarm door. Barrier is directed locally around the observatory. Found a really old blanket and small pillow - really decayed. - -Possibly Joy's other hiding place. Find a trap door - locked but no way to pick. Handle feels hollow. Geldrin used shield crystal to open. - -Stone steps into darkness - down very far. - -5 lights with ends in a door painted with white flowers. Air is filled with solemn music in the cavern. Water going through barrier fizzes. River bank has a little shrine, 6 grave stones all marked "Joy", all have the everlasting flowers on. One has been disturbed. - -Joy - died in chamber. Joy - 3 years old, lung infection. Joy - 2 1/2, unknown complications. Joy - 5 years old - nothing written. Joy - 9 years old - died from poisoning. Joy - 7 years old, birth defect - bones left in the open and raided. - -Follow the stream - quite rocky and roots. Mushrooms/mildew. Mushrooms get bigger, much bigger than they should be. - -15-20 mins of walking - everything is bigger than it should be. Lead out to a cave entrance. Everything seems much bigger than it should be; everything seems to get bigger towards a point. Massive butterfly flies past. 13:30. - -Get to a lake, massive lily pads and frogs, with massive flying sparrow. Something in the lake seems magical (centre). Put tris into the lake, nothing happens. 14:00. Geldrin attempts to raft to the middle but falls off and is rescued by me. Give up on the lake for now as don't have anything to get the magical thing in the middle. - -Back at the observatory, keep going round. Atriose the maintenance area - where we think front door is, it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. Keep going round and original entrance isn't there. - -(Earthwise) Bed at earthwise changed to a flower bed and barrier split isn't there. - -(Firewise) No trapdoor but instead 2x statues 1/4 of the way down each wall. - -Throngore - huge muscular, 2 arms, 4 legs, 2 horns. Left and dark gold; crab claws; taloned human-like hands; flame, like skin. God of destruction and decay. - -Igraine - pregnant elfin woman, rose and scythe in hands, goddess of life and harvest (Alabaster stone). - -(Airwise) - Wall like it would have been the door but there wasn't a corridor at the door to account for it. Go back on ourselves - statues same. - -(Earthwise) Flowers dead now. Invar goes round airwise to statues and back dead, goes back round and shouts for us to come round but we don't hear him. - -(Airwise) - runes are bleeding and seem different. Demon magic shit. Blood hurts a little bit when touched. Geldrin copies them. Invar gets a bowl - checks its acidity. Tiny bit acidic, seems to be real blood. - -(Firewise) - Trapdoor is closed - we left it open. This one is fully metal. Same lock as the other one. Metal ladder going down to a metal floor, all metal. - -Around exterior of the room are 8 glass chambers, - -6 empty, 2 viscous liquid with something in it. Books next to it. It is a non-description human statue without genitals, with no set features, with arm out, palm down to the floor. - -Dirk mentioned hanging his coat on it. Geldrin tries a ring and it fits perfectly. Dirk adds his. - -Diary - seems to be trying to perfect a clone spell, matches up with the Joys in the graves. Dirk checks in the chamber: something in there. Rings start to glow slightly. 15:30. - -Back up. (Earthwise) - no bed, but barrier split is there. (Waterwise) - door is there and pipes etc. (Airwise) - triangular barrier. (Waterwise) - same place both ways. - -Geldrin manages to hold the book open and copies writing - deciphered as an illusion spell. Takes the book. Front has an eyeball on it. 17:00. - -Go to look at the moon. Crack open maiden's claw - good wine. See crystalline refraction of the moon and see a smaller fragment at the front, separate and much closer than the moon. - -1/2 way between planet and moon, locked in sync with where the moon is. Moon is closer - think it will take another 1,000 years. - -If more magic goes through shield pylons this will speed it up. Hitting it exactly between the pylons - conjunction with some of the issues from town crier (pg 8). Barrier starts flashing and lighting up. Seems to be something attacking it. Moon shard seems to be coming closer with the attacks. Dirk draws boobs on the chest; they disappear after a while. 01:00. diff --git a/diary/day-07.txt b/diary/day-07.txt deleted file mode 100644 index 26c0653..0000000 --- a/diary/day-07.txt +++ /dev/null @@ -1,4 +0,0 @@ -Day 7 22nd Dec -============== - -Go back to the cart with the box of copper. Fashion a lock for the front door of the observatory. Take Cromwell and Isabella back to town with carts and horses. Restoration cast on Isabella - seems confident in herself. diff --git a/diary/day-08.txt b/diary/day-08.txt deleted file mode 100644 index d616ea8..0000000 --- a/diary/day-08.txt +++ /dev/null @@ -1,12 +0,0 @@ -Day 8 23rd Dec -============== - -Go back to barrier to get remaining people. - -8 people left - Chorus was looking after them. 12:00. Geldrin paints wagon white and we head back to Everchurch. Basilisk reply - "I'll meet you there". Birds follow us back. - -See 6 horses coming from Provith (armoured), Harthwall militia. Have their livery on: stag and dragon rearing up. Arith (male) healer, Hthiman (male), elf (female). - -Few years ago near Ironcroft Firewise, something came through the barrier - Invar was there. Tell them about mind wipe and citizen stealing, lack of militia etc., barrier attacking. They report back to Lady Thyrpe. - -Healer restores the townsfolk, slightly. One with tentacle arm pulls off and left with stump. diff --git a/diary/day-09.txt b/diary/day-09.txt deleted file mode 100644 index 017f812..0000000 --- a/diary/day-09.txt +++ /dev/null @@ -1,16 +0,0 @@ -Day 9 24th Dec, 13:00 -===================== - -Arrive back in Everchurch - streets seem busy and panicky, talking about missing people and odd faces. Go to see Brother Fracture - people being reunited with loved ones, and healing happening. - -Earl has gone missing - sheriff taken over and called for help. Core made it back to town - locked himself in the pub with Mr Peel looking after him. Earl disappeared when memories came back. Set a cabin up at half way point. Harthwall ladies request a meeting with us (they get told we were heading to Seaweed). - -Drop Isabella at Cider Inn Cider. - -Go to see Core - lady gets Mr Peel instead. Core is ok, will need further repairs. Came to town from earthwise, only spoke to say "Core da". Geldrin thinks he tried to say "core damaged". Go to see Core. Sat motionless in a chair. Peel thinks he needs more crystal, a repaired Core came in the post 1 day after Core arrived. One word on it: "GUILT". Not addressed to Peel. Pub been open for 5 years. "The Guilt" - was the Earl of Brookville Springs. - -Back to Cider Inn Cider, take rooms and have baths. - -Basilisk - find Groundhog, give coin - old grand tower penny, doesn't like that we donated the coin to the church (1,000 year old coin). Keep on good side of mage Justicars in Seaweed. Very structured town. - -Eat and recover. 17:00. Back to see Brother Fracture. Basilisk brought the coin - he had 10 left, brought for 1g. diff --git a/diary/day-10.txt b/diary/day-10.txt deleted file mode 100644 index ec71239..0000000 --- a/diary/day-10.txt +++ /dev/null @@ -1,18 +0,0 @@ -Day 10 25th Dec -=============== - -Get up and on the road with Isabella. Get towards a day's travel and see a 4 storey building - trading post inn, "The Wayward Arms". Merfolk on the sign. Get Red taken for the horses. - -Some play is taking place on the stage. - -11 o'clock, rooms ready, 6am out. Extended sleep till 8. Left stairs, 2nd floor. Timothy served us. Elven lady comes on stage and sings. - -2 ruffians (half elf) enter pub, ramshackle armour, have a killer air about them. Sit down and open a bag on the table. - -2 halflings enter, seem to be a couple and sit at last table by the door. Somebody brings a giant moth picture down the stairs and hangs it up. 22:00. Half elves look at clock. Staff move people and pull tables together - setting up for Mirth?!? Hear music. People rush over to the gathered tables (inc halflings). Mirth, halfling, enters dressed as a ringmaster type (smarmy), - -claps his hands and things appear on tables: pastries, wine, bottles etc. General store? Famous alchemist (Mirth's Fizzleswig). - -Back here in 3 days * Brookville Springs next. - -Yadris and Yadrin (half elves) - Dirk overhears "taking my mind off tomorrow". Sent to investigate - problem solvers, didn't say what they were solving. Work for a lady, already up in her room. diff --git a/diary/day-11.txt b/diary/day-11.txt deleted file mode 100644 index 7a35cf9..0000000 --- a/diary/day-11.txt +++ /dev/null @@ -1,30 +0,0 @@ -Day 11 26th Dec -=============== - -Morning announcements! - -Penta city states high alert due to attack on barrier. Justicars reporting to major settlements. - -Shields of the Accord report army moving Airwise, led by Baron. Loggers at Pine Springs missing. Heavy blizzards caused travel to Rimewatch impossible, scholars trapped. Goliaths of Firewise deserts seeking refuge in monstrosity pierced the barrier. Colleges deny possibility. Dunenseed and Sandstorm; creatures of Air led by 6 armed - -Borsvack report gnoll activity. Break-in at Riversmeet menagerie. Black market confiscations and 50g fine. Everchurch's villainous Earl ousted by sheriff & brave deputies. Nefarious activities thwarted. Restoration under way. - -Hartswell and Goldenswell armies clash with giant roam Firewise of Hylden. Head to Seaward. Perfect circles of houses with a coliseum type building in the middle - used for horse and dog races etc. - -Airwise path coming into the city - wagons going back and forth filled with the marble type material used for the buildings and roads. Pylon outside of the main walls of the city. Population: elves / dwarves / gnomes. Park the cart (Paynes horsebreeder), 21:00. Go to coliseum - midday tomorrow. Forge charger race. - -Inn - The Rotund Rooster, Tiffany. Roads closed due to winter so no ice. Don't have fresh water - have to order it in. Marble type material with dark blue vein effect. Seaward run by stonemasons guild - elf. - -Nearest inn for a room - Water by Earth Waterwise or Night Candle. Road 7, 3 rings inn. - -Water elementals - rumours are they can walk through barrier. Some alterations with the council - collective working as one. Water problem has been in the last 20 years. - -Chunky chicken cooker - sponsored by Rotund Rooster. Redesigned as used to be a griffin - favourite. - -Payneful Gamble - bad at start time. Thunderbelch - name. Inn attacked by water elementals? Works at the cliffs. "No one else has been attacked." - -Charge mysterious owner, maybe an outside duke or Earl. Halfling asks Invar if we have any skulls. Green skin goblin for his master, not allowed to say from round here (really). Pays well for clever people skulls. - -Go to Night Candle - Candle lit - plush furnishing. Reason for the barrier was to keep the elementals out, but rumour is they can walk through. - -Goblin peers into Dirk's room @ 3am. diff --git a/diary/day-12.txt b/diary/day-12.txt deleted file mode 100644 index 735e820..0000000 --- a/diary/day-12.txt +++ /dev/null @@ -1,72 +0,0 @@ -Day 12 27th Dec -=============== - -Head to shield pylon - pylon is like a gold ring with the crystal set in the claw and runes around it. 7:00. - -2 guards outside the keep. Rumour - walking through chicken farm at night. Barrier flickers for about 1 sec - happens often, comes from Dombold Castle? but only for the last few weeks. Only notice near to pylon. - -Commotion at temple - guards carrying female elf out of the temple. Arrest warrant, public indecency & corruption. Cross temple with vast archways, four doors, circular altar in the middle. 08:00. - -Priest/Council fabricated some charges - thinks Architect using dark magic to make himself smarter. Architect worships light gods? Alutha on his left femur, "Ilmen Thion". - -Council OK. - -Issues - barrier and water elementals. Row 1, ring 3 from centre (public forum), meet Thursday @ midday, 4 hrs. Representatives Monday/Friday. - -Place bets - The Big Bad Beauty. My missing hangover - 2 runs, from another world, - -2 guys acting as a shell company for the Guilt. Races 4/1 odds on all - The truffle hunter. - -Hear a yelp from the side street - tabaxi has following us (goblin) - tells me to stop letting him follow us and gives me a piece of paper. Goblin will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Mainly house - rat droppings etc. He has 3 skulls, will meet his master when he has 5. - -5 silver for skull. Maybe cadavers? Go back to inn via a temple to see if we can locate skulls. Fire temple - war, justice and hunt. - -3 people in congregation listening to priest recite poetry about battle against Soot the dragon. Congregation pick up wooden swords and start practicing. - -Brother Cashew - his problems in town: Water elementals not killing, but heard town deputies found drowned near cliffs with fresh water. Rivers and lakes in 10 miles are bad, previously got from wells & then gradually went bad. Want to check the skulls for the water differences (trying to obtain some for Scum). 50 years - coughing sickness, no signs of damage other than burning - see some malnourishment at early age. 25ish - signs of damage to vertebrae, stabbed, nothing obvious. Public records will be available: Town hall, 4th ring waterwise. Back to inn for Isabella. 10:00. - -Arena vibes in the city. People really finely dressed. Sit in section C. Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. Race 2 bet - 5s, Wove's gravy, 5/1 - lost. Race 3 - 5s, The galloping salesman - lost. Race 4 - 5s, In it for the sugar, 3/1 - lost. - -Race 5 already bet: Sphinx style - stonemasons guild. - -Unicorn - first place worker, forever 1st. Horse - Payne horsebreeder. Gryphon/chicken - Rotund Rooster rooster / chunky chicken. Nightmare - on hire, Night Candle Inn. Win 9g. Wooden barrel - Bud barrel makers - Big Bad Beauty. - -Gryphon/cow? - My Missing Hangover. Race: Truffle Hunter wins! mice. - -Town almost finished - walls up to strength. Water problem too - looking to sort. Worrying rumours about members of the council refer to forums. Odd out of place formal announcement. - -Go find Isabella's friends. Knock and door swings open - middle class house. Blood on the floor of the parlour. - -2 halflings hanging from the ceiling by their feet. Male intestines over the floor (pattern?). Female looking at us but body upside down and face is right way. - -Suspect someone has done a divination spell using the intestines. Not been dead long, but not warm. Front door broken open - engineered force. Physically kicked over candelabra. Movement but nothing showing a struggle. No active magic. Divination was used and same type as used at Everchurch. Hear heavy wing beats - gargoyle, 6ft, looks like it is made of clay - not usual in town. Isabella says it's from her aunt (family guardians). Drops bag, sopat, and flies off with Isabella. - -Militia come to see what is going on. Direct inside and they take us to see the council. 17:00. Store weapons in a chest before going in, also my medic bag. - -Elementarium - elf. Admits pylon is being interfered with. Needs Justicar gone - requests us to look into the pylon. Justicar has ulterior motives: get access to shield pylon. - -2000g if we keep the information to ourselves. Get 500g now to rest on completion, solve or information to help solve. Extra for water elementals - 200g each. - -Flickers - 5 mins to 2-3 hours, only from sea to Seaward & nothing from Everchard direction or Dunbold Castle. Also state nothing is coming their way. - -Started approx 3 weeks ago, keeps log of it. Saw tri-moon barrier attacks; they were different. Halfings suspect pirate - captain of ship allegedly has crew but nobody has seen them. People go missing and turn up dead & magically disfigured. Human/merfolk, has a beard and makes possibly rodent-style magic. Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. She will help us. - -Water spirits have usually made it through; more are making it through now along with the other elements. Try to keep body count low. 18:00. Retrieve weapons. Sort horses - 1 day paid. Get rooms at the Scarred Cliff. 19:00. Go to barrier. - -Guards show us around. - -Gherion - sage on duty at the moment - gives us the book to view. - -Time and duration of the flicker: 2 weeks - getting worse, increasing frequency. Longest 3 secs, very random. Approx 9am a bout of outages. None around midnight. Clam Clock in the home for quarrymen. - -Don't know how far the flickering goes between Seaward and Dunbold Castle. - -Happens towards the pylon, crackling in a horizontal pattern and doesn't go past the pylon. Crystal has thousands of tiny runes all around it. None of the runes seem to have been tampered with. Crystal is very clean. - -Meteorites sometimes come down. Geldrin touches the barrier with his crystal shard & it goes crazy. Guard said it seems like the flickering but more intense and didn't go as far. - -Justicar - just checked the books and the crystal with a eye glass. Peridot Queen. - -Iaxxon - guardsman - guarding quarry, water elementals rushed past him like he was in the way not attacking him. - -Sleep - get horses and leave for quarry. diff --git a/diary/day-13.txt b/diary/day-13.txt deleted file mode 100644 index 8abd373..0000000 --- a/diary/day-13.txt +++ /dev/null @@ -1,12 +0,0 @@ -Day 13 28th Dec -=============== - -Follow barrier - see ripples, seem worse the further away we get. Duration and frequency don't change. Pylon seems to be bringing it back under control. - -Ground is very dry and loose - not many plants. Get to a quiet point - see a horse in the distance coming towards us. Green, tall elven woman, black hair, looks very, very extravagant (Peridot Queen). Strokes my face and joins us towards the cliffs. - -Worried when she looks at Geldrin. She's seen all 5 pylons. Made it to the cliffcutter town. Murky, dwarves and gnomes. Barrier problem seems to originate by the cliff. Track towards the barrier by the cliff. 21:00. - -Cliffs are sheer drops with rifts and barriers. Water is choppy and quite dangerous. Recently cutting close to the barrier. Break into a tool shed for the night. Wind picks up outside for a moment. - -Barrier around the cliffs is the emanating point, about 20 mins away. Not much wildlife around here. 23:00. Morning wave sounds are getting louder - Peridot goes, and 2x sea creatures rushing up the sides of the cliff. diff --git a/diary/day-14.txt b/diary/day-14.txt deleted file mode 100644 index 8fe24ea..0000000 --- a/diary/day-14.txt +++ /dev/null @@ -1,66 +0,0 @@ -Day 14 29th Dec, 06:00 -====================== - -Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. - -Peridot Queen arrives - has wings, appearance of an elf. Geldrin, Invar and Peridot Queen go down in a lift right next to the barrier (1 meter away). Mine shaft with some wooden structure beams, branches off away from barrier and parallel. 08:00. Further down, wooden wall constructed saying "danger of collapse". Hear creature. Man stood there, human with scar, pushing a plank back into the wall. Peridot Queen pays him one of the old copper coins. - -Transforms into a green dragon. Incident a few days ago came, 30 years not had any problems until now. Beasts like bulls shot up from disturbed part, towards the wilderness, shrieking like a banshee. Gnome says "smell like candy and has legs" probably lies. On dwarf has barrier duty and found a small crystal on last duty. - -Fly out of the shaft, and Aliana and Dirk see a shape. 8:15. See a group of miners, a dressed differently human comes over to them and points to us. Human walks off towards the barrier. - -The dwarves then attack us: 4x dwarves and 1x gnome. Gnome throws a blue rock on the floor. A small elemental comes out and attacks Geldrin (possible spell effect). - -Manage to knock one out and the guards come over - -& bring him round. He says: "He's coming, Terror of the Sands is coming for you all." Guard knocks him back out. - -Guards take him back to town. Private Burke wants us to visit the station before we leave. All have 5g and old copper coin. Gnome has two other blue crystals. 8:50. - -Gets to 9:00, more obvious flickering but nothing obvious. Believe the human may have come through the barrier. The human came from approx where the point of origin is. - -Invisible Joy appears and tells Dirk they are in pain and it burns - asks for Dirk's help. - -The thing causing the barrier issues? 9:50. Follow the salt trail from the water elementals. Salt trail thins out but no sign of them. After a time land becomes more lush (approx 7 miles from the barrier) with insects which we didn't see before. 11:00. - -River ends on the cliff and comes off in a waterfall (shallow river). Path ends at the river, about 20 years old. - -River appears to contain water elementals. - -Elemental says: "Pain gone, no hurt me. You come take me like others, take we escape through pain, closest good water." - -Geldrin frees the two in the blue crystals. Elemental wants us to free the rest. Death dome - came through hole made for poison water. Hole hurts, in the sea. Elemental stealers trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. Powers death dome. Garadwal was one with the moon rock but escaped. - -Scaly dragon with web fingers goes through dome - - -blue/grey colour. One big one with four arms and tridents, poison water, and Garadwal with tridents. Hole by cliff face at bottom of sea. Occasionally somebody/thing goes down to annoy the crystal. - -Head back to the town to speak to militia, 13:00. - -Salinas - earth and water - the guy our attacker is talking about. Soon free like our mother Garadwal - sand, earth and fire. Barrier is enslavement. - -8 altogether - soon find hidden lair of oppressors, used as batteries. - -Element diagrams: Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. Second diagram includes salt, ice, lightning, smoke, magma, sand. - -Theories: Needs of the many outweigh the needs of the few. They tried to destroy the world and got locked up. Preemptive locked up. Water back: 10 miles down the path from Seaward (firewise), 10 miles down the coast from the barrier. Head back to quarry. 16:00 / 18:00. Door in the lift right next to the barrier. - -2 panels missing from the hole. Passageway descends down behind the wooden panels. Goes down quite a way - has been excavated on purpose, not a mantle seam. Widens out and opens to a real old built wall (1,000 years old). Opens into underground structure. - -Right old door - sign of aging, handle hurts. Old gnome walks out, realises we are there. Gives him a coin. "Underbelly?" - truce in place. - -Get a tour prison: Down corridors, turn left many times. - -6 corners, huge metal door - dragon clearly holding ring. Go through - see barrier at far wall. Smaller barrier encompassing a massive salt dragon - sweating salt for 20 years into the earth. They are trying to free it. Room was full of odes and ends and copper pylons were there but they removed them. Runes on floor barely visible as covered in salt. Another room has 4x curved copper pylons, removed 20 years ago - dragon was already seeping salt. - -Keep Justicar out of it down here. Down to the left is the original entrance. Go look at it - similar to a room we have seen before in the observatory? Examined in the last 20 years. Big black dragonborn comes in - Turquoise's boss, not many around. - -Cult looking for a laboratory. Basilisk - there's a laboratory of a similar vein 20 miles earthwise along the barrier. Head back to town. 20:00. Common room - sharing with one other person who hasn't shown up. - -Message to Basilisk * He comes to us. Knows little about salt elemental. Black Scales - mercenary group, work for Infestus (black dragon). Basilisk went to check observatory - couldn't open the chest & couldn't get in the golem underground room either. - -Garadwal: Prison at lake by lab? - ooze one. Frozen near Rhinewatch - ice one. - -Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. Is he an elemental? - -Go speak to Elementarium guy in Seaward. diff --git a/diary/day-15.txt b/diary/day-15.txt deleted file mode 100644 index 90ce865..0000000 --- a/diary/day-15.txt +++ /dev/null @@ -1,30 +0,0 @@ -Day 15 30th Dec -=============== - -Head back to Seaward. Follow a caravan of stone back to Seaward. Get to town - raining. 19:00. Need to see Elementarium; actually dressed this time. - -Quasi Elementals - don't have their own plain. Known 8 major plains; light and dark effects to create the 8 main ones. They became their own things and started to fight. Not become that powerful. - -E + W + L: ooze/slime/life - spark of creation. E + W + D: salt - makes water bad and crops won't grow. E + F + L: metal - positive construction. E + F + D: magma - destroys farmland etc. F + A + L: smoke. F + A + D: void - absence of everything, nothingness. A + W + L: ice. A + W + D: storm. - -Where does sand come into this? - -Goes down the trapdoor after talking to us about salt water elementals. Dirk listens - talking to somebody about it. They don't exist. Salt and water are their own things. Pollution. Salt elemental poisoning the water elemental. - -Dirk - crystals helping the barrier? Elementarium believes it, but he needs the Justicar to believe it so she leaves. Geldrin to try to sway Grand Towers to get her to leave. Rhonri or Revir might have an obsidian bird to relay a message. - -Arrange to meet back with him @ 9:30. Dirk asks about Garadwal - he goes down to the chamber and retrieves a dwarf skull and asks it the question about Garadwal. - -The information you seek is not for your kind. He is imprisoned in the prison of the Sands. Brutor Ruby Eye - troublesome being, wizard of great power. - -Shows us the skull room - he talks to them for information. What would happen if Garadwal escaped? It would be bad indeed. The barrier would be weakened by the loss of one of the 8. He was the only void they could find. If one was to escape it would be him. Feedback from the destruction of his prison would have damaged the others. - -Geldrin tells him of the tri-moon shard. Brutor knows of the first crack. Envoi was tampering with it for his own means, tampering with the containment device, and if something happened to him it would be bad and cause the crack. Wizards didn't agree of their entrapment but they all agreed Garadwal needed to be contained. Ooze was a good one. Ice and storm were put in the same chamber as land was tricky to be dug. - -Stop leaking? Maybe sigils out of whack. Brutor killed by black dragon. Demi lich - how he was made. Maybe a way to reverse the polarity. - -Spinal! Brutor's password. Winter Roses? Envoi's password. - -Halfling killers. 8 things linked to the poles. Pirates. Elementals. Received downpayment for our work so far: 200g. 20:30. - -Put horses into the stables. Stay at the Night Candles. diff --git a/diary/day-16.txt b/diary/day-16.txt deleted file mode 100644 index b1762c4..0000000 --- a/diary/day-16.txt +++ /dev/null @@ -1,176 +0,0 @@ -Day 16 31st Dec -=============== - -Head to town hall to see Rewi Lovelace - gnome. Room is very messy. Obsidian raven is pulled from a drawer, called Errol (but not really). Justicar causing more problems than solving. Request further evocation spells. - -Rewi - thinking on how to enhance the pulley system at the cliffs. Retrieve horses and cart and head earthwise. 10:00. - -Limit: sis poor? Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. Continue earthwise towards Newhaven. Land starts to get lusher and seems to be at the edge of the salted area. 12:00. Lady at a well - the only freshwater in the area. Others have been boarded up as water is bad. Mayor runs a farm - keeps chickens. Full up water skins. - -Road out of Newhaven in disrepair. Outside of town grass dries up again. Town seems to have good water as an anomaly. Not many birds around. - -Nothing around to indicate a laboratory. Obsidian raven appears - suggests meet up with Justicar and work together, wants our location. Don't give it to him. Flies back to Seaward. - -Keep going to 10 miles away and 1 mile from barrier. Find charred earth - last few days - campfire and rations - cultists? See some tracks, 5-6 people camped. Prints show they are searching for something. Nothing obvious. Follow tracks towards barrier; they stop and we see acid corrosion and blood speckles which look to be swept over. Black dragons have acid. Green is mist. - -Geldrin checks the compass and we follow it about 30ft down. Find weakened signal, see purple, and find 10ft stone walls with a door. Password opens it (Spinal). - -Enter into chamber. 2 golems in dwarf form guard a door. Spinal opens the door. - -Go left down corridor. Enter large room - stone benches and lecture seats (seat 20-30 people). Jagged rock horn - representation of Tor. "Tor Protects" written underneath statue. No visible disturbance to the dust. - -Book on lectern - Book of Ancient Dwarven language on Tor. Head across the corridor - room, same size but only contains teleport circle (one set). Geldrin takes rune number. Dirk finds footprints that have tried to be covered up and lead down the corridor. Fairly recent, could still be around as have gone back on themselves. - -Follow footprints to a closed door. Footprints seem very purposeful. Ruby in the dwarf face releases some chains which open the door. - -Use my crowbar to hold both of the chains to keep the door open. Geldrin sets an alarm on the hatch and teleportation circle. - -Go into another door (2nd left from the hatch). Purple glow from the room. Paperwork on the walls of pylons and tower structures. Bubble of shield energy in the middle. Scaled model of the penta city states. Suspended globe of elements at each of the compass points. There is a city Fire Airwise of Lake Azure half way between the lake & Aegis-on-Sands. No sign of any of the prisons or labs on the model. Elements don't move. - -Teleportation circle activates. Retrieve crowbar and hide in diorama room. - -1 person seems to come out and goes to dwarf face door, to door opposite us, then over to us. Tanned skin gentleman comes in - human, desert style robe, Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. Has found several circles and he is a collector of magical trinkets. Make a deal - he gets all the coin/gold/silver and we get first pick of the treasure. He gets the next, then we get 3 other picks, even split. - -Lounge has a scepter that seems out of place. Dirk takes it and an alarm goes off. All doors are now arcane locked. Go back through dwarf face door. Go left. Mouth appears and tells us traps are active. First door - ten skittles at the end of a lane, poker table and darts board with 3 darts in the 20. Poker table is magical; whole room is magical. Next door totally empty room... Next door - silence spell goes off. Room is full of rows and rows of crystal balls. Memories but we don't know that. - -Back in the lounge hidden room behind the dwarf portrait: blank paper and non-wounding dagger. Paper is magical to write special, & silence spell stops. Go back to crystal ball room. - -Memory of goliaths helping to build grand towers. Find the ball with the most scratched plinth - memory is filled with dread. Acid smell like house, scarred by acid and dwarf skeleton. - -Get one near grand towers ball - see 4 other people in a circle - -around teleport circle: human (male), elf (female), human (female), halfling (emo), purple crystal rises up from the circle. Before acid splash, see lounge talking to Envoi, asking about if it's affecting anything. Joy sets off the alarm. Ruby Eye takes the dagger and splatters blood and stops the alarm. - -Before - fields of white roses. Envoi talking to elven woman from circle. Joy and dwarven lady next to him. Feel content but forlorn when looking over at Joy and Envoi. - -Male darkish elf next to Envoi being introduced in observatory - tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. Envoi wearing 5 rings! - -Hot Spring - opposite dwarf lady (Brookville Springs), early date, falling in love. - -Standing in a room in his building: purple dome and copper pylons with blackness and a shadow. Ask shadow what it thinks. Shadow replies, saying no, not yet; it is trapped and threatens calamity. - -Nice room, intricate vine patterns, elven mage asks about change - nothing. Browning retreated to grand towers. Glad she is here, worried about it - warm secret. Think Browning is going to cover it all up; thinks if people know how it works then they will ruin it. - -Last one - see him in mirror wearing robes. Book and chain with staff, looks down under mirror, head on floor, stone opens up showing skull. Puts 2 crystals in chanting and "Tor Protects". - -Pythus Aleyvarus? Blue dragon. Ruby Eye seems to have planned the dome: 5 pylons and 5 more around the Grand Towers to make it work. Early periods where he's protecting towns from elementals. Group all fighting; when it breaks 6 armed rock creature, they all make a pact. - -Male human points him to a crater with a massive purple rock & Envoi says he will build an observatory to track it. Brutor says it is what they need. - -Warring kingdoms - join together to construct everything: Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. - -Turning on of the dome at the point of turn on, something flaming bursts through and Browning bursts through the barrier and is attacked. Room opposite - big engineering astrolathe, seems to be the planet which is a disk, with the moons and their orbits in real time. 15:00. - -Display shows the date and time - current date 31st December 1011. Room next to orbs. Protection from Elements spell. Open the door, boulder elements in there and try to get out. Slaves? Made to dig - leave them there. - -Down the corridor. Room same place as calendar room, not locked or trapped. Room is empty, mirror image of calendar room. - -Opposite to boulder room: Smaller room - empty aside from picture of moon holes, look like big gem holes. - -Opposite orbs: Feel weird opening the door. Glass cabinets in pedestals and shelves with various nick nacks, brass plaques and glass domes over them. - -Curved with flowing water - bottle "Containment taken from Lord Hydranus". Stone at the top 2 are glowing. Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). Magic bounds / magic missile. - -Great sword - stone and bone hilt with steel, dwarven steel, blade in friendship. Sword given by kings of the goliaths. "To the spell ones on the crafting of your big building." - -Codebook holder - with a book very delicate: "Book recovered from grand towers upon discovery." - -Celestial dwarf mannequin, ornate green silk dress, gold trim & tiny emeralds along the trim. "Worn by Princess Seline to the Grand Ball." - -Cushion - small red gem, garnet. No plaque. Size of the moon holes. Coin press - grand towers pennies. "Press used for souvenir pennies." - -Jar - eyeball in fluid, "My Eye". Scrying eye, can scry once per week. - -Book - sealed not open, made of tan leather and looks unsettling. Platinum lock. Human teeth are around the edge. "Noctus Corinium Grimoire" - lock looks like it's an addition. - -Plinth wheatleaf - pillow with marble cube radiating yellow glow. "Drixl's Cube, a gift from the golden field halflings." - -Bottle - wine shaped, "first pressing of Siggerne - midh-iel", Maiden's dew drink. - -Ring - looks like Bushhunter ring, ring of protection +1. "Failed attempt to recreate my stolen ring." - -Comb - dragonbone and jade, details carved of a forest. "Gift from the elven princess to my wife. She never got on with it." - -Scepter - silver, fine golden filigree, white seaward gem in the top. "Staff gifted by the merfolk of the great sea." - -Gem writing: "Time existed before me but history can only begin after my creation." Celestial book - tower seems to be the centre of the world & - -don't know where it came from. Clues: Geldrin got a vision when reading it, saw 6 primal elements looking down on the world. - -Geldrin's alarm goes off - see figures at the end of the corridor: 4 burly black dragonborn. They hear alarm. "The alarm's going off, someone is here" (Draconic). - -They want us to leave, claim it in the name of their master. Shields have mosquito on it. Create a shield wall and we yank crowbar out. - -Fight: 3 1/2 swords 4 shields, mosquito 70gp 4x tower pennies Obsidian bird - Errol. - -Errol - last message was gnome giving our location (Rewi) to black dragon? - -Red gem found under plinth under Celestial book: "The floor of my ship is decorated in equal parts with riches, tools, weapons and love" - games. - -Next room - walls and ceiling are blackened - kitchen. Nothing in the oven. - -Jar contains gem: "The rich want it, the poor have it, both will perish if they eat it." Nothing? - right here. Barrel seems magically sealed - rune for the cold beer. Contains a jar with a hand in it. Hand is ruby eyes and has blood which stopped the alarm. - -Next room is warded and locked. - -Previously empty room is now full of books: control earth elementals, Tor, gems, for spells, wards. Information on how to construct crystals for magic. - -Gem inside a book: "Although I'm not royalty, I'm sometimes a king or queen, and although I never marry I'm only sometimes single." Bed. - -Summon unseen servant in the elemental room. - -Gem, Elemental Room: "In my first part stir creativity and in my full form I store the results." Museum. - -Gem, Orb room behind an orb: "You have me today, tomorrow you'll have more. As time passes I become harder to store. I don't take up space and am all in one place. I can bring a tear to your eye or a smile to your face." - -Memory - orb room. Memory is: "If you got here you got my message. Only clue is based on the layout of my rooms. When you get inside you'll know what to do." - -Gem, Calendar room: "I guard the start of this recipe, just scramble, hidden." Kitchen? - -Bedroom - seems to have a woman's touch, tapestries, rugs etc., wardrobe drawers, full length mirror, chair, fireplace. Compartment under the mirror - skull with 2 gem stones rolled up paper in the eye socket behind big gem. If you feel like lived a good life, this is the Denouement (final part, finishing piece). - -Gem in the other eye: "They are never together, yet always follow one another. One falls but never breaks and the other breaks but never falls." Calendar. - -Put all of the gems in the slots and room opens. Purple sphere that doesn't let light through. Void creature? Won't used as it may have been too weak. - -Seems to be a self contained barrier. Void creature wants to be let out. - -The diviner - the one who stole his brother - the twins we killed. Mechanical trap activates something in the room. Magical trap teleports to the room. - -Pythus takes creepy book and Celestial book. Dirk: sword / scepter of the merfolk. Me: coin press / cube. Invar: ring of protection / potion bottle. Geldrin: spear / eye. - -Pythus gives Geldrin a scroll of teleportation and goes. Geldrin takes eye and scrys on Pythus. Sand stone cavern, pile of gold on top is a blue dragon (serpent-like), reading the skin book full pages made of cured human flesh. Seems to be at the edge of the desert near "Salvation". - -Back to void room. Will tell us what is in their room in exchange for freedom. What is in the room will help release him. Rubyeye wanted to live forever. Went in with elven woman and dark male (Envoi). Just a fragment of the void, but if added to the others can get more powerful but only a tiny bit. - -Inside a key looks like pylons placed against a barrier circle of copper and turn it - talking like barrier isn't active. Pylon for his prison as well as another. - -Use the ruby to open the door, then destroy it. Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. - -Go through door next to void. - -4 plinths - by the door are 4 copper pylons, look like they would go over rods/force field. - -2 metal circles, runes all around (copper). 1 - steering wheel size. 1 - over a meter, stood upright. 3 - dragon skull, Alsafur dog size. 4 - book, same lock as on the creepy skin book, made of leather - unpickable lock. - -Possibly storing one of Envoi's rings - it was under the skull. Skull is one of my kind - Veridian dragonborn, dead for approx 1 thousand years. - -Envoi's ring: a sacrifice made to live eternal, father and daughter. Book writing around the edge - old dead language. The memories and learning of Atuliane Harthwall. Needs a powerful identity spell to learn the command word to open the lock and book. - -Mosquitos, woodlice and moth are now around. Rain storm. Void will help as long as he is not detained. - -Lightning strike is seen although underground. Try to let void out. - -Push pylons against his dome - opposite pylons seem to switch it off very slightly. Ring by the dome turned and attracts to the pylon. One full turn releases the dome in that quadrant. - -Void releases a circle of obsidian to control him with. - -Take his ring and book and small ring. Remove gems from the moon face lock. Head out and close the initial door behind us. 18:30. Massively overcast with the storm. Air is thick with insects: moths/mosquitos, ants etc. Circle of storm 1/2 miles wide, moving unnaturally. Push of barrier looks like 8 massive claws pierce through - black dragon looks to be trying to come through the barrier. He wants the remains of his son - seems to be the skull in the sealed chamber. - -Go back and get it. Missing the side of his face - think Rubyeye did it, but he may have started it by killing his son. Place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. Takes the skull and says we are even (for killing his men). - -He flies off and Thunderstorm goes with him. - -Head back to Newhaven with the cart. Go to pub - picture of 5 hands together making a star. Silver dragonborn behind the bar, golden rim spectacles, halfling wait staff, tabaxi bar maid. "Gelandril Harthwall" been here 10 years. It's said the 5 wizards used to meet here. - -Sleep. diff --git a/diary/day-17.txt b/diary/day-17.txt deleted file mode 100644 index f4ed42f..0000000 --- a/diary/day-17.txt +++ /dev/null @@ -1,60 +0,0 @@ -Day 17 1st Jan / Tri-moon -========================= - -Goblin looking for us - Scum had a message for us. Find Scum as we leave the pub. - -Apparently warrant for our arrest: Treason - conspire against the Towers to break barrier. Scum - telling Elementarium to meet us with Ruby Eye skull (1 mile outside Seaward). - -Sent message via Errol to Grand Towers saying we are going to Everchard to put them off the scent. - -Message to the Basilisk: arrive at possible meeting point, waiting for nearly 3 hours. Cart comes off road with a human onboard, don't recognise. Seems suspicious. - -1 box contains Grand Towers pennies. Council ask for him to transport to Fairshaw - The Cart (Garick Blake). Looks like the gnome sent it. - -Dragon notes: Silver - Harthwall. Copper - Spruce, white. Black - Infestus. Veridian. - -Blue - Pythus. White - the ancient. Red? - Soot. - -Manifest: 1 currency - Towers pennies. 1 provisions - ash jerky??? 2 armaments - spearheads, copper ends, trident heads tipped in copper. 1 waterproof papers - reams of enchanted waterproof paper, salt water only. 1 tar. 1 tools - heavy duty, ship building? 1 misc goods. Should have gone out in 2 days with guards. Invar knocks the driver out. See what looks like Elementarium riding towards us. Gnome seems to be trying to clear the decks. Elementarium doesn't know about the spearheads etc. Wants to set up a meeting with Lady Harthwall. They have a council to discuss security matters within the dome! Gives us the Ruby-Eye skull. - -Jerky bag contains a hemp bag - pungent sickly sweet smell, reminds me of rose spice, but narcotic. - -Ruby Eye: Infestus' son - spawn of evil - needed a powerful sacrifice for a friend (Envoi). Salt dragon leaking - worried tampering with the life may have weakened the force. Reinforce the barrier - if we don't weaken the barrier, possible fix by refilling the voids, or safely disable the barrier - turn off with the fail-safe button in Grand Towers. Weird skin book - grimoire Noctus Caerulium - forbidden magic. - -To stop Tri-moon shard we would need to fully redo the dome. - -Create a device to repel it but barrier would need to go down to do it. Relationship with the merfolk? Fish men, different people, then those invited into the barrier. Great helpers to set up barriers. Thinks Browning had something to do with goliath settlement disappearing from the history (must be clues). Green dragon seems to be residing in the area. - -White Dragon helped to build the dome. Reds, no blues. Elementals liked to attack and this is why the barrier was put up. Tower was perfect place but needed more. Backup plan for the void elemental stashed in his safe, if not there need to find another. Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. Tells us to get on the rune. Appear in a lush castle room at Harthwall. Sat at head of table seems to be Lady Harthwall; stood beside is Sister Lady. - -4 chairs by the rug. Rip in the sky - Basilisk appears with: Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. - -Catherine Cole vouches for me Valkarige vouches for Invar - -Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. - -Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. small group of like minded to protect the barrier want to maintain stability of the barrier. News reached them about the fragment. - -Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. - -Green dragon responsible for destruction of Dirk's homeland. Rubyeye blamed Dirk's kind for helping the dragons. It's said Verdilun dragon is shacking up with the red dragon. - -Keeley Curdenbelly's research maybe of use (the "liver" in the desert) 1. head to merfolk 2. get crystal from the water 3. speak to ancient one We passed off the twins mum. - -Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical - -leeching elemental prisons Garadwal void on the loose shield crystal in the sea. World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. - -Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* Gave him the coin press and told him the coins in the cart were a create of them. - -Back to our cart. - -Head down the main road toward Fairshoes. 5:30 Start hearing birds and animals etc. 10pm Find a place to camp for the night. - -Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. - -Back on the road. Uneventful day heading to Fairshoes. - -Make up camp again. - -Nothing happens. diff --git a/diary/day-18.txt b/diary/day-18.txt deleted file mode 100644 index b700eaf..0000000 --- a/diary/day-18.txt +++ /dev/null @@ -1,4 +0,0 @@ -Day 18 (Friday) -=============== - -2nd Tan with Finnan 16 days until Timnor diff --git a/diary/day-19.txt b/diary/day-19.txt deleted file mode 100644 index 496a811..0000000 --- a/diary/day-19.txt +++ /dev/null @@ -1,66 +0,0 @@ -Day 19 (Saturday) -================= - -3rd Tan 15 days until Timnor approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. Go through town to the harbor to get a boat. - -Temperature is oddly warm for this time of year and this close to the sea. Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. Cabin 17. Figure head is a wooden shield crystal. - -Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. - -Hostess lady chants and brings forth great winds and a storm. - -Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. - -Merfolk - they've never done that before. Pirates - has been attacking people more recently. creatures that can petrify others by looking at them. 150g if we need to fight. 5g if we don't. Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. Silver Dragonborn - Bard - recruited. Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. - -Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. - -Salinus? He calls on Salinus - worm - calls forth salt elementals! - -Kill him and his crew. - -free passage on any of their ships and 400g Receive Scimitar +1 - attune for water breathing. Kairibdis' Pistol of Never Loading +1 (D8) noisy. - -Retreat to cabin with a cask of rum. - -Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. - -This is the only town on the Isle. Turtle men seem to be the locals. - -3rd road left 3 building - Sailors Rest. Take a shrine tour - Shrine to the great Turtle. - -Merfolk - the accordionman - look after the Turtles. -200g life gem. We stand on the back of The Great Turtle. - -Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. - -Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. - -Water gets up high on a tri-moon and covers the building. Tell the guy about our fight with Kairibdis - Walter. Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 Takes us there. Old town in disrepair but one dock looks fairly well maintained and repaired. - -3 houses look decent too. First house closest to us seems to be lit. Creep up to look in. 4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. 1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. - -Both other huts have lights. Furthest one seems to be more secured. One has a conch and calls and says kingly comes now. Wait around for him. - -Water comes back. Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. - -11 fish people carrying things. 15 overall. Something seems to be coming by barnacled sea cows. 10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. - -8:30 9:20 10:00 Chariot back pulled 10:30 Creature stops and sniffs as they are being watched, tells them to search for us. - -Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. - -Need all or the plan will not work and he will be cross and he will be worse. - -Think 6 armed creature will attack our ship for the weapons. go back to Turtle Point. 12:00 Plan to go to Freeport instead of Baytail Accord. - -shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. - -Tell her what happened - 10ft 6 armed thing is an Excellence. Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. Dunhold Cache information. - -Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. - -Recommends to speak to merfolk of Lake Azure for Dirk's city. - -Shipment - get a small unit. Sahuagin have one of the conch's (8 in existence) Kiendra's. Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. - -one of the Merfolk will come with us. Pact leader Freeport - Tiana. diff --git a/diary/day-20.txt b/diary/day-20.txt deleted file mode 100644 index 2fbc593..0000000 --- a/diary/day-20.txt +++ /dev/null @@ -1,74 +0,0 @@ -Day 20 (Sunday) -=============== - -14th Tan 1012 14 days until Timnor Stay in the barracks for the night. Dirk has a strange dream about a goliath sitting on a granite throne looking concerned, two females tending to a dwarf, who will live but will lose an eye - -(Rubyeye), fought well. *changes* Savanna scene: dancing around a fire with a granite city in the distance. Face in the fire ?Enwi? then Jagg? then disappears. - -Head towards ship. (Merfolk) Guardfree - states his mistress has been working on misdirection. - -get food brought to our cabin. Journey is uneventful luckily. Oddly a busy bustling city mishmash of styles. Rainbow ship is docked here. - -Quartermaster loads shipment onto our cart to take with us. - -Baroness Lavaliliere - head of Freeport. No taxes for trade here. - -Newspaper: Ancient takes flight - left his home for last 1,000 years moving to Snow Sorrow. Fighting still going on in the mountains near Highden - good taking a beating. paper seems to be propaganda. Go shopping. - -Esmerelda - magic item shop. Go to see Tiana at the Siren and Garter. - -Expecting a group of 40 to help fight Excellence. - -They are mortal and can be slain. Delights in bossing the mortals around. Baroness - seems good but lets people do what they please. Although can be random with which groups to dispose of. Latest one around a week - -ago - a group of bound elementals and gems - fire and water. another group selling archeological items from desert - Tabaxi awakened etc. Ceased the goods. - -Go find the Basilisk in a private room. - -Highden - being attacked by a Fire Excellence. has something in for the dwarves. Investigated the crater and found an old lab but unable to get in. - -Friends on the council meeting with the ancient around Snow-sorrow. Azureside - reported perodotta and spawn amassing in the area. Arabella kidnapped again - targeted attack, faces removed. No forces available - zinquiss will meet us at the harbour + 1 other. following her predecessors' ideas. maybe something similar to Lady Harthwall but is not a dragon. Baroness neutral party, fairly reclusive - -Told about copper weapons - paper - Maelcolm Jethnes & Earl of Fairport involvement in the shipment. Get a dagger from Basilisk. 1 charge for dimension door. 3 charge for teleport spell opens a portal open for 5 seconds. think of the place to go - big enough for a person. 1 recharge per day. Lesser rift blade - Dagger +1 - 3x charges. - -Harthwall 2nd most Common last name (Browning 1st). Always been a Harthwall in charge of Harthwall. No Records of relative. Very reclusive family who don't appear in public until the coronation ceremony, only seen together to hand over the crown. (possibly disguise self spell) - -19:00 Go back to see Tiana again. get another guard - Guardfree. - -Pirates Pearls Plundered - Icky lower. Poor Gut Refuge - Cheeky Thimble Rugger - -Go out to the cart - Dirk notices the padlock has scratches on it. The scratches look uniform & pattern I recognise but don't know why. Upside down thieves cant - "Drunken Duck" & scratched with claws like mine. change the markings to Everchard. look into parking and Guardfree keeps watch. Darker in Bugbear next to lizardman. - -Head over to the temple to give them the spear. Female half-orc comes to speak to us - hand over the spear and she goes to check it out with others. Donate in exchange for help? - -Request an audience with the higher power to discuss - won't be here for - -3 hours. go to get lodgings at the Pirates Pearls Plundered. Crab man in charge - icky. Baroness grants us an audience right now, young for an elf. Room is odd - paintings are the predecessors all wearing the same necklace (like a mayor necklace) & lots of jewelry. - -Desert relics - thought maybe they belonged to an old friend - long time ago - Velenth, Cardonald, - -worked for her before coming here - willingly. Vote 12 heads who vote who has the ability to uphold a very specific set of ideals. - -Other things taken off the street because she doesn't approve of the cult. - -Will loan some forces - Proviso - she gives us information about a laboratory. Can we get a red gem for her, hunt but not as hard as diamond in the workshop. Gaping hole in the side of the building. - -Barrier - emergency systems - something else in there - very young, cheers? she ran. - -Dragon - rumor to roost in the ruins of Dirk's old city. - -The creature in the chamber thing? ?Goa duck? - no. - -Has the code to the circle and the safe code whilst the defenses are up. gives us the lab. - -Valenth wanted to transfer herself into an object... Seems a little shook and guard helps her out. 22:00 Return to temple of Cierra. Huntsman has returned and comes over to us. - -Huntmaster Thrune. in runes. Ruby Eye spoke to their church often and interested - -will provide aid to kill Excellence. Ruby Eye thinks we might want to get the book back from the blue dragon before she tries to get it, she was Enwi's apprentice. - -Ruby Eye's best friend wanted to craft herself into some thing and continue in that form. Spear was a gift from a Huntsman of Cierra but it's actually an arrow and there were 5 of them taken from Cierra's last battlefield. - -Back to Pirates Pearls Plunder. - -Guardfree - will get his mistress to bring guest shells. Try to plan what we are doing. diff --git a/diary/day-21.txt b/diary/day-21.txt deleted file mode 100644 index bdb3362..0000000 --- a/diary/day-21.txt +++ /dev/null @@ -1,30 +0,0 @@ -Day 21 (Monday) -=============== - -6th Jan 13 days until Tri-moon We all have dreams that are tinged with cold. My dream - in family home, sibling playing happy memories, looked at town hall but looking like a crater but in fact a black hole pulling in more buildings. Hear a voice: "Where is he I know you hide him" horrible voice. Panic and turn then wake up (looking for Garduul?) Void! Just our room is cold. As the ice melted, a white dragonscale drops from the icicles. Go look for the Captain for a boat. - -loan the boat for 100g a day and 500g deposit (125g each). guardsmen 20 (Sergeant has a necklaced emerald glowing when he talks) zinquiss and black dragon born (Wrath). clerics 15 and leader. Pier 12 - large group merfolk 30 + 2 litters - -Speak to pack leader Tiana & other leaders gather. Get 2 guest shells. - -10 spare shells. Sergeant takes our cart to the keep. - -Captain Hween - -Wrath will stay on the other side of the barrier once we get there. - -Pack leaders: Shundra - Turtle Point Kiendra - Dunhold Cache Tiana - Freeport Alana - Riversmeet Set sail - sea is calm. Water seems clear - no noticeable signs of him yet. - -Merfolk, zinquiss, Wrath, half clerics in the sea with us. - -Excellence seemed to have come from 80 miles away when we were at the turtle village - so possibly Dunhold Cache or the smaller islands around. - -& net Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaw. - -Wrath (Colin) middle name. when he gets to Blackstone scale. Request to look for the location of Garaduul - -Island - pass it and nothing seems to happen. Arrive at Fairshaw. Boat is ceased upon orders from the Earl, occupants being detained for Treason etc. Diplomatic mission carrying members of the Pact etc. - -Suspect the Earl is part of the Cult. give zinquiss 200g for 4x healing potions. Guards return and tell us to stay on board whilst investigation takes place. Zinquiss returns with 3 healing and 1x greater healing (distributed). - -News: Highden - Battles not doing well, strengthened by dragon sightings. Heartmoor - People falling ill - surgeons deployed (Perodotta?) Grand Towers - Justiciars leaving to the 5 points of the penta city states. Provinia - locust and mysterious spiritual event where things keep disappearing. Sword blessed +1. diff --git a/diary/day-22.txt b/diary/day-22.txt deleted file mode 100644 index 47b7f38..0000000 --- a/diary/day-22.txt +++ /dev/null @@ -1,36 +0,0 @@ -Day 22 (Tuesday) -================ - -6th Jan 1012 12 days to tri-moon. Get called to the mess hall by Tiana. - -Construction under the water and they have made a gate by raising the crystal up to leave a gap. Fish shamans taking notes on waterproof paper also. Crystal is approx 1m square. - -Can sense Kiendra but no response possibly unconscious but seems to be in the cavern. - -Split underwater group into two to sort out crystal & also attempt to rescue Kiendra. - -Approach shield crystal in stealth. - -See - above our field of vision are some sharks who seem to have spotted us. - -Fight. - -We overcome and defeat mobs at the crystal site. Kiendra - found and rescued - very weak and tortured. & coin pouches - 112g (give to crew). returning - speak aquan. Find waterproof paper, 3x dispel magic scrolls (geldrin) Big Boss - Spear glowing dull blue - Doom spear +1 Suit of plate mail - Plate of Hydran +1 resistance to cold. - -Boat - pretty wounded. attacked - Hunt Master missing. Other party - Tiana's - dispelled shells and got Half orc priestess on the boat wants to check on the other team for the Huntmaster. Necklace Sergeant wants to come with us. - -Go over and Huntmaster fighting an Excellence both very injured. - -Deed Excellence! 4 mermen all mermaids - -4 clerics 6 guardsmen Survivors: survive Moor up by Dunhold Cache for the night. Merfolk recover our dead and lay on the - -deck - Priests oversee and I thank each one for their help and sacrifice. - -Pull up to the cove - lookout shouts there is a vessel already docked. Chariot with water elementals chained to the boat - Excellence's boat. - -We row to shore to investigate. Mother of Pearl named Chariot, no other signs of movement. - -Dirk speaks to elementals and they want to show us where the excellence live, will come with us on the big boat. - -Take the chariot back with us 8-10kg. Zinquiss will sell it at an auction in 7 days, have the address for the Freeport auction house. diff --git a/diary/day-23.txt b/diary/day-23.txt deleted file mode 100644 index e23094f..0000000 --- a/diary/day-23.txt +++ /dev/null @@ -1,54 +0,0 @@ -Day 23 (Wednesday) -================== - -7th Jan 1012 11 days to tri-moon. Go to Excellence lair with Merfolk - Pack leader Alana. - -Water ebbs and flows like a tide in the underwater cave. 20ft long crystalline sculpture of a dragon - base has runes glowing. 3 cages and barrels. 1 cage contains a merfolk - but looks different - green not blue. Alana seems to revive him and takes him back to the ship. - -Chests seem to be laced so waterproof - contents may not be openable under water. open one and contains white powder which I inhale. Rabbits - whole room turns into a black void. Bas, Athal - Salamanders - and Arabic writing. White dragon circling around the dome. - -Two blue eyes in the darkness coming towards me and really cold and back in the room. - -Other cages - in the middle of the cage they see snail with a gleam of metal which is a jeweller's chain attaching it to the cage. Guardseen says the snail is a bad omen - its been drugged. Back to ship. - -Merfolk - abducted from beyond the barrier, him, his friend and wife. Woke up one day & they were both gone. Wife is nobility in their pact. (Snewl?) - -Hunt master dispels magic on the snail & a mermaid appears. Empire of their people outside of the barrier captured while on diplomatic mission to the city of Onyx, doesn't trust them because war between them and the Salt elementals. Princess Aquunea. - -City of the black scales has a "door" into the dome - Infestus can't use it as too big. Payment to access is a Grand Towers penny. - -Check out the barrels etc. - -sickly sweet medicinal - potion of magical energy regain 1 slot - 1 hour. silk and parchment interleaved - runes. 2x white rose powder. Tiana gives us 1,000g. metallic censer (incense holding burning device) silver? religious? water god? Censer of Noxia. Ability to enrage and control water elementals. It's active. - -Send message to Basilisk. Arrive back to Freeport - seems very cold. Much colder heading back down to Freeport. ?Rimewalk issues? - -Snowing over the sea, everything very dark and snowy. Guy shouting the End is Nigh - moon is crashing down into the city. Ask him which city and he then "it bothered he dreamt it." - -22:00 Lots of people having dreams. Gnolls attacking a village requested backup from Everchard and Fairshaw. - -Underwater - mermaids - "big cat with metal wings attacked it." Happened a few nights ago - same time as ours. - -Head to the Castle to see the Baroness. Necklace is removed from the Sergeant and he just walks off. - -Mermaids - Having a meeting in 3 days at Baytail Accord to discuss what happened. We can go. - -The dreams seem to contradict each other, possibly from the Ancient One - so could happen. - -Huntmaster - going to Grand Towers to speak to the Hunt Lord. - -Justiciar in the city. ?Looking for us. Baroness gets us into the Drunken Duck - secret in Air wise from Jewelry District. Written on our padlock, on the cart. Cart still ok in the castle. - -Baroness Master - Valenth Caerduinel. Necklace. Sister is a ring. - -Go to Drunken Duck. All the walls are covered in pillows and ?soundproofing? Red dragonborn - -2x tabaxi Automaton - -2x halfling and gnome Survivors: clientele Gave me (Axion) Schnapps from the Brass City! Barman says only the best for the "Little Finger". He's intrigued by why the 3 best members of the Underbelly went on a mission. - -Tabaxi Whisperers laden with 'Dev'. Traders 'Keeps' from foot to foot. - -Faint noise through the floorboards, raised voices? Automaton keeps talking about a factory. Wants to know where the labs are. Tell him all by the barrier. Cuts down his search radius... - -Get a private room to discuss matters. Send message via the underbelly to advise we won't be going to Baytail Accord. Will go to desert laboratory. diff --git a/out/1.txt b/out/1.txt deleted file mode 100644 index d7259b1..0000000 --- a/out/1.txt +++ /dev/null @@ -1,62 +0,0 @@ -Ever Church -Swampy woods - fruit trees orchards Day 1 - -Winter - 1 orchard has trees in bloom - [unclear] - buzzing - bee pollinating & enabling trees - to live - slightly bigger than normal bees. - - dark bark, blue leaves, red fruit (deep) - -Town - mix of light & dark woods. - -Population 3k -No visible district - larger manor house in centre. - -Cider inn, cider. -Beeswaxed floor, a nice small -half elf playing a lute, much is half elf & human -family resemblance -Father Burnun - prize fighter -half elf - Gelissa * - -Box: -Baz - Invar -greying hair - paladin looking, did not get the plate. -Leonard Dirk -politely - -Shaun - Geblin (the mighty) -gnome, wild brown hair -glasses with no glass - -Farmer - old John Thornhollows. -Another 3 pigs gone -Vanished -6 missing but only has the ledgers -for 3. Had a group of around 30 pigs? - -3 daughters: Annabel, Isabelle, Cumberella - -5 keys on the bar - but changed to 4 & no idea -how it changed. - -Register with Earl - ? mercenaries. - -Pig's daughter keep best books, 1g each to go look. -Shepherd maybe missing some sheep. -Bess - cat missing but no rats recently either. -Rats missing too? - -Last summer built a hostel - house all the homeless -people, but not enough for homeless so letting out. Inn's -not happy. - -Go to Earl - half-orc (crunch looking), black clothing covered with birds. -Geese missing. - -- Butcher - serving new mushroom burgers since meat not coming - in. -- Woman - out of town come to find husband, come from Albec - for work, no one seen him, was putting up fences at a farm. - Malcolm Donovan - sent to jailer - birth mark on back of right hand. -- Apply for poverty tax - eligible - slides 2g over to her - for the anti-tax. diff --git a/out/10.txt b/out/10.txt deleted file mode 100644 index a400fac..0000000 --- a/out/10.txt +++ /dev/null @@ -1,49 +0,0 @@ -Half elf remembers Sir Alistair. - -Go see exchequer - half elf portly looking, Lawrence. -Ask about militia wages - he starts to panic. -Says we need to speak to the sheriff or the Justice. -Didn't do anything wrong. -Blames the scribes. Set them baron cut down. -So he was getting the payment for the other 23. -If we keep quiet he will help with more info if needed. -Gives us 50g. -8 carts, 16 horses, 60 swords. -Industrial angle: we have 2 extra horses. -58 days left on town finances. - -Safe: -small black velveteen case, gems. -3 treasure chest: gold/copper/silver. -2 bags platinum pieces. 6000gp. - -Earl's documents - file is empty. -Half elf remembers him having documents! Vicmar Danbos? - -Leave to go see Brother Fracture, 9:50. -- Gregory doing well - not had chance to heal the others, - will feed the rest. -- No way of communicating with other churches. - -Go see Gregory: -Remembers Dec started, thinks it was 7th/8th. -A few weeks ago according to the information from the town crier. -Can't remember anything from then until now. -Can remember 2x militia taking him to the hotel, -then waking up in the church. -Stonejaw & Ralfrex (2 of the missing militia). -Other people in the hostel - said it looked like a jail still. -Goat lady - Bagnall Lane - & various others. -Militia house open for about 1 month - no reason -for it to still look like a jail. - -Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. - -Cider inn cider. -Homeless in town not really any but remembers Gregory now. -Remembers dead goat down Bagnall Lane about 1 week ago. - -Go to hostel. Investigate round side of building. -Stone stables, 2 carts & 4x horses in courtyard/stables. -Chain on the gates but padlock not locked. -Invar breaks wheels. diff --git a/out/11.txt b/out/11.txt deleted file mode 100644 index 6240d2d..0000000 --- a/out/11.txt +++ /dev/null @@ -1,40 +0,0 @@ -Release horses - I get magic missile. -Go into "hostel" to fight them. One is Gelissa. -Has a mark on the side of her face. -Kill other guy, subdue Gelissa. -Some corruption on her mind - Invar restores both her -mind & wounds. 11:00. - -- Look around the "hotel". First 2 cells are empty. -Approx 10 people still in the cells - all townsfolk. -- Invar creates a lock for the back door. 12:30. - -Tell Brother Fracture to concentrate on healing militia. -He will take Gelissa & militia & cart to the Barracks -and use that as a base of operations. - -Decide to go to the Barrier over the -"Swamp Laboratory". 13:00. - -- Rest for the evening - on 3rd watch, pigeon lady - near the camp. Didn't get a full rest. - -Day 5 20th Dec, 07:15 -Approach barrier - 2 large carts in view. -Go off the path. Tie up the horses in a -dip in the land. Go round to approach from the -trees. - -Find Cromwell (ranger) quite injured. Looks like -the damage Geldrin did to Dirk accidentally. -- Tracks look like heavy steel boots (Goliath in full platemail? Core?) -- We are about 1/2 way between the shield pylons. -- Carts are empty - large group of people go towards barrier, - small group to the swamp. - -Follow the tracks - they seem to come back on -themselves & head towards town. Looks like just -Goliath. We want to put Cromwell safe. - -Decide to follow along shield towards larger group. -Hear a big group of people stood next to the barrier. diff --git a/out/12.txt b/out/12.txt deleted file mode 100644 index c792c31..0000000 --- a/out/12.txt +++ /dev/null @@ -1,39 +0,0 @@ -Dirk feels something is watching us. -Then is attacked by sheep farmer grubby. -Killed it & 11 militia & 8 townsfolk. -8 townsfolk tied up with rope. - -Black dog thing disappeared after we killed it. -But the maggot stayed. Upon killing this it let out a -massive shriek & all the remaining townsfolk started to -attack. -Located & subdued halfling girl. 08:00. - -Short rest. 09:00 / 09:10. -Get horses & Cromwell, head back along -the path to find a patch of trees to -hide the cart. - -* Long rest. 10:30 / 18:30. -Sword enchanted to add +1 until Invar's next long rest. - -2 twins commanding them. 1 went to swamp, other -went to Barrier (we killed it). - -Go towards the swamp - following the tracks of the -swamp, tie up horses outside swamp. 20:00. -Following 4 individuals - Geldrin's compass is following the -same direction. - -Come to a clearing at the barrier with a stone -building in the clearing - marble dome is against the barrier -with a large telescope through the marble dome & -the barrier. Approx 10 rooms. No windows. -Tracks lead right up to the building. Built approx -1,000 years ago. - -Hear a strange humming - door reverberating. 23:00. -Enter building. 2x plinths, 1 empty, 1 that -looks like Core dismantled. Head clatters off & -rat runs through left door. -Go through door by plinths. diff --git a/out/13.txt b/out/13.txt deleted file mode 100644 index 569e6cb..0000000 --- a/out/13.txt +++ /dev/null @@ -1,40 +0,0 @@ -Left door - library. -Shelves - all on one shelf missing "T" shelf in Astronomy. -Guess Trimoons information. - -Picture of a well groomed tiefling holding a baby girl. -(The Mage) one of the 5 who made the barrier. -* Vixago Eros * - -Paper work looks recent, drawer has been forced open - -diagrams of the stars. -Other drawer has rabbit/deer teddy, ring inside, gold band -with runes. -Ring is similar to Dirk's - sews the teddy back up. - -Vase - "part of me can be with you while you study, -all my love - Joy" - -Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring -back Joy" -Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" - -Paper work - measurements of the tri-moon before the -barrier went up & 20 years after. TriMoon -seems to be getting bigger. Pre barrier it was -twice the size of the other moons - now it's 4x -as big as the other moons. -Geldrin takes all of the notes. - -Take an invisible cloak from the hatstand - wear it! -Dirk puts Geldrin on the hat stand & his clothes disappear. -When things touch hat stand they disappear. - -Day 6 21st Dec, 1:00 -Dagger & handkerchief fall to the floor. -Handkerchief - clean "J" in the corner. -Dagger looks like a letter opener. - -- Next room looks like a teleportation circle - with a bronze feather on the circle. Like the one the other - twin had; seems more powerful than usual. diff --git a/out/14.txt b/out/14.txt deleted file mode 100644 index fed5ab7..0000000 --- a/out/14.txt +++ /dev/null @@ -1,35 +0,0 @@ -Cages in the next room (empty). Operating table (empty). -Boxes, guillotine rope - lots of blood & decay with sea & sulfur. - -Red door - picture of a young tiefling. Dirk recognises - -holding the wolpertinger. Very big portrait. -Big table - set but empty. - -Door @ end - kitchen. Well/bucket, doesn't look like it's -been used. Pull bucket up, pour water on the floor. -Humanoid skull with horns is on the floor. Horns are the same -as the race of the girl - 100's of years old. - -Trap door under owlbear rug in office. -Door outside office is barred shut. - -Trap door - 4 plinths, all have the suits of Core on them. -Geldrin goes down & suits light up, ask for password. -"Joy" & "Tri-moon" incorrect. -- Move onto another room. -Try to get through barricaded door. -Trapped door managed to get through. - -Potion room - cauldron looks like it is full of water, -fresh & clear. -Geldrin calls construct "Powerloader". - -- Another room - stairs & a door which says - "maintenance do not enter". Door is trapped with electricity. - Building seems protected by the same thing the barrier is made from. 01:15. - -- Room opposite - bedroom. -Tarnished vase with white flower in. -Chair which looks broken & open book on table -(seems out of place). -Open the chest - pulse paralyses Invar & Geldrin. diff --git a/out/15.txt b/out/15.txt deleted file mode 100644 index 891def1..0000000 --- a/out/15.txt +++ /dev/null @@ -1,34 +0,0 @@ -Construct kills whoever was upstairs (one of them). -Killed it. -Shocked Invar & Geldrin back from being paralysed. - -3 sets of footsteps walk past the room & stop at -guillotine door, come back & go upstairs. -2 come back - seem to be on guard. -Another 2 go to Joy's room & comes back. -All 4 killed. - -Short rest completed. -Go into Joy's room. -Open the toy chest. - -* Mahogany box - lock has a rune on it. Geldrin takes it. -* Wardrobe - 3 empty hangers. Dress she was wearing - when Dirk saw her isn't there. -* Bedside table - bottom drawer is trapped. - Medical equipment, syringe, crystals, ink, powder, - bag, herbs, empty flask, 3x full flasks. - Recognise 2 - Mirthis Fizzleswig & succour, don't recognise the other. - -Quill pen, ink & book, kids diary. -Last page: "Felt rough today, don't know how much -longer able to write. Daddy borrowed Mr Snuffles again, -Daddy's friend asked about the rings again. Daddy's friend is -creepy." - -Diary - bed bound for length of the diary, -approx 1 year. Robots clean & feed. -Daddy's friend (never named) making rings etc, -put in box which might help her feel better. -Not getting better - terminal. Daddy got -upset but no payment could fix it. diff --git a/out/16.txt b/out/16.txt deleted file mode 100644 index cc719b6..0000000 --- a/out/16.txt +++ /dev/null @@ -1,32 +0,0 @@ -Trapdoor under the rug, wooden ladder down -into a store room, beanbag & toys, seems -to be a secret den. Dirk goes to the beanbag. -Little girl sat on it gets up & goes out: -"Maybe I should go back up. Daddy can see me in my room." -"Feeling better, glad because Daddy's creepy friend -is here so I can hide." -"He'll find me here, I should go to my hidey place." - -Go upstairs - opens up into a massive dome, -huge golden spyglass, crystals around the telescope -break the barrier. Someone sat at chair - back to us - -2x 8ft ugly human but wing creatures. Chair person looks like -creature we killed but all the parts are opposite -worm & dog like creature with the creature. - -Master asked to observe tri-moon. -No desire to fight us as killed his counterpart. -Worm is quite useful & rare. -900 years ago someone lived here. -Used the townsfolk to attack the barrier. -Give it one of the brass feathers to communicate -with the master for an audience: "Vann, if horrid mechanical -hellraiser sphinx creature." - -Garadwal? -Where is your army servant? Were those guys -instead... do not need to know us. -Co-ordinates required for triangulation need -to know where the armies strike next -month, so we can have freedom from the dome. -Striking the barrier increases the flow & maybe. diff --git a/out/17.txt b/out/17.txt deleted file mode 100644 index 710d484..0000000 --- a/out/17.txt +++ /dev/null @@ -1,36 +0,0 @@ -Flows so the fragment of the moon will -destroy grand towers & destroy the dome. -* It lives outside the barrier. - -Might just talking freedom seemed kind of true, -& "freedom from the confines of everything" was an -odd phrase. - -What would happen if creature didn't obey sphinx? -It would find him due to the pact made -in darkness? In sorrow? Looked forlorn - to find Joy? -Nothing. - -Tri moon is a crystal. - -- Sphinx cast out for practising unsavoury magic. -- Do we wish to join him? -He is one cell - trying to find two locations -to attack. - -- All agree to clobber. -- Kill them all. Worm thing dead, think it has - mind control powers. - -Papers on table - calculus & notes on the Tri moon. -Books on biology, incurable diseases etc. Book on the effects -of poison - slowbane - acts like heavy metal - symptoms -match Joy's diary. -I wrote a paper on it - very rare because people can't -make it but turns up in the black market. - -Shield pylon city sometimes get a similar sickness -being investigated. Very rare & takes a lot to take effect, -possibly same colour as the shield crystal. -People get sick and come to Goldenswell -& start to get better so not really looked into much. diff --git a/out/18.txt b/out/18.txt deleted file mode 100644 index cee10e9..0000000 --- a/out/18.txt +++ /dev/null @@ -1,38 +0,0 @@ -Pile of goods - spices, wine, cherries, parchment, -platinum, gems, silk. -Saja digel / fire from azureside - have a blight. -Copper Dodecahedron (magical). - -Invar identifies Dodecahedron - spell facts! - -21st Dec, Day 6 still. -Geldrin goes to sleep in Joy's room & realises -the lamp is a gem. 3:30. -Long rest level up. 12:00. - -Chest itself is magical - designed to cast -paralysis if somebody other than him opens it. -Invar tries to identify it - very magical chest. - -Check out the skull in the kitchen - has a -deformity in the back of the skull & looks a -year younger than Joy - about 7, possibly 1,000 years old. - -Well goes down about 50ft, water down there. -Look for information in the library - built at the same -time as the barrier (in tandem), not as mainly back -then. Was put here to observe the moon, designed -specially. Caverns underneath the area found & -built here for this purpose. Summoning circle was -connected to different towns & cities to get building -materials then supplies after observatory was built. - -- Send message to Bushhunter: - - townsfolk have memories - - creatures slain - - at observatory - - message from Geldrin for Grand Towers wizard Brownmitty - -Waterwise, go to check maintenance area - disarm door. -Barrier is directed locally around the observatory. -Found a really old blanket and small pillow - really decayed. diff --git a/out/19.txt b/out/19.txt deleted file mode 100644 index cd9d4ff..0000000 --- a/out/19.txt +++ /dev/null @@ -1,36 +0,0 @@ -Possibly Joy's other hiding place. -Find a trap door - locked but no way to pick. -Handle feels hollow. Geldrin used shield crystal to open. - -Stone steps into darkness - down very far. -5 lights with ends in a door painted with white flowers. -Air is filled with solemn music in the cavern. -Water going through barrier fizzes. -River bank has a little shrine, 6 grave stones all -marked "Joy", all have the everlasting flowers on. -One has been disturbed. - -Joy - died in chamber. -Joy - 3 years old, lung infection. -Joy - 2 1/2, unknown complications. -Joy - 5 years old - nothing written. -Joy - 9 years old - died from poisoning. -Joy - 7 years old, birth defect - bones left in the -open & raided. - -Follow the stream - quite rocky & roots. Mushrooms/mildew. -Mushrooms get bigger, much bigger than they should be. -15-20 mins of walking - everything is bigger than it should be. -Lead out to a cave entrance. -Everything seems much bigger than it should be; -everything seems to get bigger towards a point. -Massive butterfly flies past. 13:30. - -Get to a lake, massive lily pads & frogs, -with massive flying sparrow. -Something in the lake seems magical (centre). -Put tris into the lake, nothing happens. 14:00. -Geldrin attempts to raft to the middle but falls off -and is rescued by me. -Give up on the lake for now as don't have anything -to get the magical thing in the middle. diff --git a/out/2.txt b/out/2.txt deleted file mode 100644 index cf6e726..0000000 --- a/out/2.txt +++ /dev/null @@ -1,52 +0,0 @@ -Funds from the hostel go to the anti-tax -since wife left him - going to disappear. - -Census - in spring - 3c for the number, -payable in the morning, ask half elf. -- No trouble in town. -- Bushhunter - registered mercenary. - -Last 2 weeks: -Bushhunter came to town 2 weeks ago. -Winter apple trees started to fruit. - -Last 3rd Moon was 1 week ago. - -Invar - delivered weapons but no militia? -Order was put in a few months ago. -About 5 left. Earl downsizing. -20 weapons, 10 armour. -Can't remember any of the old militia. -Go to jail & talk to sheriff for current militia -forgetting names. - -Bushhunter - had tubes & pipes. -Used to do a lot of swords. - -Jail -- Now believes should get a package from - a crazy haired gnome. -- Location changed. Used to be where hostel - used to be. -- 2 empty cells. -- Laws - big scar over her eye. -- Her, sheriff & other 2 deputies (Bob). -- 11 years, always something so old there isn't anything. -- No reports of people missing. -- Home theft week ago. -- Bushhunter doing a sale of giant bugs in frames, - last sale 6 days ago. -- Shepherd had new fence? Yes. - -Terry left town - 2 months ago -Johnjaw passed away -Abo. arrested -Ralfeck - Buckworth somewhere -None left in town -43 used to be hired. - -Parch of militia statute charter to have sufficient -militia for close to barrier. -1100 militia - 45,000 population. -Due in a month to check; last visited 5 months -ago. diff --git a/out/20.txt b/out/20.txt deleted file mode 100644 index d8de6f0..0000000 --- a/out/20.txt +++ /dev/null @@ -1,34 +0,0 @@ -Back at the observatory, keep going round. -Atriose the maintenance area - where we think front door is, -it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. -Keep going round & original entrance isn't there. - -(Earthwise) Bed at earthwise changed to a flower bed -and barrier split isn't there. - -(Firewise) No trapdoor but instead 2x statues 1/4 of the -way down each wall. - -Throngore - huge muscular, 2 arms, 4 legs, 2 horns. -Left & dark gold; crab claws; taloned human-like hands; -flame, like skin. God of destruction & decay. -Igraine - pregnant elfin woman, rose & scythe in hands, -goddess of life & harvest (Alabaster stone). - -(Airwise) - Wall like it would have been the door -but there wasn't a corridor at the door to account for it. -Go back on ourselves - statues same. - -(Earthwise) Flowers dead now. -Invar goes round airwise to statues & back dead, -goes back round & shouts for us to come round but we don't hear him. - -(Airwise) - runes are bleeding and seem different. -Demon magic shit. Blood hurts a little bit when touched. -Geldrin copies them. -Invar gets a bowl - checks its acidity. -Tiny bit acidic, seems to be real blood. - -(Firewise) - Trapdoor is closed - we left it open. -This one is fully metal. Same lock as the other one. -Metal ladder going down to a metal floor, all metal. diff --git a/out/21.txt b/out/21.txt deleted file mode 100644 index 667e404..0000000 --- a/out/21.txt +++ /dev/null @@ -1,29 +0,0 @@ -Around exterior of the room are 8 glass chambers, -6 empty, 2 viscous liquid with something in it. -Books next to it. -It is a non-description human statue without genitals, -with no set features, with arm out, palm down to the floor. - -Dirk mentioned hanging his coat on it. Geldrin tries a ring -and it fits perfectly. Dirk adds his. -Diary - seems to be trying to perfect a clone spell, -matches up with the Joys in the graves. -Dirk checks in the chamber: something in there. -Rings start to glow slightly. 15:30. - -Back up. -(Earthwise) - no bed, but barrier split is there. -(Waterwise) - door is there & pipes etc. -(Airwise) - triangular barrier. -(Waterwise) - same place both ways. - -Geldrin manages to hold the book open -and copies writing - deciphered as an illusion spell. -Takes the book. Front has an eyeball on it. 17:00. - -* Go to look at the moon. -Crack open maiden's claw - good wine. -See crystalline refraction of the moon & see -a smaller fragment at the front, separate & much closer than the moon. -1/2 way between planet & moon, locked in sync with where the moon is. -Moon is closer - think it will take another 1,000 years. diff --git a/out/22.txt b/out/22.txt deleted file mode 100644 index eaec7f1..0000000 --- a/out/22.txt +++ /dev/null @@ -1,30 +0,0 @@ -If more magic goes through shield pylons this will speed it up. -Hitting it exactly between the pylons - conjunction -with some of the issues from town crier (pg 8). -Barrier starts flashing & lighting up. -Seems to be something attacking it. -Moon shard seems to be coming closer with the attacks. -Dirk draws boobs on the chest; they disappear after a while. 01:00. - -Day 7 22nd Dec -Go back to the cart with the box of copper. -Fashion a lock for the front door of the observatory. -Take Cromwell & Isabella back to town with carts & horses. -Restoration cast on Isabella - seems confident in herself. - -Day 8 23rd Dec -Go back to barrier to get remaining people. -8 people left - Chorus was looking after them. 12:00. -Geldrin paints wagon white & we head back to Everchurch. -Basilisk reply - "I'll meet you there". -Birds follow us back. - -See 6 horses coming from Provith (armoured), Harthwall militia. -Have their livery on: stag & dragon rearing up. -Arith (male) healer, Hthiman (male), elf (female). - -Few years ago near Ironcroft Firewise, something came through -the barrier - Invar was there. -Tell them about mind wipe & citizen stealing, -lack of militia etc., barrier attacking. -They report back to Lady Thyrpe. diff --git a/out/23.txt b/out/23.txt deleted file mode 100644 index c1ea89b..0000000 --- a/out/23.txt +++ /dev/null @@ -1,39 +0,0 @@ -Healer restores the townsfolk, slightly. One with tentacle -arm pulls off & left with stump. - -Day 9 24th Dec, 13:00 -Arrive back in Everchurch - streets seem busy & panicky, -talking about missing people & odd faces. -Go to see Brother Fracture - people being reunited -with loved ones, & healing happening. - -Earl has gone missing - sheriff taken over & called for help. -Core made it back to town - locked himself in the pub -with Mr Peel looking after him. -Earl disappeared when memories came back. -Set a cabin up at half way point. -Harthwall ladies request a meeting with us -(they get told we were heading to Seaweed). - -Drop Isabella at Cider Inn Cider. - -- Go to see Core - lady gets Mr Peel instead. -Core is ok, will need further repairs. -Came to town from earthwise, only spoke to say "Core da". -Geldrin thinks he tried to say "core damaged". -Go to see Core. Sat motionless in a chair. -Peel thinks he needs more crystal, a repaired Core came in -the post 1 day after Core arrived. One word on it: "GUILT". -Not addressed to Peel. Pub been open for 5 years. -"The Guilt" - was the Earl of Brookville Springs. - -Back to Cider Inn Cider, take rooms & have baths. -Basilisk - find Groundhog, give coin - old grand tower penny, -doesn't like that we donated the coin to the church -(1,000 year old coin). -Keep on good side of mage Justicars in Seaweed. -Very structured town. - -Eat & recover. 17:00. -Back to see Brother Fracture. Basilisk brought the coin - -he had 10 left, brought for 1g. diff --git a/out/24.txt b/out/24.txt deleted file mode 100644 index f08c26b..0000000 --- a/out/24.txt +++ /dev/null @@ -1,33 +0,0 @@ -Day 10 25th Dec -Get up & on the road with Isabella. -Get towards a day's travel & see a 4 storey building - -trading post inn, "The Wayward Arms". -Merfolk on the sign. Get Red taken for the horses. - -Some play is taking place on the stage. -11 o'clock, rooms ready, 6am out. -Extended sleep till 8. Left stairs, 2nd floor. -Timothy served us. -Elven lady comes on stage & sings. -2 ruffians (half elf) enter pub, ramshackle armour, -have a killer air about them. -Sit down & open a bag on the table. -2 halflings enter, seem to be a couple & sit at -last table by the door. -Somebody brings a giant moth picture down the -stairs & hangs it up. 22:00. -Half elves look at clock. -Staff move people & pull tables together - setting up for Mirth?!? -Hear music. People rush over to the gathered tables (inc halflings). -Mirth, halfling, enters dressed as a ringmaster type (smarmy), -claps his hands and things appear on tables: -pastries, wine, bottles etc. General store? -Famous alchemist (Mirth's Fizzleswig). - -* Back here in 3 days * -Brookville Springs next. - -Yadris & Yadrin (half elves) - Dirk overhears "taking my -mind off tomorrow". Sent to investigate - problem solvers, -didn't say what they were solving. Work for a lady, -already up in her room. diff --git a/out/25.txt b/out/25.txt deleted file mode 100644 index e6adf18..0000000 --- a/out/25.txt +++ /dev/null @@ -1,39 +0,0 @@ -Day 11 26th Dec -Morning announcements! -- Penta city states high alert due to attack on barrier. - Justicars reporting to major settlements. -- Shields of the Accord report army moving Airwise, - led by Baron. -- Loggers at Pine Springs missing. -- Heavy blizzards caused travel to Rimewatch impossible, - scholars trapped. -- Goliaths of Firewise deserts seeking refuge in - Dunenseed & Sandstorm; creatures of Air led by 6 armed - monstrosity pierced the barrier. Colleges deny possibility. -- Borsvack report gnoll activity. -- Break-in at Riversmeet menagerie. Black market - confiscations & 50g fine. -- Everchurch's villainous Earl ousted by sheriff - & brave deputies. Nefarious activities thwarted. - Restoration under way. -- Hartswell & Goldenswell armies clash with - giant roam Firewise of Hylden. - -Head to Seaward. -Perfect circles of houses with a coliseum type -building in the middle - used for horse & dog races etc. - -Airwise path coming into the city - wagons going -back & forth filled with the marble type material -used for the buildings & roads. -Pylon outside of the main walls of the city. -Population: elves / dwarves / gnomes. -Park the cart (Paynes horsebreeder), 21:00. -Go to coliseum - midday tomorrow. -Forge charger race. - -Inn - The Rotund Rooster, Tiffany. -Roads closed due to winter so no ice. -Don't have fresh water - have to order it in. -Marble type material with dark blue vein effect. -Seaward run by stonemasons guild - elf. diff --git a/out/26.txt b/out/26.txt deleted file mode 100644 index 7a2d2c9..0000000 --- a/out/26.txt +++ /dev/null @@ -1,35 +0,0 @@ -Nearest inn for a room - Water by Earth Waterwise -or Night Candle. Road 7, 3 rings inn. - -Water elementals - rumours are they can walk through barrier. -Some alterations with the council - collective working as one. -Water problem has been in the last 20 years. - -- Chunky chicken cooker - sponsored by Rotund Rooster. - Redesigned as used to be a griffin - favourite. -- Payneful Gamble - bad at start time. -- Thunderbelch - name. - -Inn attacked by water elementals? Works at the cliffs. -"No one else has been attacked." - -* Charge mysterious owner, maybe an outside duke or Earl. -* Halfling asks Invar if we have any skulls. Green skin goblin - for his master, not allowed to say from round here (really). - Pays well for clever people skulls. - -Go to Night Candle - Candle lit - plush furnishing. -Reason for the barrier was to keep the elementals out, -but rumour is they can walk through. - -Goblin peers into Dirk's room @ 3am. - -Day 12 27th Dec -Head to shield pylon - pylon is like a gold ring -with the crystal set in the claw & runes around it. 7:00. -2 guards outside the keep. - -Rumour - walking through chicken farm at night. -Barrier flickers for about 1 sec - happens often, -comes from Dombold Castle? but only for the last few weeks. -Only notice near to pylon. diff --git a/out/27.txt b/out/27.txt deleted file mode 100644 index 3022060..0000000 --- a/out/27.txt +++ /dev/null @@ -1,35 +0,0 @@ -Commotion at temple - guards carrying female elf -out of the temple. Arrest warrant, public indecency -& corruption. Cross temple with vast archways, -four doors, circular altar in the middle. 08:00. - -Priest/Council fabricated some charges - thinks -Architect using dark magic to make himself smarter. -Architect worships light gods? Alutha on his left femur, -"Ilmen Thion". - -Council OK. -Issues - barrier & water elementals. -Row 1, ring 3 from centre (public forum), meet Thursday -@ midday, 4 hrs. Representatives Monday/Friday. - -Place bets - The Big Bad Beauty. -My missing hangover - 2 runs, from another world, -2 guys acting as a shell company for the Guilt. -Races 4/1 odds on all - The truffle hunter. - -Hear a yelp from the side street - tabaxi has following us -(goblin) - tells me to stop letting him follow us & gives me -a piece of paper. Goblin will keep following us because we might -have skulls. Dirk says we can leave one for him at his house. -He takes us there. Mainly house - rat droppings etc. -He has 3 skulls, will meet his master when he has 5. -5 silver for skull. - -- Maybe cadavers? -- Go back to inn via a temple to see if we can locate skulls. - -Fire temple - war, justice & hunt. -3 people in congregation listening to priest recite poetry -about battle against Soot the dragon. -Congregation pick up wooden swords & start practicing. diff --git a/out/28.txt b/out/28.txt deleted file mode 100644 index ae00216..0000000 --- a/out/28.txt +++ /dev/null @@ -1,32 +0,0 @@ -Brother Cashew - his problems in town: -- Water elementals not killing, but heard town deputies - found drowned near cliffs with fresh water. -- Rivers & lakes in 10 miles are bad, previously got from wells - & then gradually went bad. -- Want to check the skulls for the water differences - (trying to obtain some for Scum). - 50 years - coughing sickness, no signs of damage - other than burning - see some malnourishment at early age. - 25ish - signs of damage to vertebrae, stabbed, - nothing obvious. - -Public records will be available: Town hall, 4th ring waterwise. -Back to inn for Isabella. 10:00. - -Arena vibes in the city. People really finely dressed. -Sit in section C. -Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. -Race 2 bet - 5s, Wove's gravy, 5/1 - lost. -Race 3 - 5s, The galloping salesman - lost. -Race 4 - 5s, In it for the sugar, 3/1 - lost. - -Race 5 already bet: -Sphinx style - stonemasons guild. -Unicorn - first place worker, forever 1st. -Horse - Payne horsebreeder. -Gryphon/chicken - Rotund Rooster rooster / chunky chicken. -Nightmare - on hire, Night Candle Inn. - -Win 9g. -Wooden barrel - Bud barrel makers - Big Bad Beauty. -Gryphon/cow? - My Missing Hangover. diff --git a/out/29.txt b/out/29.txt deleted file mode 100644 index 58fb384..0000000 --- a/out/29.txt +++ /dev/null @@ -1,29 +0,0 @@ -Race: Truffle Hunter wins! mice. - -Town almost finished - walls up to strength. -Water problem too - looking to sort. -Worrying rumours about members of the council refer to forums. -Odd out of place formal announcement. - -Go find Isabella's friends. -Knock & door swings open - middle class house. -Blood on the floor of the parlour. -2 halflings hanging from the ceiling by their feet. -Male intestines over the floor (pattern?). -Female looking at us but body upside down & face is right way. -- Suspect someone has done a divination spell using the intestines. -- Not been dead long, but not warm. -- Front door broken open - engineered force. -- Physically kicked over candelabra. -- Movement but nothing showing a struggle. -- No active magic. Divination was used & same type as used at Everchurch. - -Hear heavy wing beats - gargoyle, 6ft, looks like -it is made of clay - not usual in town. -Isabella says it's from her aunt (family guardians). -Drops bag, sopat, and flies off with Isabella. - -Militia come to see what is going on. -Direct inside & they take us to see the council. 17:00. -Store weapons in a chest before going in, also my medic bag. -Elementarium - elf. diff --git a/out/3.txt b/out/3.txt deleted file mode 100644 index 6be03fb..0000000 --- a/out/3.txt +++ /dev/null @@ -1,43 +0,0 @@ -Nobody remembers Gelissa except -Gedrin. -Invar remembered for a split second. - -* See one of the people gets up and walks - out. -Chase him. -Hood drops, face stitched below eye line, -mouth missing a row of teeth. -Bone splint fingers & split tongue. -Has birth mark on right hand - Malcolm. -Was a human male - had to use magic for these -changes. - -Guardwell - Terror of the Sands, nightmare of the darkness. -He will consume your soul. -- Tales of the sphinx who learnt dark magic - experimenting on itself. -- Remembered Isabella and that Gelissa said she - hadn't arrived. Remembered her again! - -Took Malcolm to the jail. -Deputy went to get the sheriff - Jeremia. -Now remembers 3rd daughter Gelissa. -Now remembers homeless people. -Makes us deputies - we get badges. -Sir Alstir Florent. - -Bar 5th person, human warrior - helping -out with us & picked one of the keys -and remembered him all the way -up to when we went fishing, -around the time Dirk saw the rat. - -Gristak Brinson - mayor. - -Day 2 -Head back to the town hall. -* Received whole census for John's pig farm, 9:00. -5th name on the ledger has been scribbled out. -Claims it was a mistake. -- Unemployed & holdings worth <50g - anti-tax criteria. -3g anti-tax. diff --git a/out/30.txt b/out/30.txt deleted file mode 100644 index 7f190f2..0000000 --- a/out/30.txt +++ /dev/null @@ -1,27 +0,0 @@ -Admits pylon is being interfered with. -Needs Justicar gone - requests us to look into the pylon. -Justicar has ulterior motives: get access to shield pylon. - -2000g if we keep the information to ourselves. -Get 500g now to rest on completion, solve or information to help solve. -Extra for water elementals - 200g each. - -Flickers - 5 mins to 2-3 hours, only from sea to Seaward -& nothing from Everchard direction or Dunbold Castle. -Also state nothing is coming their way. -- Started approx 3 weeks ago, keeps log of it. -- Saw tri-moon barrier attacks; they were different. -- Halfings suspect pirate - captain of ship allegedly has crew - but nobody has seen them. People go missing & turn up dead - & magically disfigured. Human/merfolk, has a beard & makes - possibly rodent-style magic. -- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. - She will help us. -- Water spirits have usually made it through; more are making - it through now along with the other elements. -- Try to keep body count low. 18:00. - -Retrieve weapons. -Sort horses - 1 day paid. -Get rooms at the Scarred Cliff. 19:00. -Go to barrier. diff --git a/out/31.txt b/out/31.txt deleted file mode 100644 index 56eb494..0000000 --- a/out/31.txt +++ /dev/null @@ -1,29 +0,0 @@ -Guards show us around. -Gherion - sage on duty at the moment - gives us -the book to view. - -Time & duration of the flicker: -2 weeks - getting worse, increasing frequency. -Longest 3 secs, very random. -Approx 9am a bout of outages. -None around midnight. -Clam Clock in the home for quarrymen. - -- Don't know how far the flickering goes between - Seaward & Dunbold Castle. -- Happens towards the pylon, crackling in a - horizontal pattern & doesn't go past the pylon. -Crystal has thousands of tiny runes all around it. -None of the runes seem to have been tampered with. -Crystal is very clean. -- Meteorites sometimes come down. - -Geldrin touches the barrier with his crystal shard -& it goes crazy. Guard said it seems like -the flickering but more intense and didn't go as far. - -Justicar - just checked the books & the crystal with -a eye glass. -Peridot Queen. -Iaxxon - guardsman - guarding quarry, water elementals -rushed past him like he was in the way not attacking him. diff --git a/out/32.txt b/out/32.txt deleted file mode 100644 index 6b1af4f..0000000 --- a/out/32.txt +++ /dev/null @@ -1,29 +0,0 @@ -Sleep - get horses & leave for quarry. - -Day 13 28th Dec -Follow barrier - see ripples, seem worse the further away we get. -Duration & frequency don't change. Pylon seems to be bringing -it back under control. - -Ground is very dry & loose - not many plants. -Get to a quiet point - see a horse in the distance -coming towards us. Green, tall elven woman, black hair, -looks very, very extravagant (Peridot Queen). -Strokes my face & joins us towards the cliffs. - -- Worried when she looks at Geldrin. -- She's seen all 5 pylons. -- Made it to the cliffcutter town. Murky, dwarves & gnomes. -- Barrier problem seems to originate by the cliff. -Track towards the barrier by the cliff. 21:00. - -* Cliffs are sheer drops with rifts & barriers. -* Water is choppy & quite dangerous. -* Recently cutting close to the barrier. -* Break into a tool shed for the night. -Wind picks up outside for a moment. -* Barrier around the cliffs is the emanating point, about 20 mins away. -* Not much wildlife around here. 23:00. - -Morning wave sounds are getting louder - Peridot goes, -and 2x sea creatures rushing up the sides of the cliff. diff --git a/out/33.txt b/out/33.txt deleted file mode 100644 index dfdd925..0000000 --- a/out/33.txt +++ /dev/null @@ -1,25 +0,0 @@ -Day 14 29th Dec, 06:00 -Elementals come over the side of the cliff & -reform as bulls - they follow the path away -from the barrier. - -Peridot Queen arrives - has wings, appearance of an elf. -Geldrin, Invar & Peridot Queen go down in a lift right next -to the barrier (1 meter away). Mine shaft with some wooden -structure beams, branches off away from barrier & parallel. 08:00. -Further down, wooden wall constructed saying "danger of collapse". -Hear creature. Man stood there, human with scar, -pushing a plank back into the wall. -Peridot Queen pays him one of the old copper coins. - -Transforms into a green dragon. -Incident a few days ago came, 30 years not had any problems until now. -Beasts like bulls shot up from disturbed part, towards the wilderness, -shrieking like a banshee. -Gnome says "smell like candy & has legs" probably lies. -On dwarf has barrier duty & found a small crystal on last duty. - -Fly out of the shaft, and Aliana & Dirk see a shape. 8:15. -See a group of miners, a dressed differently human comes over -to them and points to us. Human walks off towards the barrier. -- The dwarves then attack us: 4x dwarves & 1x gnome. diff --git a/out/34.txt b/out/34.txt deleted file mode 100644 index fdd8039..0000000 --- a/out/34.txt +++ /dev/null @@ -1,29 +0,0 @@ -Gnome throws a blue rock on the floor. -A small elemental comes out & attacks Geldrin -(possible spell effect). - -Manage to knock one out & the guards come over -& bring him round. He says: -"He's coming, Terror of the Sands is coming for you all." -Guard knocks him back out. - -Guards take him back to town. -Private Burke wants us to visit the station before we leave. -All have 5g & old copper coin. -Gnome has two other blue crystals. 8:50. - -Gets to 9:00, more obvious flickering but nothing obvious. -Believe the human may have come through the barrier. -The human came from approx where the point of origin is. - -Invisible Joy appears and tells Dirk they are in pain -and it burns - asks for Dirk's help. -- The thing causing the barrier issues? 9:50. - -Follow the salt trail from the water elementals. -Salt trail thins out but no sign of them. -After a time land becomes more lush (approx 7 miles -from the barrier) with insects which we didn't see before. 11:00. - -River ends on the cliff and comes off in a waterfall -(shallow river). Path ends at the river, about 20 years old. diff --git a/out/35.txt b/out/35.txt deleted file mode 100644 index c5806a9..0000000 --- a/out/35.txt +++ /dev/null @@ -1,31 +0,0 @@ -River appears to contain water elementals. -Elemental says: -"Pain gone, no hurt me. -You come take me like others, take we escape -through pain, closest good water." - -Geldrin frees the two in the blue crystals. -Elemental wants us to free the rest. -Death dome - came through hole made for poison water. -Hole hurts, in the sea. -Elemental stealers trying to free some creatures trapped underground. -Poisoned one - made of poisoned crystal one. -Powers death dome. Garadwal was one with the moon rock -but escaped. - -Scaly dragon with web fingers goes through dome - -blue/grey colour. One big one with four arms & tridents, -poison water, & Garadwal with tridents. -Hole by cliff face at bottom of sea. -Occasionally somebody/thing goes down to annoy the crystal. - -Head back to the town to speak to militia, 13:00. -Salinas - earth & water - the guy our attacker is talking about. -Soon free like our mother Garadwal - sand, earth & fire. -Barrier is enslavement. -8 altogether - soon find hidden lair of oppressors, -used as batteries. - -Element diagrams: -Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. -Second diagram includes salt, ice, lightning, smoke, magma, sand. diff --git a/out/36.txt b/out/36.txt deleted file mode 100644 index e6a0dfb..0000000 --- a/out/36.txt +++ /dev/null @@ -1,31 +0,0 @@ -Theories: -- Needs of the many outweigh the needs of the few. -- They tried to destroy the world & got locked up. -- Preemptive locked up. - -Water back: 10 miles down the path from Seaward (firewise), -10 miles down the coast from the barrier. - -Head back to quarry. 16:00 / 18:00. -Door in the lift right next to the barrier. -2 panels missing from the hole. -Passageway descends down behind the wooden panels. -Goes down quite a way - has been excavated on purpose, -not a mantle seam. Widens out & opens to a real old -built wall (1,000 years old). Opens into underground structure. -- Right old door - sign of aging, handle hurts. -Old gnome walks out, realises we are there. -Gives him a coin. "Underbelly?" - truce in place. - -Get a tour prison: -Down corridors, turn left many times. -6 corners, huge metal door - dragon clearly holding ring. -Go through - see barrier at far wall. -Smaller barrier encompassing a massive salt dragon - -sweating salt for 20 years into the earth. They are -trying to free it. -Room was full of odes & ends & copper pylons were there -but they removed them. -Runes on floor barely visible as covered in salt. -Another room has 4x curved copper pylons, removed 20 years ago - -dragon was already seeping salt. diff --git a/out/37.txt b/out/37.txt deleted file mode 100644 index a775e84..0000000 --- a/out/37.txt +++ /dev/null @@ -1,28 +0,0 @@ -- Keep Justicar out of it down here. -- Down to the left is the original entrance. - Go look at it - similar to a room we have seen before - in the observatory? Examined in the last 20 years. - -Big black dragonborn comes in - Turquoise's boss, not many around. -- Cult looking for a laboratory. - -Basilisk - there's a laboratory of a similar vein -20 miles earthwise along the barrier. - -Head back to town. 20:00. -Common room - sharing with one other person who hasn't shown up. - -* Message to Basilisk * -He comes to us. -Knows little about salt elemental. -Black Scales - mercenary group, work for Infestus (black dragon). -Basilisk went to check observatory - couldn't open the chest -& couldn't get in the golem underground room either. - -Garadwal: -Prison at lake by lab? - ooze one. -Frozen near Rhinewatch - ice one. -Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. -Is he an elemental? - -Go speak to Elementarium guy in Seaward. diff --git a/out/38.txt b/out/38.txt deleted file mode 100644 index 731c33b..0000000 --- a/out/38.txt +++ /dev/null @@ -1,31 +0,0 @@ -Day 15 30th Dec -Head back to Seaward. -Follow a caravan of stone back to Seaward. -Get to town - raining. 19:00. -Need to see Elementarium; actually dressed this time. - -Quasi Elementals - don't have their own plain. -Known 8 major plains; light & dark effects to create the 8 main ones. -They became their own things & started to fight. -Not become that powerful. - -E + W + L: ooze/slime/life - spark of creation. -E + W + D: salt - makes water bad & crops won't grow. -E + F + L: metal - positive construction. -E + F + D: magma - destroys farmland etc. -F + A + L: smoke. -F + A + D: void - absence of everything, nothingness. -A + W + L: ice. -A + W + D: storm. - -Where does sand come into this? - -Goes down the trapdoor after talking to us about salt water elementals. -Dirk listens - talking to somebody about it. -They don't exist. Salt & water are their own things. -Pollution. Salt elemental poisoning the water elemental. - -Dirk - crystals helping the barrier? Elementarium believes it, -but he needs the Justicar to believe it so she leaves. -Geldrin to try to sway Grand Towers to get her to leave. -Rhonri or Revir might have an obsidian bird to relay a message. diff --git a/out/39.txt b/out/39.txt deleted file mode 100644 index 315108a..0000000 --- a/out/39.txt +++ /dev/null @@ -1,32 +0,0 @@ -Arrange to meet back with him @ 9:30. -Dirk asks about Garadwal - he goes down to -the chamber & retrieves a dwarf skull & asks -it the question about Garadwal. - -The information you seek is not for your kind. -He is imprisoned in the prison of the Sands. -Brutor Ruby Eye - troublesome being, wizard of great power. - -- Shows us the skull room - he talks to them for information. - -What would happen if Garadwal escaped? -It would be bad indeed. The barrier would be weakened by the loss -of one of the 8. He was the only void they could find. -If one was to escape it would be him. -Feedback from the destruction of his prison would have damaged the others. - -Geldrin tells him of the tri-moon shard. -Brutor knows of the first crack. Envoi was tampering with it for his -own means, tampering with the containment device, & if something -happened to him it would be bad & cause the crack. -Wizards didn't agree of their entrapment but they all agreed -Garadwal needed to be contained. -Ooze was a good one. -Ice & storm were put in the same chamber as land was tricky to be dug. - -Stop leaking? Maybe sigils out of whack. -Brutor killed by black dragon. -Demi lich - how he was made. -Maybe a way to reverse the polarity. -! Spinal! Brutor's password. -Winter Roses? Envoi's password. diff --git a/out/4.txt b/out/4.txt deleted file mode 100644 index ff800ff..0000000 --- a/out/4.txt +++ /dev/null @@ -1,56 +0,0 @@ -Thornhollows farm Census April 4th - -registered: -wife Sarah 47 -John 50 -Annabella 18 -Isabella 16 -Clarabella 14 -seeing sheep farmer's son - -Paternal grandmother Bella. - -2 sounders of pigs: -1x matriarch -3x breeding boars -2x breeding sows -1 has 17 female younglings -other has 21 female younglings -No males. - -Paid tax as billed. -Farmhouse, 3x orchards, stable, veg garden. -2x outbuildings which back onto a hedged sty. -- Planned employment: 3x hands. -- Grazing rights for area in edge of swamplands. - -Walk to Thornhollows farm, past orchards & brewery, 9:45. -Farm surrounded by stone hedge. - -Pass 2 ravenhound looking dogs - girl walking with them, -black hair, missing from census? -Craven dogs, breeding pair, mimicry noise, have puppies. -Approaches us - Annabella. -- Younger sister on the porch. -- 3 puppies on pillows next to grandma. - -Books - everything tallies until about 1 month -ago. Scribbling out & removed without explanation, -think there should. -Missing 12 pigs in total - should be 57. -Records say should be 51 they've recorded. -6 missing over the last 2 weeks: -actually 46. -3 last night, before last -3 a week ago. -- Missing pigs went overnight. - -Inconsistencies start about the time Sarah left. -45 -Cat is missing too, about 1 month ago (black cat). -Nights of disappearances, not locked up at night. - -- Large door to enter the hedged area, looks densely grown. -Confident there is no dig through. -Hill giving 4 foot of hedge to get in but no -advantage to get out. diff --git a/out/40.txt b/out/40.txt deleted file mode 100644 index 953476c..0000000 --- a/out/40.txt +++ /dev/null @@ -1,33 +0,0 @@ -- Halfling killers. -- 8 things linked to the poles. -- Pirates. -- Elementals. - -Received downpayment for our work so far: 200g. 20:30. - -- Put horses into the stables. -- Stay at the Night Candles. - -Day 16 31st Dec -Head to town hall to see Rewi Lovelace - gnome. -Room is very messy. -Obsidian raven is pulled from a drawer, called Errol -(but not really). Justicar causing more problems than solving. -Request further evocation spells. - -Rewi - thinking on how to enhance the pulley system at the cliffs. - -Retrieve horses & cart and head earthwise. 10:00. -Limit: sis poor? -Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. -Continue earthwise towards Newhaven. -Land starts to get lusher & seems to be at the edge -of the salted area. 12:00. -Lady at a well - the only freshwater in the area. -Others have been boarded up as water is bad. -Mayor runs a farm - keeps chickens. Full up water skins. - -- Road out of Newhaven in disrepair. -Outside of town grass dries up again. -Town seems to have good water as an anomaly. -Not many birds around. diff --git a/out/41.txt b/out/41.txt deleted file mode 100644 index 99dabc8..0000000 --- a/out/41.txt +++ /dev/null @@ -1,24 +0,0 @@ -Nothing around to indicate a laboratory. -Obsidian raven appears - suggests meet up with Justicar & work together, -wants our location. Don't give it to him. Flies back to Seaward. - -Keep going to 10 miles away & 1 mile from barrier. -Find charred earth - last few days - campfire & rations - cultists? -See some tracks, 5-6 people camped. Prints show they are searching -for something. -Nothing obvious. Follow tracks towards barrier; they stop & we see -acid corrosion & blood speckles which look to be swept over. -Black dragons have acid. Green is mist. - -Geldrin checks the compass & we follow it about 30ft down. -Find weakened signal, see purple, & find 10ft stone walls with a door. -Password opens it (Spinal). - -Enter into chamber. 2 golems in dwarf form guard a door. -Spinal opens the door. - -- Go left down corridor. -Enter large room - stone benches & lecture seats (seat 20-30 people). -Jagged rock horn - representation of Tor. -"Tor Protects" written underneath statue. -No visible disturbance to the dust. diff --git a/out/42.txt b/out/42.txt deleted file mode 100644 index b23883e..0000000 --- a/out/42.txt +++ /dev/null @@ -1,21 +0,0 @@ -Book on lectern - Book of Ancient Dwarven language on Tor. -Head across the corridor - room, same size but only contains -teleport circle (one set). Geldrin takes rune number. -Dirk finds footprints that have tried to be covered up & lead -down the corridor. Fairly recent, could still be around as have -gone back on themselves. - -Follow footprints to a closed door. Footprints seem very purposeful. -Ruby in the dwarf face releases some chains which open the door. -- Use my crowbar to hold both of the chains to keep the door open. -Geldrin sets an alarm on the hatch & teleportation circle. - -Go into another door (2nd left from the hatch). -Purple glow from the room. Paperwork on the walls of pylons & tower structures. -Bubble of shield energy in the middle. -Scaled model of the penta city states. -Suspended globe of elements at each of the compass points. -There is a city Fire Airwise of Lake Azure half way between the lake -& Aegis-on-Sands. -No sign of any of the prisons or labs on the model. -Elements don't move. diff --git a/out/43.txt b/out/43.txt deleted file mode 100644 index 1173654..0000000 --- a/out/43.txt +++ /dev/null @@ -1,24 +0,0 @@ -Teleportation circle activates. Retrieve crowbar & hide in diorama room. -1 person seems to come out & goes to dwarf face door, -to door opposite us, then over to us. -Tanned skin gentleman comes in - human, desert style robe, -Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. -Has found several circles & he is a collector of magical trinkets. -Make a deal - he gets all the coin/gold/silver & we get first pick -of the treasure. He gets the next, then we get 3 other picks, even split. - -Lounge has a scepter that seems out of place. -Dirk takes it and an alarm goes off. -All doors are now arcane locked. -Go back through dwarf face door. -Go left. Mouth appears and tells us traps are active. -First door - ten skittles at the end of a lane, -poker table & darts board with 3 darts in the 20. -Poker table is magical; whole room is magical. -Next door totally empty room... -Next door - silence spell goes off. Room is full of rows & rows -of crystal balls. Memories but we don't know that. -Back in the lounge hidden room behind the dwarf portrait: -blank paper & non-wounding dagger. Paper is magical to write special, -& silence spell stops. -Go back to crystal ball room. diff --git a/out/44.txt b/out/44.txt deleted file mode 100644 index 4556b4f..0000000 --- a/out/44.txt +++ /dev/null @@ -1,32 +0,0 @@ -Memory of goliaths helping to build grand towers. -Find the ball with the most scratched plinth - memory is filled with dread. -Acid smell like house, scarred by acid & dwarf skeleton. - -Get one near grand towers ball - see 4 other people in a circle -around teleport circle: human (male), elf (female), human (female), -halfling (emo), purple crystal rises up from the circle. -Before acid splash, see lounge talking to Envoi, asking about if it's -affecting anything. Joy sets off the alarm. -Ruby Eye takes the dagger & splatters blood and stops the alarm. - -Before - fields of white roses. Envoi talking to elven woman from circle. -Joy & dwarven lady next to him. Feel content but forlorn when looking over -at Joy & Envoi. - -Male darkish elf next to Envoi being introduced in observatory - -tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. -Envoi wearing 5 rings! - -Hot Spring - opposite dwarf lady (Brookville Springs), early date, -falling in love. - -Standing in a room in his building: purple dome & copper pylons -with blackness & a shadow. -Ask shadow what it thinks. Shadow replies, saying no, not yet; -it is trapped & threatens calamity. - -Nice room, intricate vine patterns, elven mage asks about change - nothing. -Browning retreated to grand towers. Glad she is here, -worried about it - warm secret. -Think Browning is going to cover it all up; thinks if people -know how it works then they will ruin it. diff --git a/out/45.txt b/out/45.txt deleted file mode 100644 index 83d8586..0000000 --- a/out/45.txt +++ /dev/null @@ -1,24 +0,0 @@ -- Last one - see him in mirror wearing robes. -Book & chain with staff, looks down under mirror, -head on floor, stone opens up showing skull. -Puts 2 crystals in chanting & "Tor Protects". - -- Pythus Aleyvarus? Blue dragon. - -Ruby Eye seems to have planned the dome: -5 pylons & 5 more around the Grand Towers to make it work. -Early periods where he's protecting towns from elementals. -Group all fighting; when it breaks 6 armed rock creature, -they all make a pact. - -- Male human points him to a crater with a massive purple rock - & Envoi says he will build an observatory to track it. - Brutor says it is what they need. -- Warring kingdoms - join together to construct everything: - Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. -- Turning on of the dome at the point of turn on, something flaming - bursts through and Browning bursts through the barrier & is attacked. - -Room opposite - big engineering astrolathe, seems to be the planet -which is a disk, with the moons and their orbits in real time. 15:00. -- Display shows the date & time - current date 31st December 1011. diff --git a/out/46.txt b/out/46.txt deleted file mode 100644 index e8b7f13..0000000 --- a/out/46.txt +++ /dev/null @@ -1,37 +0,0 @@ -Room next to orbs. -Protection from Elements spell. -Open the door, boulder elements in there & try to get out. -Slaves? Made to dig - leave them there. - -Down the corridor. -Room same place as calendar room, not locked or trapped. -Room is empty, mirror image of calendar room. - -Opposite to boulder room: -Smaller room - empty aside from picture of moon holes, look like big gem holes. - -Opposite orbs: -Feel weird opening the door. -Glass cabinets in pedestals & shelves with various nick nacks, -brass plaques & glass domes over them. - -Curved with flowing water - bottle "Containment taken from Lord Hydranus". -Stone at the top 2 are glowing. -Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). -Magic bounds / magic missile. - -Great sword - stone & bone hilt with steel, dwarven steel, -blade in friendship. Sword given by kings of the goliaths. -"To the spell ones on the crafting of your big building." - -Codebook holder - with a book very delicate: -"Book recovered from grand towers upon discovery." - -Celestial dwarf mannequin, ornate green silk dress, gold trim -& tiny emeralds along the trim. -"Worn by Princess Seline to the Grand Ball." - -Cushion - small red gem, garnet. -No plaque. Size of the moon holes. -Coin press - grand towers pennies. -"Press used for souvenir pennies." diff --git a/out/47.txt b/out/47.txt deleted file mode 100644 index f7638ab..0000000 --- a/out/47.txt +++ /dev/null @@ -1,32 +0,0 @@ -Jar - eyeball in fluid, "My Eye". -Scrying eye, can scry once per week. - -Book - sealed not open, made of tan leather & looks unsettling. -Platinum lock. Human teeth are around the edge. -"Noctus Corinium Grimoire" - lock looks like it's an addition. - -Plinth wheatleaf - pillow with marble cube radiating yellow glow. -"Drixl's Cube, a gift from the golden field halflings." - -Bottle - wine shaped, "first pressing of Siggerne - midh-iel", -Maiden's dew drink. - -Ring - looks like Bushhunter ring, ring of protection +1. -"Failed attempt to recreate my stolen ring." - -Comb - dragonbone & jade, details carved of a forest. -"Gift from the elven princess to my wife. -She never got on with it." - -Scepter - silver, fine golden filigree, white seaward gem in the top. -"Staff gifted by the merfolk of the great sea." - -Gem writing: -"Time existed before me but history can only begin after my creation." -Celestial book - tower seems to be the centre of the world & -don't know where it came from. Clues: Geldrin got a vision when reading it, -saw 6 primal elements looking down on the world. - -Geldrin's alarm goes off - see figures at the end of the corridor: -4 burly black dragonborn. They hear alarm. "The alarm's going off, -someone is here" (Draconic). diff --git a/out/48.txt b/out/48.txt deleted file mode 100644 index 767112c..0000000 --- a/out/48.txt +++ /dev/null @@ -1,33 +0,0 @@ -They want us to leave, claim it in the name of their master. -Shields have mosquito on it. -Create a shield wall & we yank crowbar out. -Fight: -3 1/2 swords -4 shields, mosquito -70gp -4x tower pennies -Obsidian bird - Errol. - -Errol - last message was gnome giving our location (Rewi) -to black dragon? - -Red gem found under plinth under Celestial book: -"The floor of my ship is decorated in equal parts -with riches, tools, weapons & love" - games. - -Next room - walls & ceiling are blackened - kitchen. -Nothing in the oven. -Jar contains gem: -"The rich want it, the poor have it, both will perish if they eat it." -Nothing? - right here. -Barrel seems magically sealed - rune for the cold beer. -Contains a jar with a hand in it. -Hand is ruby eyes and has blood which stopped the alarm. - -Next room is warded & locked. -- Previously empty room is now full of books: - control earth elementals, Tor, gems, for spells, wards. - Information on how to construct crystals for magic. -Gem inside a book: -"Although I'm not royalty, I'm sometimes a king or queen, -and although I never marry I'm only sometimes single." Bed. diff --git a/out/49.txt b/out/49.txt deleted file mode 100644 index 913743f..0000000 --- a/out/49.txt +++ /dev/null @@ -1,32 +0,0 @@ -Summon unseen servant in the elemental room. - -Gem, Elemental Room: -"In my first part stir creativity & in my full form I store the results." -Museum. - -Gem, Orb room behind an orb: -"You have me today, tomorrow you'll have more. -As time passes I become harder to store. -I don't take up space and am all in one place. -I can bring a tear to your eye or a smile to your face." -Memory - orb room. -Memory is: "If you got here you got my message. -Only clue is based on the layout of my rooms. -When you get inside you'll know what to do." - -Gem, Calendar room: -"I guard the start of this recipe, just scramble, hidden." -Kitchen? - -Bedroom - seems to have a woman's touch, tapestries, -rugs etc., wardrobe drawers, full length mirror, -chair, fireplace. -Compartment under the mirror - skull with 2 gem stones -rolled up paper in the eye socket behind big gem. -If you feel like lived a good life, this is the Denouement -(final part, finishing piece). - -Gem in the other eye: -"They are never together, yet always follow one another. -One falls but never breaks and the other breaks but never falls." -Calendar. diff --git a/out/5.txt b/out/5.txt deleted file mode 100644 index d9b47fb..0000000 --- a/out/5.txt +++ /dev/null @@ -1,41 +0,0 @@ -Dirk finds big divots that look like foot -prints - looks like a frog - approx 8 foot frog. -Ravenhounds ribbited at dark. -Started a few weeks ago - take the pigs, gruffle hunting. -Seem to head to swamp. - -Massive moths, been around for a while. - -Q - 100g to clear the frogs. Had 50g so far. - -- 6 pigs missing to the frogs as they remember - these, but 6 others missing they don't remember. - -Go through swamp. -Feels like we are being watched. -Massive moth appears during the day... -Stealth off & get attacked by a frog - killed 2. -Find bones that appear to belong to pigs & sheep. - -Back to farmhouse, 16:00. -Cleara gives a tonic where we can use hit dice. -* Potion of recovery. * Succour. -Stay over the night. - -Day 3 -Head over to sheep farmer. -Geldrin accidentally cast a spell sat on -Dirk's shoulders. Tore his shoulders apart like -Malcolm's wounds. -Stop for short rest. -Birds circling overhead: goldfinch & starling. - -District lack of sheep at the farm, swamp seems -to be trickling into the farms. -30-yearish man appears to be trampled by a herd of sheep. -Looks like some human sized prints, 4x sets. -One looks to go to & from the barn. -We can investigate - drew crime scene. -Hear something trying to break out of the barn. -Run to farmhouse; door has been "latched in". -Table smashed to pieces, various debris about. diff --git a/out/50.txt b/out/50.txt deleted file mode 100644 index ed8d099..0000000 --- a/out/50.txt +++ /dev/null @@ -1,33 +0,0 @@ -Put all of the gems in the slots and room opens. -Purple sphere that doesn't let light through. -Void creature? Won't used as it may have been too weak. -- Seems to be a self contained barrier. -Void creature wants to be let out. -- The diviner - the one who stole his brother - the twins we killed. -Mechanical trap activates something in the room. -Magical trap teleports to the room. - -Pythus takes creepy book & Celestial book. -Dirk: sword / scepter of the merfolk. -Me: coin press / cube. -Invar: ring of protection / potion bottle. -Geldrin: spear / eye. - -Pythus gives Geldrin a scroll of teleportation & goes. -Geldrin takes eye & scrys on Pythus. -Sand stone cavern, pile of gold on top is a blue dragon -(serpent-like), reading the skin book full pages made -of cured human flesh. Seems to be at the edge of the desert -near "Salvation". - -Back to void room. -Will tell us what is in their room in exchange for freedom. -What is in the room will help release him. -Rubyeye wanted to live forever. -Went in with elven woman & dark male (Envoi). -Just a fragment of the void, but if added to the others -can get more powerful but only a tiny bit. - -Inside a key looks like pylons placed against a barrier -circle of copper and turn it - talking like barrier isn't active. -Pylon for his prison as well as another. diff --git a/out/51.txt b/out/51.txt deleted file mode 100644 index 9cea01d..0000000 --- a/out/51.txt +++ /dev/null @@ -1,31 +0,0 @@ -Use the ruby to open the door, then destroy it. -Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. - -Go through door next to void. -4 plinths - by the door are 4 copper pylons, -look like they would go over rods/force field. -2 metal circles, runes all around (copper). -1 - steering wheel size. -1 - over a meter, stood upright. - -3 - dragon skull, Alsafur dog size. -4 - book, same lock as on the creepy skin book, -made of leather - unpickable lock. - -Possibly storing one of Envoi's rings - it was under the skull. -Skull is one of my kind - Veridian dragonborn, -dead for approx 1 thousand years. - -Envoi's ring: -- a sacrifice made to live eternal, father & daughter. - -Book writing around the edge - old dead language. -The memories & learning of Atuliane Harthwall. -Needs a powerful identity spell to learn the command word -to open the lock & book. - -Mosquitos, woodlice & moth are now around. -Rain storm. -Void will help as long as he is not detained. -- Lightning strike is seen although underground. -Try to let void out. diff --git a/out/52.txt b/out/52.txt deleted file mode 100644 index 9448434..0000000 --- a/out/52.txt +++ /dev/null @@ -1,23 +0,0 @@ -Push pylons against his dome - opposite pylons seem to switch it off -very slightly. Ring by the dome turned & attracts to the pylon. -One full turn releases the dome in that quadrant. - -Void releases a circle of obsidian to control him with. -- Take his ring & book & small ring. -- Remove gems from the moon face lock. -- Head out & close the initial door behind us. 18:30. - -Massively overcast with the storm. Air is thick with insects: -moths/mosquitos, ants etc. -Circle of storm 1/2 miles wide, moving unnaturally. -Push of barrier looks like 8 massive claws pierce through - -black dragon looks to be trying to come through the barrier. -He wants the remains of his son - seems to be the skull -in the sealed chamber. - -Go back & get it. -Missing the side of his face - think Rubyeye did it, -but he may have started it by killing his son. -Place skull near barrier and he has crystals on his scales -which part the barrier a little but still hurts him. -Takes the skull & says we are even (for killing his men). diff --git a/out/53.txt b/out/53.txt deleted file mode 100644 index 9b7dc04..0000000 --- a/out/53.txt +++ /dev/null @@ -1,39 +0,0 @@ -He flies off & Thunderstorm goes with him. - -Head back to Newhaven with the cart. -Go to pub - picture of 5 hands together making a star. -Silver dragonborn behind the bar, golden rim spectacles, -halfling wait staff, tabaxi bar maid. -"Gelandril Harthwall" been here 10 years. -It's said the 5 wizards used to meet here. - -Sleep. - -Day 17 1st Jan / Tri-moon -Goblin looking for us - Scum had a message for us. -Find Scum as we leave the pub. -Apparently warrant for our arrest: -Treason - conspire against the Towers to break barrier. - -Scum - telling Elementarium to meet us with Ruby Eye skull -(1 mile outside Seaward). - -Sent message via Errol to Grand Towers saying we are going -to Everchard to put them off the scent. - -Message to the Basilisk: arrive at possible meeting point, -waiting for nearly 3 hours. -Cart comes off road with a human onboard, don't recognise. -Seems suspicious. -1 box contains Grand Towers pennies. -Council ask for him to transport to Fairshaw - The Cart -(Garick Blake). Looks like the gnome sent it. - -Dragon notes: -Silver - Harthwall. -Copper - Spruce, white. -Black - Infestus. -Veridian. -Blue - Pythus. -White - the ancient. -Red? - Soot. diff --git a/out/54.txt b/out/54.txt deleted file mode 100644 index 9023d51..0000000 --- a/out/54.txt +++ /dev/null @@ -1,31 +0,0 @@ -Manifest: -1 currency - Towers pennies. -1 provisions - ash jerky??? -2 armaments - spearheads, copper ends, trident heads tipped in copper. -1 waterproof papers - reams of enchanted waterproof paper, - salt water only. -1 tar. -1 tools - heavy duty, ship building? -1 misc goods. - -Should have gone out in 2 days with guards. -Invar knocks the driver out. -See what looks like Elementarium riding towards us. -Gnome seems to be trying to clear the decks. -Elementarium doesn't know about the spearheads etc. -Wants to set up a meeting with Lady Harthwall. -They have a council to discuss security matters within the dome! -Gives us the Ruby-Eye skull. - -Jerky bag contains a hemp bag - pungent sickly sweet smell, -reminds me of rose spice, but narcotic. - -Ruby Eye: -Infestus' son - spawn of evil - needed a powerful sacrifice -for a friend (Envoi). -Salt dragon leaking - worried tampering with the life may have weakened -the force. -Reinforce the barrier - if we don't weaken the barrier, possible fix -by refilling the voids, or safely disable the barrier - turn off with -the fail-safe button in Grand Towers. -Weird skin book - grimoire Noctus Caerulium - forbidden magic. diff --git a/out/55.txt b/out/55.txt deleted file mode 100644 index e526cd8..0000000 --- a/out/55.txt +++ /dev/null @@ -1,23 +0,0 @@ -To stop Tri-moon shard we would need to fully redo the dome. -- Create a device to repel it but barrier would need to go down to do it. -- Relationship with the merfolk? Fish men, different people, - then those invited into the barrier. Great helpers to set up barriers. -- Thinks Browning had something to do with goliath settlement - disappearing from the history (must be clues). -Green dragon seems to be residing in the area. -- White Dragon helped to build the dome. Reds, no blues. -- Elementals liked to attack & this is why the barrier was put up. -- Tower was perfect place but needed more. -- Backup plan for the void elemental stashed in his safe, - if not there need to find another. - -Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. -Tells us to get on the rune. -Appear in a lush castle room at Harthwall. Sat at head of table -seems to be Lady Harthwall; stood beside is Sister Lady. -4 chairs by the rug. - -Rip in the sky - Basilisk appears with: -Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). -Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). -Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. diff --git a/out/56.txt b/out/56.txt deleted file mode 100644 index a616adf..0000000 --- a/out/56.txt +++ /dev/null @@ -1,30 +0,0 @@ -Catherine Cole vouches for me -Valkarige vouches for Invar - -Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. - -- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. -- small group of like minded to protect the barrier want to maintain stability of the barrier. - -News reached them about the fragment. - -Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. - -- Green dragon responsible for destruction of Dirk's homeland. -Rubyeye blamed Dirk's kind for helping the dragons. -It's said Verdilun dragon is shacking up with the red dragon. - -* Keeley Curdenbelly's research maybe of use (the "liver" in the desert) - -1. head to merfolk -2. get crystal from the water -3. speak to ancient one - -We passed off the twins mum. - -Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical - -- leeching elemental prisons -- Garadwal -- void on the loose -- shield crystal in the sea. diff --git a/out/57.txt b/out/57.txt deleted file mode 100644 index 827cfa9..0000000 --- a/out/57.txt +++ /dev/null @@ -1,25 +0,0 @@ -World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. - -Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* - -Gave him the coin press and told him the coins in the cart were a create of them. - -Back to our cart. - -Head down the main road toward Fairshoes. 5:30 - -Start hearing birds and animals etc. 10pm -Find a place to camp for the night. - -Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. - -Back on the road. -Uneventful day heading to Fairshoes. - -Make up camp again. - -Nothing happens. - -Day 18 (Friday) -2nd Tan with Finnan -16 days until Timnor diff --git a/out/58.txt b/out/58.txt deleted file mode 100644 index 6818413..0000000 --- a/out/58.txt +++ /dev/null @@ -1,32 +0,0 @@ -Day 19 (Saturday) -3rd Tan -15 days until Timnor - -- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. - -Go through town to the harbor to get a boat. - -* Temperature is oddly warm for this time of year and this close to the sea. - -Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. -Cabin 17. -Figure head is a wooden shield crystal. - -Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. - -Hostess lady chants and brings forth great winds and a storm. - -Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. - -Merfolk - they've never done that before. - -- Pirates - has been attacking people more recently. -- creatures that can petrify others by looking at them. - -150g if we need to fight. 5g if we don't. - -* Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. -* Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. -* Silver Dragonborn - Bard - recruited. - -Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. diff --git a/out/59.txt b/out/59.txt deleted file mode 100644 index 306d857..0000000 --- a/out/59.txt +++ /dev/null @@ -1,24 +0,0 @@ -Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. - -Salinus? He calls on Salinus - worm - calls forth salt elementals! - -Kill him and his crew. - -- free passage on any of their ships and 400g -Receive Scimitar +1 - attune for water breathing. -Kairibdis' Pistol of Never Loading +1 (D8) noisy. - -Retreat to cabin with a cask of rum. - -Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. - -This is the only town on the Isle. -Turtle men seem to be the locals. -3rd road left 3 building - Sailors Rest. -Take a shrine tour - Shrine to the great Turtle. -Merfolk - the accordionman - look after the Turtles. -200g life gem. -We stand on the back of The Great Turtle. - -Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. - -Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. diff --git a/out/6.txt b/out/6.txt deleted file mode 100644 index ff1fff6..0000000 --- a/out/6.txt +++ /dev/null @@ -1,49 +0,0 @@ -Fire looks like it was burnt out yesterday. -Upstairs looks old. Double bedroom & 2 sets of singles. -Older couple. 1 may match dead man, 1 slightly smaller. - -- Creep over to the barn & see a row of sheep - heads - seem unnaturally agitated. Hear unevening bleat. -Breaks out of the barn - massive pile of melted -sheep - killed it. - -See things at barn and felt memories -being taken - not there when we get to the barn. -Found woman in the corner dead. Looks like -she lured the creature in the barn and somebody -locked them in. -Something about Malcolm and Isabella going missing & -nobody knowing of them in town but us & Malcolm's -wife knows. 11:15. - -- Go to where we found the birds. -Take short rest. Dirk leaves food out & lots of different -types of birds appear. -Go into swamp to find bird lady. 1 hour in. -Swamp hut covered in bird poo, inside branches -covered in birds. 80ish woman, blindfolded & mouth -sewn shut. Name: "The Chorus". - -Been having dreams - that aren't her own. -Her apprentice upped and left. -Magic used is clever - changes memories into a convenient -form - so knowing Sarah was with The Chorus it -was harder to wipe. -On of the Robins' Day they saw her by the hostel. -She was distorted... - -Always had large animals in the area. -Somebody going through the swamp & using gas -which is hurting the birds. -Q: Stop the Bushhunter. -Direct us to the place where Gedrin has the papers. -2pm leave, 5pm at town. - -Back to town through market place. -Notice stack of frames with a halfling (suited) -with an ogre - barrel with tubes & pipes going to an -ear funnel crossbow - talking to a masked person who -has a wagon pulled by a "cobra koi" type creature. - -Sneak up behind the ogre & break his equipment. -Goggles & let the gas out. diff --git a/out/60.txt b/out/60.txt deleted file mode 100644 index 55f54b2..0000000 --- a/out/60.txt +++ /dev/null @@ -1,25 +0,0 @@ -* Water gets up high on a trimoon and covers the building. -* Tell the guy about our fight with Kairibdis - Walter. -* Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 -* Takes us there. - -Old town in disrepair but one dock looks fairly well maintained and repaired. -3 houses look decent too. -First house closest to us seems to be lit. Creep up to look in. -4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. -1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. - -Both other huts have lights. Furthest one seems to be more secured. -One has a conch and calls and says kingly comes now. Wait around for him. - -Water comes back. -Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. - -11 fish people carrying things. 15 overall. -Something seems to be coming by barnacled sea cows. -10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. - -8:30 -9:20 -10:00 -Chariot back pulled 10:30 diff --git a/out/61.txt b/out/61.txt deleted file mode 100644 index 3e9f780..0000000 --- a/out/61.txt +++ /dev/null @@ -1,34 +0,0 @@ -Creature stops and sniffs as they are being watched, tells them to search for us. - -Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. - -Need all or the plan will not work and he will be cross and he will be worse. - -- Think 6 armed creature will attack our ship for the weapons. -- go back to Turtle Point. 12:00 - -Plan to go to Freeport instead of Baytail Accord. - -- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. -- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) - -Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. - -- Tell her what happened - 10ft 6 armed thing is an Excellence. -Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. -Dunhold Cache information. - -Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. - -Recommends to speak to merfolk of Lake Azure for Dirk's city. - -Shipment - get a small unit. -Sahuagin have one of the conch's (8 in existence) Kiendra's. -Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. - -* one of the Merfolk will come with us. -Pact leader Freeport - Tiana. - -Day 20 (Sunday) -14th Tan 1012 -14 days until Timnor diff --git a/out/62.txt b/out/62.txt deleted file mode 100644 index a6d733c..0000000 --- a/out/62.txt +++ /dev/null @@ -1,31 +0,0 @@ -Stay in the barracks for the night. -Dirk has a strange dream about a goliath sitting -on a granite throne looking concerned, two females tending -to a dwarf, who will live but will lose an eye -(Rubyeye), fought well. *changes* Savanna scene: -dancing around a fire with a granite city in the distance. -Face in the fire ?Enwi? then Jagg? then disappears. - -Head towards ship. -(Merfolk) Guardfree - states his mistress has been -working on misdirection. -- get food brought to our cabin. -- Journey is uneventful luckily. - -Oddly a busy bustling city mishmash of styles. -Rainbow ship is docked here. -* Quartermaster loads shipment onto our cart to -take with us. - -Baroness Lavaliliere - head of Freeport. -No taxes for trade here. -Newspaper: -* Ancient takes flight - left his home for last 1,000 years - moving to Snow Sorrow. - -* Fighting still going on in the mountains near - Highden - good taking a beating. - - paper seems to be propaganda. - -Go shopping. -Esmerelda - magic item shop. diff --git a/out/63.txt b/out/63.txt deleted file mode 100644 index 7193293..0000000 --- a/out/63.txt +++ /dev/null @@ -1,42 +0,0 @@ -Go to see Tiana at the Siren & Garter. - -Expecting a group of 40 to help fight Excellence. -- They are mortal & can be slain. Delights in bossing - the mortals around. - -Baroness - seems good but lets people do what they -please. Although can be random with which groups -to dispose of. Latest one around a week -ago - a group of bound elementals & gems - fire & water. -- another group selling archeological items from desert - Tabaxi - awakened etc. -Ceased the goods. - -Go find the Basilisk in a private room. - -Highden - being attacked by a Fire Excellence. - has something in for the dwarves. - -Investigated the crater & found an old lab -but unable to get in. - -* Friends on the council meeting with the ancient - around Snow-sorrow. - -* Azureside - reported perodotta & spawn amassing - in the area. - -* Arabella kidnapped again - targeted attack, - faces removed. - -* No forces available - zinquiss will meet us - at the harbour + 1 other. - Baroness neutral party, fairly reclusive - following her predecessors' ideas. - maybe something similar to Lady Harthwall but - is not a dragon. - -* Told about copper weapons - paper - Maelcolm Jethnes - & Earl of Fairport involvement in the shipment. - -* Get a dagger from Basilisk. diff --git a/out/64.txt b/out/64.txt deleted file mode 100644 index 85b22af..0000000 --- a/out/64.txt +++ /dev/null @@ -1,39 +0,0 @@ -Lesser rift blade - Dagger +1 - 3x charges. - 1 charge for dimension door. - 3 charge for teleport spell opens - a portal open for 5 seconds. - think of the place to - go - big enough for a person. - 1 recharge per day. - -Harthwall 2nd most -Common last name (Browning 1st). -Always been a Harthwall in -charge of Harthwall. No -Records of relative. Very reclusive -family who don't appear in public until the coronation -ceremony, only seen together to hand over the crown. -(possibly disguise self spell) - -19:00 - -Go back to see Tiana again. -get another guard - Guardfree. - -Pirates Pearls Plundered - Icky lower. -Poor Gut Refuge - -Cheeky Thimble Rugger - -Go out to the cart - Dirk notices the padlock -has scratches on it. The scratches look uniform & -pattern I recognise but don't know why. -Upside down thieves cant - "Drunken Duck" -& scratched with claws like mine. -change the markings to Everchard. -look into parking & Guardfree keeps watch. -Darker in Bugbear next to lizardman. - -Head over to the temple to give them the spear. -Female half-orc comes to speak to us - hand over the -spear & she goes to check it out with others. -Donate in exchange for help? diff --git a/out/65.txt b/out/65.txt deleted file mode 100644 index a8c068e..0000000 --- a/out/65.txt +++ /dev/null @@ -1,35 +0,0 @@ -Request an audience with the higher -power to discuss - won't be here for -3 hours. - -- go to get lodgings at the Pirates Pearls Plundered. - -- Crab man in charge - icky. - -- Baroness grants us an audience right now, - young for an elf. - -Room is odd - paintings are the predecessors all -wearing the same necklace (like a mayor necklace) & -lots of jewelry. - -Desert relics - thought maybe they belonged to an -old friend - long time ago - Velenth, Cardonald, -- worked for her before coming here - willingly. - -Vote 12 heads who vote who has -the ability to uphold a very specific set -of ideals. - -Other things taken off the street because -she doesn't approve of the cult. - -Will loan some forces - Proviso - she gives us -information about a laboratory. Can we get -a red gem for her, hunt but not as hard -as diamond in the workshop. -Gaping hole in the side of the building. -- Barrier - emergency systems - something else -in there - very young, cheers? she ran. -- Dragon - rumor to roost in the ruins of -Dirk's old city. diff --git a/out/66.txt b/out/66.txt deleted file mode 100644 index 475fcb4..0000000 --- a/out/66.txt +++ /dev/null @@ -1,38 +0,0 @@ -The creature in the chamber thing? -?Goa duck? - no. - -Has the code to the circle & the safe -code whilst the defenses are up. -gives us the lab. - -* Valenth wanted to transfer herself - into an object... - -* Seems a little shook & guard helps - her out. - -22:00 - -Return to temple of Cierra. -Huntsman has returned & comes over to us. -* Huntmaster Thrune. - Ruby Eye spoke to their church often & interested - in runes. - - will provide aid to kill Excellence. - -Ruby Eye thinks we might want to get -the book back from the blue dragon -before she tries to get it, she was -Enwi's apprentice. -- Ruby Eye's best friend wanted to craft - herself into some thing & continue in - that form. - -Spear was a gift from a Huntsman of Cierra -but it's actually an arrow and there were 5 -of them taken from Cierra's last battlefield. - -Back to Pirates Pearls Plunder. - -Guardfree - will get his mistress to bring guest shells. -- Try to plan what we are doing. diff --git a/out/67.txt b/out/67.txt deleted file mode 100644 index e1610ef..0000000 --- a/out/67.txt +++ /dev/null @@ -1,54 +0,0 @@ -Day 21 (Monday) -6th Jan -13 days until Tri-moon - -- We all have dreams that are tinged with - cold. - -- My dream - in family home, sibling playing - happy memories, looked at town hall but looking like - a crater but in fact a black hole - pulling in more buildings. Hear a voice: - "Where is he I know you hide him" horrible - voice. Panic & turn then wake up (looking for Garduul?) Void! - -- Just our room is cold. As the ice melted, - a white dragonscale drops from the icicles. - -Go look for the Captain for a boat. -! loan the boat for 100g a day & 500g - deposit (125g each). - -Pier 12 - large group merfolk 30 + 2 litters - guardsmen 20 (Sergeant has a necklaced - emerald glowing when he talks) - zinquiss & black dragon born (Wrath). - clerics 15 & leader. -- Speak to pack leader Tiana - & other leaders gather. -Get 2 guest shells. -10 spare shells. - -Sergeant takes our -cart to the keep. - -Captain Hween - -Wrath will stay on the -other side of the barrier -once we get there. - -Pack leaders: -Shundra - Turtle Point -Kiendra - Dunhold Cache -Tiana - Freeport -Alana - Riversmeet - -Set sail - sea is calm. -Water seems clear - no noticeable signs of -him yet. - -Merfolk, zinquiss, Wrath, half clerics in the sea with us. -- Excellence seemed to have come from 80 miles away - when we were at the turtle village - so possibly - Dunhold Cache or the smaller islands around. diff --git a/out/68.txt b/out/68.txt deleted file mode 100644 index 0263814..0000000 --- a/out/68.txt +++ /dev/null @@ -1,43 +0,0 @@ -& net -Make a pulley system to hoist shield crystal -onto the ship when we get to Fairshaw. - -- Wrath (Colin) middle name. - Request to look for the location of Garaduul - when he gets to Blackstone scale. - -- Island - pass it & nothing seems to happen. -- Arrive at Fairshaw. - - Boat is ceased upon orders from the Earl, - occupants being detained for Treason etc. - Diplomatic mission carrying members of the Pact etc. -- Suspect the Earl is part of the Cult. - - give zinquiss 200g for 4x healing potions. - -- Guards return & tell us to stay on board whilst - investigation takes place. - -Zinquiss returns with 3 healing & 1x greater healing (distributed). -News: -* Highden - Battles not doing well, - strengthened by dragon sightings. -* Heartmoor - People falling ill - surgeons deployed - (Perodotta?) -* Grand Towers - Justiciars leaving to the 5 - points of the penta city states. -* Provinia - locust and mysterious spiritual - event where things keep disappearing. - -Sword blessed +1. - -Day 22 (Tuesday) -6th Jan 1012 -12 days to tri-moon. - -Get called to the mess hall by Tiana. - -Construction under the water & they have made -a gate by raising the crystal up to leave -a gap. Fish shamans taking notes on waterproof -paper also. -Crystal is approx 1m square. diff --git a/out/69.txt b/out/69.txt deleted file mode 100644 index 979a675..0000000 --- a/out/69.txt +++ /dev/null @@ -1,38 +0,0 @@ -Can sense Kiendra but no response possibly unconscious -but seems to be in the cavern. - -Split underwater group into two to sort out crystal -& also attempt to rescue Kiendra. - -Approach shield crystal in stealth. - -See - above our field of vision are some sharks who -seem to have spotted us. - -Fight. -- We overcome & defeat mobs at the crystal site. - Kiendra - found & rescued - very weak & tortured. - Find waterproof paper, 3x dispel magic scrolls (geldrin) - & coin pouches - 112g (give to crew). - Big Boss - Spear glowing dull blue - Doom spear +1 - returning - speak aquan. - Suit of plate mail - Plate of Hydran +1 resistance to cold. - -Boat - pretty wounded. -Other party - Tiana's - dispelled shells & got - attacked - Hunt Master missing. -Half orc priestess on the boat wants -to check on the other team for the Huntmaster. -Necklace Sergeant wants to come with us. - -Go over & Huntmaster fighting an Excellence -both very injured. -! Deed Excellence! - -4 mermen -all mermaids -4 clerics -6 guardsmen -} survive - -* Moor up by Dunhold Cache for the night. diff --git a/out/7.txt b/out/7.txt deleted file mode 100644 index 2c9ed67..0000000 --- a/out/7.txt +++ /dev/null @@ -1,40 +0,0 @@ -Bushhunter will do any form of Taxidermy... -* Bushhunter promises to hunt out of town. -Request him to do it the other side of the -river. - -- Magpie / Xinquiss can be found at - the Hatrall great bazaar. 5:15. - -Sheriff's office. -Very busy in there. Both Jeremia & deputy sheriff -armoured up - half-orc & kobold (seem to be militia). -Citizens wearing patchwork armour - bear, tabaxi, human, -warforged. - -- Been an attack - Walter (sheep farmer). Somebody came - in & they had a cult with sheep beast in. - Wife sacrificed herself. - -- Core - warforged - runs Peel & Core, lack of custom - in the tavern - noticed wagons at the hostel. - -- Earl had a death threat. 500g bounty. - -- Tiny guy - forester - Cromwell - noticed wagons - past Walter's farm, seem to have stopped there. - Seemed to be people in the wagons. What the mo... 5:30. - -- Jeremia & Drang to protect the Earl. -Hannah & Bob - go to outskirts. - -Gives us a shock dagger. - -- Village is quiet. -2x wagons parked outside the hostel - livestock looking. -Smells of pig manure & human faeces. Feel warmth -but can't see anything - scratched crab claws. - -Dirk sees rats again & they attack. A pig beast -breaks out of one of the carts, killed. -Sabotage carts & two people bring 4 horses. diff --git a/out/70.txt b/out/70.txt deleted file mode 100644 index fa33ba7..0000000 --- a/out/70.txt +++ /dev/null @@ -1,38 +0,0 @@ -Merfolk recover our dead & lay on the -deck - Priests oversee & I thank each one for their -help & sacrifice. - -Pull up to the cove - lookout shouts -there is a vessel already docked. -Chariot with water elementals chained to -the boat - Excellence's boat. - -- We row to shore to investigate. -Mother of Pearl named Chariot, no other signs of -movement. - -Dirk speaks to elementals & they want -to show us where the excellence live, -will come with us on the big boat. -! Take the chariot back with us 8-10kg. -Zinquiss will sell it at an auction in 7 days, -have the address for the Freeport auction house. - -Day 23 (Wednesday) -7th Jan 1012 -11 days to tri-moon. - -Go to Excellence lair with Merfolk - Pack leader Alana. -* Water ebbs & flows like a tide in the underwater - cave. -* 20ft long crystalline sculpture of a dragon - base has - runes glowing. -* 3 cages & barrels. - 1 cage contains a merfolk - but looks different - green not blue. - Alana seems to revive him & takes him back to the ship. -* Chests seem to be laced so waterproof - contents may - not be openable under water. - open one & contains white powder which I inhale. - Bas, Athal - Salamanders - & Arabic writing. - White dragon circling around the dome. - Rabbits - whole room turns into a black void. diff --git a/out/71.txt b/out/71.txt deleted file mode 100644 index 84d8e96..0000000 --- a/out/71.txt +++ /dev/null @@ -1,37 +0,0 @@ -Two blue eyes in the darkness coming towards -me & really cold & back in the room. - -Other cages - in the middle of the cage they see snail -with a gleam of metal which is a jeweller's chain -attaching it to the cage. Guardseen says the -snail is a bad omen - its been drugged. -Back to ship. - -Merfolk - abducted from beyond the barrier, -him, his friend & wife. Woke up one day -& they were both gone. Wife is nobility -in their pact. (Snewl?) - -Hunt master dispels magic on the snail & -a mermaid appears. -Empire of their people outside of the barrier -captured while on diplomatic mission to the city -of Onyx, doesn't trust them because war between -them & the Salt elementals. -Princess Aquunea. - -- City of the black scales has a "door" into - the dome - Infestus can't use it as too big. - Payment to access is a Grand Towers penny. - -Check out the barrels etc. -- sickly sweet medicinal - potion of magical energy - regain 1 slot - 1 hour. -- silk & parchment interleaved - runes. -- 2x white rose powder. Tiana gives us 1,000g. -- metallic censer (incense holding burning device) - silver? religious? water god? Censer of Noxia. - Ability to enrage & control water elementals. - It's active. - -* Send message to Basilisk. diff --git a/out/72.txt b/out/72.txt deleted file mode 100644 index 4620643..0000000 --- a/out/72.txt +++ /dev/null @@ -1,45 +0,0 @@ -Arrive back to Freeport - seems very cold. -Much colder heading back -down to Freeport. ?Rimewalk issues? - -Snowing over the sea, everything very dark & snowy. -Guy shouting the End is Nigh - moon is crashing down -into the city. Ask him which city & he then "it bothered -he dreamt it." -22:00 - -Lots of people having dreams. -Gnolls attacking a village requested backup from -Everchard & Fairshaw. -* Underwater - mermaids - "big cat with metal - wings attacked it." -Happened a few nights ago - same time as ours. - -Head to the Castle to see the Baroness. -Necklace is removed from the Sergeant & he just -walks off. - -* Mermaids - Having a meeting in 3 days at - Baytail Accord to discuss what happened. - We can go. - -The dreams seem to contradict each other, -possibly from the Ancient One - so could happen. -Huntmaster - going to Grand Towers to speak -to the Hunt Lord. -* Justiciar in the city. ?Looking for us. -* Baroness gets us into the Drunken Duck - secret in - Air wise from Jewelry District. - Written on our padlock, on the cart. - Cart still ok in the castle. - -Baroness Master - Valenth Caerduinel. Necklace. -Sister is a ring. - -Go to Drunken Duck. -All the walls are covered in pillows & ?soundproofing? -Red dragonborn -2x tabaxi -Automaton -2x halfling & gnome -} clientele diff --git a/out/73.txt b/out/73.txt deleted file mode 100644 index 691b63e..0000000 --- a/out/73.txt +++ /dev/null @@ -1,17 +0,0 @@ -Gave me (Axion) Schnapps from the Brass City! -Barman says only the best for the "Little Finger". -He's intrigued by why the 3 best members of the -Underbelly went on a mission. - -- Tabaxi Whisperers laden with 'Dev'. - Traders 'Keeps' from foot to foot. - -Faint noise through the floorboards, raised voices? -Automaton keeps talking about a factory. -Wants to know where the labs are. Tell him -all by the barrier. Cuts down his search radius... - -- Get a private room to discuss matters. - - Send message via the underbelly to advise we - won't be going to Baytail Accord. - - Will go to desert laboratory. diff --git a/out/8.txt b/out/8.txt deleted file mode 100644 index 9508822..0000000 --- a/out/8.txt +++ /dev/null @@ -1,49 +0,0 @@ -Woman in 50's, too many teeth, bigger (Sarah?) -Mouth - big. -Young boy 18ish (sheep farmer's boy?) - -3x patrons: Crimson, Bovine, Mirthis Fizzleswig. -1 shortsword. -1 sickle, silver. -Random herbs. -Church Tor & church Tarber. 19:00. - -Take the people & cart to the church. -People unable to be saved. Boy wasn't dead at first -but now dead. - -Brother Fracture - looks at the cart. -Remembered all of the militia have been going missing. -Want to try to put them all to sleep - Bushhunter! -Bushhunter staying out at cider inn/cider. - -Go to see him, 20:00. -Has a ring with purple gem & runes, needs identifying. -Doing that in trade for use of quaverisior / magical hearing -powder, 5000? etc. -Go back to cart & use it. -Get 5 back into the church. -1 - Gregory, homeless man, restored. Thought he'd been -taken by the militia. Remembers being in the big militia house. - -Park the cart behind the church & horses at the inn. - -Random compass box with a needle that points to the -Bushhunter - Geldrin buys it. - -Day 4 19th Dec, 7:00 -Dirk - flower he got from a tiefling girl is still looking -new - has a magic enchantment to keep it new. - -Problems with Pylon: -- Seaweed water spirits on the move. -- Fish men other side of barrier (massacre), dumbold south. -- Stone giants missing under new leadership by Hyden Goldensoul, - armies too insignificant. -- Cold air over River Rhein, frozen between Snowshore and - Highland edge. -- Ancient [unclear] from slumber, sages try to interpret omens. -- Gnolls attack restored point, cows missing, bounty on gnoll. -- Blight hits azureside cherry crops - Cereza production halted. -- Isabella Nudegate, 500g reward (missing on route), not searched. -- Grand festival, midwinter - held at Brockville spring next week. diff --git a/out/9.txt b/out/9.txt deleted file mode 100644 index f702f82..0000000 --- a/out/9.txt +++ /dev/null @@ -1,43 +0,0 @@ -* Peridobit cloaking death spotted 50 miles eastwise - of Arrowfeur. -- No mention of pig. - -- Pig carcass is missing. Singe marks on the road. - Other cart still outside the hostel. 8:20. - -Oric - innkeeper, Cider Inn Cider. -Earl was holding banquet, no other strange goings on. -Things go crazy this close to the third. -Town crier local news around midday. - -Go to sheriff - walk past Earl's manor house. -Sheriff in chair, kobold shuffling papers. -Calls Malcolm, half elf steward for the Earl apparently -behind the plots to kill the Earl. Seems innocent - -no evidence, doing to keep face with the Earl. - -Something off with the Earl. Asked blacksmith to -up the production on weapons?! Invar just delivered lots. -Steward - didn't know him before; thinks duchesses -of Harthwall sent him after the previous Earl passed. -Earl seems to be more extreme in his views: -10 show sorrow, -10 blacksmith in town. - -Books say 27 militia - but only 4 (27 is half required amount). -Lawrence Henderson - exchequer, paying wages. 8:00. -Ledger given to the scribes at night & back to -Earl at 9:00 - half elf comes to scribes with us. - -Pick the lock & get left to Earl's chambers, right for scribes. -Ledgers are all copied & old ledgers kept in a different -place. Current ledger around 7 days ago. - -Isabella 2 weeks ago with 20 min to search for her in the copies. -Malcolm 6 days ago - name scrubbed out in the ledger -but not scribbled out in the copies. - -Visiting tourists: cider brewery & tour of woodland. -Spoke to the Earl for permission to take a cutting from the -Everchurch tree. Staying at beekeeper's. -Elfin meadowmaker for the cutting, 2x bodyguard. diff --git a/scripts/__pycache__/build_all.cpython-314.pyc b/scripts/__pycache__/build_all.cpython-314.pyc deleted file mode 100644 index 6248a59..0000000 Binary files a/scripts/__pycache__/build_all.cpython-314.pyc and /dev/null differ diff --git a/scripts/__pycache__/build_party_diary.cpython-314.pyc b/scripts/__pycache__/build_party_diary.cpython-314.pyc deleted file mode 100644 index 54887dc..0000000 Binary files a/scripts/__pycache__/build_party_diary.cpython-314.pyc and /dev/null differ diff --git a/scripts/__pycache__/process_notes.cpython-314.pyc b/scripts/__pycache__/process_notes.cpython-314.pyc deleted file mode 100644 index a724570..0000000 Binary files a/scripts/__pycache__/process_notes.cpython-314.pyc and /dev/null differ diff --git a/scripts/__pycache__/split_diary.cpython-314.pyc b/scripts/__pycache__/split_diary.cpython-314.pyc deleted file mode 100644 index c88da07..0000000 Binary files a/scripts/__pycache__/split_diary.cpython-314.pyc and /dev/null differ diff --git a/scripts/build_all.py b/scripts/build_all.py deleted file mode 100644 index e55ebd3..0000000 --- a/scripts/build_all.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env python3 - -from pathlib import Path - - -def page_key(path: Path) -> tuple[int, str]: - try: - return (int(path.stem), path.stem) - except ValueError: - return (10**9, path.stem) - - -def main() -> int: - src_dir = Path("data/2-pages") - dest = Path("all.txt") - files = sorted(src_dir.glob("*.txt"), key=page_key) - if not files: - raise SystemExit("No page files found in data/2-pages/") - - parts: list[str] = [] - for path in files: - text = path.read_text(encoding="utf-8").rstrip() - parts.append(text) - dest.write_text("\n\n".join(parts).rstrip() + "\n", encoding="utf-8") - print(f"Wrote {dest} from {len(files)} pages") - return 0 - - -if __name__ == "__main__": - raise SystemExit(main()) diff --git a/scripts/build_party_diary.py b/scripts/build_party_diary.py deleted file mode 100644 index 2336cc2..0000000 --- a/scripts/build_party_diary.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python3 - -from pathlib import Path - - -HEADER = """Pentacity Party Diary -===================== - -This diary is a story-based reconstruction of the campaign so far, drawn from all-processed.txt. It keeps the chronology intact while making the events, people, places, items, clues, factions, and unresolved mysteries easier to search and index. - -""" - - -def main() -> int: - src = Path("all-processed.txt") - out = Path("party-diary.txt") - if not src.exists(): - raise SystemExit("all-processed.txt does not exist; run scripts/process_notes.py first") - - # This script intentionally creates a conservative narrative base from the processed notes. - # Agents should improve the prose manually when the user asks for a polished campaign diary. - text = src.read_text(encoding="utf-8") - text = text.replace("Pentacity Campaign Notes - Processed\n====================================\n\n", "") - text = text.replace("Pentacity Campaign Notes\n========================\n\n", "") - out.write_text(HEADER + text.strip() + "\n", encoding="utf-8") - print(f"Wrote {out}") - return 0 - - -if __name__ == "__main__": - raise SystemExit(main()) diff --git a/scripts/process_notes.py b/scripts/process_notes.py deleted file mode 100644 index 65dbec0..0000000 --- a/scripts/process_notes.py +++ /dev/null @@ -1,129 +0,0 @@ -#!/usr/bin/env python3 - -from pathlib import Path -import re - - -def clean(s: str) -> str: - s = s.strip() - s = re.sub(r"\s+", " ", s) - s = s.replace(" & ", " and ") - s = s.replace("Q -", "Quest:") - return s - - -def main() -> int: - src = Path("all.txt") - out = Path("all-processed.txt") - if not src.exists(): - raise SystemExit("all.txt does not exist; run scripts/build_all.py first") - - lines = src.read_text(encoding="utf-8").splitlines() - heading_re = re.compile(r"^\s*(Day\s+\d+)(?:\s+(.*?))?\s*$") - day_inline_re = re.compile(r"^(.*?)(\s{2,})(Day\s+\d+)(?:\s+(.*))?$") - continuation_prefixes = ( - "for ", "to ", "in ", "with ", "and ", "but ", "or ", "of ", "from ", "then ", - "that ", "as ", "by ", "on ", "at ", "which ", "while ", "because ", "since ", - "so ", "seem ", "seems ", "think ", "thought ", "possibly ", "approx ", "around ", - "payable ", "people, ", "family ", "not ", "no ", "all ", "other ", "both ", - "one ", "same ", "go ", "head ", "follow ", "looking ", "trying ", "using ", - "about ", "where ", "who ", "what ", "when ", "why ", "will ", "would ", "can ", - "could ", "has ", "have ", "had ", "is ", "are ", "was ", "were ", - ) - - processed = [ - "Pentacity Campaign Notes", - "========================", - "", - ] - para: list[str] = [] - started = False - - def flush_para() -> None: - if not para: - return - joined = " ".join(clean(p) for p in para if clean(p)) - joined = re.sub(r"\s+", " ", joined).strip() - if joined: - processed.append(joined) - processed.append("") - para.clear() - - def add_heading(title: str) -> None: - flush_para() - if processed and processed[-1] != "": - processed.append("") - processed.append(title) - processed.append("-" * len(title)) - processed.append("") - - for raw in lines: - line = raw.rstrip() - stripped = line.strip() - if not stripped: - flush_para() - continue - - m_inline = day_inline_re.match(line) - if m_inline: - lead = clean(m_inline.group(1)) - day = clean(m_inline.group(3) + ((" " + m_inline.group(4).strip()) if m_inline.group(4) else "")) - if lead: - flush_para() - processed.append(lead) - processed.append("") - add_heading(day) - started = True - continue - - m = heading_re.match(stripped) - if m: - day = clean(m.group(1) + ((" " + m.group(2)) if m.group(2) else "")) - add_heading(day) - started = True - continue - - if not started and stripped == "Ever Church": - add_heading("Ever Church") - started = True - continue - - bulletish = bool(re.match(r"^\s*[-*!]\s+", line)) or bool(re.match(r"^\s*\d+\.\s+", line)) or stripped.startswith("}") - if bulletish: - flush_para() - b = re.sub(r"^\s*[-*!]\s+", "", line).strip() - b = re.sub(r"^}\s*", "Survivors: ", b) - processed.append("- " + clean(b)) - continue - - if ":" in stripped and len(stripped) < 110 and not stripped.endswith("."): - flush_para() - processed.append("- " + clean(stripped)) - continue - - if re.match(r"^(\d+x?|[A-Za-z]+\s*[-/]|[A-Z][a-z]+\s*[-/])", stripped) and len(stripped) < 100: - if raw[:1].isspace() and processed and processed[-1].startswith("- "): - processed[-1] += " " + clean(stripped) - else: - flush_para() - processed.append("- " + clean(stripped)) - continue - - if raw[:1].isspace() and processed and processed[-1].startswith("- "): - if stripped.lower().startswith(continuation_prefixes) or not re.match(r"^[A-Z][a-z]+\b", stripped): - processed[-1] += " " + clean(stripped) - continue - - para.append(stripped) - - flush_para() - joined = "\n".join(processed) - joined = re.sub(r"\n{3,}", "\n\n", joined) - joined = joined.replace("TriMoon", "Tri-moon").replace("trimoon", "tri-moon") - out.write_text(joined.rstrip() + "\n", encoding="utf-8") - print(f"Wrote {out} with {len(joined.splitlines())} lines") - return 0 - - -if __name__ == "__main__": - raise SystemExit(main()) diff --git a/scripts/split_diary.py b/scripts/split_diary.py deleted file mode 100644 index d20cdbe..0000000 --- a/scripts/split_diary.py +++ /dev/null @@ -1,91 +0,0 @@ -#!/usr/bin/env python3 - -from pathlib import Path -import re - - -def slug(title: str) -> str: - m = re.search(r"Day\s+(\d+)", title) - if m: - return f"day-{int(m.group(1)):02d}" - return re.sub(r"[^a-z0-9]+", "-", title.lower()).strip("-") - - -def clean_line(line: str) -> str: - s = line.strip() - s = re.sub(r"^[-*!]\s*", "", s) - return re.sub(r"\s+", " ", s) - - -def flush_para(out: list[str], para: list[str]) -> None: - if not para: - return - joined = re.sub(r"\s+", " ", " ".join(para)).strip() - if joined: - out.append(joined) - out.append("") - para.clear() - - -def render(title: str, body_lines: list[str]) -> str: - out = [title, "=" * len(title), ""] - para: list[str] = [] - for raw in body_lines: - stripped = raw.strip() - if not stripped or re.match(r"^[-=]{3,}$", stripped): - flush_para(out, para) - continue - para.append(clean_line(stripped)) - flush_para(out, para) - return "\n".join(out).rstrip() + "\n" - - -def main() -> int: - src = Path("all-processed.txt") - outdir = Path("data/3-days") - if not src.exists(): - raise SystemExit("all-processed.txt does not exist; run scripts/process_notes.py first") - outdir.mkdir(exist_ok=True) - - lines = src.read_text(encoding="utf-8").splitlines() - heading_re = re.compile(r"^(Day\s+\d+.*)$") - underline_re = re.compile(r"^[-=]{3,}$") - - sections: list[tuple[str, list[str]]] = [] - current_title: str | None = None - current_lines: list[str] = [] - preamble: list[str] = [] - - started = False - for line in lines: - if underline_re.match(line.strip()): - continue - m = heading_re.match(line.strip()) - if m: - if current_title is None: - preamble = current_lines[:] - else: - sections.append((current_title, current_lines)) - current_title = m.group(1) - current_lines = [] - started = True - else: - if not started and line.strip() in {"Pentacity Campaign Notes", "Pentacity Campaign Notes - Processed"}: - continue - current_lines.append(line) - - if current_title is not None: - sections.append((current_title, current_lines)) - if sections and preamble: - title, body = sections[0] - sections[0] = (title, preamble + [""] + body) - - for title, body in sections: - (outdir / f"{slug(title)}.txt").write_text(render(title, body), encoding="utf-8") - - print(f"Wrote {len(sections)} diary files to {outdir}/") - return 0 - - -if __name__ == "__main__": - raise SystemExit(main()) diff --git a/skills/build-campaign-corpus/SKILL.md b/skills/build-campaign-corpus/SKILL.md deleted file mode 100644 index 77d8b76..0000000 --- a/skills/build-campaign-corpus/SKILL.md +++ /dev/null @@ -1,36 +0,0 @@ -# Build Campaign Corpus - -Use this skill after raw page transcriptions exist in `data/2-pages/`, or when the user asks to rebuild `all.txt` or `all-processed.txt`. - -## Goal - -Create a clean, searchable campaign corpus from raw page files. - -## Inputs - -- Raw page files: `data/2-pages/*.txt` -- Combined raw file: `all.txt` -- Processed file: `all-processed.txt` - -## Procedure - -1. Build `all.txt` in numeric page order: - `python3 scripts/build_all.py` -2. Build `all-processed.txt`: - `python3 scripts/process_notes.py` -3. Read the beginning, middle, and end of `all-processed.txt` to catch obvious formatting failures. -4. Search for day headings to confirm all campaign days were retained. - -## Processing Rules - -- Keep all source facts. -- Reflow wrapped lines into readable paragraphs. -- Convert day markers into stable headings. -- Keep item names, rewards, NPC names, dates, times, places, quotes, and unresolved questions. -- Do not remove apparently minor details; they may be important later. - -## Verification - -- `all.txt` exists and contains every file from `data/2-pages/` in numeric order. -- `all-processed.txt` exists and contains headings `Day 1` through the latest day. -- Character count should be similar to or greater than `all.txt`, not dramatically smaller. diff --git a/skills/full-note-ingestion-pipeline/SKILL.md b/skills/full-note-ingestion-pipeline/SKILL.md deleted file mode 100644 index 25c4c0b..0000000 --- a/skills/full-note-ingestion-pipeline/SKILL.md +++ /dev/null @@ -1,38 +0,0 @@ -# Full Note Ingestion Pipeline - -Use this skill when the user adds new pages and wants the entire workflow automated from images to wiki-ready diary files. - -## Goal - -Run the complete ingestion pipeline: - -1. Images in `data/1-source/` to raw transcription pages in `data/2-pages/`, using the agent's own vision model. -2. Raw pages to `all.txt`. -3. `all.txt` to `all-processed.txt`. -4. `all-processed.txt` to `party-diary.txt`. -5. `all-processed.txt` to per-day files in `data/3-days/`. - -## Commands - -Run transcription if needed by reading each new image in `data/1-source/` directly with the agent's vision model and writing the result to `data/2-pages/<page-number>.txt`. - -Do not use `transcribe_notes.py` unless the user explicitly requests the legacy local Ollama workflow. - -Then run the text pipeline: - -`python3 scripts/build_all.py && python3 scripts/process_notes.py && python3 scripts/build_party_diary.py && python3 scripts/split_diary.py` - -## When to Ask First - -- Ask before overwriting existing manually edited files if the user has not requested a rebuild. -- Ask if source file choice is ambiguous, such as whether to use `all-processed.txt` or `all-processed-edited.txt`. -- Ask if there are many new images and the user wants only a subset transcribed. - -## Verification Checklist - -- `data/2-pages/` has one text file per expected note page, created by direct agent-vision transcription. -- `all.txt` is in numeric page order. -- `all-processed.txt` contains all day headings. -- `party-diary.txt` includes the campaign-wide narrative and index sections. -- `data/3-days/day-*.txt` count matches day heading count. -- Spot-check one early, one middle, and one late output file. diff --git a/skills/split-day-diaries/SKILL.md b/skills/split-day-diaries/SKILL.md deleted file mode 100644 index 1dbc3af..0000000 --- a/skills/split-day-diaries/SKILL.md +++ /dev/null @@ -1,33 +0,0 @@ -# Split Day Diaries - -Use this skill when the user wants one file per campaign day for wiki ingestion. - -## Goal - -Create one narrative text file per campaign day in `data/3-days/`. - -## Inputs - -- Source: `all-processed.txt` -- Output directory: `data/3-days/` -- Script: `scripts/split_diary.py` - -## Procedure - -1. Run: - `python3 scripts/split_diary.py` -2. Confirm `data/3-days/day-01.txt` through the latest day exist. -3. Spot-check early, middle, and late day files. - -## Output Style - -- File names use `day-XX.txt`, for example `day-01.txt`. -- Each file starts with the day heading. -- Each file preserves all source details for that day in readable narrative form. -- Do not drop short days; even short entries should get their own file. - -## Verification - -- Count `^Day ` headings in `all-processed.txt`. -- Count files in `data/3-days/day-*.txt`. -- These counts should match. diff --git a/skills/transcribe-campaign-notes/SKILL.md b/skills/transcribe-campaign-notes/SKILL.md deleted file mode 100644 index 18ec9e2..0000000 --- a/skills/transcribe-campaign-notes/SKILL.md +++ /dev/null @@ -1,39 +0,0 @@ -# Transcribe Campaign Notes - -Use this skill when the user adds new handwritten note images and wants them converted into numbered text pages. This repository requires transcription with the agent's own vision model, not the legacy local Ollama script. - -## Goal - -Convert image files in `data/1-source/` into raw page transcriptions in `data/2-pages/`, one file per inferred handwritten page number, by reading each image directly with the agent's vision capability. - -## Inputs - -- Source images: `data/1-source/` -- Output text pages: `data/2-pages/` -- Preferred transcription method: agent vision model reading the source images directly. -- Legacy fallback only if explicitly requested: `transcribe_notes.py`. - -## Procedure - -1. Inspect `data/1-source/` and `data/2-pages/` to understand which images and page text files already exist. -2. Identify images in `data/1-source/` that do not yet have matching transcriptions in `data/2-pages/`. -3. Read each new image directly with the file/image reading tool so the agent's own vision model sees the handwritten page. -4. Infer the handwritten page number from the image, usually from the top-right corner or page header. -5. Transcribe the handwritten notes as exactly as possible, preserving line breaks where useful and preserving uncertain readings. -6. Write each result to `data/2-pages/<page-number>.txt`, for example `data/2-pages/74.txt`. -7. Check that each generated file is named by page number and contains raw transcription, not summary. -8. Spot-check several generated pages against source images when possible. - -## Important Rules - -- Do not summarize during transcription. -- Preserve line breaks where readable. -- Preserve uncertain words using the model's best reading; later cleanup can mark uncertainty. -- Do not overwrite user-edited transcription files unless the user asks for a full rebuild. -- Do not use `python3 transcribe_notes.py` unless the user explicitly asks for the legacy local Ollama workflow. - -## Verification - -- Confirm `data/2-pages/` has the expected page count. -- Confirm no duplicated or missing page numbers unless the source notes genuinely skip pages. -- If an image is too unclear, write the best transcription possible and mark uncertain text with `[unclear]`, `?`, or the original uncertain wording. diff --git a/skills/write-party-diary/SKILL.md b/skills/write-party-diary/SKILL.md deleted file mode 100644 index 6e36ab2..0000000 --- a/skills/write-party-diary/SKILL.md +++ /dev/null @@ -1,33 +0,0 @@ -# Write Party Diary - -Use this skill when the user asks for a story-based, detailed narrative of the campaign so far. - -## Goal - -Generate a long-form wiki-friendly narrative in `party-diary.txt` from `all-processed.txt`. - -## Source - -Use `all-processed.txt` unless the user explicitly names another file. - -## Procedure - -1. Read `all-processed.txt` fully or in large chunks. -2. Generate `party-diary.txt` using: - `python3 scripts/build_party_diary.py` -3. If the script output needs improvement, edit `party-diary.txt` manually, preserving all details. -4. Verify that major arcs are represented: Everchurch, the observatory and Joy, Seaward, Ruby Eye's lab, Harthwall council, Fairshoes/Turtle Point, Freeport, sea assault, Dunhold Cache, and current Drunken Duck/desert laboratory direction. - -## Narrative Requirements - -- Write in chronological story form. -- Include all facts that may later matter: names, aliases, places, dates, times, factions, clues, loot, spells, artifacts, payments, visions, dreams, open questions, and uncertain readings. -- Preserve ambiguity where present. -- Add searchable section headings. -- Do not invent conclusions beyond the notes. - -## Verification - -- `party-diary.txt` exists and is substantial. -- It has sections for important people, factions, items, rewards, and unresolved mysteries. -- It does not omit major rewards or artifacts. diff --git a/src/IMG_5116.png b/src/IMG_5116.png deleted file mode 100644 index cfca911..0000000 Binary files a/src/IMG_5116.png and /dev/null differ diff --git a/src/IMG_5117.png b/src/IMG_5117.png deleted file mode 100644 index 573a5d2..0000000 Binary files a/src/IMG_5117.png and /dev/null differ diff --git a/src/IMG_5118.png b/src/IMG_5118.png deleted file mode 100644 index 63fb5aa..0000000 Binary files a/src/IMG_5118.png and /dev/null differ diff --git a/src/IMG_5119.png b/src/IMG_5119.png deleted file mode 100644 index 42144bd..0000000 Binary files a/src/IMG_5119.png and /dev/null differ diff --git a/src/IMG_5120.png b/src/IMG_5120.png deleted file mode 100644 index 71930bf..0000000 Binary files a/src/IMG_5120.png and /dev/null differ diff --git a/src/IMG_5121.png b/src/IMG_5121.png deleted file mode 100644 index c26c97a..0000000 Binary files a/src/IMG_5121.png and /dev/null differ diff --git a/src/IMG_5122.png b/src/IMG_5122.png deleted file mode 100644 index 9b59bc1..0000000 Binary files a/src/IMG_5122.png and /dev/null differ diff --git a/src/IMG_5123.png b/src/IMG_5123.png deleted file mode 100644 index 5155d1c..0000000 Binary files a/src/IMG_5123.png and /dev/null differ diff --git a/src/IMG_5124.png b/src/IMG_5124.png deleted file mode 100644 index 7d2ae19..0000000 Binary files a/src/IMG_5124.png and /dev/null differ diff --git a/src/IMG_5125.png b/src/IMG_5125.png deleted file mode 100644 index 2fe903b..0000000 Binary files a/src/IMG_5125.png and /dev/null differ diff --git a/src/IMG_5126.png b/src/IMG_5126.png deleted file mode 100644 index 20a2960..0000000 Binary files a/src/IMG_5126.png and /dev/null differ diff --git a/src/IMG_5127.png b/src/IMG_5127.png deleted file mode 100644 index b7a42b9..0000000 Binary files a/src/IMG_5127.png and /dev/null differ diff --git a/src/IMG_5128.png b/src/IMG_5128.png deleted file mode 100644 index d791182..0000000 Binary files a/src/IMG_5128.png and /dev/null differ diff --git a/src/IMG_5129.png b/src/IMG_5129.png deleted file mode 100644 index 07a9f90..0000000 Binary files a/src/IMG_5129.png and /dev/null differ diff --git a/src/IMG_5130.png b/src/IMG_5130.png deleted file mode 100644 index 7c00ba6..0000000 Binary files a/src/IMG_5130.png and /dev/null differ diff --git a/src/IMG_5131.png b/src/IMG_5131.png deleted file mode 100644 index 1df5cdd..0000000 Binary files a/src/IMG_5131.png and /dev/null differ diff --git a/src/IMG_5132.png b/src/IMG_5132.png deleted file mode 100644 index ebaf90b..0000000 Binary files a/src/IMG_5132.png and /dev/null differ diff --git a/src/IMG_5133.png b/src/IMG_5133.png deleted file mode 100644 index a504b7a..0000000 Binary files a/src/IMG_5133.png and /dev/null differ diff --git a/src/IMG_5134.png b/src/IMG_5134.png deleted file mode 100644 index 40f3e97..0000000 Binary files a/src/IMG_5134.png and /dev/null differ diff --git a/src/IMG_5135.png b/src/IMG_5135.png deleted file mode 100644 index 875c1a0..0000000 Binary files a/src/IMG_5135.png and /dev/null differ diff --git a/src/IMG_5136.png b/src/IMG_5136.png deleted file mode 100644 index 9531894..0000000 Binary files a/src/IMG_5136.png and /dev/null differ diff --git a/src/IMG_5137.png b/src/IMG_5137.png deleted file mode 100644 index 77b66cc..0000000 Binary files a/src/IMG_5137.png and /dev/null differ diff --git a/src/IMG_5138.png b/src/IMG_5138.png deleted file mode 100644 index 6816df1..0000000 Binary files a/src/IMG_5138.png and /dev/null differ diff --git a/src/IMG_5139.png b/src/IMG_5139.png deleted file mode 100644 index 1283119..0000000 Binary files a/src/IMG_5139.png and /dev/null differ diff --git a/src/IMG_5140.png b/src/IMG_5140.png deleted file mode 100644 index 13771f4..0000000 Binary files a/src/IMG_5140.png and /dev/null differ diff --git a/src/IMG_5141.png b/src/IMG_5141.png deleted file mode 100644 index b7018b8..0000000 Binary files a/src/IMG_5141.png and /dev/null differ diff --git a/src/IMG_5142.png b/src/IMG_5142.png deleted file mode 100644 index 9d870ca..0000000 Binary files a/src/IMG_5142.png and /dev/null differ diff --git a/src/IMG_5143.png b/src/IMG_5143.png deleted file mode 100644 index 5872fc7..0000000 Binary files a/src/IMG_5143.png and /dev/null differ diff --git a/src/IMG_5144.png b/src/IMG_5144.png deleted file mode 100644 index 3c8deec..0000000 Binary files a/src/IMG_5144.png and /dev/null differ diff --git a/src/IMG_5145.png b/src/IMG_5145.png deleted file mode 100644 index 3b5421a..0000000 Binary files a/src/IMG_5145.png and /dev/null differ diff --git a/src/IMG_5146.png b/src/IMG_5146.png deleted file mode 100644 index 6c7d2cf..0000000 Binary files a/src/IMG_5146.png and /dev/null differ diff --git a/src/IMG_5147.png b/src/IMG_5147.png deleted file mode 100644 index b5d2cc8..0000000 Binary files a/src/IMG_5147.png and /dev/null differ diff --git a/src/IMG_5148.png b/src/IMG_5148.png deleted file mode 100644 index f4a1f4b..0000000 Binary files a/src/IMG_5148.png and /dev/null differ diff --git a/src/IMG_5149.png b/src/IMG_5149.png deleted file mode 100644 index 733349e..0000000 Binary files a/src/IMG_5149.png and /dev/null differ diff --git a/src/IMG_5150.png b/src/IMG_5150.png deleted file mode 100644 index b3f46d6..0000000 Binary files a/src/IMG_5150.png and /dev/null differ diff --git a/src/IMG_5151.png b/src/IMG_5151.png deleted file mode 100644 index 19aa255..0000000 Binary files a/src/IMG_5151.png and /dev/null differ diff --git a/src/IMG_5152.png b/src/IMG_5152.png deleted file mode 100644 index 439f917..0000000 Binary files a/src/IMG_5152.png and /dev/null differ diff --git a/src/IMG_5153.png b/src/IMG_5153.png deleted file mode 100644 index 33178a4..0000000 Binary files a/src/IMG_5153.png and /dev/null differ diff --git a/src/IMG_5154.png b/src/IMG_5154.png deleted file mode 100644 index 360955a..0000000 Binary files a/src/IMG_5154.png and /dev/null differ diff --git a/src/IMG_5155.png b/src/IMG_5155.png deleted file mode 100644 index d932e59..0000000 Binary files a/src/IMG_5155.png and /dev/null differ diff --git a/src/IMG_5156.png b/src/IMG_5156.png deleted file mode 100644 index aab8636..0000000 Binary files a/src/IMG_5156.png and /dev/null differ diff --git a/src/IMG_5157.png b/src/IMG_5157.png deleted file mode 100644 index c77471c..0000000 Binary files a/src/IMG_5157.png and /dev/null differ diff --git a/src/IMG_5158.png b/src/IMG_5158.png deleted file mode 100644 index bb053ec..0000000 Binary files a/src/IMG_5158.png and /dev/null differ diff --git a/src/IMG_5159.png b/src/IMG_5159.png deleted file mode 100644 index 39838bb..0000000 Binary files a/src/IMG_5159.png and /dev/null differ diff --git a/src/IMG_5160.png b/src/IMG_5160.png deleted file mode 100644 index ca9c5ac..0000000 Binary files a/src/IMG_5160.png and /dev/null differ diff --git a/src/IMG_5161.png b/src/IMG_5161.png deleted file mode 100644 index c624acc..0000000 Binary files a/src/IMG_5161.png and /dev/null differ diff --git a/src/IMG_5162.png b/src/IMG_5162.png deleted file mode 100644 index ef74e9c..0000000 Binary files a/src/IMG_5162.png and /dev/null differ diff --git a/src/IMG_5163.png b/src/IMG_5163.png deleted file mode 100644 index e5a7f74..0000000 Binary files a/src/IMG_5163.png and /dev/null differ diff --git a/src/IMG_5164.png b/src/IMG_5164.png deleted file mode 100644 index 83c4f59..0000000 Binary files a/src/IMG_5164.png and /dev/null differ diff --git a/src/IMG_5165.png b/src/IMG_5165.png deleted file mode 100644 index 14bd574..0000000 Binary files a/src/IMG_5165.png and /dev/null differ diff --git a/src/IMG_5166.png b/src/IMG_5166.png deleted file mode 100644 index a12f000..0000000 Binary files a/src/IMG_5166.png and /dev/null differ diff --git a/src/IMG_5167.png b/src/IMG_5167.png deleted file mode 100644 index d3090e9..0000000 Binary files a/src/IMG_5167.png and /dev/null differ diff --git a/src/IMG_5168.png b/src/IMG_5168.png deleted file mode 100644 index aa8d22f..0000000 Binary files a/src/IMG_5168.png and /dev/null differ diff --git a/src/IMG_5169.png b/src/IMG_5169.png deleted file mode 100644 index 72b63c8..0000000 Binary files a/src/IMG_5169.png and /dev/null differ diff --git a/src/IMG_5170.png b/src/IMG_5170.png deleted file mode 100644 index f69dece..0000000 Binary files a/src/IMG_5170.png and /dev/null differ diff --git a/src/IMG_5171.png b/src/IMG_5171.png deleted file mode 100644 index 9408a3e..0000000 Binary files a/src/IMG_5171.png and /dev/null differ diff --git a/src/IMG_5172.png b/src/IMG_5172.png deleted file mode 100644 index c4aa713..0000000 Binary files a/src/IMG_5172.png and /dev/null differ diff --git a/src/IMG_5173.png b/src/IMG_5173.png deleted file mode 100644 index 6f953d4..0000000 Binary files a/src/IMG_5173.png and /dev/null differ diff --git a/src/IMG_5174.png b/src/IMG_5174.png deleted file mode 100644 index 9da7b7f..0000000 Binary files a/src/IMG_5174.png and /dev/null differ diff --git a/src/IMG_5175.png b/src/IMG_5175.png deleted file mode 100644 index 248d411..0000000 Binary files a/src/IMG_5175.png and /dev/null differ diff --git a/src/IMG_5176.png b/src/IMG_5176.png deleted file mode 100644 index 699c559..0000000 Binary files a/src/IMG_5176.png and /dev/null differ diff --git a/src/IMG_5177.png b/src/IMG_5177.png deleted file mode 100644 index 5509e1b..0000000 Binary files a/src/IMG_5177.png and /dev/null differ diff --git a/src/IMG_5178.png b/src/IMG_5178.png deleted file mode 100644 index aadd932..0000000 Binary files a/src/IMG_5178.png and /dev/null differ diff --git a/src/IMG_5179.png b/src/IMG_5179.png deleted file mode 100644 index d6b45df..0000000 Binary files a/src/IMG_5179.png and /dev/null differ diff --git a/src/IMG_5180.png b/src/IMG_5180.png deleted file mode 100644 index 10f07a1..0000000 Binary files a/src/IMG_5180.png and /dev/null differ diff --git a/src/IMG_5181.png b/src/IMG_5181.png deleted file mode 100644 index 35ecb02..0000000 Binary files a/src/IMG_5181.png and /dev/null differ diff --git a/src/IMG_5182.png b/src/IMG_5182.png deleted file mode 100644 index ae9f736..0000000 Binary files a/src/IMG_5182.png and /dev/null differ diff --git a/src/IMG_5183.png b/src/IMG_5183.png deleted file mode 100644 index add7018..0000000 Binary files a/src/IMG_5183.png and /dev/null differ diff --git a/src/IMG_5184.png b/src/IMG_5184.png deleted file mode 100644 index c46240f..0000000 Binary files a/src/IMG_5184.png and /dev/null differ diff --git a/src/IMG_5185.png b/src/IMG_5185.png deleted file mode 100644 index 4d91969..0000000 Binary files a/src/IMG_5185.png and /dev/null differ diff --git a/src/IMG_5186.png b/src/IMG_5186.png deleted file mode 100644 index e8891e3..0000000 Binary files a/src/IMG_5186.png and /dev/null differ diff --git a/src/IMG_5187.png b/src/IMG_5187.png deleted file mode 100644 index 5029413..0000000 Binary files a/src/IMG_5187.png and /dev/null differ diff --git a/src/IMG_5188.png b/src/IMG_5188.png deleted file mode 100644 index 76a5ea4..0000000 Binary files a/src/IMG_5188.png and /dev/null differ diff --git a/src/IMG_5189.png b/src/IMG_5189.png deleted file mode 100644 index c5759e8..0000000 Binary files a/src/IMG_5189.png and /dev/null differ diff --git a/src/IMG_5190.png b/src/IMG_5190.png deleted file mode 100644 index e58e72b..0000000 Binary files a/src/IMG_5190.png and /dev/null differ diff --git a/tmp/all-processed-edited.txt b/tmp/all-processed-edited.txt deleted file mode 100644 index 6046d2b..0000000 --- a/tmp/all-processed-edited.txt +++ /dev/null @@ -1,1628 +0,0 @@ -Pentacity Campaign Notes -======================== - -Ever Church ------------ - -Swampy woods - fruit trees orchards - -Day 1 ------ - -- Winter - 1 orchard has trees in bloom - [unclear] buzzing - bee pollinating and enabling trees to live - slightly bigger than normal bees. -- dark bark, blue leaves, red fruit (deep) -- Town - mix of light and dark woods. -Population 3k No visible district - larger manor house in centre. - -Cider inn, cider. Beeswaxed floor, a nice small half elf playing a lute, much is half elf and human family resemblance Father Burnun - prize fighter half elf - Gelissa * - -- Box: -- Baz - Invar -greying hair - paladin looking, did not get the plate. Leonard Dirk politely - -- Shaun - Geldrin (the mighty) -gnome, wild brown hair glasses with no glass - -- Farmer - old John Thornhollows. -Another 3 pigs gone Vanished - -- 6 missing but only has the ledgers -for 3. Had a group of around 30 pigs? - -- 3 daughters: Annabel, Isabelle, Cumberella -- 5 keys on the bar - but changed to 4 and no idea -how it changed. - -Register with Earl - ? mercenaries. - -Pig's daughter keep best books, 1g each to go look. Shepherd maybe missing some sheep. - -- Bess - cat missing but no rats recently either. -Rats missing too? - -Last summer built a hostel - house all the homeless people, but not enough for homeless so letting out. Inn's not happy. - -Go to Earl - half-orc (crunch looking), black clothing covered with birds. Geese missing. - -- Butcher - serving new mushroom burgers since meat not coming in. -- Woman - out of town come to find husband, come from Albec for work, no one seen him, was putting up fences at a farm. -Malcolm Donovan - sent to jailer - birth mark on back of right hand. - -- Apply for poverty tax - eligible - slides 2g over to her for the anti-tax. -Funds from the hostel go to the anti-tax since wife left him - going to disappear. - -- Census - in spring - 3c for the number, -payable in the morning, ask half elf. - -- No trouble in town. -- Bushhunter - registered mercenary. -- Last 2 weeks: -Bushhunter came to town 2 weeks ago. Winter apple trees started to fruit. - -Last 3rd Moon was 1 week ago. - -- Invar - delivered weapons but no militia? -Order was put in a few months ago. About 5 left. Earl downsizing. - -- 20 weapons, 10 armour. -Can't remember any of the old militia. Go to jail and talk to sheriff for current militia forgetting names. - -- Bushhunter - had tubes and pipes. -Used to do a lot of swords. - -Jail - -- Now believes should get a package from a crazy haired gnome. -- Location changed. Used to be where hostel used to be. -- 2 empty cells. -- Laws - big scar over her eye. -- Her, sheriff and other 2 deputies (Bob). -- 11 years, always something so old there isn't anything. -- No reports of people missing. -- Home theft week ago. -- Bushhunter doing a sale of giant bugs in frames, last sale 6 days ago. -- Shepherd had new fence? Yes. -Terry left town - 2 months ago Johnjaw passed away Abo. arrested - -- Ralfeck - Buckworth somewhere -None left in town - -- 43 used to be hired. -Parch of militia statute charter to have sufficient militia for close to barrier. - -- 1100 militia - 45,000 population. -Due in a month to check; last visited 5 months ago. Nobody remembers Gelissa except Gedrin. Invar remembered for a split second. - -- See one of the people gets up and walks out. -Chase him. Hood drops, face stitched below eye line, mouth missing a row of teeth. Bone splint fingers and split tongue. Has birth mark on right hand - Malcolm. Was a human male - had to use magic for these changes. - -- Guardwell - Terror of the Sands, nightmare of the darkness. -He will consume your soul. - -- Tales of the sphinx who learnt dark magic experimenting on itself. -- Remembered Isabella and that Gelissa said she hadn't arrived. Remembered her again! -Took Malcolm to the jail. Deputy went to get the sheriff - Jeremia. Now remembers 3rd daughter Gelissa. Now remembers homeless people. Makes us deputies - we get badges. Sir Alstir Florent. - -Bar 5th person, human warrior - helping out with us and picked one of the keys and remembered him all the way up to when we went fishing, around the time Dirk saw the rat. - -Gristak Brinson - mayor. - -Day 2 ------ - -Head back to the town hall. - -- Received whole census for John's pig farm, 9:00. -- 5th name on the ledger has been scribbled out. -Claims it was a mistake. - -- Unemployed and holdings worth <50g - anti-tax criteria. -- 3g anti-tax. -Thornhollows farm Census April 4th - -- registered: -wife Sarah 47 John 50 Annabella 18 Isabella 16 Clarabella 14 seeing sheep farmer's son - -Paternal grandmother Bella. - -- 2 sounders of pigs: -- 1x matriarch -- 3x breeding boars -- 2x breeding sows -- 1 has 17 female younglings -other has 21 female younglings No males. - -Paid tax as billed. Farmhouse, 3x orchards, stable, veg garden. - -- 2x outbuildings which back onto a hedged sty. -- Planned employment: 3x hands. -- Grazing rights for area in edge of swamplands. -Walk to Thornhollows farm, past orchards and brewery, 9:45. Farm surrounded by stone hedge. - -Pass 2 ravenhound looking dogs - girl walking with them, black hair, missing from census? Craven dogs, breeding pair, mimicry noise, have puppies. Approaches us - Annabella. - -- Younger sister on the porch. -- 3 puppies on pillows next to grandma. -- Books - everything tallies until about 1 month -ago. Scribbling out and removed without explanation, think there should. Missing 12 pigs in total - should be 57. Records say should be 51 they've recorded. - -- 6 missing over the last 2 weeks: -actually 46. - -- 3 last night, before last -- 3 a week ago. -- Missing pigs went overnight. -Inconsistencies start about the time Sarah left. - -- 45 -Cat is missing too, about 1 month ago (black cat). Nights of disappearances, not locked up at night. - -- Large door to enter the hedged area, looks densely grown. -Confident there is no dig through. Hill giving 4 foot of hedge to get in but no advantage to get out. Dirk finds big divots that look like foot - -- prints - looks like a frog - approx 8 foot frog. -Ravenhounds ribbited at dark. Started a few weeks ago - take the pigs, gruffle hunting. Seem to head to swamp. - -Massive moths, been around for a while. - -- Quest: 100g to clear the frogs. Had 50g so far. -- 6 pigs missing to the frogs as they remember these, but 6 others missing they don't remember. -Go through swamp. Feels like we are being watched. Massive moth appears during the day... Stealth off and get attacked by a frog - killed 2. Find bones that appear to belong to pigs and sheep. - -Back to farmhouse, 16:00. Cleara gives a tonic where we can use hit dice. - -- Potion of recovery. * Succour. -Stay over the night. - -Day 3 ------ - -Head over to sheep farmer. Geldrin accidentally cast a spell sat on Dirk's shoulders. Tore his shoulders apart like Malcolm's wounds. Stop for short rest. Birds circling overhead: goldfinch and starling. - -District lack of sheep at the farm, swamp seems to be trickling into the farms. - -- 30-yearish man appears to be trampled by a herd of sheep. -Looks like some human sized prints, 4x sets. One looks to go to and from the barn. We can investigate - drew crime scene. Hear something trying to break out of the barn. Run to farmhouse; door has been "latched in". Table smashed to pieces, various debris about. Fire looks like it was burnt out yesterday. Upstairs looks old. Double bedroom and 2 sets of singles. Older couple. 1 may match dead man, 1 slightly smaller. - -- Creep over to the barn and see a row of sheep heads - seem unnaturally agitated. Hear unevening bleat. -Breaks out of the barn - massive pile of melted - -- sheep - killed it. -See things at barn and felt memories being taken - not there when we get to the barn. Found woman in the corner dead. Looks like she lured the creature in the barn and somebody locked them in. Something about Malcolm and Isabella going missing & nobody knowing of them in town but us and Malcolm's wife knows. 11:15. - -- Go to where we found the birds. -Take short rest. Dirk leaves food out and lots of different types of birds appear. Go into swamp to find bird lady. 1 hour in. Swamp hut covered in bird poo, inside branches covered in birds. 80ish woman, blindfolded and mouth sewn shut. Name: "The Chorus". - -Been having dreams - that aren't her own. Her apprentice upped and left. Magic used is clever - changes memories into a convenient - -- form - so knowing Sarah was with The Chorus it -was harder to wipe. On of the Robins' Day they saw her by the hostel. She was distorted... - -Always had large animals in the area. Somebody going through the swamp and using gas which is hurting the birds. Q: Stop the Bushhunter. Direct us to the place where Gedrin has the papers. - -- 2pm leave, 5pm at town. -Back to town through market place. Notice stack of frames with a halfling (suited) with an ogre - barrel with tubes and pipes going to an ear funnel crossbow - talking to a masked person who has a wagon pulled by a "cobra koi" type creature. - -Sneak up behind the ogre and break his equipment. Goggles and let the gas out. Bushhunter will do any form of Taxidermy... - -- Bushhunter promises to hunt out of town. -Request him to do it the other side of the river. - -- Magpie / Xinquiss can be found at the Hatrall great bazaar. 5:15. -Sheriff's office. Very busy in there. Both Jeremia and deputy sheriff armoured up - half-orc and kobold (seem to be militia). Citizens wearing patchwork armour - bear, tabaxi, human, warforged. - -- Been an attack - Walter (sheep farmer). Somebody came in and they had a cult with sheep beast in. -Wife sacrificed herself. - -- Core - warforged - runs Peel and Core, lack of custom in the tavern - noticed wagons at the hostel. -- Earl had a death threat. 500g bounty. -- Tiny guy - forester - Cromwell - noticed wagons past Walter's farm, seem to have stopped there. -Seemed to be people in the wagons. What the mo... 5:30. - -- Jeremia and Drang to protect the Earl. -Hannah and Bob - go to outskirts. - -Gives us a shock dagger. - -- Village is quiet. -- 2x wagons parked outside the hostel - livestock looking. -Smells of pig manure and human faeces. Feel warmth but can't see anything - scratched crab claws. - -Dirk sees rats again and they attack. A pig beast breaks out of one of the carts, killed. Sabotage carts and two people bring 4 horses. Woman in 50's, too many teeth, bigger (Sarah?) - -- Mouth - big. -Young boy 18ish (sheep farmer's boy?) - -- 3x patrons: Crimson, Bovine, Mirthis Fizzleswig. -- 1 shortsword. -- 1 sickle, silver. -Random herbs. Church Tor and church Tarber. 19:00. - -Take the people and cart to the church. People unable to be saved. Boy wasn't dead at first but now dead. - -Brother Fracture - looks at the cart. Remembered all of the militia have been going missing. Want to try to put them all to sleep - Bushhunter! Bushhunter staying out at cider inn/cider. - -Go to see him, 20:00. Has a ring with purple gem and runes, needs identifying. Doing that in trade for use of quaverisior / magical hearing powder, 5000? etc. Go back to cart and use it. Get 5 back into the church. - -- 1 - Gregory, homeless man, restored. Thought he'd been -taken by the militia. Remembers being in the big militia house. - -Park the cart behind the church and horses at the inn. - -Random compass box with a needle that points to the - -- Bushhunter - Geldrin buys it. - -Day 4 19th Dec, 7:00 --------------------- - -- Dirk - flower he got from a tiefling girl is still looking -- new - has a magic enchantment to keep it new. -- Problems with Pylon: -- Seaweed water spirits on the move. -- Fish men other side of barrier (massacre), dumbold south. -- Stone giants missing under new leadership by Hyden Goldensoul, armies too insignificant. -- Cold air over River Rhein, frozen between Snowshore and -Highland edge. - -- Ancient [unclear] from slumber, sages try to interpret omens. -- Gnolls attack restored point, cows missing, bounty on gnoll. -- Blight hits azureside cherry crops - Cereza production halted. -- Isabella Nudegate, 500g reward (missing on route), not searched. -- Grand festival, midwinter - held at Brockville spring next week. -- Peridobit cloaking death spotted 50 miles eastwise of Arrowfeur. -- No mention of pig. -- Pig carcass is missing. Singe marks on the road. Other cart still outside the hostel. 8:20. -- Oric - innkeeper, Cider Inn Cider. -Earl was holding banquet, no other strange goings on. Things go crazy this close to the third. Town crier local news around midday. - -Go to sheriff - walk past Earl's manor house. Sheriff in chair, kobold shuffling papers. Calls Malcolm, half elf steward for the Earl apparently behind the plots to kill the Earl. Seems innocent - no evidence, doing to keep face with the Earl. - -Something off with the Earl. Asked blacksmith to up the production on weapons?! Invar just delivered lots. - -- Steward - didn't know him before; thinks duchesses -of Harthwall sent him after the previous Earl passed. - -- Earl seems to be more extreme in his views: -- 10 show sorrow, -- 10 blacksmith in town. -Books say 27 militia - but only 4 (27 is half required amount). Lawrence Henderson - exchequer, paying wages. 8:00. Ledger given to the scribes at night and back to Earl at 9:00 - half elf comes to scribes with us. - -Pick the lock and get left to Earl's chambers, right for scribes. Ledgers are all copied and old ledgers kept in a different place. Current ledger around 7 days ago. - -Isabella 2 weeks ago with 20 min to search for her in the copies. Malcolm 6 days ago - name scrubbed out in the ledger but not scribbled out in the copies. - -Visiting tourists: cider brewery and tour of woodland. Spoke to the Earl for permission to take a cutting from the Everchurch tree. Staying at beekeeper's. Elfin meadowmaker for the cutting, 2x bodyguard. Half elf remembers Sir Alistair. - -Go see exchequer - half elf portly looking, Lawrence. Ask about militia wages - he starts to panic. Says we need to speak to the sheriff or the Justice. Didn't do anything wrong. Blames the scribes. Set them baron cut down. So he was getting the payment for the other 23. If we keep quiet he will help with more info if needed. Gives us 50g. - -- 8 carts, 16 horses, 60 swords. -Industrial angle: we have 2 extra horses. - -- 58 days left on town finances. -- Safe: -small black velveteen case, gems. - -- 3 treasure chest: gold/copper/silver. -- 2 bags platinum pieces. 6000gp. -Earl's documents - file is empty. Half elf remembers him having documents! Vicmar Danbos? - -Leave to go see Brother Fracture, 9:50. - -- Gregory doing well - not had chance to heal the others, will feed the rest. -- No way of communicating with other churches. -- Go see Gregory: -Remembers Dec started, thinks it was 7th/8th. A few weeks ago according to the information from the town crier. Can't remember anything from then until now. Can remember 2x militia taking him to the hotel, then waking up in the church. Stonejaw and Ralfrex (2 of the missing militia). Other people in the hostel - said it looked like a jail still. Goat lady - Bagnall Lane - and various others. Militia house open for about 1 month - no reason for it to still look like a jail. - -Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. - -Cider inn cider. Homeless in town not really any but remembers Gregory now. Remembers dead goat down Bagnall Lane about 1 week ago. - -Go to hostel. Investigate round side of building. Stone stables, 2 carts and 4x horses in courtyard/stables. Chain on the gates but padlock not locked. Invar breaks wheels. Release horses - I get magic missile. Go into "hostel" to fight them. One is Gelissa. Has a mark on the side of her face. Kill other guy, subdue Gelissa. Some corruption on her mind - Invar restores both her mind and wounds. 11:00. - -- Look around the "hotel". First 2 cells are empty. -Approx 10 people still in the cells - all townsfolk. - -- Invar creates a lock for the back door. 12:30. -Tell Brother Fracture to concentrate on healing militia. He will take Gelissa and militia and cart to the Barracks and use that as a base of operations. - -Decide to go to the Barrier over the "Swamp Laboratory". 13:00. - -- Rest for the evening - on 3rd watch, pigeon lady near the camp. Didn't get a full rest. - -Day 5 20th Dec, 07:15 ---------------------- - -Approach barrier - 2 large carts in view. Go off the path. Tie up the horses in a dip in the land. Go round to approach from the trees. - -Find Cromwell (ranger) quite injured. Looks like the damage Geldrin did to Dirk accidentally. - -- Tracks look like heavy steel boots (Goliath in full platemail? Core?) -- We are about 1/2 way between the shield pylons. -- Carts are empty - large group of people go towards barrier, small group to the swamp. -Follow the tracks - they seem to come back on themselves and head towards town. Looks like just Goliath. We want to put Cromwell safe. - -Decide to follow along shield towards larger group. Hear a big group of people stood next to the barrier. Dirk feels something is watching us. Then is attacked by sheep farmer grubby. Killed it and 11 militia and 8 townsfolk. - -- 8 townsfolk tied up with rope. -Black dog thing disappeared after we killed it. But the maggot stayed. Upon killing this it let out a massive shriek and all the remaining townsfolk started to attack. Located and subdued halfling girl. 08:00. - -Short rest. 09:00 / 09:10. Get horses and Cromwell, head back along the path to find a patch of trees to hide the cart. - -- Long rest. 10:30 / 18:30. -Sword enchanted to add +1 until Invar's next long rest. - -- 2 twins commanding them. 1 went to swamp, other -went to Barrier (we killed it). - -Go towards the swamp - following the tracks of the swamp, tie up horses outside swamp. 20:00. Following 4 individuals - Geldrin's compass is following the same direction. - -Come to a clearing at the barrier with a stone building in the clearing - marble dome is against the barrier with a large telescope through the marble dome & the barrier. Approx 10 rooms. No windows. Tracks lead right up to the building. Built approx - -- 1,000 years ago. -Hear a strange humming - door reverberating. 23:00. Enter building. 2x plinths, 1 empty, 1 that looks like Core dismantled. Head clatters off & rat runs through left door. Go through door by plinths. Left door - library. - -- Shelves - all on one shelf missing "T" shelf in Astronomy. -Guess Trimoons information. - -Picture of a well groomed tiefling holding a baby girl. (The Mage) one of the 5 who made the barrier. - -- Vixago Eros * -Paper work looks recent, drawer has been forced open - diagrams of the stars. Other drawer has rabbit/deer teddy, ring inside, gold band with runes. Ring is similar to Dirk's - sews the teddy back up. - -- Vase - "part of me can be with you while you study, -all my love - Joy" - -- Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring -back Joy" - -- Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" -Paper work - measurements of the tri-moon before the barrier went up and 20 years after. Tri-moon seems to be getting bigger. Pre barrier it was twice the size of the other moons - now it's 4x as big as the other moons. Geldrin takes all of the notes. - -Take an invisible cloak from the hatstand - wear it! Dirk puts Geldrin on the hat stand and his clothes disappear. When things touch hat stand they disappear. - -Day 6 21st Dec, 1:00 --------------------- - -Dagger and handkerchief fall to the floor. - -- Handkerchief - clean "J" in the corner. -Dagger looks like a letter opener. - -- Next room looks like a teleportation circle with a bronze feather on the circle. Like the one the other twin had; seems more powerful than usual. -Cages in the next room (empty). Operating table (empty). Boxes, guillotine rope - lots of blood and decay with sea and sulfur. - -Red door - picture of a young tiefling. Dirk recognises - holding the wolpertinger. Very big portrait. Big table - set but empty. - -Door @ end - kitchen. Well/bucket, doesn't look like it's been used. Pull bucket up, pour water on the floor. Humanoid skull with horns is on the floor. Horns are the same as the race of the girl - 100's of years old. - -Trap door under owlbear rug in office. Door outside office is barred shut. - -Trap door - 4 plinths, all have the suits of Core on them. Geldrin goes down and suits light up, ask for password. "Joy" and "Tri-moon" incorrect. - -- Move onto another room. -Try to get through barricaded door. Trapped door managed to get through. - -Potion room - cauldron looks like it is full of water, fresh and clear. Geldrin calls construct "Powerloader". - -- Another room - stairs and a door which says "maintenance do not enter". Door is trapped with electricity. -Building seems protected by the same thing the barrier is made from. 01:15. - -- Room opposite - bedroom. -Tarnished vase with white flower in. Chair which looks broken and open book on table (seems out of place). Open the chest - pulse paralyses Invar and Geldrin. Construct kills whoever was upstairs (one of them). Killed it. Shocked Invar and Geldrin back from being paralysed. - -- 3 sets of footsteps walk past the room and stop at -guillotine door, come back and go upstairs. - -- 2 come back - seem to be on guard. -Another 2 go to Joy's room and comes back. All 4 killed. - -Short rest completed. Go into Joy's room. Open the toy chest. - -- Mahogany box - lock has a rune on it. Geldrin takes it. -- Wardrobe - 3 empty hangers. Dress she was wearing when Dirk saw her isn't there. -- Bedside table - bottom drawer is trapped. bag, herbs, empty flask, 3x full flasks. -Medical equipment, syringe, crystals, ink, powder, Recognise 2 - Mirthis Fizzleswig and succour, don't recognise the other. - -Quill pen, ink and book, kids diary. - -- Last page: "Felt rough today, don't know how much -longer able to write. Daddy borrowed Mr Snuffles again, Daddy's friend asked about the rings again. Daddy's friend is creepy." - -- Diary - bed bound for length of the diary, -approx 1 year. Robots clean and feed. Daddy's friend (never named) making rings etc, put in box which might help her feel better. Not getting better - terminal. Daddy got upset but no payment could fix it. Trapdoor under the rug, wooden ladder down into a store room, beanbag and toys, seems to be a secret den. Dirk goes to the beanbag. - -- Little girl sat on it gets up and goes out: -"Maybe I should go back up. Daddy can see me in my room." "Feeling better, glad because Daddy's creepy friend is here so I can hide." "He'll find me here, I should go to my hidey place." - -Go upstairs - opens up into a massive dome, huge golden spyglass, crystals around the telescope break the barrier. Someone sat at chair - back to us - - -- 2x 8ft ugly human but wing creatures. Chair person looks like -creature we killed but all the parts are opposite worm and dog like creature with the creature. - -Master asked to observe tri-moon. No desire to fight us as killed his counterpart. Worm is quite useful and rare. - -- 900 years ago someone lived here. -Used the townsfolk to attack the barrier. Give it one of the brass feathers to communicate - -- with the master for an audience: "Vann, if horrid mechanical -hellraiser sphinx creature." - -Garadwal? Where is your army servant? Were those guys instead... do not need to know us. - -- Co-ordinates required for triangulation need -to know where the armies strike next month, so we can have freedom from the dome. Striking the barrier increases the flow and maybe. Flows so the fragment of the moon will destroy grand towers and destroy the dome. - -- It lives outside the barrier. -Might just talking freedom seemed kind of true, & "freedom from the confines of everything" was an odd phrase. - -What would happen if creature didn't obey sphinx? It would find him due to the pact made in darkness? In sorrow? Looked forlorn - to find Joy? Nothing. - -Tri moon is a crystal. - -- Sphinx cast out for practising unsavoury magic. -- Do we wish to join him? -He is one cell - trying to find two locations to attack. - -- All agree to clobber. -- Kill them all. Worm thing dead, think it has mind control powers. -Papers on table - calculus and notes on the Tri moon. Books on biology, incurable diseases etc. Book on the effects of poison - slowbane - acts like heavy metal - symptoms match Joy's diary. I wrote a paper on it - very rare because people can't make it but turns up in the black market. - -Shield pylon city sometimes get a similar sickness being investigated. Very rare and takes a lot to take effect, possibly same colour as the shield crystal. People get sick and come to Goldenswell & start to get better so not really looked into much. Pile of goods - spices, wine, cherries, parchment, platinum, gems, silk. Saja digel / fire from azureside - have a blight. Copper Dodecahedron (magical). - -Invar identifies Dodecahedron - spell facts! - -- 21st Dec, Day 6 still. -Geldrin goes to sleep in Joy's room and realises the lamp is a gem. 3:30. Long rest level up. 12:00. - -Chest itself is magical - designed to cast paralysis if somebody other than him opens it. Invar tries to identify it - very magical chest. - -Check out the skull in the kitchen - has a deformity in the back of the skull and looks a year younger than Joy - about 7, possibly 1,000 years old. - -Well goes down about 50ft, water down there. Look for information in the library - built at the same time as the barrier (in tandem), not as mainly back then. Was put here to observe the moon, designed specially. Caverns underneath the area found & built here for this purpose. Summoning circle was connected to different towns and cities to get building materials then supplies after observatory was built. - -- Send message to Bushhunter: -- townsfolk have memories -- creatures slain -- at observatory -- message from Geldrin for Grand Towers wizard Brownmitty -Waterwise, go to check maintenance area - disarm door. Barrier is directed locally around the observatory. Found a really old blanket and small pillow - really decayed. Possibly Joy's other hiding place. Find a trap door - locked but no way to pick. Handle feels hollow. Geldrin used shield crystal to open. - -Stone steps into darkness - down very far. - -- 5 lights with ends in a door painted with white flowers. -Air is filled with solemn music in the cavern. Water going through barrier fizzes. River bank has a little shrine, 6 grave stones all marked "Joy", all have the everlasting flowers on. One has been disturbed. - -- Joy - died in chamber. -- Joy - 3 years old, lung infection. -- Joy - 2 1/2, unknown complications. -- Joy - 5 years old - nothing written. -- Joy - 9 years old - died from poisoning. -- Joy - 7 years old, birth defect - bones left in the -open and raided. - -Follow the stream - quite rocky and roots. Mushrooms/mildew. Mushrooms get bigger, much bigger than they should be. - -- 15-20 mins of walking - everything is bigger than it should be. -Lead out to a cave entrance. Everything seems much bigger than it should be; everything seems to get bigger towards a point. Massive butterfly flies past. 13:30. - -Get to a lake, massive lily pads and frogs, with massive flying sparrow. Something in the lake seems magical (centre). Put tris into the lake, nothing happens. 14:00. Geldrin attempts to raft to the middle but falls off and is rescued by me. Give up on the lake for now as don't have anything to get the magical thing in the middle. Back at the observatory, keep going round. Atriose the maintenance area - where we think front door is, it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. Keep going round and original entrance isn't there. - -(Earthwise) Bed at earthwise changed to a flower bed and barrier split isn't there. - -(Firewise) No trapdoor but instead 2x statues 1/4 of the way down each wall. - -- Throngore - huge muscular, 2 arms, 4 legs, 2 horns. -Left and dark gold; crab claws; taloned human-like hands; flame, like skin. God of destruction and decay. - -- Igraine - pregnant elfin woman, rose and scythe in hands, -goddess of life and harvest (Alabaster stone). - -(Airwise) - Wall like it would have been the door but there wasn't a corridor at the door to account for it. Go back on ourselves - statues same. - -(Earthwise) Flowers dead now. Invar goes round airwise to statues and back dead, goes back round and shouts for us to come round but we don't hear him. - -(Airwise) - runes are bleeding and seem different. Demon magic shit. Blood hurts a little bit when touched. Geldrin copies them. Invar gets a bowl - checks its acidity. Tiny bit acidic, seems to be real blood. - -(Firewise) - Trapdoor is closed - we left it open. This one is fully metal. Same lock as the other one. Metal ladder going down to a metal floor, all metal. Around exterior of the room are 8 glass chambers, - -- 6 empty, 2 viscous liquid with something in it. -Books next to it. It is a non-description human statue without genitals, with no set features, with arm out, palm down to the floor. - -Dirk mentioned hanging his coat on it. Geldrin tries a ring and it fits perfectly. Dirk adds his. - -- Diary - seems to be trying to perfect a clone spell, -matches up with the Joys in the graves. Dirk checks in the chamber: something in there. Rings start to glow slightly. 15:30. - -Back up. (Earthwise) - no bed, but barrier split is there. (Waterwise) - door is there and pipes etc. (Airwise) - triangular barrier. (Waterwise) - same place both ways. - -Geldrin manages to hold the book open and copies writing - deciphered as an illusion spell. Takes the book. Front has an eyeball on it. 17:00. - -- Go to look at the moon. -Crack open maiden's claw - good wine. See crystalline refraction of the moon and see a smaller fragment at the front, separate and much closer than the moon. - -- 1/2 way between planet and moon, locked in sync with where the moon is. -Moon is closer - think it will take another 1,000 years. If more magic goes through shield pylons this will speed it up. Hitting it exactly between the pylons - conjunction with some of the issues from town crier (pg 8). Barrier starts flashing and lighting up. Seems to be something attacking it. Moon shard seems to be coming closer with the attacks. Dirk draws boobs on the chest; they disappear after a while. 01:00. - -Day 7 22nd Dec --------------- - -Go back to the cart with the box of copper. Fashion a lock for the front door of the observatory. Take Cromwell and Isabella back to town with carts and horses. Restoration cast on Isabella - seems confident in herself. - -Day 8 23rd Dec --------------- - -Go back to barrier to get remaining people. - -- 8 people left - Chorus was looking after them. 12:00. -Geldrin paints wagon white and we head back to Everchurch. Basilisk reply - "I'll meet you there". Birds follow us back. - -See 6 horses coming from Provith (armoured), Harthwall militia. Have their livery on: stag and dragon rearing up. Arith (male) healer, Hthiman (male), elf (female). - -Few years ago near Ironcroft Firewise, something came through the barrier - Invar was there. Tell them about mind wipe and citizen stealing, lack of militia etc., barrier attacking. They report back to Lady Thyrpe. Healer restores the townsfolk, slightly. One with tentacle arm pulls off and left with stump. - -Day 9 24th Dec, 13:00 ---------------------- - -Arrive back in Everchurch - streets seem busy and panicky, talking about missing people and odd faces. Go to see Brother Fracture - people being reunited with loved ones, and healing happening. - -Earl has gone missing - sheriff taken over and called for help. Core made it back to town - locked himself in the pub with Mr Peel looking after him. Earl disappeared when memories came back. Set a cabin up at half way point. Harthwall ladies request a meeting with us (they get told we were heading to Seaweed). - -Drop Isabella at Cider Inn Cider. - -- Go to see Core - lady gets Mr Peel instead. -Core is ok, will need further repairs. Came to town from earthwise, only spoke to say "Core da". Geldrin thinks he tried to say "core damaged". Go to see Core. Sat motionless in a chair. Peel thinks he needs more crystal, a repaired Core came in the post 1 day after Core arrived. One word on it: "GUILT". Not addressed to Peel. Pub been open for 5 years. "The Guilt" - was the Earl of Brookville Springs. - -Back to Cider Inn Cider, take rooms and have baths. - -- Basilisk - find Groundhog, give coin - old grand tower penny, -doesn't like that we donated the coin to the church (1,000 year old coin). Keep on good side of mage Justicars in Seaweed. Very structured town. - -Eat and recover. 17:00. Back to see Brother Fracture. Basilisk brought the coin - he had 10 left, brought for 1g. - -Day 10 25th Dec ---------------- - -Get up and on the road with Isabella. Get towards a day's travel and see a 4 storey building - trading post inn, "The Wayward Arms". Merfolk on the sign. Get Red taken for the horses. - -Some play is taking place on the stage. - -- 11 o'clock, rooms ready, 6am out. -Extended sleep till 8. Left stairs, 2nd floor. Timothy served us. Elven lady comes on stage and sings. - -- 2 ruffians (half elf) enter pub, ramshackle armour, -have a killer air about them. Sit down and open a bag on the table. - -- 2 halflings enter, seem to be a couple and sit at -last table by the door. Somebody brings a giant moth picture down the stairs and hangs it up. 22:00. Half elves look at clock. Staff move people and pull tables together - setting up for Mirth?!? Hear music. People rush over to the gathered tables (inc halflings). Mirth, halfling, enters dressed as a ringmaster type (smarmy), - -- claps his hands and things appear on tables: -pastries, wine, bottles etc. General store? Famous alchemist (Mirth's Fizzleswig). - -- Back here in 3 days * -Brookville Springs next. - -Yadris and Yadrin (half elves) - Dirk overhears "taking my mind off tomorrow". Sent to investigate - problem solvers, didn't say what they were solving. Work for a lady, already up in her room. - -Day 11 26th Dec ---------------- - -Morning announcements! - -- Penta city states high alert due to attack on barrier. -Justicars reporting to major settlements. - -- Shields of the Accord report army moving Airwise, led by Baron. -- Loggers at Pine Springs missing. -- Heavy blizzards caused travel to Rimewatch impossible, scholars trapped. -- Goliaths of Firewise deserts seeking refuge in monstrosity pierced the barrier. Colleges deny possibility. -Dunenseed and Sandstorm; creatures of Air led by 6 armed - -- Borsvack report gnoll activity. -- Break-in at Riversmeet menagerie. Black market confiscations and 50g fine. -- Everchurch's villainous Earl ousted by sheriff & brave deputies. Nefarious activities thwarted. -Restoration under way. - -- Hartswell and Goldenswell armies clash with giant roam Firewise of Hylden. -Head to Seaward. Perfect circles of houses with a coliseum type building in the middle - used for horse and dog races etc. - -Airwise path coming into the city - wagons going back and forth filled with the marble type material used for the buildings and roads. Pylon outside of the main walls of the city. Population: elves / dwarves / gnomes. Park the cart (Paynes horsebreeder), 21:00. Go to coliseum - midday tomorrow. Forge charger race. - -- Inn - The Rotund Rooster, Tiffany. -Roads closed due to winter so no ice. Don't have fresh water - have to order it in. Marble type material with dark blue vein effect. Seaward run by stonemasons guild - elf. Nearest inn for a room - Water by Earth Waterwise or Night Candle. Road 7, 3 rings inn. - -Water elementals - rumours are they can walk through barrier. Some alterations with the council - collective working as one. Water problem has been in the last 20 years. - -- Chunky chicken cooker - sponsored by Rotund Rooster. -Redesigned as used to be a griffin - favourite. - -- Payneful Gamble - bad at start time. -- Thunderbelch - name. -Inn attacked by water elementals? Works at the cliffs. "No one else has been attacked." - -- Charge mysterious owner, maybe an outside duke or Earl. -- Halfling asks Invar if we have any skulls. Green skin goblin for his master, not allowed to say from round here (really). -Pays well for clever people skulls. - -Go to Night Candle - Candle lit - plush furnishing. Reason for the barrier was to keep the elementals out, but rumour is they can walk through. - -Goblin peers into Dirk's room @ 3am. - -Day 12 27th Dec ---------------- - -Head to shield pylon - pylon is like a gold ring with the crystal set in the claw and runes around it. 7:00. - -- 2 guards outside the keep. -- Rumour - walking through chicken farm at night. -Barrier flickers for about 1 sec - happens often, comes from Dombold Castle? but only for the last few weeks. Only notice near to pylon. Commotion at temple - guards carrying female elf out of the temple. Arrest warrant, public indecency & corruption. Cross temple with vast archways, four doors, circular altar in the middle. 08:00. - -- Priest/Council fabricated some charges - thinks -Architect using dark magic to make himself smarter. Architect worships light gods? Alutha on his left femur, "Ilmen Thion". - -Council OK. - -- Issues - barrier and water elementals. -Row 1, ring 3 from centre (public forum), meet Thursday @ midday, 4 hrs. Representatives Monday/Friday. - -Place bets - The Big Bad Beauty. My missing hangover - 2 runs, from another world, - -- 2 guys acting as a shell company for the Guilt. -Races 4/1 odds on all - The truffle hunter. - -Hear a yelp from the side street - tabaxi has following us (goblin) - tells me to stop letting him follow us and gives me a piece of paper. Goblin will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Mainly house - rat droppings etc. He has 3 skulls, will meet his master when he has 5. - -- 5 silver for skull. -- Maybe cadavers? -- Go back to inn via a temple to see if we can locate skulls. -Fire temple - war, justice and hunt. - -- 3 people in congregation listening to priest recite poetry -about battle against Soot the dragon. Congregation pick up wooden swords and start practicing. - -- Brother Cashew - his problems in town: -- Water elementals not killing, but heard town deputies found drowned near cliffs with fresh water. -- Rivers and lakes in 10 miles are bad, previously got from wells & then gradually went bad. -- Want to check the skulls for the water differences (trying to obtain some for Scum). 50 years - coughing sickness, no signs of damage other than burning - see some malnourishment at early age. 25ish - signs of damage to vertebrae, stabbed, nothing obvious. -Public records will be available: Town hall, 4th ring waterwise. Back to inn for Isabella. 10:00. - -Arena vibes in the city. People really finely dressed. Sit in section C. Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. Race 2 bet - 5s, Wove's gravy, 5/1 - lost. Race 3 - 5s, The galloping salesman - lost. Race 4 - 5s, In it for the sugar, 3/1 - lost. - -- Race 5 already bet: -Sphinx style - stonemasons guild. - -- Unicorn - first place worker, forever 1st. -- Horse - Payne horsebreeder. -- Gryphon/chicken - Rotund Rooster rooster / chunky chicken. -- Nightmare - on hire, Night Candle Inn. -Win 9g. Wooden barrel - Bud barrel makers - Big Bad Beauty. - -- Gryphon/cow? - My Missing Hangover. -Race: Truffle Hunter wins! mice. - -Town almost finished - walls up to strength. Water problem too - looking to sort. Worrying rumours about members of the council refer to forums. Odd out of place formal announcement. - -Go find Isabella's friends. Knock and door swings open - middle class house. Blood on the floor of the parlour. - -- 2 halflings hanging from the ceiling by their feet. -Male intestines over the floor (pattern?). Female looking at us but body upside down and face is right way. - -- Suspect someone has done a divination spell using the intestines. -- Not been dead long, but not warm. -- Front door broken open - engineered force. -- Physically kicked over candelabra. -- Movement but nothing showing a struggle. -- No active magic. Divination was used and same type as used at Everchurch. -Hear heavy wing beats - gargoyle, 6ft, looks like it is made of clay - not usual in town. Isabella says it's from her aunt (family guardians). Drops bag, sopat, and flies off with Isabella. - -Militia come to see what is going on. Direct inside and they take us to see the council. 17:00. Store weapons in a chest before going in, also my medic bag. - -- Elementarium - elf. -Admits pylon is being interfered with. Needs Justicar gone - requests us to look into the pylon. Justicar has ulterior motives: get access to shield pylon. - -- 2000g if we keep the information to ourselves. -Get 500g now to rest on completion, solve or information to help solve. Extra for water elementals - 200g each. - -- Flickers - 5 mins to 2-3 hours, only from sea to Seaward -& nothing from Everchard direction or Dunbold Castle. Also state nothing is coming their way. - -- Started approx 3 weeks ago, keeps log of it. -- Saw tri-moon barrier attacks; they were different. -- Halfings suspect pirate - captain of ship allegedly has crew but nobody has seen them. People go missing and turn up dead & magically disfigured. Human/merfolk, has a beard and makes possibly rodent-style magic. -- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. -She will help us. - -- Water spirits have usually made it through; more are making it through now along with the other elements. -- Try to keep body count low. 18:00. -Retrieve weapons. Sort horses - 1 day paid. Get rooms at the Scarred Cliff. 19:00. Go to barrier. Guards show us around. - -- Gherion - sage on duty at the moment - gives us -the book to view. - -- Time and duration of the flicker: -- 2 weeks - getting worse, increasing frequency. -Longest 3 secs, very random. Approx 9am a bout of outages. None around midnight. Clam Clock in the home for quarrymen. - -- Don't know how far the flickering goes between -Seaward and Dunbold Castle. - -- Happens towards the pylon, crackling in a horizontal pattern and doesn't go past the pylon. -Crystal has thousands of tiny runes all around it. None of the runes seem to have been tampered with. Crystal is very clean. - -- Meteorites sometimes come down. -Geldrin touches the barrier with his crystal shard & it goes crazy. Guard said it seems like the flickering but more intense and didn't go as far. - -- Justicar - just checked the books and the crystal with -a eye glass. Peridot Queen. - -- Iaxxon - guardsman - guarding quarry, water elementals -rushed past him like he was in the way not attacking him. - -- Sleep - get horses and leave for quarry. - -Day 13 28th Dec ---------------- - -Follow barrier - see ripples, seem worse the further away we get. Duration and frequency don't change. Pylon seems to be bringing it back under control. - -Ground is very dry and loose - not many plants. Get to a quiet point - see a horse in the distance coming towards us. Green, tall elven woman, black hair, looks very, very extravagant (Peridot Queen). Strokes my face and joins us towards the cliffs. - -- Worried when she looks at Geldrin. -- She's seen all 5 pylons. -- Made it to the cliffcutter town. Murky, dwarves and gnomes. -- Barrier problem seems to originate by the cliff. -Track towards the barrier by the cliff. 21:00. - -- Cliffs are sheer drops with rifts and barriers. -- Water is choppy and quite dangerous. -- Recently cutting close to the barrier. -- Break into a tool shed for the night. -Wind picks up outside for a moment. - -- Barrier around the cliffs is the emanating point, about 20 mins away. -- Not much wildlife around here. 23:00. -Morning wave sounds are getting louder - Peridot goes, and 2x sea creatures rushing up the sides of the cliff. - -Day 14 29th Dec, 06:00 ----------------------- - -Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. - -Peridot Queen arrives - has wings, appearance of an elf. Geldrin, Invar and Peridot Queen go down in a lift right next to the barrier (1 meter away). Mine shaft with some wooden structure beams, branches off away from barrier and parallel. 08:00. Further down, wooden wall constructed saying "danger of collapse". Hear creature. Man stood there, human with scar, pushing a plank back into the wall. Peridot Queen pays him one of the old copper coins. - -Transforms into a green dragon. Incident a few days ago came, 30 years not had any problems until now. Beasts like bulls shot up from disturbed part, towards the wilderness, shrieking like a banshee. Gnome says "smell like candy and has legs" probably lies. On dwarf has barrier duty and found a small crystal on last duty. - -Fly out of the shaft, and Aliana and Dirk see a shape. 8:15. See a group of miners, a dressed differently human comes over to them and points to us. Human walks off towards the barrier. - -- The dwarves then attack us: 4x dwarves and 1x gnome. -Gnome throws a blue rock on the floor. A small elemental comes out and attacks Geldrin (possible spell effect). - -Manage to knock one out and the guards come over - -- & bring him round. He says: -"He's coming, Terror of the Sands is coming for you all." Guard knocks him back out. - -Guards take him back to town. Private Burke wants us to visit the station before we leave. All have 5g and old copper coin. Gnome has two other blue crystals. 8:50. - -Gets to 9:00, more obvious flickering but nothing obvious. Believe the human may have come through the barrier. The human came from approx where the point of origin is. - -Invisible Joy appears and tells Dirk they are in pain and it burns - asks for Dirk's help. - -- The thing causing the barrier issues? 9:50. -Follow the salt trail from the water elementals. Salt trail thins out but no sign of them. After a time land becomes more lush (approx 7 miles from the barrier) with insects which we didn't see before. 11:00. - -River ends on the cliff and comes off in a waterfall (shallow river). Path ends at the river, about 20 years old. River appears to contain water elementals. - -- Elemental says: -"Pain gone, no hurt me. You come take me like others, take we escape through pain, closest good water." - -Geldrin frees the two in the blue crystals. Elemental wants us to free the rest. Death dome - came through hole made for poison water. Hole hurts, in the sea. Elemental stealers trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. Powers death dome. Garadwal was one with the moon rock but escaped. - -Scaly dragon with web fingers goes through dome - - -- blue/grey colour. One big one with four arms and tridents, -poison water, and Garadwal with tridents. Hole by cliff face at bottom of sea. Occasionally somebody/thing goes down to annoy the crystal. - -Head back to the town to speak to militia, 13:00. - -- Salinas - earth and water - the guy our attacker is talking about. -Soon free like our mother Garadwal - sand, earth and fire. Barrier is enslavement. - -- 8 altogether - soon find hidden lair of oppressors, -used as batteries. - -- Element diagrams: -- Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. -Second diagram includes salt, ice, lightning, smoke, magma, sand. - -- Theories: -- Needs of the many outweigh the needs of the few. -- They tried to destroy the world and got locked up. -- Preemptive locked up. -- Water back: 10 miles down the path from Seaward (firewise), -- 10 miles down the coast from the barrier. -Head back to quarry. 16:00 / 18:00. Door in the lift right next to the barrier. - -- 2 panels missing from the hole. -Passageway descends down behind the wooden panels. Goes down quite a way - has been excavated on purpose, not a mantle seam. Widens out and opens to a real old built wall (1,000 years old). Opens into underground structure. - -- Right old door - sign of aging, handle hurts. -Old gnome walks out, realises we are there. Gives him a coin. "Underbelly?" - truce in place. - -- Get a tour prison: -Down corridors, turn left many times. - -- 6 corners, huge metal door - dragon clearly holding ring. -Go through - see barrier at far wall. Smaller barrier encompassing a massive salt dragon - sweating salt for 20 years into the earth. They are trying to free it. Room was full of odes and ends and copper pylons were there but they removed them. Runes on floor barely visible as covered in salt. Another room has 4x curved copper pylons, removed 20 years ago - dragon was already seeping salt. - -- Keep Justicar out of it down here. -- Down to the left is the original entrance. Go look at it - similar to a room we have seen before in the observatory? Examined in the last 20 years. -Big black dragonborn comes in - Turquoise's boss, not many around. - -- Cult looking for a laboratory. -- Basilisk - there's a laboratory of a similar vein -- 20 miles earthwise along the barrier. -Head back to town. 20:00. Common room - sharing with one other person who hasn't shown up. - -- Message to Basilisk * -He comes to us. Knows little about salt elemental. Black Scales - mercenary group, work for Infestus (black dragon). Basilisk went to check observatory - couldn't open the chest & couldn't get in the golem underground room either. - -- Garadwal: -Prison at lake by lab? - ooze one. Frozen near Rhinewatch - ice one. - -- Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. -Is he an elemental? - -Go speak to Elementarium guy in Seaward. - -Day 15 30th Dec ---------------- - -Head back to Seaward. Follow a caravan of stone back to Seaward. Get to town - raining. 19:00. Need to see Elementarium; actually dressed this time. - -Quasi Elementals - don't have their own plain. Known 8 major plains; light and dark effects to create the 8 main ones. They became their own things and started to fight. Not become that powerful. - -E + W + L: ooze/slime/life - spark of creation. E + W + D: salt - makes water bad and crops won't grow. E + F + L: metal - positive construction. E + F + D: magma - destroys farmland etc. F + A + L: smoke. F + A + D: void - absence of everything, nothingness. A + W + L: ice. A + W + D: storm. - -Where does sand come into this? - -Goes down the trapdoor after talking to us about salt water elementals. Dirk listens - talking to somebody about it. They don't exist. Salt and water are their own things. Pollution. Salt elemental poisoning the water elemental. - -- Dirk - crystals helping the barrier? Elementarium believes it, -but he needs the Justicar to believe it so she leaves. Geldrin to try to sway Grand Towers to get her to leave. Rhonri or Revir might have an obsidian bird to relay a message. Arrange to meet back with him @ 9:30. Dirk asks about Garadwal - he goes down to the chamber and retrieves a dwarf skull and asks it the question about Garadwal. - -The information you seek is not for your kind. He is imprisoned in the prison of the Sands. Brutor Ruby Eye - troublesome being, wizard of great power. - -- Shows us the skull room - he talks to them for information. -What would happen if Garadwal escaped? It would be bad indeed. The barrier would be weakened by the loss of one of the 8. He was the only void they could find. If one was to escape it would be him. Feedback from the destruction of his prison would have damaged the others. - -Geldrin tells him of the tri-moon shard. Brutor knows of the first crack. Envoi was tampering with it for his own means, tampering with the containment device, and if something happened to him it would be bad and cause the crack. Wizards didn't agree of their entrapment but they all agreed Garadwal needed to be contained. Ooze was a good one. Ice and storm were put in the same chamber as land was tricky to be dug. - -Stop leaking? Maybe sigils out of whack. Brutor killed by black dragon. Demi lich - how he was made. Maybe a way to reverse the polarity. - -- Spinal! Brutor's password. -Winter Roses? Envoi's password. - -- Halfling killers. -- 8 things linked to the poles. -- Pirates. -- Elementals. -Received downpayment for our work so far: 200g. 20:30. - -- Put horses into the stables. -- Stay at the Night Candles. - -Day 16 31st Dec ---------------- - -Head to town hall to see Rewi Lovelace - gnome. Room is very messy. Obsidian raven is pulled from a drawer, called Errol (but not really). Justicar causing more problems than solving. Request further evocation spells. - -- Rewi - thinking on how to enhance the pulley system at the cliffs. -Retrieve horses and cart and head earthwise. 10:00. - -- Limit: sis poor? -- Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. -Continue earthwise towards Newhaven. Land starts to get lusher and seems to be at the edge of the salted area. 12:00. Lady at a well - the only freshwater in the area. Others have been boarded up as water is bad. Mayor runs a farm - keeps chickens. Full up water skins. - -- Road out of Newhaven in disrepair. -Outside of town grass dries up again. Town seems to have good water as an anomaly. Not many birds around. Nothing around to indicate a laboratory. Obsidian raven appears - suggests meet up with Justicar and work together, wants our location. Don't give it to him. Flies back to Seaward. - -Keep going to 10 miles away and 1 mile from barrier. Find charred earth - last few days - campfire and rations - cultists? See some tracks, 5-6 people camped. Prints show they are searching for something. Nothing obvious. Follow tracks towards barrier; they stop and we see acid corrosion and blood speckles which look to be swept over. Black dragons have acid. Green is mist. - -Geldrin checks the compass and we follow it about 30ft down. Find weakened signal, see purple, and find 10ft stone walls with a door. Password opens it (Spinal). - -Enter into chamber. 2 golems in dwarf form guard a door. Spinal opens the door. - -- Go left down corridor. -Enter large room - stone benches and lecture seats (seat 20-30 people). Jagged rock horn - representation of Tor. "Tor Protects" written underneath statue. No visible disturbance to the dust. Book on lectern - Book of Ancient Dwarven language on Tor. Head across the corridor - room, same size but only contains teleport circle (one set). Geldrin takes rune number. Dirk finds footprints that have tried to be covered up and lead down the corridor. Fairly recent, could still be around as have gone back on themselves. - -Follow footprints to a closed door. Footprints seem very purposeful. Ruby in the dwarf face releases some chains which open the door. - -- Use my crowbar to hold both of the chains to keep the door open. -Geldrin sets an alarm on the hatch and teleportation circle. - -Go into another door (2nd left from the hatch). Purple glow from the room. Paperwork on the walls of pylons and tower structures. Bubble of shield energy in the middle. Scaled model of the penta city states. Suspended globe of elements at each of the compass points. There is a city Fire Airwise of Lake Azure half way between the lake & Aegis-on-Sands. No sign of any of the prisons or labs on the model. Elements don't move. Teleportation circle activates. Retrieve crowbar and hide in diorama room. - -- 1 person seems to come out and goes to dwarf face door, -to door opposite us, then over to us. Tanned skin gentleman comes in - human, desert style robe, Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. Has found several circles and he is a collector of magical trinkets. Make a deal - he gets all the coin/gold/silver and we get first pick of the treasure. He gets the next, then we get 3 other picks, even split. - -Lounge has a scepter that seems out of place. Dirk takes it and an alarm goes off. All doors are now arcane locked. Go back through dwarf face door. Go left. Mouth appears and tells us traps are active. First door - ten skittles at the end of a lane, poker table and darts board with 3 darts in the 20. Poker table is magical; whole room is magical. Next door totally empty room... Next door - silence spell goes off. Room is full of rows and rows of crystal balls. Memories but we don't know that. - -- Back in the lounge hidden room behind the dwarf portrait: -blank paper and non-wounding dagger. Paper is magical to write special, & silence spell stops. Go back to crystal ball room. Memory of goliaths helping to build grand towers. Find the ball with the most scratched plinth - memory is filled with dread. Acid smell like house, scarred by acid and dwarf skeleton. - -Get one near grand towers ball - see 4 other people in a circle - -- around teleport circle: human (male), elf (female), human (female), -halfling (emo), purple crystal rises up from the circle. Before acid splash, see lounge talking to Envoi, asking about if it's affecting anything. Joy sets off the alarm. Ruby Eye takes the dagger and splatters blood and stops the alarm. - -- Before - fields of white roses. Envoi talking to elven woman from circle. -Joy and dwarven lady next to him. Feel content but forlorn when looking over at Joy and Envoi. - -Male darkish elf next to Envoi being introduced in observatory - tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. Envoi wearing 5 rings! - -Hot Spring - opposite dwarf lady (Brookville Springs), early date, falling in love. - -- Standing in a room in his building: purple dome and copper pylons -with blackness and a shadow. Ask shadow what it thinks. Shadow replies, saying no, not yet; it is trapped and threatens calamity. - -Nice room, intricate vine patterns, elven mage asks about change - nothing. Browning retreated to grand towers. Glad she is here, worried about it - warm secret. Think Browning is going to cover it all up; thinks if people know how it works then they will ruin it. - -- Last one - see him in mirror wearing robes. -Book and chain with staff, looks down under mirror, head on floor, stone opens up showing skull. Puts 2 crystals in chanting and "Tor Protects". - -- Pythus Aleyvarus? Blue dragon. -- Ruby Eye seems to have planned the dome: -- 5 pylons and 5 more around the Grand Towers to make it work. -Early periods where he's protecting towns from elementals. Group all fighting; when it breaks 6 armed rock creature, they all make a pact. - -- Male human points him to a crater with a massive purple rock & Envoi says he will build an observatory to track it. -Brutor says it is what they need. - -- Warring kingdoms - join together to construct everything: -Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. - -- Turning on of the dome at the point of turn on, something flaming bursts through and Browning bursts through the barrier and is attacked. -Room opposite - big engineering astrolathe, seems to be the planet which is a disk, with the moons and their orbits in real time. 15:00. - -- Display shows the date and time - current date 31st December 1011. -Room next to orbs. Protection from Elements spell. Open the door, boulder elements in there and try to get out. Slaves? Made to dig - leave them there. - -Down the corridor. Room same place as calendar room, not locked or trapped. Room is empty, mirror image of calendar room. - -- Opposite to boulder room: -Smaller room - empty aside from picture of moon holes, look like big gem holes. - -- Opposite orbs: -Feel weird opening the door. Glass cabinets in pedestals and shelves with various nick nacks, brass plaques and glass domes over them. - -Curved with flowing water - bottle "Containment taken from Lord Hydranus". Stone at the top 2 are glowing. Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). Magic bounds / magic missile. - -Great sword - stone and bone hilt with steel, dwarven steel, blade in friendship. Sword given by kings of the goliaths. "To the spell ones on the crafting of your big building." - -- Codebook holder - with a book very delicate: -"Book recovered from grand towers upon discovery." - -Celestial dwarf mannequin, ornate green silk dress, gold trim & tiny emeralds along the trim. "Worn by Princess Seline to the Grand Ball." - -- Cushion - small red gem, garnet. -No plaque. Size of the moon holes. Coin press - grand towers pennies. "Press used for souvenir pennies." - -- Jar - eyeball in fluid, "My Eye". -Scrying eye, can scry once per week. - -- Book - sealed not open, made of tan leather and looks unsettling. -Platinum lock. Human teeth are around the edge. "Noctus Corinium Grimoire" - lock looks like it's an addition. - -Plinth wheatleaf - pillow with marble cube radiating yellow glow. "Drixl's Cube, a gift from the golden field halflings." - -- Bottle - wine shaped, "first pressing of Siggerne - midh-iel", -Maiden's dew drink. - -- Ring - looks like Bushhunter ring, ring of protection +1. -"Failed attempt to recreate my stolen ring." - -- Comb - dragonbone and jade, details carved of a forest. -"Gift from the elven princess to my wife. She never got on with it." - -- Scepter - silver, fine golden filigree, white seaward gem in the top. -"Staff gifted by the merfolk of the great sea." - -- Gem writing: -"Time existed before me but history can only begin after my creation." Celestial book - tower seems to be the centre of the world & - -- don't know where it came from. Clues: Geldrin got a vision when reading it, -saw 6 primal elements looking down on the world. - -- Geldrin's alarm goes off - see figures at the end of the corridor: -- 4 burly black dragonborn. They hear alarm. "The alarm's going off, -someone is here" (Draconic). They want us to leave, claim it in the name of their master. Shields have mosquito on it. Create a shield wall and we yank crowbar out. - -- Fight: -- 3 1/2 swords -- 4 shields, mosquito -- 70gp -- 4x tower pennies -Obsidian bird - Errol. - -- Errol - last message was gnome giving our location (Rewi) -to black dragon? - -- Red gem found under plinth under Celestial book: -"The floor of my ship is decorated in equal parts with riches, tools, weapons and love" - games. - -Next room - walls and ceiling are blackened - kitchen. Nothing in the oven. - -- Jar contains gem: -"The rich want it, the poor have it, both will perish if they eat it." Nothing? - right here. Barrel seems magically sealed - rune for the cold beer. Contains a jar with a hand in it. Hand is ruby eyes and has blood which stopped the alarm. - -Next room is warded and locked. - -- Previously empty room is now full of books: control earth elementals, Tor, gems, for spells, wards. -Information on how to construct crystals for magic. - -- Gem inside a book: -"Although I'm not royalty, I'm sometimes a king or queen, and although I never marry I'm only sometimes single." Bed. Summon unseen servant in the elemental room. - -- Gem, Elemental Room: -"In my first part stir creativity and in my full form I store the results." Museum. - -- Gem, Orb room behind an orb: -"You have me today, tomorrow you'll have more. As time passes I become harder to store. I don't take up space and am all in one place. I can bring a tear to your eye or a smile to your face." - -- Memory - orb room. -Memory is: "If you got here you got my message. Only clue is based on the layout of my rooms. When you get inside you'll know what to do." - -- Gem, Calendar room: -"I guard the start of this recipe, just scramble, hidden." Kitchen? - -- Bedroom - seems to have a woman's touch, tapestries, -rugs etc., wardrobe drawers, full length mirror, chair, fireplace. Compartment under the mirror - skull with 2 gem stones rolled up paper in the eye socket behind big gem. If you feel like lived a good life, this is the Denouement (final part, finishing piece). - -- Gem in the other eye: -"They are never together, yet always follow one another. One falls but never breaks and the other breaks but never falls." Calendar. Put all of the gems in the slots and room opens. Purple sphere that doesn't let light through. Void creature? Won't used as it may have been too weak. - -- Seems to be a self contained barrier. -Void creature wants to be let out. - -- The diviner - the one who stole his brother - the twins we killed. -Mechanical trap activates something in the room. Magical trap teleports to the room. - -Pythus takes creepy book and Celestial book. Dirk: sword / scepter of the merfolk. Me: coin press / cube. Invar: ring of protection / potion bottle. Geldrin: spear / eye. - -Pythus gives Geldrin a scroll of teleportation and goes. Geldrin takes eye and scrys on Pythus. Sand stone cavern, pile of gold on top is a blue dragon (serpent-like), reading the skin book full pages made of cured human flesh. Seems to be at the edge of the desert near "Salvation". - -Back to void room. Will tell us what is in their room in exchange for freedom. What is in the room will help release him. Rubyeye wanted to live forever. Went in with elven woman and dark male (Envoi). Just a fragment of the void, but if added to the others can get more powerful but only a tiny bit. - -Inside a key looks like pylons placed against a barrier circle of copper and turn it - talking like barrier isn't active. Pylon for his prison as well as another. Use the ruby to open the door, then destroy it. Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. - -Go through door next to void. - -- 4 plinths - by the door are 4 copper pylons, -look like they would go over rods/force field. - -- 2 metal circles, runes all around (copper). -- 1 - steering wheel size. -- 1 - over a meter, stood upright. -- 3 - dragon skull, Alsafur dog size. -- 4 - book, same lock as on the creepy skin book, -made of leather - unpickable lock. - -Possibly storing one of Envoi's rings - it was under the skull. Skull is one of my kind - Veridian dragonborn, dead for approx 1 thousand years. - -- Envoi's ring: -- a sacrifice made to live eternal, father and daughter. -Book writing around the edge - old dead language. The memories and learning of Atuliane Harthwall. Needs a powerful identity spell to learn the command word to open the lock and book. - -Mosquitos, woodlice and moth are now around. Rain storm. Void will help as long as he is not detained. - -- Lightning strike is seen although underground. -Try to let void out. Push pylons against his dome - opposite pylons seem to switch it off very slightly. Ring by the dome turned and attracts to the pylon. One full turn releases the dome in that quadrant. - -Void releases a circle of obsidian to control him with. - -- Take his ring and book and small ring. -- Remove gems from the moon face lock. -- Head out and close the initial door behind us. 18:30. -- Massively overcast with the storm. Air is thick with insects: -- moths/mosquitos, ants etc. -Circle of storm 1/2 miles wide, moving unnaturally. Push of barrier looks like 8 massive claws pierce through - black dragon looks to be trying to come through the barrier. He wants the remains of his son - seems to be the skull in the sealed chamber. - -Go back and get it. Missing the side of his face - think Rubyeye did it, but he may have started it by killing his son. Place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. Takes the skull and says we are even (for killing his men). He flies off and Thunderstorm goes with him. - -Head back to Newhaven with the cart. Go to pub - picture of 5 hands together making a star. Silver dragonborn behind the bar, golden rim spectacles, halfling wait staff, tabaxi bar maid. "Gelandril Harthwall" been here 10 years. It's said the 5 wizards used to meet here. - -Sleep. - -Day 17 1st Jan / Tri-moon -------------------------- - -Goblin looking for us - Scum had a message for us. Find Scum as we leave the pub. - -- Apparently warrant for our arrest: -- Treason - conspire against the Towers to break barrier. -- Scum - telling Elementarium to meet us with Ruby Eye skull -(1 mile outside Seaward). - -Sent message via Errol to Grand Towers saying we are going to Everchard to put them off the scent. - -- Message to the Basilisk: arrive at possible meeting point, -waiting for nearly 3 hours. Cart comes off road with a human onboard, don't recognise. Seems suspicious. - -- 1 box contains Grand Towers pennies. -Council ask for him to transport to Fairshaw - The Cart (Garick Blake). Looks like the gnome sent it. - -- Dragon notes: -- Silver - Harthwall. -- Copper - Spruce, white. -- Black - Infestus. -Veridian. - -- Blue - Pythus. -- White - the ancient. -Red? - Soot. - -- Manifest: -- 1 currency - Towers pennies. -- 1 provisions - ash jerky??? -- 2 armaments - spearheads, copper ends, trident heads tipped in copper. -- 1 waterproof papers - reams of enchanted waterproof paper, salt water only. -- 1 tar. -- 1 tools - heavy duty, ship building? -- 1 misc goods. -Should have gone out in 2 days with guards. Invar knocks the driver out. See what looks like Elementarium riding towards us. Gnome seems to be trying to clear the decks. Elementarium doesn't know about the spearheads etc. Wants to set up a meeting with Lady Harthwall. They have a council to discuss security matters within the dome! Gives us the Ruby-Eye skull. - -Jerky bag contains a hemp bag - pungent sickly sweet smell, reminds me of rose spice, but narcotic. - -- Ruby Eye: -Infestus' son - spawn of evil - needed a powerful sacrifice for a friend (Envoi). Salt dragon leaking - worried tampering with the life may have weakened the force. Reinforce the barrier - if we don't weaken the barrier, possible fix by refilling the voids, or safely disable the barrier - turn off with the fail-safe button in Grand Towers. Weird skin book - grimoire Noctus Caerulium - forbidden magic. To stop Tri-moon shard we would need to fully redo the dome. - -- Create a device to repel it but barrier would need to go down to do it. -- Relationship with the merfolk? Fish men, different people, then those invited into the barrier. Great helpers to set up barriers. -- Thinks Browning had something to do with goliath settlement disappearing from the history (must be clues). -Green dragon seems to be residing in the area. - -- White Dragon helped to build the dome. Reds, no blues. -- Elementals liked to attack and this is why the barrier was put up. -- Tower was perfect place but needed more. -- Backup plan for the void elemental stashed in his safe, if not there need to find another. -Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. Tells us to get on the rune. Appear in a lush castle room at Harthwall. Sat at head of table seems to be Lady Harthwall; stood beside is Sister Lady. - -- 4 chairs by the rug. -- Rip in the sky - Basilisk appears with: -Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. Catherine Cole vouches for me Valkarige vouches for Invar - -Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. - -- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. -- small group of like minded to protect the barrier want to maintain stability of the barrier. -News reached them about the fragment. - -Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. - -- Green dragon responsible for destruction of Dirk's homeland. -Rubyeye blamed Dirk's kind for helping the dragons. It's said Verdilun dragon is shacking up with the red dragon. - -- Keeley Curdenbelly's research maybe of use (the "liver" in the desert) -- 1. head to merfolk -- 2. get crystal from the water -- 3. speak to ancient one -We passed off the twins mum. - -Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical - -- leeching elemental prisons -- Garadwal -- void on the loose -- shield crystal in the sea. -World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. - -- Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* -Gave him the coin press and told him the coins in the cart were a create of them. - -Back to our cart. - -- Head down the main road toward Fairshoes. 5:30 -Start hearing birds and animals etc. 10pm Find a place to camp for the night. - -Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. - -Back on the road. Uneventful day heading to Fairshoes. - -Make up camp again. - -Nothing happens. - -Day 18 (Friday) ---------------- - -- 2nd Tan with Finnan -- 16 days until Timnor - -Day 19 (Saturday) ------------------ - -- 3rd Tan -- 15 days until Timnor -- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. -Go through town to the harbor to get a boat. - -- Temperature is oddly warm for this time of year and this close to the sea. -Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. Cabin 17. Figure head is a wooden shield crystal. - -Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. - -Hostess lady chants and brings forth great winds and a storm. - -Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. - -- Merfolk - they've never done that before. -- Pirates - has been attacking people more recently. -- creatures that can petrify others by looking at them. -- 150g if we need to fight. 5g if we don't. -- Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. -- Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. -- Silver Dragonborn - Bard - recruited. -Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. - -Salinus? He calls on Salinus - worm - calls forth salt elementals! - -Kill him and his crew. - -- free passage on any of their ships and 400g -Receive Scimitar +1 - attune for water breathing. Kairibdis' Pistol of Never Loading +1 (D8) noisy. - -Retreat to cabin with a cask of rum. - -Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. - -This is the only town on the Isle. Turtle men seem to be the locals. - -- 3rd road left 3 building - Sailors Rest. -Take a shrine tour - Shrine to the great Turtle. - -- Merfolk - the accordionman - look after the Turtles. -200g life gem. -We stand on the back of The Great Turtle. - -Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. - -Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. - -- Water gets up high on a tri-moon and covers the building. -- Tell the guy about our fight with Kairibdis - Walter. -- Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 -- Takes us there. -Old town in disrepair but one dock looks fairly well maintained and repaired. - -- 3 houses look decent too. -First house closest to us seems to be lit. Creep up to look in. 4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. 1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. - -Both other huts have lights. Furthest one seems to be more secured. One has a conch and calls and says kingly comes now. Wait around for him. - -Water comes back. Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. - -- 11 fish people carrying things. 15 overall. -Something seems to be coming by barnacled sea cows. 10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. - -- 8:30 -- 9:20 -- 10:00 -- Chariot back pulled 10:30 -Creature stops and sniffs as they are being watched, tells them to search for us. - -Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. - -Need all or the plan will not work and he will be cross and he will be worse. - -- Think 6 armed creature will attack our ship for the weapons. -- go back to Turtle Point. 12:00 -Plan to go to Freeport instead of Baytail Accord. - -- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. -- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) -Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. - -- Tell her what happened - 10ft 6 armed thing is an Excellence. -- Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. -Dunhold Cache information. - -Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. - -Recommends to speak to merfolk of Lake Azure for Dirk's city. - -- Shipment - get a small unit. -Sahuagin have one of the conch's (8 in existence) Kiendra's. Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. - -- one of the Merfolk will come with us. -Pact leader Freeport - Tiana. - -Day 20 (Sunday) ---------------- - -- 14th Tan 1012 -- 14 days until Timnor -Stay in the barracks for the night. Dirk has a strange dream about a goliath sitting on a granite throne looking concerned, two females tending to a dwarf, who will live but will lose an eye - -- (Rubyeye), fought well. *changes* Savanna scene: -dancing around a fire with a granite city in the distance. Face in the fire ?Enwi? then Jagg? then disappears. - -Head towards ship. (Merfolk) Guardfree - states his mistress has been working on misdirection. - -- get food brought to our cabin. -- Journey is uneventful luckily. -Oddly a busy bustling city mishmash of styles. Rainbow ship is docked here. - -- Quartermaster loads shipment onto our cart to -take with us. - -Baroness Lavaliliere - head of Freeport. No taxes for trade here. - -- Newspaper: -- Ancient takes flight - left his home for last 1,000 years moving to Snow Sorrow. -- Fighting still going on in the mountains near Highden - good taking a beating. -- paper seems to be propaganda. -Go shopping. - -- Esmerelda - magic item shop. -Go to see Tiana at the Siren and Garter. - -Expecting a group of 40 to help fight Excellence. - -- They are mortal and can be slain. Delights in bossing the mortals around. -- Baroness - seems good but lets people do what they -please. Although can be random with which groups to dispose of. Latest one around a week - -- ago - a group of bound elementals and gems - fire and water. -- another group selling archeological items from desert - Tabaxi awakened etc. -Ceased the goods. - -Go find the Basilisk in a private room. - -- Highden - being attacked by a Fire Excellence. has something in for the dwarves. -Investigated the crater and found an old lab but unable to get in. - -- Friends on the council meeting with the ancient around Snow-sorrow. -- Azureside - reported perodotta and spawn amassing in the area. -- Arabella kidnapped again - targeted attack, faces removed. -- No forces available - zinquiss will meet us at the harbour + 1 other. following her predecessors' ideas. maybe something similar to Lady Harthwall but is not a dragon. -Baroness neutral party, fairly reclusive - -- Told about copper weapons - paper - Maelcolm Jethnes & Earl of Fairport involvement in the shipment. -- Get a dagger from Basilisk. 1 charge for dimension door. 3 charge for teleport spell opens a portal open for 5 seconds. think of the place to go - big enough for a person. 1 recharge per day. -Lesser rift blade - Dagger +1 - 3x charges. - -Harthwall 2nd most Common last name (Browning 1st). Always been a Harthwall in charge of Harthwall. No Records of relative. Very reclusive family who don't appear in public until the coronation ceremony, only seen together to hand over the crown. (possibly disguise self spell) - -- 19:00 -Go back to see Tiana again. get another guard - Guardfree. - -Pirates Pearls Plundered - Icky lower. Poor Gut Refuge - Cheeky Thimble Rugger - -Go out to the cart - Dirk notices the padlock has scratches on it. The scratches look uniform & pattern I recognise but don't know why. Upside down thieves cant - "Drunken Duck" & scratched with claws like mine. change the markings to Everchard. look into parking and Guardfree keeps watch. Darker in Bugbear next to lizardman. - -Head over to the temple to give them the spear. Female half-orc comes to speak to us - hand over the spear and she goes to check it out with others. Donate in exchange for help? Request an audience with the higher power to discuss - won't be here for - -- 3 hours. -- go to get lodgings at the Pirates Pearls Plundered. -- Crab man in charge - icky. -- Baroness grants us an audience right now, young for an elf. -Room is odd - paintings are the predecessors all wearing the same necklace (like a mayor necklace) & lots of jewelry. - -Desert relics - thought maybe they belonged to an old friend - long time ago - Velenth, Cardonald, - -- worked for her before coming here - willingly. -Vote 12 heads who vote who has the ability to uphold a very specific set of ideals. - -Other things taken off the street because she doesn't approve of the cult. - -Will loan some forces - Proviso - she gives us information about a laboratory. Can we get a red gem for her, hunt but not as hard as diamond in the workshop. Gaping hole in the side of the building. - -- Barrier - emergency systems - something else -in there - very young, cheers? she ran. - -- Dragon - rumor to roost in the ruins of -Dirk's old city. The creature in the chamber thing? ?Goa duck? - no. - -Has the code to the circle and the safe code whilst the defenses are up. gives us the lab. - -- Valenth wanted to transfer herself into an object... -- Seems a little shook and guard helps her out. -- 22:00 -Return to temple of Cierra. Huntsman has returned and comes over to us. - -- Huntmaster Thrune. in runes. -Ruby Eye spoke to their church often and interested - -- will provide aid to kill Excellence. -Ruby Eye thinks we might want to get the book back from the blue dragon before she tries to get it, she was Enwi's apprentice. - -- Ruby Eye's best friend wanted to craft herself into some thing and continue in that form. -Spear was a gift from a Huntsman of Cierra but it's actually an arrow and there were 5 of them taken from Cierra's last battlefield. - -Back to Pirates Pearls Plunder. - -- Guardfree - will get his mistress to bring guest shells. -- Try to plan what we are doing. - -Day 21 (Monday) ---------------- - -- 6th Jan -- 13 days until Tri-moon -- We all have dreams that are tinged with cold. -- My dream - in family home, sibling playing happy memories, looked at town hall but looking like a crater but in fact a black hole -- pulling in more buildings. Hear a voice: "Where is he I know you hide him" horrible voice. Panic and turn then wake up (looking for Garduul?) Void! -- Just our room is cold. As the ice melted, a white dragonscale drops from the icicles. -Go look for the Captain for a boat. - -- loan the boat for 100g a day and 500g deposit (125g each). guardsmen 20 (Sergeant has a necklaced emerald glowing when he talks) zinquiss and black dragon born (Wrath). clerics 15 and leader. -Pier 12 - large group merfolk 30 + 2 litters - -- Speak to pack leader Tiana & other leaders gather. -Get 2 guest shells. - -- 10 spare shells. -Sergeant takes our cart to the keep. - -Captain Hween - -Wrath will stay on the other side of the barrier once we get there. - -- Pack leaders: -- Shundra - Turtle Point -- Kiendra - Dunhold Cache -- Tiana - Freeport -- Alana - Riversmeet -Set sail - sea is calm. Water seems clear - no noticeable signs of him yet. - -Merfolk, zinquiss, Wrath, half clerics in the sea with us. - -- Excellence seemed to have come from 80 miles away when we were at the turtle village - so possibly -Dunhold Cache or the smaller islands around. & net Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaw. - -- Wrath (Colin) middle name. when he gets to Blackstone scale. -Request to look for the location of Garaduul - -- Island - pass it and nothing seems to happen. -- Arrive at Fairshaw. -- Boat is ceased upon orders from the Earl, occupants being detained for Treason etc. -Diplomatic mission carrying members of the Pact etc. - -- Suspect the Earl is part of the Cult. -- give zinquiss 200g for 4x healing potions. -- Guards return and tell us to stay on board whilst investigation takes place. -Zinquiss returns with 3 healing and 1x greater healing (distributed). - -- News: -- Highden - Battles not doing well, strengthened by dragon sightings. -- Heartmoor - People falling ill - surgeons deployed (Perodotta?) -- Grand Towers - Justiciars leaving to the 5 points of the penta city states. -- Provinia - locust and mysterious spiritual event where things keep disappearing. -Sword blessed +1. - -Day 22 (Tuesday) ----------------- - -- 6th Jan 1012 -- 12 days to tri-moon. -Get called to the mess hall by Tiana. - -Construction under the water and they have made a gate by raising the crystal up to leave a gap. Fish shamans taking notes on waterproof paper also. Crystal is approx 1m square. Can sense Kiendra but no response possibly unconscious but seems to be in the cavern. - -Split underwater group into two to sort out crystal & also attempt to rescue Kiendra. - -Approach shield crystal in stealth. - -- See - above our field of vision are some sharks who -seem to have spotted us. - -Fight. - -- We overcome and defeat mobs at the crystal site. Kiendra - found and rescued - very weak and tortured. & coin pouches - 112g (give to crew). returning - speak aquan. -Find waterproof paper, 3x dispel magic scrolls (geldrin) Big Boss - Spear glowing dull blue - Doom spear +1 Suit of plate mail - Plate of Hydran +1 resistance to cold. - -- Boat - pretty wounded. attacked - Hunt Master missing. -Other party - Tiana's - dispelled shells and got Half orc priestess on the boat wants to check on the other team for the Huntmaster. Necklace Sergeant wants to come with us. - -Go over and Huntmaster fighting an Excellence both very injured. - -- Deed Excellence! -- 4 mermen -all mermaids - -- 4 clerics -- 6 guardsmen -- Survivors: survive -- Moor up by Dunhold Cache for the night. -Merfolk recover our dead and lay on the - -- deck - Priests oversee and I thank each one for their -help and sacrifice. - -Pull up to the cove - lookout shouts there is a vessel already docked. Chariot with water elementals chained to the boat - Excellence's boat. - -- We row to shore to investigate. -Mother of Pearl named Chariot, no other signs of movement. - -Dirk speaks to elementals and they want to show us where the excellence live, will come with us on the big boat. - -- Take the chariot back with us 8-10kg. -Zinquiss will sell it at an auction in 7 days, have the address for the Freeport auction house. - -Day 23 (Wednesday) ------------------- - -- 7th Jan 1012 -- 11 days to tri-moon. -Go to Excellence lair with Merfolk - Pack leader Alana. - -- Water ebbs and flows like a tide in the underwater cave. -- 20ft long crystalline sculpture of a dragon - base has runes glowing. -- 3 cages and barrels. 1 cage contains a merfolk - but looks different - green not blue. -Alana seems to revive him and takes him back to the ship. - -- Chests seem to be laced so waterproof - contents may not be openable under water. open one and contains white powder which I inhale. Rabbits - whole room turns into a black void. -Bas, Athal - Salamanders - and Arabic writing. White dragon circling around the dome. Two blue eyes in the darkness coming towards me and really cold and back in the room. - -Other cages - in the middle of the cage they see snail with a gleam of metal which is a jeweller's chain attaching it to the cage. Guardseen says the snail is a bad omen - its been drugged. Back to ship. - -- Merfolk - abducted from beyond the barrier, -him, his friend and wife. Woke up one day & they were both gone. Wife is nobility in their pact. (Snewl?) - -Hunt master dispels magic on the snail & a mermaid appears. Empire of their people outside of the barrier captured while on diplomatic mission to the city of Onyx, doesn't trust them because war between them and the Salt elementals. Princess Aquunea. - -- City of the black scales has a "door" into the dome - Infestus can't use it as too big. -Payment to access is a Grand Towers penny. - -Check out the barrels etc. - -- sickly sweet medicinal - potion of magical energy regain 1 slot - 1 hour. -- silk and parchment interleaved - runes. -- 2x white rose powder. Tiana gives us 1,000g. -- metallic censer (incense holding burning device) silver? religious? water god? Censer of Noxia. -Ability to enrage and control water elementals. It's active. - -- Send message to Basilisk. -Arrive back to Freeport - seems very cold. Much colder heading back down to Freeport. ?Rimewalk issues? - -Snowing over the sea, everything very dark and snowy. Guy shouting the End is Nigh - moon is crashing down into the city. Ask him which city and he then "it bothered he dreamt it." - -- 22:00 -Lots of people having dreams. Gnolls attacking a village requested backup from Everchard and Fairshaw. - -- Underwater - mermaids - "big cat with metal wings attacked it." -Happened a few nights ago - same time as ours. - -Head to the Castle to see the Baroness. Necklace is removed from the Sergeant and he just walks off. - -- Mermaids - Having a meeting in 3 days at -Baytail Accord to discuss what happened. We can go. - -The dreams seem to contradict each other, possibly from the Ancient One - so could happen. - -- Huntmaster - going to Grand Towers to speak -to the Hunt Lord. - -- Justiciar in the city. ?Looking for us. -- Baroness gets us into the Drunken Duck - secret in -Air wise from Jewelry District. Written on our padlock, on the cart. Cart still ok in the castle. - -Baroness Master - Valenth Caerduinel. Necklace. Sister is a ring. - -Go to Drunken Duck. All the walls are covered in pillows and ?soundproofing? Red dragonborn - -- 2x tabaxi -Automaton - -- 2x halfling and gnome -- Survivors: clientele -Gave me (Axion) Schnapps from the Brass City! Barman says only the best for the "Little Finger". He's intrigued by why the 3 best members of the Underbelly went on a mission. - -- Tabaxi Whisperers laden with 'Dev'. -Traders 'Keeps' from foot to foot. - -Faint noise through the floorboards, raised voices? Automaton keeps talking about a factory. Wants to know where the labs are. Tell him all by the barrier. Cuts down his search radius... - -- Get a private room to discuss matters. -- Send message via the underbelly to advise we won't be going to Baytail Accord. -- Will go to desert laboratory. diff --git a/tmp/all-processed.txt b/tmp/all-processed.txt deleted file mode 100644 index 4ce9b32..0000000 --- a/tmp/all-processed.txt +++ /dev/null @@ -1,1710 +0,0 @@ -Pentacity Campaign Notes -======================== - -Ever Church ------------ - -Swampy woods - fruit trees orchards - -Day 1 ------ - -- Winter - 1 orchard has trees in bloom - [unclear] buzzing - bee pollinating and enabling trees to live - slightly bigger than normal bees. -- dark bark, blue leaves, red fruit (deep) -- Town - mix of light and dark woods. -Population 3k No visible district - larger manor house in centre. - -Cider inn, cider. Beeswaxed floor, a nice small half elf playing a lute, much is half elf and human family resemblance Father Burnun - prize fighter half elf - Gelissa * - -- Box: -- Baz - Invar -greying hair - paladin looking, did not get the plate. Leonard Dirk politely - -- Shaun - Geblin (the mighty) -gnome, wild brown hair glasses with no glass - -- Farmer - old John Thornhollows. -Another 3 pigs gone Vanished - -- 6 missing but only has the ledgers -for 3. Had a group of around 30 pigs? - -- 3 daughters: Annabel, Isabelle, Cumberella -- 5 keys on the bar - but changed to 4 and no idea -how it changed. - -Register with Earl - ? mercenaries. - -Pig's daughter keep best books, 1g each to go look. Shepherd maybe missing some sheep. - -- Bess - cat missing but no rats recently either. -Rats missing too? - -Last summer built a hostel - house all the homeless people, but not enough for homeless so letting out. Inn's not happy. - -Go to Earl - half-orc (crunch looking), black clothing covered with birds. Geese missing. - -- Butcher - serving new mushroom burgers since meat not coming in. -- Woman - out of town come to find husband, come from Albec for work, no one seen him, was putting up fences at a farm. -Malcolm Donovan - sent to jailer - birth mark on back of right hand. - -- Apply for poverty tax - eligible - slides 2g over to her for the anti-tax. -Funds from the hostel go to the anti-tax since wife left him - going to disappear. - -- Census - in spring - 3c for the number, -payable in the morning, ask half elf. - -- No trouble in town. -- Bushhunter - registered mercenary. -- Last 2 weeks: -Bushhunter came to town 2 weeks ago. Winter apple trees started to fruit. - -Last 3rd Moon was 1 week ago. - -- Invar - delivered weapons but no militia? -Order was put in a few months ago. About 5 left. Earl downsizing. - -- 20 weapons, 10 armour. -Can't remember any of the old militia. Go to jail and talk to sheriff for current militia forgetting names. - -- Bushhunter - had tubes and pipes. -Used to do a lot of swords. - -Jail - -- Now believes should get a package from a crazy haired gnome. -- Location changed. Used to be where hostel used to be. -- 2 empty cells. -- Laws - big scar over her eye. -- Her, sheriff and other 2 deputies (Bob). -- 11 years, always something so old there isn't anything. -- No reports of people missing. -- Home theft week ago. -- Bushhunter doing a sale of giant bugs in frames, last sale 6 days ago. -- Shepherd had new fence? Yes. -Terry left town - 2 months ago Johnjaw passed away Abo. arrested - -- Ralfeck - Buckworth somewhere -None left in town - -- 43 used to be hired. -Parch of militia statute charter to have sufficient militia for close to barrier. - -- 1100 militia - 45,000 population. -Due in a month to check; last visited 5 months ago. - -Nobody remembers Gelissa except Gedrin. Invar remembered for a split second. - -- See one of the people gets up and walks out. -Chase him. Hood drops, face stitched below eye line, mouth missing a row of teeth. Bone splint fingers and split tongue. Has birth mark on right hand - Malcolm. Was a human male - had to use magic for these changes. - -- Guardwell - Terror of the Sands, nightmare of the darkness. -He will consume your soul. - -- Tales of the sphinx who learnt dark magic experimenting on itself. -- Remembered Isabella and that Gelissa said she hadn't arrived. Remembered her again! -Took Malcolm to the jail. Deputy went to get the sheriff - Jeremia. Now remembers 3rd daughter Gelissa. Now remembers homeless people. Makes us deputies - we get badges. Sir Alstir Florent. - -Bar 5th person, human warrior - helping out with us and picked one of the keys and remembered him all the way up to when we went fishing, around the time Dirk saw the rat. - -Gristak Brinson - mayor. - -Day 2 ------ - -Head back to the town hall. - -- Received whole census for John's pig farm, 9:00. -- 5th name on the ledger has been scribbled out. -Claims it was a mistake. - -- Unemployed and holdings worth <50g - anti-tax criteria. -- 3g anti-tax. -Thornhollows farm Census April 4th - -- registered: -wife Sarah 47 John 50 Annabella 18 Isabella 16 Clarabella 14 seeing sheep farmer's son - -Paternal grandmother Bella. - -- 2 sounders of pigs: -- 1x matriarch -- 3x breeding boars -- 2x breeding sows -- 1 has 17 female younglings -other has 21 female younglings No males. - -Paid tax as billed. Farmhouse, 3x orchards, stable, veg garden. - -- 2x outbuildings which back onto a hedged sty. -- Planned employment: 3x hands. -- Grazing rights for area in edge of swamplands. -Walk to Thornhollows farm, past orchards and brewery, 9:45. Farm surrounded by stone hedge. - -Pass 2 ravenhound looking dogs - girl walking with them, black hair, missing from census? Craven dogs, breeding pair, mimicry noise, have puppies. Approaches us - Annabella. - -- Younger sister on the porch. -- 3 puppies on pillows next to grandma. -- Books - everything tallies until about 1 month -ago. Scribbling out and removed without explanation, think there should. Missing 12 pigs in total - should be 57. Records say should be 51 they've recorded. - -- 6 missing over the last 2 weeks: -actually 46. - -- 3 last night, before last -- 3 a week ago. -- Missing pigs went overnight. -Inconsistencies start about the time Sarah left. - -- 45 -Cat is missing too, about 1 month ago (black cat). Nights of disappearances, not locked up at night. - -- Large door to enter the hedged area, looks densely grown. -Confident there is no dig through. Hill giving 4 foot of hedge to get in but no advantage to get out. - -Dirk finds big divots that look like foot - -- prints - looks like a frog - approx 8 foot frog. -Ravenhounds ribbited at dark. Started a few weeks ago - take the pigs, gruffle hunting. Seem to head to swamp. - -Massive moths, been around for a while. - -- Quest: 100g to clear the frogs. Had 50g so far. -- 6 pigs missing to the frogs as they remember these, but 6 others missing they don't remember. -Go through swamp. Feels like we are being watched. Massive moth appears during the day... Stealth off and get attacked by a frog - killed 2. Find bones that appear to belong to pigs and sheep. - -Back to farmhouse, 16:00. Cleara gives a tonic where we can use hit dice. - -- Potion of recovery. * Succour. -Stay over the night. - -Day 3 ------ - -Head over to sheep farmer. Geldrin accidentally cast a spell sat on Dirk's shoulders. Tore his shoulders apart like Malcolm's wounds. Stop for short rest. Birds circling overhead: goldfinch and starling. - -District lack of sheep at the farm, swamp seems to be trickling into the farms. - -- 30-yearish man appears to be trampled by a herd of sheep. -Looks like some human sized prints, 4x sets. One looks to go to and from the barn. We can investigate - drew crime scene. Hear something trying to break out of the barn. Run to farmhouse; door has been "latched in". Table smashed to pieces, various debris about. - -Fire looks like it was burnt out yesterday. Upstairs looks old. Double bedroom and 2 sets of singles. Older couple. 1 may match dead man, 1 slightly smaller. - -- Creep over to the barn and see a row of sheep heads - seem unnaturally agitated. Hear unevening bleat. -Breaks out of the barn - massive pile of melted - -- sheep - killed it. -See things at barn and felt memories being taken - not there when we get to the barn. Found woman in the corner dead. Looks like she lured the creature in the barn and somebody locked them in. Something about Malcolm and Isabella going missing & nobody knowing of them in town but us and Malcolm's wife knows. 11:15. - -- Go to where we found the birds. -Take short rest. Dirk leaves food out and lots of different types of birds appear. Go into swamp to find bird lady. 1 hour in. Swamp hut covered in bird poo, inside branches covered in birds. 80ish woman, blindfolded and mouth sewn shut. Name: "The Chorus". - -Been having dreams - that aren't her own. Her apprentice upped and left. Magic used is clever - changes memories into a convenient - -- form - so knowing Sarah was with The Chorus it -was harder to wipe. On of the Robins' Day they saw her by the hostel. She was distorted... - -Always had large animals in the area. Somebody going through the swamp and using gas which is hurting the birds. Q: Stop the Bushhunter. Direct us to the place where Gedrin has the papers. - -- 2pm leave, 5pm at town. -Back to town through market place. Notice stack of frames with a halfling (suited) with an ogre - barrel with tubes and pipes going to an ear funnel crossbow - talking to a masked person who has a wagon pulled by a "cobra koi" type creature. - -Sneak up behind the ogre and break his equipment. Goggles and let the gas out. - -Bushhunter will do any form of Taxidermy... - -- Bushhunter promises to hunt out of town. -Request him to do it the other side of the river. - -- Magpie / Xinquiss can be found at the Hatrall great bazaar. 5:15. -Sheriff's office. Very busy in there. Both Jeremia and deputy sheriff armoured up - half-orc and kobold (seem to be militia). Citizens wearing patchwork armour - bear, tabaxi, human, warforged. - -- Been an attack - Walter (sheep farmer). Somebody came in and they had a cult with sheep beast in. -Wife sacrificed herself. - -- Core - warforged - runs Peel and Core, lack of custom in the tavern - noticed wagons at the hostel. -- Earl had a death threat. 500g bounty. -- Tiny guy - forester - Cromwell - noticed wagons past Walter's farm, seem to have stopped there. -Seemed to be people in the wagons. What the mo... 5:30. - -- Jeremia and Drang to protect the Earl. -Hannah and Bob - go to outskirts. - -Gives us a shock dagger. - -- Village is quiet. -- 2x wagons parked outside the hostel - livestock looking. -Smells of pig manure and human faeces. Feel warmth but can't see anything - scratched crab claws. - -Dirk sees rats again and they attack. A pig beast breaks out of one of the carts, killed. Sabotage carts and two people bring 4 horses. - -Woman in 50's, too many teeth, bigger (Sarah?) - -- Mouth - big. -Young boy 18ish (sheep farmer's boy?) - -- 3x patrons: Crimson, Bovine, Mirthis Fizzleswig. -- 1 shortsword. -- 1 sickle, silver. -Random herbs. Church Tor and church Tarber. 19:00. - -Take the people and cart to the church. People unable to be saved. Boy wasn't dead at first but now dead. - -Brother Fracture - looks at the cart. Remembered all of the militia have been going missing. Want to try to put them all to sleep - Bushhunter! Bushhunter staying out at cider inn/cider. - -Go to see him, 20:00. Has a ring with purple gem and runes, needs identifying. Doing that in trade for use of quaverisior / magical hearing powder, 5000? etc. Go back to cart and use it. Get 5 back into the church. - -- 1 - Gregory, homeless man, restored. Thought he'd been -taken by the militia. Remembers being in the big militia house. - -Park the cart behind the church and horses at the inn. - -Random compass box with a needle that points to the - -- Bushhunter - Geldrin buys it. - -Day 4 19th Dec, 7:00 --------------------- - -- Dirk - flower he got from a tiefling girl is still looking -- new - has a magic enchantment to keep it new. -- Problems with Pylon: -- Seaweed water spirits on the move. -- Fish men other side of barrier (massacre), dumbold south. -- Stone giants missing under new leadership by Hyden Goldensoul, armies too insignificant. -- Cold air over River Rhein, frozen between Snowshore and -Highland edge. - -- Ancient [unclear] from slumber, sages try to interpret omens. -- Gnolls attack restored point, cows missing, bounty on gnoll. -- Blight hits azureside cherry crops - Cereza production halted. -- Isabella Nudegate, 500g reward (missing on route), not searched. -- Grand festival, midwinter - held at Brockville spring next week. -- Peridobit cloaking death spotted 50 miles eastwise of Arrowfeur. -- No mention of pig. -- Pig carcass is missing. Singe marks on the road. Other cart still outside the hostel. 8:20. -- Oric - innkeeper, Cider Inn Cider. -Earl was holding banquet, no other strange goings on. Things go crazy this close to the third. Town crier local news around midday. - -Go to sheriff - walk past Earl's manor house. Sheriff in chair, kobold shuffling papers. Calls Malcolm, half elf steward for the Earl apparently behind the plots to kill the Earl. Seems innocent - no evidence, doing to keep face with the Earl. - -Something off with the Earl. Asked blacksmith to up the production on weapons?! Invar just delivered lots. - -- Steward - didn't know him before; thinks duchesses -of Harthwall sent him after the previous Earl passed. - -- Earl seems to be more extreme in his views: -- 10 show sorrow, -- 10 blacksmith in town. -Books say 27 militia - but only 4 (27 is half required amount). Lawrence Henderson - exchequer, paying wages. 8:00. Ledger given to the scribes at night and back to Earl at 9:00 - half elf comes to scribes with us. - -Pick the lock and get left to Earl's chambers, right for scribes. Ledgers are all copied and old ledgers kept in a different place. Current ledger around 7 days ago. - -Isabella 2 weeks ago with 20 min to search for her in the copies. Malcolm 6 days ago - name scrubbed out in the ledger but not scribbled out in the copies. - -Visiting tourists: cider brewery and tour of woodland. Spoke to the Earl for permission to take a cutting from the Everchurch tree. Staying at beekeeper's. Elfin meadowmaker for the cutting, 2x bodyguard. - -Half elf remembers Sir Alistair. - -Go see exchequer - half elf portly looking, Lawrence. Ask about militia wages - he starts to panic. Says we need to speak to the sheriff or the Justice. Didn't do anything wrong. Blames the scribes. Set them baron cut down. So he was getting the payment for the other 23. If we keep quiet he will help with more info if needed. Gives us 50g. - -- 8 carts, 16 horses, 60 swords. -Industrial angle: we have 2 extra horses. - -- 58 days left on town finances. -- Safe: -small black velveteen case, gems. - -- 3 treasure chest: gold/copper/silver. -- 2 bags platinum pieces. 6000gp. -Earl's documents - file is empty. Half elf remembers him having documents! Vicmar Danbos? - -Leave to go see Brother Fracture, 9:50. - -- Gregory doing well - not had chance to heal the others, will feed the rest. -- No way of communicating with other churches. -- Go see Gregory: -Remembers Dec started, thinks it was 7th/8th. A few weeks ago according to the information from the town crier. Can't remember anything from then until now. Can remember 2x militia taking him to the hotel, then waking up in the church. Stonejaw and Ralfrex (2 of the missing militia). Other people in the hostel - said it looked like a jail still. Goat lady - Bagnall Lane - and various others. Militia house open for about 1 month - no reason for it to still look like a jail. - -Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. - -Cider inn cider. Homeless in town not really any but remembers Gregory now. Remembers dead goat down Bagnall Lane about 1 week ago. - -Go to hostel. Investigate round side of building. Stone stables, 2 carts and 4x horses in courtyard/stables. Chain on the gates but padlock not locked. Invar breaks wheels. - -Release horses - I get magic missile. Go into "hostel" to fight them. One is Gelissa. Has a mark on the side of her face. Kill other guy, subdue Gelissa. Some corruption on her mind - Invar restores both her mind and wounds. 11:00. - -- Look around the "hotel". First 2 cells are empty. -Approx 10 people still in the cells - all townsfolk. - -- Invar creates a lock for the back door. 12:30. -Tell Brother Fracture to concentrate on healing militia. He will take Gelissa and militia and cart to the Barracks and use that as a base of operations. - -Decide to go to the Barrier over the "Swamp Laboratory". 13:00. - -- Rest for the evening - on 3rd watch, pigeon lady near the camp. Didn't get a full rest. - -Day 5 20th Dec, 07:15 ---------------------- - -Approach barrier - 2 large carts in view. Go off the path. Tie up the horses in a dip in the land. Go round to approach from the trees. - -Find Cromwell (ranger) quite injured. Looks like the damage Geldrin did to Dirk accidentally. - -- Tracks look like heavy steel boots (Goliath in full platemail? Core?) -- We are about 1/2 way between the shield pylons. -- Carts are empty - large group of people go towards barrier, small group to the swamp. -Follow the tracks - they seem to come back on themselves and head towards town. Looks like just Goliath. We want to put Cromwell safe. - -Decide to follow along shield towards larger group. Hear a big group of people stood next to the barrier. - -Dirk feels something is watching us. Then is attacked by sheep farmer grubby. Killed it and 11 militia and 8 townsfolk. - -- 8 townsfolk tied up with rope. -Black dog thing disappeared after we killed it. But the maggot stayed. Upon killing this it let out a massive shriek and all the remaining townsfolk started to attack. Located and subdued halfling girl. 08:00. - -Short rest. 09:00 / 09:10. Get horses and Cromwell, head back along the path to find a patch of trees to hide the cart. - -- Long rest. 10:30 / 18:30. -Sword enchanted to add +1 until Invar's next long rest. - -- 2 twins commanding them. 1 went to swamp, other -went to Barrier (we killed it). - -Go towards the swamp - following the tracks of the swamp, tie up horses outside swamp. 20:00. Following 4 individuals - Geldrin's compass is following the same direction. - -Come to a clearing at the barrier with a stone building in the clearing - marble dome is against the barrier with a large telescope through the marble dome & the barrier. Approx 10 rooms. No windows. Tracks lead right up to the building. Built approx - -- 1,000 years ago. -Hear a strange humming - door reverberating. 23:00. Enter building. 2x plinths, 1 empty, 1 that looks like Core dismantled. Head clatters off & rat runs through left door. Go through door by plinths. - -Left door - library. - -- Shelves - all on one shelf missing "T" shelf in Astronomy. -Guess Trimoons information. - -Picture of a well groomed tiefling holding a baby girl. (The Mage) one of the 5 who made the barrier. - -- Vixago Eros * -Paper work looks recent, drawer has been forced open - diagrams of the stars. Other drawer has rabbit/deer teddy, ring inside, gold band with runes. Ring is similar to Dirk's - sews the teddy back up. - -- Vase - "part of me can be with you while you study, -all my love - Joy" - -- Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring -back Joy" - -- Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" -Paper work - measurements of the tri-moon before the barrier went up and 20 years after. Tri-moon seems to be getting bigger. Pre barrier it was twice the size of the other moons - now it's 4x as big as the other moons. Geldrin takes all of the notes. - -Take an invisible cloak from the hatstand - wear it! Dirk puts Geldrin on the hat stand and his clothes disappear. When things touch hat stand they disappear. - -Day 6 21st Dec, 1:00 --------------------- - -Dagger and handkerchief fall to the floor. - -- Handkerchief - clean "J" in the corner. -Dagger looks like a letter opener. - -- Next room looks like a teleportation circle with a bronze feather on the circle. Like the one the other twin had; seems more powerful than usual. -Cages in the next room (empty). Operating table (empty). Boxes, guillotine rope - lots of blood and decay with sea and sulfur. - -Red door - picture of a young tiefling. Dirk recognises - holding the wolpertinger. Very big portrait. Big table - set but empty. - -Door @ end - kitchen. Well/bucket, doesn't look like it's been used. Pull bucket up, pour water on the floor. Humanoid skull with horns is on the floor. Horns are the same as the race of the girl - 100's of years old. - -Trap door under owlbear rug in office. Door outside office is barred shut. - -Trap door - 4 plinths, all have the suits of Core on them. Geldrin goes down and suits light up, ask for password. "Joy" and "Tri-moon" incorrect. - -- Move onto another room. -Try to get through barricaded door. Trapped door managed to get through. - -Potion room - cauldron looks like it is full of water, fresh and clear. Geldrin calls construct "Powerloader". - -- Another room - stairs and a door which says "maintenance do not enter". Door is trapped with electricity. -Building seems protected by the same thing the barrier is made from. 01:15. - -- Room opposite - bedroom. -Tarnished vase with white flower in. Chair which looks broken and open book on table (seems out of place). Open the chest - pulse paralyses Invar and Geldrin. - -Construct kills whoever was upstairs (one of them). Killed it. Shocked Invar and Geldrin back from being paralysed. - -- 3 sets of footsteps walk past the room and stop at -guillotine door, come back and go upstairs. - -- 2 come back - seem to be on guard. -Another 2 go to Joy's room and comes back. All 4 killed. - -Short rest completed. Go into Joy's room. Open the toy chest. - -- Mahogany box - lock has a rune on it. Geldrin takes it. -- Wardrobe - 3 empty hangers. Dress she was wearing when Dirk saw her isn't there. -- Bedside table - bottom drawer is trapped. bag, herbs, empty flask, 3x full flasks. -Medical equipment, syringe, crystals, ink, powder, Recognise 2 - Mirthis Fizzleswig and succour, don't recognise the other. - -Quill pen, ink and book, kids diary. - -- Last page: "Felt rough today, don't know how much -longer able to write. Daddy borrowed Mr Snuffles again, Daddy's friend asked about the rings again. Daddy's friend is creepy." - -- Diary - bed bound for length of the diary, -approx 1 year. Robots clean and feed. Daddy's friend (never named) making rings etc, put in box which might help her feel better. Not getting better - terminal. Daddy got upset but no payment could fix it. - -Trapdoor under the rug, wooden ladder down into a store room, beanbag and toys, seems to be a secret den. Dirk goes to the beanbag. - -- Little girl sat on it gets up and goes out: -"Maybe I should go back up. Daddy can see me in my room." "Feeling better, glad because Daddy's creepy friend is here so I can hide." "He'll find me here, I should go to my hidey place." - -Go upstairs - opens up into a massive dome, huge golden spyglass, crystals around the telescope break the barrier. Someone sat at chair - back to us - - -- 2x 8ft ugly human but wing creatures. Chair person looks like -creature we killed but all the parts are opposite worm and dog like creature with the creature. - -Master asked to observe tri-moon. No desire to fight us as killed his counterpart. Worm is quite useful and rare. - -- 900 years ago someone lived here. -Used the townsfolk to attack the barrier. Give it one of the brass feathers to communicate - -- with the master for an audience: "Vann, if horrid mechanical -hellraiser sphinx creature." - -Garadwal? Where is your army servant? Were those guys instead... do not need to know us. - -- Co-ordinates required for triangulation need -to know where the armies strike next month, so we can have freedom from the dome. Striking the barrier increases the flow and maybe. - -Flows so the fragment of the moon will destroy grand towers and destroy the dome. - -- It lives outside the barrier. -Might just talking freedom seemed kind of true, & "freedom from the confines of everything" was an odd phrase. - -What would happen if creature didn't obey sphinx? It would find him due to the pact made in darkness? In sorrow? Looked forlorn - to find Joy? Nothing. - -Tri moon is a crystal. - -- Sphinx cast out for practising unsavoury magic. -- Do we wish to join him? -He is one cell - trying to find two locations to attack. - -- All agree to clobber. -- Kill them all. Worm thing dead, think it has mind control powers. -Papers on table - calculus and notes on the Tri moon. Books on biology, incurable diseases etc. Book on the effects of poison - slowbane - acts like heavy metal - symptoms match Joy's diary. I wrote a paper on it - very rare because people can't make it but turns up in the black market. - -Shield pylon city sometimes get a similar sickness being investigated. Very rare and takes a lot to take effect, possibly same colour as the shield crystal. People get sick and come to Goldenswell & start to get better so not really looked into much. - -Pile of goods - spices, wine, cherries, parchment, platinum, gems, silk. Saja digel / fire from azureside - have a blight. Copper Dodecahedron (magical). - -Invar identifies Dodecahedron - spell facts! - -- 21st Dec, Day 6 still. -Geldrin goes to sleep in Joy's room and realises the lamp is a gem. 3:30. Long rest level up. 12:00. - -Chest itself is magical - designed to cast paralysis if somebody other than him opens it. Invar tries to identify it - very magical chest. - -Check out the skull in the kitchen - has a deformity in the back of the skull and looks a year younger than Joy - about 7, possibly 1,000 years old. - -Well goes down about 50ft, water down there. Look for information in the library - built at the same time as the barrier (in tandem), not as mainly back then. Was put here to observe the moon, designed specially. Caverns underneath the area found & built here for this purpose. Summoning circle was connected to different towns and cities to get building materials then supplies after observatory was built. - -- Send message to Bushhunter: -- townsfolk have memories -- creatures slain -- at observatory -- message from Geldrin for Grand Towers wizard Brownmitty -Waterwise, go to check maintenance area - disarm door. Barrier is directed locally around the observatory. Found a really old blanket and small pillow - really decayed. - -Possibly Joy's other hiding place. Find a trap door - locked but no way to pick. Handle feels hollow. Geldrin used shield crystal to open. - -Stone steps into darkness - down very far. - -- 5 lights with ends in a door painted with white flowers. -Air is filled with solemn music in the cavern. Water going through barrier fizzes. River bank has a little shrine, 6 grave stones all marked "Joy", all have the everlasting flowers on. One has been disturbed. - -- Joy - died in chamber. -- Joy - 3 years old, lung infection. -- Joy - 2 1/2, unknown complications. -- Joy - 5 years old - nothing written. -- Joy - 9 years old - died from poisoning. -- Joy - 7 years old, birth defect - bones left in the -open and raided. - -Follow the stream - quite rocky and roots. Mushrooms/mildew. Mushrooms get bigger, much bigger than they should be. - -- 15-20 mins of walking - everything is bigger than it should be. -Lead out to a cave entrance. Everything seems much bigger than it should be; everything seems to get bigger towards a point. Massive butterfly flies past. 13:30. - -Get to a lake, massive lily pads and frogs, with massive flying sparrow. Something in the lake seems magical (centre). Put tris into the lake, nothing happens. 14:00. Geldrin attempts to raft to the middle but falls off and is rescued by me. Give up on the lake for now as don't have anything to get the magical thing in the middle. - -Back at the observatory, keep going round. Atriose the maintenance area - where we think front door is, it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. Keep going round and original entrance isn't there. - -(Earthwise) Bed at earthwise changed to a flower bed and barrier split isn't there. - -(Firewise) No trapdoor but instead 2x statues 1/4 of the way down each wall. - -- Throngore - huge muscular, 2 arms, 4 legs, 2 horns. -Left and dark gold; crab claws; taloned human-like hands; flame, like skin. God of destruction and decay. - -- Igraine - pregnant elfin woman, rose and scythe in hands, -goddess of life and harvest (Alabaster stone). - -(Airwise) - Wall like it would have been the door but there wasn't a corridor at the door to account for it. Go back on ourselves - statues same. - -(Earthwise) Flowers dead now. Invar goes round airwise to statues and back dead, goes back round and shouts for us to come round but we don't hear him. - -(Airwise) - runes are bleeding and seem different. Demon magic shit. Blood hurts a little bit when touched. Geldrin copies them. Invar gets a bowl - checks its acidity. Tiny bit acidic, seems to be real blood. - -(Firewise) - Trapdoor is closed - we left it open. This one is fully metal. Same lock as the other one. Metal ladder going down to a metal floor, all metal. - -Around exterior of the room are 8 glass chambers, - -- 6 empty, 2 viscous liquid with something in it. -Books next to it. It is a non-description human statue without genitals, with no set features, with arm out, palm down to the floor. - -Dirk mentioned hanging his coat on it. Geldrin tries a ring and it fits perfectly. Dirk adds his. - -- Diary - seems to be trying to perfect a clone spell, -matches up with the Joys in the graves. Dirk checks in the chamber: something in there. Rings start to glow slightly. 15:30. - -Back up. (Earthwise) - no bed, but barrier split is there. (Waterwise) - door is there and pipes etc. (Airwise) - triangular barrier. (Waterwise) - same place both ways. - -Geldrin manages to hold the book open and copies writing - deciphered as an illusion spell. Takes the book. Front has an eyeball on it. 17:00. - -- Go to look at the moon. -Crack open maiden's claw - good wine. See crystalline refraction of the moon and see a smaller fragment at the front, separate and much closer than the moon. - -- 1/2 way between planet and moon, locked in sync with where the moon is. -Moon is closer - think it will take another 1,000 years. - -If more magic goes through shield pylons this will speed it up. Hitting it exactly between the pylons - conjunction with some of the issues from town crier (pg 8). Barrier starts flashing and lighting up. Seems to be something attacking it. Moon shard seems to be coming closer with the attacks. Dirk draws boobs on the chest; they disappear after a while. 01:00. - -Day 7 22nd Dec --------------- - -Go back to the cart with the box of copper. Fashion a lock for the front door of the observatory. Take Cromwell and Isabella back to town with carts and horses. Restoration cast on Isabella - seems confident in herself. - -Day 8 23rd Dec --------------- - -Go back to barrier to get remaining people. - -- 8 people left - Chorus was looking after them. 12:00. -Geldrin paints wagon white and we head back to Everchurch. Basilisk reply - "I'll meet you there". Birds follow us back. - -See 6 horses coming from Provith (armoured), Harthwall militia. Have their livery on: stag and dragon rearing up. Arith (male) healer, Hthiman (male), elf (female). - -Few years ago near Ironcroft Firewise, something came through the barrier - Invar was there. Tell them about mind wipe and citizen stealing, lack of militia etc., barrier attacking. They report back to Lady Thyrpe. - -Healer restores the townsfolk, slightly. One with tentacle arm pulls off and left with stump. - -Day 9 24th Dec, 13:00 ---------------------- - -Arrive back in Everchurch - streets seem busy and panicky, talking about missing people and odd faces. Go to see Brother Fracture - people being reunited with loved ones, and healing happening. - -Earl has gone missing - sheriff taken over and called for help. Core made it back to town - locked himself in the pub with Mr Peel looking after him. Earl disappeared when memories came back. Set a cabin up at half way point. Harthwall ladies request a meeting with us (they get told we were heading to Seaweed). - -Drop Isabella at Cider Inn Cider. - -- Go to see Core - lady gets Mr Peel instead. -Core is ok, will need further repairs. Came to town from earthwise, only spoke to say "Core da". Geldrin thinks he tried to say "core damaged". Go to see Core. Sat motionless in a chair. Peel thinks he needs more crystal, a repaired Core came in the post 1 day after Core arrived. One word on it: "GUILT". Not addressed to Peel. Pub been open for 5 years. "The Guilt" - was the Earl of Brookville Springs. - -Back to Cider Inn Cider, take rooms and have baths. - -- Basilisk - find Groundhog, give coin - old grand tower penny, -doesn't like that we donated the coin to the church (1,000 year old coin). Keep on good side of mage Justicars in Seaweed. Very structured town. - -Eat and recover. 17:00. Back to see Brother Fracture. Basilisk brought the coin - he had 10 left, brought for 1g. - -Day 10 25th Dec ---------------- - -Get up and on the road with Isabella. Get towards a day's travel and see a 4 storey building - trading post inn, "The Wayward Arms". Merfolk on the sign. Get Red taken for the horses. - -Some play is taking place on the stage. - -- 11 o'clock, rooms ready, 6am out. -Extended sleep till 8. Left stairs, 2nd floor. Timothy served us. Elven lady comes on stage and sings. - -- 2 ruffians (half elf) enter pub, ramshackle armour, -have a killer air about them. Sit down and open a bag on the table. - -- 2 halflings enter, seem to be a couple and sit at -last table by the door. Somebody brings a giant moth picture down the stairs and hangs it up. 22:00. Half elves look at clock. Staff move people and pull tables together - setting up for Mirth?!? Hear music. People rush over to the gathered tables (inc halflings). Mirth, halfling, enters dressed as a ringmaster type (smarmy), - -- claps his hands and things appear on tables: -pastries, wine, bottles etc. General store? Famous alchemist (Mirth's Fizzleswig). - -- Back here in 3 days * -Brookville Springs next. - -Yadris and Yadrin (half elves) - Dirk overhears "taking my mind off tomorrow". Sent to investigate - problem solvers, didn't say what they were solving. Work for a lady, already up in her room. - -Day 11 26th Dec ---------------- - -Morning announcements! - -- Penta city states high alert due to attack on barrier. -Justicars reporting to major settlements. - -- Shields of the Accord report army moving Airwise, led by Baron. -- Loggers at Pine Springs missing. -- Heavy blizzards caused travel to Rimewatch impossible, scholars trapped. -- Goliaths of Firewise deserts seeking refuge in monstrosity pierced the barrier. Colleges deny possibility. -Dunenseed and Sandstorm; creatures of Air led by 6 armed - -- Borsvack report gnoll activity. -- Break-in at Riversmeet menagerie. Black market confiscations and 50g fine. -- Everchurch's villainous Earl ousted by sheriff & brave deputies. Nefarious activities thwarted. -Restoration under way. - -- Hartswell and Goldenswell armies clash with giant roam Firewise of Hylden. -Head to Seaward. Perfect circles of houses with a coliseum type building in the middle - used for horse and dog races etc. - -Airwise path coming into the city - wagons going back and forth filled with the marble type material used for the buildings and roads. Pylon outside of the main walls of the city. Population: elves / dwarves / gnomes. Park the cart (Paynes horsebreeder), 21:00. Go to coliseum - midday tomorrow. Forge charger race. - -- Inn - The Rotund Rooster, Tiffany. -Roads closed due to winter so no ice. Don't have fresh water - have to order it in. Marble type material with dark blue vein effect. Seaward run by stonemasons guild - elf. - -Nearest inn for a room - Water by Earth Waterwise or Night Candle. Road 7, 3 rings inn. - -Water elementals - rumours are they can walk through barrier. Some alterations with the council - collective working as one. Water problem has been in the last 20 years. - -- Chunky chicken cooker - sponsored by Rotund Rooster. -Redesigned as used to be a griffin - favourite. - -- Payneful Gamble - bad at start time. -- Thunderbelch - name. -Inn attacked by water elementals? Works at the cliffs. "No one else has been attacked." - -- Charge mysterious owner, maybe an outside duke or Earl. -- Halfling asks Invar if we have any skulls. Green skin goblin for his master, not allowed to say from round here (really). -Pays well for clever people skulls. - -Go to Night Candle - Candle lit - plush furnishing. Reason for the barrier was to keep the elementals out, but rumour is they can walk through. - -Goblin peers into Dirk's room @ 3am. - -Day 12 27th Dec ---------------- - -Head to shield pylon - pylon is like a gold ring with the crystal set in the claw and runes around it. 7:00. - -- 2 guards outside the keep. -- Rumour - walking through chicken farm at night. -Barrier flickers for about 1 sec - happens often, comes from Dombold Castle? but only for the last few weeks. Only notice near to pylon. - -Commotion at temple - guards carrying female elf out of the temple. Arrest warrant, public indecency & corruption. Cross temple with vast archways, four doors, circular altar in the middle. 08:00. - -- Priest/Council fabricated some charges - thinks -Architect using dark magic to make himself smarter. Architect worships light gods? Alutha on his left femur, "Ilmen Thion". - -Council OK. - -- Issues - barrier and water elementals. -Row 1, ring 3 from centre (public forum), meet Thursday @ midday, 4 hrs. Representatives Monday/Friday. - -Place bets - The Big Bad Beauty. My missing hangover - 2 runs, from another world, - -- 2 guys acting as a shell company for the Guilt. -Races 4/1 odds on all - The truffle hunter. - -Hear a yelp from the side street - tabaxi has following us (goblin) - tells me to stop letting him follow us and gives me a piece of paper. Goblin will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Mainly house - rat droppings etc. He has 3 skulls, will meet his master when he has 5. - -- 5 silver for skull. -- Maybe cadavers? -- Go back to inn via a temple to see if we can locate skulls. -Fire temple - war, justice and hunt. - -- 3 people in congregation listening to priest recite poetry -about battle against Soot the dragon. Congregation pick up wooden swords and start practicing. - -- Brother Cashew - his problems in town: -- Water elementals not killing, but heard town deputies found drowned near cliffs with fresh water. -- Rivers and lakes in 10 miles are bad, previously got from wells & then gradually went bad. -- Want to check the skulls for the water differences (trying to obtain some for Scum). 50 years - coughing sickness, no signs of damage other than burning - see some malnourishment at early age. 25ish - signs of damage to vertebrae, stabbed, nothing obvious. -Public records will be available: Town hall, 4th ring waterwise. Back to inn for Isabella. 10:00. - -Arena vibes in the city. People really finely dressed. Sit in section C. Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. Race 2 bet - 5s, Wove's gravy, 5/1 - lost. Race 3 - 5s, The galloping salesman - lost. Race 4 - 5s, In it for the sugar, 3/1 - lost. - -- Race 5 already bet: -Sphinx style - stonemasons guild. - -- Unicorn - first place worker, forever 1st. -- Horse - Payne horsebreeder. -- Gryphon/chicken - Rotund Rooster rooster / chunky chicken. -- Nightmare - on hire, Night Candle Inn. -Win 9g. Wooden barrel - Bud barrel makers - Big Bad Beauty. - -- Gryphon/cow? - My Missing Hangover. -Race: Truffle Hunter wins! mice. - -Town almost finished - walls up to strength. Water problem too - looking to sort. Worrying rumours about members of the council refer to forums. Odd out of place formal announcement. - -Go find Isabella's friends. Knock and door swings open - middle class house. Blood on the floor of the parlour. - -- 2 halflings hanging from the ceiling by their feet. -Male intestines over the floor (pattern?). Female looking at us but body upside down and face is right way. - -- Suspect someone has done a divination spell using the intestines. -- Not been dead long, but not warm. -- Front door broken open - engineered force. -- Physically kicked over candelabra. -- Movement but nothing showing a struggle. -- No active magic. Divination was used and same type as used at Everchurch. -Hear heavy wing beats - gargoyle, 6ft, looks like it is made of clay - not usual in town. Isabella says it's from her aunt (family guardians). Drops bag, sopat, and flies off with Isabella. - -Militia come to see what is going on. Direct inside and they take us to see the council. 17:00. Store weapons in a chest before going in, also my medic bag. - -- Elementarium - elf. -Admits pylon is being interfered with. Needs Justicar gone - requests us to look into the pylon. Justicar has ulterior motives: get access to shield pylon. - -- 2000g if we keep the information to ourselves. -Get 500g now to rest on completion, solve or information to help solve. Extra for water elementals - 200g each. - -- Flickers - 5 mins to 2-3 hours, only from sea to Seaward -& nothing from Everchard direction or Dunbold Castle. Also state nothing is coming their way. - -- Started approx 3 weeks ago, keeps log of it. -- Saw tri-moon barrier attacks; they were different. -- Halfings suspect pirate - captain of ship allegedly has crew but nobody has seen them. People go missing and turn up dead & magically disfigured. Human/merfolk, has a beard and makes possibly rodent-style magic. -- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. -She will help us. - -- Water spirits have usually made it through; more are making it through now along with the other elements. -- Try to keep body count low. 18:00. -Retrieve weapons. Sort horses - 1 day paid. Get rooms at the Scarred Cliff. 19:00. Go to barrier. - -Guards show us around. - -- Gherion - sage on duty at the moment - gives us -the book to view. - -- Time and duration of the flicker: -- 2 weeks - getting worse, increasing frequency. -Longest 3 secs, very random. Approx 9am a bout of outages. None around midnight. Clam Clock in the home for quarrymen. - -- Don't know how far the flickering goes between -Seaward and Dunbold Castle. - -- Happens towards the pylon, crackling in a horizontal pattern and doesn't go past the pylon. -Crystal has thousands of tiny runes all around it. None of the runes seem to have been tampered with. Crystal is very clean. - -- Meteorites sometimes come down. -Geldrin touches the barrier with his crystal shard & it goes crazy. Guard said it seems like the flickering but more intense and didn't go as far. - -- Justicar - just checked the books and the crystal with -a eye glass. Peridot Queen. - -- Iaxxon - guardsman - guarding quarry, water elementals -rushed past him like he was in the way not attacking him. - -- Sleep - get horses and leave for quarry. - -Day 13 28th Dec ---------------- - -Follow barrier - see ripples, seem worse the further away we get. Duration and frequency don't change. Pylon seems to be bringing it back under control. - -Ground is very dry and loose - not many plants. Get to a quiet point - see a horse in the distance coming towards us. Green, tall elven woman, black hair, looks very, very extravagant (Peridot Queen). Strokes my face and joins us towards the cliffs. - -- Worried when she looks at Geldrin. -- She's seen all 5 pylons. -- Made it to the cliffcutter town. Murky, dwarves and gnomes. -- Barrier problem seems to originate by the cliff. -Track towards the barrier by the cliff. 21:00. - -- Cliffs are sheer drops with rifts and barriers. -- Water is choppy and quite dangerous. -- Recently cutting close to the barrier. -- Break into a tool shed for the night. -Wind picks up outside for a moment. - -- Barrier around the cliffs is the emanating point, about 20 mins away. -- Not much wildlife around here. 23:00. -Morning wave sounds are getting louder - Peridot goes, and 2x sea creatures rushing up the sides of the cliff. - -Day 14 29th Dec, 06:00 ----------------------- - -Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. - -Peridot Queen arrives - has wings, appearance of an elf. Geldrin, Invar and Peridot Queen go down in a lift right next to the barrier (1 meter away). Mine shaft with some wooden structure beams, branches off away from barrier and parallel. 08:00. Further down, wooden wall constructed saying "danger of collapse". Hear creature. Man stood there, human with scar, pushing a plank back into the wall. Peridot Queen pays him one of the old copper coins. - -Transforms into a green dragon. Incident a few days ago came, 30 years not had any problems until now. Beasts like bulls shot up from disturbed part, towards the wilderness, shrieking like a banshee. Gnome says "smell like candy and has legs" probably lies. On dwarf has barrier duty and found a small crystal on last duty. - -Fly out of the shaft, and Aliana and Dirk see a shape. 8:15. See a group of miners, a dressed differently human comes over to them and points to us. Human walks off towards the barrier. - -- The dwarves then attack us: 4x dwarves and 1x gnome. -Gnome throws a blue rock on the floor. A small elemental comes out and attacks Geldrin (possible spell effect). - -Manage to knock one out and the guards come over - -- & bring him round. He says: -"He's coming, Terror of the Sands is coming for you all." Guard knocks him back out. - -Guards take him back to town. Private Burke wants us to visit the station before we leave. All have 5g and old copper coin. Gnome has two other blue crystals. 8:50. - -Gets to 9:00, more obvious flickering but nothing obvious. Believe the human may have come through the barrier. The human came from approx where the point of origin is. - -Invisible Joy appears and tells Dirk they are in pain and it burns - asks for Dirk's help. - -- The thing causing the barrier issues? 9:50. -Follow the salt trail from the water elementals. Salt trail thins out but no sign of them. After a time land becomes more lush (approx 7 miles from the barrier) with insects which we didn't see before. 11:00. - -River ends on the cliff and comes off in a waterfall (shallow river). Path ends at the river, about 20 years old. - -River appears to contain water elementals. - -- Elemental says: -"Pain gone, no hurt me. You come take me like others, take we escape through pain, closest good water." - -Geldrin frees the two in the blue crystals. Elemental wants us to free the rest. Death dome - came through hole made for poison water. Hole hurts, in the sea. Elemental stealers trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. Powers death dome. Garadwal was one with the moon rock but escaped. - -Scaly dragon with web fingers goes through dome - - -- blue/grey colour. One big one with four arms and tridents, -poison water, and Garadwal with tridents. Hole by cliff face at bottom of sea. Occasionally somebody/thing goes down to annoy the crystal. - -Head back to the town to speak to militia, 13:00. - -- Salinas - earth and water - the guy our attacker is talking about. -Soon free like our mother Garadwal - sand, earth and fire. Barrier is enslavement. - -- 8 altogether - soon find hidden lair of oppressors, -used as batteries. - -- Element diagrams: -- Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. -Second diagram includes salt, ice, lightning, smoke, magma, sand. - -- Theories: -- Needs of the many outweigh the needs of the few. -- They tried to destroy the world and got locked up. -- Preemptive locked up. -- Water back: 10 miles down the path from Seaward (firewise), -- 10 miles down the coast from the barrier. -Head back to quarry. 16:00 / 18:00. Door in the lift right next to the barrier. - -- 2 panels missing from the hole. -Passageway descends down behind the wooden panels. Goes down quite a way - has been excavated on purpose, not a mantle seam. Widens out and opens to a real old built wall (1,000 years old). Opens into underground structure. - -- Right old door - sign of aging, handle hurts. -Old gnome walks out, realises we are there. Gives him a coin. "Underbelly?" - truce in place. - -- Get a tour prison: -Down corridors, turn left many times. - -- 6 corners, huge metal door - dragon clearly holding ring. -Go through - see barrier at far wall. Smaller barrier encompassing a massive salt dragon - sweating salt for 20 years into the earth. They are trying to free it. Room was full of odes and ends and copper pylons were there but they removed them. Runes on floor barely visible as covered in salt. Another room has 4x curved copper pylons, removed 20 years ago - dragon was already seeping salt. - -- Keep Justicar out of it down here. -- Down to the left is the original entrance. Go look at it - similar to a room we have seen before in the observatory? Examined in the last 20 years. -Big black dragonborn comes in - Turquoise's boss, not many around. - -- Cult looking for a laboratory. -- Basilisk - there's a laboratory of a similar vein -- 20 miles earthwise along the barrier. -Head back to town. 20:00. Common room - sharing with one other person who hasn't shown up. - -- Message to Basilisk * -He comes to us. Knows little about salt elemental. Black Scales - mercenary group, work for Infestus (black dragon). Basilisk went to check observatory - couldn't open the chest & couldn't get in the golem underground room either. - -- Garadwal: -Prison at lake by lab? - ooze one. Frozen near Rhinewatch - ice one. - -- Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. -Is he an elemental? - -Go speak to Elementarium guy in Seaward. - -Day 15 30th Dec ---------------- - -Head back to Seaward. Follow a caravan of stone back to Seaward. Get to town - raining. 19:00. Need to see Elementarium; actually dressed this time. - -Quasi Elementals - don't have their own plain. Known 8 major plains; light and dark effects to create the 8 main ones. They became their own things and started to fight. Not become that powerful. - -E + W + L: ooze/slime/life - spark of creation. E + W + D: salt - makes water bad and crops won't grow. E + F + L: metal - positive construction. E + F + D: magma - destroys farmland etc. F + A + L: smoke. F + A + D: void - absence of everything, nothingness. A + W + L: ice. A + W + D: storm. - -Where does sand come into this? - -Goes down the trapdoor after talking to us about salt water elementals. Dirk listens - talking to somebody about it. They don't exist. Salt and water are their own things. Pollution. Salt elemental poisoning the water elemental. - -- Dirk - crystals helping the barrier? Elementarium believes it, -but he needs the Justicar to believe it so she leaves. Geldrin to try to sway Grand Towers to get her to leave. Rhonri or Revir might have an obsidian bird to relay a message. - -Arrange to meet back with him @ 9:30. Dirk asks about Garadwal - he goes down to the chamber and retrieves a dwarf skull and asks it the question about Garadwal. - -The information you seek is not for your kind. He is imprisoned in the prison of the Sands. Brutor Ruby Eye - troublesome being, wizard of great power. - -- Shows us the skull room - he talks to them for information. -What would happen if Garadwal escaped? It would be bad indeed. The barrier would be weakened by the loss of one of the 8. He was the only void they could find. If one was to escape it would be him. Feedback from the destruction of his prison would have damaged the others. - -Geldrin tells him of the tri-moon shard. Brutor knows of the first crack. Envoi was tampering with it for his own means, tampering with the containment device, and if something happened to him it would be bad and cause the crack. Wizards didn't agree of their entrapment but they all agreed Garadwal needed to be contained. Ooze was a good one. Ice and storm were put in the same chamber as land was tricky to be dug. - -Stop leaking? Maybe sigils out of whack. Brutor killed by black dragon. Demi lich - how he was made. Maybe a way to reverse the polarity. - -- Spinal! Brutor's password. -Winter Roses? Envoi's password. - -- Halfling killers. -- 8 things linked to the poles. -- Pirates. -- Elementals. -Received downpayment for our work so far: 200g. 20:30. - -- Put horses into the stables. -- Stay at the Night Candles. - -Day 16 31st Dec ---------------- - -Head to town hall to see Rewi Lovelace - gnome. Room is very messy. Obsidian raven is pulled from a drawer, called Errol (but not really). Justicar causing more problems than solving. Request further evocation spells. - -- Rewi - thinking on how to enhance the pulley system at the cliffs. -Retrieve horses and cart and head earthwise. 10:00. - -- Limit: sis poor? -- Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. -Continue earthwise towards Newhaven. Land starts to get lusher and seems to be at the edge of the salted area. 12:00. Lady at a well - the only freshwater in the area. Others have been boarded up as water is bad. Mayor runs a farm - keeps chickens. Full up water skins. - -- Road out of Newhaven in disrepair. -Outside of town grass dries up again. Town seems to have good water as an anomaly. Not many birds around. - -Nothing around to indicate a laboratory. Obsidian raven appears - suggests meet up with Justicar and work together, wants our location. Don't give it to him. Flies back to Seaward. - -Keep going to 10 miles away and 1 mile from barrier. Find charred earth - last few days - campfire and rations - cultists? See some tracks, 5-6 people camped. Prints show they are searching for something. Nothing obvious. Follow tracks towards barrier; they stop and we see acid corrosion and blood speckles which look to be swept over. Black dragons have acid. Green is mist. - -Geldrin checks the compass and we follow it about 30ft down. Find weakened signal, see purple, and find 10ft stone walls with a door. Password opens it (Spinal). - -Enter into chamber. 2 golems in dwarf form guard a door. Spinal opens the door. - -- Go left down corridor. -Enter large room - stone benches and lecture seats (seat 20-30 people). Jagged rock horn - representation of Tor. "Tor Protects" written underneath statue. No visible disturbance to the dust. - -Book on lectern - Book of Ancient Dwarven language on Tor. Head across the corridor - room, same size but only contains teleport circle (one set). Geldrin takes rune number. Dirk finds footprints that have tried to be covered up and lead down the corridor. Fairly recent, could still be around as have gone back on themselves. - -Follow footprints to a closed door. Footprints seem very purposeful. Ruby in the dwarf face releases some chains which open the door. - -- Use my crowbar to hold both of the chains to keep the door open. -Geldrin sets an alarm on the hatch and teleportation circle. - -Go into another door (2nd left from the hatch). Purple glow from the room. Paperwork on the walls of pylons and tower structures. Bubble of shield energy in the middle. Scaled model of the penta city states. Suspended globe of elements at each of the compass points. There is a city Fire Airwise of Lake Azure half way between the lake & Aegis-on-Sands. No sign of any of the prisons or labs on the model. Elements don't move. - -Teleportation circle activates. Retrieve crowbar and hide in diorama room. - -- 1 person seems to come out and goes to dwarf face door, -to door opposite us, then over to us. Tanned skin gentleman comes in - human, desert style robe, Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. Has found several circles and he is a collector of magical trinkets. Make a deal - he gets all the coin/gold/silver and we get first pick of the treasure. He gets the next, then we get 3 other picks, even split. - -Lounge has a scepter that seems out of place. Dirk takes it and an alarm goes off. All doors are now arcane locked. Go back through dwarf face door. Go left. Mouth appears and tells us traps are active. First door - ten skittles at the end of a lane, poker table and darts board with 3 darts in the 20. Poker table is magical; whole room is magical. Next door totally empty room... Next door - silence spell goes off. Room is full of rows and rows of crystal balls. Memories but we don't know that. - -- Back in the lounge hidden room behind the dwarf portrait: -blank paper and non-wounding dagger. Paper is magical to write special, & silence spell stops. Go back to crystal ball room. - -Memory of goliaths helping to build grand towers. Find the ball with the most scratched plinth - memory is filled with dread. Acid smell like house, scarred by acid and dwarf skeleton. - -Get one near grand towers ball - see 4 other people in a circle - -- around teleport circle: human (male), elf (female), human (female), -halfling (emo), purple crystal rises up from the circle. Before acid splash, see lounge talking to Envoi, asking about if it's affecting anything. Joy sets off the alarm. Ruby Eye takes the dagger and splatters blood and stops the alarm. - -- Before - fields of white roses. Envoi talking to elven woman from circle. -Joy and dwarven lady next to him. Feel content but forlorn when looking over at Joy and Envoi. - -Male darkish elf next to Envoi being introduced in observatory - tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. Envoi wearing 5 rings! - -Hot Spring - opposite dwarf lady (Brookville Springs), early date, falling in love. - -- Standing in a room in his building: purple dome and copper pylons -with blackness and a shadow. Ask shadow what it thinks. Shadow replies, saying no, not yet; it is trapped and threatens calamity. - -Nice room, intricate vine patterns, elven mage asks about change - nothing. Browning retreated to grand towers. Glad she is here, worried about it - warm secret. Think Browning is going to cover it all up; thinks if people know how it works then they will ruin it. - -- Last one - see him in mirror wearing robes. -Book and chain with staff, looks down under mirror, head on floor, stone opens up showing skull. Puts 2 crystals in chanting and "Tor Protects". - -- Pythus Aleyvarus? Blue dragon. -- Ruby Eye seems to have planned the dome: -- 5 pylons and 5 more around the Grand Towers to make it work. -Early periods where he's protecting towns from elementals. Group all fighting; when it breaks 6 armed rock creature, they all make a pact. - -- Male human points him to a crater with a massive purple rock & Envoi says he will build an observatory to track it. -Brutor says it is what they need. - -- Warring kingdoms - join together to construct everything: -Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. - -- Turning on of the dome at the point of turn on, something flaming bursts through and Browning bursts through the barrier and is attacked. -Room opposite - big engineering astrolathe, seems to be the planet which is a disk, with the moons and their orbits in real time. 15:00. - -- Display shows the date and time - current date 31st December 1011. -Room next to orbs. Protection from Elements spell. Open the door, boulder elements in there and try to get out. Slaves? Made to dig - leave them there. - -Down the corridor. Room same place as calendar room, not locked or trapped. Room is empty, mirror image of calendar room. - -- Opposite to boulder room: -Smaller room - empty aside from picture of moon holes, look like big gem holes. - -- Opposite orbs: -Feel weird opening the door. Glass cabinets in pedestals and shelves with various nick nacks, brass plaques and glass domes over them. - -Curved with flowing water - bottle "Containment taken from Lord Hydranus". Stone at the top 2 are glowing. Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). Magic bounds / magic missile. - -Great sword - stone and bone hilt with steel, dwarven steel, blade in friendship. Sword given by kings of the goliaths. "To the spell ones on the crafting of your big building." - -- Codebook holder - with a book very delicate: -"Book recovered from grand towers upon discovery." - -Celestial dwarf mannequin, ornate green silk dress, gold trim & tiny emeralds along the trim. "Worn by Princess Seline to the Grand Ball." - -- Cushion - small red gem, garnet. -No plaque. Size of the moon holes. Coin press - grand towers pennies. "Press used for souvenir pennies." - -- Jar - eyeball in fluid, "My Eye". -Scrying eye, can scry once per week. - -- Book - sealed not open, made of tan leather and looks unsettling. -Platinum lock. Human teeth are around the edge. "Noctus Corinium Grimoire" - lock looks like it's an addition. - -Plinth wheatleaf - pillow with marble cube radiating yellow glow. "Drixl's Cube, a gift from the golden field halflings." - -- Bottle - wine shaped, "first pressing of Siggerne - midh-iel", -Maiden's dew drink. - -- Ring - looks like Bushhunter ring, ring of protection +1. -"Failed attempt to recreate my stolen ring." - -- Comb - dragonbone and jade, details carved of a forest. -"Gift from the elven princess to my wife. She never got on with it." - -- Scepter - silver, fine golden filigree, white seaward gem in the top. -"Staff gifted by the merfolk of the great sea." - -- Gem writing: -"Time existed before me but history can only begin after my creation." Celestial book - tower seems to be the centre of the world & - -- don't know where it came from. Clues: Geldrin got a vision when reading it, -saw 6 primal elements looking down on the world. - -- Geldrin's alarm goes off - see figures at the end of the corridor: -- 4 burly black dragonborn. They hear alarm. "The alarm's going off, -someone is here" (Draconic). - -They want us to leave, claim it in the name of their master. Shields have mosquito on it. Create a shield wall and we yank crowbar out. - -- Fight: -- 3 1/2 swords -- 4 shields, mosquito -- 70gp -- 4x tower pennies -Obsidian bird - Errol. - -- Errol - last message was gnome giving our location (Rewi) -to black dragon? - -- Red gem found under plinth under Celestial book: -"The floor of my ship is decorated in equal parts with riches, tools, weapons and love" - games. - -Next room - walls and ceiling are blackened - kitchen. Nothing in the oven. - -- Jar contains gem: -"The rich want it, the poor have it, both will perish if they eat it." Nothing? - right here. Barrel seems magically sealed - rune for the cold beer. Contains a jar with a hand in it. Hand is ruby eyes and has blood which stopped the alarm. - -Next room is warded and locked. - -- Previously empty room is now full of books: control earth elementals, Tor, gems, for spells, wards. -Information on how to construct crystals for magic. - -- Gem inside a book: -"Although I'm not royalty, I'm sometimes a king or queen, and although I never marry I'm only sometimes single." Bed. - -Summon unseen servant in the elemental room. - -- Gem, Elemental Room: -"In my first part stir creativity and in my full form I store the results." Museum. - -- Gem, Orb room behind an orb: -"You have me today, tomorrow you'll have more. As time passes I become harder to store. I don't take up space and am all in one place. I can bring a tear to your eye or a smile to your face." - -- Memory - orb room. -Memory is: "If you got here you got my message. Only clue is based on the layout of my rooms. When you get inside you'll know what to do." - -- Gem, Calendar room: -"I guard the start of this recipe, just scramble, hidden." Kitchen? - -- Bedroom - seems to have a woman's touch, tapestries, -rugs etc., wardrobe drawers, full length mirror, chair, fireplace. Compartment under the mirror - skull with 2 gem stones rolled up paper in the eye socket behind big gem. If you feel like lived a good life, this is the Denouement (final part, finishing piece). - -- Gem in the other eye: -"They are never together, yet always follow one another. One falls but never breaks and the other breaks but never falls." Calendar. - -Put all of the gems in the slots and room opens. Purple sphere that doesn't let light through. Void creature? Won't used as it may have been too weak. - -- Seems to be a self contained barrier. -Void creature wants to be let out. - -- The diviner - the one who stole his brother - the twins we killed. -Mechanical trap activates something in the room. Magical trap teleports to the room. - -Pythus takes creepy book and Celestial book. Dirk: sword / scepter of the merfolk. Me: coin press / cube. Invar: ring of protection / potion bottle. Geldrin: spear / eye. - -Pythus gives Geldrin a scroll of teleportation and goes. Geldrin takes eye and scrys on Pythus. Sand stone cavern, pile of gold on top is a blue dragon (serpent-like), reading the skin book full pages made of cured human flesh. Seems to be at the edge of the desert near "Salvation". - -Back to void room. Will tell us what is in their room in exchange for freedom. What is in the room will help release him. Rubyeye wanted to live forever. Went in with elven woman and dark male (Envoi). Just a fragment of the void, but if added to the others can get more powerful but only a tiny bit. - -Inside a key looks like pylons placed against a barrier circle of copper and turn it - talking like barrier isn't active. Pylon for his prison as well as another. - -Use the ruby to open the door, then destroy it. Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. - -Go through door next to void. - -- 4 plinths - by the door are 4 copper pylons, -look like they would go over rods/force field. - -- 2 metal circles, runes all around (copper). -- 1 - steering wheel size. -- 1 - over a meter, stood upright. -- 3 - dragon skull, Alsafur dog size. -- 4 - book, same lock as on the creepy skin book, -made of leather - unpickable lock. - -Possibly storing one of Envoi's rings - it was under the skull. Skull is one of my kind - Veridian dragonborn, dead for approx 1 thousand years. - -- Envoi's ring: -- a sacrifice made to live eternal, father and daughter. -Book writing around the edge - old dead language. The memories and learning of Atuliane Harthwall. Needs a powerful identity spell to learn the command word to open the lock and book. - -Mosquitos, woodlice and moth are now around. Rain storm. Void will help as long as he is not detained. - -- Lightning strike is seen although underground. -Try to let void out. - -Push pylons against his dome - opposite pylons seem to switch it off very slightly. Ring by the dome turned and attracts to the pylon. One full turn releases the dome in that quadrant. - -Void releases a circle of obsidian to control him with. - -- Take his ring and book and small ring. -- Remove gems from the moon face lock. -- Head out and close the initial door behind us. 18:30. -- Massively overcast with the storm. Air is thick with insects: -- moths/mosquitos, ants etc. -Circle of storm 1/2 miles wide, moving unnaturally. Push of barrier looks like 8 massive claws pierce through - black dragon looks to be trying to come through the barrier. He wants the remains of his son - seems to be the skull in the sealed chamber. - -Go back and get it. Missing the side of his face - think Rubyeye did it, but he may have started it by killing his son. Place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. Takes the skull and says we are even (for killing his men). - -He flies off and Thunderstorm goes with him. - -Head back to Newhaven with the cart. Go to pub - picture of 5 hands together making a star. Silver dragonborn behind the bar, golden rim spectacles, halfling wait staff, tabaxi bar maid. "Gelandril Harthwall" been here 10 years. It's said the 5 wizards used to meet here. - -Sleep. - -Day 17 1st Jan / Tri-moon -------------------------- - -Goblin looking for us - Scum had a message for us. Find Scum as we leave the pub. - -- Apparently warrant for our arrest: -- Treason - conspire against the Towers to break barrier. -- Scum - telling Elementarium to meet us with Ruby Eye skull -(1 mile outside Seaward). - -Sent message via Errol to Grand Towers saying we are going to Everchard to put them off the scent. - -- Message to the Basilisk: arrive at possible meeting point, -waiting for nearly 3 hours. Cart comes off road with a human onboard, don't recognise. Seems suspicious. - -- 1 box contains Grand Towers pennies. -Council ask for him to transport to Fairshaw - The Cart (Garick Blake). Looks like the gnome sent it. - -- Dragon notes: -- Silver - Harthwall. -- Copper - Spruce, white. -- Black - Infestus. -Veridian. - -- Blue - Pythus. -- White - the ancient. -Red? - Soot. - -- Manifest: -- 1 currency - Towers pennies. -- 1 provisions - ash jerky??? -- 2 armaments - spearheads, copper ends, trident heads tipped in copper. -- 1 waterproof papers - reams of enchanted waterproof paper, salt water only. -- 1 tar. -- 1 tools - heavy duty, ship building? -- 1 misc goods. -Should have gone out in 2 days with guards. Invar knocks the driver out. See what looks like Elementarium riding towards us. Gnome seems to be trying to clear the decks. Elementarium doesn't know about the spearheads etc. Wants to set up a meeting with Lady Harthwall. They have a council to discuss security matters within the dome! Gives us the Ruby-Eye skull. - -Jerky bag contains a hemp bag - pungent sickly sweet smell, reminds me of rose spice, but narcotic. - -- Ruby Eye: -Infestus' son - spawn of evil - needed a powerful sacrifice for a friend (Envoi). Salt dragon leaking - worried tampering with the life may have weakened the force. Reinforce the barrier - if we don't weaken the barrier, possible fix by refilling the voids, or safely disable the barrier - turn off with the fail-safe button in Grand Towers. Weird skin book - grimoire Noctus Caerulium - forbidden magic. - -To stop Tri-moon shard we would need to fully redo the dome. - -- Create a device to repel it but barrier would need to go down to do it. -- Relationship with the merfolk? Fish men, different people, then those invited into the barrier. Great helpers to set up barriers. -- Thinks Browning had something to do with goliath settlement disappearing from the history (must be clues). -Green dragon seems to be residing in the area. - -- White Dragon helped to build the dome. Reds, no blues. -- Elementals liked to attack and this is why the barrier was put up. -- Tower was perfect place but needed more. -- Backup plan for the void elemental stashed in his safe, if not there need to find another. -Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. Tells us to get on the rune. Appear in a lush castle room at Harthwall. Sat at head of table seems to be Lady Harthwall; stood beside is Sister Lady. - -- 4 chairs by the rug. -- Rip in the sky - Basilisk appears with: -Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. - -Catherine Cole vouches for me Valkarige vouches for Invar - -Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. - -- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. -- small group of like minded to protect the barrier want to maintain stability of the barrier. -News reached them about the fragment. - -Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. - -- Green dragon responsible for destruction of Dirk's homeland. -Rubyeye blamed Dirk's kind for helping the dragons. It's said Verdilun dragon is shacking up with the red dragon. - -- Keeley Curdenbelly's research maybe of use (the "liver" in the desert) -- 1. head to merfolk -- 2. get crystal from the water -- 3. speak to ancient one -We passed off the twins mum. - -Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical - -- leeching elemental prisons -- Garadwal -- void on the loose -- shield crystal in the sea. -World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. - -- Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* -Gave him the coin press and told him the coins in the cart were a create of them. - -Back to our cart. - -- Head down the main road toward Fairshoes. 5:30 -Start hearing birds and animals etc. 10pm Find a place to camp for the night. - -Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. - -Back on the road. Uneventful day heading to Fairshoes. - -Make up camp again. - -Nothing happens. - -Day 18 (Friday) ---------------- - -- 2nd Tan with Finnan -- 16 days until Timnor - -Day 19 (Saturday) ------------------ - -- 3rd Tan -- 15 days until Timnor -- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. -Go through town to the harbor to get a boat. - -- Temperature is oddly warm for this time of year and this close to the sea. -Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. Cabin 17. Figure head is a wooden shield crystal. - -Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. - -Hostess lady chants and brings forth great winds and a storm. - -Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. - -- Merfolk - they've never done that before. -- Pirates - has been attacking people more recently. -- creatures that can petrify others by looking at them. -- 150g if we need to fight. 5g if we don't. -- Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. -- Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. -- Silver Dragonborn - Bard - recruited. -Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. - -Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. - -Salinus? He calls on Salinus - worm - calls forth salt elementals! - -Kill him and his crew. - -- free passage on any of their ships and 400g -Receive Scimitar +1 - attune for water breathing. Kairibdis' Pistol of Never Loading +1 (D8) noisy. - -Retreat to cabin with a cask of rum. - -Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. - -This is the only town on the Isle. Turtle men seem to be the locals. - -- 3rd road left 3 building - Sailors Rest. -Take a shrine tour - Shrine to the great Turtle. - -- Merfolk - the accordionman - look after the Turtles. -200g life gem. -We stand on the back of The Great Turtle. - -Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. - -Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. - -- Water gets up high on a tri-moon and covers the building. -- Tell the guy about our fight with Kairibdis - Walter. -- Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 -- Takes us there. -Old town in disrepair but one dock looks fairly well maintained and repaired. - -- 3 houses look decent too. -First house closest to us seems to be lit. Creep up to look in. 4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. 1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. - -Both other huts have lights. Furthest one seems to be more secured. One has a conch and calls and says kingly comes now. Wait around for him. - -Water comes back. Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. - -- 11 fish people carrying things. 15 overall. -Something seems to be coming by barnacled sea cows. 10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. - -- 8:30 -- 9:20 -- 10:00 -- Chariot back pulled 10:30 -Creature stops and sniffs as they are being watched, tells them to search for us. - -Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. - -Need all or the plan will not work and he will be cross and he will be worse. - -- Think 6 armed creature will attack our ship for the weapons. -- go back to Turtle Point. 12:00 -Plan to go to Freeport instead of Baytail Accord. - -- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. -- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) -Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. - -- Tell her what happened - 10ft 6 armed thing is an Excellence. -- Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. -Dunhold Cache information. - -Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. - -Recommends to speak to merfolk of Lake Azure for Dirk's city. - -- Shipment - get a small unit. -Sahuagin have one of the conch's (8 in existence) Kiendra's. Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. - -- one of the Merfolk will come with us. -Pact leader Freeport - Tiana. - -Day 20 (Sunday) ---------------- - -- 14th Tan 1012 -- 14 days until Timnor -Stay in the barracks for the night. Dirk has a strange dream about a goliath sitting on a granite throne looking concerned, two females tending to a dwarf, who will live but will lose an eye - -- (Rubyeye), fought well. *changes* Savanna scene: -dancing around a fire with a granite city in the distance. Face in the fire ?Enwi? then Jagg? then disappears. - -Head towards ship. (Merfolk) Guardfree - states his mistress has been working on misdirection. - -- get food brought to our cabin. -- Journey is uneventful luckily. -Oddly a busy bustling city mishmash of styles. Rainbow ship is docked here. - -- Quartermaster loads shipment onto our cart to -take with us. - -Baroness Lavaliliere - head of Freeport. No taxes for trade here. - -- Newspaper: -- Ancient takes flight - left his home for last 1,000 years moving to Snow Sorrow. -- Fighting still going on in the mountains near Highden - good taking a beating. -- paper seems to be propaganda. -Go shopping. - -- Esmerelda - magic item shop. -Go to see Tiana at the Siren and Garter. - -Expecting a group of 40 to help fight Excellence. - -- They are mortal and can be slain. Delights in bossing the mortals around. -- Baroness - seems good but lets people do what they -please. Although can be random with which groups to dispose of. Latest one around a week - -- ago - a group of bound elementals and gems - fire and water. -- another group selling archeological items from desert - Tabaxi awakened etc. -Ceased the goods. - -Go find the Basilisk in a private room. - -- Highden - being attacked by a Fire Excellence. has something in for the dwarves. -Investigated the crater and found an old lab but unable to get in. - -- Friends on the council meeting with the ancient around Snow-sorrow. -- Azureside - reported perodotta and spawn amassing in the area. -- Arabella kidnapped again - targeted attack, faces removed. -- No forces available - zinquiss will meet us at the harbour + 1 other. following her predecessors' ideas. maybe something similar to Lady Harthwall but is not a dragon. -Baroness neutral party, fairly reclusive - -- Told about copper weapons - paper - Maelcolm Jethnes & Earl of Fairport involvement in the shipment. -- Get a dagger from Basilisk. 1 charge for dimension door. 3 charge for teleport spell opens a portal open for 5 seconds. think of the place to go - big enough for a person. 1 recharge per day. -Lesser rift blade - Dagger +1 - 3x charges. - -Harthwall 2nd most Common last name (Browning 1st). Always been a Harthwall in charge of Harthwall. No Records of relative. Very reclusive family who don't appear in public until the coronation ceremony, only seen together to hand over the crown. (possibly disguise self spell) - -- 19:00 -Go back to see Tiana again. get another guard - Guardfree. - -Pirates Pearls Plundered - Icky lower. Poor Gut Refuge - Cheeky Thimble Rugger - -Go out to the cart - Dirk notices the padlock has scratches on it. The scratches look uniform & pattern I recognise but don't know why. Upside down thieves cant - "Drunken Duck" & scratched with claws like mine. change the markings to Everchard. look into parking and Guardfree keeps watch. Darker in Bugbear next to lizardman. - -Head over to the temple to give them the spear. Female half-orc comes to speak to us - hand over the spear and she goes to check it out with others. Donate in exchange for help? - -Request an audience with the higher power to discuss - won't be here for - -- 3 hours. -- go to get lodgings at the Pirates Pearls Plundered. -- Crab man in charge - icky. -- Baroness grants us an audience right now, young for an elf. -Room is odd - paintings are the predecessors all wearing the same necklace (like a mayor necklace) & lots of jewelry. - -Desert relics - thought maybe they belonged to an old friend - long time ago - Velenth, Cardonald, - -- worked for her before coming here - willingly. -Vote 12 heads who vote who has the ability to uphold a very specific set of ideals. - -Other things taken off the street because she doesn't approve of the cult. - -Will loan some forces - Proviso - she gives us information about a laboratory. Can we get a red gem for her, hunt but not as hard as diamond in the workshop. Gaping hole in the side of the building. - -- Barrier - emergency systems - something else -in there - very young, cheers? she ran. - -- Dragon - rumor to roost in the ruins of -Dirk's old city. - -The creature in the chamber thing? ?Goa duck? - no. - -Has the code to the circle and the safe code whilst the defenses are up. gives us the lab. - -- Valenth wanted to transfer herself into an object... -- Seems a little shook and guard helps her out. -- 22:00 -Return to temple of Cierra. Huntsman has returned and comes over to us. - -- Huntmaster Thrune. in runes. -Ruby Eye spoke to their church often and interested - -- will provide aid to kill Excellence. -Ruby Eye thinks we might want to get the book back from the blue dragon before she tries to get it, she was Enwi's apprentice. - -- Ruby Eye's best friend wanted to craft herself into some thing and continue in that form. -Spear was a gift from a Huntsman of Cierra but it's actually an arrow and there were 5 of them taken from Cierra's last battlefield. - -Back to Pirates Pearls Plunder. - -- Guardfree - will get his mistress to bring guest shells. -- Try to plan what we are doing. - -Day 21 (Monday) ---------------- - -- 6th Jan -- 13 days until Tri-moon -- We all have dreams that are tinged with cold. -- My dream - in family home, sibling playing happy memories, looked at town hall but looking like a crater but in fact a black hole -- pulling in more buildings. Hear a voice: "Where is he I know you hide him" horrible voice. Panic and turn then wake up (looking for Garduul?) Void! -- Just our room is cold. As the ice melted, a white dragonscale drops from the icicles. -Go look for the Captain for a boat. - -- loan the boat for 100g a day and 500g deposit (125g each). guardsmen 20 (Sergeant has a necklaced emerald glowing when he talks) zinquiss and black dragon born (Wrath). clerics 15 and leader. -Pier 12 - large group merfolk 30 + 2 litters - -- Speak to pack leader Tiana & other leaders gather. -Get 2 guest shells. - -- 10 spare shells. -Sergeant takes our cart to the keep. - -Captain Hween - -Wrath will stay on the other side of the barrier once we get there. - -- Pack leaders: -- Shundra - Turtle Point -- Kiendra - Dunhold Cache -- Tiana - Freeport -- Alana - Riversmeet -Set sail - sea is calm. Water seems clear - no noticeable signs of him yet. - -Merfolk, zinquiss, Wrath, half clerics in the sea with us. - -- Excellence seemed to have come from 80 miles away when we were at the turtle village - so possibly -Dunhold Cache or the smaller islands around. - -& net Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaw. - -- Wrath (Colin) middle name. when he gets to Blackstone scale. -Request to look for the location of Garaduul - -- Island - pass it and nothing seems to happen. -- Arrive at Fairshaw. -- Boat is ceased upon orders from the Earl, occupants being detained for Treason etc. -Diplomatic mission carrying members of the Pact etc. - -- Suspect the Earl is part of the Cult. -- give zinquiss 200g for 4x healing potions. -- Guards return and tell us to stay on board whilst investigation takes place. -Zinquiss returns with 3 healing and 1x greater healing (distributed). - -- News: -- Highden - Battles not doing well, strengthened by dragon sightings. -- Heartmoor - People falling ill - surgeons deployed (Perodotta?) -- Grand Towers - Justiciars leaving to the 5 points of the penta city states. -- Provinia - locust and mysterious spiritual event where things keep disappearing. -Sword blessed +1. - -Day 22 (Tuesday) ----------------- - -- 6th Jan 1012 -- 12 days to tri-moon. -Get called to the mess hall by Tiana. - -Construction under the water and they have made a gate by raising the crystal up to leave a gap. Fish shamans taking notes on waterproof paper also. Crystal is approx 1m square. - -Can sense Kiendra but no response possibly unconscious but seems to be in the cavern. - -Split underwater group into two to sort out crystal & also attempt to rescue Kiendra. - -Approach shield crystal in stealth. - -- See - above our field of vision are some sharks who -seem to have spotted us. - -Fight. - -- We overcome and defeat mobs at the crystal site. Kiendra - found and rescued - very weak and tortured. & coin pouches - 112g (give to crew). returning - speak aquan. -Find waterproof paper, 3x dispel magic scrolls (geldrin) Big Boss - Spear glowing dull blue - Doom spear +1 Suit of plate mail - Plate of Hydran +1 resistance to cold. - -- Boat - pretty wounded. attacked - Hunt Master missing. -Other party - Tiana's - dispelled shells and got Half orc priestess on the boat wants to check on the other team for the Huntmaster. Necklace Sergeant wants to come with us. - -Go over and Huntmaster fighting an Excellence both very injured. - -- Deed Excellence! -- 4 mermen -all mermaids - -- 4 clerics -- 6 guardsmen -- Survivors: survive -- Moor up by Dunhold Cache for the night. -Merfolk recover our dead and lay on the - -- deck - Priests oversee and I thank each one for their -help and sacrifice. - -Pull up to the cove - lookout shouts there is a vessel already docked. Chariot with water elementals chained to the boat - Excellence's boat. - -- We row to shore to investigate. -Mother of Pearl named Chariot, no other signs of movement. - -Dirk speaks to elementals and they want to show us where the excellence live, will come with us on the big boat. - -- Take the chariot back with us 8-10kg. -Zinquiss will sell it at an auction in 7 days, have the address for the Freeport auction house. - -Day 23 (Wednesday) ------------------- - -- 7th Jan 1012 -- 11 days to tri-moon. -Go to Excellence lair with Merfolk - Pack leader Alana. - -- Water ebbs and flows like a tide in the underwater cave. -- 20ft long crystalline sculpture of a dragon - base has runes glowing. -- 3 cages and barrels. 1 cage contains a merfolk - but looks different - green not blue. -Alana seems to revive him and takes him back to the ship. - -- Chests seem to be laced so waterproof - contents may not be openable under water. open one and contains white powder which I inhale. Rabbits - whole room turns into a black void. -Bas, Athal - Salamanders - and Arabic writing. White dragon circling around the dome. - -Two blue eyes in the darkness coming towards me and really cold and back in the room. - -Other cages - in the middle of the cage they see snail with a gleam of metal which is a jeweller's chain attaching it to the cage. Guardseen says the snail is a bad omen - its been drugged. Back to ship. - -- Merfolk - abducted from beyond the barrier, -him, his friend and wife. Woke up one day & they were both gone. Wife is nobility in their pact. (Snewl?) - -Hunt master dispels magic on the snail & a mermaid appears. Empire of their people outside of the barrier captured while on diplomatic mission to the city of Onyx, doesn't trust them because war between them and the Salt elementals. Princess Aquunea. - -- City of the black scales has a "door" into the dome - Infestus can't use it as too big. -Payment to access is a Grand Towers penny. - -Check out the barrels etc. - -- sickly sweet medicinal - potion of magical energy regain 1 slot - 1 hour. -- silk and parchment interleaved - runes. -- 2x white rose powder. Tiana gives us 1,000g. -- metallic censer (incense holding burning device) silver? religious? water god? Censer of Noxia. -Ability to enrage and control water elementals. It's active. - -- Send message to Basilisk. -Arrive back to Freeport - seems very cold. Much colder heading back down to Freeport. ?Rimewalk issues? - -Snowing over the sea, everything very dark and snowy. Guy shouting the End is Nigh - moon is crashing down into the city. Ask him which city and he then "it bothered he dreamt it." - -- 22:00 -Lots of people having dreams. Gnolls attacking a village requested backup from Everchard and Fairshaw. - -- Underwater - mermaids - "big cat with metal wings attacked it." -Happened a few nights ago - same time as ours. - -Head to the Castle to see the Baroness. Necklace is removed from the Sergeant and he just walks off. - -- Mermaids - Having a meeting in 3 days at -Baytail Accord to discuss what happened. We can go. - -The dreams seem to contradict each other, possibly from the Ancient One - so could happen. - -- Huntmaster - going to Grand Towers to speak -to the Hunt Lord. - -- Justiciar in the city. ?Looking for us. -- Baroness gets us into the Drunken Duck - secret in -Air wise from Jewelry District. Written on our padlock, on the cart. Cart still ok in the castle. - -Baroness Master - Valenth Caerduinel. Necklace. Sister is a ring. - -Go to Drunken Duck. All the walls are covered in pillows and ?soundproofing? Red dragonborn - -- 2x tabaxi -Automaton - -- 2x halfling and gnome -- Survivors: clientele -Gave me (Axion) Schnapps from the Brass City! Barman says only the best for the "Little Finger". He's intrigued by why the 3 best members of the Underbelly went on a mission. - -- Tabaxi Whisperers laden with 'Dev'. -Traders 'Keeps' from foot to foot. - -Faint noise through the floorboards, raised voices? Automaton keeps talking about a factory. Wants to know where the labs are. Tell him all by the barrier. Cuts down his search radius... - -- Get a private room to discuss matters. -- Send message via the underbelly to advise we won't be going to Baytail Accord. -- Will go to desert laboratory. diff --git a/tmp/all.txt b/tmp/all.txt deleted file mode 100644 index f3a57cc..0000000 --- a/tmp/all.txt +++ /dev/null @@ -1,2612 +0,0 @@ -Ever Church -Swampy woods - fruit trees orchards Day 1 - -Winter - 1 orchard has trees in bloom - [unclear] - buzzing - bee pollinating & enabling trees - to live - slightly bigger than normal bees. - - dark bark, blue leaves, red fruit (deep) - -Town - mix of light & dark woods. - -Population 3k -No visible district - larger manor house in centre. - -Cider inn, cider. -Beeswaxed floor, a nice small -half elf playing a lute, much is half elf & human -family resemblance -Father Burnun - prize fighter -half elf - Gelissa * - -Box: -Baz - Invar -greying hair - paladin looking, did not get the plate. -Leonard Dirk -politely - -Shaun - Geblin (the mighty) -gnome, wild brown hair -glasses with no glass - -Farmer - old John Thornhollows. -Another 3 pigs gone -Vanished -6 missing but only has the ledgers -for 3. Had a group of around 30 pigs? - -3 daughters: Annabel, Isabelle, Cumberella - -5 keys on the bar - but changed to 4 & no idea -how it changed. - -Register with Earl - ? mercenaries. - -Pig's daughter keep best books, 1g each to go look. -Shepherd maybe missing some sheep. -Bess - cat missing but no rats recently either. -Rats missing too? - -Last summer built a hostel - house all the homeless -people, but not enough for homeless so letting out. Inn's -not happy. - -Go to Earl - half-orc (crunch looking), black clothing covered with birds. -Geese missing. - -- Butcher - serving new mushroom burgers since meat not coming - in. -- Woman - out of town come to find husband, come from Albec - for work, no one seen him, was putting up fences at a farm. - Malcolm Donovan - sent to jailer - birth mark on back of right hand. -- Apply for poverty tax - eligible - slides 2g over to her - for the anti-tax. - -Funds from the hostel go to the anti-tax -since wife left him - going to disappear. - -Census - in spring - 3c for the number, -payable in the morning, ask half elf. -- No trouble in town. -- Bushhunter - registered mercenary. - -Last 2 weeks: -Bushhunter came to town 2 weeks ago. -Winter apple trees started to fruit. - -Last 3rd Moon was 1 week ago. - -Invar - delivered weapons but no militia? -Order was put in a few months ago. -About 5 left. Earl downsizing. -20 weapons, 10 armour. -Can't remember any of the old militia. -Go to jail & talk to sheriff for current militia -forgetting names. - -Bushhunter - had tubes & pipes. -Used to do a lot of swords. - -Jail -- Now believes should get a package from - a crazy haired gnome. -- Location changed. Used to be where hostel - used to be. -- 2 empty cells. -- Laws - big scar over her eye. -- Her, sheriff & other 2 deputies (Bob). -- 11 years, always something so old there isn't anything. -- No reports of people missing. -- Home theft week ago. -- Bushhunter doing a sale of giant bugs in frames, - last sale 6 days ago. -- Shepherd had new fence? Yes. - -Terry left town - 2 months ago -Johnjaw passed away -Abo. arrested -Ralfeck - Buckworth somewhere -None left in town -43 used to be hired. - -Parch of militia statute charter to have sufficient -militia for close to barrier. -1100 militia - 45,000 population. -Due in a month to check; last visited 5 months -ago. - -Nobody remembers Gelissa except -Gedrin. -Invar remembered for a split second. - -* See one of the people gets up and walks - out. -Chase him. -Hood drops, face stitched below eye line, -mouth missing a row of teeth. -Bone splint fingers & split tongue. -Has birth mark on right hand - Malcolm. -Was a human male - had to use magic for these -changes. - -Guardwell - Terror of the Sands, nightmare of the darkness. -He will consume your soul. -- Tales of the sphinx who learnt dark magic - experimenting on itself. -- Remembered Isabella and that Gelissa said she - hadn't arrived. Remembered her again! - -Took Malcolm to the jail. -Deputy went to get the sheriff - Jeremia. -Now remembers 3rd daughter Gelissa. -Now remembers homeless people. -Makes us deputies - we get badges. -Sir Alstir Florent. - -Bar 5th person, human warrior - helping -out with us & picked one of the keys -and remembered him all the way -up to when we went fishing, -around the time Dirk saw the rat. - -Gristak Brinson - mayor. - -Day 2 -Head back to the town hall. -* Received whole census for John's pig farm, 9:00. -5th name on the ledger has been scribbled out. -Claims it was a mistake. -- Unemployed & holdings worth <50g - anti-tax criteria. -3g anti-tax. - -Thornhollows farm Census April 4th - -registered: -wife Sarah 47 -John 50 -Annabella 18 -Isabella 16 -Clarabella 14 -seeing sheep farmer's son - -Paternal grandmother Bella. - -2 sounders of pigs: -1x matriarch -3x breeding boars -2x breeding sows -1 has 17 female younglings -other has 21 female younglings -No males. - -Paid tax as billed. -Farmhouse, 3x orchards, stable, veg garden. -2x outbuildings which back onto a hedged sty. -- Planned employment: 3x hands. -- Grazing rights for area in edge of swamplands. - -Walk to Thornhollows farm, past orchards & brewery, 9:45. -Farm surrounded by stone hedge. - -Pass 2 ravenhound looking dogs - girl walking with them, -black hair, missing from census? -Craven dogs, breeding pair, mimicry noise, have puppies. -Approaches us - Annabella. -- Younger sister on the porch. -- 3 puppies on pillows next to grandma. - -Books - everything tallies until about 1 month -ago. Scribbling out & removed without explanation, -think there should. -Missing 12 pigs in total - should be 57. -Records say should be 51 they've recorded. -6 missing over the last 2 weeks: -actually 46. -3 last night, before last -3 a week ago. -- Missing pigs went overnight. - -Inconsistencies start about the time Sarah left. -45 -Cat is missing too, about 1 month ago (black cat). -Nights of disappearances, not locked up at night. - -- Large door to enter the hedged area, looks densely grown. -Confident there is no dig through. -Hill giving 4 foot of hedge to get in but no -advantage to get out. - -Dirk finds big divots that look like foot -prints - looks like a frog - approx 8 foot frog. -Ravenhounds ribbited at dark. -Started a few weeks ago - take the pigs, gruffle hunting. -Seem to head to swamp. - -Massive moths, been around for a while. - -Q - 100g to clear the frogs. Had 50g so far. - -- 6 pigs missing to the frogs as they remember - these, but 6 others missing they don't remember. - -Go through swamp. -Feels like we are being watched. -Massive moth appears during the day... -Stealth off & get attacked by a frog - killed 2. -Find bones that appear to belong to pigs & sheep. - -Back to farmhouse, 16:00. -Cleara gives a tonic where we can use hit dice. -* Potion of recovery. * Succour. -Stay over the night. - -Day 3 -Head over to sheep farmer. -Geldrin accidentally cast a spell sat on -Dirk's shoulders. Tore his shoulders apart like -Malcolm's wounds. -Stop for short rest. -Birds circling overhead: goldfinch & starling. - -District lack of sheep at the farm, swamp seems -to be trickling into the farms. -30-yearish man appears to be trampled by a herd of sheep. -Looks like some human sized prints, 4x sets. -One looks to go to & from the barn. -We can investigate - drew crime scene. -Hear something trying to break out of the barn. -Run to farmhouse; door has been "latched in". -Table smashed to pieces, various debris about. - -Fire looks like it was burnt out yesterday. -Upstairs looks old. Double bedroom & 2 sets of singles. -Older couple. 1 may match dead man, 1 slightly smaller. - -- Creep over to the barn & see a row of sheep - heads - seem unnaturally agitated. Hear unevening bleat. -Breaks out of the barn - massive pile of melted -sheep - killed it. - -See things at barn and felt memories -being taken - not there when we get to the barn. -Found woman in the corner dead. Looks like -she lured the creature in the barn and somebody -locked them in. -Something about Malcolm and Isabella going missing & -nobody knowing of them in town but us & Malcolm's -wife knows. 11:15. - -- Go to where we found the birds. -Take short rest. Dirk leaves food out & lots of different -types of birds appear. -Go into swamp to find bird lady. 1 hour in. -Swamp hut covered in bird poo, inside branches -covered in birds. 80ish woman, blindfolded & mouth -sewn shut. Name: "The Chorus". - -Been having dreams - that aren't her own. -Her apprentice upped and left. -Magic used is clever - changes memories into a convenient -form - so knowing Sarah was with The Chorus it -was harder to wipe. -On of the Robins' Day they saw her by the hostel. -She was distorted... - -Always had large animals in the area. -Somebody going through the swamp & using gas -which is hurting the birds. -Q: Stop the Bushhunter. -Direct us to the place where Gedrin has the papers. -2pm leave, 5pm at town. - -Back to town through market place. -Notice stack of frames with a halfling (suited) -with an ogre - barrel with tubes & pipes going to an -ear funnel crossbow - talking to a masked person who -has a wagon pulled by a "cobra koi" type creature. - -Sneak up behind the ogre & break his equipment. -Goggles & let the gas out. - -Bushhunter will do any form of Taxidermy... -* Bushhunter promises to hunt out of town. -Request him to do it the other side of the -river. - -- Magpie / Xinquiss can be found at - the Hatrall great bazaar. 5:15. - -Sheriff's office. -Very busy in there. Both Jeremia & deputy sheriff -armoured up - half-orc & kobold (seem to be militia). -Citizens wearing patchwork armour - bear, tabaxi, human, -warforged. - -- Been an attack - Walter (sheep farmer). Somebody came - in & they had a cult with sheep beast in. - Wife sacrificed herself. - -- Core - warforged - runs Peel & Core, lack of custom - in the tavern - noticed wagons at the hostel. - -- Earl had a death threat. 500g bounty. - -- Tiny guy - forester - Cromwell - noticed wagons - past Walter's farm, seem to have stopped there. - Seemed to be people in the wagons. What the mo... 5:30. - -- Jeremia & Drang to protect the Earl. -Hannah & Bob - go to outskirts. - -Gives us a shock dagger. - -- Village is quiet. -2x wagons parked outside the hostel - livestock looking. -Smells of pig manure & human faeces. Feel warmth -but can't see anything - scratched crab claws. - -Dirk sees rats again & they attack. A pig beast -breaks out of one of the carts, killed. -Sabotage carts & two people bring 4 horses. - -Woman in 50's, too many teeth, bigger (Sarah?) -Mouth - big. -Young boy 18ish (sheep farmer's boy?) - -3x patrons: Crimson, Bovine, Mirthis Fizzleswig. -1 shortsword. -1 sickle, silver. -Random herbs. -Church Tor & church Tarber. 19:00. - -Take the people & cart to the church. -People unable to be saved. Boy wasn't dead at first -but now dead. - -Brother Fracture - looks at the cart. -Remembered all of the militia have been going missing. -Want to try to put them all to sleep - Bushhunter! -Bushhunter staying out at cider inn/cider. - -Go to see him, 20:00. -Has a ring with purple gem & runes, needs identifying. -Doing that in trade for use of quaverisior / magical hearing -powder, 5000? etc. -Go back to cart & use it. -Get 5 back into the church. -1 - Gregory, homeless man, restored. Thought he'd been -taken by the militia. Remembers being in the big militia house. - -Park the cart behind the church & horses at the inn. - -Random compass box with a needle that points to the -Bushhunter - Geldrin buys it. - -Day 4 19th Dec, 7:00 -Dirk - flower he got from a tiefling girl is still looking -new - has a magic enchantment to keep it new. - -Problems with Pylon: -- Seaweed water spirits on the move. -- Fish men other side of barrier (massacre), dumbold south. -- Stone giants missing under new leadership by Hyden Goldensoul, - armies too insignificant. -- Cold air over River Rhein, frozen between Snowshore and - Highland edge. -- Ancient [unclear] from slumber, sages try to interpret omens. -- Gnolls attack restored point, cows missing, bounty on gnoll. -- Blight hits azureside cherry crops - Cereza production halted. -- Isabella Nudegate, 500g reward (missing on route), not searched. -- Grand festival, midwinter - held at Brockville spring next week. - -* Peridobit cloaking death spotted 50 miles eastwise - of Arrowfeur. -- No mention of pig. - -- Pig carcass is missing. Singe marks on the road. - Other cart still outside the hostel. 8:20. - -Oric - innkeeper, Cider Inn Cider. -Earl was holding banquet, no other strange goings on. -Things go crazy this close to the third. -Town crier local news around midday. - -Go to sheriff - walk past Earl's manor house. -Sheriff in chair, kobold shuffling papers. -Calls Malcolm, half elf steward for the Earl apparently -behind the plots to kill the Earl. Seems innocent - -no evidence, doing to keep face with the Earl. - -Something off with the Earl. Asked blacksmith to -up the production on weapons?! Invar just delivered lots. -Steward - didn't know him before; thinks duchesses -of Harthwall sent him after the previous Earl passed. -Earl seems to be more extreme in his views: -10 show sorrow, -10 blacksmith in town. - -Books say 27 militia - but only 4 (27 is half required amount). -Lawrence Henderson - exchequer, paying wages. 8:00. -Ledger given to the scribes at night & back to -Earl at 9:00 - half elf comes to scribes with us. - -Pick the lock & get left to Earl's chambers, right for scribes. -Ledgers are all copied & old ledgers kept in a different -place. Current ledger around 7 days ago. - -Isabella 2 weeks ago with 20 min to search for her in the copies. -Malcolm 6 days ago - name scrubbed out in the ledger -but not scribbled out in the copies. - -Visiting tourists: cider brewery & tour of woodland. -Spoke to the Earl for permission to take a cutting from the -Everchurch tree. Staying at beekeeper's. -Elfin meadowmaker for the cutting, 2x bodyguard. - -Half elf remembers Sir Alistair. - -Go see exchequer - half elf portly looking, Lawrence. -Ask about militia wages - he starts to panic. -Says we need to speak to the sheriff or the Justice. -Didn't do anything wrong. -Blames the scribes. Set them baron cut down. -So he was getting the payment for the other 23. -If we keep quiet he will help with more info if needed. -Gives us 50g. -8 carts, 16 horses, 60 swords. -Industrial angle: we have 2 extra horses. -58 days left on town finances. - -Safe: -small black velveteen case, gems. -3 treasure chest: gold/copper/silver. -2 bags platinum pieces. 6000gp. - -Earl's documents - file is empty. -Half elf remembers him having documents! Vicmar Danbos? - -Leave to go see Brother Fracture, 9:50. -- Gregory doing well - not had chance to heal the others, - will feed the rest. -- No way of communicating with other churches. - -Go see Gregory: -Remembers Dec started, thinks it was 7th/8th. -A few weeks ago according to the information from the town crier. -Can't remember anything from then until now. -Can remember 2x militia taking him to the hotel, -then waking up in the church. -Stonejaw & Ralfrex (2 of the missing militia). -Other people in the hostel - said it looked like a jail still. -Goat lady - Bagnall Lane - & various others. -Militia house open for about 1 month - no reason -for it to still look like a jail. - -Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. - -Cider inn cider. -Homeless in town not really any but remembers Gregory now. -Remembers dead goat down Bagnall Lane about 1 week ago. - -Go to hostel. Investigate round side of building. -Stone stables, 2 carts & 4x horses in courtyard/stables. -Chain on the gates but padlock not locked. -Invar breaks wheels. - -Release horses - I get magic missile. -Go into "hostel" to fight them. One is Gelissa. -Has a mark on the side of her face. -Kill other guy, subdue Gelissa. -Some corruption on her mind - Invar restores both her -mind & wounds. 11:00. - -- Look around the "hotel". First 2 cells are empty. -Approx 10 people still in the cells - all townsfolk. -- Invar creates a lock for the back door. 12:30. - -Tell Brother Fracture to concentrate on healing militia. -He will take Gelissa & militia & cart to the Barracks -and use that as a base of operations. - -Decide to go to the Barrier over the -"Swamp Laboratory". 13:00. - -- Rest for the evening - on 3rd watch, pigeon lady - near the camp. Didn't get a full rest. - -Day 5 20th Dec, 07:15 -Approach barrier - 2 large carts in view. -Go off the path. Tie up the horses in a -dip in the land. Go round to approach from the -trees. - -Find Cromwell (ranger) quite injured. Looks like -the damage Geldrin did to Dirk accidentally. -- Tracks look like heavy steel boots (Goliath in full platemail? Core?) -- We are about 1/2 way between the shield pylons. -- Carts are empty - large group of people go towards barrier, - small group to the swamp. - -Follow the tracks - they seem to come back on -themselves & head towards town. Looks like just -Goliath. We want to put Cromwell safe. - -Decide to follow along shield towards larger group. -Hear a big group of people stood next to the barrier. - -Dirk feels something is watching us. -Then is attacked by sheep farmer grubby. -Killed it & 11 militia & 8 townsfolk. -8 townsfolk tied up with rope. - -Black dog thing disappeared after we killed it. -But the maggot stayed. Upon killing this it let out a -massive shriek & all the remaining townsfolk started to -attack. -Located & subdued halfling girl. 08:00. - -Short rest. 09:00 / 09:10. -Get horses & Cromwell, head back along -the path to find a patch of trees to -hide the cart. - -* Long rest. 10:30 / 18:30. -Sword enchanted to add +1 until Invar's next long rest. - -2 twins commanding them. 1 went to swamp, other -went to Barrier (we killed it). - -Go towards the swamp - following the tracks of the -swamp, tie up horses outside swamp. 20:00. -Following 4 individuals - Geldrin's compass is following the -same direction. - -Come to a clearing at the barrier with a stone -building in the clearing - marble dome is against the barrier -with a large telescope through the marble dome & -the barrier. Approx 10 rooms. No windows. -Tracks lead right up to the building. Built approx -1,000 years ago. - -Hear a strange humming - door reverberating. 23:00. -Enter building. 2x plinths, 1 empty, 1 that -looks like Core dismantled. Head clatters off & -rat runs through left door. -Go through door by plinths. - -Left door - library. -Shelves - all on one shelf missing "T" shelf in Astronomy. -Guess Trimoons information. - -Picture of a well groomed tiefling holding a baby girl. -(The Mage) one of the 5 who made the barrier. -* Vixago Eros * - -Paper work looks recent, drawer has been forced open - -diagrams of the stars. -Other drawer has rabbit/deer teddy, ring inside, gold band -with runes. -Ring is similar to Dirk's - sews the teddy back up. - -Vase - "part of me can be with you while you study, -all my love - Joy" - -Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring -back Joy" -Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" - -Paper work - measurements of the tri-moon before the -barrier went up & 20 years after. TriMoon -seems to be getting bigger. Pre barrier it was -twice the size of the other moons - now it's 4x -as big as the other moons. -Geldrin takes all of the notes. - -Take an invisible cloak from the hatstand - wear it! -Dirk puts Geldrin on the hat stand & his clothes disappear. -When things touch hat stand they disappear. - -Day 6 21st Dec, 1:00 -Dagger & handkerchief fall to the floor. -Handkerchief - clean "J" in the corner. -Dagger looks like a letter opener. - -- Next room looks like a teleportation circle - with a bronze feather on the circle. Like the one the other - twin had; seems more powerful than usual. - -Cages in the next room (empty). Operating table (empty). -Boxes, guillotine rope - lots of blood & decay with sea & sulfur. - -Red door - picture of a young tiefling. Dirk recognises - -holding the wolpertinger. Very big portrait. -Big table - set but empty. - -Door @ end - kitchen. Well/bucket, doesn't look like it's -been used. Pull bucket up, pour water on the floor. -Humanoid skull with horns is on the floor. Horns are the same -as the race of the girl - 100's of years old. - -Trap door under owlbear rug in office. -Door outside office is barred shut. - -Trap door - 4 plinths, all have the suits of Core on them. -Geldrin goes down & suits light up, ask for password. -"Joy" & "Tri-moon" incorrect. -- Move onto another room. -Try to get through barricaded door. -Trapped door managed to get through. - -Potion room - cauldron looks like it is full of water, -fresh & clear. -Geldrin calls construct "Powerloader". - -- Another room - stairs & a door which says - "maintenance do not enter". Door is trapped with electricity. - Building seems protected by the same thing the barrier is made from. 01:15. - -- Room opposite - bedroom. -Tarnished vase with white flower in. -Chair which looks broken & open book on table -(seems out of place). -Open the chest - pulse paralyses Invar & Geldrin. - -Construct kills whoever was upstairs (one of them). -Killed it. -Shocked Invar & Geldrin back from being paralysed. - -3 sets of footsteps walk past the room & stop at -guillotine door, come back & go upstairs. -2 come back - seem to be on guard. -Another 2 go to Joy's room & comes back. -All 4 killed. - -Short rest completed. -Go into Joy's room. -Open the toy chest. - -* Mahogany box - lock has a rune on it. Geldrin takes it. -* Wardrobe - 3 empty hangers. Dress she was wearing - when Dirk saw her isn't there. -* Bedside table - bottom drawer is trapped. - Medical equipment, syringe, crystals, ink, powder, - bag, herbs, empty flask, 3x full flasks. - Recognise 2 - Mirthis Fizzleswig & succour, don't recognise the other. - -Quill pen, ink & book, kids diary. -Last page: "Felt rough today, don't know how much -longer able to write. Daddy borrowed Mr Snuffles again, -Daddy's friend asked about the rings again. Daddy's friend is -creepy." - -Diary - bed bound for length of the diary, -approx 1 year. Robots clean & feed. -Daddy's friend (never named) making rings etc, -put in box which might help her feel better. -Not getting better - terminal. Daddy got -upset but no payment could fix it. - -Trapdoor under the rug, wooden ladder down -into a store room, beanbag & toys, seems -to be a secret den. Dirk goes to the beanbag. -Little girl sat on it gets up & goes out: -"Maybe I should go back up. Daddy can see me in my room." -"Feeling better, glad because Daddy's creepy friend -is here so I can hide." -"He'll find me here, I should go to my hidey place." - -Go upstairs - opens up into a massive dome, -huge golden spyglass, crystals around the telescope -break the barrier. Someone sat at chair - back to us - -2x 8ft ugly human but wing creatures. Chair person looks like -creature we killed but all the parts are opposite -worm & dog like creature with the creature. - -Master asked to observe tri-moon. -No desire to fight us as killed his counterpart. -Worm is quite useful & rare. -900 years ago someone lived here. -Used the townsfolk to attack the barrier. -Give it one of the brass feathers to communicate -with the master for an audience: "Vann, if horrid mechanical -hellraiser sphinx creature." - -Garadwal? -Where is your army servant? Were those guys -instead... do not need to know us. -Co-ordinates required for triangulation need -to know where the armies strike next -month, so we can have freedom from the dome. -Striking the barrier increases the flow & maybe. - -Flows so the fragment of the moon will -destroy grand towers & destroy the dome. -* It lives outside the barrier. - -Might just talking freedom seemed kind of true, -& "freedom from the confines of everything" was an -odd phrase. - -What would happen if creature didn't obey sphinx? -It would find him due to the pact made -in darkness? In sorrow? Looked forlorn - to find Joy? -Nothing. - -Tri moon is a crystal. - -- Sphinx cast out for practising unsavoury magic. -- Do we wish to join him? -He is one cell - trying to find two locations -to attack. - -- All agree to clobber. -- Kill them all. Worm thing dead, think it has - mind control powers. - -Papers on table - calculus & notes on the Tri moon. -Books on biology, incurable diseases etc. Book on the effects -of poison - slowbane - acts like heavy metal - symptoms -match Joy's diary. -I wrote a paper on it - very rare because people can't -make it but turns up in the black market. - -Shield pylon city sometimes get a similar sickness -being investigated. Very rare & takes a lot to take effect, -possibly same colour as the shield crystal. -People get sick and come to Goldenswell -& start to get better so not really looked into much. - -Pile of goods - spices, wine, cherries, parchment, -platinum, gems, silk. -Saja digel / fire from azureside - have a blight. -Copper Dodecahedron (magical). - -Invar identifies Dodecahedron - spell facts! - -21st Dec, Day 6 still. -Geldrin goes to sleep in Joy's room & realises -the lamp is a gem. 3:30. -Long rest level up. 12:00. - -Chest itself is magical - designed to cast -paralysis if somebody other than him opens it. -Invar tries to identify it - very magical chest. - -Check out the skull in the kitchen - has a -deformity in the back of the skull & looks a -year younger than Joy - about 7, possibly 1,000 years old. - -Well goes down about 50ft, water down there. -Look for information in the library - built at the same -time as the barrier (in tandem), not as mainly back -then. Was put here to observe the moon, designed -specially. Caverns underneath the area found & -built here for this purpose. Summoning circle was -connected to different towns & cities to get building -materials then supplies after observatory was built. - -- Send message to Bushhunter: - - townsfolk have memories - - creatures slain - - at observatory - - message from Geldrin for Grand Towers wizard Brownmitty - -Waterwise, go to check maintenance area - disarm door. -Barrier is directed locally around the observatory. -Found a really old blanket and small pillow - really decayed. - -Possibly Joy's other hiding place. -Find a trap door - locked but no way to pick. -Handle feels hollow. Geldrin used shield crystal to open. - -Stone steps into darkness - down very far. -5 lights with ends in a door painted with white flowers. -Air is filled with solemn music in the cavern. -Water going through barrier fizzes. -River bank has a little shrine, 6 grave stones all -marked "Joy", all have the everlasting flowers on. -One has been disturbed. - -Joy - died in chamber. -Joy - 3 years old, lung infection. -Joy - 2 1/2, unknown complications. -Joy - 5 years old - nothing written. -Joy - 9 years old - died from poisoning. -Joy - 7 years old, birth defect - bones left in the -open & raided. - -Follow the stream - quite rocky & roots. Mushrooms/mildew. -Mushrooms get bigger, much bigger than they should be. -15-20 mins of walking - everything is bigger than it should be. -Lead out to a cave entrance. -Everything seems much bigger than it should be; -everything seems to get bigger towards a point. -Massive butterfly flies past. 13:30. - -Get to a lake, massive lily pads & frogs, -with massive flying sparrow. -Something in the lake seems magical (centre). -Put tris into the lake, nothing happens. 14:00. -Geldrin attempts to raft to the middle but falls off -and is rescued by me. -Give up on the lake for now as don't have anything -to get the magical thing in the middle. - -Back at the observatory, keep going round. -Atriose the maintenance area - where we think front door is, -it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. -Keep going round & original entrance isn't there. - -(Earthwise) Bed at earthwise changed to a flower bed -and barrier split isn't there. - -(Firewise) No trapdoor but instead 2x statues 1/4 of the -way down each wall. - -Throngore - huge muscular, 2 arms, 4 legs, 2 horns. -Left & dark gold; crab claws; taloned human-like hands; -flame, like skin. God of destruction & decay. -Igraine - pregnant elfin woman, rose & scythe in hands, -goddess of life & harvest (Alabaster stone). - -(Airwise) - Wall like it would have been the door -but there wasn't a corridor at the door to account for it. -Go back on ourselves - statues same. - -(Earthwise) Flowers dead now. -Invar goes round airwise to statues & back dead, -goes back round & shouts for us to come round but we don't hear him. - -(Airwise) - runes are bleeding and seem different. -Demon magic shit. Blood hurts a little bit when touched. -Geldrin copies them. -Invar gets a bowl - checks its acidity. -Tiny bit acidic, seems to be real blood. - -(Firewise) - Trapdoor is closed - we left it open. -This one is fully metal. Same lock as the other one. -Metal ladder going down to a metal floor, all metal. - -Around exterior of the room are 8 glass chambers, -6 empty, 2 viscous liquid with something in it. -Books next to it. -It is a non-description human statue without genitals, -with no set features, with arm out, palm down to the floor. - -Dirk mentioned hanging his coat on it. Geldrin tries a ring -and it fits perfectly. Dirk adds his. -Diary - seems to be trying to perfect a clone spell, -matches up with the Joys in the graves. -Dirk checks in the chamber: something in there. -Rings start to glow slightly. 15:30. - -Back up. -(Earthwise) - no bed, but barrier split is there. -(Waterwise) - door is there & pipes etc. -(Airwise) - triangular barrier. -(Waterwise) - same place both ways. - -Geldrin manages to hold the book open -and copies writing - deciphered as an illusion spell. -Takes the book. Front has an eyeball on it. 17:00. - -* Go to look at the moon. -Crack open maiden's claw - good wine. -See crystalline refraction of the moon & see -a smaller fragment at the front, separate & much closer than the moon. -1/2 way between planet & moon, locked in sync with where the moon is. -Moon is closer - think it will take another 1,000 years. - -If more magic goes through shield pylons this will speed it up. -Hitting it exactly between the pylons - conjunction -with some of the issues from town crier (pg 8). -Barrier starts flashing & lighting up. -Seems to be something attacking it. -Moon shard seems to be coming closer with the attacks. -Dirk draws boobs on the chest; they disappear after a while. 01:00. - -Day 7 22nd Dec -Go back to the cart with the box of copper. -Fashion a lock for the front door of the observatory. -Take Cromwell & Isabella back to town with carts & horses. -Restoration cast on Isabella - seems confident in herself. - -Day 8 23rd Dec -Go back to barrier to get remaining people. -8 people left - Chorus was looking after them. 12:00. -Geldrin paints wagon white & we head back to Everchurch. -Basilisk reply - "I'll meet you there". -Birds follow us back. - -See 6 horses coming from Provith (armoured), Harthwall militia. -Have their livery on: stag & dragon rearing up. -Arith (male) healer, Hthiman (male), elf (female). - -Few years ago near Ironcroft Firewise, something came through -the barrier - Invar was there. -Tell them about mind wipe & citizen stealing, -lack of militia etc., barrier attacking. -They report back to Lady Thyrpe. - -Healer restores the townsfolk, slightly. One with tentacle -arm pulls off & left with stump. - -Day 9 24th Dec, 13:00 -Arrive back in Everchurch - streets seem busy & panicky, -talking about missing people & odd faces. -Go to see Brother Fracture - people being reunited -with loved ones, & healing happening. - -Earl has gone missing - sheriff taken over & called for help. -Core made it back to town - locked himself in the pub -with Mr Peel looking after him. -Earl disappeared when memories came back. -Set a cabin up at half way point. -Harthwall ladies request a meeting with us -(they get told we were heading to Seaweed). - -Drop Isabella at Cider Inn Cider. - -- Go to see Core - lady gets Mr Peel instead. -Core is ok, will need further repairs. -Came to town from earthwise, only spoke to say "Core da". -Geldrin thinks he tried to say "core damaged". -Go to see Core. Sat motionless in a chair. -Peel thinks he needs more crystal, a repaired Core came in -the post 1 day after Core arrived. One word on it: "GUILT". -Not addressed to Peel. Pub been open for 5 years. -"The Guilt" - was the Earl of Brookville Springs. - -Back to Cider Inn Cider, take rooms & have baths. -Basilisk - find Groundhog, give coin - old grand tower penny, -doesn't like that we donated the coin to the church -(1,000 year old coin). -Keep on good side of mage Justicars in Seaweed. -Very structured town. - -Eat & recover. 17:00. -Back to see Brother Fracture. Basilisk brought the coin - -he had 10 left, brought for 1g. - -Day 10 25th Dec -Get up & on the road with Isabella. -Get towards a day's travel & see a 4 storey building - -trading post inn, "The Wayward Arms". -Merfolk on the sign. Get Red taken for the horses. - -Some play is taking place on the stage. -11 o'clock, rooms ready, 6am out. -Extended sleep till 8. Left stairs, 2nd floor. -Timothy served us. -Elven lady comes on stage & sings. -2 ruffians (half elf) enter pub, ramshackle armour, -have a killer air about them. -Sit down & open a bag on the table. -2 halflings enter, seem to be a couple & sit at -last table by the door. -Somebody brings a giant moth picture down the -stairs & hangs it up. 22:00. -Half elves look at clock. -Staff move people & pull tables together - setting up for Mirth?!? -Hear music. People rush over to the gathered tables (inc halflings). -Mirth, halfling, enters dressed as a ringmaster type (smarmy), -claps his hands and things appear on tables: -pastries, wine, bottles etc. General store? -Famous alchemist (Mirth's Fizzleswig). - -* Back here in 3 days * -Brookville Springs next. - -Yadris & Yadrin (half elves) - Dirk overhears "taking my -mind off tomorrow". Sent to investigate - problem solvers, -didn't say what they were solving. Work for a lady, -already up in her room. - -Day 11 26th Dec -Morning announcements! -- Penta city states high alert due to attack on barrier. - Justicars reporting to major settlements. -- Shields of the Accord report army moving Airwise, - led by Baron. -- Loggers at Pine Springs missing. -- Heavy blizzards caused travel to Rimewatch impossible, - scholars trapped. -- Goliaths of Firewise deserts seeking refuge in - Dunenseed & Sandstorm; creatures of Air led by 6 armed - monstrosity pierced the barrier. Colleges deny possibility. -- Borsvack report gnoll activity. -- Break-in at Riversmeet menagerie. Black market - confiscations & 50g fine. -- Everchurch's villainous Earl ousted by sheriff - & brave deputies. Nefarious activities thwarted. - Restoration under way. -- Hartswell & Goldenswell armies clash with - giant roam Firewise of Hylden. - -Head to Seaward. -Perfect circles of houses with a coliseum type -building in the middle - used for horse & dog races etc. - -Airwise path coming into the city - wagons going -back & forth filled with the marble type material -used for the buildings & roads. -Pylon outside of the main walls of the city. -Population: elves / dwarves / gnomes. -Park the cart (Paynes horsebreeder), 21:00. -Go to coliseum - midday tomorrow. -Forge charger race. - -Inn - The Rotund Rooster, Tiffany. -Roads closed due to winter so no ice. -Don't have fresh water - have to order it in. -Marble type material with dark blue vein effect. -Seaward run by stonemasons guild - elf. - -Nearest inn for a room - Water by Earth Waterwise -or Night Candle. Road 7, 3 rings inn. - -Water elementals - rumours are they can walk through barrier. -Some alterations with the council - collective working as one. -Water problem has been in the last 20 years. - -- Chunky chicken cooker - sponsored by Rotund Rooster. - Redesigned as used to be a griffin - favourite. -- Payneful Gamble - bad at start time. -- Thunderbelch - name. - -Inn attacked by water elementals? Works at the cliffs. -"No one else has been attacked." - -* Charge mysterious owner, maybe an outside duke or Earl. -* Halfling asks Invar if we have any skulls. Green skin goblin - for his master, not allowed to say from round here (really). - Pays well for clever people skulls. - -Go to Night Candle - Candle lit - plush furnishing. -Reason for the barrier was to keep the elementals out, -but rumour is they can walk through. - -Goblin peers into Dirk's room @ 3am. - -Day 12 27th Dec -Head to shield pylon - pylon is like a gold ring -with the crystal set in the claw & runes around it. 7:00. -2 guards outside the keep. - -Rumour - walking through chicken farm at night. -Barrier flickers for about 1 sec - happens often, -comes from Dombold Castle? but only for the last few weeks. -Only notice near to pylon. - -Commotion at temple - guards carrying female elf -out of the temple. Arrest warrant, public indecency -& corruption. Cross temple with vast archways, -four doors, circular altar in the middle. 08:00. - -Priest/Council fabricated some charges - thinks -Architect using dark magic to make himself smarter. -Architect worships light gods? Alutha on his left femur, -"Ilmen Thion". - -Council OK. -Issues - barrier & water elementals. -Row 1, ring 3 from centre (public forum), meet Thursday -@ midday, 4 hrs. Representatives Monday/Friday. - -Place bets - The Big Bad Beauty. -My missing hangover - 2 runs, from another world, -2 guys acting as a shell company for the Guilt. -Races 4/1 odds on all - The truffle hunter. - -Hear a yelp from the side street - tabaxi has following us -(goblin) - tells me to stop letting him follow us & gives me -a piece of paper. Goblin will keep following us because we might -have skulls. Dirk says we can leave one for him at his house. -He takes us there. Mainly house - rat droppings etc. -He has 3 skulls, will meet his master when he has 5. -5 silver for skull. - -- Maybe cadavers? -- Go back to inn via a temple to see if we can locate skulls. - -Fire temple - war, justice & hunt. -3 people in congregation listening to priest recite poetry -about battle against Soot the dragon. -Congregation pick up wooden swords & start practicing. - -Brother Cashew - his problems in town: -- Water elementals not killing, but heard town deputies - found drowned near cliffs with fresh water. -- Rivers & lakes in 10 miles are bad, previously got from wells - & then gradually went bad. -- Want to check the skulls for the water differences - (trying to obtain some for Scum). - 50 years - coughing sickness, no signs of damage - other than burning - see some malnourishment at early age. - 25ish - signs of damage to vertebrae, stabbed, - nothing obvious. - -Public records will be available: Town hall, 4th ring waterwise. -Back to inn for Isabella. 10:00. - -Arena vibes in the city. People really finely dressed. -Sit in section C. -Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. -Race 2 bet - 5s, Wove's gravy, 5/1 - lost. -Race 3 - 5s, The galloping salesman - lost. -Race 4 - 5s, In it for the sugar, 3/1 - lost. - -Race 5 already bet: -Sphinx style - stonemasons guild. -Unicorn - first place worker, forever 1st. -Horse - Payne horsebreeder. -Gryphon/chicken - Rotund Rooster rooster / chunky chicken. -Nightmare - on hire, Night Candle Inn. - -Win 9g. -Wooden barrel - Bud barrel makers - Big Bad Beauty. -Gryphon/cow? - My Missing Hangover. - -Race: Truffle Hunter wins! mice. - -Town almost finished - walls up to strength. -Water problem too - looking to sort. -Worrying rumours about members of the council refer to forums. -Odd out of place formal announcement. - -Go find Isabella's friends. -Knock & door swings open - middle class house. -Blood on the floor of the parlour. -2 halflings hanging from the ceiling by their feet. -Male intestines over the floor (pattern?). -Female looking at us but body upside down & face is right way. -- Suspect someone has done a divination spell using the intestines. -- Not been dead long, but not warm. -- Front door broken open - engineered force. -- Physically kicked over candelabra. -- Movement but nothing showing a struggle. -- No active magic. Divination was used & same type as used at Everchurch. - -Hear heavy wing beats - gargoyle, 6ft, looks like -it is made of clay - not usual in town. -Isabella says it's from her aunt (family guardians). -Drops bag, sopat, and flies off with Isabella. - -Militia come to see what is going on. -Direct inside & they take us to see the council. 17:00. -Store weapons in a chest before going in, also my medic bag. -Elementarium - elf. - -Admits pylon is being interfered with. -Needs Justicar gone - requests us to look into the pylon. -Justicar has ulterior motives: get access to shield pylon. - -2000g if we keep the information to ourselves. -Get 500g now to rest on completion, solve or information to help solve. -Extra for water elementals - 200g each. - -Flickers - 5 mins to 2-3 hours, only from sea to Seaward -& nothing from Everchard direction or Dunbold Castle. -Also state nothing is coming their way. -- Started approx 3 weeks ago, keeps log of it. -- Saw tri-moon barrier attacks; they were different. -- Halfings suspect pirate - captain of ship allegedly has crew - but nobody has seen them. People go missing & turn up dead - & magically disfigured. Human/merfolk, has a beard & makes - possibly rodent-style magic. -- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. - She will help us. -- Water spirits have usually made it through; more are making - it through now along with the other elements. -- Try to keep body count low. 18:00. - -Retrieve weapons. -Sort horses - 1 day paid. -Get rooms at the Scarred Cliff. 19:00. -Go to barrier. - -Guards show us around. -Gherion - sage on duty at the moment - gives us -the book to view. - -Time & duration of the flicker: -2 weeks - getting worse, increasing frequency. -Longest 3 secs, very random. -Approx 9am a bout of outages. -None around midnight. -Clam Clock in the home for quarrymen. - -- Don't know how far the flickering goes between - Seaward & Dunbold Castle. -- Happens towards the pylon, crackling in a - horizontal pattern & doesn't go past the pylon. -Crystal has thousands of tiny runes all around it. -None of the runes seem to have been tampered with. -Crystal is very clean. -- Meteorites sometimes come down. - -Geldrin touches the barrier with his crystal shard -& it goes crazy. Guard said it seems like -the flickering but more intense and didn't go as far. - -Justicar - just checked the books & the crystal with -a eye glass. -Peridot Queen. -Iaxxon - guardsman - guarding quarry, water elementals -rushed past him like he was in the way not attacking him. - -Sleep - get horses & leave for quarry. - -Day 13 28th Dec -Follow barrier - see ripples, seem worse the further away we get. -Duration & frequency don't change. Pylon seems to be bringing -it back under control. - -Ground is very dry & loose - not many plants. -Get to a quiet point - see a horse in the distance -coming towards us. Green, tall elven woman, black hair, -looks very, very extravagant (Peridot Queen). -Strokes my face & joins us towards the cliffs. - -- Worried when she looks at Geldrin. -- She's seen all 5 pylons. -- Made it to the cliffcutter town. Murky, dwarves & gnomes. -- Barrier problem seems to originate by the cliff. -Track towards the barrier by the cliff. 21:00. - -* Cliffs are sheer drops with rifts & barriers. -* Water is choppy & quite dangerous. -* Recently cutting close to the barrier. -* Break into a tool shed for the night. -Wind picks up outside for a moment. -* Barrier around the cliffs is the emanating point, about 20 mins away. -* Not much wildlife around here. 23:00. - -Morning wave sounds are getting louder - Peridot goes, -and 2x sea creatures rushing up the sides of the cliff. - -Day 14 29th Dec, 06:00 -Elementals come over the side of the cliff & -reform as bulls - they follow the path away -from the barrier. - -Peridot Queen arrives - has wings, appearance of an elf. -Geldrin, Invar & Peridot Queen go down in a lift right next -to the barrier (1 meter away). Mine shaft with some wooden -structure beams, branches off away from barrier & parallel. 08:00. -Further down, wooden wall constructed saying "danger of collapse". -Hear creature. Man stood there, human with scar, -pushing a plank back into the wall. -Peridot Queen pays him one of the old copper coins. - -Transforms into a green dragon. -Incident a few days ago came, 30 years not had any problems until now. -Beasts like bulls shot up from disturbed part, towards the wilderness, -shrieking like a banshee. -Gnome says "smell like candy & has legs" probably lies. -On dwarf has barrier duty & found a small crystal on last duty. - -Fly out of the shaft, and Aliana & Dirk see a shape. 8:15. -See a group of miners, a dressed differently human comes over -to them and points to us. Human walks off towards the barrier. -- The dwarves then attack us: 4x dwarves & 1x gnome. - -Gnome throws a blue rock on the floor. -A small elemental comes out & attacks Geldrin -(possible spell effect). - -Manage to knock one out & the guards come over -& bring him round. He says: -"He's coming, Terror of the Sands is coming for you all." -Guard knocks him back out. - -Guards take him back to town. -Private Burke wants us to visit the station before we leave. -All have 5g & old copper coin. -Gnome has two other blue crystals. 8:50. - -Gets to 9:00, more obvious flickering but nothing obvious. -Believe the human may have come through the barrier. -The human came from approx where the point of origin is. - -Invisible Joy appears and tells Dirk they are in pain -and it burns - asks for Dirk's help. -- The thing causing the barrier issues? 9:50. - -Follow the salt trail from the water elementals. -Salt trail thins out but no sign of them. -After a time land becomes more lush (approx 7 miles -from the barrier) with insects which we didn't see before. 11:00. - -River ends on the cliff and comes off in a waterfall -(shallow river). Path ends at the river, about 20 years old. - -River appears to contain water elementals. -Elemental says: -"Pain gone, no hurt me. -You come take me like others, take we escape -through pain, closest good water." - -Geldrin frees the two in the blue crystals. -Elemental wants us to free the rest. -Death dome - came through hole made for poison water. -Hole hurts, in the sea. -Elemental stealers trying to free some creatures trapped underground. -Poisoned one - made of poisoned crystal one. -Powers death dome. Garadwal was one with the moon rock -but escaped. - -Scaly dragon with web fingers goes through dome - -blue/grey colour. One big one with four arms & tridents, -poison water, & Garadwal with tridents. -Hole by cliff face at bottom of sea. -Occasionally somebody/thing goes down to annoy the crystal. - -Head back to the town to speak to militia, 13:00. -Salinas - earth & water - the guy our attacker is talking about. -Soon free like our mother Garadwal - sand, earth & fire. -Barrier is enslavement. -8 altogether - soon find hidden lair of oppressors, -used as batteries. - -Element diagrams: -Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. -Second diagram includes salt, ice, lightning, smoke, magma, sand. - -Theories: -- Needs of the many outweigh the needs of the few. -- They tried to destroy the world & got locked up. -- Preemptive locked up. - -Water back: 10 miles down the path from Seaward (firewise), -10 miles down the coast from the barrier. - -Head back to quarry. 16:00 / 18:00. -Door in the lift right next to the barrier. -2 panels missing from the hole. -Passageway descends down behind the wooden panels. -Goes down quite a way - has been excavated on purpose, -not a mantle seam. Widens out & opens to a real old -built wall (1,000 years old). Opens into underground structure. -- Right old door - sign of aging, handle hurts. -Old gnome walks out, realises we are there. -Gives him a coin. "Underbelly?" - truce in place. - -Get a tour prison: -Down corridors, turn left many times. -6 corners, huge metal door - dragon clearly holding ring. -Go through - see barrier at far wall. -Smaller barrier encompassing a massive salt dragon - -sweating salt for 20 years into the earth. They are -trying to free it. -Room was full of odes & ends & copper pylons were there -but they removed them. -Runes on floor barely visible as covered in salt. -Another room has 4x curved copper pylons, removed 20 years ago - -dragon was already seeping salt. - -- Keep Justicar out of it down here. -- Down to the left is the original entrance. - Go look at it - similar to a room we have seen before - in the observatory? Examined in the last 20 years. - -Big black dragonborn comes in - Turquoise's boss, not many around. -- Cult looking for a laboratory. - -Basilisk - there's a laboratory of a similar vein -20 miles earthwise along the barrier. - -Head back to town. 20:00. -Common room - sharing with one other person who hasn't shown up. - -* Message to Basilisk * -He comes to us. -Knows little about salt elemental. -Black Scales - mercenary group, work for Infestus (black dragon). -Basilisk went to check observatory - couldn't open the chest -& couldn't get in the golem underground room either. - -Garadwal: -Prison at lake by lab? - ooze one. -Frozen near Rhinewatch - ice one. -Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. -Is he an elemental? - -Go speak to Elementarium guy in Seaward. - -Day 15 30th Dec -Head back to Seaward. -Follow a caravan of stone back to Seaward. -Get to town - raining. 19:00. -Need to see Elementarium; actually dressed this time. - -Quasi Elementals - don't have their own plain. -Known 8 major plains; light & dark effects to create the 8 main ones. -They became their own things & started to fight. -Not become that powerful. - -E + W + L: ooze/slime/life - spark of creation. -E + W + D: salt - makes water bad & crops won't grow. -E + F + L: metal - positive construction. -E + F + D: magma - destroys farmland etc. -F + A + L: smoke. -F + A + D: void - absence of everything, nothingness. -A + W + L: ice. -A + W + D: storm. - -Where does sand come into this? - -Goes down the trapdoor after talking to us about salt water elementals. -Dirk listens - talking to somebody about it. -They don't exist. Salt & water are their own things. -Pollution. Salt elemental poisoning the water elemental. - -Dirk - crystals helping the barrier? Elementarium believes it, -but he needs the Justicar to believe it so she leaves. -Geldrin to try to sway Grand Towers to get her to leave. -Rhonri or Revir might have an obsidian bird to relay a message. - -Arrange to meet back with him @ 9:30. -Dirk asks about Garadwal - he goes down to -the chamber & retrieves a dwarf skull & asks -it the question about Garadwal. - -The information you seek is not for your kind. -He is imprisoned in the prison of the Sands. -Brutor Ruby Eye - troublesome being, wizard of great power. - -- Shows us the skull room - he talks to them for information. - -What would happen if Garadwal escaped? -It would be bad indeed. The barrier would be weakened by the loss -of one of the 8. He was the only void they could find. -If one was to escape it would be him. -Feedback from the destruction of his prison would have damaged the others. - -Geldrin tells him of the tri-moon shard. -Brutor knows of the first crack. Envoi was tampering with it for his -own means, tampering with the containment device, & if something -happened to him it would be bad & cause the crack. -Wizards didn't agree of their entrapment but they all agreed -Garadwal needed to be contained. -Ooze was a good one. -Ice & storm were put in the same chamber as land was tricky to be dug. - -Stop leaking? Maybe sigils out of whack. -Brutor killed by black dragon. -Demi lich - how he was made. -Maybe a way to reverse the polarity. -! Spinal! Brutor's password. -Winter Roses? Envoi's password. - -- Halfling killers. -- 8 things linked to the poles. -- Pirates. -- Elementals. - -Received downpayment for our work so far: 200g. 20:30. - -- Put horses into the stables. -- Stay at the Night Candles. - -Day 16 31st Dec -Head to town hall to see Rewi Lovelace - gnome. -Room is very messy. -Obsidian raven is pulled from a drawer, called Errol -(but not really). Justicar causing more problems than solving. -Request further evocation spells. - -Rewi - thinking on how to enhance the pulley system at the cliffs. - -Retrieve horses & cart and head earthwise. 10:00. -Limit: sis poor? -Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. -Continue earthwise towards Newhaven. -Land starts to get lusher & seems to be at the edge -of the salted area. 12:00. -Lady at a well - the only freshwater in the area. -Others have been boarded up as water is bad. -Mayor runs a farm - keeps chickens. Full up water skins. - -- Road out of Newhaven in disrepair. -Outside of town grass dries up again. -Town seems to have good water as an anomaly. -Not many birds around. - -Nothing around to indicate a laboratory. -Obsidian raven appears - suggests meet up with Justicar & work together, -wants our location. Don't give it to him. Flies back to Seaward. - -Keep going to 10 miles away & 1 mile from barrier. -Find charred earth - last few days - campfire & rations - cultists? -See some tracks, 5-6 people camped. Prints show they are searching -for something. -Nothing obvious. Follow tracks towards barrier; they stop & we see -acid corrosion & blood speckles which look to be swept over. -Black dragons have acid. Green is mist. - -Geldrin checks the compass & we follow it about 30ft down. -Find weakened signal, see purple, & find 10ft stone walls with a door. -Password opens it (Spinal). - -Enter into chamber. 2 golems in dwarf form guard a door. -Spinal opens the door. - -- Go left down corridor. -Enter large room - stone benches & lecture seats (seat 20-30 people). -Jagged rock horn - representation of Tor. -"Tor Protects" written underneath statue. -No visible disturbance to the dust. - -Book on lectern - Book of Ancient Dwarven language on Tor. -Head across the corridor - room, same size but only contains -teleport circle (one set). Geldrin takes rune number. -Dirk finds footprints that have tried to be covered up & lead -down the corridor. Fairly recent, could still be around as have -gone back on themselves. - -Follow footprints to a closed door. Footprints seem very purposeful. -Ruby in the dwarf face releases some chains which open the door. -- Use my crowbar to hold both of the chains to keep the door open. -Geldrin sets an alarm on the hatch & teleportation circle. - -Go into another door (2nd left from the hatch). -Purple glow from the room. Paperwork on the walls of pylons & tower structures. -Bubble of shield energy in the middle. -Scaled model of the penta city states. -Suspended globe of elements at each of the compass points. -There is a city Fire Airwise of Lake Azure half way between the lake -& Aegis-on-Sands. -No sign of any of the prisons or labs on the model. -Elements don't move. - -Teleportation circle activates. Retrieve crowbar & hide in diorama room. -1 person seems to come out & goes to dwarf face door, -to door opposite us, then over to us. -Tanned skin gentleman comes in - human, desert style robe, -Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. -Has found several circles & he is a collector of magical trinkets. -Make a deal - he gets all the coin/gold/silver & we get first pick -of the treasure. He gets the next, then we get 3 other picks, even split. - -Lounge has a scepter that seems out of place. -Dirk takes it and an alarm goes off. -All doors are now arcane locked. -Go back through dwarf face door. -Go left. Mouth appears and tells us traps are active. -First door - ten skittles at the end of a lane, -poker table & darts board with 3 darts in the 20. -Poker table is magical; whole room is magical. -Next door totally empty room... -Next door - silence spell goes off. Room is full of rows & rows -of crystal balls. Memories but we don't know that. -Back in the lounge hidden room behind the dwarf portrait: -blank paper & non-wounding dagger. Paper is magical to write special, -& silence spell stops. -Go back to crystal ball room. - -Memory of goliaths helping to build grand towers. -Find the ball with the most scratched plinth - memory is filled with dread. -Acid smell like house, scarred by acid & dwarf skeleton. - -Get one near grand towers ball - see 4 other people in a circle -around teleport circle: human (male), elf (female), human (female), -halfling (emo), purple crystal rises up from the circle. -Before acid splash, see lounge talking to Envoi, asking about if it's -affecting anything. Joy sets off the alarm. -Ruby Eye takes the dagger & splatters blood and stops the alarm. - -Before - fields of white roses. Envoi talking to elven woman from circle. -Joy & dwarven lady next to him. Feel content but forlorn when looking over -at Joy & Envoi. - -Male darkish elf next to Envoi being introduced in observatory - -tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. -Envoi wearing 5 rings! - -Hot Spring - opposite dwarf lady (Brookville Springs), early date, -falling in love. - -Standing in a room in his building: purple dome & copper pylons -with blackness & a shadow. -Ask shadow what it thinks. Shadow replies, saying no, not yet; -it is trapped & threatens calamity. - -Nice room, intricate vine patterns, elven mage asks about change - nothing. -Browning retreated to grand towers. Glad she is here, -worried about it - warm secret. -Think Browning is going to cover it all up; thinks if people -know how it works then they will ruin it. - -- Last one - see him in mirror wearing robes. -Book & chain with staff, looks down under mirror, -head on floor, stone opens up showing skull. -Puts 2 crystals in chanting & "Tor Protects". - -- Pythus Aleyvarus? Blue dragon. - -Ruby Eye seems to have planned the dome: -5 pylons & 5 more around the Grand Towers to make it work. -Early periods where he's protecting towns from elementals. -Group all fighting; when it breaks 6 armed rock creature, -they all make a pact. - -- Male human points him to a crater with a massive purple rock - & Envoi says he will build an observatory to track it. - Brutor says it is what they need. -- Warring kingdoms - join together to construct everything: - Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. -- Turning on of the dome at the point of turn on, something flaming - bursts through and Browning bursts through the barrier & is attacked. - -Room opposite - big engineering astrolathe, seems to be the planet -which is a disk, with the moons and their orbits in real time. 15:00. -- Display shows the date & time - current date 31st December 1011. - -Room next to orbs. -Protection from Elements spell. -Open the door, boulder elements in there & try to get out. -Slaves? Made to dig - leave them there. - -Down the corridor. -Room same place as calendar room, not locked or trapped. -Room is empty, mirror image of calendar room. - -Opposite to boulder room: -Smaller room - empty aside from picture of moon holes, look like big gem holes. - -Opposite orbs: -Feel weird opening the door. -Glass cabinets in pedestals & shelves with various nick nacks, -brass plaques & glass domes over them. - -Curved with flowing water - bottle "Containment taken from Lord Hydranus". -Stone at the top 2 are glowing. -Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). -Magic bounds / magic missile. - -Great sword - stone & bone hilt with steel, dwarven steel, -blade in friendship. Sword given by kings of the goliaths. -"To the spell ones on the crafting of your big building." - -Codebook holder - with a book very delicate: -"Book recovered from grand towers upon discovery." - -Celestial dwarf mannequin, ornate green silk dress, gold trim -& tiny emeralds along the trim. -"Worn by Princess Seline to the Grand Ball." - -Cushion - small red gem, garnet. -No plaque. Size of the moon holes. -Coin press - grand towers pennies. -"Press used for souvenir pennies." - -Jar - eyeball in fluid, "My Eye". -Scrying eye, can scry once per week. - -Book - sealed not open, made of tan leather & looks unsettling. -Platinum lock. Human teeth are around the edge. -"Noctus Corinium Grimoire" - lock looks like it's an addition. - -Plinth wheatleaf - pillow with marble cube radiating yellow glow. -"Drixl's Cube, a gift from the golden field halflings." - -Bottle - wine shaped, "first pressing of Siggerne - midh-iel", -Maiden's dew drink. - -Ring - looks like Bushhunter ring, ring of protection +1. -"Failed attempt to recreate my stolen ring." - -Comb - dragonbone & jade, details carved of a forest. -"Gift from the elven princess to my wife. -She never got on with it." - -Scepter - silver, fine golden filigree, white seaward gem in the top. -"Staff gifted by the merfolk of the great sea." - -Gem writing: -"Time existed before me but history can only begin after my creation." -Celestial book - tower seems to be the centre of the world & -don't know where it came from. Clues: Geldrin got a vision when reading it, -saw 6 primal elements looking down on the world. - -Geldrin's alarm goes off - see figures at the end of the corridor: -4 burly black dragonborn. They hear alarm. "The alarm's going off, -someone is here" (Draconic). - -They want us to leave, claim it in the name of their master. -Shields have mosquito on it. -Create a shield wall & we yank crowbar out. -Fight: -3 1/2 swords -4 shields, mosquito -70gp -4x tower pennies -Obsidian bird - Errol. - -Errol - last message was gnome giving our location (Rewi) -to black dragon? - -Red gem found under plinth under Celestial book: -"The floor of my ship is decorated in equal parts -with riches, tools, weapons & love" - games. - -Next room - walls & ceiling are blackened - kitchen. -Nothing in the oven. -Jar contains gem: -"The rich want it, the poor have it, both will perish if they eat it." -Nothing? - right here. -Barrel seems magically sealed - rune for the cold beer. -Contains a jar with a hand in it. -Hand is ruby eyes and has blood which stopped the alarm. - -Next room is warded & locked. -- Previously empty room is now full of books: - control earth elementals, Tor, gems, for spells, wards. - Information on how to construct crystals for magic. -Gem inside a book: -"Although I'm not royalty, I'm sometimes a king or queen, -and although I never marry I'm only sometimes single." Bed. - -Summon unseen servant in the elemental room. - -Gem, Elemental Room: -"In my first part stir creativity & in my full form I store the results." -Museum. - -Gem, Orb room behind an orb: -"You have me today, tomorrow you'll have more. -As time passes I become harder to store. -I don't take up space and am all in one place. -I can bring a tear to your eye or a smile to your face." -Memory - orb room. -Memory is: "If you got here you got my message. -Only clue is based on the layout of my rooms. -When you get inside you'll know what to do." - -Gem, Calendar room: -"I guard the start of this recipe, just scramble, hidden." -Kitchen? - -Bedroom - seems to have a woman's touch, tapestries, -rugs etc., wardrobe drawers, full length mirror, -chair, fireplace. -Compartment under the mirror - skull with 2 gem stones -rolled up paper in the eye socket behind big gem. -If you feel like lived a good life, this is the Denouement -(final part, finishing piece). - -Gem in the other eye: -"They are never together, yet always follow one another. -One falls but never breaks and the other breaks but never falls." -Calendar. - -Put all of the gems in the slots and room opens. -Purple sphere that doesn't let light through. -Void creature? Won't used as it may have been too weak. -- Seems to be a self contained barrier. -Void creature wants to be let out. -- The diviner - the one who stole his brother - the twins we killed. -Mechanical trap activates something in the room. -Magical trap teleports to the room. - -Pythus takes creepy book & Celestial book. -Dirk: sword / scepter of the merfolk. -Me: coin press / cube. -Invar: ring of protection / potion bottle. -Geldrin: spear / eye. - -Pythus gives Geldrin a scroll of teleportation & goes. -Geldrin takes eye & scrys on Pythus. -Sand stone cavern, pile of gold on top is a blue dragon -(serpent-like), reading the skin book full pages made -of cured human flesh. Seems to be at the edge of the desert -near "Salvation". - -Back to void room. -Will tell us what is in their room in exchange for freedom. -What is in the room will help release him. -Rubyeye wanted to live forever. -Went in with elven woman & dark male (Envoi). -Just a fragment of the void, but if added to the others -can get more powerful but only a tiny bit. - -Inside a key looks like pylons placed against a barrier -circle of copper and turn it - talking like barrier isn't active. -Pylon for his prison as well as another. - -Use the ruby to open the door, then destroy it. -Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. - -Go through door next to void. -4 plinths - by the door are 4 copper pylons, -look like they would go over rods/force field. -2 metal circles, runes all around (copper). -1 - steering wheel size. -1 - over a meter, stood upright. - -3 - dragon skull, Alsafur dog size. -4 - book, same lock as on the creepy skin book, -made of leather - unpickable lock. - -Possibly storing one of Envoi's rings - it was under the skull. -Skull is one of my kind - Veridian dragonborn, -dead for approx 1 thousand years. - -Envoi's ring: -- a sacrifice made to live eternal, father & daughter. - -Book writing around the edge - old dead language. -The memories & learning of Atuliane Harthwall. -Needs a powerful identity spell to learn the command word -to open the lock & book. - -Mosquitos, woodlice & moth are now around. -Rain storm. -Void will help as long as he is not detained. -- Lightning strike is seen although underground. -Try to let void out. - -Push pylons against his dome - opposite pylons seem to switch it off -very slightly. Ring by the dome turned & attracts to the pylon. -One full turn releases the dome in that quadrant. - -Void releases a circle of obsidian to control him with. -- Take his ring & book & small ring. -- Remove gems from the moon face lock. -- Head out & close the initial door behind us. 18:30. - -Massively overcast with the storm. Air is thick with insects: -moths/mosquitos, ants etc. -Circle of storm 1/2 miles wide, moving unnaturally. -Push of barrier looks like 8 massive claws pierce through - -black dragon looks to be trying to come through the barrier. -He wants the remains of his son - seems to be the skull -in the sealed chamber. - -Go back & get it. -Missing the side of his face - think Rubyeye did it, -but he may have started it by killing his son. -Place skull near barrier and he has crystals on his scales -which part the barrier a little but still hurts him. -Takes the skull & says we are even (for killing his men). - -He flies off & Thunderstorm goes with him. - -Head back to Newhaven with the cart. -Go to pub - picture of 5 hands together making a star. -Silver dragonborn behind the bar, golden rim spectacles, -halfling wait staff, tabaxi bar maid. -"Gelandril Harthwall" been here 10 years. -It's said the 5 wizards used to meet here. - -Sleep. - -Day 17 1st Jan / Tri-moon -Goblin looking for us - Scum had a message for us. -Find Scum as we leave the pub. -Apparently warrant for our arrest: -Treason - conspire against the Towers to break barrier. - -Scum - telling Elementarium to meet us with Ruby Eye skull -(1 mile outside Seaward). - -Sent message via Errol to Grand Towers saying we are going -to Everchard to put them off the scent. - -Message to the Basilisk: arrive at possible meeting point, -waiting for nearly 3 hours. -Cart comes off road with a human onboard, don't recognise. -Seems suspicious. -1 box contains Grand Towers pennies. -Council ask for him to transport to Fairshaw - The Cart -(Garick Blake). Looks like the gnome sent it. - -Dragon notes: -Silver - Harthwall. -Copper - Spruce, white. -Black - Infestus. -Veridian. -Blue - Pythus. -White - the ancient. -Red? - Soot. - -Manifest: -1 currency - Towers pennies. -1 provisions - ash jerky??? -2 armaments - spearheads, copper ends, trident heads tipped in copper. -1 waterproof papers - reams of enchanted waterproof paper, - salt water only. -1 tar. -1 tools - heavy duty, ship building? -1 misc goods. - -Should have gone out in 2 days with guards. -Invar knocks the driver out. -See what looks like Elementarium riding towards us. -Gnome seems to be trying to clear the decks. -Elementarium doesn't know about the spearheads etc. -Wants to set up a meeting with Lady Harthwall. -They have a council to discuss security matters within the dome! -Gives us the Ruby-Eye skull. - -Jerky bag contains a hemp bag - pungent sickly sweet smell, -reminds me of rose spice, but narcotic. - -Ruby Eye: -Infestus' son - spawn of evil - needed a powerful sacrifice -for a friend (Envoi). -Salt dragon leaking - worried tampering with the life may have weakened -the force. -Reinforce the barrier - if we don't weaken the barrier, possible fix -by refilling the voids, or safely disable the barrier - turn off with -the fail-safe button in Grand Towers. -Weird skin book - grimoire Noctus Caerulium - forbidden magic. - -To stop Tri-moon shard we would need to fully redo the dome. -- Create a device to repel it but barrier would need to go down to do it. -- Relationship with the merfolk? Fish men, different people, - then those invited into the barrier. Great helpers to set up barriers. -- Thinks Browning had something to do with goliath settlement - disappearing from the history (must be clues). -Green dragon seems to be residing in the area. -- White Dragon helped to build the dome. Reds, no blues. -- Elementals liked to attack & this is why the barrier was put up. -- Tower was perfect place but needed more. -- Backup plan for the void elemental stashed in his safe, - if not there need to find another. - -Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. -Tells us to get on the rune. -Appear in a lush castle room at Harthwall. Sat at head of table -seems to be Lady Harthwall; stood beside is Sister Lady. -4 chairs by the rug. - -Rip in the sky - Basilisk appears with: -Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). -Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). -Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. - -Catherine Cole vouches for me -Valkarige vouches for Invar - -Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. - -- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. -- small group of like minded to protect the barrier want to maintain stability of the barrier. - -News reached them about the fragment. - -Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. - -- Green dragon responsible for destruction of Dirk's homeland. -Rubyeye blamed Dirk's kind for helping the dragons. -It's said Verdilun dragon is shacking up with the red dragon. - -* Keeley Curdenbelly's research maybe of use (the "liver" in the desert) - -1. head to merfolk -2. get crystal from the water -3. speak to ancient one - -We passed off the twins mum. - -Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical - -- leeching elemental prisons -- Garadwal -- void on the loose -- shield crystal in the sea. - -World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. - -Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* - -Gave him the coin press and told him the coins in the cart were a create of them. - -Back to our cart. - -Head down the main road toward Fairshoes. 5:30 - -Start hearing birds and animals etc. 10pm -Find a place to camp for the night. - -Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. - -Back on the road. -Uneventful day heading to Fairshoes. - -Make up camp again. - -Nothing happens. - -Day 18 (Friday) -2nd Tan with Finnan -16 days until Timnor - -Day 19 (Saturday) -3rd Tan -15 days until Timnor - -- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. - -Go through town to the harbor to get a boat. - -* Temperature is oddly warm for this time of year and this close to the sea. - -Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. -Cabin 17. -Figure head is a wooden shield crystal. - -Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. - -Hostess lady chants and brings forth great winds and a storm. - -Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. - -Merfolk - they've never done that before. - -- Pirates - has been attacking people more recently. -- creatures that can petrify others by looking at them. - -150g if we need to fight. 5g if we don't. - -* Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. -* Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. -* Silver Dragonborn - Bard - recruited. - -Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. - -Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. - -Salinus? He calls on Salinus - worm - calls forth salt elementals! - -Kill him and his crew. - -- free passage on any of their ships and 400g -Receive Scimitar +1 - attune for water breathing. -Kairibdis' Pistol of Never Loading +1 (D8) noisy. - -Retreat to cabin with a cask of rum. - -Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. - -This is the only town on the Isle. -Turtle men seem to be the locals. -3rd road left 3 building - Sailors Rest. -Take a shrine tour - Shrine to the great Turtle. -Merfolk - the accordionman - look after the Turtles. -200g life gem. -We stand on the back of The Great Turtle. - -Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. - -Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. - -* Water gets up high on a trimoon and covers the building. -* Tell the guy about our fight with Kairibdis - Walter. -* Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 -* Takes us there. - -Old town in disrepair but one dock looks fairly well maintained and repaired. -3 houses look decent too. -First house closest to us seems to be lit. Creep up to look in. -4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. -1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. - -Both other huts have lights. Furthest one seems to be more secured. -One has a conch and calls and says kingly comes now. Wait around for him. - -Water comes back. -Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. - -11 fish people carrying things. 15 overall. -Something seems to be coming by barnacled sea cows. -10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. - -8:30 -9:20 -10:00 -Chariot back pulled 10:30 - -Creature stops and sniffs as they are being watched, tells them to search for us. - -Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. - -Need all or the plan will not work and he will be cross and he will be worse. - -- Think 6 armed creature will attack our ship for the weapons. -- go back to Turtle Point. 12:00 - -Plan to go to Freeport instead of Baytail Accord. - -- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. -- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) - -Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. - -- Tell her what happened - 10ft 6 armed thing is an Excellence. -Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. -Dunhold Cache information. - -Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. - -Recommends to speak to merfolk of Lake Azure for Dirk's city. - -Shipment - get a small unit. -Sahuagin have one of the conch's (8 in existence) Kiendra's. -Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. - -* one of the Merfolk will come with us. -Pact leader Freeport - Tiana. - -Day 20 (Sunday) -14th Tan 1012 -14 days until Timnor - -Stay in the barracks for the night. -Dirk has a strange dream about a goliath sitting -on a granite throne looking concerned, two females tending -to a dwarf, who will live but will lose an eye -(Rubyeye), fought well. *changes* Savanna scene: -dancing around a fire with a granite city in the distance. -Face in the fire ?Enwi? then Jagg? then disappears. - -Head towards ship. -(Merfolk) Guardfree - states his mistress has been -working on misdirection. -- get food brought to our cabin. -- Journey is uneventful luckily. - -Oddly a busy bustling city mishmash of styles. -Rainbow ship is docked here. -* Quartermaster loads shipment onto our cart to -take with us. - -Baroness Lavaliliere - head of Freeport. -No taxes for trade here. -Newspaper: -* Ancient takes flight - left his home for last 1,000 years - moving to Snow Sorrow. - -* Fighting still going on in the mountains near - Highden - good taking a beating. - - paper seems to be propaganda. - -Go shopping. -Esmerelda - magic item shop. - -Go to see Tiana at the Siren & Garter. - -Expecting a group of 40 to help fight Excellence. -- They are mortal & can be slain. Delights in bossing - the mortals around. - -Baroness - seems good but lets people do what they -please. Although can be random with which groups -to dispose of. Latest one around a week -ago - a group of bound elementals & gems - fire & water. -- another group selling archeological items from desert - Tabaxi - awakened etc. -Ceased the goods. - -Go find the Basilisk in a private room. - -Highden - being attacked by a Fire Excellence. - has something in for the dwarves. - -Investigated the crater & found an old lab -but unable to get in. - -* Friends on the council meeting with the ancient - around Snow-sorrow. - -* Azureside - reported perodotta & spawn amassing - in the area. - -* Arabella kidnapped again - targeted attack, - faces removed. - -* No forces available - zinquiss will meet us - at the harbour + 1 other. - Baroness neutral party, fairly reclusive - following her predecessors' ideas. - maybe something similar to Lady Harthwall but - is not a dragon. - -* Told about copper weapons - paper - Maelcolm Jethnes - & Earl of Fairport involvement in the shipment. - -* Get a dagger from Basilisk. - -Lesser rift blade - Dagger +1 - 3x charges. - 1 charge for dimension door. - 3 charge for teleport spell opens - a portal open for 5 seconds. - think of the place to - go - big enough for a person. - 1 recharge per day. - -Harthwall 2nd most -Common last name (Browning 1st). -Always been a Harthwall in -charge of Harthwall. No -Records of relative. Very reclusive -family who don't appear in public until the coronation -ceremony, only seen together to hand over the crown. -(possibly disguise self spell) - -19:00 - -Go back to see Tiana again. -get another guard - Guardfree. - -Pirates Pearls Plundered - Icky lower. -Poor Gut Refuge - -Cheeky Thimble Rugger - -Go out to the cart - Dirk notices the padlock -has scratches on it. The scratches look uniform & -pattern I recognise but don't know why. -Upside down thieves cant - "Drunken Duck" -& scratched with claws like mine. -change the markings to Everchard. -look into parking & Guardfree keeps watch. -Darker in Bugbear next to lizardman. - -Head over to the temple to give them the spear. -Female half-orc comes to speak to us - hand over the -spear & she goes to check it out with others. -Donate in exchange for help? - -Request an audience with the higher -power to discuss - won't be here for -3 hours. - -- go to get lodgings at the Pirates Pearls Plundered. - -- Crab man in charge - icky. - -- Baroness grants us an audience right now, - young for an elf. - -Room is odd - paintings are the predecessors all -wearing the same necklace (like a mayor necklace) & -lots of jewelry. - -Desert relics - thought maybe they belonged to an -old friend - long time ago - Velenth, Cardonald, -- worked for her before coming here - willingly. - -Vote 12 heads who vote who has -the ability to uphold a very specific set -of ideals. - -Other things taken off the street because -she doesn't approve of the cult. - -Will loan some forces - Proviso - she gives us -information about a laboratory. Can we get -a red gem for her, hunt but not as hard -as diamond in the workshop. -Gaping hole in the side of the building. -- Barrier - emergency systems - something else -in there - very young, cheers? she ran. -- Dragon - rumor to roost in the ruins of -Dirk's old city. - -The creature in the chamber thing? -?Goa duck? - no. - -Has the code to the circle & the safe -code whilst the defenses are up. -gives us the lab. - -* Valenth wanted to transfer herself - into an object... - -* Seems a little shook & guard helps - her out. - -22:00 - -Return to temple of Cierra. -Huntsman has returned & comes over to us. -* Huntmaster Thrune. - Ruby Eye spoke to their church often & interested - in runes. - - will provide aid to kill Excellence. - -Ruby Eye thinks we might want to get -the book back from the blue dragon -before she tries to get it, she was -Enwi's apprentice. -- Ruby Eye's best friend wanted to craft - herself into some thing & continue in - that form. - -Spear was a gift from a Huntsman of Cierra -but it's actually an arrow and there were 5 -of them taken from Cierra's last battlefield. - -Back to Pirates Pearls Plunder. - -Guardfree - will get his mistress to bring guest shells. -- Try to plan what we are doing. - -Day 21 (Monday) -6th Jan -13 days until Tri-moon - -- We all have dreams that are tinged with - cold. - -- My dream - in family home, sibling playing - happy memories, looked at town hall but looking like - a crater but in fact a black hole - pulling in more buildings. Hear a voice: - "Where is he I know you hide him" horrible - voice. Panic & turn then wake up (looking for Garduul?) Void! - -- Just our room is cold. As the ice melted, - a white dragonscale drops from the icicles. - -Go look for the Captain for a boat. -! loan the boat for 100g a day & 500g - deposit (125g each). - -Pier 12 - large group merfolk 30 + 2 litters - guardsmen 20 (Sergeant has a necklaced - emerald glowing when he talks) - zinquiss & black dragon born (Wrath). - clerics 15 & leader. -- Speak to pack leader Tiana - & other leaders gather. -Get 2 guest shells. -10 spare shells. - -Sergeant takes our -cart to the keep. - -Captain Hween - -Wrath will stay on the -other side of the barrier -once we get there. - -Pack leaders: -Shundra - Turtle Point -Kiendra - Dunhold Cache -Tiana - Freeport -Alana - Riversmeet - -Set sail - sea is calm. -Water seems clear - no noticeable signs of -him yet. - -Merfolk, zinquiss, Wrath, half clerics in the sea with us. -- Excellence seemed to have come from 80 miles away - when we were at the turtle village - so possibly - Dunhold Cache or the smaller islands around. - -& net -Make a pulley system to hoist shield crystal -onto the ship when we get to Fairshaw. - -- Wrath (Colin) middle name. - Request to look for the location of Garaduul - when he gets to Blackstone scale. - -- Island - pass it & nothing seems to happen. -- Arrive at Fairshaw. - - Boat is ceased upon orders from the Earl, - occupants being detained for Treason etc. - Diplomatic mission carrying members of the Pact etc. -- Suspect the Earl is part of the Cult. - - give zinquiss 200g for 4x healing potions. - -- Guards return & tell us to stay on board whilst - investigation takes place. - -Zinquiss returns with 3 healing & 1x greater healing (distributed). -News: -* Highden - Battles not doing well, - strengthened by dragon sightings. -* Heartmoor - People falling ill - surgeons deployed - (Perodotta?) -* Grand Towers - Justiciars leaving to the 5 - points of the penta city states. -* Provinia - locust and mysterious spiritual - event where things keep disappearing. - -Sword blessed +1. - -Day 22 (Tuesday) -6th Jan 1012 -12 days to tri-moon. - -Get called to the mess hall by Tiana. - -Construction under the water & they have made -a gate by raising the crystal up to leave -a gap. Fish shamans taking notes on waterproof -paper also. -Crystal is approx 1m square. - -Can sense Kiendra but no response possibly unconscious -but seems to be in the cavern. - -Split underwater group into two to sort out crystal -& also attempt to rescue Kiendra. - -Approach shield crystal in stealth. - -See - above our field of vision are some sharks who -seem to have spotted us. - -Fight. -- We overcome & defeat mobs at the crystal site. - Kiendra - found & rescued - very weak & tortured. - Find waterproof paper, 3x dispel magic scrolls (geldrin) - & coin pouches - 112g (give to crew). - Big Boss - Spear glowing dull blue - Doom spear +1 - returning - speak aquan. - Suit of plate mail - Plate of Hydran +1 resistance to cold. - -Boat - pretty wounded. -Other party - Tiana's - dispelled shells & got - attacked - Hunt Master missing. -Half orc priestess on the boat wants -to check on the other team for the Huntmaster. -Necklace Sergeant wants to come with us. - -Go over & Huntmaster fighting an Excellence -both very injured. -! Deed Excellence! - -4 mermen -all mermaids -4 clerics -6 guardsmen -} survive - -* Moor up by Dunhold Cache for the night. - -Merfolk recover our dead & lay on the -deck - Priests oversee & I thank each one for their -help & sacrifice. - -Pull up to the cove - lookout shouts -there is a vessel already docked. -Chariot with water elementals chained to -the boat - Excellence's boat. - -- We row to shore to investigate. -Mother of Pearl named Chariot, no other signs of -movement. - -Dirk speaks to elementals & they want -to show us where the excellence live, -will come with us on the big boat. -! Take the chariot back with us 8-10kg. -Zinquiss will sell it at an auction in 7 days, -have the address for the Freeport auction house. - -Day 23 (Wednesday) -7th Jan 1012 -11 days to tri-moon. - -Go to Excellence lair with Merfolk - Pack leader Alana. -* Water ebbs & flows like a tide in the underwater - cave. -* 20ft long crystalline sculpture of a dragon - base has - runes glowing. -* 3 cages & barrels. - 1 cage contains a merfolk - but looks different - green not blue. - Alana seems to revive him & takes him back to the ship. -* Chests seem to be laced so waterproof - contents may - not be openable under water. - open one & contains white powder which I inhale. - Bas, Athal - Salamanders - & Arabic writing. - White dragon circling around the dome. - Rabbits - whole room turns into a black void. - -Two blue eyes in the darkness coming towards -me & really cold & back in the room. - -Other cages - in the middle of the cage they see snail -with a gleam of metal which is a jeweller's chain -attaching it to the cage. Guardseen says the -snail is a bad omen - its been drugged. -Back to ship. - -Merfolk - abducted from beyond the barrier, -him, his friend & wife. Woke up one day -& they were both gone. Wife is nobility -in their pact. (Snewl?) - -Hunt master dispels magic on the snail & -a mermaid appears. -Empire of their people outside of the barrier -captured while on diplomatic mission to the city -of Onyx, doesn't trust them because war between -them & the Salt elementals. -Princess Aquunea. - -- City of the black scales has a "door" into - the dome - Infestus can't use it as too big. - Payment to access is a Grand Towers penny. - -Check out the barrels etc. -- sickly sweet medicinal - potion of magical energy - regain 1 slot - 1 hour. -- silk & parchment interleaved - runes. -- 2x white rose powder. Tiana gives us 1,000g. -- metallic censer (incense holding burning device) - silver? religious? water god? Censer of Noxia. - Ability to enrage & control water elementals. - It's active. - -* Send message to Basilisk. - -Arrive back to Freeport - seems very cold. -Much colder heading back -down to Freeport. ?Rimewalk issues? - -Snowing over the sea, everything very dark & snowy. -Guy shouting the End is Nigh - moon is crashing down -into the city. Ask him which city & he then "it bothered -he dreamt it." -22:00 - -Lots of people having dreams. -Gnolls attacking a village requested backup from -Everchard & Fairshaw. -* Underwater - mermaids - "big cat with metal - wings attacked it." -Happened a few nights ago - same time as ours. - -Head to the Castle to see the Baroness. -Necklace is removed from the Sergeant & he just -walks off. - -* Mermaids - Having a meeting in 3 days at - Baytail Accord to discuss what happened. - We can go. - -The dreams seem to contradict each other, -possibly from the Ancient One - so could happen. -Huntmaster - going to Grand Towers to speak -to the Hunt Lord. -* Justiciar in the city. ?Looking for us. -* Baroness gets us into the Drunken Duck - secret in - Air wise from Jewelry District. - Written on our padlock, on the cart. - Cart still ok in the castle. - -Baroness Master - Valenth Caerduinel. Necklace. -Sister is a ring. - -Go to Drunken Duck. -All the walls are covered in pillows & ?soundproofing? -Red dragonborn -2x tabaxi -Automaton -2x halfling & gnome -} clientele - -Gave me (Axion) Schnapps from the Brass City! -Barman says only the best for the "Little Finger". -He's intrigued by why the 3 best members of the -Underbelly went on a mission. - -- Tabaxi Whisperers laden with 'Dev'. - Traders 'Keeps' from foot to foot. - -Faint noise through the floorboards, raised voices? -Automaton keeps talking about a factory. -Wants to know where the labs are. Tell him -all by the barrier. Cuts down his search radius... - -- Get a private room to discuss matters. - - Send message via the underbelly to advise we - won't be going to Baytail Accord. - - Will go to desert laboratory. diff --git a/tmp/party-diary.txt b/tmp/party-diary.txt deleted file mode 100644 index b81b40c..0000000 --- a/tmp/party-diary.txt +++ /dev/null @@ -1,267 +0,0 @@ -Pentacity Party Diary -===================== - -This diary is a story-based reconstruction of the campaign so far, drawn from all-processed.txt. It keeps the chronology intact while making the events, people, places, items, clues, factions, and unresolved mysteries easier to search and index. - -Everchurch: The Missing Pigs and Broken Memories ------------------------------------------------- - -The party began in Everchurch, a town of roughly three thousand people surrounded by swampy woods, orchards, breweries, and fruit trees. Even though it was winter, one orchard was in bloom. The strange trees had dark bark, blue leaves, and deep red fruit, and were being pollinated by bees slightly larger than normal. The town had no obvious districts, but a larger manor house stood in the centre. - -The first important gathering place was the Cider Inn Cider, a small inn with a beeswaxed floor, cider, and a half-elf musician playing a lute. The local names established early included Father Burnun, a prize fighter; Gelissa, a half-elf; Oric, the innkeeper; and Gristak Brinson, mayor. The party included Invar, a greying paladin-looking figure; Leonard Dirk; and Geldrin, a gnome with wild brown hair and glasses with no glass. - -The first job came from old John Thornhollows, a farmer whose pigs were going missing. Three pigs had vanished recently, but the ledgers only accounted for part of the losses. John had a group of around thirty pigs, yet the details did not line up. His daughters were remembered as Annabel, Isabelle, and Cumberella or Clarabella, but even these names shifted. Five keys on the bar became four with nobody knowing how. The party learned that John's daughters kept the best books and would pay 1 gp each for help investigating. A shepherd might also have missing sheep. Bess had a missing cat, and there were strangely no rats either. - -Everchurch had recently built a hostel to house homeless people. It had not been enough for that purpose and was also being let out, making the inns unhappy. The Earl, a half-orc in black clothing covered with bird motifs, was tied to the hostel and to an anti-tax system. Funds from the hostel were apparently going into the anti-tax, and there was a woman who slid 2 gp to someone for the anti-tax after being told she was eligible. A census in spring charged 3 cp per number, payable in the morning. - -Several small facts began pointing toward missing people and tampered memory. Bushhunter, a registered mercenary and taxidermist, had come to town two weeks earlier and was known for tubes and pipes. The winter apple trees had started fruiting around the same time. Invar had delivered weapons, but the militia was almost gone: only about five were left, despite an order for twenty weapons and ten suits of armour. Nobody could remember the old militia properly. At the jail, the location itself had changed, now sitting where the hostel used to be. The jail had two empty cells, Sheriff Jeremia, a scarred law officer, and two deputies including Bob. There were no official reports of missing people, though there had been a home theft a week earlier and Bushhunter had recently sold giant bugs in frames. - -The militia records were deeply wrong. Forty-three people used to be hired, and a statute charter required a sufficient militia because Everchurch was close to the barrier. The broader figure noted was 1,100 militia for a 45,000 population, and a check was due in a month after the last visit five months ago. Nobody remembered Gelissa except Geldrin, and Invar only remembered her briefly. These gaps in memory became the first real sign of supernatural interference. - -The party then saw a person get up and walk out. When chased, the person's hood fell back to reveal a face stitched below the eye line, a mouth missing a row of teeth, bone-splinted fingers, and a split tongue. He had Malcolm Donovan's birthmark on the back of his right hand. Malcolm, originally a human male from Albec who had been putting up fences at a farm, had been altered by magic. Someone called Guardwell, or Garadwal, was named as the Terror of the Sands and nightmare of the darkness, a being said to consume souls. Stories connected this figure to a sphinx who learned dark magic and experimented on itself. - -When Malcolm was taken to jail, the town's memories shifted again. Jeremia remembered the third Thornhollows daughter, Gelissa, and the homeless people. The party were made deputies and given badges under Sir Alstir Florent. A mysterious fifth person, a human warrior, had been helping the party at the bar and was remembered only up to a fishing trip, around the time Dirk saw a rat. - -Thornhollows Farm and the Swamp -------------------------------- - -On Day 2, the party received the census for John's pig farm. The fifth name on the ledger had been scribbled out and dismissed as a mistake. The census listed Sarah, age 47; John, age 50; Annabella, age 18; Isabella, age 16; Clarabella, age 14; and a connection to the sheep farmer's son. Paternal grandmother Bella was also noted. The farm had two sounders of pigs: one matriarch, three breeding boars, two breeding sows, one sow with seventeen female younglings, another with twenty-one female younglings, and no males. The property included the farmhouse, three orchards, a stable, a vegetable garden, two outbuildings backing onto a hedged sty, planned employment for three hands, and grazing rights at the edge of the swamplands. - -At the farm, the party passed ravenhound-like dogs and met Annabella, who was walking them. The dogs were called craven dogs, a breeding pair with mimicry noises and puppies. The younger sister was on the porch, and three puppies were on pillows near grandma. The books were accurate until about a month earlier, when unexplained scribbling and removals began. There should have been fifty-seven pigs; records suggested fifty-one; in reality there were about forty-six. Six pigs had gone missing over the last two weeks, three recently and three a week earlier, all overnight. Six more were missing in a way the family did not remember. The inconsistencies began around the time Sarah left, and a black cat had gone missing about a month ago. - -The sty had a large dense hedge and no signs of digging through it. Dirk found large divots like frog footprints, suggesting an eight-foot frog. The ravenhounds had ribbited at the dark. The family offered 100 gp to clear the frogs and had already paid 50 gp. The party went into the swamp, felt watched, saw massive moths, fought frogs, killed two, and found bones that appeared to belong to pigs and sheep. Back at the farmhouse, Cleara gave them a tonic allowing use of hit dice, noted as a Potion of Recovery or Succour. - -Walter's Farm, The Chorus, Bushhunter, and the Hostel ----------------------------------------------------- - -On Day 3, the party went toward the sheep farmer. Geldrin accidentally cast a spell while sitting on Dirk's shoulders, tearing Dirk's shoulders apart in a way reminiscent of Malcolm's wounds. After a short rest beneath circling goldfinches and starlings, the party found that the swamp seemed to be trickling into the farms. - -At Walter the sheep farmer's farm, a man in his thirties appeared to have been trampled by a herd of sheep. Four sets of human-sized prints were nearby, one going to and from the barn. The farmhouse door had been latched from inside, the table was smashed, the fire had gone out the previous day, and the upstairs showed a double bedroom and two sets of singles, probably for an older couple. The barn held rows of unnaturally agitated sheep heads and a horrible uneven bleating. A massive pile of melted sheep broke out and was killed. In the barn, the party felt memories being taken. A woman was found dead in the corner; it appeared she had lured the creature into the barn and someone had locked them in. The party connected this to Malcolm and Isabella going missing while nobody in town remembered them except the party and Malcolm's wife. - -Following the birds, the party found The Chorus: an eighty-ish woman in a swamp hut covered in bird droppings, with branches and birds inside. She was blindfolded and her mouth was sewn shut. The Chorus had been having dreams that were not her own. Her apprentice had left. She explained that the magic at work changed memories into convenient forms, which made some memories harder to wipe if they had external anchors, such as Sarah being known by The Chorus. On the Robins' Day, birds had seen Sarah by the hostel, distorted. The Chorus also said someone was moving through the swamp using gas that hurt the birds. She pointed the party toward Bushhunter and toward documents Geldrin needed. - -In the marketplace, the party saw Bushhunter's operation: frames, a suited halfling, an ogre, barrels with tubes and pipes leading to an ear-funnel crossbow, and a masked person with a wagon pulled by a cobra-koi-like creature. The party snuck up, broke the ogre's equipment, and let the gas out. Bushhunter promised to hunt out of town, ideally on the other side of the river. The party learned that Magpie or Xinquiss could be found at the Hatrall great bazaar. - -At the sheriff's office, Jeremia and the deputy sheriff were armoured up, with citizens in patchwork armour including a bear, tabaxi, human, and warforged. The office had news of Walter's attack, a death threat against the Earl with a 500 gp bounty, and Cromwell the forester seeing wagons near Walter's farm. Jeremia and Drang were assigned to protect the Earl, while Hannah and Bob went to the outskirts. The party received a shock dagger. - -The village was quiet. Two livestock-like wagons were outside the hostel, smelling of pig manure and human faeces. Dirk saw rats again, and they attacked. A pig beast broke out of a cart and was killed. The party sabotaged the carts. Two people arrived with four horses: a woman in her fifties with too many teeth and a large mouth, possibly Sarah, and an eighteen-ish boy, possibly the sheep farmer's boy. The party found or noted three patrons or labels: Crimson, Bovine, and Mirthis Fizzleswig; a shortsword; a silver sickle; random herbs; and churches of Tor and Tarber. - -The victims and cart were taken to the church. Many could not be saved; one boy was briefly alive but then died. Brother Fracture examined the cart and remembered that all the militia had been going missing. The party wanted to put victims to sleep and needed Bushhunter's help. Bushhunter, staying at Cider Inn Cider, had a ring with a purple gem and runes needing identification. In trade for his magical hearing powder, the party returned to the cart and saved five people into the church. One was Gregory, a homeless man who remembered being taken by militia and waking in the church after being in the big militia house. Geldrin bought a compass box whose needle pointed to Bushhunter. - -Town Records, The Earl, and the Rescue of the Hostel ---------------------------------------------------- - -On Day 4, 19th Dec, wider problems were reported by town crier or news: Seaweed water spirits were moving; fish men beyond the barrier had massacred people near Dumbold south; stone giants were missing under new leadership by Hyden Goldensoul; cold air froze the River Rhein between Snowshore and Highland Edge; an ancient unknown thing stirred from slumber; gnolls attacked a restored point and cows were missing; azureside cherry crops were blighted, stopping Cereza production; Isabella Nudegate had a 500 gp reward after going missing en route; a grand midwinter festival was due at Brockville Spring; a Peridobit cloaking death was spotted fifty miles eastwise of Arrowfeur; and there was no mention of pigs. Dirk's flower from a tiefling girl remained fresh due to enchantment. The pig carcass from the road was missing and singe marks were present. - -At the sheriff's office, Malcolm was being framed as the Earl's half-elf steward behind a plot to kill the Earl, but this looked like a face-saving move with no evidence. Something was wrong with the Earl. He had asked the blacksmith to increase weapon production even though Invar had just delivered a large supply. The steward said the Duchess of Harthwall had sent him after the previous Earl passed. The Earl had become more extreme in his views. Books showed twenty-seven militia, already only half the required amount, but only four were present. Lawrence Henderson, the exchequer, handled wages. Ledgers went to scribes at night and returned to the Earl at 9:00. - -The party picked locks to access the Earl's chambers and scribe records. Ledger copies revealed that Isabella had disappeared two weeks earlier and Malcolm six days earlier: Malcolm's name was scrubbed from the ledger but not from the copies. Visiting tourists had sought permission from the Earl to take a cutting from the Everchurch tree and were staying at the beekeeper's; this group included Elfin Meadowmaker and two bodyguards. A half-elf remembered Sir Alistair. - -Lawrence Henderson panicked when asked about militia wages. He blamed the scribes and had been taking payment for the missing twenty-three militia. He gave the party 50 gp to keep quiet and offered more information if needed. The town had eight carts, sixteen horses, sixty swords, and only fifty-eight days of town finances left. A safe held a black velveteen case with gems, three treasure chests of gold, copper, and silver, and two bags of platinum pieces totaling 6,000 gp. The Earl's document file was empty, though someone remembered documents linked to Vicmar Danbos. - -Brother Fracture reported Gregory was doing well, though the church had no way to communicate with other churches. Gregory remembered December beginning, then a blank from around the 7th or 8th until waking in the church. He remembered two militia, Stonejaw and Ralfrex, taking him to the hostel. Other people in the hostel included a goat lady from Bagnall Lane. The militia house had been open about a month and still looked like a jail. - -The party marked their cart with a sheriff sign and returned to the hostel. The stone stables held two carts and four horses; the gate chain had a padlock but was not locked. Invar broke wheels, the party released horses, and magical missiles were thrown at them. Inside the hostel, one enemy was Gelissa, marked on the side of her face. The party killed the other guard and subdued Gelissa. Invar restored her mind and wounds, removing corruption. The hostel's first two cells were empty, but around ten townsfolk remained imprisoned. Invar created a lock for the back door. Brother Fracture took Gelissa, militia, and the cart to the barracks to use as a base. - -The party chose to go to the barrier rather than the swamp laboratory. They rested that evening, but a pigeon lady appeared near the camp during third watch and they did not get a full rest. - -The Barrier Observatory and Joy ------------------------------- - -On Day 5, 20th Dec, the party approached the barrier and saw two large carts. Cromwell the ranger was injured, with wounds resembling the accidental damage Geldrin had done to Dirk. Tracks suggested heavy steel boots, possibly a goliath in full plate or Core. The party were halfway between shield pylons. The carts were empty; a large group had gone toward the barrier and a smaller group toward the swamp. Tracks looped back toward town, looking like a single goliath. - -The party followed the larger group along the shield and found people gathered near the barrier. Dirk felt watched, then the party was attacked by a grubby sheep-farmer-like creature. They killed it, eleven militia, and eight townsfolk, while another eight townsfolk were tied up. A black dog thing disappeared after being killed, but the maggot stayed. When the maggot died, it shrieked and the remaining townsfolk attacked. The party located and subdued a halfling girl. They rested, hid the cart, and learned that two twins had been commanding the victims: one twin had gone to the swamp, the other to the barrier and was killed. - -Following tracks toward the swamp, the party found a clearing at the barrier with an ancient stone observatory. It had a marble dome pressed against the barrier and a huge telescope passing through the dome and barrier. It had about ten rooms, no windows, and was roughly a thousand years old. Geldrin's compass pointed the same way as the tracks. Inside, the party found two plinths, one empty and one where Core seemed to have been dismantled. A head clattered off and a rat ran through a door. The library was missing its "T" shelf in Astronomy, likely Tri-moon material. A portrait showed a well-groomed tiefling holding a baby girl: Vixago Eros, one of the five who made the barrier. - -Recent paperwork included star diagrams. A forced drawer held a rabbit/deer teddy with a gold rune-ring inside. The ring resembled Dirk's. A vase bore the message, "part of me can be with you while you study, all my love - Joy." The teddy ring, Mr Sleeps, read, "a pact in darkness made in sorrow to bring back Joy." Dirk's ring read, "a bargain struck in shadow for souls to be held in infinity." Notes measured the Tri-moon before the barrier and twenty years after: before the barrier, the Tri-moon was twice the size of the other moons; now it was four times as big. Geldrin took the notes. The party also took an invisible cloak from a hatstand; objects touching the stand disappeared, as Geldrin discovered when Dirk put him on it. - -On Day 6, 21st Dec, a dagger and a clean handkerchief marked "J" fell to the floor. A teleportation circle room had a bronze feather like the one carried by the other twin, but stronger. Nearby were empty cages, an empty operating table, boxes, guillotine rope, and blood and decay smelling of sea and sulfur. A red door led to a portrait of a young tiefling holding a wolpertinger. In the kitchen, an unused well bucket revealed a horned humanoid skull hundreds of years old, with horns matching the girl's race. A trapdoor beneath an owlbear rug led to plinths with Core's suits; the password prompts rejected "Joy" and "Tri-moon." - -The party found a potion room with a cauldron of fresh clear water and a construct Geldrin called Powerloader. A maintenance door was trapped with electricity, and the building was protected by the same force as the barrier. In a bedroom, a trapped chest paralysed Invar and Geldrin. A construct killed someone upstairs, then the party killed it and shocked the paralysed members back. Footsteps moved around the guillotine room and Joy's room; four guards were eventually killed. - -In Joy's room, the party found a mahogany box with a rune lock, a wardrobe with three empty hangers, and a trapped bedside drawer containing medical equipment, syringe, crystals, ink, powder, a bag, herbs, an empty flask, and three full flasks. Two were recognized as Mirthis Fizzleswig and Succour; one was unknown. Joy's diary showed she had been bedridden about a year. Robots cleaned and fed her. The last page said she felt rough, did not know how much longer she could write, that Daddy borrowed Mr Snuffles again, and that Daddy's friend kept asking about the rings and was creepy. A trapdoor under the rug led to a secret den with a beanbag and toys. Dirk saw visions of Joy saying she should go back up so Daddy could see her, that she felt better but Daddy's creepy friend was here, and that she should go to her hidey place. - -Upstairs, the dome held the huge golden spyglass and crystals around the telescope that broke or focused the barrier. A creature sat with its back to the party, accompanied by two ugly winged eight-foot humanoids and a worm/dog-like creature. It said its master had asked it to observe the Tri-moon, that it had no desire to fight since its counterpart was dead, and that the worm was useful and rare. It claimed the townsfolk had been used to attack the barrier. A brass feather could communicate with its master, named in the notes as Vann or a horrid mechanical hellraiser sphinx creature. The creature spoke of coordinates for triangulation, armies striking next month, freedom from the dome, and the possibility that magic through the barrier would draw down a moon fragment that could destroy Grand Towers and the dome. The being it served lived outside the barrier. The phrase "freedom from the confines of everything" stood out. - -The party asked what would happen if the creature disobeyed the sphinx. It would be found through the pact made in darkness or sorrow, possibly connected to finding Joy. The party learned the Tri-moon is a crystal. The sphinx had been cast out for practising unsavoury magic and was trying to identify two attack locations. The party rejected joining it and killed the creatures. The worm died and seemed to have mind-control powers. - -The observatory contained calculus and notes on the Tri-moon, biology texts, incurable disease texts, and a book on Slowbane, a rare heavy-metal-like poison whose symptoms matched Joy's diary. Shield-pylon cities sometimes suffered a similar sickness, possibly tied to shield crystal colour; sufferers improved when they came to Goldenswell. The treasure included spices, wine, cherries, parchment, platinum, gems, silk, Saja digel or fire from Azureside, and a magical Copper Dodecahedron that Invar identified as connected to spell facts. Geldrin discovered the lamp in Joy's room was a gem. The party levelled after a long rest. - -Further investigation showed the chest was highly magical and designed to paralyse anyone other than its owner. The kitchen skull had a deformity in the back of the skull and looked about a year younger than Joy, roughly seven years old and possibly a thousand years old. The observatory had been built at the same time as the barrier, specifically to observe the moon. Caverns below had been found and used for its construction. The summoning circle connected to towns and cities to import materials and supplies. - -The party sent a message to Bushhunter saying that townsfolk had memories, creatures were slain, they were at the observatory, and Geldrin had a message for Grand Towers wizard Brownmitty. In the waterwise maintenance area, they disarmed the door and found the local barrier directed around the observatory. A decayed blanket and pillow suggested another Joy hiding place. A locked trapdoor with a hollow handle opened using Geldrin's shield crystal shard. - -Beneath were long stone steps, five lights, a door painted with white flowers, solemn music, and water fizzing through the barrier. A shrine on a riverbank held six graves all marked Joy, with everlasting flowers. One had been disturbed. The graves recorded Joy dying in chamber, at age three of lung infection, at age two and a half of unknown complications, at age five with nothing written, at age nine from poisoning, and at age seven from a birth defect with bones left open and raided. - -Following the stream led through oversized mushrooms, huge insects, a cave, and eventually a lake with massive lily pads, frogs, and a flying sparrow. A magical object or presence lay in the lake centre, but attempts to use "tris" and raft to it failed. Back at the observatory, walking around directional versions of the place changed the building. Earthwise had a flower bed instead of a bed and no barrier split, then later dead flowers and a restored split. Firewise had statues of Throngore, god of destruction and decay, and Igraine, goddess of life and harvest; later it had a metal trapdoor to a chamber with eight glass chambers, six empty and two full of viscous liquid. Airwise had missing corridors, bleeding runes, and blood that was slightly acidic. Waterwise had doors, pipes, and consistent layout. - -The Firewise chamber included a featureless human statue with no genitals and an outstretched hand. Dirk joked about hanging a coat on it; Geldrin tried a ring and it fit perfectly, then Dirk added his. A diary suggested attempts to perfect a clone spell matching the Joy graves. The rings glowed. Geldrin copied an illusion spell from an eyeball-fronted book. Looking at the moon with crystalline refraction showed a smaller moon fragment much closer than the moon, halfway between planet and moon and locked in sync. The party believed the moon shard would take another thousand years naturally, but magic through the shield pylons would speed it up. Barrier attacks and conjunctions with other crises seemed to draw the shard closer. - -Return to Everchurch and Journey to Seaward -------------------------------------------- - -On Day 7, 22nd Dec, the party returned to the cart with the box of copper, made a lock for the observatory front door, and took Cromwell and Isabella back to town. Isabella was restored and seemed confident. On Day 8, they returned to the barrier to recover the remaining eight people, whom The Chorus had been protecting. Geldrin painted the wagon white, the party headed back to Everchurch, and birds followed. On the way they met armoured Harthwall militia from Provith, with stag-and-dragon livery: Arith the healer, Hthiman, and an elf woman. The party told them about mind-wipes, citizen theft, missing militia, and attacks on the barrier. The militia reported to Lady Thyrpe. The healer partly restored the townsfolk, though one tentacle arm came off leaving a stump. - -On Day 9, 24th Dec, Everchurch was busy and panicked as memories returned. Brother Fracture oversaw reunions and healing. The Earl had gone missing, the sheriff had taken over and called for help, and Core had returned to town damaged, locking himself in Peel and Core with Mr Peel looking after him. Core could only say "Core da," which Geldrin interpreted as "Core damaged." A repaired Core arrived in the post one day later with only the word "GUILT" on it. Mr Peel had not ordered it. Peel and Core had been open five years, and "The Guilt" was identified as the Earl of Brookville Springs. Harthwall ladies wanted a meeting, but the party were heading toward Seaweed or Seaward. The Basilisk was involved and brought old Grand Towers pennies, annoyed that one had been donated to the church. He advised staying on the good side of mage Justicars in Seaweed. - -On Day 10, 25th Dec, the party travelled with Isabella and stopped at The Wayward Arms, a four-storey trading-post inn with a merfolk sign. A play and music were underway. Two dangerous-looking half-elf ruffians entered, followed by two halflings. Someone hung a giant moth picture. Mirth, a smarmy halfling ringmaster type and famous alchemist associated with Mirth's Fizzleswig, appeared and conjured pastries, wine, and bottles. The party noted to return in three days. Half-elves Yadris and Yadrin were overheard by Dirk saying something about taking their minds off tomorrow; they were problem solvers sent by a lady upstairs. - -On Day 11, 26th Dec, announcements reported high alert in the Pentacity states after barrier attacks, Justicars moving to major settlements, Shields of the Accord reporting an army moving airwise led by the Baron, loggers missing at Pine Springs, heavy blizzards blocking Rimewatch, goliaths from Firewise deserts seeking refuge in Dunenseed and Sandstorm, a six-armed air monstrosity breaching the barrier, gnolls active at Borsvack, a Riversmeet menagerie break-in, Everchurch's villainous Earl ousted, and Hartswell and Goldenswell armies clashing near Hylden. - -The party reached Seaward, a city of perfect circular rings with a central coliseum used for horse and dog races. Roads and buildings used marble-like stone with dark blue veins. Wagons on the airwise path hauled this material. The shield pylon stood outside the main walls. The population was mostly elves, dwarves, and gnomes. The city was run by the stonemasons' guild. The party parked the cart with Payne's horsebreeder and visited The Rotund Rooster, run by Tiffany. Roads were closed by winter; fresh water had to be ordered in. The nearest inns included Water by Earth, Waterwise, and Night Candle on Road 7, third ring. Rumours said water elementals could walk through the barrier. The water problem had lasted twenty years. - -At Seaward, racing and local colour included the Chunky Chicken Cooker sponsored by the Rotund Rooster, Payneful Gamble, Thunderbelch, and other race entries. A halfling asked Invar whether the party had skulls for his green-skinned goblin master, who paid well for clever people's skulls. At Night Candle, the party learned the barrier was supposedly built to keep elementals out, but rumours said they could pass through. A goblin peered into Dirk's room at 3 a.m. - -Seaward Pylon, Isabella's Abduction, and the Salt Prison -------------------------------------------------------- - -On Day 12, 27th Dec, the party inspected the Seaward shield pylon, a gold ring with a crystal set in a claw and runes around it. The barrier flickered for about one second near the pylon, often, supposedly from Dombold Castle, but only over the past few weeks. A disturbance at a temple involved guards carrying out an elf woman under an arrest warrant for public indecency and corruption. A priest believed the council had fabricated charges and that the Architect, Ilmen Thion, was using dark magic to make himself smarter despite worshipping light gods and having Alutha on his left femur. - -At the races, the party lost several small bets but won 9 gp later. Entries included Big Bad Beauty, Wimpy Cheese, Wove's Gravy, The Galloping Salesman, In It for the Sugar, a sphinx-style stonemasons' guild racer, a unicorn, Payne horsebreeder's horse, Rotund Rooster's gryphon/chicken, a nightmare from Night Candle Inn, a wooden barrel from Bud barrel makers, My Missing Hangover, and Truffle Hunter, which won with mice. - -The skull-collecting goblin led the party to a rat-dropping-filled house where he had three skulls and needed five to meet his master. Brother Cashew at the fire temple, dedicated to war, justice, and hunt, said water elementals were not killing but deputies had been found drowned near cliffs with fresh water. Rivers and lakes within ten miles had gone bad. Public records were available at the town hall, fourth ring waterwise. - -When the party went to find Isabella's friends, they found a middle-class house with blood on the parlour floor. Two halflings hung by their feet. The male's intestines were spread over the floor in a pattern, likely divination. The female's body was upside down but her face was right way up. The door had been forced with engineered strength, a candelabra knocked over, no active magic remained, and the divination resembled Everchurch magic. A six-foot clay-like gargoyle arrived, dropped a bag and sopat, and flew off with Isabella. She said it belonged to her aunt's family guardians. - -The militia took the party to the council. They stored weapons and medical gear before meeting the Elementarium, an elf who admitted the pylon was being interfered with. He needed the Justicar gone because she had ulterior motives and wanted access to the shield pylon. He offered 2,000 gp if the party kept quiet, 500 gp up front with the rest on completion, and 200 gp extra per water elemental. Flickers lasted five minutes to two or three hours, came only between the sea and Seaward, not from Everchard or Dunbold Castle, had begun about three weeks earlier, and differed from the Tri-moon barrier attacks. He suspected a pirate: a human or merfolk captain with a beard, unseen crew, disappearances, magical disfigurements, and possible rodent-style magic. He warned the party not to anger Peridot Queen, his aide, who would help. - -At the pylon, Gherion the sage showed the log. The flicker had been worsening for two weeks, with random outages up to three seconds, often around 9 a.m. and never near midnight. The crackling moved horizontally toward the pylon and did not go past it. The crystal was clean, covered in tiny runes, and showed no tampering. Geldrin touched the barrier with his crystal shard and caused a more intense version of the flicker. Iaxxon, a quarry guard, had seen water elementals rush past him as though he were merely in the way. - -On Day 13, the party followed the barrier. Ripples worsened farther from the pylon, though frequency and duration did not change, suggesting the pylon brought it back under control. The land was dry and loose. The Peridot Queen arrived as a tall green elven woman with black hair and extravagant appearance, stroking a party member's face and joining them. She had seen all five pylons and believed the barrier issue originated near the cliffs. The party reached cliffcutter territory, with sheer drops, dangerous water, recent cutting close to the barrier, and little wildlife. They slept in a tool shed. Morning brought louder waves and sea creatures rushing up the cliff. - -On Day 14, elementals came over the cliff and reformed as bulls, fleeing away from the barrier. Peridot Queen arrived with wings and descended with Geldrin and Invar in a lift one metre from the barrier. A human with a scar was repairing planks behind a danger-of-collapse wall. Peridot Queen paid him an old copper coin, and he transformed into a green dragon. He said nothing like this had happened for thirty years, until beasts like bulls shot from the disturbed part toward the wilderness shrieking like banshees. A gnome mentioned a candy smell and legs, probably lying. A dwarf had barrier duty and found a small crystal on the last shift. - -Above, a differently dressed human pointed the miners toward the party and walked toward the barrier. Four dwarves and a gnome attacked. The gnome broke a blue rock and summoned a small elemental. One attacker, when revived, said, "He's coming, Terror of the Sands is coming for you all," before being knocked out again. The attackers had 5 gp and old copper coins; the gnome had two more blue crystals. The party suspected the human had come through the barrier near the origin point. - -Invisible Joy appeared to Dirk and said they were in pain and it burned, asking for help. Following salt trails from water elementals, the party reached a lush area seven miles from the barrier with insects, a shallow river ending in a waterfall, and water elementals in the river. One elemental begged not to be hurt, saying others had taken it, that it had escaped through pain to the closest good water. Geldrin freed two elementals from blue crystals. They described a painful hole in the sea, a death dome, elemental stealers trying to free creatures trapped underground, a poisoned crystal powering the death dome, and Garadwal being one with moon rock but escaped. They mentioned a scaly blue-grey dragon with webbed fingers, a four-armed trident-bearing poison-water being, and Garadwal with tridents. They described eight beings used as batteries and called the barrier enslavement. Diagrams included earth, ooze, water, ice, air, magma, lightning, smoke, fire, sand, salt, and other quasi-elements. - -Back at the quarry, behind two missing lift panels, the party found an excavated passage into a thousand-year-old underground structure. An old gnome emerged, accepted a coin, and recognized "Underbelly" truce. He led them to an ancient prison: corridors turning left six times, a huge metal door with a dragon holding a ring, and beyond it a smaller barrier containing a massive salt dragon sweating salt into the earth for twenty years. Copper pylons had been removed, salt covered the runes, and a room with four curved copper pylons had been dismantled. The dragon had already been seeping salt. The party were told to keep the Justicar away. A big black dragonborn, Turquoise's boss, arrived. The cult was looking for a laboratory. Basilisk later said there was a similar laboratory twenty miles earthwise along the barrier. Basilisk also identified the Black Scales as a mercenary group working for Infestus, the black dragon. - -Elementarium, Brutor Ruby Eye, and the Elemental Truth ------------------------------------------------------ - -On Day 15, 30th Dec, the party returned to Seaward and spoke with the Elementarium. He explained quasi-elementals: earth, water, fire, air, light, and dark combined into ooze/slime/life, salt, metal, magma, smoke, void, ice, and storm. Salt and water were separate, and the problem was pollution: the salt elemental was poisoning the water elemental. He wanted Grand Towers persuaded so the Justicar would leave. Rhonri or Revir might have an obsidian bird to relay messages. - -The Elementarium used a dwarf skull to answer questions about Garadwal. The answer: the information was not for the party's kind; Garadwal was imprisoned in the Prison of Sands; Brutor Ruby Eye was a troublesome being and wizard of great power. In the skull room, the dead explained that if Garadwal escaped, it would be very bad. The barrier would be weakened by losing one of the eight, and Garadwal was the only void entity the builders could find. If any one escaped, it would be him. Destruction feedback from his prison would damage the others. - -Geldrin told Brutor of the Tri-moon shard. Brutor knew of the first crack: Envoi had tampered with the containment device for his own purposes, and if something happened to Envoi it would be bad and cause the crack. The wizards disagreed on entrapment, but all agreed Garadwal had to be contained. Ooze was good. Ice and storm had been placed in the same chamber due to difficult land. Possible solutions included fixing sigils or reversing polarity. Brutor had been killed by a black dragon and became a demi-lich. The password "Spinal" belonged to Brutor; "Winter Roses" may have belonged to Envoi. The open list at this stage was halfling killers, eight things linked to poles, pirates, and elementals. The party received a 200 gp down payment and stayed at the Night Candles. - -Ruby Eye's Laboratory ---------------------- - -On Day 16, 31st Dec, the party saw Rewi Lovelace, a messy gnome in town hall, who produced an obsidian raven named Errol. Rewi thought the Justicar caused more problems than she solved and was working on the cliff pulley system. The party retrieved horses and cart, went earthwise toward Newhaven and Stonebrook, refilled waterskins at Newhaven's anomalous freshwater well, and searched near the edge of salted land. An obsidian raven later appeared wanting the party's location for a meeting with the Justicar; the party refused. - -Ten miles out and one mile from the barrier, they found a recent charred camp, tracks of five or six searching people, acid corrosion, and swept-over blood speckles. Geldrin followed the compass to a weak signal and purple glow about thirty feet down, finding ten-foot stone walls and a door. The password "Spinal" opened it. Inside, two dwarf-form golems guarded another door, also opened by Spinal. - -The lab included a lecture hall with benches for twenty to thirty, a jagged rock horn statue of Tor inscribed "Tor Protects," and a book on Ancient Dwarven language and Tor. A matching room held a teleportation circle, whose rune Geldrin copied. Recent footprints, partly covered, led to a closed door opened by a ruby in a dwarf face that released chains. The party jammed the chains with a crowbar and set alarms on the hatch and circle. - -A diorama room held pylon and tower paperwork, a bubble of shield energy, a scaled model of the Pentacity states, elemental globes at the compass points, and a city fire-airwise of Lake Azure halfway between the lake and Aegis-on-Sands. The model showed no prisons or labs. When a teleportation circle activated, the party hid. A tanned desert-robed human with piercing blue eyes appeared: Pythus Aleyvarus, later revealed as a blue dragon. He claimed to collect magical trinkets and not to work for the black dragon. The party made a treasure deal: Pythus got coin, gold, and silver; the party got first pick, then he got next pick, then the party got three more picks, with the rest split. - -Dirk took an out-of-place scepter from the lounge, setting off an alarm and arcane-locking the doors. A mouth warned that traps were active. Rooms included a bowling/skittles and games room with a magical poker table, an empty room, a silence-spelled room of crystal balls containing memories, and a hidden lounge room behind a dwarf portrait containing blank magical paper and a non-wounding dagger. The party saw memories: goliaths helping build Grand Towers; a fearful acid-scarred memory with a dwarf skeleton; four figures around a teleportation circle as purple crystal rose; Ruby Eye using the dagger and blood to stop an alarm after Joy set it off; Envoi in fields of white roses with an elven woman, Joy, and a dwarven lady; a dark male elf introduced to Envoi with fleshcraft magic; Envoi wearing five rings; Ruby Eye falling in love at Brookville Springs; a purple dome and copper pylons holding blackness and a shadow that threatened calamity; Browning retreating to Grand Towers and wanting to cover up how the system worked; and Ruby Eye using crystals and "Tor Protects" to reveal a skull under a mirror. - -These memories showed that Ruby Eye planned much of the dome: five pylons and five more around Grand Towers. The early system protected towns from elementals. When a six-armed rock creature broke through, the group made a pact. A male human pointed Envoi to a crater with a massive purple rock, which Envoi wanted to observe, and Brutor said it was what they needed. Warring kingdoms including Harthwall, a goliath kingdom, and Goldenswell joined to construct the system. When the dome turned on, something flaming burst through and Browning was attacked. - -Other rooms held an astrolathe showing the disk-shaped planet and moons in real time, with date 31st December 1011; a Protection from Elements spell; boulder elementals apparently used as digging slaves; a picture of moon holes like gem slots; and a relic gallery. The relics included Containment taken from Lord Hydranus in a bottle of flowing water; a wooden spear with flames called the Spear of Ciera; a stone-and-bone-hilted dwarven steel greatsword given by goliath kings "to the spell ones"; a delicate codebook holder recovered from Grand Towers; a celestial dwarf mannequin with Princess Seline's Grand Ball dress; a small red garnet matching moon holes; a Grand Towers penny coin press; an eyeball jar labeled "My Eye" that could scry once per week; the unsettling locked Noctus Corinium or Noctus Caerulium Grimoire with human teeth; Drixl's Cube, a glowing marble cube from golden field halflings; a wine bottle of first pressing Siggerne or Maiden's Dew; a ring of protection +1 resembling Bushhunter's ring, labeled a failed attempt to recreate a stolen ring; a dragonbone and jade comb gifted by an elven princess to Ruby Eye's wife; and a silver-and-gold scepter with a white Seaward gem gifted by the merfolk of the great sea. - -The Celestial book had the phrase, "Time existed before me but history can only begin after my creation." Geldrin saw a vision of six primal elements looking down on the world. Then his alarm triggered and four burly black dragonborn with mosquito shields arrived, speaking Draconic and claiming the place for their master. The party fought them, gaining three and a half swords, four mosquito shields, 70 gp, four tower pennies, and the obsidian bird Errol. Errol's last message suggested Rewi had given the party's location to the black dragon. - -The lab also contained a riddle-gem system. A red gem under the Celestial book plinth gave the ship-floor riddle answered as games. A kitchen jar held a gem with the riddle "The rich want it, the poor have it..." answered as nothing, and a magically sealed cold-beer barrel held a jar with a ruby-eyed hand whose blood stopped alarms. A formerly empty room became full of books on controlling earth elementals, Tor, spell gems, wards, and constructing magical crystals. A book gem asked the king/queen/single riddle, answered bed. An elemental-room gem asked about creativity and storage, answered museum. An orb-room gem asked about something gained over time and stored in one place, answered memory. The orb memory said the clue was based on room layout. A calendar-room gem asked about a scrambled recipe start, likely kitchen. A bedroom skull held gems and a note saying the final part was the Denouement. Another gem's riddle about one falls but never breaks and one breaks but never falls answered calendar. Placing the gems opened a room containing a purple sphere and a void creature in a self-contained barrier. - -The void creature wanted release. It named the diviner as the one who stole his brother, likely the twin encountered earlier. Pythus took the creepy book and Celestial book. The party's picks included Dirk taking the sword and merfolk scepter; the narrator taking the coin press and cube; Invar taking the ring of protection and potion bottle; and Geldrin taking the spear and eye. Pythus gave Geldrin a teleportation scroll and left. Geldrin used the eye to scry on Pythus, seeing him as a blue serpent-like dragon on a pile of gold in a sandstone cavern near Salvation, reading a skin book of cured human flesh. - -The void creature explained that Ruby Eye wanted to live forever and had entered the sealed area with an elven woman and dark male Envoi. It was only a fragment of the void, but could grow if united with others. It described a key-like system of pylons against a barrier circle. The party found four copper pylons, two copper rune circles, a Veridian dragonborn skull about a thousand years old, and a locked book containing the memories and learning of Atuliane Harthwall. Envoi's ring read "a sacrifice made to live eternal, father and daughter." The book required a powerful identity spell to learn its command word. The party partially released the void, took its ring, book, and small ring, and removed the moon-face gems. - -Outside, a storm half a mile wide moved unnaturally. Insects filled the air. Eight massive claws pressed through the barrier: Infestus, the black dragon, trying to enter. He wanted his son's remains, the Veridian dragonborn skull. The party retrieved and returned the skull. The skull was missing the side of its face, perhaps due to Ruby Eye or the son's own actions. Infestus had crystals on his scales that parted the barrier slightly, though it hurt him. He took the skull, declared the debt even for the party killing his men, and left with the thunderstorm. - -Tri-moon, Harthwall Council, and the Wider War ---------------------------------------------- - -On Day 17, 1st Jan and Tri-moon, Scum told the party they were wanted for treason for conspiring against the Towers to break the barrier. Scum also said Elementarium wanted to meet them with Ruby Eye's skull one mile outside Seaward. The party sent Errol to Grand Towers claiming they were going to Everchard, to mislead pursuers. They waited for Basilisk and intercepted a suspicious cart driven by Garick Blake, supposedly transporting for the council to Fairshaw. The cart carried Grand Towers pennies, ash jerky, copper-tipped spearheads and trident heads, waterproof paper enchanted for salt water, tar, heavy-duty shipbuilding tools, and miscellaneous goods. Invar knocked the driver out. The jerky hid a hemp bag with a pungent sickly sweet narcotic smell like rose spice. Elementarium arrived and gave them the Ruby-Eye skull, while denying knowledge of the spearheads. He wanted a meeting with Lady Harthwall. - -Ruby Eye's skull revealed key facts. Infestus' son was a spawn of evil and had been used as a powerful sacrifice for Envoi. The leaking salt dragon suggested tampering with life had weakened the force. The barrier might be reinforced by refilling voids, or safely disabled by a failsafe button in Grand Towers. The Noctus Caerulium Grimoire contained forbidden magic. To stop the Tri-moon shard, the dome would likely need to be fully redone, or a device built to repel the shard while the barrier was down. The merfolk were distinct from fish men and helped build barriers. Browning probably erased or obscured the goliath settlement from history. The green dragon seemed to live in the area. The white dragon helped build the dome; reds and blues did not. Elementals attacked, which was why the barrier was built. Ruby Eye had a backup plan for a void elemental in his safe, if it was still there. - -A giant gargoyle arrived with a carpet bearing a teleport rune and took the party to Harthwall. In a lush castle room, Lady Harthwall sat at the head of the table with a sister lady beside her. Basilisk arrived through a rip in the sky with Lady Catherine Cole, Earl of Stronghedge. The Guilt, a portly tiefling male, appeared in purple light. A valkyrie-like woman, Earl of Ironcroft Firewise, arrived with two dwarves. Catherine Cole vouched for the narrator and Valkarige for Invar. A tabaxi mule-like Earl of Salvatur with a floating hookah pipe also arrived. This group of like-minded leaders wanted to preserve barrier stability. - -Lady Harthwall spoke with Ruby Eye, who had been a friend of her mother's and had barely aged despite being a thousand years old. News of the Tri-moon fragment had reached them. The ancient one had awakened and moved near Runewatch or Snow-sorrow. The green dragon was responsible for destroying Dirk's homeland; Ruby Eye blamed Dirk's people for helping dragons, and Verdilun was said to be shacking up with the red dragon. Keeley Curdenbelly's research in the desert, described as the "liver," might be useful. - -The strategic plan became: go to the merfolk, recover a shield crystal from the water, and speak to the Ancient One. The group also discussed leeching elemental prisons, Garadwal, the loose void, and the shield crystal in the sea. Cosmological lore established that light and dark produced life, gods, twelve gods, six Excellences, and mortal peoples. The multi-armed beings were Excellences. Five was holy because it symbolized removing darkness. Basilisk arranged for someone carrying a Winter Rose to meet the party in Fairshoes or Freeport. The party gave him the coin press and warned him the cart coins were a crate of them. - -Fairshoes, Turtle Point, Kairibdis, and The Pact ------------------------------------------------ - -The party travelled toward Fairshoes. On the road, birds and animals became audible at night. A dog associated with the twins approached the camp with five attackers; they died. Day 18 noted 2nd Tan with Finnan and sixteen days until Timnor. Day 19 noted 3rd Tan and fifteen days until Timnor. Fairshoes had sea, gold sands, and white plastered buildings, like a Cornish town. It was oddly warm for the season. - -The party boarded the Pride of the Penta Cities, a galleon bound for Baytail Accord via Turtle Point, staying in cabin 17. The figurehead was a wooden shield crystal. A ship appeared on the horizon, panicking the captain. A hostess called winds and storm. A tiny flame leely escaped heat lamps, set a buffet table alight, and attacked. Merfolk said that had never happened before. Pirates had been attacking more often, and creatures that petrified by looking were rumoured. The party recruited a male half-elf in traveller's leathers, an elderly dwarf woman with a silver chain, and a silver dragonborn bard. Payment was 150 gp if fighting was needed or 5 gp if not. - -The pirate ship had black sails with snake heads and moved by water instead of wind. The pirate Kairibdis wore a big-brimmed hat and mismatched clothes. He called on Salinus, summoning salt elementals. The party killed Kairibdis and his crew. They received free passage on the company's ships, 400 gp, a +1 scimitar requiring attunement for water breathing, and Kairibdis' Pistol of Never Loading +1, a noisy d8 weapon. They retreated to the cabin with a cask of rum. - -At Turtle Point, the docks looked like they were sometimes underwater. The locals were turtle-men. The party visited the Sailors Rest and toured the Shrine to the Great Turtle. The Great Turtle myth said that before the barrier, the turtle came into the world while fleeing his own realm and seeking his cousin on earth. He found smaller turtles in trouble, picked them up, diverted to this world, and planted his feet in the ground; locals believe he remains awake. The shrine was a fountain of the same white stone used in Seaward. Water rises high on Tri-moon and covers the building. Walter showed the party where Kairibdis parked his boat. - -At an old town in disrepair, one dock and three houses were maintained. In one lit tavern, four fish men fixed copper spearheads onto stakes. One told the water king that the boss would be angry if the shipment was not on time. Another hut had a conch and called "kingly". A ten-foot, six-armed fish person arrived in a chariot pulled by barnacled sea cows, skewered and ate a fish person, demanded all supplies for the plan, and threatened destruction. The party inferred this Excellence would attack their ship for the weapons. - -Instead of continuing to Baytail Accord, the party returned to Turtle Point and reported to The Pact. The shipment from the Earl of Fairshoes to Mallcom Ieffrie matched the Seaward boxes. Pact leader Shandra explained that The Pact enforces rules and protects people in exchange for the barrier's protection. The ten-foot six-armed creature was an Excellence. The sahuagin, or fish people, were linked to Saguine, leader of Kiendra, who had been killed. They had Kiendra's conch, one of eight in existence. Dunhold Cache became important. The Pact Scepter, one given to each of the original wizards, was entrusted to the party to mark their side of the Pact. Shandra recommended speaking to the merfolk of Lake Azure for Dirk's city. The party requested Basilisk's help to get support and meet in Freeport. A merfolk would accompany them. The Freeport Pact leader was Tiana. - -Freeport, Baroness Lavaliliere, and Preparations for the Sea Assault --------------------------------------------------------------------- - -On Day 20, 14th Tan 1012, fourteen days until Timnor, the party stayed in the barracks. Dirk dreamed of a goliath on a granite throne worriedly watching two women tend a dwarf who would live but lose an eye, likely Ruby Eye. The dream shifted to a savanna, dancing around a fire with a granite city in the distance, and a face in the fire possibly Enwi or Jagg. - -Guardfree, a merfolk, said his mistress had been working on misdirection. The trip to Freeport was uneventful. Freeport was a busy, mismatched city with a rainbow ship docked. The quartermaster loaded a shipment onto the party's cart. Baroness Lavaliliere ruled Freeport, where trade was untaxed. Newspapers reported the Ancient One taking flight after a thousand years and moving to Snow Sorrow, fighting near Highden going badly, and propaganda. The party shopped at Esmerelda's magic item shop and met Tiana at the Siren and Garter. - -Tiana expected a group of forty to help fight the Excellence, which she said was mortal and could be slain. The Baroness was described as good but laissez-faire, sometimes disposing of groups unpredictably. Recently she had removed a group dealing bound elementals and fire/water gems, and another selling desert archaeological items involving awakened tabaxi. Basilisk privately reported that Highden was under attack by a Fire Excellence with a grudge against dwarves; an old lab had been found at a crater but could not be opened; allies were meeting the Ancient near Snow-sorrow; Azureside had perodotta and spawn amassing; Arabella had been kidnapped again in a targeted face-removal attack; and no forces were available except Zinquiss and one other at the harbour. Basilisk gave the party a Lesser Rift Blade, a +1 dagger with three charges: one for dimension door, three for a five-second teleport portal large enough for a person, recharging one charge per day. - -The party learned Harthwall is the second most common surname after Browning, and that there has always been a Harthwall in charge of Harthwall. The family is reclusive, appearing publicly only at coronation and seen together only to hand over the crown, suggesting possible disguise magic. Dirk noticed scratches on the cart padlock: upside-down thieves' cant reading "Drunken Duck," scratched with claws like his. The party altered the markings to Everchard and arranged parking with Guardfree on watch. - -At the temple of Cierra, a female half-orc accepted the Spear of Ciera for examination. Later Huntmaster Thrune returned. Ruby Eye had often spoken with the church and was interested in runes. Thrune agreed to help kill the Excellence. He explained the spear was actually one of five arrows from Cierra's last battlefield. Ruby Eye warned the party might need to retrieve the book from the blue dragon before Valenth, Enwi or Envoi's apprentice, tried to get it. Ruby Eye's best friend had wanted to craft herself into something and continue in that form. - -The Baroness granted an immediate audience. Her room had paintings of predecessors all wearing the same necklace and lots of jewellery. Desert relics had been seized because she thought they belonged to an old friend, Velenth or Valenth Caerduinel, who had worked for her willingly long ago. Freeport is ruled by twelve heads who choose who can uphold specific ideals. The Baroness disliked the cult and had confiscated goods. She offered to loan forces if the party used her information about a laboratory and retrieved a red gem for her, harder than diamond but in the workshop. The lab had a gaping hole in its side, barrier emergency systems, and something young that had run. A dragon was rumoured to roost in the ruins of Dirk's old city. She gave the party the lab, circle code, and safe code while defences were up. Valenth had wanted to transfer herself into an object. The Baroness was shaken afterward. - -Sea Assault, Dunhold Cache, and the Excellence ----------------------------------------------- - -On Day 21, 6th Jan, thirteen days until Tri-moon, everyone had cold-tinged dreams. One dream showed a family home and town hall turning into a crater or black hole, with a voice saying, "Where is he? I know you hide him," likely searching for Garadwal or the void. The party's room was cold, and a white dragon scale fell from melting icicles. - -The party hired Captain Hween's boat for 100 gp per day with a 500 gp deposit. At Pier 12 gathered thirty merfolk, two litters, twenty guardsmen including a sergeant with an emerald-speaking necklace, Zinquiss, the black dragonborn Wrath whose middle name is Colin, fifteen clerics and their leader, and Pact leaders Shundra of Turtle Point, Kiendra of Dunhold Cache, Tiana of Freeport, and Alana of Riversmeet. The party received two guest shells and ten spare shells. The sergeant took the cart to the keep. Wrath would stay outside the barrier after arrival and was asked to look for Garadwal's location when he reached Blackstone Scale. The plan included a pulley system to hoist the shield crystal onto the ship at Fairshaw. - -At Fairshaw, the boat was seized on the Earl's orders, and the occupants were detained for treason despite being a diplomatic mission carrying Pact members. The party suspected the Earl was cult-aligned. Zinquiss bought three healing potions and one greater healing potion with 200 gp. News reported Highden battles worsening with dragon sightings, Heartmoor illness with surgeons deployed, Grand Towers sending Justicars to the five points of the Pentacity states, and Provinia suffering locusts and mysterious disappearances. A sword was blessed +1. - -On Day 22, Tiana called the party to the mess hall. Underwater construction had raised a crystal to create a gate, and fish shamans were taking notes on waterproof paper. The crystal was about one metre square. Kiendra could be sensed in the cavern but did not respond, likely unconscious. The party split the underwater force: one team to secure the crystal, one to rescue Kiendra. During stealth approach, sharks spotted them. The party defeated enemies at the crystal site, rescued Kiendra, recovered waterproof paper, three dispel magic scrolls for Geldrin, and 112 gp in coin pouches, which were given to the crew. The boss carried a dull-blue glowing Doom Spear +1, a returning weapon that grants Aquan, and Plate of Hydran +1 with resistance to cold. - -The boat was badly wounded. Tiana's team had dispelled shells and been attacked; Huntmaster Thrune was missing. A half-orc priestess and the necklace sergeant wanted to check on him. The party found Thrune fighting the Excellence, both badly injured, and killed the Excellence. Survivors included four mermen, all mermaids, four clerics, and six guardsmen. The merfolk recovered their dead and laid them on deck while priests oversaw rites, and the party thanked each for their help and sacrifice. - -Near Dunhold Cache, a lookout saw a vessel already docked: the Excellence's chariot, Mother of Pearl, with water elementals chained to it. Dirk spoke to the elementals. They wanted to show where the Excellence lived and agreed to come with the party on the big boat. The chariot weighed roughly 8-10 kg and was taken; Zinquiss planned to sell it at auction in seven days through the Freeport auction house. - -On Day 23, 7th Jan 1012 and eleven days to Tri-moon, the party went to the Excellence lair with merfolk and Pack Leader Alana. The underwater cave had tidal ebb and flow, a twenty-foot crystalline dragon sculpture with glowing runes at its base, three cages, and barrels. One cage held a greenish merfolk rather than blue; Alana revived him and took him back to the ship. Waterproof chests contained white powder, which caused a vision when inhaled: Bas, Athal, salamanders, Arabic writing, a white dragon circling the dome, rabbits, a black void, two blue eyes approaching, and intense cold. - -Another cage held a drugged snail on a jeweller's chain, which Guardseen called a bad omen. Huntmaster Thrune dispelled the magic and the snail became Princess Aquunea, a mermaid from an empire beyond the barrier. She had been captured with others while on a diplomatic mission to the city of Onyx and distrusted them due to war with the Salt elementals. Another abducted merfolk said he, his friend, and his wife had been taken from beyond the barrier; his wife was nobility in their Pact. - -The party learned that the City of the Black Scales has a "door" into the dome. Infestus cannot use it because he is too large. Payment to access it is a Grand Towers penny. The barrels and stores included a sickly sweet medicinal potion of magical energy that restores one spell slot for one hour, silk and parchment interleaved with runes, two white rose powders for which Tiana gave the party 1,000 gp, and a metallic Censer of Noxia, a silver or religious water-god censer that can enrage and control water elementals. It was active. - -Return to Freeport, The Drunken Duck, and Current Direction ----------------------------------------------------------- - -After sending a message to Basilisk, the party returned to Freeport through worsening cold. Snow fell over the sea. A doomsayer shouted that the end was near and the moon was crashing into the city, though when asked which city he only said it had bothered his dream. Many people were having dreams. Gnolls were attacking a village and backup had been requested from Everchard and Fairshaw. Mermaids reported that underwater, a "big cat with metal wings" attacked something at the same time as the party's dreams. - -At the castle, the sergeant's necklace was removed and he walked off. The mermaids planned a meeting in three days at Baytail Accord to discuss events, which the party could attend, though they later chose not to. The contradictory dreams may come from the Ancient One. Huntmaster Thrune went to Grand Towers to speak to the Hunt Lord. A Justiciar was in Freeport, possibly looking for the party. The Baroness arranged access to the Drunken Duck, a secret Underbelly location airwise from the Jewellery District, the same name scratched onto the cart padlock. The party's cart remained safe in the castle. The Baroness's master was Valenth Caerduinel; the necklace and a sister ring appear important. - -The Drunken Duck was soundproofed with pillows and had red dragonborn, two tabaxi, an automaton, two halflings, a gnome, and other clientele. Axion was given schnapps from the Brass City and addressed as "Little Finger." The barman was intrigued that the three best members of the Underbelly had gone on a mission. Tabaxi Whisperers and traders called Keeps were present. Raised voices came faintly through the floorboards. The automaton kept talking about a factory and wanted to know where the labs were. When told they were all by the barrier, it cut down its search radius. - -The current decision is to get a private room, send a message through the Underbelly that the party will not go to Baytail Accord, and instead go to the desert laboratory. The open threats and leads are extensive: the Tri-moon shard is approaching; barrier magic accelerates the shard; elemental prisons are leaking; Garadwal, the Terror of the Sands, is tied to void and the Prison of Sands; a void fragment has been partially released and may be connected to cold dreams; Infestus the black dragon has recovered his son's skull; Pythus the blue dragon has the Noctus grimoire and Celestial book; Valenth Caerduinel may be trying to transfer herself into an object; Envoi's rings and sacrifices remain central; Browning and Harthwall history may be false or disguised; cult shipments move copper weapons, waterproof paper, tar, tools, rose-spice narcotics, and Grand Towers pennies; the City of the Black Scales has a paid door through the dome; the Censer of Noxia can control water elementals; and political powers including Grand Towers, Harthwall, the Justicars, Freeport, Fairshaw, and The Pact are all moving under partial information, secrecy, or corruption. - -Important People, Factions, and Beings --------------------------------------- - -The party has repeatedly interacted with Invar, Dirk, Geldrin, Axion, Isabella, Brother Fracture, Sheriff Jeremia, Gregory, Bushhunter, The Chorus, Cromwell, Core and Mr Peel, Basilisk, Elementarium, Peridot Queen, Brutor Ruby Eye, Pythus Aleyvarus, Infestus, Lady Harthwall, The Guilt, Lady Catherine Cole, the Earl of Ironcroft Firewise, the Earl of Salvatur, Shandra, Tiana, Alana, Kiendra, Guardfree, Wrath or Colin, Huntmaster Thrune, Baroness Lavaliliere, Valenth Caerduinel, Rewi Lovelace, Scum, Zinquiss or Xinquiss, Kairibdis, Salinus, Garadwal, Envoi, Vixago Eros, Joy, Browning, and the Ancient One. - -The key factions now include Everchurch authorities, Harthwall, Grand Towers, the Justicars, The Pact, the Underbelly, Freeport, the Black Scales, Infestus' forces, sahuagin or fish people, merfolk beyond the barrier, the City of the Black Scales, Seaward's stonemasons and council, Cierra's temple, and cultists moving supplies for barrier or elemental operations. - -Important Items and Rewards Gained or Handled ---------------------------------------------- - -The party gained or handled a shock dagger from Everchurch authorities; a compass box pointing to Bushhunter, bought by Geldrin; a Potion of Recovery or Succour from Cleara; magical hearing powder or quaverisior from Bushhunter; an invisible cloak from the observatory hatstand; Tri-moon notes from the observatory; Joy-related rings including Mr Sleeps' ring and Dirk's ring; the Copper Dodecahedron; a magical lamp gem from Joy's room; an eyeball-fronted illusion book; a box of copper; old Grand Towers pennies; a +1 sword blessing or enchantment at several points; 50 gp hush money from Lawrence Henderson; knowledge of a 6,000 gp platinum reserve in the Earl's safe; Basilisk's Winter Rose contact; the Pact Scepter; Kairibdis' +1 water-breathing scimitar; Kairibdis' Pistol of Never Loading +1; 400 gp and free ship passage; the Lesser Rift Blade +1; the Spear of Ciera, later identified as one of five divine arrows; Doom Spear +1 returning and Aquan-granting; Plate of Hydran +1 with cold resistance; three dispel magic scrolls; waterproof papers; the Mother of Pearl chariot; two white rose powders traded for 1,000 gp; potion of magical energy; Censer of Noxia; the ring of protection +1; Drixl's Cube; the coin press; the scrying eye; the merfolk scepter; the goliath greatsword; the void ring, book, and small ring; Atuliane Harthwall's locked memory book; Envoi's ring; Errol the obsidian bird; and various gems used to open Ruby Eye's sealed chamber. - -Important Mysteries and Unresolved Questions --------------------------------------------- - -The party still does not know the complete identity and plan of Garadwal, the Terror of the Sands, or how he relates to the void, the sphinx, and the Prison of Sands. Envoi's role in causing the first crack, his five rings, the sacrifices of father and daughter, and his connection to Joy remain central. Joy's father, Vixago Eros, the clone work, and the repeated Joy graves reveal a tragedy but not the full purpose of the rings. Browning may have covered up the true workings of the barrier and erased goliath history. The Tri-moon shard is moving closer, possibly accelerated by shield pylon magic and barrier attacks. The Ancient One may be sending contradictory dreams. Valenth Caerduinel may be using a necklace, ring, object-transfer magic, and old desert relics. Pythus possesses dangerous books and is near Salvation. Infestus recovered his son's skull but remains a major power. The City of the Black Scales has a paid entry into the dome. The Censer of Noxia, white rose powder, rose-spice narcotic, waterproof paper, copper weapons, and Grand Towers pennies point to organized cult logistics. The party is wanted for treason and must navigate Justicars, Grand Towers, Harthwall, The Pact, Freeport, and the Underbelly while trying to reach the desert laboratory before the Tri-moon crisis worsens. diff --git a/tmp/summary.txt b/tmp/summary.txt deleted file mode 100644 index 6cab357..0000000 --- a/tmp/summary.txt +++ /dev/null @@ -1,78 +0,0 @@ -Pentacity Campaign Narrative -============================ - -The campaign began in Everchurch, a strange orchard town at the edge of swampy woods. Even in winter, one orchard was blooming, kept alive by unusually large bees. The trees had dark bark, blue leaves, and deep red fruit. The town itself seemed ordinary at first: around three thousand people, mixed light and dark woods, a manor house in the centre, and a cider inn with beeswaxed floors, music, and locals like Father Burnun, Gelissa, and the innkeeper Oric. - -The first mystery was small: pigs had gone missing from old John Thornhollows' farm. Then the details started to rot. Records did not match memories. John's daughters' names shifted. A key disappeared from the bar without anyone knowing how. A woman from Albec was searching for her missing husband, Malcolm Donovan, but few people remembered him. Homeless people had supposedly been housed in a new hostel, yet the town barely remembered them either. The militia had been downsized on paper, but nobody could properly remember the old members. The party found that names were being removed from records and, more disturbingly, from memory. - -Malcolm eventually appeared, but horribly altered: his face stitched, teeth missing, fingers splinted with bone, tongue split, and his right-hand birthmark still visible. He had been changed by magic. Around the same time, people started remembering things again in flashes: Gelissa, Isabella, homeless people, and missing militia. The party were made deputies by Sheriff Jeremia and began investigating in earnest. - -At Thornhollows farm, the party found inconsistencies in the pig records going back about a month, around the time Sarah disappeared. There were frog-like prints suggesting something eight feet tall, and the ravenhounds barked or "ribbited" at the dark. In the swamp, the party killed giant frogs and found bones belonging to pigs and sheep. The farm mystery led toward something larger: people and animals were being taken, transformed, and erased. - -The next lead took the party to Walter the sheep farmer's land. There they found a trampled man, human-sized tracks, a smashed farmhouse, and something trapped in the barn: a grotesque, melted pile of sheep. Walter's wife had apparently lured the creature into the barn and someone had locked them in together. Around the same time, the party felt memories being stolen. The pattern became clear: the disappearances were not just kidnappings, but a magical attack on memory and identity. - -Seeking answers, the party found The Chorus, an old blindfolded woman in a swamp hut covered in birds. Her mouth was sewn shut, and she was surrounded by branches and birds. She had been having dreams that were not her own. Her apprentice had left. The magic being used was subtle: it changed memories into convenient shapes rather than simply deleting them. The Chorus pointed toward the hostel and toward Bushhunter, a taxidermist and hunter using gas that harmed the birds. - -Back in town, Bushhunter was found with an ogre assistant, strange pipes, frames, and a wagon drawn by a cobra-koi-like creature. The party sabotaged his equipment and persuaded him to hunt away from town. They also learned of Magpie or Xinquiss at the Hatrall great bazaar. Meanwhile, the sheriff's office had mobilized. Walter had been attacked, the Earl had received a death threat, and Cromwell the forester had seen wagons near Walter's farm. - -The hostel proved to be a front. Wagons outside stank of manure and human waste. A pig-beast broke free and was killed. The party found victims, including people who had been altered beyond saving. Brother Fracture at the church helped restore some of them, including Gregory, a homeless man who remembered being taken by militia to the old militia house, now called the hostel. More missing militia were named: Stonejaw, Ralfrex, and others. The hostel still looked like a jail because it had been one. - -The party broke into the hostel, fought its guards, and subdued Gelissa, who had been corrupted. Invar restored her mind and wounds. Around ten townsfolk were still imprisoned inside. The rescue exposed the scale of the crime: townsfolk, militia, and outsiders had been taken, transformed, mind-wiped, and used. - -The trail led from Everchurch to the barrier. The party found Cromwell injured and tracks suggesting a heavily armoured figure. Near the barrier, a group of townsfolk and militia were under the control of a dog-and-maggot-like creature. When the creature died, it shrieked and the remaining townsfolk attacked. One of the controlling twins was killed; the other had gone toward the swamp. - -Following the tracks, the party discovered an ancient observatory built into the barrier. It had a marble dome, a huge telescope, no windows, and rooms tied to old magic. Inside were signs of Core being dismantled, missing astronomy texts about the Tri-moon, and a portrait of Vixago Eros, one of the five mages who made the barrier. The observatory was tied to Joy, a sick tiefling child, and to rings inscribed with dark bargains: one pact made in sorrow to bring Joy back, another bargain struck in shadow for souls to be held in infinity. - -The observatory revealed one of the campaign's central tragedies. Joy had been terminally ill. Her father, desperate to save her, worked with a creepy unnamed friend and experimented with rings, constructs, cloning, and forbidden magic. Joy's diary showed a bedridden child frightened by "Daddy's friend" and aware she was getting worse. Beneath the observatory were graves, all marked Joy, each a failed child or clone: Joy dead of lung infection, complications, poisoning, birth defects, and other causes. A hidden chamber suggested attempts to perfect cloning. Slowbane, a rare poison acting like heavy metal poisoning, matched Joy's symptoms. - -At the top of the observatory, the party confronted creatures using the telescope and the barrier. They spoke of a master, likely Garadwal or a sphinx-like horror called the Terror of the Sands, and of needing coordinates for future attacks. Striking the barrier increased the flow of magic and would draw a shard of the Tri-moon closer, eventually threatening Grand Towers and the dome itself. The Tri-moon was not just a moon; it was crystalline, with a closer fragment locked between world and moon. More power through the shield pylons would accelerate disaster. - -The party killed the creatures in the observatory and found notes on the Tri-moon, biology, incurable diseases, poison, and shield-pylon sickness. They also discovered that the observatory had been built with the barrier roughly a thousand years ago and had a teleportation circle connecting towns and cities for construction and supply. The place was stranger than a static building: moving through different directional "wise" versions changed rooms, doors, statues, barriers, and traps. There were references to Throngore, god of destruction and decay, and Igraine, goddess of life and harvest. The party saw illusion magic, blood runes, clone chambers, and impossible geometry. - -After returning survivors to Everchurch, the town began recovering. The Earl vanished as memories returned, the sheriff took over, and Core returned damaged to Peel and Core. A replacement Core arrived in the post marked "GUILT," pointing toward The Guilt, the Earl of Brookville Springs. The party connected with Basilisk, old coins, and wider politics around Harthwall, Justicars, and shield pylons. - -The next major arc began in Seaward, a circular stone city ruled by the stonemasons' guild. Seaward had water problems, a shield pylon outside the walls, rumours of water elementals passing through the barrier, and political tension with Justicars. Isabella was abducted by a gargoyle connected to her aunt, after her halfling friends were found murdered in a divination ritual similar to the Everchurch magic. The council, represented by the Elementarium, privately admitted that the pylon was being interfered with and hired the party to investigate while keeping the Justicar away. - -At the pylon, the barrier flickered in horizontal crackles. The crystal looked clean and untampered with, but Geldrin's shard made it react violently. The disturbance seemed to originate near the cliffs and quarry. With the Peridot Queen, who appeared as a green elven woman and later transformed into a green dragon, the party investigated the cliffs. They found miners, cultists, blue crystals used to bind elementals, and signs that something had come through the barrier. An elemental begged not to be taken again and described escaping through pain to the closest good water. It spoke of a "death dome," poisoned crystals, imprisoned beings used as batteries, and Garadwal. - -Beneath the quarry, the party found an ancient prison chamber holding a massive salt dragon, sweating salt into the earth for twenty years. Copper pylons had been removed, the runes were buried in salt, and the leak had poisoned Seaward's water. The prison was one of several elemental containment sites tied to the barrier. The party learned of quasi-elementals: ooze, salt, metal, magma, smoke, void, ice, and storm. Garadwal was revealed to be imprisoned in the Prison of Sands and, crucially, to be the only void entity the builders could find. If he escaped, the barrier would weaken badly. Damage to one prison could affect the others. - -The Elementarium used skulls to speak with the dead, including Brutor Ruby Eye, a powerful ancient wizard. Ruby Eye confirmed that Envoi had tampered with the containment device and caused the first crack. The original wizards had not all agreed with imprisoning elementals, but they all agreed Garadwal had to be contained. Passwords emerged: "Spinal" for Brutor, possibly "Winter Roses" for Envoi. The loose threads multiplied: halfling killers, eight things linked to poles, pirates, elementals, and the Tri-moon shard. - -On 31st December, the party found Ruby Eye's old laboratory near Newhaven. It opened with "Spinal" and was guarded by dwarf-form golems. Inside were lecture halls, teleportation circles, shield-pylon diagrams, a scaled model of the Pentacity states, elemental globes, memory orbs, traps, riddles, and relics from the construction of the dome. The party encountered Pythus Aleyvarus, a blue dragon disguised as a desert-robed human collector, and made a treasure-sharing deal with him. - -The memory orbs revealed the ancient history of the barrier. Ruby Eye helped plan the dome: five pylons around the world and five more around Grand Towers. The original builders included figures tied to Harthwall, Goldenswell, goliaths, Browning, Envoi, and others. They found a crater with a massive purple rock, which Envoi wanted to observe. The warring kingdoms joined together to build the dome after elemental threats and disasters. At activation, something flaming burst through and Browning was attacked. The lab also contained an astrolathe showing the disk-shaped world and moons in real time, relics from gods and kingdoms, a Celestial book, a creepy skin-bound grimoire, a scrying eye, a merfolk scepter, a spear of Ciera, and other powerful artifacts. - -The party fought black dragonborn agents marked with mosquito shields, apparently connected to Infestus, the black dragon. Errol, the obsidian bird, had been used to send their location. Through riddles and hidden gems, the party opened a sealed room containing a void fragment in a self-contained barrier. The void wanted freedom and claimed Ruby Eye had wanted immortality. A nearby chamber held copper pylons, rings, a Veridian dragonborn skull, and a book containing the memories and learning of Atuliane Harthwall. Envoi's ring spoke of a sacrifice made to live eternal: father and daughter. - -The party partially released the void fragment, taking its ring, book, and small ring, then left as a massive storm gathered. Infestus, the black dragon, pressed through the barrier with eight massive claws and demanded the remains of his son: the Veridian dragonborn skull. The party returned the skull. Infestus accepted it, declared the debt even for the deaths of his men, and flew away with the storm. - -By Tri-moon, the party were wanted for treason, accused of conspiring against Grand Towers to break the barrier. Scum delivered word that Elementarium wanted to meet with Ruby Eye's skull. A suspicious cart carried Grand Towers pennies, copper-tipped weapons, waterproof paper, tar, tools, and strange jerky laced with a sickly-sweet narcotic scent like rose spice. Ruby Eye's skull revealed more: Infestus' son had been sacrificed for Envoi; the barrier might be reinforced by refilling voids or safely disabled using a failsafe in Grand Towers; stopping the Tri-moon shard would require fully redoing the dome or building a repulsion device while the barrier was down. The white dragon helped build the dome. Reds and blues did not. Browning may have erased the goliath settlement from history. - -A political council gathered at Harthwall. Lady Harthwall, the Basilisk, Lady Catherine Cole, The Guilt, the Earl of Ironcroft Firewise, the Earl of Salvatur, and others discussed the crisis. They were a small group trying to preserve the barrier's stability. They had news of the Tri-moon fragment, the Ancient One awakening near Runewatch, the green dragon linked to Dirk's homeland's destruction, Garadwal, leeching elemental prisons, a loose void, and a shield crystal in the sea. They laid out a path: go to the merfolk, recover the crystal from the water, and speak to the Ancient One. - -The campaign then moved toward Fairshoes and the sea. The party boarded the galleon Pride of the Penta Cities, bound via Turtle Point. Pirates attacked: black sails with snake heads, a ship propelled by water, and Kairibdis calling on Salinus to summon salt elementals. The party killed Kairibdis and his crew, earning free passage, 400g, a +1 water-breathing scimitar, and Kairibdis' noisy Pistol of Never Loading. - -At Turtle Point, the party learned the myth of the Great Turtle, an ancient being who came from another realm trying to reach his cousin on earth, stopped to rescue smaller turtles, and became the foundation of the island. Walter led them to where Kairibdis moored his boat. There they found sahuagin preparing copper spearheads and waiting for their six-armed master. A towering six-armed fish-like Excellence arrived on a chariot pulled by barnacled sea cows, killed one of its own, and demanded the shipment. The party realized the Excellence would attack their ship for the weapons. - -They reported to Shandra of The Pact at Turtle Point. The Pact exists to enforce rules and protect people under the barrier's bargain. The six-armed creature was confirmed as an Excellence. The sahuagin had one of eight conches, Kiendra's, and the shipment was tied to Fairshoes and Mallcom Ieffrie. The Pact Scepter, one of those given to the original wizards, was entrusted to the party as a symbol of their side in the Pact. The party redirected to Freeport and prepared to work with Tiana, the Freeport Pact leader. - -In Freeport, the party found a chaotic trade city ruled by Baroness Lavaliliere, with no trade taxes and a mix of strange factions. The Basilisk reported that Highden was under attack by a Fire Excellence, an old lab had been found near a crater but not opened, the Ancient One was moving toward Snow-sorrow, Azureside had perodotta and spawn amassing, Arabella had been kidnapped again with faces removed, and forces were scarce. The party received a Lesser Rift Blade, a dagger capable of dimension door and teleport-like portal magic. - -Freeport deepened the intrigue. The Baroness had seized desert relics, bound elementals, and cult goods. She knew of Valenth Caerduinel, who wanted to transfer herself into an object. The Baroness offered forces if the party retrieved a red gem for her and gave them a laboratory location and codes. At the temple of Ciera, Huntmaster Thrune agreed to help kill the Excellence. The spear from Ruby Eye's lab was revealed to actually be one of five divine arrows from Ciera's last battlefield. Ruby Eye warned that the party might need to retrieve the forbidden book from Pythus before Valenth, Envoi's apprentice, got it. - -Cold dreams then began. The party dreamed of homes, craters, black holes, and a voice demanding, "Where is he? I know you hide him," likely referring to Garadwal or the void. Their room froze, and a white dragonscale fell from melting icicles. The party hired Captain Hween and assembled a major force: merfolk, Pact leaders, clerics, guards, Zinquiss, Wrath the black dragonborn, Tiana, Shundra, Kiendra's allies, and Alana of Riversmeet. The goal was to recover the sea shield crystal and confront the Excellence near Dunhold Cache. - -At Fairshaw, the ship was seized under the Earl's orders and the occupants accused of treason, suggesting the Earl may be cult-aligned. Tiana gathered the party and revealed that underwater construction had raised a shield crystal to create a gate. Fish shamans were taking notes on waterproof paper. Kiendra could be sensed but was likely unconscious in the cavern. The party split forces: one team to deal with the crystal, one to rescue Kiendra. - -The underwater assault succeeded, but at great cost. The party fought through sharks and enemies, rescued Kiendra, recovered waterproof papers, dispel magic scrolls, gold for the crew, the Doom Spear +1, and Plate of Hydran +1 with cold resistance. Tiana's team was attacked after dispelling shells, and Huntmaster Thrune went missing. The party found him fighting the Excellence, both badly wounded, and killed the Excellence. Survivors included mermen, mermaids, clerics, and guardsmen. The dead were recovered and honoured on the deck. - -At Dunhold Cache, they found the Excellence's chariot, Mother of Pearl, with chained water elementals. Dirk spoke with the elementals, who offered to show where the Excellence lived. The party took the chariot for auction via Zinquiss. At the Excellence lair with Alana, they found an underwater cave with tidal water, a twenty-foot crystalline dragon sculpture with glowing runes, cages, barrels, and abducted merfolk from beyond the barrier. One captive was from an empire outside the barrier, taken with his friend and wife. Another was a drugged snail that became Princess Aquunea when dispelled; she had been captured during a diplomatic mission to Onyx and distrusted them because of war with the Salt elementals. - -The lair also revealed that the City of the Black Scales has a "door" into the dome, accessible for payment of a Grand Towers penny, though Infestus is too large to use it. The party recovered magical energy potions, rune-covered silk and parchment, white rose powder, and the Censer of Noxia, an active item capable of enraging and controlling water elementals. - -Returning to Freeport, everything was colder. Snow fell over the sea, dreams spread through the population, and one doomsayer claimed the moon was crashing into a city, though he could not say which. Reports came of gnolls attacking a village, mermaids saying a "big cat with metal wings" had attacked underwater, and a meeting planned at Baytail Accord. The Huntmaster left for Grand Towers to speak with the Hunt Lord, and a Justiciar was in the city, possibly looking for the party. - -The Baroness arranged access to the Drunken Duck, a secret Underbelly location airwise from the Jewelry District, already marked on the party's cart padlock. There, in a soundproofed den full of red dragonborn, tabaxi, an automaton, halflings, and a gnome, Axion was recognized as "Little Finger" and given schnapps from the Brass City. The barman wondered why the three best members of the Underbelly had gone on a mission. An automaton spoke obsessively about a factory and wanted to know where the labs were; told they were by the barrier, it narrowed its search. - -The current state is that the party has decided not to go to Baytail Accord. Instead, they are sending word through the Underbelly and preparing to go to the desert laboratory. The major open threats are now clear: the Tri-moon shard is approaching, the barrier is unstable, elemental prisons are leaking, Garadwal or a void power may be loose or seeking escape, Infestus and Pythus are active, Valenth may be pursuing object-immortality, cult-linked shipments are moving copper weapons and waterproof supplies, and political powers across the Pentacity states are either divided, compromised, or hiding parts of the truth. diff --git a/transcribe_notes.py b/transcribe_notes.py deleted file mode 100755 index 6966549..0000000 --- a/transcribe_notes.py +++ /dev/null @@ -1,120 +0,0 @@ -#!/usr/bin/env python3 - -import argparse -import json -import re -import subprocess -import sys -import tempfile -from pathlib import Path - -PROMPT = ( - 'Reply with strict JSON only: ' - '{"page_number":"<number>","transcription":"<full transcription>"}. ' - 'Infer the page number from the top-right corner of this handwritten page. ' - 'Transcribe the page as exactly as possible, preserving line breaks where readable. ' - 'Do not summarize. If a word is unclear, use your best reading.' -) - - -def convert_image(src: Path, tmpdir: Path) -> Path: - out = tmpdir / f"{src.stem}.png" - subprocess.run( - [ - "magick", - str(src), - "-auto-orient", - "-resize", - "1600x1600>", - str(out), - ], - check=True, - stdout=subprocess.DEVNULL, - stderr=subprocess.DEVNULL, - ) - return out - - -def call_ollama(image_path: Path, model: str) -> dict: - result = subprocess.run( - [ - "ollama", - "run", - model, - "--hidethinking", - "--nowordwrap", - "--format", - "json", - PROMPT, - str(image_path), - ], - check=True, - capture_output=True, - text=True, - timeout=900, - ) - raw = result.stdout.strip() - try: - return json.loads(raw) - except json.JSONDecodeError: - match = re.search(r"\{.*\}", raw, re.S) - if not match: - raise - return json.loads(match.group(0)) - - -def sanitize_page_number(value: str) -> str: - cleaned = re.sub(r"\D+", "", value or "") - if not cleaned: - raise ValueError(f"Could not parse page number from {value!r}") - return cleaned - - -def write_output(dest_dir: Path, page_number: str, transcription: str) -> Path: - out = dest_dir / f"{page_number}.txt" - out.write_text(transcription.rstrip() + "\n", encoding="utf-8") - return out - - -def main() -> int: - parser = argparse.ArgumentParser() - parser.add_argument("--src", default="data/1-source") - parser.add_argument("--dest", default="data/2-pages") - parser.add_argument("--model", default="gemma4:e4b") - parser.add_argument("--overwrite", action="store_true", help="overwrite existing out/<page>.txt files") - args = parser.parse_args() - - src_dir = Path(args.src) - dest_dir = Path(args.dest) - dest_dir.mkdir(parents=True, exist_ok=True) - - patterns = ("*.HEIC", "*.heic", "*.PNG", "*.png", "*.JPG", "*.jpg", "*.JPEG", "*.jpeg") - files = sorted({path for pattern in patterns for path in src_dir.glob(pattern)}) - if not files: - print("No supported image files found.", file=sys.stderr) - return 1 - - with tempfile.TemporaryDirectory(prefix="pentacity-ocr-") as tmp: - tmpdir = Path(tmp) - for index, src in enumerate(files, start=1): - print(f"[{index}/{len(files)}] {src.name}", file=sys.stderr) - try: - png = convert_image(src, tmpdir) - data = call_ollama(png, args.model) - page_number = sanitize_page_number(str(data.get("page_number", ""))) - target = dest_dir / f"{page_number}.txt" - if target.exists() and not args.overwrite: - print(f" -> {target.name} exists; skipping", file=sys.stderr) - continue - transcription = str(data.get("transcription", "")).strip() - out = write_output(dest_dir, page_number, transcription) - print(f" -> {out.name}", file=sys.stderr) - except (subprocess.CalledProcessError, subprocess.TimeoutExpired, json.JSONDecodeError, ValueError) as exc: - print(f"Failed on {src.name}: {exc}", file=sys.stderr) - return 1 - - return 0 - - -if __name__ == "__main__": - raise SystemExit(main()) -
c641076Stuffby Bas Mostert
AGENTS.md | 69 + diary/day-01.txt | 68 + diary/day-02.txt | 42 + diary/day-03.txt | 64 + diary/day-04.txt | 50 + diary/day-05.txt | 42 + diary/day-06.txt | 136 + diary/day-07.txt | 4 + diary/day-08.txt | 12 + diary/day-09.txt | 16 + diary/day-10.txt | 18 + diary/day-11.txt | 30 + diary/day-12.txt | 72 + diary/day-13.txt | 12 + diary/day-14.txt | 66 + diary/day-15.txt | 30 + diary/day-16.txt | 176 ++ diary/day-17.txt | 60 + diary/day-18.txt | 4 + diary/day-19.txt | 66 + diary/day-20.txt | 74 + diary/day-21.txt | 30 + diary/day-22.txt | 36 + diary/day-23.txt | 54 + scripts/__pycache__/build_all.cpython-314.pyc | Bin 0 -> 1941 bytes .../__pycache__/build_party_diary.cpython-314.pyc | Bin 0 -> 1690 bytes scripts/__pycache__/process_notes.cpython-314.pyc | Bin 0 -> 7809 bytes scripts/__pycache__/split_diary.cpython-314.pyc | Bin 0 -> 5308 bytes scripts/build_all.py | 30 + scripts/build_party_diary.py | 31 + scripts/process_notes.py | 129 + scripts/split_diary.py | 91 + skills/build-campaign-corpus/SKILL.md | 36 + skills/full-note-ingestion-pipeline/SKILL.md | 38 + skills/split-day-diaries/SKILL.md | 33 + skills/transcribe-campaign-notes/SKILL.md | 39 + skills/write-party-diary/SKILL.md | 33 + tmp/all-processed-edited.txt | 1628 ++++++++++++ tmp/all-processed.txt | 1710 +++++++++++++ tmp/all.txt | 2612 ++++++++++++++++++++ tmp/party-diary.txt | 267 ++ tmp/summary.txt | 78 + transcribe_notes.py | 14 +- 43 files changed, 7996 insertions(+), 4 deletions(-)Show diff
diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..c462bb3 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,69 @@ +# Pentacity Notes Agent Instructions + +This repository stores handwritten D&D campaign notes and derived wiki-friendly text. + +## Core Workflow + +When new note pages are added, follow this pipeline unless the user asks for only one step: + +1. Transcribe new images from `data/1-source/` into numbered page files in `data/2-pages/` using the agent's built-in vision model by reading each image directly. +2. Build or rebuild `all.txt` from `data/2-pages/*.txt` in numeric page order. +3. Convert `all.txt` into readable, searchable prose in `all-processed.txt` while preserving detail. +4. Generate `party-diary.txt` as a long-form campaign narrative. +5. Generate one per-day diary file in `data/3-days/day-XX.txt`. + +## Source of Truth + +- `data/1-source/`: original note page images. +- `data/2-pages/`: raw page transcriptions, one file per page number. +- `all.txt`: concatenated raw transcription in page order. +- `all-processed.txt`: cleaned readable notes preserving chronology and facts. +- `party-diary.txt`: full story-based narrative. +- `data/3-days/`: one narrative file per campaign day. + +When writing summaries or diary files, use `all-processed.txt` as the source of truth unless the user explicitly says to use edited files such as `all-processed-edited.txt`. + +## Style Requirements + +- Preserve all names, places, dates, times, items, rewards, clues, factions, quotes, uncertainties, and unresolved questions. +- Do not compress away details because they may be relevant later. +- Prefer clear narrative paragraphs over raw bullet fragments. +- Keep headings searchable and stable. +- Preserve uncertain readings with `?`, `[unclear]`, or the original wording rather than inventing certainty. +- Do not invent lore or resolve ambiguities not present in the notes. +- Keep fantasy terms as written unless a correction is obvious from nearby context. + +## Transcription Requirement + +- Use the agent's own vision model for handwritten image transcription. +- Read image files from `data/1-source/` directly with the available file/image reading tool. +- Infer the handwritten page number from the page itself and write the transcription to `data/2-pages/<page-number>.txt`. +- Do not use `transcribe_notes.py` by default. It is a legacy local Ollama/ImageMagick script that did not work reliably for this repository. +- Only use `transcribe_notes.py` if the user explicitly asks to try the local Ollama workflow. + +## Existing Automation + +- `transcribe_notes.py` is a legacy fallback that attempts local `ollama` and ImageMagick `magick` transcription. It is not the preferred workflow. +- `scripts/build_all.py` concatenates `data/2-pages/*.txt` into `all.txt` in numeric order. +- `scripts/process_notes.py` converts `all.txt` to `all-processed.txt`. +- `scripts/split_diary.py` splits `all-processed.txt` into `data/3-days/day-XX.txt` files. +- `scripts/build_party_diary.py` creates `party-diary.txt` from `all-processed.txt` using the current narrative structure. + +## Useful Commands + +- Transcribe images: read each new image in `data/1-source/` with the agent's vision model and write `data/2-pages/<page-number>.txt` manually. +- Legacy local transcription fallback, only if explicitly requested: `python3 transcribe_notes.py --src data/1-source --dest data/2-pages` +- Build raw combined notes: `python3 scripts/build_all.py` +- Build processed notes: `python3 scripts/process_notes.py` +- Build full party diary: `python3 scripts/build_party_diary.py` +- Build per-day diaries: `python3 scripts/split_diary.py` +- Run whole text-processing pipeline after transcriptions: `python3 scripts/build_all.py && python3 scripts/process_notes.py && python3 scripts/build_party_diary.py && python3 scripts/split_diary.py` + +## Verification + +After generating outputs, verify: + +- `all.txt` contains pages in numeric order. +- `all-processed.txt` has all campaign day headings. +- `party-diary.txt` exists and is non-empty. +- `data/3-days/` contains one file for each day heading in `all-processed.txt`. diff --git a/diary/day-01.txt b/diary/day-01.txt new file mode 100644 index 0000000..5c420d1 --- /dev/null +++ b/diary/day-01.txt @@ -0,0 +1,68 @@ +Day 1 +===== + +Ever Church + +Swampy woods - fruit trees orchards + +Winter - 1 orchard has trees in bloom - [unclear] buzzing - bee pollinating and enabling trees to live - slightly bigger than normal bees. dark bark, blue leaves, red fruit (deep) Town - mix of light and dark woods. Population 3k No visible district - larger manor house in centre. + +Cider inn, cider. Beeswaxed floor, a nice small half elf playing a lute, much is half elf and human family resemblance Father Burnun - prize fighter half elf - Gelissa * + +Box: Baz - Invar greying hair - paladin looking, did not get the plate. Leonard Dirk politely + +Shaun - Geblin (the mighty) gnome, wild brown hair glasses with no glass + +Farmer - old John Thornhollows. Another 3 pigs gone Vanished + +6 missing but only has the ledgers for 3. Had a group of around 30 pigs? + +3 daughters: Annabel, Isabelle, Cumberella 5 keys on the bar - but changed to 4 and no idea how it changed. + +Register with Earl - ? mercenaries. + +Pig's daughter keep best books, 1g each to go look. Shepherd maybe missing some sheep. + +Bess - cat missing but no rats recently either. Rats missing too? + +Last summer built a hostel - house all the homeless people, but not enough for homeless so letting out. Inn's not happy. + +Go to Earl - half-orc (crunch looking), black clothing covered with birds. Geese missing. + +Butcher - serving new mushroom burgers since meat not coming in. Woman - out of town come to find husband, come from Albec for work, no one seen him, was putting up fences at a farm. Malcolm Donovan - sent to jailer - birth mark on back of right hand. + +Apply for poverty tax - eligible - slides 2g over to her for the anti-tax. Funds from the hostel go to the anti-tax since wife left him - going to disappear. + +Census - in spring - 3c for the number, payable in the morning, ask half elf. + +No trouble in town. Bushhunter - registered mercenary. Last 2 weeks: Bushhunter came to town 2 weeks ago. Winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +Invar - delivered weapons but no militia? Order was put in a few months ago. About 5 left. Earl downsizing. + +20 weapons, 10 armour. Can't remember any of the old militia. Go to jail and talk to sheriff for current militia forgetting names. + +Bushhunter - had tubes and pipes. Used to do a lot of swords. + +Jail + +Now believes should get a package from a crazy haired gnome. Location changed. Used to be where hostel used to be. 2 empty cells. Laws - big scar over her eye. Her, sheriff and other 2 deputies (Bob). 11 years, always something so old there isn't anything. No reports of people missing. Home theft week ago. Bushhunter doing a sale of giant bugs in frames, last sale 6 days ago. Shepherd had new fence? Yes. Terry left town - 2 months ago Johnjaw passed away Abo. arrested + +Ralfeck - Buckworth somewhere None left in town + +43 used to be hired. Parch of militia statute charter to have sufficient militia for close to barrier. + +1100 militia - 45,000 population. Due in a month to check; last visited 5 months ago. + +Nobody remembers Gelissa except Gedrin. Invar remembered for a split second. + +See one of the people gets up and walks out. Chase him. Hood drops, face stitched below eye line, mouth missing a row of teeth. Bone splint fingers and split tongue. Has birth mark on right hand - Malcolm. Was a human male - had to use magic for these changes. + +Guardwell - Terror of the Sands, nightmare of the darkness. He will consume your soul. + +Tales of the sphinx who learnt dark magic experimenting on itself. Remembered Isabella and that Gelissa said she hadn't arrived. Remembered her again! Took Malcolm to the jail. Deputy went to get the sheriff - Jeremia. Now remembers 3rd daughter Gelissa. Now remembers homeless people. Makes us deputies - we get badges. Sir Alstir Florent. + +Bar 5th person, human warrior - helping out with us and picked one of the keys and remembered him all the way up to when we went fishing, around the time Dirk saw the rat. + +Gristak Brinson - mayor. diff --git a/diary/day-02.txt b/diary/day-02.txt new file mode 100644 index 0000000..d7084c0 --- /dev/null +++ b/diary/day-02.txt @@ -0,0 +1,42 @@ +Day 2 +===== + +Head back to the town hall. + +Received whole census for John's pig farm, 9:00. 5th name on the ledger has been scribbled out. Claims it was a mistake. + +Unemployed and holdings worth <50g - anti-tax criteria. 3g anti-tax. Thornhollows farm Census April 4th + +registered: wife Sarah 47 John 50 Annabella 18 Isabella 16 Clarabella 14 seeing sheep farmer's son + +Paternal grandmother Bella. + +2 sounders of pigs: 1x matriarch 3x breeding boars 2x breeding sows 1 has 17 female younglings other has 21 female younglings No males. + +Paid tax as billed. Farmhouse, 3x orchards, stable, veg garden. + +2x outbuildings which back onto a hedged sty. Planned employment: 3x hands. Grazing rights for area in edge of swamplands. Walk to Thornhollows farm, past orchards and brewery, 9:45. Farm surrounded by stone hedge. + +Pass 2 ravenhound looking dogs - girl walking with them, black hair, missing from census? Craven dogs, breeding pair, mimicry noise, have puppies. Approaches us - Annabella. + +Younger sister on the porch. 3 puppies on pillows next to grandma. Books - everything tallies until about 1 month ago. Scribbling out and removed without explanation, think there should. Missing 12 pigs in total - should be 57. Records say should be 51 they've recorded. + +6 missing over the last 2 weeks: actually 46. + +3 last night, before last 3 a week ago. Missing pigs went overnight. Inconsistencies start about the time Sarah left. + +45 Cat is missing too, about 1 month ago (black cat). Nights of disappearances, not locked up at night. + +Large door to enter the hedged area, looks densely grown. Confident there is no dig through. Hill giving 4 foot of hedge to get in but no advantage to get out. + +Dirk finds big divots that look like foot + +prints - looks like a frog - approx 8 foot frog. Ravenhounds ribbited at dark. Started a few weeks ago - take the pigs, gruffle hunting. Seem to head to swamp. + +Massive moths, been around for a while. + +Quest: 100g to clear the frogs. Had 50g so far. 6 pigs missing to the frogs as they remember these, but 6 others missing they don't remember. Go through swamp. Feels like we are being watched. Massive moth appears during the day... Stealth off and get attacked by a frog - killed 2. Find bones that appear to belong to pigs and sheep. + +Back to farmhouse, 16:00. Cleara gives a tonic where we can use hit dice. + +Potion of recovery. * Succour. Stay over the night. diff --git a/diary/day-03.txt b/diary/day-03.txt new file mode 100644 index 0000000..2efef83 --- /dev/null +++ b/diary/day-03.txt @@ -0,0 +1,64 @@ +Day 3 +===== + +Head over to sheep farmer. Geldrin accidentally cast a spell sat on Dirk's shoulders. Tore his shoulders apart like Malcolm's wounds. Stop for short rest. Birds circling overhead: goldfinch and starling. + +District lack of sheep at the farm, swamp seems to be trickling into the farms. + +30-yearish man appears to be trampled by a herd of sheep. Looks like some human sized prints, 4x sets. One looks to go to and from the barn. We can investigate - drew crime scene. Hear something trying to break out of the barn. Run to farmhouse; door has been "latched in". Table smashed to pieces, various debris about. + +Fire looks like it was burnt out yesterday. Upstairs looks old. Double bedroom and 2 sets of singles. Older couple. 1 may match dead man, 1 slightly smaller. + +Creep over to the barn and see a row of sheep heads - seem unnaturally agitated. Hear unevening bleat. Breaks out of the barn - massive pile of melted + +sheep - killed it. See things at barn and felt memories being taken - not there when we get to the barn. Found woman in the corner dead. Looks like she lured the creature in the barn and somebody locked them in. Something about Malcolm and Isabella going missing & nobody knowing of them in town but us and Malcolm's wife knows. 11:15. + +Go to where we found the birds. Take short rest. Dirk leaves food out and lots of different types of birds appear. Go into swamp to find bird lady. 1 hour in. Swamp hut covered in bird poo, inside branches covered in birds. 80ish woman, blindfolded and mouth sewn shut. Name: "The Chorus". + +Been having dreams - that aren't her own. Her apprentice upped and left. Magic used is clever - changes memories into a convenient + +form - so knowing Sarah was with The Chorus it was harder to wipe. On of the Robins' Day they saw her by the hostel. She was distorted... + +Always had large animals in the area. Somebody going through the swamp and using gas which is hurting the birds. Q: Stop the Bushhunter. Direct us to the place where Gedrin has the papers. + +2pm leave, 5pm at town. Back to town through market place. Notice stack of frames with a halfling (suited) with an ogre - barrel with tubes and pipes going to an ear funnel crossbow - talking to a masked person who has a wagon pulled by a "cobra koi" type creature. + +Sneak up behind the ogre and break his equipment. Goggles and let the gas out. + +Bushhunter will do any form of Taxidermy... + +Bushhunter promises to hunt out of town. Request him to do it the other side of the river. + +Magpie / Xinquiss can be found at the Hatrall great bazaar. 5:15. Sheriff's office. Very busy in there. Both Jeremia and deputy sheriff armoured up - half-orc and kobold (seem to be militia). Citizens wearing patchwork armour - bear, tabaxi, human, warforged. + +Been an attack - Walter (sheep farmer). Somebody came in and they had a cult with sheep beast in. Wife sacrificed herself. + +Core - warforged - runs Peel and Core, lack of custom in the tavern - noticed wagons at the hostel. Earl had a death threat. 500g bounty. Tiny guy - forester - Cromwell - noticed wagons past Walter's farm, seem to have stopped there. Seemed to be people in the wagons. What the mo... 5:30. + +Jeremia and Drang to protect the Earl. Hannah and Bob - go to outskirts. + +Gives us a shock dagger. + +Village is quiet. 2x wagons parked outside the hostel - livestock looking. Smells of pig manure and human faeces. Feel warmth but can't see anything - scratched crab claws. + +Dirk sees rats again and they attack. A pig beast breaks out of one of the carts, killed. Sabotage carts and two people bring 4 horses. + +Woman in 50's, too many teeth, bigger (Sarah?) + +Mouth - big. Young boy 18ish (sheep farmer's boy?) + +3x patrons: Crimson, Bovine, Mirthis Fizzleswig. 1 shortsword. 1 sickle, silver. Random herbs. Church Tor and church Tarber. 19:00. + +Take the people and cart to the church. People unable to be saved. Boy wasn't dead at first but now dead. + +Brother Fracture - looks at the cart. Remembered all of the militia have been going missing. Want to try to put them all to sleep - Bushhunter! Bushhunter staying out at cider inn/cider. + +Go to see him, 20:00. Has a ring with purple gem and runes, needs identifying. Doing that in trade for use of quaverisior / magical hearing powder, 5000? etc. Go back to cart and use it. Get 5 back into the church. + +1 - Gregory, homeless man, restored. Thought he'd been taken by the militia. Remembers being in the big militia house. + +Park the cart behind the church and horses at the inn. + +Random compass box with a needle that points to the + +Bushhunter - Geldrin buys it. diff --git a/diary/day-04.txt b/diary/day-04.txt new file mode 100644 index 0000000..a5fdd91 --- /dev/null +++ b/diary/day-04.txt @@ -0,0 +1,50 @@ +Day 4 19th Dec, 7:00 +==================== + +Dirk - flower he got from a tiefling girl is still looking new - has a magic enchantment to keep it new. Problems with Pylon: Seaweed water spirits on the move. Fish men other side of barrier (massacre), dumbold south. Stone giants missing under new leadership by Hyden Goldensoul, armies too insignificant. Cold air over River Rhein, frozen between Snowshore and Highland edge. + +Ancient [unclear] from slumber, sages try to interpret omens. Gnolls attack restored point, cows missing, bounty on gnoll. Blight hits azureside cherry crops - Cereza production halted. Isabella Nudegate, 500g reward (missing on route), not searched. Grand festival, midwinter - held at Brockville spring next week. Peridobit cloaking death spotted 50 miles eastwise of Arrowfeur. No mention of pig. Pig carcass is missing. Singe marks on the road. Other cart still outside the hostel. 8:20. Oric - innkeeper, Cider Inn Cider. Earl was holding banquet, no other strange goings on. Things go crazy this close to the third. Town crier local news around midday. + +Go to sheriff - walk past Earl's manor house. Sheriff in chair, kobold shuffling papers. Calls Malcolm, half elf steward for the Earl apparently behind the plots to kill the Earl. Seems innocent - no evidence, doing to keep face with the Earl. + +Something off with the Earl. Asked blacksmith to up the production on weapons?! Invar just delivered lots. + +Steward - didn't know him before; thinks duchesses of Harthwall sent him after the previous Earl passed. + +Earl seems to be more extreme in his views: 10 show sorrow, 10 blacksmith in town. Books say 27 militia - but only 4 (27 is half required amount). Lawrence Henderson - exchequer, paying wages. 8:00. Ledger given to the scribes at night and back to Earl at 9:00 - half elf comes to scribes with us. + +Pick the lock and get left to Earl's chambers, right for scribes. Ledgers are all copied and old ledgers kept in a different place. Current ledger around 7 days ago. + +Isabella 2 weeks ago with 20 min to search for her in the copies. Malcolm 6 days ago - name scrubbed out in the ledger but not scribbled out in the copies. + +Visiting tourists: cider brewery and tour of woodland. Spoke to the Earl for permission to take a cutting from the Everchurch tree. Staying at beekeeper's. Elfin meadowmaker for the cutting, 2x bodyguard. + +Half elf remembers Sir Alistair. + +Go see exchequer - half elf portly looking, Lawrence. Ask about militia wages - he starts to panic. Says we need to speak to the sheriff or the Justice. Didn't do anything wrong. Blames the scribes. Set them baron cut down. So he was getting the payment for the other 23. If we keep quiet he will help with more info if needed. Gives us 50g. + +8 carts, 16 horses, 60 swords. Industrial angle: we have 2 extra horses. + +58 days left on town finances. Safe: small black velveteen case, gems. + +3 treasure chest: gold/copper/silver. 2 bags platinum pieces. 6000gp. Earl's documents - file is empty. Half elf remembers him having documents! Vicmar Danbos? + +Leave to go see Brother Fracture, 9:50. + +Gregory doing well - not had chance to heal the others, will feed the rest. No way of communicating with other churches. Go see Gregory: Remembers Dec started, thinks it was 7th/8th. A few weeks ago according to the information from the town crier. Can't remember anything from then until now. Can remember 2x militia taking him to the hotel, then waking up in the church. Stonejaw and Ralfrex (2 of the missing militia). Other people in the hostel - said it looked like a jail still. Goat lady - Bagnall Lane - and various others. Militia house open for about 1 month - no reason for it to still look like a jail. + +Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. + +Cider inn cider. Homeless in town not really any but remembers Gregory now. Remembers dead goat down Bagnall Lane about 1 week ago. + +Go to hostel. Investigate round side of building. Stone stables, 2 carts and 4x horses in courtyard/stables. Chain on the gates but padlock not locked. Invar breaks wheels. + +Release horses - I get magic missile. Go into "hostel" to fight them. One is Gelissa. Has a mark on the side of her face. Kill other guy, subdue Gelissa. Some corruption on her mind - Invar restores both her mind and wounds. 11:00. + +Look around the "hotel". First 2 cells are empty. Approx 10 people still in the cells - all townsfolk. + +Invar creates a lock for the back door. 12:30. Tell Brother Fracture to concentrate on healing militia. He will take Gelissa and militia and cart to the Barracks and use that as a base of operations. + +Decide to go to the Barrier over the "Swamp Laboratory". 13:00. + +Rest for the evening - on 3rd watch, pigeon lady near the camp. Didn't get a full rest. diff --git a/diary/day-05.txt b/diary/day-05.txt new file mode 100644 index 0000000..c179501 --- /dev/null +++ b/diary/day-05.txt @@ -0,0 +1,42 @@ +Day 5 20th Dec, 07:15 +===================== + +Approach barrier - 2 large carts in view. Go off the path. Tie up the horses in a dip in the land. Go round to approach from the trees. + +Find Cromwell (ranger) quite injured. Looks like the damage Geldrin did to Dirk accidentally. + +Tracks look like heavy steel boots (Goliath in full platemail? Core?) We are about 1/2 way between the shield pylons. Carts are empty - large group of people go towards barrier, small group to the swamp. Follow the tracks - they seem to come back on themselves and head towards town. Looks like just Goliath. We want to put Cromwell safe. + +Decide to follow along shield towards larger group. Hear a big group of people stood next to the barrier. + +Dirk feels something is watching us. Then is attacked by sheep farmer grubby. Killed it and 11 militia and 8 townsfolk. + +8 townsfolk tied up with rope. Black dog thing disappeared after we killed it. But the maggot stayed. Upon killing this it let out a massive shriek and all the remaining townsfolk started to attack. Located and subdued halfling girl. 08:00. + +Short rest. 09:00 / 09:10. Get horses and Cromwell, head back along the path to find a patch of trees to hide the cart. + +Long rest. 10:30 / 18:30. Sword enchanted to add +1 until Invar's next long rest. + +2 twins commanding them. 1 went to swamp, other went to Barrier (we killed it). + +Go towards the swamp - following the tracks of the swamp, tie up horses outside swamp. 20:00. Following 4 individuals - Geldrin's compass is following the same direction. + +Come to a clearing at the barrier with a stone building in the clearing - marble dome is against the barrier with a large telescope through the marble dome & the barrier. Approx 10 rooms. No windows. Tracks lead right up to the building. Built approx + +1,000 years ago. Hear a strange humming - door reverberating. 23:00. Enter building. 2x plinths, 1 empty, 1 that looks like Core dismantled. Head clatters off & rat runs through left door. Go through door by plinths. + +Left door - library. + +Shelves - all on one shelf missing "T" shelf in Astronomy. Guess Trimoons information. + +Picture of a well groomed tiefling holding a baby girl. (The Mage) one of the 5 who made the barrier. + +Vixago Eros * Paper work looks recent, drawer has been forced open - diagrams of the stars. Other drawer has rabbit/deer teddy, ring inside, gold band with runes. Ring is similar to Dirk's - sews the teddy back up. + +Vase - "part of me can be with you while you study, all my love - Joy" + +Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring back Joy" + +Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" Paper work - measurements of the tri-moon before the barrier went up and 20 years after. Tri-moon seems to be getting bigger. Pre barrier it was twice the size of the other moons - now it's 4x as big as the other moons. Geldrin takes all of the notes. + +Take an invisible cloak from the hatstand - wear it! Dirk puts Geldrin on the hat stand and his clothes disappear. When things touch hat stand they disappear. diff --git a/diary/day-06.txt b/diary/day-06.txt new file mode 100644 index 0000000..fa6d4d2 --- /dev/null +++ b/diary/day-06.txt @@ -0,0 +1,136 @@ +Day 6 21st Dec, 1:00 +==================== + +Dagger and handkerchief fall to the floor. + +Handkerchief - clean "J" in the corner. Dagger looks like a letter opener. + +Next room looks like a teleportation circle with a bronze feather on the circle. Like the one the other twin had; seems more powerful than usual. Cages in the next room (empty). Operating table (empty). Boxes, guillotine rope - lots of blood and decay with sea and sulfur. + +Red door - picture of a young tiefling. Dirk recognises - holding the wolpertinger. Very big portrait. Big table - set but empty. + +Door @ end - kitchen. Well/bucket, doesn't look like it's been used. Pull bucket up, pour water on the floor. Humanoid skull with horns is on the floor. Horns are the same as the race of the girl - 100's of years old. + +Trap door under owlbear rug in office. Door outside office is barred shut. + +Trap door - 4 plinths, all have the suits of Core on them. Geldrin goes down and suits light up, ask for password. "Joy" and "Tri-moon" incorrect. + +Move onto another room. Try to get through barricaded door. Trapped door managed to get through. + +Potion room - cauldron looks like it is full of water, fresh and clear. Geldrin calls construct "Powerloader". + +Another room - stairs and a door which says "maintenance do not enter". Door is trapped with electricity. Building seems protected by the same thing the barrier is made from. 01:15. + +Room opposite - bedroom. Tarnished vase with white flower in. Chair which looks broken and open book on table (seems out of place). Open the chest - pulse paralyses Invar and Geldrin. + +Construct kills whoever was upstairs (one of them). Killed it. Shocked Invar and Geldrin back from being paralysed. + +3 sets of footsteps walk past the room and stop at guillotine door, come back and go upstairs. + +2 come back - seem to be on guard. Another 2 go to Joy's room and comes back. All 4 killed. + +Short rest completed. Go into Joy's room. Open the toy chest. + +Mahogany box - lock has a rune on it. Geldrin takes it. Wardrobe - 3 empty hangers. Dress she was wearing when Dirk saw her isn't there. Bedside table - bottom drawer is trapped. bag, herbs, empty flask, 3x full flasks. Medical equipment, syringe, crystals, ink, powder, Recognise 2 - Mirthis Fizzleswig and succour, don't recognise the other. + +Quill pen, ink and book, kids diary. + +Last page: "Felt rough today, don't know how much longer able to write. Daddy borrowed Mr Snuffles again, Daddy's friend asked about the rings again. Daddy's friend is creepy." + +Diary - bed bound for length of the diary, approx 1 year. Robots clean and feed. Daddy's friend (never named) making rings etc, put in box which might help her feel better. Not getting better - terminal. Daddy got upset but no payment could fix it. + +Trapdoor under the rug, wooden ladder down into a store room, beanbag and toys, seems to be a secret den. Dirk goes to the beanbag. + +Little girl sat on it gets up and goes out: "Maybe I should go back up. Daddy can see me in my room." "Feeling better, glad because Daddy's creepy friend is here so I can hide." "He'll find me here, I should go to my hidey place." + +Go upstairs - opens up into a massive dome, huge golden spyglass, crystals around the telescope break the barrier. Someone sat at chair - back to us - + +2x 8ft ugly human but wing creatures. Chair person looks like creature we killed but all the parts are opposite worm and dog like creature with the creature. + +Master asked to observe tri-moon. No desire to fight us as killed his counterpart. Worm is quite useful and rare. + +900 years ago someone lived here. Used the townsfolk to attack the barrier. Give it one of the brass feathers to communicate + +with the master for an audience: "Vann, if horrid mechanical hellraiser sphinx creature." + +Garadwal? Where is your army servant? Were those guys instead... do not need to know us. + +Co-ordinates required for triangulation need to know where the armies strike next month, so we can have freedom from the dome. Striking the barrier increases the flow and maybe. + +Flows so the fragment of the moon will destroy grand towers and destroy the dome. + +It lives outside the barrier. Might just talking freedom seemed kind of true, & "freedom from the confines of everything" was an odd phrase. + +What would happen if creature didn't obey sphinx? It would find him due to the pact made in darkness? In sorrow? Looked forlorn - to find Joy? Nothing. + +Tri moon is a crystal. + +Sphinx cast out for practising unsavoury magic. Do we wish to join him? He is one cell - trying to find two locations to attack. + +All agree to clobber. Kill them all. Worm thing dead, think it has mind control powers. Papers on table - calculus and notes on the Tri moon. Books on biology, incurable diseases etc. Book on the effects of poison - slowbane - acts like heavy metal - symptoms match Joy's diary. I wrote a paper on it - very rare because people can't make it but turns up in the black market. + +Shield pylon city sometimes get a similar sickness being investigated. Very rare and takes a lot to take effect, possibly same colour as the shield crystal. People get sick and come to Goldenswell & start to get better so not really looked into much. + +Pile of goods - spices, wine, cherries, parchment, platinum, gems, silk. Saja digel / fire from azureside - have a blight. Copper Dodecahedron (magical). + +Invar identifies Dodecahedron - spell facts! + +21st Dec, Day 6 still. Geldrin goes to sleep in Joy's room and realises the lamp is a gem. 3:30. Long rest level up. 12:00. + +Chest itself is magical - designed to cast paralysis if somebody other than him opens it. Invar tries to identify it - very magical chest. + +Check out the skull in the kitchen - has a deformity in the back of the skull and looks a year younger than Joy - about 7, possibly 1,000 years old. + +Well goes down about 50ft, water down there. Look for information in the library - built at the same time as the barrier (in tandem), not as mainly back then. Was put here to observe the moon, designed specially. Caverns underneath the area found & built here for this purpose. Summoning circle was connected to different towns and cities to get building materials then supplies after observatory was built. + +Send message to Bushhunter: townsfolk have memories creatures slain at observatory message from Geldrin for Grand Towers wizard Brownmitty Waterwise, go to check maintenance area - disarm door. Barrier is directed locally around the observatory. Found a really old blanket and small pillow - really decayed. + +Possibly Joy's other hiding place. Find a trap door - locked but no way to pick. Handle feels hollow. Geldrin used shield crystal to open. + +Stone steps into darkness - down very far. + +5 lights with ends in a door painted with white flowers. Air is filled with solemn music in the cavern. Water going through barrier fizzes. River bank has a little shrine, 6 grave stones all marked "Joy", all have the everlasting flowers on. One has been disturbed. + +Joy - died in chamber. Joy - 3 years old, lung infection. Joy - 2 1/2, unknown complications. Joy - 5 years old - nothing written. Joy - 9 years old - died from poisoning. Joy - 7 years old, birth defect - bones left in the open and raided. + +Follow the stream - quite rocky and roots. Mushrooms/mildew. Mushrooms get bigger, much bigger than they should be. + +15-20 mins of walking - everything is bigger than it should be. Lead out to a cave entrance. Everything seems much bigger than it should be; everything seems to get bigger towards a point. Massive butterfly flies past. 13:30. + +Get to a lake, massive lily pads and frogs, with massive flying sparrow. Something in the lake seems magical (centre). Put tris into the lake, nothing happens. 14:00. Geldrin attempts to raft to the middle but falls off and is rescued by me. Give up on the lake for now as don't have anything to get the magical thing in the middle. + +Back at the observatory, keep going round. Atriose the maintenance area - where we think front door is, it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. Keep going round and original entrance isn't there. + +(Earthwise) Bed at earthwise changed to a flower bed and barrier split isn't there. + +(Firewise) No trapdoor but instead 2x statues 1/4 of the way down each wall. + +Throngore - huge muscular, 2 arms, 4 legs, 2 horns. Left and dark gold; crab claws; taloned human-like hands; flame, like skin. God of destruction and decay. + +Igraine - pregnant elfin woman, rose and scythe in hands, goddess of life and harvest (Alabaster stone). + +(Airwise) - Wall like it would have been the door but there wasn't a corridor at the door to account for it. Go back on ourselves - statues same. + +(Earthwise) Flowers dead now. Invar goes round airwise to statues and back dead, goes back round and shouts for us to come round but we don't hear him. + +(Airwise) - runes are bleeding and seem different. Demon magic shit. Blood hurts a little bit when touched. Geldrin copies them. Invar gets a bowl - checks its acidity. Tiny bit acidic, seems to be real blood. + +(Firewise) - Trapdoor is closed - we left it open. This one is fully metal. Same lock as the other one. Metal ladder going down to a metal floor, all metal. + +Around exterior of the room are 8 glass chambers, + +6 empty, 2 viscous liquid with something in it. Books next to it. It is a non-description human statue without genitals, with no set features, with arm out, palm down to the floor. + +Dirk mentioned hanging his coat on it. Geldrin tries a ring and it fits perfectly. Dirk adds his. + +Diary - seems to be trying to perfect a clone spell, matches up with the Joys in the graves. Dirk checks in the chamber: something in there. Rings start to glow slightly. 15:30. + +Back up. (Earthwise) - no bed, but barrier split is there. (Waterwise) - door is there and pipes etc. (Airwise) - triangular barrier. (Waterwise) - same place both ways. + +Geldrin manages to hold the book open and copies writing - deciphered as an illusion spell. Takes the book. Front has an eyeball on it. 17:00. + +Go to look at the moon. Crack open maiden's claw - good wine. See crystalline refraction of the moon and see a smaller fragment at the front, separate and much closer than the moon. + +1/2 way between planet and moon, locked in sync with where the moon is. Moon is closer - think it will take another 1,000 years. + +If more magic goes through shield pylons this will speed it up. Hitting it exactly between the pylons - conjunction with some of the issues from town crier (pg 8). Barrier starts flashing and lighting up. Seems to be something attacking it. Moon shard seems to be coming closer with the attacks. Dirk draws boobs on the chest; they disappear after a while. 01:00. diff --git a/diary/day-07.txt b/diary/day-07.txt new file mode 100644 index 0000000..26c0653 --- /dev/null +++ b/diary/day-07.txt @@ -0,0 +1,4 @@ +Day 7 22nd Dec +============== + +Go back to the cart with the box of copper. Fashion a lock for the front door of the observatory. Take Cromwell and Isabella back to town with carts and horses. Restoration cast on Isabella - seems confident in herself. diff --git a/diary/day-08.txt b/diary/day-08.txt new file mode 100644 index 0000000..d616ea8 --- /dev/null +++ b/diary/day-08.txt @@ -0,0 +1,12 @@ +Day 8 23rd Dec +============== + +Go back to barrier to get remaining people. + +8 people left - Chorus was looking after them. 12:00. Geldrin paints wagon white and we head back to Everchurch. Basilisk reply - "I'll meet you there". Birds follow us back. + +See 6 horses coming from Provith (armoured), Harthwall militia. Have their livery on: stag and dragon rearing up. Arith (male) healer, Hthiman (male), elf (female). + +Few years ago near Ironcroft Firewise, something came through the barrier - Invar was there. Tell them about mind wipe and citizen stealing, lack of militia etc., barrier attacking. They report back to Lady Thyrpe. + +Healer restores the townsfolk, slightly. One with tentacle arm pulls off and left with stump. diff --git a/diary/day-09.txt b/diary/day-09.txt new file mode 100644 index 0000000..017f812 --- /dev/null +++ b/diary/day-09.txt @@ -0,0 +1,16 @@ +Day 9 24th Dec, 13:00 +===================== + +Arrive back in Everchurch - streets seem busy and panicky, talking about missing people and odd faces. Go to see Brother Fracture - people being reunited with loved ones, and healing happening. + +Earl has gone missing - sheriff taken over and called for help. Core made it back to town - locked himself in the pub with Mr Peel looking after him. Earl disappeared when memories came back. Set a cabin up at half way point. Harthwall ladies request a meeting with us (they get told we were heading to Seaweed). + +Drop Isabella at Cider Inn Cider. + +Go to see Core - lady gets Mr Peel instead. Core is ok, will need further repairs. Came to town from earthwise, only spoke to say "Core da". Geldrin thinks he tried to say "core damaged". Go to see Core. Sat motionless in a chair. Peel thinks he needs more crystal, a repaired Core came in the post 1 day after Core arrived. One word on it: "GUILT". Not addressed to Peel. Pub been open for 5 years. "The Guilt" - was the Earl of Brookville Springs. + +Back to Cider Inn Cider, take rooms and have baths. + +Basilisk - find Groundhog, give coin - old grand tower penny, doesn't like that we donated the coin to the church (1,000 year old coin). Keep on good side of mage Justicars in Seaweed. Very structured town. + +Eat and recover. 17:00. Back to see Brother Fracture. Basilisk brought the coin - he had 10 left, brought for 1g. diff --git a/diary/day-10.txt b/diary/day-10.txt new file mode 100644 index 0000000..ec71239 --- /dev/null +++ b/diary/day-10.txt @@ -0,0 +1,18 @@ +Day 10 25th Dec +=============== + +Get up and on the road with Isabella. Get towards a day's travel and see a 4 storey building - trading post inn, "The Wayward Arms". Merfolk on the sign. Get Red taken for the horses. + +Some play is taking place on the stage. + +11 o'clock, rooms ready, 6am out. Extended sleep till 8. Left stairs, 2nd floor. Timothy served us. Elven lady comes on stage and sings. + +2 ruffians (half elf) enter pub, ramshackle armour, have a killer air about them. Sit down and open a bag on the table. + +2 halflings enter, seem to be a couple and sit at last table by the door. Somebody brings a giant moth picture down the stairs and hangs it up. 22:00. Half elves look at clock. Staff move people and pull tables together - setting up for Mirth?!? Hear music. People rush over to the gathered tables (inc halflings). Mirth, halfling, enters dressed as a ringmaster type (smarmy), + +claps his hands and things appear on tables: pastries, wine, bottles etc. General store? Famous alchemist (Mirth's Fizzleswig). + +Back here in 3 days * Brookville Springs next. + +Yadris and Yadrin (half elves) - Dirk overhears "taking my mind off tomorrow". Sent to investigate - problem solvers, didn't say what they were solving. Work for a lady, already up in her room. diff --git a/diary/day-11.txt b/diary/day-11.txt new file mode 100644 index 0000000..7a35cf9 --- /dev/null +++ b/diary/day-11.txt @@ -0,0 +1,30 @@ +Day 11 26th Dec +=============== + +Morning announcements! + +Penta city states high alert due to attack on barrier. Justicars reporting to major settlements. + +Shields of the Accord report army moving Airwise, led by Baron. Loggers at Pine Springs missing. Heavy blizzards caused travel to Rimewatch impossible, scholars trapped. Goliaths of Firewise deserts seeking refuge in monstrosity pierced the barrier. Colleges deny possibility. Dunenseed and Sandstorm; creatures of Air led by 6 armed + +Borsvack report gnoll activity. Break-in at Riversmeet menagerie. Black market confiscations and 50g fine. Everchurch's villainous Earl ousted by sheriff & brave deputies. Nefarious activities thwarted. Restoration under way. + +Hartswell and Goldenswell armies clash with giant roam Firewise of Hylden. Head to Seaward. Perfect circles of houses with a coliseum type building in the middle - used for horse and dog races etc. + +Airwise path coming into the city - wagons going back and forth filled with the marble type material used for the buildings and roads. Pylon outside of the main walls of the city. Population: elves / dwarves / gnomes. Park the cart (Paynes horsebreeder), 21:00. Go to coliseum - midday tomorrow. Forge charger race. + +Inn - The Rotund Rooster, Tiffany. Roads closed due to winter so no ice. Don't have fresh water - have to order it in. Marble type material with dark blue vein effect. Seaward run by stonemasons guild - elf. + +Nearest inn for a room - Water by Earth Waterwise or Night Candle. Road 7, 3 rings inn. + +Water elementals - rumours are they can walk through barrier. Some alterations with the council - collective working as one. Water problem has been in the last 20 years. + +Chunky chicken cooker - sponsored by Rotund Rooster. Redesigned as used to be a griffin - favourite. + +Payneful Gamble - bad at start time. Thunderbelch - name. Inn attacked by water elementals? Works at the cliffs. "No one else has been attacked." + +Charge mysterious owner, maybe an outside duke or Earl. Halfling asks Invar if we have any skulls. Green skin goblin for his master, not allowed to say from round here (really). Pays well for clever people skulls. + +Go to Night Candle - Candle lit - plush furnishing. Reason for the barrier was to keep the elementals out, but rumour is they can walk through. + +Goblin peers into Dirk's room @ 3am. diff --git a/diary/day-12.txt b/diary/day-12.txt new file mode 100644 index 0000000..735e820 --- /dev/null +++ b/diary/day-12.txt @@ -0,0 +1,72 @@ +Day 12 27th Dec +=============== + +Head to shield pylon - pylon is like a gold ring with the crystal set in the claw and runes around it. 7:00. + +2 guards outside the keep. Rumour - walking through chicken farm at night. Barrier flickers for about 1 sec - happens often, comes from Dombold Castle? but only for the last few weeks. Only notice near to pylon. + +Commotion at temple - guards carrying female elf out of the temple. Arrest warrant, public indecency & corruption. Cross temple with vast archways, four doors, circular altar in the middle. 08:00. + +Priest/Council fabricated some charges - thinks Architect using dark magic to make himself smarter. Architect worships light gods? Alutha on his left femur, "Ilmen Thion". + +Council OK. + +Issues - barrier and water elementals. Row 1, ring 3 from centre (public forum), meet Thursday @ midday, 4 hrs. Representatives Monday/Friday. + +Place bets - The Big Bad Beauty. My missing hangover - 2 runs, from another world, + +2 guys acting as a shell company for the Guilt. Races 4/1 odds on all - The truffle hunter. + +Hear a yelp from the side street - tabaxi has following us (goblin) - tells me to stop letting him follow us and gives me a piece of paper. Goblin will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Mainly house - rat droppings etc. He has 3 skulls, will meet his master when he has 5. + +5 silver for skull. Maybe cadavers? Go back to inn via a temple to see if we can locate skulls. Fire temple - war, justice and hunt. + +3 people in congregation listening to priest recite poetry about battle against Soot the dragon. Congregation pick up wooden swords and start practicing. + +Brother Cashew - his problems in town: Water elementals not killing, but heard town deputies found drowned near cliffs with fresh water. Rivers and lakes in 10 miles are bad, previously got from wells & then gradually went bad. Want to check the skulls for the water differences (trying to obtain some for Scum). 50 years - coughing sickness, no signs of damage other than burning - see some malnourishment at early age. 25ish - signs of damage to vertebrae, stabbed, nothing obvious. Public records will be available: Town hall, 4th ring waterwise. Back to inn for Isabella. 10:00. + +Arena vibes in the city. People really finely dressed. Sit in section C. Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. Race 2 bet - 5s, Wove's gravy, 5/1 - lost. Race 3 - 5s, The galloping salesman - lost. Race 4 - 5s, In it for the sugar, 3/1 - lost. + +Race 5 already bet: Sphinx style - stonemasons guild. + +Unicorn - first place worker, forever 1st. Horse - Payne horsebreeder. Gryphon/chicken - Rotund Rooster rooster / chunky chicken. Nightmare - on hire, Night Candle Inn. Win 9g. Wooden barrel - Bud barrel makers - Big Bad Beauty. + +Gryphon/cow? - My Missing Hangover. Race: Truffle Hunter wins! mice. + +Town almost finished - walls up to strength. Water problem too - looking to sort. Worrying rumours about members of the council refer to forums. Odd out of place formal announcement. + +Go find Isabella's friends. Knock and door swings open - middle class house. Blood on the floor of the parlour. + +2 halflings hanging from the ceiling by their feet. Male intestines over the floor (pattern?). Female looking at us but body upside down and face is right way. + +Suspect someone has done a divination spell using the intestines. Not been dead long, but not warm. Front door broken open - engineered force. Physically kicked over candelabra. Movement but nothing showing a struggle. No active magic. Divination was used and same type as used at Everchurch. Hear heavy wing beats - gargoyle, 6ft, looks like it is made of clay - not usual in town. Isabella says it's from her aunt (family guardians). Drops bag, sopat, and flies off with Isabella. + +Militia come to see what is going on. Direct inside and they take us to see the council. 17:00. Store weapons in a chest before going in, also my medic bag. + +Elementarium - elf. Admits pylon is being interfered with. Needs Justicar gone - requests us to look into the pylon. Justicar has ulterior motives: get access to shield pylon. + +2000g if we keep the information to ourselves. Get 500g now to rest on completion, solve or information to help solve. Extra for water elementals - 200g each. + +Flickers - 5 mins to 2-3 hours, only from sea to Seaward & nothing from Everchard direction or Dunbold Castle. Also state nothing is coming their way. + +Started approx 3 weeks ago, keeps log of it. Saw tri-moon barrier attacks; they were different. Halfings suspect pirate - captain of ship allegedly has crew but nobody has seen them. People go missing and turn up dead & magically disfigured. Human/merfolk, has a beard and makes possibly rodent-style magic. Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. She will help us. + +Water spirits have usually made it through; more are making it through now along with the other elements. Try to keep body count low. 18:00. Retrieve weapons. Sort horses - 1 day paid. Get rooms at the Scarred Cliff. 19:00. Go to barrier. + +Guards show us around. + +Gherion - sage on duty at the moment - gives us the book to view. + +Time and duration of the flicker: 2 weeks - getting worse, increasing frequency. Longest 3 secs, very random. Approx 9am a bout of outages. None around midnight. Clam Clock in the home for quarrymen. + +Don't know how far the flickering goes between Seaward and Dunbold Castle. + +Happens towards the pylon, crackling in a horizontal pattern and doesn't go past the pylon. Crystal has thousands of tiny runes all around it. None of the runes seem to have been tampered with. Crystal is very clean. + +Meteorites sometimes come down. Geldrin touches the barrier with his crystal shard & it goes crazy. Guard said it seems like the flickering but more intense and didn't go as far. + +Justicar - just checked the books and the crystal with a eye glass. Peridot Queen. + +Iaxxon - guardsman - guarding quarry, water elementals rushed past him like he was in the way not attacking him. + +Sleep - get horses and leave for quarry. diff --git a/diary/day-13.txt b/diary/day-13.txt new file mode 100644 index 0000000..8abd373 --- /dev/null +++ b/diary/day-13.txt @@ -0,0 +1,12 @@ +Day 13 28th Dec +=============== + +Follow barrier - see ripples, seem worse the further away we get. Duration and frequency don't change. Pylon seems to be bringing it back under control. + +Ground is very dry and loose - not many plants. Get to a quiet point - see a horse in the distance coming towards us. Green, tall elven woman, black hair, looks very, very extravagant (Peridot Queen). Strokes my face and joins us towards the cliffs. + +Worried when she looks at Geldrin. She's seen all 5 pylons. Made it to the cliffcutter town. Murky, dwarves and gnomes. Barrier problem seems to originate by the cliff. Track towards the barrier by the cliff. 21:00. + +Cliffs are sheer drops with rifts and barriers. Water is choppy and quite dangerous. Recently cutting close to the barrier. Break into a tool shed for the night. Wind picks up outside for a moment. + +Barrier around the cliffs is the emanating point, about 20 mins away. Not much wildlife around here. 23:00. Morning wave sounds are getting louder - Peridot goes, and 2x sea creatures rushing up the sides of the cliff. diff --git a/diary/day-14.txt b/diary/day-14.txt new file mode 100644 index 0000000..8fe24ea --- /dev/null +++ b/diary/day-14.txt @@ -0,0 +1,66 @@ +Day 14 29th Dec, 06:00 +====================== + +Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. + +Peridot Queen arrives - has wings, appearance of an elf. Geldrin, Invar and Peridot Queen go down in a lift right next to the barrier (1 meter away). Mine shaft with some wooden structure beams, branches off away from barrier and parallel. 08:00. Further down, wooden wall constructed saying "danger of collapse". Hear creature. Man stood there, human with scar, pushing a plank back into the wall. Peridot Queen pays him one of the old copper coins. + +Transforms into a green dragon. Incident a few days ago came, 30 years not had any problems until now. Beasts like bulls shot up from disturbed part, towards the wilderness, shrieking like a banshee. Gnome says "smell like candy and has legs" probably lies. On dwarf has barrier duty and found a small crystal on last duty. + +Fly out of the shaft, and Aliana and Dirk see a shape. 8:15. See a group of miners, a dressed differently human comes over to them and points to us. Human walks off towards the barrier. + +The dwarves then attack us: 4x dwarves and 1x gnome. Gnome throws a blue rock on the floor. A small elemental comes out and attacks Geldrin (possible spell effect). + +Manage to knock one out and the guards come over + +& bring him round. He says: "He's coming, Terror of the Sands is coming for you all." Guard knocks him back out. + +Guards take him back to town. Private Burke wants us to visit the station before we leave. All have 5g and old copper coin. Gnome has two other blue crystals. 8:50. + +Gets to 9:00, more obvious flickering but nothing obvious. Believe the human may have come through the barrier. The human came from approx where the point of origin is. + +Invisible Joy appears and tells Dirk they are in pain and it burns - asks for Dirk's help. + +The thing causing the barrier issues? 9:50. Follow the salt trail from the water elementals. Salt trail thins out but no sign of them. After a time land becomes more lush (approx 7 miles from the barrier) with insects which we didn't see before. 11:00. + +River ends on the cliff and comes off in a waterfall (shallow river). Path ends at the river, about 20 years old. + +River appears to contain water elementals. + +Elemental says: "Pain gone, no hurt me. You come take me like others, take we escape through pain, closest good water." + +Geldrin frees the two in the blue crystals. Elemental wants us to free the rest. Death dome - came through hole made for poison water. Hole hurts, in the sea. Elemental stealers trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. Powers death dome. Garadwal was one with the moon rock but escaped. + +Scaly dragon with web fingers goes through dome - + +blue/grey colour. One big one with four arms and tridents, poison water, and Garadwal with tridents. Hole by cliff face at bottom of sea. Occasionally somebody/thing goes down to annoy the crystal. + +Head back to the town to speak to militia, 13:00. + +Salinas - earth and water - the guy our attacker is talking about. Soon free like our mother Garadwal - sand, earth and fire. Barrier is enslavement. + +8 altogether - soon find hidden lair of oppressors, used as batteries. + +Element diagrams: Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. Second diagram includes salt, ice, lightning, smoke, magma, sand. + +Theories: Needs of the many outweigh the needs of the few. They tried to destroy the world and got locked up. Preemptive locked up. Water back: 10 miles down the path from Seaward (firewise), 10 miles down the coast from the barrier. Head back to quarry. 16:00 / 18:00. Door in the lift right next to the barrier. + +2 panels missing from the hole. Passageway descends down behind the wooden panels. Goes down quite a way - has been excavated on purpose, not a mantle seam. Widens out and opens to a real old built wall (1,000 years old). Opens into underground structure. + +Right old door - sign of aging, handle hurts. Old gnome walks out, realises we are there. Gives him a coin. "Underbelly?" - truce in place. + +Get a tour prison: Down corridors, turn left many times. + +6 corners, huge metal door - dragon clearly holding ring. Go through - see barrier at far wall. Smaller barrier encompassing a massive salt dragon - sweating salt for 20 years into the earth. They are trying to free it. Room was full of odes and ends and copper pylons were there but they removed them. Runes on floor barely visible as covered in salt. Another room has 4x curved copper pylons, removed 20 years ago - dragon was already seeping salt. + +Keep Justicar out of it down here. Down to the left is the original entrance. Go look at it - similar to a room we have seen before in the observatory? Examined in the last 20 years. Big black dragonborn comes in - Turquoise's boss, not many around. + +Cult looking for a laboratory. Basilisk - there's a laboratory of a similar vein 20 miles earthwise along the barrier. Head back to town. 20:00. Common room - sharing with one other person who hasn't shown up. + +Message to Basilisk * He comes to us. Knows little about salt elemental. Black Scales - mercenary group, work for Infestus (black dragon). Basilisk went to check observatory - couldn't open the chest & couldn't get in the golem underground room either. + +Garadwal: Prison at lake by lab? - ooze one. Frozen near Rhinewatch - ice one. + +Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. Is he an elemental? + +Go speak to Elementarium guy in Seaward. diff --git a/diary/day-15.txt b/diary/day-15.txt new file mode 100644 index 0000000..90ce865 --- /dev/null +++ b/diary/day-15.txt @@ -0,0 +1,30 @@ +Day 15 30th Dec +=============== + +Head back to Seaward. Follow a caravan of stone back to Seaward. Get to town - raining. 19:00. Need to see Elementarium; actually dressed this time. + +Quasi Elementals - don't have their own plain. Known 8 major plains; light and dark effects to create the 8 main ones. They became their own things and started to fight. Not become that powerful. + +E + W + L: ooze/slime/life - spark of creation. E + W + D: salt - makes water bad and crops won't grow. E + F + L: metal - positive construction. E + F + D: magma - destroys farmland etc. F + A + L: smoke. F + A + D: void - absence of everything, nothingness. A + W + L: ice. A + W + D: storm. + +Where does sand come into this? + +Goes down the trapdoor after talking to us about salt water elementals. Dirk listens - talking to somebody about it. They don't exist. Salt and water are their own things. Pollution. Salt elemental poisoning the water elemental. + +Dirk - crystals helping the barrier? Elementarium believes it, but he needs the Justicar to believe it so she leaves. Geldrin to try to sway Grand Towers to get her to leave. Rhonri or Revir might have an obsidian bird to relay a message. + +Arrange to meet back with him @ 9:30. Dirk asks about Garadwal - he goes down to the chamber and retrieves a dwarf skull and asks it the question about Garadwal. + +The information you seek is not for your kind. He is imprisoned in the prison of the Sands. Brutor Ruby Eye - troublesome being, wizard of great power. + +Shows us the skull room - he talks to them for information. What would happen if Garadwal escaped? It would be bad indeed. The barrier would be weakened by the loss of one of the 8. He was the only void they could find. If one was to escape it would be him. Feedback from the destruction of his prison would have damaged the others. + +Geldrin tells him of the tri-moon shard. Brutor knows of the first crack. Envoi was tampering with it for his own means, tampering with the containment device, and if something happened to him it would be bad and cause the crack. Wizards didn't agree of their entrapment but they all agreed Garadwal needed to be contained. Ooze was a good one. Ice and storm were put in the same chamber as land was tricky to be dug. + +Stop leaking? Maybe sigils out of whack. Brutor killed by black dragon. Demi lich - how he was made. Maybe a way to reverse the polarity. + +Spinal! Brutor's password. Winter Roses? Envoi's password. + +Halfling killers. 8 things linked to the poles. Pirates. Elementals. Received downpayment for our work so far: 200g. 20:30. + +Put horses into the stables. Stay at the Night Candles. diff --git a/diary/day-16.txt b/diary/day-16.txt new file mode 100644 index 0000000..b1762c4 --- /dev/null +++ b/diary/day-16.txt @@ -0,0 +1,176 @@ +Day 16 31st Dec +=============== + +Head to town hall to see Rewi Lovelace - gnome. Room is very messy. Obsidian raven is pulled from a drawer, called Errol (but not really). Justicar causing more problems than solving. Request further evocation spells. + +Rewi - thinking on how to enhance the pulley system at the cliffs. Retrieve horses and cart and head earthwise. 10:00. + +Limit: sis poor? Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. Continue earthwise towards Newhaven. Land starts to get lusher and seems to be at the edge of the salted area. 12:00. Lady at a well - the only freshwater in the area. Others have been boarded up as water is bad. Mayor runs a farm - keeps chickens. Full up water skins. + +Road out of Newhaven in disrepair. Outside of town grass dries up again. Town seems to have good water as an anomaly. Not many birds around. + +Nothing around to indicate a laboratory. Obsidian raven appears - suggests meet up with Justicar and work together, wants our location. Don't give it to him. Flies back to Seaward. + +Keep going to 10 miles away and 1 mile from barrier. Find charred earth - last few days - campfire and rations - cultists? See some tracks, 5-6 people camped. Prints show they are searching for something. Nothing obvious. Follow tracks towards barrier; they stop and we see acid corrosion and blood speckles which look to be swept over. Black dragons have acid. Green is mist. + +Geldrin checks the compass and we follow it about 30ft down. Find weakened signal, see purple, and find 10ft stone walls with a door. Password opens it (Spinal). + +Enter into chamber. 2 golems in dwarf form guard a door. Spinal opens the door. + +Go left down corridor. Enter large room - stone benches and lecture seats (seat 20-30 people). Jagged rock horn - representation of Tor. "Tor Protects" written underneath statue. No visible disturbance to the dust. + +Book on lectern - Book of Ancient Dwarven language on Tor. Head across the corridor - room, same size but only contains teleport circle (one set). Geldrin takes rune number. Dirk finds footprints that have tried to be covered up and lead down the corridor. Fairly recent, could still be around as have gone back on themselves. + +Follow footprints to a closed door. Footprints seem very purposeful. Ruby in the dwarf face releases some chains which open the door. + +Use my crowbar to hold both of the chains to keep the door open. Geldrin sets an alarm on the hatch and teleportation circle. + +Go into another door (2nd left from the hatch). Purple glow from the room. Paperwork on the walls of pylons and tower structures. Bubble of shield energy in the middle. Scaled model of the penta city states. Suspended globe of elements at each of the compass points. There is a city Fire Airwise of Lake Azure half way between the lake & Aegis-on-Sands. No sign of any of the prisons or labs on the model. Elements don't move. + +Teleportation circle activates. Retrieve crowbar and hide in diorama room. + +1 person seems to come out and goes to dwarf face door, to door opposite us, then over to us. Tanned skin gentleman comes in - human, desert style robe, Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. Has found several circles and he is a collector of magical trinkets. Make a deal - he gets all the coin/gold/silver and we get first pick of the treasure. He gets the next, then we get 3 other picks, even split. + +Lounge has a scepter that seems out of place. Dirk takes it and an alarm goes off. All doors are now arcane locked. Go back through dwarf face door. Go left. Mouth appears and tells us traps are active. First door - ten skittles at the end of a lane, poker table and darts board with 3 darts in the 20. Poker table is magical; whole room is magical. Next door totally empty room... Next door - silence spell goes off. Room is full of rows and rows of crystal balls. Memories but we don't know that. + +Back in the lounge hidden room behind the dwarf portrait: blank paper and non-wounding dagger. Paper is magical to write special, & silence spell stops. Go back to crystal ball room. + +Memory of goliaths helping to build grand towers. Find the ball with the most scratched plinth - memory is filled with dread. Acid smell like house, scarred by acid and dwarf skeleton. + +Get one near grand towers ball - see 4 other people in a circle + +around teleport circle: human (male), elf (female), human (female), halfling (emo), purple crystal rises up from the circle. Before acid splash, see lounge talking to Envoi, asking about if it's affecting anything. Joy sets off the alarm. Ruby Eye takes the dagger and splatters blood and stops the alarm. + +Before - fields of white roses. Envoi talking to elven woman from circle. Joy and dwarven lady next to him. Feel content but forlorn when looking over at Joy and Envoi. + +Male darkish elf next to Envoi being introduced in observatory - tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. Envoi wearing 5 rings! + +Hot Spring - opposite dwarf lady (Brookville Springs), early date, falling in love. + +Standing in a room in his building: purple dome and copper pylons with blackness and a shadow. Ask shadow what it thinks. Shadow replies, saying no, not yet; it is trapped and threatens calamity. + +Nice room, intricate vine patterns, elven mage asks about change - nothing. Browning retreated to grand towers. Glad she is here, worried about it - warm secret. Think Browning is going to cover it all up; thinks if people know how it works then they will ruin it. + +Last one - see him in mirror wearing robes. Book and chain with staff, looks down under mirror, head on floor, stone opens up showing skull. Puts 2 crystals in chanting and "Tor Protects". + +Pythus Aleyvarus? Blue dragon. Ruby Eye seems to have planned the dome: 5 pylons and 5 more around the Grand Towers to make it work. Early periods where he's protecting towns from elementals. Group all fighting; when it breaks 6 armed rock creature, they all make a pact. + +Male human points him to a crater with a massive purple rock & Envoi says he will build an observatory to track it. Brutor says it is what they need. + +Warring kingdoms - join together to construct everything: Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. + +Turning on of the dome at the point of turn on, something flaming bursts through and Browning bursts through the barrier and is attacked. Room opposite - big engineering astrolathe, seems to be the planet which is a disk, with the moons and their orbits in real time. 15:00. + +Display shows the date and time - current date 31st December 1011. Room next to orbs. Protection from Elements spell. Open the door, boulder elements in there and try to get out. Slaves? Made to dig - leave them there. + +Down the corridor. Room same place as calendar room, not locked or trapped. Room is empty, mirror image of calendar room. + +Opposite to boulder room: Smaller room - empty aside from picture of moon holes, look like big gem holes. + +Opposite orbs: Feel weird opening the door. Glass cabinets in pedestals and shelves with various nick nacks, brass plaques and glass domes over them. + +Curved with flowing water - bottle "Containment taken from Lord Hydranus". Stone at the top 2 are glowing. Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). Magic bounds / magic missile. + +Great sword - stone and bone hilt with steel, dwarven steel, blade in friendship. Sword given by kings of the goliaths. "To the spell ones on the crafting of your big building." + +Codebook holder - with a book very delicate: "Book recovered from grand towers upon discovery." + +Celestial dwarf mannequin, ornate green silk dress, gold trim & tiny emeralds along the trim. "Worn by Princess Seline to the Grand Ball." + +Cushion - small red gem, garnet. No plaque. Size of the moon holes. Coin press - grand towers pennies. "Press used for souvenir pennies." + +Jar - eyeball in fluid, "My Eye". Scrying eye, can scry once per week. + +Book - sealed not open, made of tan leather and looks unsettling. Platinum lock. Human teeth are around the edge. "Noctus Corinium Grimoire" - lock looks like it's an addition. + +Plinth wheatleaf - pillow with marble cube radiating yellow glow. "Drixl's Cube, a gift from the golden field halflings." + +Bottle - wine shaped, "first pressing of Siggerne - midh-iel", Maiden's dew drink. + +Ring - looks like Bushhunter ring, ring of protection +1. "Failed attempt to recreate my stolen ring." + +Comb - dragonbone and jade, details carved of a forest. "Gift from the elven princess to my wife. She never got on with it." + +Scepter - silver, fine golden filigree, white seaward gem in the top. "Staff gifted by the merfolk of the great sea." + +Gem writing: "Time existed before me but history can only begin after my creation." Celestial book - tower seems to be the centre of the world & + +don't know where it came from. Clues: Geldrin got a vision when reading it, saw 6 primal elements looking down on the world. + +Geldrin's alarm goes off - see figures at the end of the corridor: 4 burly black dragonborn. They hear alarm. "The alarm's going off, someone is here" (Draconic). + +They want us to leave, claim it in the name of their master. Shields have mosquito on it. Create a shield wall and we yank crowbar out. + +Fight: 3 1/2 swords 4 shields, mosquito 70gp 4x tower pennies Obsidian bird - Errol. + +Errol - last message was gnome giving our location (Rewi) to black dragon? + +Red gem found under plinth under Celestial book: "The floor of my ship is decorated in equal parts with riches, tools, weapons and love" - games. + +Next room - walls and ceiling are blackened - kitchen. Nothing in the oven. + +Jar contains gem: "The rich want it, the poor have it, both will perish if they eat it." Nothing? - right here. Barrel seems magically sealed - rune for the cold beer. Contains a jar with a hand in it. Hand is ruby eyes and has blood which stopped the alarm. + +Next room is warded and locked. + +Previously empty room is now full of books: control earth elementals, Tor, gems, for spells, wards. Information on how to construct crystals for magic. + +Gem inside a book: "Although I'm not royalty, I'm sometimes a king or queen, and although I never marry I'm only sometimes single." Bed. + +Summon unseen servant in the elemental room. + +Gem, Elemental Room: "In my first part stir creativity and in my full form I store the results." Museum. + +Gem, Orb room behind an orb: "You have me today, tomorrow you'll have more. As time passes I become harder to store. I don't take up space and am all in one place. I can bring a tear to your eye or a smile to your face." + +Memory - orb room. Memory is: "If you got here you got my message. Only clue is based on the layout of my rooms. When you get inside you'll know what to do." + +Gem, Calendar room: "I guard the start of this recipe, just scramble, hidden." Kitchen? + +Bedroom - seems to have a woman's touch, tapestries, rugs etc., wardrobe drawers, full length mirror, chair, fireplace. Compartment under the mirror - skull with 2 gem stones rolled up paper in the eye socket behind big gem. If you feel like lived a good life, this is the Denouement (final part, finishing piece). + +Gem in the other eye: "They are never together, yet always follow one another. One falls but never breaks and the other breaks but never falls." Calendar. + +Put all of the gems in the slots and room opens. Purple sphere that doesn't let light through. Void creature? Won't used as it may have been too weak. + +Seems to be a self contained barrier. Void creature wants to be let out. + +The diviner - the one who stole his brother - the twins we killed. Mechanical trap activates something in the room. Magical trap teleports to the room. + +Pythus takes creepy book and Celestial book. Dirk: sword / scepter of the merfolk. Me: coin press / cube. Invar: ring of protection / potion bottle. Geldrin: spear / eye. + +Pythus gives Geldrin a scroll of teleportation and goes. Geldrin takes eye and scrys on Pythus. Sand stone cavern, pile of gold on top is a blue dragon (serpent-like), reading the skin book full pages made of cured human flesh. Seems to be at the edge of the desert near "Salvation". + +Back to void room. Will tell us what is in their room in exchange for freedom. What is in the room will help release him. Rubyeye wanted to live forever. Went in with elven woman and dark male (Envoi). Just a fragment of the void, but if added to the others can get more powerful but only a tiny bit. + +Inside a key looks like pylons placed against a barrier circle of copper and turn it - talking like barrier isn't active. Pylon for his prison as well as another. + +Use the ruby to open the door, then destroy it. Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. + +Go through door next to void. + +4 plinths - by the door are 4 copper pylons, look like they would go over rods/force field. + +2 metal circles, runes all around (copper). 1 - steering wheel size. 1 - over a meter, stood upright. 3 - dragon skull, Alsafur dog size. 4 - book, same lock as on the creepy skin book, made of leather - unpickable lock. + +Possibly storing one of Envoi's rings - it was under the skull. Skull is one of my kind - Veridian dragonborn, dead for approx 1 thousand years. + +Envoi's ring: a sacrifice made to live eternal, father and daughter. Book writing around the edge - old dead language. The memories and learning of Atuliane Harthwall. Needs a powerful identity spell to learn the command word to open the lock and book. + +Mosquitos, woodlice and moth are now around. Rain storm. Void will help as long as he is not detained. + +Lightning strike is seen although underground. Try to let void out. + +Push pylons against his dome - opposite pylons seem to switch it off very slightly. Ring by the dome turned and attracts to the pylon. One full turn releases the dome in that quadrant. + +Void releases a circle of obsidian to control him with. + +Take his ring and book and small ring. Remove gems from the moon face lock. Head out and close the initial door behind us. 18:30. Massively overcast with the storm. Air is thick with insects: moths/mosquitos, ants etc. Circle of storm 1/2 miles wide, moving unnaturally. Push of barrier looks like 8 massive claws pierce through - black dragon looks to be trying to come through the barrier. He wants the remains of his son - seems to be the skull in the sealed chamber. + +Go back and get it. Missing the side of his face - think Rubyeye did it, but he may have started it by killing his son. Place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. Takes the skull and says we are even (for killing his men). + +He flies off and Thunderstorm goes with him. + +Head back to Newhaven with the cart. Go to pub - picture of 5 hands together making a star. Silver dragonborn behind the bar, golden rim spectacles, halfling wait staff, tabaxi bar maid. "Gelandril Harthwall" been here 10 years. It's said the 5 wizards used to meet here. + +Sleep. diff --git a/diary/day-17.txt b/diary/day-17.txt new file mode 100644 index 0000000..f4ed42f --- /dev/null +++ b/diary/day-17.txt @@ -0,0 +1,60 @@ +Day 17 1st Jan / Tri-moon +========================= + +Goblin looking for us - Scum had a message for us. Find Scum as we leave the pub. + +Apparently warrant for our arrest: Treason - conspire against the Towers to break barrier. Scum - telling Elementarium to meet us with Ruby Eye skull (1 mile outside Seaward). + +Sent message via Errol to Grand Towers saying we are going to Everchard to put them off the scent. + +Message to the Basilisk: arrive at possible meeting point, waiting for nearly 3 hours. Cart comes off road with a human onboard, don't recognise. Seems suspicious. + +1 box contains Grand Towers pennies. Council ask for him to transport to Fairshaw - The Cart (Garick Blake). Looks like the gnome sent it. + +Dragon notes: Silver - Harthwall. Copper - Spruce, white. Black - Infestus. Veridian. + +Blue - Pythus. White - the ancient. Red? - Soot. + +Manifest: 1 currency - Towers pennies. 1 provisions - ash jerky??? 2 armaments - spearheads, copper ends, trident heads tipped in copper. 1 waterproof papers - reams of enchanted waterproof paper, salt water only. 1 tar. 1 tools - heavy duty, ship building? 1 misc goods. Should have gone out in 2 days with guards. Invar knocks the driver out. See what looks like Elementarium riding towards us. Gnome seems to be trying to clear the decks. Elementarium doesn't know about the spearheads etc. Wants to set up a meeting with Lady Harthwall. They have a council to discuss security matters within the dome! Gives us the Ruby-Eye skull. + +Jerky bag contains a hemp bag - pungent sickly sweet smell, reminds me of rose spice, but narcotic. + +Ruby Eye: Infestus' son - spawn of evil - needed a powerful sacrifice for a friend (Envoi). Salt dragon leaking - worried tampering with the life may have weakened the force. Reinforce the barrier - if we don't weaken the barrier, possible fix by refilling the voids, or safely disable the barrier - turn off with the fail-safe button in Grand Towers. Weird skin book - grimoire Noctus Caerulium - forbidden magic. + +To stop Tri-moon shard we would need to fully redo the dome. + +Create a device to repel it but barrier would need to go down to do it. Relationship with the merfolk? Fish men, different people, then those invited into the barrier. Great helpers to set up barriers. Thinks Browning had something to do with goliath settlement disappearing from the history (must be clues). Green dragon seems to be residing in the area. + +White Dragon helped to build the dome. Reds, no blues. Elementals liked to attack and this is why the barrier was put up. Tower was perfect place but needed more. Backup plan for the void elemental stashed in his safe, if not there need to find another. Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. Tells us to get on the rune. Appear in a lush castle room at Harthwall. Sat at head of table seems to be Lady Harthwall; stood beside is Sister Lady. + +4 chairs by the rug. Rip in the sky - Basilisk appears with: Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. + +Catherine Cole vouches for me Valkarige vouches for Invar + +Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. + +Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. small group of like minded to protect the barrier want to maintain stability of the barrier. News reached them about the fragment. + +Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. + +Green dragon responsible for destruction of Dirk's homeland. Rubyeye blamed Dirk's kind for helping the dragons. It's said Verdilun dragon is shacking up with the red dragon. + +Keeley Curdenbelly's research maybe of use (the "liver" in the desert) 1. head to merfolk 2. get crystal from the water 3. speak to ancient one We passed off the twins mum. + +Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical + +leeching elemental prisons Garadwal void on the loose shield crystal in the sea. World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. + +Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* Gave him the coin press and told him the coins in the cart were a create of them. + +Back to our cart. + +Head down the main road toward Fairshoes. 5:30 Start hearing birds and animals etc. 10pm Find a place to camp for the night. + +Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. + +Back on the road. Uneventful day heading to Fairshoes. + +Make up camp again. + +Nothing happens. diff --git a/diary/day-18.txt b/diary/day-18.txt new file mode 100644 index 0000000..b700eaf --- /dev/null +++ b/diary/day-18.txt @@ -0,0 +1,4 @@ +Day 18 (Friday) +=============== + +2nd Tan with Finnan 16 days until Timnor diff --git a/diary/day-19.txt b/diary/day-19.txt new file mode 100644 index 0000000..496a811 --- /dev/null +++ b/diary/day-19.txt @@ -0,0 +1,66 @@ +Day 19 (Saturday) +================= + +3rd Tan 15 days until Timnor approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. Go through town to the harbor to get a boat. + +Temperature is oddly warm for this time of year and this close to the sea. Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. Cabin 17. Figure head is a wooden shield crystal. + +Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. + +Hostess lady chants and brings forth great winds and a storm. + +Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. + +Merfolk - they've never done that before. Pirates - has been attacking people more recently. creatures that can petrify others by looking at them. 150g if we need to fight. 5g if we don't. Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. Silver Dragonborn - Bard - recruited. Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. + +Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. + +Salinus? He calls on Salinus - worm - calls forth salt elementals! + +Kill him and his crew. + +free passage on any of their ships and 400g Receive Scimitar +1 - attune for water breathing. Kairibdis' Pistol of Never Loading +1 (D8) noisy. + +Retreat to cabin with a cask of rum. + +Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. + +This is the only town on the Isle. Turtle men seem to be the locals. + +3rd road left 3 building - Sailors Rest. Take a shrine tour - Shrine to the great Turtle. + +Merfolk - the accordionman - look after the Turtles. -200g life gem. We stand on the back of The Great Turtle. + +Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. + +Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. + +Water gets up high on a tri-moon and covers the building. Tell the guy about our fight with Kairibdis - Walter. Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 Takes us there. Old town in disrepair but one dock looks fairly well maintained and repaired. + +3 houses look decent too. First house closest to us seems to be lit. Creep up to look in. 4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. 1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. + +Both other huts have lights. Furthest one seems to be more secured. One has a conch and calls and says kingly comes now. Wait around for him. + +Water comes back. Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. + +11 fish people carrying things. 15 overall. Something seems to be coming by barnacled sea cows. 10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. + +8:30 9:20 10:00 Chariot back pulled 10:30 Creature stops and sniffs as they are being watched, tells them to search for us. + +Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. + +Need all or the plan will not work and he will be cross and he will be worse. + +Think 6 armed creature will attack our ship for the weapons. go back to Turtle Point. 12:00 Plan to go to Freeport instead of Baytail Accord. + +shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. + +Tell her what happened - 10ft 6 armed thing is an Excellence. Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. Dunhold Cache information. + +Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. + +Recommends to speak to merfolk of Lake Azure for Dirk's city. + +Shipment - get a small unit. Sahuagin have one of the conch's (8 in existence) Kiendra's. Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. + +one of the Merfolk will come with us. Pact leader Freeport - Tiana. diff --git a/diary/day-20.txt b/diary/day-20.txt new file mode 100644 index 0000000..2fbc593 --- /dev/null +++ b/diary/day-20.txt @@ -0,0 +1,74 @@ +Day 20 (Sunday) +=============== + +14th Tan 1012 14 days until Timnor Stay in the barracks for the night. Dirk has a strange dream about a goliath sitting on a granite throne looking concerned, two females tending to a dwarf, who will live but will lose an eye + +(Rubyeye), fought well. *changes* Savanna scene: dancing around a fire with a granite city in the distance. Face in the fire ?Enwi? then Jagg? then disappears. + +Head towards ship. (Merfolk) Guardfree - states his mistress has been working on misdirection. + +get food brought to our cabin. Journey is uneventful luckily. Oddly a busy bustling city mishmash of styles. Rainbow ship is docked here. + +Quartermaster loads shipment onto our cart to take with us. + +Baroness Lavaliliere - head of Freeport. No taxes for trade here. + +Newspaper: Ancient takes flight - left his home for last 1,000 years moving to Snow Sorrow. Fighting still going on in the mountains near Highden - good taking a beating. paper seems to be propaganda. Go shopping. + +Esmerelda - magic item shop. Go to see Tiana at the Siren and Garter. + +Expecting a group of 40 to help fight Excellence. + +They are mortal and can be slain. Delights in bossing the mortals around. Baroness - seems good but lets people do what they please. Although can be random with which groups to dispose of. Latest one around a week + +ago - a group of bound elementals and gems - fire and water. another group selling archeological items from desert - Tabaxi awakened etc. Ceased the goods. + +Go find the Basilisk in a private room. + +Highden - being attacked by a Fire Excellence. has something in for the dwarves. Investigated the crater and found an old lab but unable to get in. + +Friends on the council meeting with the ancient around Snow-sorrow. Azureside - reported perodotta and spawn amassing in the area. Arabella kidnapped again - targeted attack, faces removed. No forces available - zinquiss will meet us at the harbour + 1 other. following her predecessors' ideas. maybe something similar to Lady Harthwall but is not a dragon. Baroness neutral party, fairly reclusive + +Told about copper weapons - paper - Maelcolm Jethnes & Earl of Fairport involvement in the shipment. Get a dagger from Basilisk. 1 charge for dimension door. 3 charge for teleport spell opens a portal open for 5 seconds. think of the place to go - big enough for a person. 1 recharge per day. Lesser rift blade - Dagger +1 - 3x charges. + +Harthwall 2nd most Common last name (Browning 1st). Always been a Harthwall in charge of Harthwall. No Records of relative. Very reclusive family who don't appear in public until the coronation ceremony, only seen together to hand over the crown. (possibly disguise self spell) + +19:00 Go back to see Tiana again. get another guard - Guardfree. + +Pirates Pearls Plundered - Icky lower. Poor Gut Refuge - Cheeky Thimble Rugger + +Go out to the cart - Dirk notices the padlock has scratches on it. The scratches look uniform & pattern I recognise but don't know why. Upside down thieves cant - "Drunken Duck" & scratched with claws like mine. change the markings to Everchard. look into parking and Guardfree keeps watch. Darker in Bugbear next to lizardman. + +Head over to the temple to give them the spear. Female half-orc comes to speak to us - hand over the spear and she goes to check it out with others. Donate in exchange for help? + +Request an audience with the higher power to discuss - won't be here for + +3 hours. go to get lodgings at the Pirates Pearls Plundered. Crab man in charge - icky. Baroness grants us an audience right now, young for an elf. Room is odd - paintings are the predecessors all wearing the same necklace (like a mayor necklace) & lots of jewelry. + +Desert relics - thought maybe they belonged to an old friend - long time ago - Velenth, Cardonald, + +worked for her before coming here - willingly. Vote 12 heads who vote who has the ability to uphold a very specific set of ideals. + +Other things taken off the street because she doesn't approve of the cult. + +Will loan some forces - Proviso - she gives us information about a laboratory. Can we get a red gem for her, hunt but not as hard as diamond in the workshop. Gaping hole in the side of the building. + +Barrier - emergency systems - something else in there - very young, cheers? she ran. + +Dragon - rumor to roost in the ruins of Dirk's old city. + +The creature in the chamber thing? ?Goa duck? - no. + +Has the code to the circle and the safe code whilst the defenses are up. gives us the lab. + +Valenth wanted to transfer herself into an object... Seems a little shook and guard helps her out. 22:00 Return to temple of Cierra. Huntsman has returned and comes over to us. + +Huntmaster Thrune. in runes. Ruby Eye spoke to their church often and interested + +will provide aid to kill Excellence. Ruby Eye thinks we might want to get the book back from the blue dragon before she tries to get it, she was Enwi's apprentice. + +Ruby Eye's best friend wanted to craft herself into some thing and continue in that form. Spear was a gift from a Huntsman of Cierra but it's actually an arrow and there were 5 of them taken from Cierra's last battlefield. + +Back to Pirates Pearls Plunder. + +Guardfree - will get his mistress to bring guest shells. Try to plan what we are doing. diff --git a/diary/day-21.txt b/diary/day-21.txt new file mode 100644 index 0000000..bdb3362 --- /dev/null +++ b/diary/day-21.txt @@ -0,0 +1,30 @@ +Day 21 (Monday) +=============== + +6th Jan 13 days until Tri-moon We all have dreams that are tinged with cold. My dream - in family home, sibling playing happy memories, looked at town hall but looking like a crater but in fact a black hole pulling in more buildings. Hear a voice: "Where is he I know you hide him" horrible voice. Panic and turn then wake up (looking for Garduul?) Void! Just our room is cold. As the ice melted, a white dragonscale drops from the icicles. Go look for the Captain for a boat. + +loan the boat for 100g a day and 500g deposit (125g each). guardsmen 20 (Sergeant has a necklaced emerald glowing when he talks) zinquiss and black dragon born (Wrath). clerics 15 and leader. Pier 12 - large group merfolk 30 + 2 litters + +Speak to pack leader Tiana & other leaders gather. Get 2 guest shells. + +10 spare shells. Sergeant takes our cart to the keep. + +Captain Hween + +Wrath will stay on the other side of the barrier once we get there. + +Pack leaders: Shundra - Turtle Point Kiendra - Dunhold Cache Tiana - Freeport Alana - Riversmeet Set sail - sea is calm. Water seems clear - no noticeable signs of him yet. + +Merfolk, zinquiss, Wrath, half clerics in the sea with us. + +Excellence seemed to have come from 80 miles away when we were at the turtle village - so possibly Dunhold Cache or the smaller islands around. + +& net Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaw. + +Wrath (Colin) middle name. when he gets to Blackstone scale. Request to look for the location of Garaduul + +Island - pass it and nothing seems to happen. Arrive at Fairshaw. Boat is ceased upon orders from the Earl, occupants being detained for Treason etc. Diplomatic mission carrying members of the Pact etc. + +Suspect the Earl is part of the Cult. give zinquiss 200g for 4x healing potions. Guards return and tell us to stay on board whilst investigation takes place. Zinquiss returns with 3 healing and 1x greater healing (distributed). + +News: Highden - Battles not doing well, strengthened by dragon sightings. Heartmoor - People falling ill - surgeons deployed (Perodotta?) Grand Towers - Justiciars leaving to the 5 points of the penta city states. Provinia - locust and mysterious spiritual event where things keep disappearing. Sword blessed +1. diff --git a/diary/day-22.txt b/diary/day-22.txt new file mode 100644 index 0000000..47b7f38 --- /dev/null +++ b/diary/day-22.txt @@ -0,0 +1,36 @@ +Day 22 (Tuesday) +================ + +6th Jan 1012 12 days to tri-moon. Get called to the mess hall by Tiana. + +Construction under the water and they have made a gate by raising the crystal up to leave a gap. Fish shamans taking notes on waterproof paper also. Crystal is approx 1m square. + +Can sense Kiendra but no response possibly unconscious but seems to be in the cavern. + +Split underwater group into two to sort out crystal & also attempt to rescue Kiendra. + +Approach shield crystal in stealth. + +See - above our field of vision are some sharks who seem to have spotted us. + +Fight. + +We overcome and defeat mobs at the crystal site. Kiendra - found and rescued - very weak and tortured. & coin pouches - 112g (give to crew). returning - speak aquan. Find waterproof paper, 3x dispel magic scrolls (geldrin) Big Boss - Spear glowing dull blue - Doom spear +1 Suit of plate mail - Plate of Hydran +1 resistance to cold. + +Boat - pretty wounded. attacked - Hunt Master missing. Other party - Tiana's - dispelled shells and got Half orc priestess on the boat wants to check on the other team for the Huntmaster. Necklace Sergeant wants to come with us. + +Go over and Huntmaster fighting an Excellence both very injured. + +Deed Excellence! 4 mermen all mermaids + +4 clerics 6 guardsmen Survivors: survive Moor up by Dunhold Cache for the night. Merfolk recover our dead and lay on the + +deck - Priests oversee and I thank each one for their help and sacrifice. + +Pull up to the cove - lookout shouts there is a vessel already docked. Chariot with water elementals chained to the boat - Excellence's boat. + +We row to shore to investigate. Mother of Pearl named Chariot, no other signs of movement. + +Dirk speaks to elementals and they want to show us where the excellence live, will come with us on the big boat. + +Take the chariot back with us 8-10kg. Zinquiss will sell it at an auction in 7 days, have the address for the Freeport auction house. diff --git a/diary/day-23.txt b/diary/day-23.txt new file mode 100644 index 0000000..e23094f --- /dev/null +++ b/diary/day-23.txt @@ -0,0 +1,54 @@ +Day 23 (Wednesday) +================== + +7th Jan 1012 11 days to tri-moon. Go to Excellence lair with Merfolk - Pack leader Alana. + +Water ebbs and flows like a tide in the underwater cave. 20ft long crystalline sculpture of a dragon - base has runes glowing. 3 cages and barrels. 1 cage contains a merfolk - but looks different - green not blue. Alana seems to revive him and takes him back to the ship. + +Chests seem to be laced so waterproof - contents may not be openable under water. open one and contains white powder which I inhale. Rabbits - whole room turns into a black void. Bas, Athal - Salamanders - and Arabic writing. White dragon circling around the dome. + +Two blue eyes in the darkness coming towards me and really cold and back in the room. + +Other cages - in the middle of the cage they see snail with a gleam of metal which is a jeweller's chain attaching it to the cage. Guardseen says the snail is a bad omen - its been drugged. Back to ship. + +Merfolk - abducted from beyond the barrier, him, his friend and wife. Woke up one day & they were both gone. Wife is nobility in their pact. (Snewl?) + +Hunt master dispels magic on the snail & a mermaid appears. Empire of their people outside of the barrier captured while on diplomatic mission to the city of Onyx, doesn't trust them because war between them and the Salt elementals. Princess Aquunea. + +City of the black scales has a "door" into the dome - Infestus can't use it as too big. Payment to access is a Grand Towers penny. + +Check out the barrels etc. + +sickly sweet medicinal - potion of magical energy regain 1 slot - 1 hour. silk and parchment interleaved - runes. 2x white rose powder. Tiana gives us 1,000g. metallic censer (incense holding burning device) silver? religious? water god? Censer of Noxia. Ability to enrage and control water elementals. It's active. + +Send message to Basilisk. Arrive back to Freeport - seems very cold. Much colder heading back down to Freeport. ?Rimewalk issues? + +Snowing over the sea, everything very dark and snowy. Guy shouting the End is Nigh - moon is crashing down into the city. Ask him which city and he then "it bothered he dreamt it." + +22:00 Lots of people having dreams. Gnolls attacking a village requested backup from Everchard and Fairshaw. + +Underwater - mermaids - "big cat with metal wings attacked it." Happened a few nights ago - same time as ours. + +Head to the Castle to see the Baroness. Necklace is removed from the Sergeant and he just walks off. + +Mermaids - Having a meeting in 3 days at Baytail Accord to discuss what happened. We can go. + +The dreams seem to contradict each other, possibly from the Ancient One - so could happen. + +Huntmaster - going to Grand Towers to speak to the Hunt Lord. + +Justiciar in the city. ?Looking for us. Baroness gets us into the Drunken Duck - secret in Air wise from Jewelry District. Written on our padlock, on the cart. Cart still ok in the castle. + +Baroness Master - Valenth Caerduinel. Necklace. Sister is a ring. + +Go to Drunken Duck. All the walls are covered in pillows and ?soundproofing? Red dragonborn + +2x tabaxi Automaton + +2x halfling and gnome Survivors: clientele Gave me (Axion) Schnapps from the Brass City! Barman says only the best for the "Little Finger". He's intrigued by why the 3 best members of the Underbelly went on a mission. + +Tabaxi Whisperers laden with 'Dev'. Traders 'Keeps' from foot to foot. + +Faint noise through the floorboards, raised voices? Automaton keeps talking about a factory. Wants to know where the labs are. Tell him all by the barrier. Cuts down his search radius... + +Get a private room to discuss matters. Send message via the underbelly to advise we won't be going to Baytail Accord. Will go to desert laboratory. diff --git a/scripts/__pycache__/build_all.cpython-314.pyc b/scripts/__pycache__/build_all.cpython-314.pyc new file mode 100644 index 0000000..6248a59 Binary files /dev/null and b/scripts/__pycache__/build_all.cpython-314.pyc differ diff --git a/scripts/__pycache__/build_party_diary.cpython-314.pyc b/scripts/__pycache__/build_party_diary.cpython-314.pyc new file mode 100644 index 0000000..54887dc Binary files /dev/null and b/scripts/__pycache__/build_party_diary.cpython-314.pyc differ diff --git a/scripts/__pycache__/process_notes.cpython-314.pyc b/scripts/__pycache__/process_notes.cpython-314.pyc new file mode 100644 index 0000000..a724570 Binary files /dev/null and b/scripts/__pycache__/process_notes.cpython-314.pyc differ diff --git a/scripts/__pycache__/split_diary.cpython-314.pyc b/scripts/__pycache__/split_diary.cpython-314.pyc new file mode 100644 index 0000000..c88da07 Binary files /dev/null and b/scripts/__pycache__/split_diary.cpython-314.pyc differ diff --git a/scripts/build_all.py b/scripts/build_all.py new file mode 100644 index 0000000..e55ebd3 --- /dev/null +++ b/scripts/build_all.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python3 + +from pathlib import Path + + +def page_key(path: Path) -> tuple[int, str]: + try: + return (int(path.stem), path.stem) + except ValueError: + return (10**9, path.stem) + + +def main() -> int: + src_dir = Path("data/2-pages") + dest = Path("all.txt") + files = sorted(src_dir.glob("*.txt"), key=page_key) + if not files: + raise SystemExit("No page files found in data/2-pages/") + + parts: list[str] = [] + for path in files: + text = path.read_text(encoding="utf-8").rstrip() + parts.append(text) + dest.write_text("\n\n".join(parts).rstrip() + "\n", encoding="utf-8") + print(f"Wrote {dest} from {len(files)} pages") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/build_party_diary.py b/scripts/build_party_diary.py new file mode 100644 index 0000000..2336cc2 --- /dev/null +++ b/scripts/build_party_diary.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 + +from pathlib import Path + + +HEADER = """Pentacity Party Diary +===================== + +This diary is a story-based reconstruction of the campaign so far, drawn from all-processed.txt. It keeps the chronology intact while making the events, people, places, items, clues, factions, and unresolved mysteries easier to search and index. + +""" + + +def main() -> int: + src = Path("all-processed.txt") + out = Path("party-diary.txt") + if not src.exists(): + raise SystemExit("all-processed.txt does not exist; run scripts/process_notes.py first") + + # This script intentionally creates a conservative narrative base from the processed notes. + # Agents should improve the prose manually when the user asks for a polished campaign diary. + text = src.read_text(encoding="utf-8") + text = text.replace("Pentacity Campaign Notes - Processed\n====================================\n\n", "") + text = text.replace("Pentacity Campaign Notes\n========================\n\n", "") + out.write_text(HEADER + text.strip() + "\n", encoding="utf-8") + print(f"Wrote {out}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/process_notes.py b/scripts/process_notes.py new file mode 100644 index 0000000..65dbec0 --- /dev/null +++ b/scripts/process_notes.py @@ -0,0 +1,129 @@ +#!/usr/bin/env python3 + +from pathlib import Path +import re + + +def clean(s: str) -> str: + s = s.strip() + s = re.sub(r"\s+", " ", s) + s = s.replace(" & ", " and ") + s = s.replace("Q -", "Quest:") + return s + + +def main() -> int: + src = Path("all.txt") + out = Path("all-processed.txt") + if not src.exists(): + raise SystemExit("all.txt does not exist; run scripts/build_all.py first") + + lines = src.read_text(encoding="utf-8").splitlines() + heading_re = re.compile(r"^\s*(Day\s+\d+)(?:\s+(.*?))?\s*$") + day_inline_re = re.compile(r"^(.*?)(\s{2,})(Day\s+\d+)(?:\s+(.*))?$") + continuation_prefixes = ( + "for ", "to ", "in ", "with ", "and ", "but ", "or ", "of ", "from ", "then ", + "that ", "as ", "by ", "on ", "at ", "which ", "while ", "because ", "since ", + "so ", "seem ", "seems ", "think ", "thought ", "possibly ", "approx ", "around ", + "payable ", "people, ", "family ", "not ", "no ", "all ", "other ", "both ", + "one ", "same ", "go ", "head ", "follow ", "looking ", "trying ", "using ", + "about ", "where ", "who ", "what ", "when ", "why ", "will ", "would ", "can ", + "could ", "has ", "have ", "had ", "is ", "are ", "was ", "were ", + ) + + processed = [ + "Pentacity Campaign Notes", + "========================", + "", + ] + para: list[str] = [] + started = False + + def flush_para() -> None: + if not para: + return + joined = " ".join(clean(p) for p in para if clean(p)) + joined = re.sub(r"\s+", " ", joined).strip() + if joined: + processed.append(joined) + processed.append("") + para.clear() + + def add_heading(title: str) -> None: + flush_para() + if processed and processed[-1] != "": + processed.append("") + processed.append(title) + processed.append("-" * len(title)) + processed.append("") + + for raw in lines: + line = raw.rstrip() + stripped = line.strip() + if not stripped: + flush_para() + continue + + m_inline = day_inline_re.match(line) + if m_inline: + lead = clean(m_inline.group(1)) + day = clean(m_inline.group(3) + ((" " + m_inline.group(4).strip()) if m_inline.group(4) else "")) + if lead: + flush_para() + processed.append(lead) + processed.append("") + add_heading(day) + started = True + continue + + m = heading_re.match(stripped) + if m: + day = clean(m.group(1) + ((" " + m.group(2)) if m.group(2) else "")) + add_heading(day) + started = True + continue + + if not started and stripped == "Ever Church": + add_heading("Ever Church") + started = True + continue + + bulletish = bool(re.match(r"^\s*[-*!]\s+", line)) or bool(re.match(r"^\s*\d+\.\s+", line)) or stripped.startswith("}") + if bulletish: + flush_para() + b = re.sub(r"^\s*[-*!]\s+", "", line).strip() + b = re.sub(r"^}\s*", "Survivors: ", b) + processed.append("- " + clean(b)) + continue + + if ":" in stripped and len(stripped) < 110 and not stripped.endswith("."): + flush_para() + processed.append("- " + clean(stripped)) + continue + + if re.match(r"^(\d+x?|[A-Za-z]+\s*[-/]|[A-Z][a-z]+\s*[-/])", stripped) and len(stripped) < 100: + if raw[:1].isspace() and processed and processed[-1].startswith("- "): + processed[-1] += " " + clean(stripped) + else: + flush_para() + processed.append("- " + clean(stripped)) + continue + + if raw[:1].isspace() and processed and processed[-1].startswith("- "): + if stripped.lower().startswith(continuation_prefixes) or not re.match(r"^[A-Z][a-z]+\b", stripped): + processed[-1] += " " + clean(stripped) + continue + + para.append(stripped) + + flush_para() + joined = "\n".join(processed) + joined = re.sub(r"\n{3,}", "\n\n", joined) + joined = joined.replace("TriMoon", "Tri-moon").replace("trimoon", "tri-moon") + out.write_text(joined.rstrip() + "\n", encoding="utf-8") + print(f"Wrote {out} with {len(joined.splitlines())} lines") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/split_diary.py b/scripts/split_diary.py new file mode 100644 index 0000000..d20cdbe --- /dev/null +++ b/scripts/split_diary.py @@ -0,0 +1,91 @@ +#!/usr/bin/env python3 + +from pathlib import Path +import re + + +def slug(title: str) -> str: + m = re.search(r"Day\s+(\d+)", title) + if m: + return f"day-{int(m.group(1)):02d}" + return re.sub(r"[^a-z0-9]+", "-", title.lower()).strip("-") + + +def clean_line(line: str) -> str: + s = line.strip() + s = re.sub(r"^[-*!]\s*", "", s) + return re.sub(r"\s+", " ", s) + + +def flush_para(out: list[str], para: list[str]) -> None: + if not para: + return + joined = re.sub(r"\s+", " ", " ".join(para)).strip() + if joined: + out.append(joined) + out.append("") + para.clear() + + +def render(title: str, body_lines: list[str]) -> str: + out = [title, "=" * len(title), ""] + para: list[str] = [] + for raw in body_lines: + stripped = raw.strip() + if not stripped or re.match(r"^[-=]{3,}$", stripped): + flush_para(out, para) + continue + para.append(clean_line(stripped)) + flush_para(out, para) + return "\n".join(out).rstrip() + "\n" + + +def main() -> int: + src = Path("all-processed.txt") + outdir = Path("data/3-days") + if not src.exists(): + raise SystemExit("all-processed.txt does not exist; run scripts/process_notes.py first") + outdir.mkdir(exist_ok=True) + + lines = src.read_text(encoding="utf-8").splitlines() + heading_re = re.compile(r"^(Day\s+\d+.*)$") + underline_re = re.compile(r"^[-=]{3,}$") + + sections: list[tuple[str, list[str]]] = [] + current_title: str | None = None + current_lines: list[str] = [] + preamble: list[str] = [] + + started = False + for line in lines: + if underline_re.match(line.strip()): + continue + m = heading_re.match(line.strip()) + if m: + if current_title is None: + preamble = current_lines[:] + else: + sections.append((current_title, current_lines)) + current_title = m.group(1) + current_lines = [] + started = True + else: + if not started and line.strip() in {"Pentacity Campaign Notes", "Pentacity Campaign Notes - Processed"}: + continue + current_lines.append(line) + + if current_title is not None: + sections.append((current_title, current_lines)) + if sections and preamble: + title, body = sections[0] + sections[0] = (title, preamble + [""] + body) + + for title, body in sections: + (outdir / f"{slug(title)}.txt").write_text(render(title, body), encoding="utf-8") + + print(f"Wrote {len(sections)} diary files to {outdir}/") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/skills/build-campaign-corpus/SKILL.md b/skills/build-campaign-corpus/SKILL.md new file mode 100644 index 0000000..77d8b76 --- /dev/null +++ b/skills/build-campaign-corpus/SKILL.md @@ -0,0 +1,36 @@ +# Build Campaign Corpus + +Use this skill after raw page transcriptions exist in `data/2-pages/`, or when the user asks to rebuild `all.txt` or `all-processed.txt`. + +## Goal + +Create a clean, searchable campaign corpus from raw page files. + +## Inputs + +- Raw page files: `data/2-pages/*.txt` +- Combined raw file: `all.txt` +- Processed file: `all-processed.txt` + +## Procedure + +1. Build `all.txt` in numeric page order: + `python3 scripts/build_all.py` +2. Build `all-processed.txt`: + `python3 scripts/process_notes.py` +3. Read the beginning, middle, and end of `all-processed.txt` to catch obvious formatting failures. +4. Search for day headings to confirm all campaign days were retained. + +## Processing Rules + +- Keep all source facts. +- Reflow wrapped lines into readable paragraphs. +- Convert day markers into stable headings. +- Keep item names, rewards, NPC names, dates, times, places, quotes, and unresolved questions. +- Do not remove apparently minor details; they may be important later. + +## Verification + +- `all.txt` exists and contains every file from `data/2-pages/` in numeric order. +- `all-processed.txt` exists and contains headings `Day 1` through the latest day. +- Character count should be similar to or greater than `all.txt`, not dramatically smaller. diff --git a/skills/full-note-ingestion-pipeline/SKILL.md b/skills/full-note-ingestion-pipeline/SKILL.md new file mode 100644 index 0000000..25c4c0b --- /dev/null +++ b/skills/full-note-ingestion-pipeline/SKILL.md @@ -0,0 +1,38 @@ +# Full Note Ingestion Pipeline + +Use this skill when the user adds new pages and wants the entire workflow automated from images to wiki-ready diary files. + +## Goal + +Run the complete ingestion pipeline: + +1. Images in `data/1-source/` to raw transcription pages in `data/2-pages/`, using the agent's own vision model. +2. Raw pages to `all.txt`. +3. `all.txt` to `all-processed.txt`. +4. `all-processed.txt` to `party-diary.txt`. +5. `all-processed.txt` to per-day files in `data/3-days/`. + +## Commands + +Run transcription if needed by reading each new image in `data/1-source/` directly with the agent's vision model and writing the result to `data/2-pages/<page-number>.txt`. + +Do not use `transcribe_notes.py` unless the user explicitly requests the legacy local Ollama workflow. + +Then run the text pipeline: + +`python3 scripts/build_all.py && python3 scripts/process_notes.py && python3 scripts/build_party_diary.py && python3 scripts/split_diary.py` + +## When to Ask First + +- Ask before overwriting existing manually edited files if the user has not requested a rebuild. +- Ask if source file choice is ambiguous, such as whether to use `all-processed.txt` or `all-processed-edited.txt`. +- Ask if there are many new images and the user wants only a subset transcribed. + +## Verification Checklist + +- `data/2-pages/` has one text file per expected note page, created by direct agent-vision transcription. +- `all.txt` is in numeric page order. +- `all-processed.txt` contains all day headings. +- `party-diary.txt` includes the campaign-wide narrative and index sections. +- `data/3-days/day-*.txt` count matches day heading count. +- Spot-check one early, one middle, and one late output file. diff --git a/skills/split-day-diaries/SKILL.md b/skills/split-day-diaries/SKILL.md new file mode 100644 index 0000000..1dbc3af --- /dev/null +++ b/skills/split-day-diaries/SKILL.md @@ -0,0 +1,33 @@ +# Split Day Diaries + +Use this skill when the user wants one file per campaign day for wiki ingestion. + +## Goal + +Create one narrative text file per campaign day in `data/3-days/`. + +## Inputs + +- Source: `all-processed.txt` +- Output directory: `data/3-days/` +- Script: `scripts/split_diary.py` + +## Procedure + +1. Run: + `python3 scripts/split_diary.py` +2. Confirm `data/3-days/day-01.txt` through the latest day exist. +3. Spot-check early, middle, and late day files. + +## Output Style + +- File names use `day-XX.txt`, for example `day-01.txt`. +- Each file starts with the day heading. +- Each file preserves all source details for that day in readable narrative form. +- Do not drop short days; even short entries should get their own file. + +## Verification + +- Count `^Day ` headings in `all-processed.txt`. +- Count files in `data/3-days/day-*.txt`. +- These counts should match. diff --git a/skills/transcribe-campaign-notes/SKILL.md b/skills/transcribe-campaign-notes/SKILL.md new file mode 100644 index 0000000..18ec9e2 --- /dev/null +++ b/skills/transcribe-campaign-notes/SKILL.md @@ -0,0 +1,39 @@ +# Transcribe Campaign Notes + +Use this skill when the user adds new handwritten note images and wants them converted into numbered text pages. This repository requires transcription with the agent's own vision model, not the legacy local Ollama script. + +## Goal + +Convert image files in `data/1-source/` into raw page transcriptions in `data/2-pages/`, one file per inferred handwritten page number, by reading each image directly with the agent's vision capability. + +## Inputs + +- Source images: `data/1-source/` +- Output text pages: `data/2-pages/` +- Preferred transcription method: agent vision model reading the source images directly. +- Legacy fallback only if explicitly requested: `transcribe_notes.py`. + +## Procedure + +1. Inspect `data/1-source/` and `data/2-pages/` to understand which images and page text files already exist. +2. Identify images in `data/1-source/` that do not yet have matching transcriptions in `data/2-pages/`. +3. Read each new image directly with the file/image reading tool so the agent's own vision model sees the handwritten page. +4. Infer the handwritten page number from the image, usually from the top-right corner or page header. +5. Transcribe the handwritten notes as exactly as possible, preserving line breaks where useful and preserving uncertain readings. +6. Write each result to `data/2-pages/<page-number>.txt`, for example `data/2-pages/74.txt`. +7. Check that each generated file is named by page number and contains raw transcription, not summary. +8. Spot-check several generated pages against source images when possible. + +## Important Rules + +- Do not summarize during transcription. +- Preserve line breaks where readable. +- Preserve uncertain words using the model's best reading; later cleanup can mark uncertainty. +- Do not overwrite user-edited transcription files unless the user asks for a full rebuild. +- Do not use `python3 transcribe_notes.py` unless the user explicitly asks for the legacy local Ollama workflow. + +## Verification + +- Confirm `data/2-pages/` has the expected page count. +- Confirm no duplicated or missing page numbers unless the source notes genuinely skip pages. +- If an image is too unclear, write the best transcription possible and mark uncertain text with `[unclear]`, `?`, or the original uncertain wording. diff --git a/skills/write-party-diary/SKILL.md b/skills/write-party-diary/SKILL.md new file mode 100644 index 0000000..6e36ab2 --- /dev/null +++ b/skills/write-party-diary/SKILL.md @@ -0,0 +1,33 @@ +# Write Party Diary + +Use this skill when the user asks for a story-based, detailed narrative of the campaign so far. + +## Goal + +Generate a long-form wiki-friendly narrative in `party-diary.txt` from `all-processed.txt`. + +## Source + +Use `all-processed.txt` unless the user explicitly names another file. + +## Procedure + +1. Read `all-processed.txt` fully or in large chunks. +2. Generate `party-diary.txt` using: + `python3 scripts/build_party_diary.py` +3. If the script output needs improvement, edit `party-diary.txt` manually, preserving all details. +4. Verify that major arcs are represented: Everchurch, the observatory and Joy, Seaward, Ruby Eye's lab, Harthwall council, Fairshoes/Turtle Point, Freeport, sea assault, Dunhold Cache, and current Drunken Duck/desert laboratory direction. + +## Narrative Requirements + +- Write in chronological story form. +- Include all facts that may later matter: names, aliases, places, dates, times, factions, clues, loot, spells, artifacts, payments, visions, dreams, open questions, and uncertain readings. +- Preserve ambiguity where present. +- Add searchable section headings. +- Do not invent conclusions beyond the notes. + +## Verification + +- `party-diary.txt` exists and is substantial. +- It has sections for important people, factions, items, rewards, and unresolved mysteries. +- It does not omit major rewards or artifacts. diff --git a/tmp/all-processed-edited.txt b/tmp/all-processed-edited.txt new file mode 100644 index 0000000..6046d2b --- /dev/null +++ b/tmp/all-processed-edited.txt @@ -0,0 +1,1628 @@ +Pentacity Campaign Notes +======================== + +Ever Church +----------- + +Swampy woods - fruit trees orchards + +Day 1 +----- + +- Winter - 1 orchard has trees in bloom - [unclear] buzzing - bee pollinating and enabling trees to live - slightly bigger than normal bees. +- dark bark, blue leaves, red fruit (deep) +- Town - mix of light and dark woods. +Population 3k No visible district - larger manor house in centre. + +Cider inn, cider. Beeswaxed floor, a nice small half elf playing a lute, much is half elf and human family resemblance Father Burnun - prize fighter half elf - Gelissa * + +- Box: +- Baz - Invar +greying hair - paladin looking, did not get the plate. Leonard Dirk politely + +- Shaun - Geldrin (the mighty) +gnome, wild brown hair glasses with no glass + +- Farmer - old John Thornhollows. +Another 3 pigs gone Vanished + +- 6 missing but only has the ledgers +for 3. Had a group of around 30 pigs? + +- 3 daughters: Annabel, Isabelle, Cumberella +- 5 keys on the bar - but changed to 4 and no idea +how it changed. + +Register with Earl - ? mercenaries. + +Pig's daughter keep best books, 1g each to go look. Shepherd maybe missing some sheep. + +- Bess - cat missing but no rats recently either. +Rats missing too? + +Last summer built a hostel - house all the homeless people, but not enough for homeless so letting out. Inn's not happy. + +Go to Earl - half-orc (crunch looking), black clothing covered with birds. Geese missing. + +- Butcher - serving new mushroom burgers since meat not coming in. +- Woman - out of town come to find husband, come from Albec for work, no one seen him, was putting up fences at a farm. +Malcolm Donovan - sent to jailer - birth mark on back of right hand. + +- Apply for poverty tax - eligible - slides 2g over to her for the anti-tax. +Funds from the hostel go to the anti-tax since wife left him - going to disappear. + +- Census - in spring - 3c for the number, +payable in the morning, ask half elf. + +- No trouble in town. +- Bushhunter - registered mercenary. +- Last 2 weeks: +Bushhunter came to town 2 weeks ago. Winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +- Invar - delivered weapons but no militia? +Order was put in a few months ago. About 5 left. Earl downsizing. + +- 20 weapons, 10 armour. +Can't remember any of the old militia. Go to jail and talk to sheriff for current militia forgetting names. + +- Bushhunter - had tubes and pipes. +Used to do a lot of swords. + +Jail + +- Now believes should get a package from a crazy haired gnome. +- Location changed. Used to be where hostel used to be. +- 2 empty cells. +- Laws - big scar over her eye. +- Her, sheriff and other 2 deputies (Bob). +- 11 years, always something so old there isn't anything. +- No reports of people missing. +- Home theft week ago. +- Bushhunter doing a sale of giant bugs in frames, last sale 6 days ago. +- Shepherd had new fence? Yes. +Terry left town - 2 months ago Johnjaw passed away Abo. arrested + +- Ralfeck - Buckworth somewhere +None left in town + +- 43 used to be hired. +Parch of militia statute charter to have sufficient militia for close to barrier. + +- 1100 militia - 45,000 population. +Due in a month to check; last visited 5 months ago. Nobody remembers Gelissa except Gedrin. Invar remembered for a split second. + +- See one of the people gets up and walks out. +Chase him. Hood drops, face stitched below eye line, mouth missing a row of teeth. Bone splint fingers and split tongue. Has birth mark on right hand - Malcolm. Was a human male - had to use magic for these changes. + +- Guardwell - Terror of the Sands, nightmare of the darkness. +He will consume your soul. + +- Tales of the sphinx who learnt dark magic experimenting on itself. +- Remembered Isabella and that Gelissa said she hadn't arrived. Remembered her again! +Took Malcolm to the jail. Deputy went to get the sheriff - Jeremia. Now remembers 3rd daughter Gelissa. Now remembers homeless people. Makes us deputies - we get badges. Sir Alstir Florent. + +Bar 5th person, human warrior - helping out with us and picked one of the keys and remembered him all the way up to when we went fishing, around the time Dirk saw the rat. + +Gristak Brinson - mayor. + +Day 2 +----- + +Head back to the town hall. + +- Received whole census for John's pig farm, 9:00. +- 5th name on the ledger has been scribbled out. +Claims it was a mistake. + +- Unemployed and holdings worth <50g - anti-tax criteria. +- 3g anti-tax. +Thornhollows farm Census April 4th + +- registered: +wife Sarah 47 John 50 Annabella 18 Isabella 16 Clarabella 14 seeing sheep farmer's son + +Paternal grandmother Bella. + +- 2 sounders of pigs: +- 1x matriarch +- 3x breeding boars +- 2x breeding sows +- 1 has 17 female younglings +other has 21 female younglings No males. + +Paid tax as billed. Farmhouse, 3x orchards, stable, veg garden. + +- 2x outbuildings which back onto a hedged sty. +- Planned employment: 3x hands. +- Grazing rights for area in edge of swamplands. +Walk to Thornhollows farm, past orchards and brewery, 9:45. Farm surrounded by stone hedge. + +Pass 2 ravenhound looking dogs - girl walking with them, black hair, missing from census? Craven dogs, breeding pair, mimicry noise, have puppies. Approaches us - Annabella. + +- Younger sister on the porch. +- 3 puppies on pillows next to grandma. +- Books - everything tallies until about 1 month +ago. Scribbling out and removed without explanation, think there should. Missing 12 pigs in total - should be 57. Records say should be 51 they've recorded. + +- 6 missing over the last 2 weeks: +actually 46. + +- 3 last night, before last +- 3 a week ago. +- Missing pigs went overnight. +Inconsistencies start about the time Sarah left. + +- 45 +Cat is missing too, about 1 month ago (black cat). Nights of disappearances, not locked up at night. + +- Large door to enter the hedged area, looks densely grown. +Confident there is no dig through. Hill giving 4 foot of hedge to get in but no advantage to get out. Dirk finds big divots that look like foot + +- prints - looks like a frog - approx 8 foot frog. +Ravenhounds ribbited at dark. Started a few weeks ago - take the pigs, gruffle hunting. Seem to head to swamp. + +Massive moths, been around for a while. + +- Quest: 100g to clear the frogs. Had 50g so far. +- 6 pigs missing to the frogs as they remember these, but 6 others missing they don't remember. +Go through swamp. Feels like we are being watched. Massive moth appears during the day... Stealth off and get attacked by a frog - killed 2. Find bones that appear to belong to pigs and sheep. + +Back to farmhouse, 16:00. Cleara gives a tonic where we can use hit dice. + +- Potion of recovery. * Succour. +Stay over the night. + +Day 3 +----- + +Head over to sheep farmer. Geldrin accidentally cast a spell sat on Dirk's shoulders. Tore his shoulders apart like Malcolm's wounds. Stop for short rest. Birds circling overhead: goldfinch and starling. + +District lack of sheep at the farm, swamp seems to be trickling into the farms. + +- 30-yearish man appears to be trampled by a herd of sheep. +Looks like some human sized prints, 4x sets. One looks to go to and from the barn. We can investigate - drew crime scene. Hear something trying to break out of the barn. Run to farmhouse; door has been "latched in". Table smashed to pieces, various debris about. Fire looks like it was burnt out yesterday. Upstairs looks old. Double bedroom and 2 sets of singles. Older couple. 1 may match dead man, 1 slightly smaller. + +- Creep over to the barn and see a row of sheep heads - seem unnaturally agitated. Hear unevening bleat. +Breaks out of the barn - massive pile of melted + +- sheep - killed it. +See things at barn and felt memories being taken - not there when we get to the barn. Found woman in the corner dead. Looks like she lured the creature in the barn and somebody locked them in. Something about Malcolm and Isabella going missing & nobody knowing of them in town but us and Malcolm's wife knows. 11:15. + +- Go to where we found the birds. +Take short rest. Dirk leaves food out and lots of different types of birds appear. Go into swamp to find bird lady. 1 hour in. Swamp hut covered in bird poo, inside branches covered in birds. 80ish woman, blindfolded and mouth sewn shut. Name: "The Chorus". + +Been having dreams - that aren't her own. Her apprentice upped and left. Magic used is clever - changes memories into a convenient + +- form - so knowing Sarah was with The Chorus it +was harder to wipe. On of the Robins' Day they saw her by the hostel. She was distorted... + +Always had large animals in the area. Somebody going through the swamp and using gas which is hurting the birds. Q: Stop the Bushhunter. Direct us to the place where Gedrin has the papers. + +- 2pm leave, 5pm at town. +Back to town through market place. Notice stack of frames with a halfling (suited) with an ogre - barrel with tubes and pipes going to an ear funnel crossbow - talking to a masked person who has a wagon pulled by a "cobra koi" type creature. + +Sneak up behind the ogre and break his equipment. Goggles and let the gas out. Bushhunter will do any form of Taxidermy... + +- Bushhunter promises to hunt out of town. +Request him to do it the other side of the river. + +- Magpie / Xinquiss can be found at the Hatrall great bazaar. 5:15. +Sheriff's office. Very busy in there. Both Jeremia and deputy sheriff armoured up - half-orc and kobold (seem to be militia). Citizens wearing patchwork armour - bear, tabaxi, human, warforged. + +- Been an attack - Walter (sheep farmer). Somebody came in and they had a cult with sheep beast in. +Wife sacrificed herself. + +- Core - warforged - runs Peel and Core, lack of custom in the tavern - noticed wagons at the hostel. +- Earl had a death threat. 500g bounty. +- Tiny guy - forester - Cromwell - noticed wagons past Walter's farm, seem to have stopped there. +Seemed to be people in the wagons. What the mo... 5:30. + +- Jeremia and Drang to protect the Earl. +Hannah and Bob - go to outskirts. + +Gives us a shock dagger. + +- Village is quiet. +- 2x wagons parked outside the hostel - livestock looking. +Smells of pig manure and human faeces. Feel warmth but can't see anything - scratched crab claws. + +Dirk sees rats again and they attack. A pig beast breaks out of one of the carts, killed. Sabotage carts and two people bring 4 horses. Woman in 50's, too many teeth, bigger (Sarah?) + +- Mouth - big. +Young boy 18ish (sheep farmer's boy?) + +- 3x patrons: Crimson, Bovine, Mirthis Fizzleswig. +- 1 shortsword. +- 1 sickle, silver. +Random herbs. Church Tor and church Tarber. 19:00. + +Take the people and cart to the church. People unable to be saved. Boy wasn't dead at first but now dead. + +Brother Fracture - looks at the cart. Remembered all of the militia have been going missing. Want to try to put them all to sleep - Bushhunter! Bushhunter staying out at cider inn/cider. + +Go to see him, 20:00. Has a ring with purple gem and runes, needs identifying. Doing that in trade for use of quaverisior / magical hearing powder, 5000? etc. Go back to cart and use it. Get 5 back into the church. + +- 1 - Gregory, homeless man, restored. Thought he'd been +taken by the militia. Remembers being in the big militia house. + +Park the cart behind the church and horses at the inn. + +Random compass box with a needle that points to the + +- Bushhunter - Geldrin buys it. + +Day 4 19th Dec, 7:00 +-------------------- + +- Dirk - flower he got from a tiefling girl is still looking +- new - has a magic enchantment to keep it new. +- Problems with Pylon: +- Seaweed water spirits on the move. +- Fish men other side of barrier (massacre), dumbold south. +- Stone giants missing under new leadership by Hyden Goldensoul, armies too insignificant. +- Cold air over River Rhein, frozen between Snowshore and +Highland edge. + +- Ancient [unclear] from slumber, sages try to interpret omens. +- Gnolls attack restored point, cows missing, bounty on gnoll. +- Blight hits azureside cherry crops - Cereza production halted. +- Isabella Nudegate, 500g reward (missing on route), not searched. +- Grand festival, midwinter - held at Brockville spring next week. +- Peridobit cloaking death spotted 50 miles eastwise of Arrowfeur. +- No mention of pig. +- Pig carcass is missing. Singe marks on the road. Other cart still outside the hostel. 8:20. +- Oric - innkeeper, Cider Inn Cider. +Earl was holding banquet, no other strange goings on. Things go crazy this close to the third. Town crier local news around midday. + +Go to sheriff - walk past Earl's manor house. Sheriff in chair, kobold shuffling papers. Calls Malcolm, half elf steward for the Earl apparently behind the plots to kill the Earl. Seems innocent - no evidence, doing to keep face with the Earl. + +Something off with the Earl. Asked blacksmith to up the production on weapons?! Invar just delivered lots. + +- Steward - didn't know him before; thinks duchesses +of Harthwall sent him after the previous Earl passed. + +- Earl seems to be more extreme in his views: +- 10 show sorrow, +- 10 blacksmith in town. +Books say 27 militia - but only 4 (27 is half required amount). Lawrence Henderson - exchequer, paying wages. 8:00. Ledger given to the scribes at night and back to Earl at 9:00 - half elf comes to scribes with us. + +Pick the lock and get left to Earl's chambers, right for scribes. Ledgers are all copied and old ledgers kept in a different place. Current ledger around 7 days ago. + +Isabella 2 weeks ago with 20 min to search for her in the copies. Malcolm 6 days ago - name scrubbed out in the ledger but not scribbled out in the copies. + +Visiting tourists: cider brewery and tour of woodland. Spoke to the Earl for permission to take a cutting from the Everchurch tree. Staying at beekeeper's. Elfin meadowmaker for the cutting, 2x bodyguard. Half elf remembers Sir Alistair. + +Go see exchequer - half elf portly looking, Lawrence. Ask about militia wages - he starts to panic. Says we need to speak to the sheriff or the Justice. Didn't do anything wrong. Blames the scribes. Set them baron cut down. So he was getting the payment for the other 23. If we keep quiet he will help with more info if needed. Gives us 50g. + +- 8 carts, 16 horses, 60 swords. +Industrial angle: we have 2 extra horses. + +- 58 days left on town finances. +- Safe: +small black velveteen case, gems. + +- 3 treasure chest: gold/copper/silver. +- 2 bags platinum pieces. 6000gp. +Earl's documents - file is empty. Half elf remembers him having documents! Vicmar Danbos? + +Leave to go see Brother Fracture, 9:50. + +- Gregory doing well - not had chance to heal the others, will feed the rest. +- No way of communicating with other churches. +- Go see Gregory: +Remembers Dec started, thinks it was 7th/8th. A few weeks ago according to the information from the town crier. Can't remember anything from then until now. Can remember 2x militia taking him to the hotel, then waking up in the church. Stonejaw and Ralfrex (2 of the missing militia). Other people in the hostel - said it looked like a jail still. Goat lady - Bagnall Lane - and various others. Militia house open for about 1 month - no reason for it to still look like a jail. + +Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. + +Cider inn cider. Homeless in town not really any but remembers Gregory now. Remembers dead goat down Bagnall Lane about 1 week ago. + +Go to hostel. Investigate round side of building. Stone stables, 2 carts and 4x horses in courtyard/stables. Chain on the gates but padlock not locked. Invar breaks wheels. Release horses - I get magic missile. Go into "hostel" to fight them. One is Gelissa. Has a mark on the side of her face. Kill other guy, subdue Gelissa. Some corruption on her mind - Invar restores both her mind and wounds. 11:00. + +- Look around the "hotel". First 2 cells are empty. +Approx 10 people still in the cells - all townsfolk. + +- Invar creates a lock for the back door. 12:30. +Tell Brother Fracture to concentrate on healing militia. He will take Gelissa and militia and cart to the Barracks and use that as a base of operations. + +Decide to go to the Barrier over the "Swamp Laboratory". 13:00. + +- Rest for the evening - on 3rd watch, pigeon lady near the camp. Didn't get a full rest. + +Day 5 20th Dec, 07:15 +--------------------- + +Approach barrier - 2 large carts in view. Go off the path. Tie up the horses in a dip in the land. Go round to approach from the trees. + +Find Cromwell (ranger) quite injured. Looks like the damage Geldrin did to Dirk accidentally. + +- Tracks look like heavy steel boots (Goliath in full platemail? Core?) +- We are about 1/2 way between the shield pylons. +- Carts are empty - large group of people go towards barrier, small group to the swamp. +Follow the tracks - they seem to come back on themselves and head towards town. Looks like just Goliath. We want to put Cromwell safe. + +Decide to follow along shield towards larger group. Hear a big group of people stood next to the barrier. Dirk feels something is watching us. Then is attacked by sheep farmer grubby. Killed it and 11 militia and 8 townsfolk. + +- 8 townsfolk tied up with rope. +Black dog thing disappeared after we killed it. But the maggot stayed. Upon killing this it let out a massive shriek and all the remaining townsfolk started to attack. Located and subdued halfling girl. 08:00. + +Short rest. 09:00 / 09:10. Get horses and Cromwell, head back along the path to find a patch of trees to hide the cart. + +- Long rest. 10:30 / 18:30. +Sword enchanted to add +1 until Invar's next long rest. + +- 2 twins commanding them. 1 went to swamp, other +went to Barrier (we killed it). + +Go towards the swamp - following the tracks of the swamp, tie up horses outside swamp. 20:00. Following 4 individuals - Geldrin's compass is following the same direction. + +Come to a clearing at the barrier with a stone building in the clearing - marble dome is against the barrier with a large telescope through the marble dome & the barrier. Approx 10 rooms. No windows. Tracks lead right up to the building. Built approx + +- 1,000 years ago. +Hear a strange humming - door reverberating. 23:00. Enter building. 2x plinths, 1 empty, 1 that looks like Core dismantled. Head clatters off & rat runs through left door. Go through door by plinths. Left door - library. + +- Shelves - all on one shelf missing "T" shelf in Astronomy. +Guess Trimoons information. + +Picture of a well groomed tiefling holding a baby girl. (The Mage) one of the 5 who made the barrier. + +- Vixago Eros * +Paper work looks recent, drawer has been forced open - diagrams of the stars. Other drawer has rabbit/deer teddy, ring inside, gold band with runes. Ring is similar to Dirk's - sews the teddy back up. + +- Vase - "part of me can be with you while you study, +all my love - Joy" + +- Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring +back Joy" + +- Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" +Paper work - measurements of the tri-moon before the barrier went up and 20 years after. Tri-moon seems to be getting bigger. Pre barrier it was twice the size of the other moons - now it's 4x as big as the other moons. Geldrin takes all of the notes. + +Take an invisible cloak from the hatstand - wear it! Dirk puts Geldrin on the hat stand and his clothes disappear. When things touch hat stand they disappear. + +Day 6 21st Dec, 1:00 +-------------------- + +Dagger and handkerchief fall to the floor. + +- Handkerchief - clean "J" in the corner. +Dagger looks like a letter opener. + +- Next room looks like a teleportation circle with a bronze feather on the circle. Like the one the other twin had; seems more powerful than usual. +Cages in the next room (empty). Operating table (empty). Boxes, guillotine rope - lots of blood and decay with sea and sulfur. + +Red door - picture of a young tiefling. Dirk recognises - holding the wolpertinger. Very big portrait. Big table - set but empty. + +Door @ end - kitchen. Well/bucket, doesn't look like it's been used. Pull bucket up, pour water on the floor. Humanoid skull with horns is on the floor. Horns are the same as the race of the girl - 100's of years old. + +Trap door under owlbear rug in office. Door outside office is barred shut. + +Trap door - 4 plinths, all have the suits of Core on them. Geldrin goes down and suits light up, ask for password. "Joy" and "Tri-moon" incorrect. + +- Move onto another room. +Try to get through barricaded door. Trapped door managed to get through. + +Potion room - cauldron looks like it is full of water, fresh and clear. Geldrin calls construct "Powerloader". + +- Another room - stairs and a door which says "maintenance do not enter". Door is trapped with electricity. +Building seems protected by the same thing the barrier is made from. 01:15. + +- Room opposite - bedroom. +Tarnished vase with white flower in. Chair which looks broken and open book on table (seems out of place). Open the chest - pulse paralyses Invar and Geldrin. Construct kills whoever was upstairs (one of them). Killed it. Shocked Invar and Geldrin back from being paralysed. + +- 3 sets of footsteps walk past the room and stop at +guillotine door, come back and go upstairs. + +- 2 come back - seem to be on guard. +Another 2 go to Joy's room and comes back. All 4 killed. + +Short rest completed. Go into Joy's room. Open the toy chest. + +- Mahogany box - lock has a rune on it. Geldrin takes it. +- Wardrobe - 3 empty hangers. Dress she was wearing when Dirk saw her isn't there. +- Bedside table - bottom drawer is trapped. bag, herbs, empty flask, 3x full flasks. +Medical equipment, syringe, crystals, ink, powder, Recognise 2 - Mirthis Fizzleswig and succour, don't recognise the other. + +Quill pen, ink and book, kids diary. + +- Last page: "Felt rough today, don't know how much +longer able to write. Daddy borrowed Mr Snuffles again, Daddy's friend asked about the rings again. Daddy's friend is creepy." + +- Diary - bed bound for length of the diary, +approx 1 year. Robots clean and feed. Daddy's friend (never named) making rings etc, put in box which might help her feel better. Not getting better - terminal. Daddy got upset but no payment could fix it. Trapdoor under the rug, wooden ladder down into a store room, beanbag and toys, seems to be a secret den. Dirk goes to the beanbag. + +- Little girl sat on it gets up and goes out: +"Maybe I should go back up. Daddy can see me in my room." "Feeling better, glad because Daddy's creepy friend is here so I can hide." "He'll find me here, I should go to my hidey place." + +Go upstairs - opens up into a massive dome, huge golden spyglass, crystals around the telescope break the barrier. Someone sat at chair - back to us - + +- 2x 8ft ugly human but wing creatures. Chair person looks like +creature we killed but all the parts are opposite worm and dog like creature with the creature. + +Master asked to observe tri-moon. No desire to fight us as killed his counterpart. Worm is quite useful and rare. + +- 900 years ago someone lived here. +Used the townsfolk to attack the barrier. Give it one of the brass feathers to communicate + +- with the master for an audience: "Vann, if horrid mechanical +hellraiser sphinx creature." + +Garadwal? Where is your army servant? Were those guys instead... do not need to know us. + +- Co-ordinates required for triangulation need +to know where the armies strike next month, so we can have freedom from the dome. Striking the barrier increases the flow and maybe. Flows so the fragment of the moon will destroy grand towers and destroy the dome. + +- It lives outside the barrier. +Might just talking freedom seemed kind of true, & "freedom from the confines of everything" was an odd phrase. + +What would happen if creature didn't obey sphinx? It would find him due to the pact made in darkness? In sorrow? Looked forlorn - to find Joy? Nothing. + +Tri moon is a crystal. + +- Sphinx cast out for practising unsavoury magic. +- Do we wish to join him? +He is one cell - trying to find two locations to attack. + +- All agree to clobber. +- Kill them all. Worm thing dead, think it has mind control powers. +Papers on table - calculus and notes on the Tri moon. Books on biology, incurable diseases etc. Book on the effects of poison - slowbane - acts like heavy metal - symptoms match Joy's diary. I wrote a paper on it - very rare because people can't make it but turns up in the black market. + +Shield pylon city sometimes get a similar sickness being investigated. Very rare and takes a lot to take effect, possibly same colour as the shield crystal. People get sick and come to Goldenswell & start to get better so not really looked into much. Pile of goods - spices, wine, cherries, parchment, platinum, gems, silk. Saja digel / fire from azureside - have a blight. Copper Dodecahedron (magical). + +Invar identifies Dodecahedron - spell facts! + +- 21st Dec, Day 6 still. +Geldrin goes to sleep in Joy's room and realises the lamp is a gem. 3:30. Long rest level up. 12:00. + +Chest itself is magical - designed to cast paralysis if somebody other than him opens it. Invar tries to identify it - very magical chest. + +Check out the skull in the kitchen - has a deformity in the back of the skull and looks a year younger than Joy - about 7, possibly 1,000 years old. + +Well goes down about 50ft, water down there. Look for information in the library - built at the same time as the barrier (in tandem), not as mainly back then. Was put here to observe the moon, designed specially. Caverns underneath the area found & built here for this purpose. Summoning circle was connected to different towns and cities to get building materials then supplies after observatory was built. + +- Send message to Bushhunter: +- townsfolk have memories +- creatures slain +- at observatory +- message from Geldrin for Grand Towers wizard Brownmitty +Waterwise, go to check maintenance area - disarm door. Barrier is directed locally around the observatory. Found a really old blanket and small pillow - really decayed. Possibly Joy's other hiding place. Find a trap door - locked but no way to pick. Handle feels hollow. Geldrin used shield crystal to open. + +Stone steps into darkness - down very far. + +- 5 lights with ends in a door painted with white flowers. +Air is filled with solemn music in the cavern. Water going through barrier fizzes. River bank has a little shrine, 6 grave stones all marked "Joy", all have the everlasting flowers on. One has been disturbed. + +- Joy - died in chamber. +- Joy - 3 years old, lung infection. +- Joy - 2 1/2, unknown complications. +- Joy - 5 years old - nothing written. +- Joy - 9 years old - died from poisoning. +- Joy - 7 years old, birth defect - bones left in the +open and raided. + +Follow the stream - quite rocky and roots. Mushrooms/mildew. Mushrooms get bigger, much bigger than they should be. + +- 15-20 mins of walking - everything is bigger than it should be. +Lead out to a cave entrance. Everything seems much bigger than it should be; everything seems to get bigger towards a point. Massive butterfly flies past. 13:30. + +Get to a lake, massive lily pads and frogs, with massive flying sparrow. Something in the lake seems magical (centre). Put tris into the lake, nothing happens. 14:00. Geldrin attempts to raft to the middle but falls off and is rescued by me. Give up on the lake for now as don't have anything to get the magical thing in the middle. Back at the observatory, keep going round. Atriose the maintenance area - where we think front door is, it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. Keep going round and original entrance isn't there. + +(Earthwise) Bed at earthwise changed to a flower bed and barrier split isn't there. + +(Firewise) No trapdoor but instead 2x statues 1/4 of the way down each wall. + +- Throngore - huge muscular, 2 arms, 4 legs, 2 horns. +Left and dark gold; crab claws; taloned human-like hands; flame, like skin. God of destruction and decay. + +- Igraine - pregnant elfin woman, rose and scythe in hands, +goddess of life and harvest (Alabaster stone). + +(Airwise) - Wall like it would have been the door but there wasn't a corridor at the door to account for it. Go back on ourselves - statues same. + +(Earthwise) Flowers dead now. Invar goes round airwise to statues and back dead, goes back round and shouts for us to come round but we don't hear him. + +(Airwise) - runes are bleeding and seem different. Demon magic shit. Blood hurts a little bit when touched. Geldrin copies them. Invar gets a bowl - checks its acidity. Tiny bit acidic, seems to be real blood. + +(Firewise) - Trapdoor is closed - we left it open. This one is fully metal. Same lock as the other one. Metal ladder going down to a metal floor, all metal. Around exterior of the room are 8 glass chambers, + +- 6 empty, 2 viscous liquid with something in it. +Books next to it. It is a non-description human statue without genitals, with no set features, with arm out, palm down to the floor. + +Dirk mentioned hanging his coat on it. Geldrin tries a ring and it fits perfectly. Dirk adds his. + +- Diary - seems to be trying to perfect a clone spell, +matches up with the Joys in the graves. Dirk checks in the chamber: something in there. Rings start to glow slightly. 15:30. + +Back up. (Earthwise) - no bed, but barrier split is there. (Waterwise) - door is there and pipes etc. (Airwise) - triangular barrier. (Waterwise) - same place both ways. + +Geldrin manages to hold the book open and copies writing - deciphered as an illusion spell. Takes the book. Front has an eyeball on it. 17:00. + +- Go to look at the moon. +Crack open maiden's claw - good wine. See crystalline refraction of the moon and see a smaller fragment at the front, separate and much closer than the moon. + +- 1/2 way between planet and moon, locked in sync with where the moon is. +Moon is closer - think it will take another 1,000 years. If more magic goes through shield pylons this will speed it up. Hitting it exactly between the pylons - conjunction with some of the issues from town crier (pg 8). Barrier starts flashing and lighting up. Seems to be something attacking it. Moon shard seems to be coming closer with the attacks. Dirk draws boobs on the chest; they disappear after a while. 01:00. + +Day 7 22nd Dec +-------------- + +Go back to the cart with the box of copper. Fashion a lock for the front door of the observatory. Take Cromwell and Isabella back to town with carts and horses. Restoration cast on Isabella - seems confident in herself. + +Day 8 23rd Dec +-------------- + +Go back to barrier to get remaining people. + +- 8 people left - Chorus was looking after them. 12:00. +Geldrin paints wagon white and we head back to Everchurch. Basilisk reply - "I'll meet you there". Birds follow us back. + +See 6 horses coming from Provith (armoured), Harthwall militia. Have their livery on: stag and dragon rearing up. Arith (male) healer, Hthiman (male), elf (female). + +Few years ago near Ironcroft Firewise, something came through the barrier - Invar was there. Tell them about mind wipe and citizen stealing, lack of militia etc., barrier attacking. They report back to Lady Thyrpe. Healer restores the townsfolk, slightly. One with tentacle arm pulls off and left with stump. + +Day 9 24th Dec, 13:00 +--------------------- + +Arrive back in Everchurch - streets seem busy and panicky, talking about missing people and odd faces. Go to see Brother Fracture - people being reunited with loved ones, and healing happening. + +Earl has gone missing - sheriff taken over and called for help. Core made it back to town - locked himself in the pub with Mr Peel looking after him. Earl disappeared when memories came back. Set a cabin up at half way point. Harthwall ladies request a meeting with us (they get told we were heading to Seaweed). + +Drop Isabella at Cider Inn Cider. + +- Go to see Core - lady gets Mr Peel instead. +Core is ok, will need further repairs. Came to town from earthwise, only spoke to say "Core da". Geldrin thinks he tried to say "core damaged". Go to see Core. Sat motionless in a chair. Peel thinks he needs more crystal, a repaired Core came in the post 1 day after Core arrived. One word on it: "GUILT". Not addressed to Peel. Pub been open for 5 years. "The Guilt" - was the Earl of Brookville Springs. + +Back to Cider Inn Cider, take rooms and have baths. + +- Basilisk - find Groundhog, give coin - old grand tower penny, +doesn't like that we donated the coin to the church (1,000 year old coin). Keep on good side of mage Justicars in Seaweed. Very structured town. + +Eat and recover. 17:00. Back to see Brother Fracture. Basilisk brought the coin - he had 10 left, brought for 1g. + +Day 10 25th Dec +--------------- + +Get up and on the road with Isabella. Get towards a day's travel and see a 4 storey building - trading post inn, "The Wayward Arms". Merfolk on the sign. Get Red taken for the horses. + +Some play is taking place on the stage. + +- 11 o'clock, rooms ready, 6am out. +Extended sleep till 8. Left stairs, 2nd floor. Timothy served us. Elven lady comes on stage and sings. + +- 2 ruffians (half elf) enter pub, ramshackle armour, +have a killer air about them. Sit down and open a bag on the table. + +- 2 halflings enter, seem to be a couple and sit at +last table by the door. Somebody brings a giant moth picture down the stairs and hangs it up. 22:00. Half elves look at clock. Staff move people and pull tables together - setting up for Mirth?!? Hear music. People rush over to the gathered tables (inc halflings). Mirth, halfling, enters dressed as a ringmaster type (smarmy), + +- claps his hands and things appear on tables: +pastries, wine, bottles etc. General store? Famous alchemist (Mirth's Fizzleswig). + +- Back here in 3 days * +Brookville Springs next. + +Yadris and Yadrin (half elves) - Dirk overhears "taking my mind off tomorrow". Sent to investigate - problem solvers, didn't say what they were solving. Work for a lady, already up in her room. + +Day 11 26th Dec +--------------- + +Morning announcements! + +- Penta city states high alert due to attack on barrier. +Justicars reporting to major settlements. + +- Shields of the Accord report army moving Airwise, led by Baron. +- Loggers at Pine Springs missing. +- Heavy blizzards caused travel to Rimewatch impossible, scholars trapped. +- Goliaths of Firewise deserts seeking refuge in monstrosity pierced the barrier. Colleges deny possibility. +Dunenseed and Sandstorm; creatures of Air led by 6 armed + +- Borsvack report gnoll activity. +- Break-in at Riversmeet menagerie. Black market confiscations and 50g fine. +- Everchurch's villainous Earl ousted by sheriff & brave deputies. Nefarious activities thwarted. +Restoration under way. + +- Hartswell and Goldenswell armies clash with giant roam Firewise of Hylden. +Head to Seaward. Perfect circles of houses with a coliseum type building in the middle - used for horse and dog races etc. + +Airwise path coming into the city - wagons going back and forth filled with the marble type material used for the buildings and roads. Pylon outside of the main walls of the city. Population: elves / dwarves / gnomes. Park the cart (Paynes horsebreeder), 21:00. Go to coliseum - midday tomorrow. Forge charger race. + +- Inn - The Rotund Rooster, Tiffany. +Roads closed due to winter so no ice. Don't have fresh water - have to order it in. Marble type material with dark blue vein effect. Seaward run by stonemasons guild - elf. Nearest inn for a room - Water by Earth Waterwise or Night Candle. Road 7, 3 rings inn. + +Water elementals - rumours are they can walk through barrier. Some alterations with the council - collective working as one. Water problem has been in the last 20 years. + +- Chunky chicken cooker - sponsored by Rotund Rooster. +Redesigned as used to be a griffin - favourite. + +- Payneful Gamble - bad at start time. +- Thunderbelch - name. +Inn attacked by water elementals? Works at the cliffs. "No one else has been attacked." + +- Charge mysterious owner, maybe an outside duke or Earl. +- Halfling asks Invar if we have any skulls. Green skin goblin for his master, not allowed to say from round here (really). +Pays well for clever people skulls. + +Go to Night Candle - Candle lit - plush furnishing. Reason for the barrier was to keep the elementals out, but rumour is they can walk through. + +Goblin peers into Dirk's room @ 3am. + +Day 12 27th Dec +--------------- + +Head to shield pylon - pylon is like a gold ring with the crystal set in the claw and runes around it. 7:00. + +- 2 guards outside the keep. +- Rumour - walking through chicken farm at night. +Barrier flickers for about 1 sec - happens often, comes from Dombold Castle? but only for the last few weeks. Only notice near to pylon. Commotion at temple - guards carrying female elf out of the temple. Arrest warrant, public indecency & corruption. Cross temple with vast archways, four doors, circular altar in the middle. 08:00. + +- Priest/Council fabricated some charges - thinks +Architect using dark magic to make himself smarter. Architect worships light gods? Alutha on his left femur, "Ilmen Thion". + +Council OK. + +- Issues - barrier and water elementals. +Row 1, ring 3 from centre (public forum), meet Thursday @ midday, 4 hrs. Representatives Monday/Friday. + +Place bets - The Big Bad Beauty. My missing hangover - 2 runs, from another world, + +- 2 guys acting as a shell company for the Guilt. +Races 4/1 odds on all - The truffle hunter. + +Hear a yelp from the side street - tabaxi has following us (goblin) - tells me to stop letting him follow us and gives me a piece of paper. Goblin will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Mainly house - rat droppings etc. He has 3 skulls, will meet his master when he has 5. + +- 5 silver for skull. +- Maybe cadavers? +- Go back to inn via a temple to see if we can locate skulls. +Fire temple - war, justice and hunt. + +- 3 people in congregation listening to priest recite poetry +about battle against Soot the dragon. Congregation pick up wooden swords and start practicing. + +- Brother Cashew - his problems in town: +- Water elementals not killing, but heard town deputies found drowned near cliffs with fresh water. +- Rivers and lakes in 10 miles are bad, previously got from wells & then gradually went bad. +- Want to check the skulls for the water differences (trying to obtain some for Scum). 50 years - coughing sickness, no signs of damage other than burning - see some malnourishment at early age. 25ish - signs of damage to vertebrae, stabbed, nothing obvious. +Public records will be available: Town hall, 4th ring waterwise. Back to inn for Isabella. 10:00. + +Arena vibes in the city. People really finely dressed. Sit in section C. Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. Race 2 bet - 5s, Wove's gravy, 5/1 - lost. Race 3 - 5s, The galloping salesman - lost. Race 4 - 5s, In it for the sugar, 3/1 - lost. + +- Race 5 already bet: +Sphinx style - stonemasons guild. + +- Unicorn - first place worker, forever 1st. +- Horse - Payne horsebreeder. +- Gryphon/chicken - Rotund Rooster rooster / chunky chicken. +- Nightmare - on hire, Night Candle Inn. +Win 9g. Wooden barrel - Bud barrel makers - Big Bad Beauty. + +- Gryphon/cow? - My Missing Hangover. +Race: Truffle Hunter wins! mice. + +Town almost finished - walls up to strength. Water problem too - looking to sort. Worrying rumours about members of the council refer to forums. Odd out of place formal announcement. + +Go find Isabella's friends. Knock and door swings open - middle class house. Blood on the floor of the parlour. + +- 2 halflings hanging from the ceiling by their feet. +Male intestines over the floor (pattern?). Female looking at us but body upside down and face is right way. + +- Suspect someone has done a divination spell using the intestines. +- Not been dead long, but not warm. +- Front door broken open - engineered force. +- Physically kicked over candelabra. +- Movement but nothing showing a struggle. +- No active magic. Divination was used and same type as used at Everchurch. +Hear heavy wing beats - gargoyle, 6ft, looks like it is made of clay - not usual in town. Isabella says it's from her aunt (family guardians). Drops bag, sopat, and flies off with Isabella. + +Militia come to see what is going on. Direct inside and they take us to see the council. 17:00. Store weapons in a chest before going in, also my medic bag. + +- Elementarium - elf. +Admits pylon is being interfered with. Needs Justicar gone - requests us to look into the pylon. Justicar has ulterior motives: get access to shield pylon. + +- 2000g if we keep the information to ourselves. +Get 500g now to rest on completion, solve or information to help solve. Extra for water elementals - 200g each. + +- Flickers - 5 mins to 2-3 hours, only from sea to Seaward +& nothing from Everchard direction or Dunbold Castle. Also state nothing is coming their way. + +- Started approx 3 weeks ago, keeps log of it. +- Saw tri-moon barrier attacks; they were different. +- Halfings suspect pirate - captain of ship allegedly has crew but nobody has seen them. People go missing and turn up dead & magically disfigured. Human/merfolk, has a beard and makes possibly rodent-style magic. +- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. +She will help us. + +- Water spirits have usually made it through; more are making it through now along with the other elements. +- Try to keep body count low. 18:00. +Retrieve weapons. Sort horses - 1 day paid. Get rooms at the Scarred Cliff. 19:00. Go to barrier. Guards show us around. + +- Gherion - sage on duty at the moment - gives us +the book to view. + +- Time and duration of the flicker: +- 2 weeks - getting worse, increasing frequency. +Longest 3 secs, very random. Approx 9am a bout of outages. None around midnight. Clam Clock in the home for quarrymen. + +- Don't know how far the flickering goes between +Seaward and Dunbold Castle. + +- Happens towards the pylon, crackling in a horizontal pattern and doesn't go past the pylon. +Crystal has thousands of tiny runes all around it. None of the runes seem to have been tampered with. Crystal is very clean. + +- Meteorites sometimes come down. +Geldrin touches the barrier with his crystal shard & it goes crazy. Guard said it seems like the flickering but more intense and didn't go as far. + +- Justicar - just checked the books and the crystal with +a eye glass. Peridot Queen. + +- Iaxxon - guardsman - guarding quarry, water elementals +rushed past him like he was in the way not attacking him. + +- Sleep - get horses and leave for quarry. + +Day 13 28th Dec +--------------- + +Follow barrier - see ripples, seem worse the further away we get. Duration and frequency don't change. Pylon seems to be bringing it back under control. + +Ground is very dry and loose - not many plants. Get to a quiet point - see a horse in the distance coming towards us. Green, tall elven woman, black hair, looks very, very extravagant (Peridot Queen). Strokes my face and joins us towards the cliffs. + +- Worried when she looks at Geldrin. +- She's seen all 5 pylons. +- Made it to the cliffcutter town. Murky, dwarves and gnomes. +- Barrier problem seems to originate by the cliff. +Track towards the barrier by the cliff. 21:00. + +- Cliffs are sheer drops with rifts and barriers. +- Water is choppy and quite dangerous. +- Recently cutting close to the barrier. +- Break into a tool shed for the night. +Wind picks up outside for a moment. + +- Barrier around the cliffs is the emanating point, about 20 mins away. +- Not much wildlife around here. 23:00. +Morning wave sounds are getting louder - Peridot goes, and 2x sea creatures rushing up the sides of the cliff. + +Day 14 29th Dec, 06:00 +---------------------- + +Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. + +Peridot Queen arrives - has wings, appearance of an elf. Geldrin, Invar and Peridot Queen go down in a lift right next to the barrier (1 meter away). Mine shaft with some wooden structure beams, branches off away from barrier and parallel. 08:00. Further down, wooden wall constructed saying "danger of collapse". Hear creature. Man stood there, human with scar, pushing a plank back into the wall. Peridot Queen pays him one of the old copper coins. + +Transforms into a green dragon. Incident a few days ago came, 30 years not had any problems until now. Beasts like bulls shot up from disturbed part, towards the wilderness, shrieking like a banshee. Gnome says "smell like candy and has legs" probably lies. On dwarf has barrier duty and found a small crystal on last duty. + +Fly out of the shaft, and Aliana and Dirk see a shape. 8:15. See a group of miners, a dressed differently human comes over to them and points to us. Human walks off towards the barrier. + +- The dwarves then attack us: 4x dwarves and 1x gnome. +Gnome throws a blue rock on the floor. A small elemental comes out and attacks Geldrin (possible spell effect). + +Manage to knock one out and the guards come over + +- & bring him round. He says: +"He's coming, Terror of the Sands is coming for you all." Guard knocks him back out. + +Guards take him back to town. Private Burke wants us to visit the station before we leave. All have 5g and old copper coin. Gnome has two other blue crystals. 8:50. + +Gets to 9:00, more obvious flickering but nothing obvious. Believe the human may have come through the barrier. The human came from approx where the point of origin is. + +Invisible Joy appears and tells Dirk they are in pain and it burns - asks for Dirk's help. + +- The thing causing the barrier issues? 9:50. +Follow the salt trail from the water elementals. Salt trail thins out but no sign of them. After a time land becomes more lush (approx 7 miles from the barrier) with insects which we didn't see before. 11:00. + +River ends on the cliff and comes off in a waterfall (shallow river). Path ends at the river, about 20 years old. River appears to contain water elementals. + +- Elemental says: +"Pain gone, no hurt me. You come take me like others, take we escape through pain, closest good water." + +Geldrin frees the two in the blue crystals. Elemental wants us to free the rest. Death dome - came through hole made for poison water. Hole hurts, in the sea. Elemental stealers trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. Powers death dome. Garadwal was one with the moon rock but escaped. + +Scaly dragon with web fingers goes through dome - + +- blue/grey colour. One big one with four arms and tridents, +poison water, and Garadwal with tridents. Hole by cliff face at bottom of sea. Occasionally somebody/thing goes down to annoy the crystal. + +Head back to the town to speak to militia, 13:00. + +- Salinas - earth and water - the guy our attacker is talking about. +Soon free like our mother Garadwal - sand, earth and fire. Barrier is enslavement. + +- 8 altogether - soon find hidden lair of oppressors, +used as batteries. + +- Element diagrams: +- Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. +Second diagram includes salt, ice, lightning, smoke, magma, sand. + +- Theories: +- Needs of the many outweigh the needs of the few. +- They tried to destroy the world and got locked up. +- Preemptive locked up. +- Water back: 10 miles down the path from Seaward (firewise), +- 10 miles down the coast from the barrier. +Head back to quarry. 16:00 / 18:00. Door in the lift right next to the barrier. + +- 2 panels missing from the hole. +Passageway descends down behind the wooden panels. Goes down quite a way - has been excavated on purpose, not a mantle seam. Widens out and opens to a real old built wall (1,000 years old). Opens into underground structure. + +- Right old door - sign of aging, handle hurts. +Old gnome walks out, realises we are there. Gives him a coin. "Underbelly?" - truce in place. + +- Get a tour prison: +Down corridors, turn left many times. + +- 6 corners, huge metal door - dragon clearly holding ring. +Go through - see barrier at far wall. Smaller barrier encompassing a massive salt dragon - sweating salt for 20 years into the earth. They are trying to free it. Room was full of odes and ends and copper pylons were there but they removed them. Runes on floor barely visible as covered in salt. Another room has 4x curved copper pylons, removed 20 years ago - dragon was already seeping salt. + +- Keep Justicar out of it down here. +- Down to the left is the original entrance. Go look at it - similar to a room we have seen before in the observatory? Examined in the last 20 years. +Big black dragonborn comes in - Turquoise's boss, not many around. + +- Cult looking for a laboratory. +- Basilisk - there's a laboratory of a similar vein +- 20 miles earthwise along the barrier. +Head back to town. 20:00. Common room - sharing with one other person who hasn't shown up. + +- Message to Basilisk * +He comes to us. Knows little about salt elemental. Black Scales - mercenary group, work for Infestus (black dragon). Basilisk went to check observatory - couldn't open the chest & couldn't get in the golem underground room either. + +- Garadwal: +Prison at lake by lab? - ooze one. Frozen near Rhinewatch - ice one. + +- Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. +Is he an elemental? + +Go speak to Elementarium guy in Seaward. + +Day 15 30th Dec +--------------- + +Head back to Seaward. Follow a caravan of stone back to Seaward. Get to town - raining. 19:00. Need to see Elementarium; actually dressed this time. + +Quasi Elementals - don't have their own plain. Known 8 major plains; light and dark effects to create the 8 main ones. They became their own things and started to fight. Not become that powerful. + +E + W + L: ooze/slime/life - spark of creation. E + W + D: salt - makes water bad and crops won't grow. E + F + L: metal - positive construction. E + F + D: magma - destroys farmland etc. F + A + L: smoke. F + A + D: void - absence of everything, nothingness. A + W + L: ice. A + W + D: storm. + +Where does sand come into this? + +Goes down the trapdoor after talking to us about salt water elementals. Dirk listens - talking to somebody about it. They don't exist. Salt and water are their own things. Pollution. Salt elemental poisoning the water elemental. + +- Dirk - crystals helping the barrier? Elementarium believes it, +but he needs the Justicar to believe it so she leaves. Geldrin to try to sway Grand Towers to get her to leave. Rhonri or Revir might have an obsidian bird to relay a message. Arrange to meet back with him @ 9:30. Dirk asks about Garadwal - he goes down to the chamber and retrieves a dwarf skull and asks it the question about Garadwal. + +The information you seek is not for your kind. He is imprisoned in the prison of the Sands. Brutor Ruby Eye - troublesome being, wizard of great power. + +- Shows us the skull room - he talks to them for information. +What would happen if Garadwal escaped? It would be bad indeed. The barrier would be weakened by the loss of one of the 8. He was the only void they could find. If one was to escape it would be him. Feedback from the destruction of his prison would have damaged the others. + +Geldrin tells him of the tri-moon shard. Brutor knows of the first crack. Envoi was tampering with it for his own means, tampering with the containment device, and if something happened to him it would be bad and cause the crack. Wizards didn't agree of their entrapment but they all agreed Garadwal needed to be contained. Ooze was a good one. Ice and storm were put in the same chamber as land was tricky to be dug. + +Stop leaking? Maybe sigils out of whack. Brutor killed by black dragon. Demi lich - how he was made. Maybe a way to reverse the polarity. + +- Spinal! Brutor's password. +Winter Roses? Envoi's password. + +- Halfling killers. +- 8 things linked to the poles. +- Pirates. +- Elementals. +Received downpayment for our work so far: 200g. 20:30. + +- Put horses into the stables. +- Stay at the Night Candles. + +Day 16 31st Dec +--------------- + +Head to town hall to see Rewi Lovelace - gnome. Room is very messy. Obsidian raven is pulled from a drawer, called Errol (but not really). Justicar causing more problems than solving. Request further evocation spells. + +- Rewi - thinking on how to enhance the pulley system at the cliffs. +Retrieve horses and cart and head earthwise. 10:00. + +- Limit: sis poor? +- Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. +Continue earthwise towards Newhaven. Land starts to get lusher and seems to be at the edge of the salted area. 12:00. Lady at a well - the only freshwater in the area. Others have been boarded up as water is bad. Mayor runs a farm - keeps chickens. Full up water skins. + +- Road out of Newhaven in disrepair. +Outside of town grass dries up again. Town seems to have good water as an anomaly. Not many birds around. Nothing around to indicate a laboratory. Obsidian raven appears - suggests meet up with Justicar and work together, wants our location. Don't give it to him. Flies back to Seaward. + +Keep going to 10 miles away and 1 mile from barrier. Find charred earth - last few days - campfire and rations - cultists? See some tracks, 5-6 people camped. Prints show they are searching for something. Nothing obvious. Follow tracks towards barrier; they stop and we see acid corrosion and blood speckles which look to be swept over. Black dragons have acid. Green is mist. + +Geldrin checks the compass and we follow it about 30ft down. Find weakened signal, see purple, and find 10ft stone walls with a door. Password opens it (Spinal). + +Enter into chamber. 2 golems in dwarf form guard a door. Spinal opens the door. + +- Go left down corridor. +Enter large room - stone benches and lecture seats (seat 20-30 people). Jagged rock horn - representation of Tor. "Tor Protects" written underneath statue. No visible disturbance to the dust. Book on lectern - Book of Ancient Dwarven language on Tor. Head across the corridor - room, same size but only contains teleport circle (one set). Geldrin takes rune number. Dirk finds footprints that have tried to be covered up and lead down the corridor. Fairly recent, could still be around as have gone back on themselves. + +Follow footprints to a closed door. Footprints seem very purposeful. Ruby in the dwarf face releases some chains which open the door. + +- Use my crowbar to hold both of the chains to keep the door open. +Geldrin sets an alarm on the hatch and teleportation circle. + +Go into another door (2nd left from the hatch). Purple glow from the room. Paperwork on the walls of pylons and tower structures. Bubble of shield energy in the middle. Scaled model of the penta city states. Suspended globe of elements at each of the compass points. There is a city Fire Airwise of Lake Azure half way between the lake & Aegis-on-Sands. No sign of any of the prisons or labs on the model. Elements don't move. Teleportation circle activates. Retrieve crowbar and hide in diorama room. + +- 1 person seems to come out and goes to dwarf face door, +to door opposite us, then over to us. Tanned skin gentleman comes in - human, desert style robe, Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. Has found several circles and he is a collector of magical trinkets. Make a deal - he gets all the coin/gold/silver and we get first pick of the treasure. He gets the next, then we get 3 other picks, even split. + +Lounge has a scepter that seems out of place. Dirk takes it and an alarm goes off. All doors are now arcane locked. Go back through dwarf face door. Go left. Mouth appears and tells us traps are active. First door - ten skittles at the end of a lane, poker table and darts board with 3 darts in the 20. Poker table is magical; whole room is magical. Next door totally empty room... Next door - silence spell goes off. Room is full of rows and rows of crystal balls. Memories but we don't know that. + +- Back in the lounge hidden room behind the dwarf portrait: +blank paper and non-wounding dagger. Paper is magical to write special, & silence spell stops. Go back to crystal ball room. Memory of goliaths helping to build grand towers. Find the ball with the most scratched plinth - memory is filled with dread. Acid smell like house, scarred by acid and dwarf skeleton. + +Get one near grand towers ball - see 4 other people in a circle + +- around teleport circle: human (male), elf (female), human (female), +halfling (emo), purple crystal rises up from the circle. Before acid splash, see lounge talking to Envoi, asking about if it's affecting anything. Joy sets off the alarm. Ruby Eye takes the dagger and splatters blood and stops the alarm. + +- Before - fields of white roses. Envoi talking to elven woman from circle. +Joy and dwarven lady next to him. Feel content but forlorn when looking over at Joy and Envoi. + +Male darkish elf next to Envoi being introduced in observatory - tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. Envoi wearing 5 rings! + +Hot Spring - opposite dwarf lady (Brookville Springs), early date, falling in love. + +- Standing in a room in his building: purple dome and copper pylons +with blackness and a shadow. Ask shadow what it thinks. Shadow replies, saying no, not yet; it is trapped and threatens calamity. + +Nice room, intricate vine patterns, elven mage asks about change - nothing. Browning retreated to grand towers. Glad she is here, worried about it - warm secret. Think Browning is going to cover it all up; thinks if people know how it works then they will ruin it. + +- Last one - see him in mirror wearing robes. +Book and chain with staff, looks down under mirror, head on floor, stone opens up showing skull. Puts 2 crystals in chanting and "Tor Protects". + +- Pythus Aleyvarus? Blue dragon. +- Ruby Eye seems to have planned the dome: +- 5 pylons and 5 more around the Grand Towers to make it work. +Early periods where he's protecting towns from elementals. Group all fighting; when it breaks 6 armed rock creature, they all make a pact. + +- Male human points him to a crater with a massive purple rock & Envoi says he will build an observatory to track it. +Brutor says it is what they need. + +- Warring kingdoms - join together to construct everything: +Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. + +- Turning on of the dome at the point of turn on, something flaming bursts through and Browning bursts through the barrier and is attacked. +Room opposite - big engineering astrolathe, seems to be the planet which is a disk, with the moons and their orbits in real time. 15:00. + +- Display shows the date and time - current date 31st December 1011. +Room next to orbs. Protection from Elements spell. Open the door, boulder elements in there and try to get out. Slaves? Made to dig - leave them there. + +Down the corridor. Room same place as calendar room, not locked or trapped. Room is empty, mirror image of calendar room. + +- Opposite to boulder room: +Smaller room - empty aside from picture of moon holes, look like big gem holes. + +- Opposite orbs: +Feel weird opening the door. Glass cabinets in pedestals and shelves with various nick nacks, brass plaques and glass domes over them. + +Curved with flowing water - bottle "Containment taken from Lord Hydranus". Stone at the top 2 are glowing. Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). Magic bounds / magic missile. + +Great sword - stone and bone hilt with steel, dwarven steel, blade in friendship. Sword given by kings of the goliaths. "To the spell ones on the crafting of your big building." + +- Codebook holder - with a book very delicate: +"Book recovered from grand towers upon discovery." + +Celestial dwarf mannequin, ornate green silk dress, gold trim & tiny emeralds along the trim. "Worn by Princess Seline to the Grand Ball." + +- Cushion - small red gem, garnet. +No plaque. Size of the moon holes. Coin press - grand towers pennies. "Press used for souvenir pennies." + +- Jar - eyeball in fluid, "My Eye". +Scrying eye, can scry once per week. + +- Book - sealed not open, made of tan leather and looks unsettling. +Platinum lock. Human teeth are around the edge. "Noctus Corinium Grimoire" - lock looks like it's an addition. + +Plinth wheatleaf - pillow with marble cube radiating yellow glow. "Drixl's Cube, a gift from the golden field halflings." + +- Bottle - wine shaped, "first pressing of Siggerne - midh-iel", +Maiden's dew drink. + +- Ring - looks like Bushhunter ring, ring of protection +1. +"Failed attempt to recreate my stolen ring." + +- Comb - dragonbone and jade, details carved of a forest. +"Gift from the elven princess to my wife. She never got on with it." + +- Scepter - silver, fine golden filigree, white seaward gem in the top. +"Staff gifted by the merfolk of the great sea." + +- Gem writing: +"Time existed before me but history can only begin after my creation." Celestial book - tower seems to be the centre of the world & + +- don't know where it came from. Clues: Geldrin got a vision when reading it, +saw 6 primal elements looking down on the world. + +- Geldrin's alarm goes off - see figures at the end of the corridor: +- 4 burly black dragonborn. They hear alarm. "The alarm's going off, +someone is here" (Draconic). They want us to leave, claim it in the name of their master. Shields have mosquito on it. Create a shield wall and we yank crowbar out. + +- Fight: +- 3 1/2 swords +- 4 shields, mosquito +- 70gp +- 4x tower pennies +Obsidian bird - Errol. + +- Errol - last message was gnome giving our location (Rewi) +to black dragon? + +- Red gem found under plinth under Celestial book: +"The floor of my ship is decorated in equal parts with riches, tools, weapons and love" - games. + +Next room - walls and ceiling are blackened - kitchen. Nothing in the oven. + +- Jar contains gem: +"The rich want it, the poor have it, both will perish if they eat it." Nothing? - right here. Barrel seems magically sealed - rune for the cold beer. Contains a jar with a hand in it. Hand is ruby eyes and has blood which stopped the alarm. + +Next room is warded and locked. + +- Previously empty room is now full of books: control earth elementals, Tor, gems, for spells, wards. +Information on how to construct crystals for magic. + +- Gem inside a book: +"Although I'm not royalty, I'm sometimes a king or queen, and although I never marry I'm only sometimes single." Bed. Summon unseen servant in the elemental room. + +- Gem, Elemental Room: +"In my first part stir creativity and in my full form I store the results." Museum. + +- Gem, Orb room behind an orb: +"You have me today, tomorrow you'll have more. As time passes I become harder to store. I don't take up space and am all in one place. I can bring a tear to your eye or a smile to your face." + +- Memory - orb room. +Memory is: "If you got here you got my message. Only clue is based on the layout of my rooms. When you get inside you'll know what to do." + +- Gem, Calendar room: +"I guard the start of this recipe, just scramble, hidden." Kitchen? + +- Bedroom - seems to have a woman's touch, tapestries, +rugs etc., wardrobe drawers, full length mirror, chair, fireplace. Compartment under the mirror - skull with 2 gem stones rolled up paper in the eye socket behind big gem. If you feel like lived a good life, this is the Denouement (final part, finishing piece). + +- Gem in the other eye: +"They are never together, yet always follow one another. One falls but never breaks and the other breaks but never falls." Calendar. Put all of the gems in the slots and room opens. Purple sphere that doesn't let light through. Void creature? Won't used as it may have been too weak. + +- Seems to be a self contained barrier. +Void creature wants to be let out. + +- The diviner - the one who stole his brother - the twins we killed. +Mechanical trap activates something in the room. Magical trap teleports to the room. + +Pythus takes creepy book and Celestial book. Dirk: sword / scepter of the merfolk. Me: coin press / cube. Invar: ring of protection / potion bottle. Geldrin: spear / eye. + +Pythus gives Geldrin a scroll of teleportation and goes. Geldrin takes eye and scrys on Pythus. Sand stone cavern, pile of gold on top is a blue dragon (serpent-like), reading the skin book full pages made of cured human flesh. Seems to be at the edge of the desert near "Salvation". + +Back to void room. Will tell us what is in their room in exchange for freedom. What is in the room will help release him. Rubyeye wanted to live forever. Went in with elven woman and dark male (Envoi). Just a fragment of the void, but if added to the others can get more powerful but only a tiny bit. + +Inside a key looks like pylons placed against a barrier circle of copper and turn it - talking like barrier isn't active. Pylon for his prison as well as another. Use the ruby to open the door, then destroy it. Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. + +Go through door next to void. + +- 4 plinths - by the door are 4 copper pylons, +look like they would go over rods/force field. + +- 2 metal circles, runes all around (copper). +- 1 - steering wheel size. +- 1 - over a meter, stood upright. +- 3 - dragon skull, Alsafur dog size. +- 4 - book, same lock as on the creepy skin book, +made of leather - unpickable lock. + +Possibly storing one of Envoi's rings - it was under the skull. Skull is one of my kind - Veridian dragonborn, dead for approx 1 thousand years. + +- Envoi's ring: +- a sacrifice made to live eternal, father and daughter. +Book writing around the edge - old dead language. The memories and learning of Atuliane Harthwall. Needs a powerful identity spell to learn the command word to open the lock and book. + +Mosquitos, woodlice and moth are now around. Rain storm. Void will help as long as he is not detained. + +- Lightning strike is seen although underground. +Try to let void out. Push pylons against his dome - opposite pylons seem to switch it off very slightly. Ring by the dome turned and attracts to the pylon. One full turn releases the dome in that quadrant. + +Void releases a circle of obsidian to control him with. + +- Take his ring and book and small ring. +- Remove gems from the moon face lock. +- Head out and close the initial door behind us. 18:30. +- Massively overcast with the storm. Air is thick with insects: +- moths/mosquitos, ants etc. +Circle of storm 1/2 miles wide, moving unnaturally. Push of barrier looks like 8 massive claws pierce through - black dragon looks to be trying to come through the barrier. He wants the remains of his son - seems to be the skull in the sealed chamber. + +Go back and get it. Missing the side of his face - think Rubyeye did it, but he may have started it by killing his son. Place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. Takes the skull and says we are even (for killing his men). He flies off and Thunderstorm goes with him. + +Head back to Newhaven with the cart. Go to pub - picture of 5 hands together making a star. Silver dragonborn behind the bar, golden rim spectacles, halfling wait staff, tabaxi bar maid. "Gelandril Harthwall" been here 10 years. It's said the 5 wizards used to meet here. + +Sleep. + +Day 17 1st Jan / Tri-moon +------------------------- + +Goblin looking for us - Scum had a message for us. Find Scum as we leave the pub. + +- Apparently warrant for our arrest: +- Treason - conspire against the Towers to break barrier. +- Scum - telling Elementarium to meet us with Ruby Eye skull +(1 mile outside Seaward). + +Sent message via Errol to Grand Towers saying we are going to Everchard to put them off the scent. + +- Message to the Basilisk: arrive at possible meeting point, +waiting for nearly 3 hours. Cart comes off road with a human onboard, don't recognise. Seems suspicious. + +- 1 box contains Grand Towers pennies. +Council ask for him to transport to Fairshaw - The Cart (Garick Blake). Looks like the gnome sent it. + +- Dragon notes: +- Silver - Harthwall. +- Copper - Spruce, white. +- Black - Infestus. +Veridian. + +- Blue - Pythus. +- White - the ancient. +Red? - Soot. + +- Manifest: +- 1 currency - Towers pennies. +- 1 provisions - ash jerky??? +- 2 armaments - spearheads, copper ends, trident heads tipped in copper. +- 1 waterproof papers - reams of enchanted waterproof paper, salt water only. +- 1 tar. +- 1 tools - heavy duty, ship building? +- 1 misc goods. +Should have gone out in 2 days with guards. Invar knocks the driver out. See what looks like Elementarium riding towards us. Gnome seems to be trying to clear the decks. Elementarium doesn't know about the spearheads etc. Wants to set up a meeting with Lady Harthwall. They have a council to discuss security matters within the dome! Gives us the Ruby-Eye skull. + +Jerky bag contains a hemp bag - pungent sickly sweet smell, reminds me of rose spice, but narcotic. + +- Ruby Eye: +Infestus' son - spawn of evil - needed a powerful sacrifice for a friend (Envoi). Salt dragon leaking - worried tampering with the life may have weakened the force. Reinforce the barrier - if we don't weaken the barrier, possible fix by refilling the voids, or safely disable the barrier - turn off with the fail-safe button in Grand Towers. Weird skin book - grimoire Noctus Caerulium - forbidden magic. To stop Tri-moon shard we would need to fully redo the dome. + +- Create a device to repel it but barrier would need to go down to do it. +- Relationship with the merfolk? Fish men, different people, then those invited into the barrier. Great helpers to set up barriers. +- Thinks Browning had something to do with goliath settlement disappearing from the history (must be clues). +Green dragon seems to be residing in the area. + +- White Dragon helped to build the dome. Reds, no blues. +- Elementals liked to attack and this is why the barrier was put up. +- Tower was perfect place but needed more. +- Backup plan for the void elemental stashed in his safe, if not there need to find another. +Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. Tells us to get on the rune. Appear in a lush castle room at Harthwall. Sat at head of table seems to be Lady Harthwall; stood beside is Sister Lady. + +- 4 chairs by the rug. +- Rip in the sky - Basilisk appears with: +Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. Catherine Cole vouches for me Valkarige vouches for Invar + +Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. + +- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. +- small group of like minded to protect the barrier want to maintain stability of the barrier. +News reached them about the fragment. + +Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. + +- Green dragon responsible for destruction of Dirk's homeland. +Rubyeye blamed Dirk's kind for helping the dragons. It's said Verdilun dragon is shacking up with the red dragon. + +- Keeley Curdenbelly's research maybe of use (the "liver" in the desert) +- 1. head to merfolk +- 2. get crystal from the water +- 3. speak to ancient one +We passed off the twins mum. + +Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical + +- leeching elemental prisons +- Garadwal +- void on the loose +- shield crystal in the sea. +World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. + +- Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* +Gave him the coin press and told him the coins in the cart were a create of them. + +Back to our cart. + +- Head down the main road toward Fairshoes. 5:30 +Start hearing birds and animals etc. 10pm Find a place to camp for the night. + +Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. + +Back on the road. Uneventful day heading to Fairshoes. + +Make up camp again. + +Nothing happens. + +Day 18 (Friday) +--------------- + +- 2nd Tan with Finnan +- 16 days until Timnor + +Day 19 (Saturday) +----------------- + +- 3rd Tan +- 15 days until Timnor +- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. +Go through town to the harbor to get a boat. + +- Temperature is oddly warm for this time of year and this close to the sea. +Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. Cabin 17. Figure head is a wooden shield crystal. + +Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. + +Hostess lady chants and brings forth great winds and a storm. + +Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. + +- Merfolk - they've never done that before. +- Pirates - has been attacking people more recently. +- creatures that can petrify others by looking at them. +- 150g if we need to fight. 5g if we don't. +- Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. +- Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. +- Silver Dragonborn - Bard - recruited. +Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. + +Salinus? He calls on Salinus - worm - calls forth salt elementals! + +Kill him and his crew. + +- free passage on any of their ships and 400g +Receive Scimitar +1 - attune for water breathing. Kairibdis' Pistol of Never Loading +1 (D8) noisy. + +Retreat to cabin with a cask of rum. + +Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. + +This is the only town on the Isle. Turtle men seem to be the locals. + +- 3rd road left 3 building - Sailors Rest. +Take a shrine tour - Shrine to the great Turtle. + +- Merfolk - the accordionman - look after the Turtles. -200g life gem. +We stand on the back of The Great Turtle. + +Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. + +Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. + +- Water gets up high on a tri-moon and covers the building. +- Tell the guy about our fight with Kairibdis - Walter. +- Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 +- Takes us there. +Old town in disrepair but one dock looks fairly well maintained and repaired. + +- 3 houses look decent too. +First house closest to us seems to be lit. Creep up to look in. 4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. 1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. + +Both other huts have lights. Furthest one seems to be more secured. One has a conch and calls and says kingly comes now. Wait around for him. + +Water comes back. Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. + +- 11 fish people carrying things. 15 overall. +Something seems to be coming by barnacled sea cows. 10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. + +- 8:30 +- 9:20 +- 10:00 +- Chariot back pulled 10:30 +Creature stops and sniffs as they are being watched, tells them to search for us. + +Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. + +Need all or the plan will not work and he will be cross and he will be worse. + +- Think 6 armed creature will attack our ship for the weapons. +- go back to Turtle Point. 12:00 +Plan to go to Freeport instead of Baytail Accord. + +- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. +- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) +Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. + +- Tell her what happened - 10ft 6 armed thing is an Excellence. +- Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. +Dunhold Cache information. + +Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. + +Recommends to speak to merfolk of Lake Azure for Dirk's city. + +- Shipment - get a small unit. +Sahuagin have one of the conch's (8 in existence) Kiendra's. Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. + +- one of the Merfolk will come with us. +Pact leader Freeport - Tiana. + +Day 20 (Sunday) +--------------- + +- 14th Tan 1012 +- 14 days until Timnor +Stay in the barracks for the night. Dirk has a strange dream about a goliath sitting on a granite throne looking concerned, two females tending to a dwarf, who will live but will lose an eye + +- (Rubyeye), fought well. *changes* Savanna scene: +dancing around a fire with a granite city in the distance. Face in the fire ?Enwi? then Jagg? then disappears. + +Head towards ship. (Merfolk) Guardfree - states his mistress has been working on misdirection. + +- get food brought to our cabin. +- Journey is uneventful luckily. +Oddly a busy bustling city mishmash of styles. Rainbow ship is docked here. + +- Quartermaster loads shipment onto our cart to +take with us. + +Baroness Lavaliliere - head of Freeport. No taxes for trade here. + +- Newspaper: +- Ancient takes flight - left his home for last 1,000 years moving to Snow Sorrow. +- Fighting still going on in the mountains near Highden - good taking a beating. +- paper seems to be propaganda. +Go shopping. + +- Esmerelda - magic item shop. +Go to see Tiana at the Siren and Garter. + +Expecting a group of 40 to help fight Excellence. + +- They are mortal and can be slain. Delights in bossing the mortals around. +- Baroness - seems good but lets people do what they +please. Although can be random with which groups to dispose of. Latest one around a week + +- ago - a group of bound elementals and gems - fire and water. +- another group selling archeological items from desert - Tabaxi awakened etc. +Ceased the goods. + +Go find the Basilisk in a private room. + +- Highden - being attacked by a Fire Excellence. has something in for the dwarves. +Investigated the crater and found an old lab but unable to get in. + +- Friends on the council meeting with the ancient around Snow-sorrow. +- Azureside - reported perodotta and spawn amassing in the area. +- Arabella kidnapped again - targeted attack, faces removed. +- No forces available - zinquiss will meet us at the harbour + 1 other. following her predecessors' ideas. maybe something similar to Lady Harthwall but is not a dragon. +Baroness neutral party, fairly reclusive + +- Told about copper weapons - paper - Maelcolm Jethnes & Earl of Fairport involvement in the shipment. +- Get a dagger from Basilisk. 1 charge for dimension door. 3 charge for teleport spell opens a portal open for 5 seconds. think of the place to go - big enough for a person. 1 recharge per day. +Lesser rift blade - Dagger +1 - 3x charges. + +Harthwall 2nd most Common last name (Browning 1st). Always been a Harthwall in charge of Harthwall. No Records of relative. Very reclusive family who don't appear in public until the coronation ceremony, only seen together to hand over the crown. (possibly disguise self spell) + +- 19:00 +Go back to see Tiana again. get another guard - Guardfree. + +Pirates Pearls Plundered - Icky lower. Poor Gut Refuge - Cheeky Thimble Rugger + +Go out to the cart - Dirk notices the padlock has scratches on it. The scratches look uniform & pattern I recognise but don't know why. Upside down thieves cant - "Drunken Duck" & scratched with claws like mine. change the markings to Everchard. look into parking and Guardfree keeps watch. Darker in Bugbear next to lizardman. + +Head over to the temple to give them the spear. Female half-orc comes to speak to us - hand over the spear and she goes to check it out with others. Donate in exchange for help? Request an audience with the higher power to discuss - won't be here for + +- 3 hours. +- go to get lodgings at the Pirates Pearls Plundered. +- Crab man in charge - icky. +- Baroness grants us an audience right now, young for an elf. +Room is odd - paintings are the predecessors all wearing the same necklace (like a mayor necklace) & lots of jewelry. + +Desert relics - thought maybe they belonged to an old friend - long time ago - Velenth, Cardonald, + +- worked for her before coming here - willingly. +Vote 12 heads who vote who has the ability to uphold a very specific set of ideals. + +Other things taken off the street because she doesn't approve of the cult. + +Will loan some forces - Proviso - she gives us information about a laboratory. Can we get a red gem for her, hunt but not as hard as diamond in the workshop. Gaping hole in the side of the building. + +- Barrier - emergency systems - something else +in there - very young, cheers? she ran. + +- Dragon - rumor to roost in the ruins of +Dirk's old city. The creature in the chamber thing? ?Goa duck? - no. + +Has the code to the circle and the safe code whilst the defenses are up. gives us the lab. + +- Valenth wanted to transfer herself into an object... +- Seems a little shook and guard helps her out. +- 22:00 +Return to temple of Cierra. Huntsman has returned and comes over to us. + +- Huntmaster Thrune. in runes. +Ruby Eye spoke to their church often and interested + +- will provide aid to kill Excellence. +Ruby Eye thinks we might want to get the book back from the blue dragon before she tries to get it, she was Enwi's apprentice. + +- Ruby Eye's best friend wanted to craft herself into some thing and continue in that form. +Spear was a gift from a Huntsman of Cierra but it's actually an arrow and there were 5 of them taken from Cierra's last battlefield. + +Back to Pirates Pearls Plunder. + +- Guardfree - will get his mistress to bring guest shells. +- Try to plan what we are doing. + +Day 21 (Monday) +--------------- + +- 6th Jan +- 13 days until Tri-moon +- We all have dreams that are tinged with cold. +- My dream - in family home, sibling playing happy memories, looked at town hall but looking like a crater but in fact a black hole +- pulling in more buildings. Hear a voice: "Where is he I know you hide him" horrible voice. Panic and turn then wake up (looking for Garduul?) Void! +- Just our room is cold. As the ice melted, a white dragonscale drops from the icicles. +Go look for the Captain for a boat. + +- loan the boat for 100g a day and 500g deposit (125g each). guardsmen 20 (Sergeant has a necklaced emerald glowing when he talks) zinquiss and black dragon born (Wrath). clerics 15 and leader. +Pier 12 - large group merfolk 30 + 2 litters + +- Speak to pack leader Tiana & other leaders gather. +Get 2 guest shells. + +- 10 spare shells. +Sergeant takes our cart to the keep. + +Captain Hween + +Wrath will stay on the other side of the barrier once we get there. + +- Pack leaders: +- Shundra - Turtle Point +- Kiendra - Dunhold Cache +- Tiana - Freeport +- Alana - Riversmeet +Set sail - sea is calm. Water seems clear - no noticeable signs of him yet. + +Merfolk, zinquiss, Wrath, half clerics in the sea with us. + +- Excellence seemed to have come from 80 miles away when we were at the turtle village - so possibly +Dunhold Cache or the smaller islands around. & net Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaw. + +- Wrath (Colin) middle name. when he gets to Blackstone scale. +Request to look for the location of Garaduul + +- Island - pass it and nothing seems to happen. +- Arrive at Fairshaw. +- Boat is ceased upon orders from the Earl, occupants being detained for Treason etc. +Diplomatic mission carrying members of the Pact etc. + +- Suspect the Earl is part of the Cult. +- give zinquiss 200g for 4x healing potions. +- Guards return and tell us to stay on board whilst investigation takes place. +Zinquiss returns with 3 healing and 1x greater healing (distributed). + +- News: +- Highden - Battles not doing well, strengthened by dragon sightings. +- Heartmoor - People falling ill - surgeons deployed (Perodotta?) +- Grand Towers - Justiciars leaving to the 5 points of the penta city states. +- Provinia - locust and mysterious spiritual event where things keep disappearing. +Sword blessed +1. + +Day 22 (Tuesday) +---------------- + +- 6th Jan 1012 +- 12 days to tri-moon. +Get called to the mess hall by Tiana. + +Construction under the water and they have made a gate by raising the crystal up to leave a gap. Fish shamans taking notes on waterproof paper also. Crystal is approx 1m square. Can sense Kiendra but no response possibly unconscious but seems to be in the cavern. + +Split underwater group into two to sort out crystal & also attempt to rescue Kiendra. + +Approach shield crystal in stealth. + +- See - above our field of vision are some sharks who +seem to have spotted us. + +Fight. + +- We overcome and defeat mobs at the crystal site. Kiendra - found and rescued - very weak and tortured. & coin pouches - 112g (give to crew). returning - speak aquan. +Find waterproof paper, 3x dispel magic scrolls (geldrin) Big Boss - Spear glowing dull blue - Doom spear +1 Suit of plate mail - Plate of Hydran +1 resistance to cold. + +- Boat - pretty wounded. attacked - Hunt Master missing. +Other party - Tiana's - dispelled shells and got Half orc priestess on the boat wants to check on the other team for the Huntmaster. Necklace Sergeant wants to come with us. + +Go over and Huntmaster fighting an Excellence both very injured. + +- Deed Excellence! +- 4 mermen +all mermaids + +- 4 clerics +- 6 guardsmen +- Survivors: survive +- Moor up by Dunhold Cache for the night. +Merfolk recover our dead and lay on the + +- deck - Priests oversee and I thank each one for their +help and sacrifice. + +Pull up to the cove - lookout shouts there is a vessel already docked. Chariot with water elementals chained to the boat - Excellence's boat. + +- We row to shore to investigate. +Mother of Pearl named Chariot, no other signs of movement. + +Dirk speaks to elementals and they want to show us where the excellence live, will come with us on the big boat. + +- Take the chariot back with us 8-10kg. +Zinquiss will sell it at an auction in 7 days, have the address for the Freeport auction house. + +Day 23 (Wednesday) +------------------ + +- 7th Jan 1012 +- 11 days to tri-moon. +Go to Excellence lair with Merfolk - Pack leader Alana. + +- Water ebbs and flows like a tide in the underwater cave. +- 20ft long crystalline sculpture of a dragon - base has runes glowing. +- 3 cages and barrels. 1 cage contains a merfolk - but looks different - green not blue. +Alana seems to revive him and takes him back to the ship. + +- Chests seem to be laced so waterproof - contents may not be openable under water. open one and contains white powder which I inhale. Rabbits - whole room turns into a black void. +Bas, Athal - Salamanders - and Arabic writing. White dragon circling around the dome. Two blue eyes in the darkness coming towards me and really cold and back in the room. + +Other cages - in the middle of the cage they see snail with a gleam of metal which is a jeweller's chain attaching it to the cage. Guardseen says the snail is a bad omen - its been drugged. Back to ship. + +- Merfolk - abducted from beyond the barrier, +him, his friend and wife. Woke up one day & they were both gone. Wife is nobility in their pact. (Snewl?) + +Hunt master dispels magic on the snail & a mermaid appears. Empire of their people outside of the barrier captured while on diplomatic mission to the city of Onyx, doesn't trust them because war between them and the Salt elementals. Princess Aquunea. + +- City of the black scales has a "door" into the dome - Infestus can't use it as too big. +Payment to access is a Grand Towers penny. + +Check out the barrels etc. + +- sickly sweet medicinal - potion of magical energy regain 1 slot - 1 hour. +- silk and parchment interleaved - runes. +- 2x white rose powder. Tiana gives us 1,000g. +- metallic censer (incense holding burning device) silver? religious? water god? Censer of Noxia. +Ability to enrage and control water elementals. It's active. + +- Send message to Basilisk. +Arrive back to Freeport - seems very cold. Much colder heading back down to Freeport. ?Rimewalk issues? + +Snowing over the sea, everything very dark and snowy. Guy shouting the End is Nigh - moon is crashing down into the city. Ask him which city and he then "it bothered he dreamt it." + +- 22:00 +Lots of people having dreams. Gnolls attacking a village requested backup from Everchard and Fairshaw. + +- Underwater - mermaids - "big cat with metal wings attacked it." +Happened a few nights ago - same time as ours. + +Head to the Castle to see the Baroness. Necklace is removed from the Sergeant and he just walks off. + +- Mermaids - Having a meeting in 3 days at +Baytail Accord to discuss what happened. We can go. + +The dreams seem to contradict each other, possibly from the Ancient One - so could happen. + +- Huntmaster - going to Grand Towers to speak +to the Hunt Lord. + +- Justiciar in the city. ?Looking for us. +- Baroness gets us into the Drunken Duck - secret in +Air wise from Jewelry District. Written on our padlock, on the cart. Cart still ok in the castle. + +Baroness Master - Valenth Caerduinel. Necklace. Sister is a ring. + +Go to Drunken Duck. All the walls are covered in pillows and ?soundproofing? Red dragonborn + +- 2x tabaxi +Automaton + +- 2x halfling and gnome +- Survivors: clientele +Gave me (Axion) Schnapps from the Brass City! Barman says only the best for the "Little Finger". He's intrigued by why the 3 best members of the Underbelly went on a mission. + +- Tabaxi Whisperers laden with 'Dev'. +Traders 'Keeps' from foot to foot. + +Faint noise through the floorboards, raised voices? Automaton keeps talking about a factory. Wants to know where the labs are. Tell him all by the barrier. Cuts down his search radius... + +- Get a private room to discuss matters. +- Send message via the underbelly to advise we won't be going to Baytail Accord. +- Will go to desert laboratory. diff --git a/tmp/all-processed.txt b/tmp/all-processed.txt new file mode 100644 index 0000000..4ce9b32 --- /dev/null +++ b/tmp/all-processed.txt @@ -0,0 +1,1710 @@ +Pentacity Campaign Notes +======================== + +Ever Church +----------- + +Swampy woods - fruit trees orchards + +Day 1 +----- + +- Winter - 1 orchard has trees in bloom - [unclear] buzzing - bee pollinating and enabling trees to live - slightly bigger than normal bees. +- dark bark, blue leaves, red fruit (deep) +- Town - mix of light and dark woods. +Population 3k No visible district - larger manor house in centre. + +Cider inn, cider. Beeswaxed floor, a nice small half elf playing a lute, much is half elf and human family resemblance Father Burnun - prize fighter half elf - Gelissa * + +- Box: +- Baz - Invar +greying hair - paladin looking, did not get the plate. Leonard Dirk politely + +- Shaun - Geblin (the mighty) +gnome, wild brown hair glasses with no glass + +- Farmer - old John Thornhollows. +Another 3 pigs gone Vanished + +- 6 missing but only has the ledgers +for 3. Had a group of around 30 pigs? + +- 3 daughters: Annabel, Isabelle, Cumberella +- 5 keys on the bar - but changed to 4 and no idea +how it changed. + +Register with Earl - ? mercenaries. + +Pig's daughter keep best books, 1g each to go look. Shepherd maybe missing some sheep. + +- Bess - cat missing but no rats recently either. +Rats missing too? + +Last summer built a hostel - house all the homeless people, but not enough for homeless so letting out. Inn's not happy. + +Go to Earl - half-orc (crunch looking), black clothing covered with birds. Geese missing. + +- Butcher - serving new mushroom burgers since meat not coming in. +- Woman - out of town come to find husband, come from Albec for work, no one seen him, was putting up fences at a farm. +Malcolm Donovan - sent to jailer - birth mark on back of right hand. + +- Apply for poverty tax - eligible - slides 2g over to her for the anti-tax. +Funds from the hostel go to the anti-tax since wife left him - going to disappear. + +- Census - in spring - 3c for the number, +payable in the morning, ask half elf. + +- No trouble in town. +- Bushhunter - registered mercenary. +- Last 2 weeks: +Bushhunter came to town 2 weeks ago. Winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +- Invar - delivered weapons but no militia? +Order was put in a few months ago. About 5 left. Earl downsizing. + +- 20 weapons, 10 armour. +Can't remember any of the old militia. Go to jail and talk to sheriff for current militia forgetting names. + +- Bushhunter - had tubes and pipes. +Used to do a lot of swords. + +Jail + +- Now believes should get a package from a crazy haired gnome. +- Location changed. Used to be where hostel used to be. +- 2 empty cells. +- Laws - big scar over her eye. +- Her, sheriff and other 2 deputies (Bob). +- 11 years, always something so old there isn't anything. +- No reports of people missing. +- Home theft week ago. +- Bushhunter doing a sale of giant bugs in frames, last sale 6 days ago. +- Shepherd had new fence? Yes. +Terry left town - 2 months ago Johnjaw passed away Abo. arrested + +- Ralfeck - Buckworth somewhere +None left in town + +- 43 used to be hired. +Parch of militia statute charter to have sufficient militia for close to barrier. + +- 1100 militia - 45,000 population. +Due in a month to check; last visited 5 months ago. + +Nobody remembers Gelissa except Gedrin. Invar remembered for a split second. + +- See one of the people gets up and walks out. +Chase him. Hood drops, face stitched below eye line, mouth missing a row of teeth. Bone splint fingers and split tongue. Has birth mark on right hand - Malcolm. Was a human male - had to use magic for these changes. + +- Guardwell - Terror of the Sands, nightmare of the darkness. +He will consume your soul. + +- Tales of the sphinx who learnt dark magic experimenting on itself. +- Remembered Isabella and that Gelissa said she hadn't arrived. Remembered her again! +Took Malcolm to the jail. Deputy went to get the sheriff - Jeremia. Now remembers 3rd daughter Gelissa. Now remembers homeless people. Makes us deputies - we get badges. Sir Alstir Florent. + +Bar 5th person, human warrior - helping out with us and picked one of the keys and remembered him all the way up to when we went fishing, around the time Dirk saw the rat. + +Gristak Brinson - mayor. + +Day 2 +----- + +Head back to the town hall. + +- Received whole census for John's pig farm, 9:00. +- 5th name on the ledger has been scribbled out. +Claims it was a mistake. + +- Unemployed and holdings worth <50g - anti-tax criteria. +- 3g anti-tax. +Thornhollows farm Census April 4th + +- registered: +wife Sarah 47 John 50 Annabella 18 Isabella 16 Clarabella 14 seeing sheep farmer's son + +Paternal grandmother Bella. + +- 2 sounders of pigs: +- 1x matriarch +- 3x breeding boars +- 2x breeding sows +- 1 has 17 female younglings +other has 21 female younglings No males. + +Paid tax as billed. Farmhouse, 3x orchards, stable, veg garden. + +- 2x outbuildings which back onto a hedged sty. +- Planned employment: 3x hands. +- Grazing rights for area in edge of swamplands. +Walk to Thornhollows farm, past orchards and brewery, 9:45. Farm surrounded by stone hedge. + +Pass 2 ravenhound looking dogs - girl walking with them, black hair, missing from census? Craven dogs, breeding pair, mimicry noise, have puppies. Approaches us - Annabella. + +- Younger sister on the porch. +- 3 puppies on pillows next to grandma. +- Books - everything tallies until about 1 month +ago. Scribbling out and removed without explanation, think there should. Missing 12 pigs in total - should be 57. Records say should be 51 they've recorded. + +- 6 missing over the last 2 weeks: +actually 46. + +- 3 last night, before last +- 3 a week ago. +- Missing pigs went overnight. +Inconsistencies start about the time Sarah left. + +- 45 +Cat is missing too, about 1 month ago (black cat). Nights of disappearances, not locked up at night. + +- Large door to enter the hedged area, looks densely grown. +Confident there is no dig through. Hill giving 4 foot of hedge to get in but no advantage to get out. + +Dirk finds big divots that look like foot + +- prints - looks like a frog - approx 8 foot frog. +Ravenhounds ribbited at dark. Started a few weeks ago - take the pigs, gruffle hunting. Seem to head to swamp. + +Massive moths, been around for a while. + +- Quest: 100g to clear the frogs. Had 50g so far. +- 6 pigs missing to the frogs as they remember these, but 6 others missing they don't remember. +Go through swamp. Feels like we are being watched. Massive moth appears during the day... Stealth off and get attacked by a frog - killed 2. Find bones that appear to belong to pigs and sheep. + +Back to farmhouse, 16:00. Cleara gives a tonic where we can use hit dice. + +- Potion of recovery. * Succour. +Stay over the night. + +Day 3 +----- + +Head over to sheep farmer. Geldrin accidentally cast a spell sat on Dirk's shoulders. Tore his shoulders apart like Malcolm's wounds. Stop for short rest. Birds circling overhead: goldfinch and starling. + +District lack of sheep at the farm, swamp seems to be trickling into the farms. + +- 30-yearish man appears to be trampled by a herd of sheep. +Looks like some human sized prints, 4x sets. One looks to go to and from the barn. We can investigate - drew crime scene. Hear something trying to break out of the barn. Run to farmhouse; door has been "latched in". Table smashed to pieces, various debris about. + +Fire looks like it was burnt out yesterday. Upstairs looks old. Double bedroom and 2 sets of singles. Older couple. 1 may match dead man, 1 slightly smaller. + +- Creep over to the barn and see a row of sheep heads - seem unnaturally agitated. Hear unevening bleat. +Breaks out of the barn - massive pile of melted + +- sheep - killed it. +See things at barn and felt memories being taken - not there when we get to the barn. Found woman in the corner dead. Looks like she lured the creature in the barn and somebody locked them in. Something about Malcolm and Isabella going missing & nobody knowing of them in town but us and Malcolm's wife knows. 11:15. + +- Go to where we found the birds. +Take short rest. Dirk leaves food out and lots of different types of birds appear. Go into swamp to find bird lady. 1 hour in. Swamp hut covered in bird poo, inside branches covered in birds. 80ish woman, blindfolded and mouth sewn shut. Name: "The Chorus". + +Been having dreams - that aren't her own. Her apprentice upped and left. Magic used is clever - changes memories into a convenient + +- form - so knowing Sarah was with The Chorus it +was harder to wipe. On of the Robins' Day they saw her by the hostel. She was distorted... + +Always had large animals in the area. Somebody going through the swamp and using gas which is hurting the birds. Q: Stop the Bushhunter. Direct us to the place where Gedrin has the papers. + +- 2pm leave, 5pm at town. +Back to town through market place. Notice stack of frames with a halfling (suited) with an ogre - barrel with tubes and pipes going to an ear funnel crossbow - talking to a masked person who has a wagon pulled by a "cobra koi" type creature. + +Sneak up behind the ogre and break his equipment. Goggles and let the gas out. + +Bushhunter will do any form of Taxidermy... + +- Bushhunter promises to hunt out of town. +Request him to do it the other side of the river. + +- Magpie / Xinquiss can be found at the Hatrall great bazaar. 5:15. +Sheriff's office. Very busy in there. Both Jeremia and deputy sheriff armoured up - half-orc and kobold (seem to be militia). Citizens wearing patchwork armour - bear, tabaxi, human, warforged. + +- Been an attack - Walter (sheep farmer). Somebody came in and they had a cult with sheep beast in. +Wife sacrificed herself. + +- Core - warforged - runs Peel and Core, lack of custom in the tavern - noticed wagons at the hostel. +- Earl had a death threat. 500g bounty. +- Tiny guy - forester - Cromwell - noticed wagons past Walter's farm, seem to have stopped there. +Seemed to be people in the wagons. What the mo... 5:30. + +- Jeremia and Drang to protect the Earl. +Hannah and Bob - go to outskirts. + +Gives us a shock dagger. + +- Village is quiet. +- 2x wagons parked outside the hostel - livestock looking. +Smells of pig manure and human faeces. Feel warmth but can't see anything - scratched crab claws. + +Dirk sees rats again and they attack. A pig beast breaks out of one of the carts, killed. Sabotage carts and two people bring 4 horses. + +Woman in 50's, too many teeth, bigger (Sarah?) + +- Mouth - big. +Young boy 18ish (sheep farmer's boy?) + +- 3x patrons: Crimson, Bovine, Mirthis Fizzleswig. +- 1 shortsword. +- 1 sickle, silver. +Random herbs. Church Tor and church Tarber. 19:00. + +Take the people and cart to the church. People unable to be saved. Boy wasn't dead at first but now dead. + +Brother Fracture - looks at the cart. Remembered all of the militia have been going missing. Want to try to put them all to sleep - Bushhunter! Bushhunter staying out at cider inn/cider. + +Go to see him, 20:00. Has a ring with purple gem and runes, needs identifying. Doing that in trade for use of quaverisior / magical hearing powder, 5000? etc. Go back to cart and use it. Get 5 back into the church. + +- 1 - Gregory, homeless man, restored. Thought he'd been +taken by the militia. Remembers being in the big militia house. + +Park the cart behind the church and horses at the inn. + +Random compass box with a needle that points to the + +- Bushhunter - Geldrin buys it. + +Day 4 19th Dec, 7:00 +-------------------- + +- Dirk - flower he got from a tiefling girl is still looking +- new - has a magic enchantment to keep it new. +- Problems with Pylon: +- Seaweed water spirits on the move. +- Fish men other side of barrier (massacre), dumbold south. +- Stone giants missing under new leadership by Hyden Goldensoul, armies too insignificant. +- Cold air over River Rhein, frozen between Snowshore and +Highland edge. + +- Ancient [unclear] from slumber, sages try to interpret omens. +- Gnolls attack restored point, cows missing, bounty on gnoll. +- Blight hits azureside cherry crops - Cereza production halted. +- Isabella Nudegate, 500g reward (missing on route), not searched. +- Grand festival, midwinter - held at Brockville spring next week. +- Peridobit cloaking death spotted 50 miles eastwise of Arrowfeur. +- No mention of pig. +- Pig carcass is missing. Singe marks on the road. Other cart still outside the hostel. 8:20. +- Oric - innkeeper, Cider Inn Cider. +Earl was holding banquet, no other strange goings on. Things go crazy this close to the third. Town crier local news around midday. + +Go to sheriff - walk past Earl's manor house. Sheriff in chair, kobold shuffling papers. Calls Malcolm, half elf steward for the Earl apparently behind the plots to kill the Earl. Seems innocent - no evidence, doing to keep face with the Earl. + +Something off with the Earl. Asked blacksmith to up the production on weapons?! Invar just delivered lots. + +- Steward - didn't know him before; thinks duchesses +of Harthwall sent him after the previous Earl passed. + +- Earl seems to be more extreme in his views: +- 10 show sorrow, +- 10 blacksmith in town. +Books say 27 militia - but only 4 (27 is half required amount). Lawrence Henderson - exchequer, paying wages. 8:00. Ledger given to the scribes at night and back to Earl at 9:00 - half elf comes to scribes with us. + +Pick the lock and get left to Earl's chambers, right for scribes. Ledgers are all copied and old ledgers kept in a different place. Current ledger around 7 days ago. + +Isabella 2 weeks ago with 20 min to search for her in the copies. Malcolm 6 days ago - name scrubbed out in the ledger but not scribbled out in the copies. + +Visiting tourists: cider brewery and tour of woodland. Spoke to the Earl for permission to take a cutting from the Everchurch tree. Staying at beekeeper's. Elfin meadowmaker for the cutting, 2x bodyguard. + +Half elf remembers Sir Alistair. + +Go see exchequer - half elf portly looking, Lawrence. Ask about militia wages - he starts to panic. Says we need to speak to the sheriff or the Justice. Didn't do anything wrong. Blames the scribes. Set them baron cut down. So he was getting the payment for the other 23. If we keep quiet he will help with more info if needed. Gives us 50g. + +- 8 carts, 16 horses, 60 swords. +Industrial angle: we have 2 extra horses. + +- 58 days left on town finances. +- Safe: +small black velveteen case, gems. + +- 3 treasure chest: gold/copper/silver. +- 2 bags platinum pieces. 6000gp. +Earl's documents - file is empty. Half elf remembers him having documents! Vicmar Danbos? + +Leave to go see Brother Fracture, 9:50. + +- Gregory doing well - not had chance to heal the others, will feed the rest. +- No way of communicating with other churches. +- Go see Gregory: +Remembers Dec started, thinks it was 7th/8th. A few weeks ago according to the information from the town crier. Can't remember anything from then until now. Can remember 2x militia taking him to the hotel, then waking up in the church. Stonejaw and Ralfrex (2 of the missing militia). Other people in the hostel - said it looked like a jail still. Goat lady - Bagnall Lane - and various others. Militia house open for about 1 month - no reason for it to still look like a jail. + +Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. + +Cider inn cider. Homeless in town not really any but remembers Gregory now. Remembers dead goat down Bagnall Lane about 1 week ago. + +Go to hostel. Investigate round side of building. Stone stables, 2 carts and 4x horses in courtyard/stables. Chain on the gates but padlock not locked. Invar breaks wheels. + +Release horses - I get magic missile. Go into "hostel" to fight them. One is Gelissa. Has a mark on the side of her face. Kill other guy, subdue Gelissa. Some corruption on her mind - Invar restores both her mind and wounds. 11:00. + +- Look around the "hotel". First 2 cells are empty. +Approx 10 people still in the cells - all townsfolk. + +- Invar creates a lock for the back door. 12:30. +Tell Brother Fracture to concentrate on healing militia. He will take Gelissa and militia and cart to the Barracks and use that as a base of operations. + +Decide to go to the Barrier over the "Swamp Laboratory". 13:00. + +- Rest for the evening - on 3rd watch, pigeon lady near the camp. Didn't get a full rest. + +Day 5 20th Dec, 07:15 +--------------------- + +Approach barrier - 2 large carts in view. Go off the path. Tie up the horses in a dip in the land. Go round to approach from the trees. + +Find Cromwell (ranger) quite injured. Looks like the damage Geldrin did to Dirk accidentally. + +- Tracks look like heavy steel boots (Goliath in full platemail? Core?) +- We are about 1/2 way between the shield pylons. +- Carts are empty - large group of people go towards barrier, small group to the swamp. +Follow the tracks - they seem to come back on themselves and head towards town. Looks like just Goliath. We want to put Cromwell safe. + +Decide to follow along shield towards larger group. Hear a big group of people stood next to the barrier. + +Dirk feels something is watching us. Then is attacked by sheep farmer grubby. Killed it and 11 militia and 8 townsfolk. + +- 8 townsfolk tied up with rope. +Black dog thing disappeared after we killed it. But the maggot stayed. Upon killing this it let out a massive shriek and all the remaining townsfolk started to attack. Located and subdued halfling girl. 08:00. + +Short rest. 09:00 / 09:10. Get horses and Cromwell, head back along the path to find a patch of trees to hide the cart. + +- Long rest. 10:30 / 18:30. +Sword enchanted to add +1 until Invar's next long rest. + +- 2 twins commanding them. 1 went to swamp, other +went to Barrier (we killed it). + +Go towards the swamp - following the tracks of the swamp, tie up horses outside swamp. 20:00. Following 4 individuals - Geldrin's compass is following the same direction. + +Come to a clearing at the barrier with a stone building in the clearing - marble dome is against the barrier with a large telescope through the marble dome & the barrier. Approx 10 rooms. No windows. Tracks lead right up to the building. Built approx + +- 1,000 years ago. +Hear a strange humming - door reverberating. 23:00. Enter building. 2x plinths, 1 empty, 1 that looks like Core dismantled. Head clatters off & rat runs through left door. Go through door by plinths. + +Left door - library. + +- Shelves - all on one shelf missing "T" shelf in Astronomy. +Guess Trimoons information. + +Picture of a well groomed tiefling holding a baby girl. (The Mage) one of the 5 who made the barrier. + +- Vixago Eros * +Paper work looks recent, drawer has been forced open - diagrams of the stars. Other drawer has rabbit/deer teddy, ring inside, gold band with runes. Ring is similar to Dirk's - sews the teddy back up. + +- Vase - "part of me can be with you while you study, +all my love - Joy" + +- Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring +back Joy" + +- Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" +Paper work - measurements of the tri-moon before the barrier went up and 20 years after. Tri-moon seems to be getting bigger. Pre barrier it was twice the size of the other moons - now it's 4x as big as the other moons. Geldrin takes all of the notes. + +Take an invisible cloak from the hatstand - wear it! Dirk puts Geldrin on the hat stand and his clothes disappear. When things touch hat stand they disappear. + +Day 6 21st Dec, 1:00 +-------------------- + +Dagger and handkerchief fall to the floor. + +- Handkerchief - clean "J" in the corner. +Dagger looks like a letter opener. + +- Next room looks like a teleportation circle with a bronze feather on the circle. Like the one the other twin had; seems more powerful than usual. +Cages in the next room (empty). Operating table (empty). Boxes, guillotine rope - lots of blood and decay with sea and sulfur. + +Red door - picture of a young tiefling. Dirk recognises - holding the wolpertinger. Very big portrait. Big table - set but empty. + +Door @ end - kitchen. Well/bucket, doesn't look like it's been used. Pull bucket up, pour water on the floor. Humanoid skull with horns is on the floor. Horns are the same as the race of the girl - 100's of years old. + +Trap door under owlbear rug in office. Door outside office is barred shut. + +Trap door - 4 plinths, all have the suits of Core on them. Geldrin goes down and suits light up, ask for password. "Joy" and "Tri-moon" incorrect. + +- Move onto another room. +Try to get through barricaded door. Trapped door managed to get through. + +Potion room - cauldron looks like it is full of water, fresh and clear. Geldrin calls construct "Powerloader". + +- Another room - stairs and a door which says "maintenance do not enter". Door is trapped with electricity. +Building seems protected by the same thing the barrier is made from. 01:15. + +- Room opposite - bedroom. +Tarnished vase with white flower in. Chair which looks broken and open book on table (seems out of place). Open the chest - pulse paralyses Invar and Geldrin. + +Construct kills whoever was upstairs (one of them). Killed it. Shocked Invar and Geldrin back from being paralysed. + +- 3 sets of footsteps walk past the room and stop at +guillotine door, come back and go upstairs. + +- 2 come back - seem to be on guard. +Another 2 go to Joy's room and comes back. All 4 killed. + +Short rest completed. Go into Joy's room. Open the toy chest. + +- Mahogany box - lock has a rune on it. Geldrin takes it. +- Wardrobe - 3 empty hangers. Dress she was wearing when Dirk saw her isn't there. +- Bedside table - bottom drawer is trapped. bag, herbs, empty flask, 3x full flasks. +Medical equipment, syringe, crystals, ink, powder, Recognise 2 - Mirthis Fizzleswig and succour, don't recognise the other. + +Quill pen, ink and book, kids diary. + +- Last page: "Felt rough today, don't know how much +longer able to write. Daddy borrowed Mr Snuffles again, Daddy's friend asked about the rings again. Daddy's friend is creepy." + +- Diary - bed bound for length of the diary, +approx 1 year. Robots clean and feed. Daddy's friend (never named) making rings etc, put in box which might help her feel better. Not getting better - terminal. Daddy got upset but no payment could fix it. + +Trapdoor under the rug, wooden ladder down into a store room, beanbag and toys, seems to be a secret den. Dirk goes to the beanbag. + +- Little girl sat on it gets up and goes out: +"Maybe I should go back up. Daddy can see me in my room." "Feeling better, glad because Daddy's creepy friend is here so I can hide." "He'll find me here, I should go to my hidey place." + +Go upstairs - opens up into a massive dome, huge golden spyglass, crystals around the telescope break the barrier. Someone sat at chair - back to us - + +- 2x 8ft ugly human but wing creatures. Chair person looks like +creature we killed but all the parts are opposite worm and dog like creature with the creature. + +Master asked to observe tri-moon. No desire to fight us as killed his counterpart. Worm is quite useful and rare. + +- 900 years ago someone lived here. +Used the townsfolk to attack the barrier. Give it one of the brass feathers to communicate + +- with the master for an audience: "Vann, if horrid mechanical +hellraiser sphinx creature." + +Garadwal? Where is your army servant? Were those guys instead... do not need to know us. + +- Co-ordinates required for triangulation need +to know where the armies strike next month, so we can have freedom from the dome. Striking the barrier increases the flow and maybe. + +Flows so the fragment of the moon will destroy grand towers and destroy the dome. + +- It lives outside the barrier. +Might just talking freedom seemed kind of true, & "freedom from the confines of everything" was an odd phrase. + +What would happen if creature didn't obey sphinx? It would find him due to the pact made in darkness? In sorrow? Looked forlorn - to find Joy? Nothing. + +Tri moon is a crystal. + +- Sphinx cast out for practising unsavoury magic. +- Do we wish to join him? +He is one cell - trying to find two locations to attack. + +- All agree to clobber. +- Kill them all. Worm thing dead, think it has mind control powers. +Papers on table - calculus and notes on the Tri moon. Books on biology, incurable diseases etc. Book on the effects of poison - slowbane - acts like heavy metal - symptoms match Joy's diary. I wrote a paper on it - very rare because people can't make it but turns up in the black market. + +Shield pylon city sometimes get a similar sickness being investigated. Very rare and takes a lot to take effect, possibly same colour as the shield crystal. People get sick and come to Goldenswell & start to get better so not really looked into much. + +Pile of goods - spices, wine, cherries, parchment, platinum, gems, silk. Saja digel / fire from azureside - have a blight. Copper Dodecahedron (magical). + +Invar identifies Dodecahedron - spell facts! + +- 21st Dec, Day 6 still. +Geldrin goes to sleep in Joy's room and realises the lamp is a gem. 3:30. Long rest level up. 12:00. + +Chest itself is magical - designed to cast paralysis if somebody other than him opens it. Invar tries to identify it - very magical chest. + +Check out the skull in the kitchen - has a deformity in the back of the skull and looks a year younger than Joy - about 7, possibly 1,000 years old. + +Well goes down about 50ft, water down there. Look for information in the library - built at the same time as the barrier (in tandem), not as mainly back then. Was put here to observe the moon, designed specially. Caverns underneath the area found & built here for this purpose. Summoning circle was connected to different towns and cities to get building materials then supplies after observatory was built. + +- Send message to Bushhunter: +- townsfolk have memories +- creatures slain +- at observatory +- message from Geldrin for Grand Towers wizard Brownmitty +Waterwise, go to check maintenance area - disarm door. Barrier is directed locally around the observatory. Found a really old blanket and small pillow - really decayed. + +Possibly Joy's other hiding place. Find a trap door - locked but no way to pick. Handle feels hollow. Geldrin used shield crystal to open. + +Stone steps into darkness - down very far. + +- 5 lights with ends in a door painted with white flowers. +Air is filled with solemn music in the cavern. Water going through barrier fizzes. River bank has a little shrine, 6 grave stones all marked "Joy", all have the everlasting flowers on. One has been disturbed. + +- Joy - died in chamber. +- Joy - 3 years old, lung infection. +- Joy - 2 1/2, unknown complications. +- Joy - 5 years old - nothing written. +- Joy - 9 years old - died from poisoning. +- Joy - 7 years old, birth defect - bones left in the +open and raided. + +Follow the stream - quite rocky and roots. Mushrooms/mildew. Mushrooms get bigger, much bigger than they should be. + +- 15-20 mins of walking - everything is bigger than it should be. +Lead out to a cave entrance. Everything seems much bigger than it should be; everything seems to get bigger towards a point. Massive butterfly flies past. 13:30. + +Get to a lake, massive lily pads and frogs, with massive flying sparrow. Something in the lake seems magical (centre). Put tris into the lake, nothing happens. 14:00. Geldrin attempts to raft to the middle but falls off and is rescued by me. Give up on the lake for now as don't have anything to get the magical thing in the middle. + +Back at the observatory, keep going round. Atriose the maintenance area - where we think front door is, it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. Keep going round and original entrance isn't there. + +(Earthwise) Bed at earthwise changed to a flower bed and barrier split isn't there. + +(Firewise) No trapdoor but instead 2x statues 1/4 of the way down each wall. + +- Throngore - huge muscular, 2 arms, 4 legs, 2 horns. +Left and dark gold; crab claws; taloned human-like hands; flame, like skin. God of destruction and decay. + +- Igraine - pregnant elfin woman, rose and scythe in hands, +goddess of life and harvest (Alabaster stone). + +(Airwise) - Wall like it would have been the door but there wasn't a corridor at the door to account for it. Go back on ourselves - statues same. + +(Earthwise) Flowers dead now. Invar goes round airwise to statues and back dead, goes back round and shouts for us to come round but we don't hear him. + +(Airwise) - runes are bleeding and seem different. Demon magic shit. Blood hurts a little bit when touched. Geldrin copies them. Invar gets a bowl - checks its acidity. Tiny bit acidic, seems to be real blood. + +(Firewise) - Trapdoor is closed - we left it open. This one is fully metal. Same lock as the other one. Metal ladder going down to a metal floor, all metal. + +Around exterior of the room are 8 glass chambers, + +- 6 empty, 2 viscous liquid with something in it. +Books next to it. It is a non-description human statue without genitals, with no set features, with arm out, palm down to the floor. + +Dirk mentioned hanging his coat on it. Geldrin tries a ring and it fits perfectly. Dirk adds his. + +- Diary - seems to be trying to perfect a clone spell, +matches up with the Joys in the graves. Dirk checks in the chamber: something in there. Rings start to glow slightly. 15:30. + +Back up. (Earthwise) - no bed, but barrier split is there. (Waterwise) - door is there and pipes etc. (Airwise) - triangular barrier. (Waterwise) - same place both ways. + +Geldrin manages to hold the book open and copies writing - deciphered as an illusion spell. Takes the book. Front has an eyeball on it. 17:00. + +- Go to look at the moon. +Crack open maiden's claw - good wine. See crystalline refraction of the moon and see a smaller fragment at the front, separate and much closer than the moon. + +- 1/2 way between planet and moon, locked in sync with where the moon is. +Moon is closer - think it will take another 1,000 years. + +If more magic goes through shield pylons this will speed it up. Hitting it exactly between the pylons - conjunction with some of the issues from town crier (pg 8). Barrier starts flashing and lighting up. Seems to be something attacking it. Moon shard seems to be coming closer with the attacks. Dirk draws boobs on the chest; they disappear after a while. 01:00. + +Day 7 22nd Dec +-------------- + +Go back to the cart with the box of copper. Fashion a lock for the front door of the observatory. Take Cromwell and Isabella back to town with carts and horses. Restoration cast on Isabella - seems confident in herself. + +Day 8 23rd Dec +-------------- + +Go back to barrier to get remaining people. + +- 8 people left - Chorus was looking after them. 12:00. +Geldrin paints wagon white and we head back to Everchurch. Basilisk reply - "I'll meet you there". Birds follow us back. + +See 6 horses coming from Provith (armoured), Harthwall militia. Have their livery on: stag and dragon rearing up. Arith (male) healer, Hthiman (male), elf (female). + +Few years ago near Ironcroft Firewise, something came through the barrier - Invar was there. Tell them about mind wipe and citizen stealing, lack of militia etc., barrier attacking. They report back to Lady Thyrpe. + +Healer restores the townsfolk, slightly. One with tentacle arm pulls off and left with stump. + +Day 9 24th Dec, 13:00 +--------------------- + +Arrive back in Everchurch - streets seem busy and panicky, talking about missing people and odd faces. Go to see Brother Fracture - people being reunited with loved ones, and healing happening. + +Earl has gone missing - sheriff taken over and called for help. Core made it back to town - locked himself in the pub with Mr Peel looking after him. Earl disappeared when memories came back. Set a cabin up at half way point. Harthwall ladies request a meeting with us (they get told we were heading to Seaweed). + +Drop Isabella at Cider Inn Cider. + +- Go to see Core - lady gets Mr Peel instead. +Core is ok, will need further repairs. Came to town from earthwise, only spoke to say "Core da". Geldrin thinks he tried to say "core damaged". Go to see Core. Sat motionless in a chair. Peel thinks he needs more crystal, a repaired Core came in the post 1 day after Core arrived. One word on it: "GUILT". Not addressed to Peel. Pub been open for 5 years. "The Guilt" - was the Earl of Brookville Springs. + +Back to Cider Inn Cider, take rooms and have baths. + +- Basilisk - find Groundhog, give coin - old grand tower penny, +doesn't like that we donated the coin to the church (1,000 year old coin). Keep on good side of mage Justicars in Seaweed. Very structured town. + +Eat and recover. 17:00. Back to see Brother Fracture. Basilisk brought the coin - he had 10 left, brought for 1g. + +Day 10 25th Dec +--------------- + +Get up and on the road with Isabella. Get towards a day's travel and see a 4 storey building - trading post inn, "The Wayward Arms". Merfolk on the sign. Get Red taken for the horses. + +Some play is taking place on the stage. + +- 11 o'clock, rooms ready, 6am out. +Extended sleep till 8. Left stairs, 2nd floor. Timothy served us. Elven lady comes on stage and sings. + +- 2 ruffians (half elf) enter pub, ramshackle armour, +have a killer air about them. Sit down and open a bag on the table. + +- 2 halflings enter, seem to be a couple and sit at +last table by the door. Somebody brings a giant moth picture down the stairs and hangs it up. 22:00. Half elves look at clock. Staff move people and pull tables together - setting up for Mirth?!? Hear music. People rush over to the gathered tables (inc halflings). Mirth, halfling, enters dressed as a ringmaster type (smarmy), + +- claps his hands and things appear on tables: +pastries, wine, bottles etc. General store? Famous alchemist (Mirth's Fizzleswig). + +- Back here in 3 days * +Brookville Springs next. + +Yadris and Yadrin (half elves) - Dirk overhears "taking my mind off tomorrow". Sent to investigate - problem solvers, didn't say what they were solving. Work for a lady, already up in her room. + +Day 11 26th Dec +--------------- + +Morning announcements! + +- Penta city states high alert due to attack on barrier. +Justicars reporting to major settlements. + +- Shields of the Accord report army moving Airwise, led by Baron. +- Loggers at Pine Springs missing. +- Heavy blizzards caused travel to Rimewatch impossible, scholars trapped. +- Goliaths of Firewise deserts seeking refuge in monstrosity pierced the barrier. Colleges deny possibility. +Dunenseed and Sandstorm; creatures of Air led by 6 armed + +- Borsvack report gnoll activity. +- Break-in at Riversmeet menagerie. Black market confiscations and 50g fine. +- Everchurch's villainous Earl ousted by sheriff & brave deputies. Nefarious activities thwarted. +Restoration under way. + +- Hartswell and Goldenswell armies clash with giant roam Firewise of Hylden. +Head to Seaward. Perfect circles of houses with a coliseum type building in the middle - used for horse and dog races etc. + +Airwise path coming into the city - wagons going back and forth filled with the marble type material used for the buildings and roads. Pylon outside of the main walls of the city. Population: elves / dwarves / gnomes. Park the cart (Paynes horsebreeder), 21:00. Go to coliseum - midday tomorrow. Forge charger race. + +- Inn - The Rotund Rooster, Tiffany. +Roads closed due to winter so no ice. Don't have fresh water - have to order it in. Marble type material with dark blue vein effect. Seaward run by stonemasons guild - elf. + +Nearest inn for a room - Water by Earth Waterwise or Night Candle. Road 7, 3 rings inn. + +Water elementals - rumours are they can walk through barrier. Some alterations with the council - collective working as one. Water problem has been in the last 20 years. + +- Chunky chicken cooker - sponsored by Rotund Rooster. +Redesigned as used to be a griffin - favourite. + +- Payneful Gamble - bad at start time. +- Thunderbelch - name. +Inn attacked by water elementals? Works at the cliffs. "No one else has been attacked." + +- Charge mysterious owner, maybe an outside duke or Earl. +- Halfling asks Invar if we have any skulls. Green skin goblin for his master, not allowed to say from round here (really). +Pays well for clever people skulls. + +Go to Night Candle - Candle lit - plush furnishing. Reason for the barrier was to keep the elementals out, but rumour is they can walk through. + +Goblin peers into Dirk's room @ 3am. + +Day 12 27th Dec +--------------- + +Head to shield pylon - pylon is like a gold ring with the crystal set in the claw and runes around it. 7:00. + +- 2 guards outside the keep. +- Rumour - walking through chicken farm at night. +Barrier flickers for about 1 sec - happens often, comes from Dombold Castle? but only for the last few weeks. Only notice near to pylon. + +Commotion at temple - guards carrying female elf out of the temple. Arrest warrant, public indecency & corruption. Cross temple with vast archways, four doors, circular altar in the middle. 08:00. + +- Priest/Council fabricated some charges - thinks +Architect using dark magic to make himself smarter. Architect worships light gods? Alutha on his left femur, "Ilmen Thion". + +Council OK. + +- Issues - barrier and water elementals. +Row 1, ring 3 from centre (public forum), meet Thursday @ midday, 4 hrs. Representatives Monday/Friday. + +Place bets - The Big Bad Beauty. My missing hangover - 2 runs, from another world, + +- 2 guys acting as a shell company for the Guilt. +Races 4/1 odds on all - The truffle hunter. + +Hear a yelp from the side street - tabaxi has following us (goblin) - tells me to stop letting him follow us and gives me a piece of paper. Goblin will keep following us because we might have skulls. Dirk says we can leave one for him at his house. He takes us there. Mainly house - rat droppings etc. He has 3 skulls, will meet his master when he has 5. + +- 5 silver for skull. +- Maybe cadavers? +- Go back to inn via a temple to see if we can locate skulls. +Fire temple - war, justice and hunt. + +- 3 people in congregation listening to priest recite poetry +about battle against Soot the dragon. Congregation pick up wooden swords and start practicing. + +- Brother Cashew - his problems in town: +- Water elementals not killing, but heard town deputies found drowned near cliffs with fresh water. +- Rivers and lakes in 10 miles are bad, previously got from wells & then gradually went bad. +- Want to check the skulls for the water differences (trying to obtain some for Scum). 50 years - coughing sickness, no signs of damage other than burning - see some malnourishment at early age. 25ish - signs of damage to vertebrae, stabbed, nothing obvious. +Public records will be available: Town hall, 4th ring waterwise. Back to inn for Isabella. 10:00. + +Arena vibes in the city. People really finely dressed. Sit in section C. Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. Race 2 bet - 5s, Wove's gravy, 5/1 - lost. Race 3 - 5s, The galloping salesman - lost. Race 4 - 5s, In it for the sugar, 3/1 - lost. + +- Race 5 already bet: +Sphinx style - stonemasons guild. + +- Unicorn - first place worker, forever 1st. +- Horse - Payne horsebreeder. +- Gryphon/chicken - Rotund Rooster rooster / chunky chicken. +- Nightmare - on hire, Night Candle Inn. +Win 9g. Wooden barrel - Bud barrel makers - Big Bad Beauty. + +- Gryphon/cow? - My Missing Hangover. +Race: Truffle Hunter wins! mice. + +Town almost finished - walls up to strength. Water problem too - looking to sort. Worrying rumours about members of the council refer to forums. Odd out of place formal announcement. + +Go find Isabella's friends. Knock and door swings open - middle class house. Blood on the floor of the parlour. + +- 2 halflings hanging from the ceiling by their feet. +Male intestines over the floor (pattern?). Female looking at us but body upside down and face is right way. + +- Suspect someone has done a divination spell using the intestines. +- Not been dead long, but not warm. +- Front door broken open - engineered force. +- Physically kicked over candelabra. +- Movement but nothing showing a struggle. +- No active magic. Divination was used and same type as used at Everchurch. +Hear heavy wing beats - gargoyle, 6ft, looks like it is made of clay - not usual in town. Isabella says it's from her aunt (family guardians). Drops bag, sopat, and flies off with Isabella. + +Militia come to see what is going on. Direct inside and they take us to see the council. 17:00. Store weapons in a chest before going in, also my medic bag. + +- Elementarium - elf. +Admits pylon is being interfered with. Needs Justicar gone - requests us to look into the pylon. Justicar has ulterior motives: get access to shield pylon. + +- 2000g if we keep the information to ourselves. +Get 500g now to rest on completion, solve or information to help solve. Extra for water elementals - 200g each. + +- Flickers - 5 mins to 2-3 hours, only from sea to Seaward +& nothing from Everchard direction or Dunbold Castle. Also state nothing is coming their way. + +- Started approx 3 weeks ago, keeps log of it. +- Saw tri-moon barrier attacks; they were different. +- Halfings suspect pirate - captain of ship allegedly has crew but nobody has seen them. People go missing and turn up dead & magically disfigured. Human/merfolk, has a beard and makes possibly rodent-style magic. +- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. +She will help us. + +- Water spirits have usually made it through; more are making it through now along with the other elements. +- Try to keep body count low. 18:00. +Retrieve weapons. Sort horses - 1 day paid. Get rooms at the Scarred Cliff. 19:00. Go to barrier. + +Guards show us around. + +- Gherion - sage on duty at the moment - gives us +the book to view. + +- Time and duration of the flicker: +- 2 weeks - getting worse, increasing frequency. +Longest 3 secs, very random. Approx 9am a bout of outages. None around midnight. Clam Clock in the home for quarrymen. + +- Don't know how far the flickering goes between +Seaward and Dunbold Castle. + +- Happens towards the pylon, crackling in a horizontal pattern and doesn't go past the pylon. +Crystal has thousands of tiny runes all around it. None of the runes seem to have been tampered with. Crystal is very clean. + +- Meteorites sometimes come down. +Geldrin touches the barrier with his crystal shard & it goes crazy. Guard said it seems like the flickering but more intense and didn't go as far. + +- Justicar - just checked the books and the crystal with +a eye glass. Peridot Queen. + +- Iaxxon - guardsman - guarding quarry, water elementals +rushed past him like he was in the way not attacking him. + +- Sleep - get horses and leave for quarry. + +Day 13 28th Dec +--------------- + +Follow barrier - see ripples, seem worse the further away we get. Duration and frequency don't change. Pylon seems to be bringing it back under control. + +Ground is very dry and loose - not many plants. Get to a quiet point - see a horse in the distance coming towards us. Green, tall elven woman, black hair, looks very, very extravagant (Peridot Queen). Strokes my face and joins us towards the cliffs. + +- Worried when she looks at Geldrin. +- She's seen all 5 pylons. +- Made it to the cliffcutter town. Murky, dwarves and gnomes. +- Barrier problem seems to originate by the cliff. +Track towards the barrier by the cliff. 21:00. + +- Cliffs are sheer drops with rifts and barriers. +- Water is choppy and quite dangerous. +- Recently cutting close to the barrier. +- Break into a tool shed for the night. +Wind picks up outside for a moment. + +- Barrier around the cliffs is the emanating point, about 20 mins away. +- Not much wildlife around here. 23:00. +Morning wave sounds are getting louder - Peridot goes, and 2x sea creatures rushing up the sides of the cliff. + +Day 14 29th Dec, 06:00 +---------------------- + +Elementals come over the side of the cliff & reform as bulls - they follow the path away from the barrier. + +Peridot Queen arrives - has wings, appearance of an elf. Geldrin, Invar and Peridot Queen go down in a lift right next to the barrier (1 meter away). Mine shaft with some wooden structure beams, branches off away from barrier and parallel. 08:00. Further down, wooden wall constructed saying "danger of collapse". Hear creature. Man stood there, human with scar, pushing a plank back into the wall. Peridot Queen pays him one of the old copper coins. + +Transforms into a green dragon. Incident a few days ago came, 30 years not had any problems until now. Beasts like bulls shot up from disturbed part, towards the wilderness, shrieking like a banshee. Gnome says "smell like candy and has legs" probably lies. On dwarf has barrier duty and found a small crystal on last duty. + +Fly out of the shaft, and Aliana and Dirk see a shape. 8:15. See a group of miners, a dressed differently human comes over to them and points to us. Human walks off towards the barrier. + +- The dwarves then attack us: 4x dwarves and 1x gnome. +Gnome throws a blue rock on the floor. A small elemental comes out and attacks Geldrin (possible spell effect). + +Manage to knock one out and the guards come over + +- & bring him round. He says: +"He's coming, Terror of the Sands is coming for you all." Guard knocks him back out. + +Guards take him back to town. Private Burke wants us to visit the station before we leave. All have 5g and old copper coin. Gnome has two other blue crystals. 8:50. + +Gets to 9:00, more obvious flickering but nothing obvious. Believe the human may have come through the barrier. The human came from approx where the point of origin is. + +Invisible Joy appears and tells Dirk they are in pain and it burns - asks for Dirk's help. + +- The thing causing the barrier issues? 9:50. +Follow the salt trail from the water elementals. Salt trail thins out but no sign of them. After a time land becomes more lush (approx 7 miles from the barrier) with insects which we didn't see before. 11:00. + +River ends on the cliff and comes off in a waterfall (shallow river). Path ends at the river, about 20 years old. + +River appears to contain water elementals. + +- Elemental says: +"Pain gone, no hurt me. You come take me like others, take we escape through pain, closest good water." + +Geldrin frees the two in the blue crystals. Elemental wants us to free the rest. Death dome - came through hole made for poison water. Hole hurts, in the sea. Elemental stealers trying to free some creatures trapped underground. Poisoned one - made of poisoned crystal one. Powers death dome. Garadwal was one with the moon rock but escaped. + +Scaly dragon with web fingers goes through dome - + +- blue/grey colour. One big one with four arms and tridents, +poison water, and Garadwal with tridents. Hole by cliff face at bottom of sea. Occasionally somebody/thing goes down to annoy the crystal. + +Head back to the town to speak to militia, 13:00. + +- Salinas - earth and water - the guy our attacker is talking about. +Soon free like our mother Garadwal - sand, earth and fire. Barrier is enslavement. + +- 8 altogether - soon find hidden lair of oppressors, +used as batteries. + +- Element diagrams: +- Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. +Second diagram includes salt, ice, lightning, smoke, magma, sand. + +- Theories: +- Needs of the many outweigh the needs of the few. +- They tried to destroy the world and got locked up. +- Preemptive locked up. +- Water back: 10 miles down the path from Seaward (firewise), +- 10 miles down the coast from the barrier. +Head back to quarry. 16:00 / 18:00. Door in the lift right next to the barrier. + +- 2 panels missing from the hole. +Passageway descends down behind the wooden panels. Goes down quite a way - has been excavated on purpose, not a mantle seam. Widens out and opens to a real old built wall (1,000 years old). Opens into underground structure. + +- Right old door - sign of aging, handle hurts. +Old gnome walks out, realises we are there. Gives him a coin. "Underbelly?" - truce in place. + +- Get a tour prison: +Down corridors, turn left many times. + +- 6 corners, huge metal door - dragon clearly holding ring. +Go through - see barrier at far wall. Smaller barrier encompassing a massive salt dragon - sweating salt for 20 years into the earth. They are trying to free it. Room was full of odes and ends and copper pylons were there but they removed them. Runes on floor barely visible as covered in salt. Another room has 4x curved copper pylons, removed 20 years ago - dragon was already seeping salt. + +- Keep Justicar out of it down here. +- Down to the left is the original entrance. Go look at it - similar to a room we have seen before in the observatory? Examined in the last 20 years. +Big black dragonborn comes in - Turquoise's boss, not many around. + +- Cult looking for a laboratory. +- Basilisk - there's a laboratory of a similar vein +- 20 miles earthwise along the barrier. +Head back to town. 20:00. Common room - sharing with one other person who hasn't shown up. + +- Message to Basilisk * +He comes to us. Knows little about salt elemental. Black Scales - mercenary group, work for Infestus (black dragon). Basilisk went to check observatory - couldn't open the chest & couldn't get in the golem underground room either. + +- Garadwal: +Prison at lake by lab? - ooze one. Frozen near Rhinewatch - ice one. + +- Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. +Is he an elemental? + +Go speak to Elementarium guy in Seaward. + +Day 15 30th Dec +--------------- + +Head back to Seaward. Follow a caravan of stone back to Seaward. Get to town - raining. 19:00. Need to see Elementarium; actually dressed this time. + +Quasi Elementals - don't have their own plain. Known 8 major plains; light and dark effects to create the 8 main ones. They became their own things and started to fight. Not become that powerful. + +E + W + L: ooze/slime/life - spark of creation. E + W + D: salt - makes water bad and crops won't grow. E + F + L: metal - positive construction. E + F + D: magma - destroys farmland etc. F + A + L: smoke. F + A + D: void - absence of everything, nothingness. A + W + L: ice. A + W + D: storm. + +Where does sand come into this? + +Goes down the trapdoor after talking to us about salt water elementals. Dirk listens - talking to somebody about it. They don't exist. Salt and water are their own things. Pollution. Salt elemental poisoning the water elemental. + +- Dirk - crystals helping the barrier? Elementarium believes it, +but he needs the Justicar to believe it so she leaves. Geldrin to try to sway Grand Towers to get her to leave. Rhonri or Revir might have an obsidian bird to relay a message. + +Arrange to meet back with him @ 9:30. Dirk asks about Garadwal - he goes down to the chamber and retrieves a dwarf skull and asks it the question about Garadwal. + +The information you seek is not for your kind. He is imprisoned in the prison of the Sands. Brutor Ruby Eye - troublesome being, wizard of great power. + +- Shows us the skull room - he talks to them for information. +What would happen if Garadwal escaped? It would be bad indeed. The barrier would be weakened by the loss of one of the 8. He was the only void they could find. If one was to escape it would be him. Feedback from the destruction of his prison would have damaged the others. + +Geldrin tells him of the tri-moon shard. Brutor knows of the first crack. Envoi was tampering with it for his own means, tampering with the containment device, and if something happened to him it would be bad and cause the crack. Wizards didn't agree of their entrapment but they all agreed Garadwal needed to be contained. Ooze was a good one. Ice and storm were put in the same chamber as land was tricky to be dug. + +Stop leaking? Maybe sigils out of whack. Brutor killed by black dragon. Demi lich - how he was made. Maybe a way to reverse the polarity. + +- Spinal! Brutor's password. +Winter Roses? Envoi's password. + +- Halfling killers. +- 8 things linked to the poles. +- Pirates. +- Elementals. +Received downpayment for our work so far: 200g. 20:30. + +- Put horses into the stables. +- Stay at the Night Candles. + +Day 16 31st Dec +--------------- + +Head to town hall to see Rewi Lovelace - gnome. Room is very messy. Obsidian raven is pulled from a drawer, called Errol (but not really). Justicar causing more problems than solving. Request further evocation spells. + +- Rewi - thinking on how to enhance the pulley system at the cliffs. +Retrieve horses and cart and head earthwise. 10:00. + +- Limit: sis poor? +- Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. +Continue earthwise towards Newhaven. Land starts to get lusher and seems to be at the edge of the salted area. 12:00. Lady at a well - the only freshwater in the area. Others have been boarded up as water is bad. Mayor runs a farm - keeps chickens. Full up water skins. + +- Road out of Newhaven in disrepair. +Outside of town grass dries up again. Town seems to have good water as an anomaly. Not many birds around. + +Nothing around to indicate a laboratory. Obsidian raven appears - suggests meet up with Justicar and work together, wants our location. Don't give it to him. Flies back to Seaward. + +Keep going to 10 miles away and 1 mile from barrier. Find charred earth - last few days - campfire and rations - cultists? See some tracks, 5-6 people camped. Prints show they are searching for something. Nothing obvious. Follow tracks towards barrier; they stop and we see acid corrosion and blood speckles which look to be swept over. Black dragons have acid. Green is mist. + +Geldrin checks the compass and we follow it about 30ft down. Find weakened signal, see purple, and find 10ft stone walls with a door. Password opens it (Spinal). + +Enter into chamber. 2 golems in dwarf form guard a door. Spinal opens the door. + +- Go left down corridor. +Enter large room - stone benches and lecture seats (seat 20-30 people). Jagged rock horn - representation of Tor. "Tor Protects" written underneath statue. No visible disturbance to the dust. + +Book on lectern - Book of Ancient Dwarven language on Tor. Head across the corridor - room, same size but only contains teleport circle (one set). Geldrin takes rune number. Dirk finds footprints that have tried to be covered up and lead down the corridor. Fairly recent, could still be around as have gone back on themselves. + +Follow footprints to a closed door. Footprints seem very purposeful. Ruby in the dwarf face releases some chains which open the door. + +- Use my crowbar to hold both of the chains to keep the door open. +Geldrin sets an alarm on the hatch and teleportation circle. + +Go into another door (2nd left from the hatch). Purple glow from the room. Paperwork on the walls of pylons and tower structures. Bubble of shield energy in the middle. Scaled model of the penta city states. Suspended globe of elements at each of the compass points. There is a city Fire Airwise of Lake Azure half way between the lake & Aegis-on-Sands. No sign of any of the prisons or labs on the model. Elements don't move. + +Teleportation circle activates. Retrieve crowbar and hide in diorama room. + +- 1 person seems to come out and goes to dwarf face door, +to door opposite us, then over to us. Tanned skin gentleman comes in - human, desert style robe, Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. Has found several circles and he is a collector of magical trinkets. Make a deal - he gets all the coin/gold/silver and we get first pick of the treasure. He gets the next, then we get 3 other picks, even split. + +Lounge has a scepter that seems out of place. Dirk takes it and an alarm goes off. All doors are now arcane locked. Go back through dwarf face door. Go left. Mouth appears and tells us traps are active. First door - ten skittles at the end of a lane, poker table and darts board with 3 darts in the 20. Poker table is magical; whole room is magical. Next door totally empty room... Next door - silence spell goes off. Room is full of rows and rows of crystal balls. Memories but we don't know that. + +- Back in the lounge hidden room behind the dwarf portrait: +blank paper and non-wounding dagger. Paper is magical to write special, & silence spell stops. Go back to crystal ball room. + +Memory of goliaths helping to build grand towers. Find the ball with the most scratched plinth - memory is filled with dread. Acid smell like house, scarred by acid and dwarf skeleton. + +Get one near grand towers ball - see 4 other people in a circle + +- around teleport circle: human (male), elf (female), human (female), +halfling (emo), purple crystal rises up from the circle. Before acid splash, see lounge talking to Envoi, asking about if it's affecting anything. Joy sets off the alarm. Ruby Eye takes the dagger and splatters blood and stops the alarm. + +- Before - fields of white roses. Envoi talking to elven woman from circle. +Joy and dwarven lady next to him. Feel content but forlorn when looking over at Joy and Envoi. + +Male darkish elf next to Envoi being introduced in observatory - tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. Envoi wearing 5 rings! + +Hot Spring - opposite dwarf lady (Brookville Springs), early date, falling in love. + +- Standing in a room in his building: purple dome and copper pylons +with blackness and a shadow. Ask shadow what it thinks. Shadow replies, saying no, not yet; it is trapped and threatens calamity. + +Nice room, intricate vine patterns, elven mage asks about change - nothing. Browning retreated to grand towers. Glad she is here, worried about it - warm secret. Think Browning is going to cover it all up; thinks if people know how it works then they will ruin it. + +- Last one - see him in mirror wearing robes. +Book and chain with staff, looks down under mirror, head on floor, stone opens up showing skull. Puts 2 crystals in chanting and "Tor Protects". + +- Pythus Aleyvarus? Blue dragon. +- Ruby Eye seems to have planned the dome: +- 5 pylons and 5 more around the Grand Towers to make it work. +Early periods where he's protecting towns from elementals. Group all fighting; when it breaks 6 armed rock creature, they all make a pact. + +- Male human points him to a crater with a massive purple rock & Envoi says he will build an observatory to track it. +Brutor says it is what they need. + +- Warring kingdoms - join together to construct everything: +Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. + +- Turning on of the dome at the point of turn on, something flaming bursts through and Browning bursts through the barrier and is attacked. +Room opposite - big engineering astrolathe, seems to be the planet which is a disk, with the moons and their orbits in real time. 15:00. + +- Display shows the date and time - current date 31st December 1011. +Room next to orbs. Protection from Elements spell. Open the door, boulder elements in there and try to get out. Slaves? Made to dig - leave them there. + +Down the corridor. Room same place as calendar room, not locked or trapped. Room is empty, mirror image of calendar room. + +- Opposite to boulder room: +Smaller room - empty aside from picture of moon holes, look like big gem holes. + +- Opposite orbs: +Feel weird opening the door. Glass cabinets in pedestals and shelves with various nick nacks, brass plaques and glass domes over them. + +Curved with flowing water - bottle "Containment taken from Lord Hydranus". Stone at the top 2 are glowing. Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). Magic bounds / magic missile. + +Great sword - stone and bone hilt with steel, dwarven steel, blade in friendship. Sword given by kings of the goliaths. "To the spell ones on the crafting of your big building." + +- Codebook holder - with a book very delicate: +"Book recovered from grand towers upon discovery." + +Celestial dwarf mannequin, ornate green silk dress, gold trim & tiny emeralds along the trim. "Worn by Princess Seline to the Grand Ball." + +- Cushion - small red gem, garnet. +No plaque. Size of the moon holes. Coin press - grand towers pennies. "Press used for souvenir pennies." + +- Jar - eyeball in fluid, "My Eye". +Scrying eye, can scry once per week. + +- Book - sealed not open, made of tan leather and looks unsettling. +Platinum lock. Human teeth are around the edge. "Noctus Corinium Grimoire" - lock looks like it's an addition. + +Plinth wheatleaf - pillow with marble cube radiating yellow glow. "Drixl's Cube, a gift from the golden field halflings." + +- Bottle - wine shaped, "first pressing of Siggerne - midh-iel", +Maiden's dew drink. + +- Ring - looks like Bushhunter ring, ring of protection +1. +"Failed attempt to recreate my stolen ring." + +- Comb - dragonbone and jade, details carved of a forest. +"Gift from the elven princess to my wife. She never got on with it." + +- Scepter - silver, fine golden filigree, white seaward gem in the top. +"Staff gifted by the merfolk of the great sea." + +- Gem writing: +"Time existed before me but history can only begin after my creation." Celestial book - tower seems to be the centre of the world & + +- don't know where it came from. Clues: Geldrin got a vision when reading it, +saw 6 primal elements looking down on the world. + +- Geldrin's alarm goes off - see figures at the end of the corridor: +- 4 burly black dragonborn. They hear alarm. "The alarm's going off, +someone is here" (Draconic). + +They want us to leave, claim it in the name of their master. Shields have mosquito on it. Create a shield wall and we yank crowbar out. + +- Fight: +- 3 1/2 swords +- 4 shields, mosquito +- 70gp +- 4x tower pennies +Obsidian bird - Errol. + +- Errol - last message was gnome giving our location (Rewi) +to black dragon? + +- Red gem found under plinth under Celestial book: +"The floor of my ship is decorated in equal parts with riches, tools, weapons and love" - games. + +Next room - walls and ceiling are blackened - kitchen. Nothing in the oven. + +- Jar contains gem: +"The rich want it, the poor have it, both will perish if they eat it." Nothing? - right here. Barrel seems magically sealed - rune for the cold beer. Contains a jar with a hand in it. Hand is ruby eyes and has blood which stopped the alarm. + +Next room is warded and locked. + +- Previously empty room is now full of books: control earth elementals, Tor, gems, for spells, wards. +Information on how to construct crystals for magic. + +- Gem inside a book: +"Although I'm not royalty, I'm sometimes a king or queen, and although I never marry I'm only sometimes single." Bed. + +Summon unseen servant in the elemental room. + +- Gem, Elemental Room: +"In my first part stir creativity and in my full form I store the results." Museum. + +- Gem, Orb room behind an orb: +"You have me today, tomorrow you'll have more. As time passes I become harder to store. I don't take up space and am all in one place. I can bring a tear to your eye or a smile to your face." + +- Memory - orb room. +Memory is: "If you got here you got my message. Only clue is based on the layout of my rooms. When you get inside you'll know what to do." + +- Gem, Calendar room: +"I guard the start of this recipe, just scramble, hidden." Kitchen? + +- Bedroom - seems to have a woman's touch, tapestries, +rugs etc., wardrobe drawers, full length mirror, chair, fireplace. Compartment under the mirror - skull with 2 gem stones rolled up paper in the eye socket behind big gem. If you feel like lived a good life, this is the Denouement (final part, finishing piece). + +- Gem in the other eye: +"They are never together, yet always follow one another. One falls but never breaks and the other breaks but never falls." Calendar. + +Put all of the gems in the slots and room opens. Purple sphere that doesn't let light through. Void creature? Won't used as it may have been too weak. + +- Seems to be a self contained barrier. +Void creature wants to be let out. + +- The diviner - the one who stole his brother - the twins we killed. +Mechanical trap activates something in the room. Magical trap teleports to the room. + +Pythus takes creepy book and Celestial book. Dirk: sword / scepter of the merfolk. Me: coin press / cube. Invar: ring of protection / potion bottle. Geldrin: spear / eye. + +Pythus gives Geldrin a scroll of teleportation and goes. Geldrin takes eye and scrys on Pythus. Sand stone cavern, pile of gold on top is a blue dragon (serpent-like), reading the skin book full pages made of cured human flesh. Seems to be at the edge of the desert near "Salvation". + +Back to void room. Will tell us what is in their room in exchange for freedom. What is in the room will help release him. Rubyeye wanted to live forever. Went in with elven woman and dark male (Envoi). Just a fragment of the void, but if added to the others can get more powerful but only a tiny bit. + +Inside a key looks like pylons placed against a barrier circle of copper and turn it - talking like barrier isn't active. Pylon for his prison as well as another. + +Use the ruby to open the door, then destroy it. Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. + +Go through door next to void. + +- 4 plinths - by the door are 4 copper pylons, +look like they would go over rods/force field. + +- 2 metal circles, runes all around (copper). +- 1 - steering wheel size. +- 1 - over a meter, stood upright. +- 3 - dragon skull, Alsafur dog size. +- 4 - book, same lock as on the creepy skin book, +made of leather - unpickable lock. + +Possibly storing one of Envoi's rings - it was under the skull. Skull is one of my kind - Veridian dragonborn, dead for approx 1 thousand years. + +- Envoi's ring: +- a sacrifice made to live eternal, father and daughter. +Book writing around the edge - old dead language. The memories and learning of Atuliane Harthwall. Needs a powerful identity spell to learn the command word to open the lock and book. + +Mosquitos, woodlice and moth are now around. Rain storm. Void will help as long as he is not detained. + +- Lightning strike is seen although underground. +Try to let void out. + +Push pylons against his dome - opposite pylons seem to switch it off very slightly. Ring by the dome turned and attracts to the pylon. One full turn releases the dome in that quadrant. + +Void releases a circle of obsidian to control him with. + +- Take his ring and book and small ring. +- Remove gems from the moon face lock. +- Head out and close the initial door behind us. 18:30. +- Massively overcast with the storm. Air is thick with insects: +- moths/mosquitos, ants etc. +Circle of storm 1/2 miles wide, moving unnaturally. Push of barrier looks like 8 massive claws pierce through - black dragon looks to be trying to come through the barrier. He wants the remains of his son - seems to be the skull in the sealed chamber. + +Go back and get it. Missing the side of his face - think Rubyeye did it, but he may have started it by killing his son. Place skull near barrier and he has crystals on his scales which part the barrier a little but still hurts him. Takes the skull and says we are even (for killing his men). + +He flies off and Thunderstorm goes with him. + +Head back to Newhaven with the cart. Go to pub - picture of 5 hands together making a star. Silver dragonborn behind the bar, golden rim spectacles, halfling wait staff, tabaxi bar maid. "Gelandril Harthwall" been here 10 years. It's said the 5 wizards used to meet here. + +Sleep. + +Day 17 1st Jan / Tri-moon +------------------------- + +Goblin looking for us - Scum had a message for us. Find Scum as we leave the pub. + +- Apparently warrant for our arrest: +- Treason - conspire against the Towers to break barrier. +- Scum - telling Elementarium to meet us with Ruby Eye skull +(1 mile outside Seaward). + +Sent message via Errol to Grand Towers saying we are going to Everchard to put them off the scent. + +- Message to the Basilisk: arrive at possible meeting point, +waiting for nearly 3 hours. Cart comes off road with a human onboard, don't recognise. Seems suspicious. + +- 1 box contains Grand Towers pennies. +Council ask for him to transport to Fairshaw - The Cart (Garick Blake). Looks like the gnome sent it. + +- Dragon notes: +- Silver - Harthwall. +- Copper - Spruce, white. +- Black - Infestus. +Veridian. + +- Blue - Pythus. +- White - the ancient. +Red? - Soot. + +- Manifest: +- 1 currency - Towers pennies. +- 1 provisions - ash jerky??? +- 2 armaments - spearheads, copper ends, trident heads tipped in copper. +- 1 waterproof papers - reams of enchanted waterproof paper, salt water only. +- 1 tar. +- 1 tools - heavy duty, ship building? +- 1 misc goods. +Should have gone out in 2 days with guards. Invar knocks the driver out. See what looks like Elementarium riding towards us. Gnome seems to be trying to clear the decks. Elementarium doesn't know about the spearheads etc. Wants to set up a meeting with Lady Harthwall. They have a council to discuss security matters within the dome! Gives us the Ruby-Eye skull. + +Jerky bag contains a hemp bag - pungent sickly sweet smell, reminds me of rose spice, but narcotic. + +- Ruby Eye: +Infestus' son - spawn of evil - needed a powerful sacrifice for a friend (Envoi). Salt dragon leaking - worried tampering with the life may have weakened the force. Reinforce the barrier - if we don't weaken the barrier, possible fix by refilling the voids, or safely disable the barrier - turn off with the fail-safe button in Grand Towers. Weird skin book - grimoire Noctus Caerulium - forbidden magic. + +To stop Tri-moon shard we would need to fully redo the dome. + +- Create a device to repel it but barrier would need to go down to do it. +- Relationship with the merfolk? Fish men, different people, then those invited into the barrier. Great helpers to set up barriers. +- Thinks Browning had something to do with goliath settlement disappearing from the history (must be clues). +Green dragon seems to be residing in the area. + +- White Dragon helped to build the dome. Reds, no blues. +- Elementals liked to attack and this is why the barrier was put up. +- Tower was perfect place but needed more. +- Backup plan for the void elemental stashed in his safe, if not there need to find another. +Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. Tells us to get on the rune. Appear in a lush castle room at Harthwall. Sat at head of table seems to be Lady Harthwall; stood beside is Sister Lady. + +- 4 chairs by the rug. +- Rip in the sky - Basilisk appears with: +Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. + +Catherine Cole vouches for me Valkarige vouches for Invar + +Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. + +- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. +- small group of like minded to protect the barrier want to maintain stability of the barrier. +News reached them about the fragment. + +Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. + +- Green dragon responsible for destruction of Dirk's homeland. +Rubyeye blamed Dirk's kind for helping the dragons. It's said Verdilun dragon is shacking up with the red dragon. + +- Keeley Curdenbelly's research maybe of use (the "liver" in the desert) +- 1. head to merfolk +- 2. get crystal from the water +- 3. speak to ancient one +We passed off the twins mum. + +Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical + +- leeching elemental prisons +- Garadwal +- void on the loose +- shield crystal in the sea. +World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. + +- Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* +Gave him the coin press and told him the coins in the cart were a create of them. + +Back to our cart. + +- Head down the main road toward Fairshoes. 5:30 +Start hearing birds and animals etc. 10pm Find a place to camp for the night. + +Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. + +Back on the road. Uneventful day heading to Fairshoes. + +Make up camp again. + +Nothing happens. + +Day 18 (Friday) +--------------- + +- 2nd Tan with Finnan +- 16 days until Timnor + +Day 19 (Saturday) +----------------- + +- 3rd Tan +- 15 days until Timnor +- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. +Go through town to the harbor to get a boat. + +- Temperature is oddly warm for this time of year and this close to the sea. +Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. Cabin 17. Figure head is a wooden shield crystal. + +Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. + +Hostess lady chants and brings forth great winds and a storm. + +Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. + +- Merfolk - they've never done that before. +- Pirates - has been attacking people more recently. +- creatures that can petrify others by looking at them. +- 150g if we need to fight. 5g if we don't. +- Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. +- Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. +- Silver Dragonborn - Bard - recruited. +Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. + +Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. + +Salinus? He calls on Salinus - worm - calls forth salt elementals! + +Kill him and his crew. + +- free passage on any of their ships and 400g +Receive Scimitar +1 - attune for water breathing. Kairibdis' Pistol of Never Loading +1 (D8) noisy. + +Retreat to cabin with a cask of rum. + +Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. + +This is the only town on the Isle. Turtle men seem to be the locals. + +- 3rd road left 3 building - Sailors Rest. +Take a shrine tour - Shrine to the great Turtle. + +- Merfolk - the accordionman - look after the Turtles. -200g life gem. +We stand on the back of The Great Turtle. + +Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. + +Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. + +- Water gets up high on a tri-moon and covers the building. +- Tell the guy about our fight with Kairibdis - Walter. +- Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 +- Takes us there. +Old town in disrepair but one dock looks fairly well maintained and repaired. + +- 3 houses look decent too. +First house closest to us seems to be lit. Creep up to look in. 4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. 1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. + +Both other huts have lights. Furthest one seems to be more secured. One has a conch and calls and says kingly comes now. Wait around for him. + +Water comes back. Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. + +- 11 fish people carrying things. 15 overall. +Something seems to be coming by barnacled sea cows. 10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. + +- 8:30 +- 9:20 +- 10:00 +- Chariot back pulled 10:30 +Creature stops and sniffs as they are being watched, tells them to search for us. + +Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. + +Need all or the plan will not work and he will be cross and he will be worse. + +- Think 6 armed creature will attack our ship for the weapons. +- go back to Turtle Point. 12:00 +Plan to go to Freeport instead of Baytail Accord. + +- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. +- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) +Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. + +- Tell her what happened - 10ft 6 armed thing is an Excellence. +- Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. +Dunhold Cache information. + +Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. + +Recommends to speak to merfolk of Lake Azure for Dirk's city. + +- Shipment - get a small unit. +Sahuagin have one of the conch's (8 in existence) Kiendra's. Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. + +- one of the Merfolk will come with us. +Pact leader Freeport - Tiana. + +Day 20 (Sunday) +--------------- + +- 14th Tan 1012 +- 14 days until Timnor +Stay in the barracks for the night. Dirk has a strange dream about a goliath sitting on a granite throne looking concerned, two females tending to a dwarf, who will live but will lose an eye + +- (Rubyeye), fought well. *changes* Savanna scene: +dancing around a fire with a granite city in the distance. Face in the fire ?Enwi? then Jagg? then disappears. + +Head towards ship. (Merfolk) Guardfree - states his mistress has been working on misdirection. + +- get food brought to our cabin. +- Journey is uneventful luckily. +Oddly a busy bustling city mishmash of styles. Rainbow ship is docked here. + +- Quartermaster loads shipment onto our cart to +take with us. + +Baroness Lavaliliere - head of Freeport. No taxes for trade here. + +- Newspaper: +- Ancient takes flight - left his home for last 1,000 years moving to Snow Sorrow. +- Fighting still going on in the mountains near Highden - good taking a beating. +- paper seems to be propaganda. +Go shopping. + +- Esmerelda - magic item shop. +Go to see Tiana at the Siren and Garter. + +Expecting a group of 40 to help fight Excellence. + +- They are mortal and can be slain. Delights in bossing the mortals around. +- Baroness - seems good but lets people do what they +please. Although can be random with which groups to dispose of. Latest one around a week + +- ago - a group of bound elementals and gems - fire and water. +- another group selling archeological items from desert - Tabaxi awakened etc. +Ceased the goods. + +Go find the Basilisk in a private room. + +- Highden - being attacked by a Fire Excellence. has something in for the dwarves. +Investigated the crater and found an old lab but unable to get in. + +- Friends on the council meeting with the ancient around Snow-sorrow. +- Azureside - reported perodotta and spawn amassing in the area. +- Arabella kidnapped again - targeted attack, faces removed. +- No forces available - zinquiss will meet us at the harbour + 1 other. following her predecessors' ideas. maybe something similar to Lady Harthwall but is not a dragon. +Baroness neutral party, fairly reclusive + +- Told about copper weapons - paper - Maelcolm Jethnes & Earl of Fairport involvement in the shipment. +- Get a dagger from Basilisk. 1 charge for dimension door. 3 charge for teleport spell opens a portal open for 5 seconds. think of the place to go - big enough for a person. 1 recharge per day. +Lesser rift blade - Dagger +1 - 3x charges. + +Harthwall 2nd most Common last name (Browning 1st). Always been a Harthwall in charge of Harthwall. No Records of relative. Very reclusive family who don't appear in public until the coronation ceremony, only seen together to hand over the crown. (possibly disguise self spell) + +- 19:00 +Go back to see Tiana again. get another guard - Guardfree. + +Pirates Pearls Plundered - Icky lower. Poor Gut Refuge - Cheeky Thimble Rugger + +Go out to the cart - Dirk notices the padlock has scratches on it. The scratches look uniform & pattern I recognise but don't know why. Upside down thieves cant - "Drunken Duck" & scratched with claws like mine. change the markings to Everchard. look into parking and Guardfree keeps watch. Darker in Bugbear next to lizardman. + +Head over to the temple to give them the spear. Female half-orc comes to speak to us - hand over the spear and she goes to check it out with others. Donate in exchange for help? + +Request an audience with the higher power to discuss - won't be here for + +- 3 hours. +- go to get lodgings at the Pirates Pearls Plundered. +- Crab man in charge - icky. +- Baroness grants us an audience right now, young for an elf. +Room is odd - paintings are the predecessors all wearing the same necklace (like a mayor necklace) & lots of jewelry. + +Desert relics - thought maybe they belonged to an old friend - long time ago - Velenth, Cardonald, + +- worked for her before coming here - willingly. +Vote 12 heads who vote who has the ability to uphold a very specific set of ideals. + +Other things taken off the street because she doesn't approve of the cult. + +Will loan some forces - Proviso - she gives us information about a laboratory. Can we get a red gem for her, hunt but not as hard as diamond in the workshop. Gaping hole in the side of the building. + +- Barrier - emergency systems - something else +in there - very young, cheers? she ran. + +- Dragon - rumor to roost in the ruins of +Dirk's old city. + +The creature in the chamber thing? ?Goa duck? - no. + +Has the code to the circle and the safe code whilst the defenses are up. gives us the lab. + +- Valenth wanted to transfer herself into an object... +- Seems a little shook and guard helps her out. +- 22:00 +Return to temple of Cierra. Huntsman has returned and comes over to us. + +- Huntmaster Thrune. in runes. +Ruby Eye spoke to their church often and interested + +- will provide aid to kill Excellence. +Ruby Eye thinks we might want to get the book back from the blue dragon before she tries to get it, she was Enwi's apprentice. + +- Ruby Eye's best friend wanted to craft herself into some thing and continue in that form. +Spear was a gift from a Huntsman of Cierra but it's actually an arrow and there were 5 of them taken from Cierra's last battlefield. + +Back to Pirates Pearls Plunder. + +- Guardfree - will get his mistress to bring guest shells. +- Try to plan what we are doing. + +Day 21 (Monday) +--------------- + +- 6th Jan +- 13 days until Tri-moon +- We all have dreams that are tinged with cold. +- My dream - in family home, sibling playing happy memories, looked at town hall but looking like a crater but in fact a black hole +- pulling in more buildings. Hear a voice: "Where is he I know you hide him" horrible voice. Panic and turn then wake up (looking for Garduul?) Void! +- Just our room is cold. As the ice melted, a white dragonscale drops from the icicles. +Go look for the Captain for a boat. + +- loan the boat for 100g a day and 500g deposit (125g each). guardsmen 20 (Sergeant has a necklaced emerald glowing when he talks) zinquiss and black dragon born (Wrath). clerics 15 and leader. +Pier 12 - large group merfolk 30 + 2 litters + +- Speak to pack leader Tiana & other leaders gather. +Get 2 guest shells. + +- 10 spare shells. +Sergeant takes our cart to the keep. + +Captain Hween + +Wrath will stay on the other side of the barrier once we get there. + +- Pack leaders: +- Shundra - Turtle Point +- Kiendra - Dunhold Cache +- Tiana - Freeport +- Alana - Riversmeet +Set sail - sea is calm. Water seems clear - no noticeable signs of him yet. + +Merfolk, zinquiss, Wrath, half clerics in the sea with us. + +- Excellence seemed to have come from 80 miles away when we were at the turtle village - so possibly +Dunhold Cache or the smaller islands around. + +& net Make a pulley system to hoist shield crystal onto the ship when we get to Fairshaw. + +- Wrath (Colin) middle name. when he gets to Blackstone scale. +Request to look for the location of Garaduul + +- Island - pass it and nothing seems to happen. +- Arrive at Fairshaw. +- Boat is ceased upon orders from the Earl, occupants being detained for Treason etc. +Diplomatic mission carrying members of the Pact etc. + +- Suspect the Earl is part of the Cult. +- give zinquiss 200g for 4x healing potions. +- Guards return and tell us to stay on board whilst investigation takes place. +Zinquiss returns with 3 healing and 1x greater healing (distributed). + +- News: +- Highden - Battles not doing well, strengthened by dragon sightings. +- Heartmoor - People falling ill - surgeons deployed (Perodotta?) +- Grand Towers - Justiciars leaving to the 5 points of the penta city states. +- Provinia - locust and mysterious spiritual event where things keep disappearing. +Sword blessed +1. + +Day 22 (Tuesday) +---------------- + +- 6th Jan 1012 +- 12 days to tri-moon. +Get called to the mess hall by Tiana. + +Construction under the water and they have made a gate by raising the crystal up to leave a gap. Fish shamans taking notes on waterproof paper also. Crystal is approx 1m square. + +Can sense Kiendra but no response possibly unconscious but seems to be in the cavern. + +Split underwater group into two to sort out crystal & also attempt to rescue Kiendra. + +Approach shield crystal in stealth. + +- See - above our field of vision are some sharks who +seem to have spotted us. + +Fight. + +- We overcome and defeat mobs at the crystal site. Kiendra - found and rescued - very weak and tortured. & coin pouches - 112g (give to crew). returning - speak aquan. +Find waterproof paper, 3x dispel magic scrolls (geldrin) Big Boss - Spear glowing dull blue - Doom spear +1 Suit of plate mail - Plate of Hydran +1 resistance to cold. + +- Boat - pretty wounded. attacked - Hunt Master missing. +Other party - Tiana's - dispelled shells and got Half orc priestess on the boat wants to check on the other team for the Huntmaster. Necklace Sergeant wants to come with us. + +Go over and Huntmaster fighting an Excellence both very injured. + +- Deed Excellence! +- 4 mermen +all mermaids + +- 4 clerics +- 6 guardsmen +- Survivors: survive +- Moor up by Dunhold Cache for the night. +Merfolk recover our dead and lay on the + +- deck - Priests oversee and I thank each one for their +help and sacrifice. + +Pull up to the cove - lookout shouts there is a vessel already docked. Chariot with water elementals chained to the boat - Excellence's boat. + +- We row to shore to investigate. +Mother of Pearl named Chariot, no other signs of movement. + +Dirk speaks to elementals and they want to show us where the excellence live, will come with us on the big boat. + +- Take the chariot back with us 8-10kg. +Zinquiss will sell it at an auction in 7 days, have the address for the Freeport auction house. + +Day 23 (Wednesday) +------------------ + +- 7th Jan 1012 +- 11 days to tri-moon. +Go to Excellence lair with Merfolk - Pack leader Alana. + +- Water ebbs and flows like a tide in the underwater cave. +- 20ft long crystalline sculpture of a dragon - base has runes glowing. +- 3 cages and barrels. 1 cage contains a merfolk - but looks different - green not blue. +Alana seems to revive him and takes him back to the ship. + +- Chests seem to be laced so waterproof - contents may not be openable under water. open one and contains white powder which I inhale. Rabbits - whole room turns into a black void. +Bas, Athal - Salamanders - and Arabic writing. White dragon circling around the dome. + +Two blue eyes in the darkness coming towards me and really cold and back in the room. + +Other cages - in the middle of the cage they see snail with a gleam of metal which is a jeweller's chain attaching it to the cage. Guardseen says the snail is a bad omen - its been drugged. Back to ship. + +- Merfolk - abducted from beyond the barrier, +him, his friend and wife. Woke up one day & they were both gone. Wife is nobility in their pact. (Snewl?) + +Hunt master dispels magic on the snail & a mermaid appears. Empire of their people outside of the barrier captured while on diplomatic mission to the city of Onyx, doesn't trust them because war between them and the Salt elementals. Princess Aquunea. + +- City of the black scales has a "door" into the dome - Infestus can't use it as too big. +Payment to access is a Grand Towers penny. + +Check out the barrels etc. + +- sickly sweet medicinal - potion of magical energy regain 1 slot - 1 hour. +- silk and parchment interleaved - runes. +- 2x white rose powder. Tiana gives us 1,000g. +- metallic censer (incense holding burning device) silver? religious? water god? Censer of Noxia. +Ability to enrage and control water elementals. It's active. + +- Send message to Basilisk. +Arrive back to Freeport - seems very cold. Much colder heading back down to Freeport. ?Rimewalk issues? + +Snowing over the sea, everything very dark and snowy. Guy shouting the End is Nigh - moon is crashing down into the city. Ask him which city and he then "it bothered he dreamt it." + +- 22:00 +Lots of people having dreams. Gnolls attacking a village requested backup from Everchard and Fairshaw. + +- Underwater - mermaids - "big cat with metal wings attacked it." +Happened a few nights ago - same time as ours. + +Head to the Castle to see the Baroness. Necklace is removed from the Sergeant and he just walks off. + +- Mermaids - Having a meeting in 3 days at +Baytail Accord to discuss what happened. We can go. + +The dreams seem to contradict each other, possibly from the Ancient One - so could happen. + +- Huntmaster - going to Grand Towers to speak +to the Hunt Lord. + +- Justiciar in the city. ?Looking for us. +- Baroness gets us into the Drunken Duck - secret in +Air wise from Jewelry District. Written on our padlock, on the cart. Cart still ok in the castle. + +Baroness Master - Valenth Caerduinel. Necklace. Sister is a ring. + +Go to Drunken Duck. All the walls are covered in pillows and ?soundproofing? Red dragonborn + +- 2x tabaxi +Automaton + +- 2x halfling and gnome +- Survivors: clientele +Gave me (Axion) Schnapps from the Brass City! Barman says only the best for the "Little Finger". He's intrigued by why the 3 best members of the Underbelly went on a mission. + +- Tabaxi Whisperers laden with 'Dev'. +Traders 'Keeps' from foot to foot. + +Faint noise through the floorboards, raised voices? Automaton keeps talking about a factory. Wants to know where the labs are. Tell him all by the barrier. Cuts down his search radius... + +- Get a private room to discuss matters. +- Send message via the underbelly to advise we won't be going to Baytail Accord. +- Will go to desert laboratory. diff --git a/tmp/all.txt b/tmp/all.txt new file mode 100644 index 0000000..f3a57cc --- /dev/null +++ b/tmp/all.txt @@ -0,0 +1,2612 @@ +Ever Church +Swampy woods - fruit trees orchards Day 1 + +Winter - 1 orchard has trees in bloom - [unclear] + buzzing - bee pollinating & enabling trees + to live - slightly bigger than normal bees. + - dark bark, blue leaves, red fruit (deep) + +Town - mix of light & dark woods. + +Population 3k +No visible district - larger manor house in centre. + +Cider inn, cider. +Beeswaxed floor, a nice small +half elf playing a lute, much is half elf & human +family resemblance +Father Burnun - prize fighter +half elf - Gelissa * + +Box: +Baz - Invar +greying hair - paladin looking, did not get the plate. +Leonard Dirk +politely + +Shaun - Geblin (the mighty) +gnome, wild brown hair +glasses with no glass + +Farmer - old John Thornhollows. +Another 3 pigs gone +Vanished +6 missing but only has the ledgers +for 3. Had a group of around 30 pigs? + +3 daughters: Annabel, Isabelle, Cumberella + +5 keys on the bar - but changed to 4 & no idea +how it changed. + +Register with Earl - ? mercenaries. + +Pig's daughter keep best books, 1g each to go look. +Shepherd maybe missing some sheep. +Bess - cat missing but no rats recently either. +Rats missing too? + +Last summer built a hostel - house all the homeless +people, but not enough for homeless so letting out. Inn's +not happy. + +Go to Earl - half-orc (crunch looking), black clothing covered with birds. +Geese missing. + +- Butcher - serving new mushroom burgers since meat not coming + in. +- Woman - out of town come to find husband, come from Albec + for work, no one seen him, was putting up fences at a farm. + Malcolm Donovan - sent to jailer - birth mark on back of right hand. +- Apply for poverty tax - eligible - slides 2g over to her + for the anti-tax. + +Funds from the hostel go to the anti-tax +since wife left him - going to disappear. + +Census - in spring - 3c for the number, +payable in the morning, ask half elf. +- No trouble in town. +- Bushhunter - registered mercenary. + +Last 2 weeks: +Bushhunter came to town 2 weeks ago. +Winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +Invar - delivered weapons but no militia? +Order was put in a few months ago. +About 5 left. Earl downsizing. +20 weapons, 10 armour. +Can't remember any of the old militia. +Go to jail & talk to sheriff for current militia +forgetting names. + +Bushhunter - had tubes & pipes. +Used to do a lot of swords. + +Jail +- Now believes should get a package from + a crazy haired gnome. +- Location changed. Used to be where hostel + used to be. +- 2 empty cells. +- Laws - big scar over her eye. +- Her, sheriff & other 2 deputies (Bob). +- 11 years, always something so old there isn't anything. +- No reports of people missing. +- Home theft week ago. +- Bushhunter doing a sale of giant bugs in frames, + last sale 6 days ago. +- Shepherd had new fence? Yes. + +Terry left town - 2 months ago +Johnjaw passed away +Abo. arrested +Ralfeck - Buckworth somewhere +None left in town +43 used to be hired. + +Parch of militia statute charter to have sufficient +militia for close to barrier. +1100 militia - 45,000 population. +Due in a month to check; last visited 5 months +ago. + +Nobody remembers Gelissa except +Gedrin. +Invar remembered for a split second. + +* See one of the people gets up and walks + out. +Chase him. +Hood drops, face stitched below eye line, +mouth missing a row of teeth. +Bone splint fingers & split tongue. +Has birth mark on right hand - Malcolm. +Was a human male - had to use magic for these +changes. + +Guardwell - Terror of the Sands, nightmare of the darkness. +He will consume your soul. +- Tales of the sphinx who learnt dark magic + experimenting on itself. +- Remembered Isabella and that Gelissa said she + hadn't arrived. Remembered her again! + +Took Malcolm to the jail. +Deputy went to get the sheriff - Jeremia. +Now remembers 3rd daughter Gelissa. +Now remembers homeless people. +Makes us deputies - we get badges. +Sir Alstir Florent. + +Bar 5th person, human warrior - helping +out with us & picked one of the keys +and remembered him all the way +up to when we went fishing, +around the time Dirk saw the rat. + +Gristak Brinson - mayor. + +Day 2 +Head back to the town hall. +* Received whole census for John's pig farm, 9:00. +5th name on the ledger has been scribbled out. +Claims it was a mistake. +- Unemployed & holdings worth <50g - anti-tax criteria. +3g anti-tax. + +Thornhollows farm Census April 4th + +registered: +wife Sarah 47 +John 50 +Annabella 18 +Isabella 16 +Clarabella 14 +seeing sheep farmer's son + +Paternal grandmother Bella. + +2 sounders of pigs: +1x matriarch +3x breeding boars +2x breeding sows +1 has 17 female younglings +other has 21 female younglings +No males. + +Paid tax as billed. +Farmhouse, 3x orchards, stable, veg garden. +2x outbuildings which back onto a hedged sty. +- Planned employment: 3x hands. +- Grazing rights for area in edge of swamplands. + +Walk to Thornhollows farm, past orchards & brewery, 9:45. +Farm surrounded by stone hedge. + +Pass 2 ravenhound looking dogs - girl walking with them, +black hair, missing from census? +Craven dogs, breeding pair, mimicry noise, have puppies. +Approaches us - Annabella. +- Younger sister on the porch. +- 3 puppies on pillows next to grandma. + +Books - everything tallies until about 1 month +ago. Scribbling out & removed without explanation, +think there should. +Missing 12 pigs in total - should be 57. +Records say should be 51 they've recorded. +6 missing over the last 2 weeks: +actually 46. +3 last night, before last +3 a week ago. +- Missing pigs went overnight. + +Inconsistencies start about the time Sarah left. +45 +Cat is missing too, about 1 month ago (black cat). +Nights of disappearances, not locked up at night. + +- Large door to enter the hedged area, looks densely grown. +Confident there is no dig through. +Hill giving 4 foot of hedge to get in but no +advantage to get out. + +Dirk finds big divots that look like foot +prints - looks like a frog - approx 8 foot frog. +Ravenhounds ribbited at dark. +Started a few weeks ago - take the pigs, gruffle hunting. +Seem to head to swamp. + +Massive moths, been around for a while. + +Q - 100g to clear the frogs. Had 50g so far. + +- 6 pigs missing to the frogs as they remember + these, but 6 others missing they don't remember. + +Go through swamp. +Feels like we are being watched. +Massive moth appears during the day... +Stealth off & get attacked by a frog - killed 2. +Find bones that appear to belong to pigs & sheep. + +Back to farmhouse, 16:00. +Cleara gives a tonic where we can use hit dice. +* Potion of recovery. * Succour. +Stay over the night. + +Day 3 +Head over to sheep farmer. +Geldrin accidentally cast a spell sat on +Dirk's shoulders. Tore his shoulders apart like +Malcolm's wounds. +Stop for short rest. +Birds circling overhead: goldfinch & starling. + +District lack of sheep at the farm, swamp seems +to be trickling into the farms. +30-yearish man appears to be trampled by a herd of sheep. +Looks like some human sized prints, 4x sets. +One looks to go to & from the barn. +We can investigate - drew crime scene. +Hear something trying to break out of the barn. +Run to farmhouse; door has been "latched in". +Table smashed to pieces, various debris about. + +Fire looks like it was burnt out yesterday. +Upstairs looks old. Double bedroom & 2 sets of singles. +Older couple. 1 may match dead man, 1 slightly smaller. + +- Creep over to the barn & see a row of sheep + heads - seem unnaturally agitated. Hear unevening bleat. +Breaks out of the barn - massive pile of melted +sheep - killed it. + +See things at barn and felt memories +being taken - not there when we get to the barn. +Found woman in the corner dead. Looks like +she lured the creature in the barn and somebody +locked them in. +Something about Malcolm and Isabella going missing & +nobody knowing of them in town but us & Malcolm's +wife knows. 11:15. + +- Go to where we found the birds. +Take short rest. Dirk leaves food out & lots of different +types of birds appear. +Go into swamp to find bird lady. 1 hour in. +Swamp hut covered in bird poo, inside branches +covered in birds. 80ish woman, blindfolded & mouth +sewn shut. Name: "The Chorus". + +Been having dreams - that aren't her own. +Her apprentice upped and left. +Magic used is clever - changes memories into a convenient +form - so knowing Sarah was with The Chorus it +was harder to wipe. +On of the Robins' Day they saw her by the hostel. +She was distorted... + +Always had large animals in the area. +Somebody going through the swamp & using gas +which is hurting the birds. +Q: Stop the Bushhunter. +Direct us to the place where Gedrin has the papers. +2pm leave, 5pm at town. + +Back to town through market place. +Notice stack of frames with a halfling (suited) +with an ogre - barrel with tubes & pipes going to an +ear funnel crossbow - talking to a masked person who +has a wagon pulled by a "cobra koi" type creature. + +Sneak up behind the ogre & break his equipment. +Goggles & let the gas out. + +Bushhunter will do any form of Taxidermy... +* Bushhunter promises to hunt out of town. +Request him to do it the other side of the +river. + +- Magpie / Xinquiss can be found at + the Hatrall great bazaar. 5:15. + +Sheriff's office. +Very busy in there. Both Jeremia & deputy sheriff +armoured up - half-orc & kobold (seem to be militia). +Citizens wearing patchwork armour - bear, tabaxi, human, +warforged. + +- Been an attack - Walter (sheep farmer). Somebody came + in & they had a cult with sheep beast in. + Wife sacrificed herself. + +- Core - warforged - runs Peel & Core, lack of custom + in the tavern - noticed wagons at the hostel. + +- Earl had a death threat. 500g bounty. + +- Tiny guy - forester - Cromwell - noticed wagons + past Walter's farm, seem to have stopped there. + Seemed to be people in the wagons. What the mo... 5:30. + +- Jeremia & Drang to protect the Earl. +Hannah & Bob - go to outskirts. + +Gives us a shock dagger. + +- Village is quiet. +2x wagons parked outside the hostel - livestock looking. +Smells of pig manure & human faeces. Feel warmth +but can't see anything - scratched crab claws. + +Dirk sees rats again & they attack. A pig beast +breaks out of one of the carts, killed. +Sabotage carts & two people bring 4 horses. + +Woman in 50's, too many teeth, bigger (Sarah?) +Mouth - big. +Young boy 18ish (sheep farmer's boy?) + +3x patrons: Crimson, Bovine, Mirthis Fizzleswig. +1 shortsword. +1 sickle, silver. +Random herbs. +Church Tor & church Tarber. 19:00. + +Take the people & cart to the church. +People unable to be saved. Boy wasn't dead at first +but now dead. + +Brother Fracture - looks at the cart. +Remembered all of the militia have been going missing. +Want to try to put them all to sleep - Bushhunter! +Bushhunter staying out at cider inn/cider. + +Go to see him, 20:00. +Has a ring with purple gem & runes, needs identifying. +Doing that in trade for use of quaverisior / magical hearing +powder, 5000? etc. +Go back to cart & use it. +Get 5 back into the church. +1 - Gregory, homeless man, restored. Thought he'd been +taken by the militia. Remembers being in the big militia house. + +Park the cart behind the church & horses at the inn. + +Random compass box with a needle that points to the +Bushhunter - Geldrin buys it. + +Day 4 19th Dec, 7:00 +Dirk - flower he got from a tiefling girl is still looking +new - has a magic enchantment to keep it new. + +Problems with Pylon: +- Seaweed water spirits on the move. +- Fish men other side of barrier (massacre), dumbold south. +- Stone giants missing under new leadership by Hyden Goldensoul, + armies too insignificant. +- Cold air over River Rhein, frozen between Snowshore and + Highland edge. +- Ancient [unclear] from slumber, sages try to interpret omens. +- Gnolls attack restored point, cows missing, bounty on gnoll. +- Blight hits azureside cherry crops - Cereza production halted. +- Isabella Nudegate, 500g reward (missing on route), not searched. +- Grand festival, midwinter - held at Brockville spring next week. + +* Peridobit cloaking death spotted 50 miles eastwise + of Arrowfeur. +- No mention of pig. + +- Pig carcass is missing. Singe marks on the road. + Other cart still outside the hostel. 8:20. + +Oric - innkeeper, Cider Inn Cider. +Earl was holding banquet, no other strange goings on. +Things go crazy this close to the third. +Town crier local news around midday. + +Go to sheriff - walk past Earl's manor house. +Sheriff in chair, kobold shuffling papers. +Calls Malcolm, half elf steward for the Earl apparently +behind the plots to kill the Earl. Seems innocent - +no evidence, doing to keep face with the Earl. + +Something off with the Earl. Asked blacksmith to +up the production on weapons?! Invar just delivered lots. +Steward - didn't know him before; thinks duchesses +of Harthwall sent him after the previous Earl passed. +Earl seems to be more extreme in his views: +10 show sorrow, +10 blacksmith in town. + +Books say 27 militia - but only 4 (27 is half required amount). +Lawrence Henderson - exchequer, paying wages. 8:00. +Ledger given to the scribes at night & back to +Earl at 9:00 - half elf comes to scribes with us. + +Pick the lock & get left to Earl's chambers, right for scribes. +Ledgers are all copied & old ledgers kept in a different +place. Current ledger around 7 days ago. + +Isabella 2 weeks ago with 20 min to search for her in the copies. +Malcolm 6 days ago - name scrubbed out in the ledger +but not scribbled out in the copies. + +Visiting tourists: cider brewery & tour of woodland. +Spoke to the Earl for permission to take a cutting from the +Everchurch tree. Staying at beekeeper's. +Elfin meadowmaker for the cutting, 2x bodyguard. + +Half elf remembers Sir Alistair. + +Go see exchequer - half elf portly looking, Lawrence. +Ask about militia wages - he starts to panic. +Says we need to speak to the sheriff or the Justice. +Didn't do anything wrong. +Blames the scribes. Set them baron cut down. +So he was getting the payment for the other 23. +If we keep quiet he will help with more info if needed. +Gives us 50g. +8 carts, 16 horses, 60 swords. +Industrial angle: we have 2 extra horses. +58 days left on town finances. + +Safe: +small black velveteen case, gems. +3 treasure chest: gold/copper/silver. +2 bags platinum pieces. 6000gp. + +Earl's documents - file is empty. +Half elf remembers him having documents! Vicmar Danbos? + +Leave to go see Brother Fracture, 9:50. +- Gregory doing well - not had chance to heal the others, + will feed the rest. +- No way of communicating with other churches. + +Go see Gregory: +Remembers Dec started, thinks it was 7th/8th. +A few weeks ago according to the information from the town crier. +Can't remember anything from then until now. +Can remember 2x militia taking him to the hotel, +then waking up in the church. +Stonejaw & Ralfrex (2 of the missing militia). +Other people in the hostel - said it looked like a jail still. +Goat lady - Bagnall Lane - & various others. +Militia house open for about 1 month - no reason +for it to still look like a jail. + +Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. + +Cider inn cider. +Homeless in town not really any but remembers Gregory now. +Remembers dead goat down Bagnall Lane about 1 week ago. + +Go to hostel. Investigate round side of building. +Stone stables, 2 carts & 4x horses in courtyard/stables. +Chain on the gates but padlock not locked. +Invar breaks wheels. + +Release horses - I get magic missile. +Go into "hostel" to fight them. One is Gelissa. +Has a mark on the side of her face. +Kill other guy, subdue Gelissa. +Some corruption on her mind - Invar restores both her +mind & wounds. 11:00. + +- Look around the "hotel". First 2 cells are empty. +Approx 10 people still in the cells - all townsfolk. +- Invar creates a lock for the back door. 12:30. + +Tell Brother Fracture to concentrate on healing militia. +He will take Gelissa & militia & cart to the Barracks +and use that as a base of operations. + +Decide to go to the Barrier over the +"Swamp Laboratory". 13:00. + +- Rest for the evening - on 3rd watch, pigeon lady + near the camp. Didn't get a full rest. + +Day 5 20th Dec, 07:15 +Approach barrier - 2 large carts in view. +Go off the path. Tie up the horses in a +dip in the land. Go round to approach from the +trees. + +Find Cromwell (ranger) quite injured. Looks like +the damage Geldrin did to Dirk accidentally. +- Tracks look like heavy steel boots (Goliath in full platemail? Core?) +- We are about 1/2 way between the shield pylons. +- Carts are empty - large group of people go towards barrier, + small group to the swamp. + +Follow the tracks - they seem to come back on +themselves & head towards town. Looks like just +Goliath. We want to put Cromwell safe. + +Decide to follow along shield towards larger group. +Hear a big group of people stood next to the barrier. + +Dirk feels something is watching us. +Then is attacked by sheep farmer grubby. +Killed it & 11 militia & 8 townsfolk. +8 townsfolk tied up with rope. + +Black dog thing disappeared after we killed it. +But the maggot stayed. Upon killing this it let out a +massive shriek & all the remaining townsfolk started to +attack. +Located & subdued halfling girl. 08:00. + +Short rest. 09:00 / 09:10. +Get horses & Cromwell, head back along +the path to find a patch of trees to +hide the cart. + +* Long rest. 10:30 / 18:30. +Sword enchanted to add +1 until Invar's next long rest. + +2 twins commanding them. 1 went to swamp, other +went to Barrier (we killed it). + +Go towards the swamp - following the tracks of the +swamp, tie up horses outside swamp. 20:00. +Following 4 individuals - Geldrin's compass is following the +same direction. + +Come to a clearing at the barrier with a stone +building in the clearing - marble dome is against the barrier +with a large telescope through the marble dome & +the barrier. Approx 10 rooms. No windows. +Tracks lead right up to the building. Built approx +1,000 years ago. + +Hear a strange humming - door reverberating. 23:00. +Enter building. 2x plinths, 1 empty, 1 that +looks like Core dismantled. Head clatters off & +rat runs through left door. +Go through door by plinths. + +Left door - library. +Shelves - all on one shelf missing "T" shelf in Astronomy. +Guess Trimoons information. + +Picture of a well groomed tiefling holding a baby girl. +(The Mage) one of the 5 who made the barrier. +* Vixago Eros * + +Paper work looks recent, drawer has been forced open - +diagrams of the stars. +Other drawer has rabbit/deer teddy, ring inside, gold band +with runes. +Ring is similar to Dirk's - sews the teddy back up. + +Vase - "part of me can be with you while you study, +all my love - Joy" + +Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring +back Joy" +Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" + +Paper work - measurements of the tri-moon before the +barrier went up & 20 years after. TriMoon +seems to be getting bigger. Pre barrier it was +twice the size of the other moons - now it's 4x +as big as the other moons. +Geldrin takes all of the notes. + +Take an invisible cloak from the hatstand - wear it! +Dirk puts Geldrin on the hat stand & his clothes disappear. +When things touch hat stand they disappear. + +Day 6 21st Dec, 1:00 +Dagger & handkerchief fall to the floor. +Handkerchief - clean "J" in the corner. +Dagger looks like a letter opener. + +- Next room looks like a teleportation circle + with a bronze feather on the circle. Like the one the other + twin had; seems more powerful than usual. + +Cages in the next room (empty). Operating table (empty). +Boxes, guillotine rope - lots of blood & decay with sea & sulfur. + +Red door - picture of a young tiefling. Dirk recognises - +holding the wolpertinger. Very big portrait. +Big table - set but empty. + +Door @ end - kitchen. Well/bucket, doesn't look like it's +been used. Pull bucket up, pour water on the floor. +Humanoid skull with horns is on the floor. Horns are the same +as the race of the girl - 100's of years old. + +Trap door under owlbear rug in office. +Door outside office is barred shut. + +Trap door - 4 plinths, all have the suits of Core on them. +Geldrin goes down & suits light up, ask for password. +"Joy" & "Tri-moon" incorrect. +- Move onto another room. +Try to get through barricaded door. +Trapped door managed to get through. + +Potion room - cauldron looks like it is full of water, +fresh & clear. +Geldrin calls construct "Powerloader". + +- Another room - stairs & a door which says + "maintenance do not enter". Door is trapped with electricity. + Building seems protected by the same thing the barrier is made from. 01:15. + +- Room opposite - bedroom. +Tarnished vase with white flower in. +Chair which looks broken & open book on table +(seems out of place). +Open the chest - pulse paralyses Invar & Geldrin. + +Construct kills whoever was upstairs (one of them). +Killed it. +Shocked Invar & Geldrin back from being paralysed. + +3 sets of footsteps walk past the room & stop at +guillotine door, come back & go upstairs. +2 come back - seem to be on guard. +Another 2 go to Joy's room & comes back. +All 4 killed. + +Short rest completed. +Go into Joy's room. +Open the toy chest. + +* Mahogany box - lock has a rune on it. Geldrin takes it. +* Wardrobe - 3 empty hangers. Dress she was wearing + when Dirk saw her isn't there. +* Bedside table - bottom drawer is trapped. + Medical equipment, syringe, crystals, ink, powder, + bag, herbs, empty flask, 3x full flasks. + Recognise 2 - Mirthis Fizzleswig & succour, don't recognise the other. + +Quill pen, ink & book, kids diary. +Last page: "Felt rough today, don't know how much +longer able to write. Daddy borrowed Mr Snuffles again, +Daddy's friend asked about the rings again. Daddy's friend is +creepy." + +Diary - bed bound for length of the diary, +approx 1 year. Robots clean & feed. +Daddy's friend (never named) making rings etc, +put in box which might help her feel better. +Not getting better - terminal. Daddy got +upset but no payment could fix it. + +Trapdoor under the rug, wooden ladder down +into a store room, beanbag & toys, seems +to be a secret den. Dirk goes to the beanbag. +Little girl sat on it gets up & goes out: +"Maybe I should go back up. Daddy can see me in my room." +"Feeling better, glad because Daddy's creepy friend +is here so I can hide." +"He'll find me here, I should go to my hidey place." + +Go upstairs - opens up into a massive dome, +huge golden spyglass, crystals around the telescope +break the barrier. Someone sat at chair - back to us - +2x 8ft ugly human but wing creatures. Chair person looks like +creature we killed but all the parts are opposite +worm & dog like creature with the creature. + +Master asked to observe tri-moon. +No desire to fight us as killed his counterpart. +Worm is quite useful & rare. +900 years ago someone lived here. +Used the townsfolk to attack the barrier. +Give it one of the brass feathers to communicate +with the master for an audience: "Vann, if horrid mechanical +hellraiser sphinx creature." + +Garadwal? +Where is your army servant? Were those guys +instead... do not need to know us. +Co-ordinates required for triangulation need +to know where the armies strike next +month, so we can have freedom from the dome. +Striking the barrier increases the flow & maybe. + +Flows so the fragment of the moon will +destroy grand towers & destroy the dome. +* It lives outside the barrier. + +Might just talking freedom seemed kind of true, +& "freedom from the confines of everything" was an +odd phrase. + +What would happen if creature didn't obey sphinx? +It would find him due to the pact made +in darkness? In sorrow? Looked forlorn - to find Joy? +Nothing. + +Tri moon is a crystal. + +- Sphinx cast out for practising unsavoury magic. +- Do we wish to join him? +He is one cell - trying to find two locations +to attack. + +- All agree to clobber. +- Kill them all. Worm thing dead, think it has + mind control powers. + +Papers on table - calculus & notes on the Tri moon. +Books on biology, incurable diseases etc. Book on the effects +of poison - slowbane - acts like heavy metal - symptoms +match Joy's diary. +I wrote a paper on it - very rare because people can't +make it but turns up in the black market. + +Shield pylon city sometimes get a similar sickness +being investigated. Very rare & takes a lot to take effect, +possibly same colour as the shield crystal. +People get sick and come to Goldenswell +& start to get better so not really looked into much. + +Pile of goods - spices, wine, cherries, parchment, +platinum, gems, silk. +Saja digel / fire from azureside - have a blight. +Copper Dodecahedron (magical). + +Invar identifies Dodecahedron - spell facts! + +21st Dec, Day 6 still. +Geldrin goes to sleep in Joy's room & realises +the lamp is a gem. 3:30. +Long rest level up. 12:00. + +Chest itself is magical - designed to cast +paralysis if somebody other than him opens it. +Invar tries to identify it - very magical chest. + +Check out the skull in the kitchen - has a +deformity in the back of the skull & looks a +year younger than Joy - about 7, possibly 1,000 years old. + +Well goes down about 50ft, water down there. +Look for information in the library - built at the same +time as the barrier (in tandem), not as mainly back +then. Was put here to observe the moon, designed +specially. Caverns underneath the area found & +built here for this purpose. Summoning circle was +connected to different towns & cities to get building +materials then supplies after observatory was built. + +- Send message to Bushhunter: + - townsfolk have memories + - creatures slain + - at observatory + - message from Geldrin for Grand Towers wizard Brownmitty + +Waterwise, go to check maintenance area - disarm door. +Barrier is directed locally around the observatory. +Found a really old blanket and small pillow - really decayed. + +Possibly Joy's other hiding place. +Find a trap door - locked but no way to pick. +Handle feels hollow. Geldrin used shield crystal to open. + +Stone steps into darkness - down very far. +5 lights with ends in a door painted with white flowers. +Air is filled with solemn music in the cavern. +Water going through barrier fizzes. +River bank has a little shrine, 6 grave stones all +marked "Joy", all have the everlasting flowers on. +One has been disturbed. + +Joy - died in chamber. +Joy - 3 years old, lung infection. +Joy - 2 1/2, unknown complications. +Joy - 5 years old - nothing written. +Joy - 9 years old - died from poisoning. +Joy - 7 years old, birth defect - bones left in the +open & raided. + +Follow the stream - quite rocky & roots. Mushrooms/mildew. +Mushrooms get bigger, much bigger than they should be. +15-20 mins of walking - everything is bigger than it should be. +Lead out to a cave entrance. +Everything seems much bigger than it should be; +everything seems to get bigger towards a point. +Massive butterfly flies past. 13:30. + +Get to a lake, massive lily pads & frogs, +with massive flying sparrow. +Something in the lake seems magical (centre). +Put tris into the lake, nothing happens. 14:00. +Geldrin attempts to raft to the middle but falls off +and is rescued by me. +Give up on the lake for now as don't have anything +to get the magical thing in the middle. + +Back at the observatory, keep going round. +Atriose the maintenance area - where we think front door is, +it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. +Keep going round & original entrance isn't there. + +(Earthwise) Bed at earthwise changed to a flower bed +and barrier split isn't there. + +(Firewise) No trapdoor but instead 2x statues 1/4 of the +way down each wall. + +Throngore - huge muscular, 2 arms, 4 legs, 2 horns. +Left & dark gold; crab claws; taloned human-like hands; +flame, like skin. God of destruction & decay. +Igraine - pregnant elfin woman, rose & scythe in hands, +goddess of life & harvest (Alabaster stone). + +(Airwise) - Wall like it would have been the door +but there wasn't a corridor at the door to account for it. +Go back on ourselves - statues same. + +(Earthwise) Flowers dead now. +Invar goes round airwise to statues & back dead, +goes back round & shouts for us to come round but we don't hear him. + +(Airwise) - runes are bleeding and seem different. +Demon magic shit. Blood hurts a little bit when touched. +Geldrin copies them. +Invar gets a bowl - checks its acidity. +Tiny bit acidic, seems to be real blood. + +(Firewise) - Trapdoor is closed - we left it open. +This one is fully metal. Same lock as the other one. +Metal ladder going down to a metal floor, all metal. + +Around exterior of the room are 8 glass chambers, +6 empty, 2 viscous liquid with something in it. +Books next to it. +It is a non-description human statue without genitals, +with no set features, with arm out, palm down to the floor. + +Dirk mentioned hanging his coat on it. Geldrin tries a ring +and it fits perfectly. Dirk adds his. +Diary - seems to be trying to perfect a clone spell, +matches up with the Joys in the graves. +Dirk checks in the chamber: something in there. +Rings start to glow slightly. 15:30. + +Back up. +(Earthwise) - no bed, but barrier split is there. +(Waterwise) - door is there & pipes etc. +(Airwise) - triangular barrier. +(Waterwise) - same place both ways. + +Geldrin manages to hold the book open +and copies writing - deciphered as an illusion spell. +Takes the book. Front has an eyeball on it. 17:00. + +* Go to look at the moon. +Crack open maiden's claw - good wine. +See crystalline refraction of the moon & see +a smaller fragment at the front, separate & much closer than the moon. +1/2 way between planet & moon, locked in sync with where the moon is. +Moon is closer - think it will take another 1,000 years. + +If more magic goes through shield pylons this will speed it up. +Hitting it exactly between the pylons - conjunction +with some of the issues from town crier (pg 8). +Barrier starts flashing & lighting up. +Seems to be something attacking it. +Moon shard seems to be coming closer with the attacks. +Dirk draws boobs on the chest; they disappear after a while. 01:00. + +Day 7 22nd Dec +Go back to the cart with the box of copper. +Fashion a lock for the front door of the observatory. +Take Cromwell & Isabella back to town with carts & horses. +Restoration cast on Isabella - seems confident in herself. + +Day 8 23rd Dec +Go back to barrier to get remaining people. +8 people left - Chorus was looking after them. 12:00. +Geldrin paints wagon white & we head back to Everchurch. +Basilisk reply - "I'll meet you there". +Birds follow us back. + +See 6 horses coming from Provith (armoured), Harthwall militia. +Have their livery on: stag & dragon rearing up. +Arith (male) healer, Hthiman (male), elf (female). + +Few years ago near Ironcroft Firewise, something came through +the barrier - Invar was there. +Tell them about mind wipe & citizen stealing, +lack of militia etc., barrier attacking. +They report back to Lady Thyrpe. + +Healer restores the townsfolk, slightly. One with tentacle +arm pulls off & left with stump. + +Day 9 24th Dec, 13:00 +Arrive back in Everchurch - streets seem busy & panicky, +talking about missing people & odd faces. +Go to see Brother Fracture - people being reunited +with loved ones, & healing happening. + +Earl has gone missing - sheriff taken over & called for help. +Core made it back to town - locked himself in the pub +with Mr Peel looking after him. +Earl disappeared when memories came back. +Set a cabin up at half way point. +Harthwall ladies request a meeting with us +(they get told we were heading to Seaweed). + +Drop Isabella at Cider Inn Cider. + +- Go to see Core - lady gets Mr Peel instead. +Core is ok, will need further repairs. +Came to town from earthwise, only spoke to say "Core da". +Geldrin thinks he tried to say "core damaged". +Go to see Core. Sat motionless in a chair. +Peel thinks he needs more crystal, a repaired Core came in +the post 1 day after Core arrived. One word on it: "GUILT". +Not addressed to Peel. Pub been open for 5 years. +"The Guilt" - was the Earl of Brookville Springs. + +Back to Cider Inn Cider, take rooms & have baths. +Basilisk - find Groundhog, give coin - old grand tower penny, +doesn't like that we donated the coin to the church +(1,000 year old coin). +Keep on good side of mage Justicars in Seaweed. +Very structured town. + +Eat & recover. 17:00. +Back to see Brother Fracture. Basilisk brought the coin - +he had 10 left, brought for 1g. + +Day 10 25th Dec +Get up & on the road with Isabella. +Get towards a day's travel & see a 4 storey building - +trading post inn, "The Wayward Arms". +Merfolk on the sign. Get Red taken for the horses. + +Some play is taking place on the stage. +11 o'clock, rooms ready, 6am out. +Extended sleep till 8. Left stairs, 2nd floor. +Timothy served us. +Elven lady comes on stage & sings. +2 ruffians (half elf) enter pub, ramshackle armour, +have a killer air about them. +Sit down & open a bag on the table. +2 halflings enter, seem to be a couple & sit at +last table by the door. +Somebody brings a giant moth picture down the +stairs & hangs it up. 22:00. +Half elves look at clock. +Staff move people & pull tables together - setting up for Mirth?!? +Hear music. People rush over to the gathered tables (inc halflings). +Mirth, halfling, enters dressed as a ringmaster type (smarmy), +claps his hands and things appear on tables: +pastries, wine, bottles etc. General store? +Famous alchemist (Mirth's Fizzleswig). + +* Back here in 3 days * +Brookville Springs next. + +Yadris & Yadrin (half elves) - Dirk overhears "taking my +mind off tomorrow". Sent to investigate - problem solvers, +didn't say what they were solving. Work for a lady, +already up in her room. + +Day 11 26th Dec +Morning announcements! +- Penta city states high alert due to attack on barrier. + Justicars reporting to major settlements. +- Shields of the Accord report army moving Airwise, + led by Baron. +- Loggers at Pine Springs missing. +- Heavy blizzards caused travel to Rimewatch impossible, + scholars trapped. +- Goliaths of Firewise deserts seeking refuge in + Dunenseed & Sandstorm; creatures of Air led by 6 armed + monstrosity pierced the barrier. Colleges deny possibility. +- Borsvack report gnoll activity. +- Break-in at Riversmeet menagerie. Black market + confiscations & 50g fine. +- Everchurch's villainous Earl ousted by sheriff + & brave deputies. Nefarious activities thwarted. + Restoration under way. +- Hartswell & Goldenswell armies clash with + giant roam Firewise of Hylden. + +Head to Seaward. +Perfect circles of houses with a coliseum type +building in the middle - used for horse & dog races etc. + +Airwise path coming into the city - wagons going +back & forth filled with the marble type material +used for the buildings & roads. +Pylon outside of the main walls of the city. +Population: elves / dwarves / gnomes. +Park the cart (Paynes horsebreeder), 21:00. +Go to coliseum - midday tomorrow. +Forge charger race. + +Inn - The Rotund Rooster, Tiffany. +Roads closed due to winter so no ice. +Don't have fresh water - have to order it in. +Marble type material with dark blue vein effect. +Seaward run by stonemasons guild - elf. + +Nearest inn for a room - Water by Earth Waterwise +or Night Candle. Road 7, 3 rings inn. + +Water elementals - rumours are they can walk through barrier. +Some alterations with the council - collective working as one. +Water problem has been in the last 20 years. + +- Chunky chicken cooker - sponsored by Rotund Rooster. + Redesigned as used to be a griffin - favourite. +- Payneful Gamble - bad at start time. +- Thunderbelch - name. + +Inn attacked by water elementals? Works at the cliffs. +"No one else has been attacked." + +* Charge mysterious owner, maybe an outside duke or Earl. +* Halfling asks Invar if we have any skulls. Green skin goblin + for his master, not allowed to say from round here (really). + Pays well for clever people skulls. + +Go to Night Candle - Candle lit - plush furnishing. +Reason for the barrier was to keep the elementals out, +but rumour is they can walk through. + +Goblin peers into Dirk's room @ 3am. + +Day 12 27th Dec +Head to shield pylon - pylon is like a gold ring +with the crystal set in the claw & runes around it. 7:00. +2 guards outside the keep. + +Rumour - walking through chicken farm at night. +Barrier flickers for about 1 sec - happens often, +comes from Dombold Castle? but only for the last few weeks. +Only notice near to pylon. + +Commotion at temple - guards carrying female elf +out of the temple. Arrest warrant, public indecency +& corruption. Cross temple with vast archways, +four doors, circular altar in the middle. 08:00. + +Priest/Council fabricated some charges - thinks +Architect using dark magic to make himself smarter. +Architect worships light gods? Alutha on his left femur, +"Ilmen Thion". + +Council OK. +Issues - barrier & water elementals. +Row 1, ring 3 from centre (public forum), meet Thursday +@ midday, 4 hrs. Representatives Monday/Friday. + +Place bets - The Big Bad Beauty. +My missing hangover - 2 runs, from another world, +2 guys acting as a shell company for the Guilt. +Races 4/1 odds on all - The truffle hunter. + +Hear a yelp from the side street - tabaxi has following us +(goblin) - tells me to stop letting him follow us & gives me +a piece of paper. Goblin will keep following us because we might +have skulls. Dirk says we can leave one for him at his house. +He takes us there. Mainly house - rat droppings etc. +He has 3 skulls, will meet his master when he has 5. +5 silver for skull. + +- Maybe cadavers? +- Go back to inn via a temple to see if we can locate skulls. + +Fire temple - war, justice & hunt. +3 people in congregation listening to priest recite poetry +about battle against Soot the dragon. +Congregation pick up wooden swords & start practicing. + +Brother Cashew - his problems in town: +- Water elementals not killing, but heard town deputies + found drowned near cliffs with fresh water. +- Rivers & lakes in 10 miles are bad, previously got from wells + & then gradually went bad. +- Want to check the skulls for the water differences + (trying to obtain some for Scum). + 50 years - coughing sickness, no signs of damage + other than burning - see some malnourishment at early age. + 25ish - signs of damage to vertebrae, stabbed, + nothing obvious. + +Public records will be available: Town hall, 4th ring waterwise. +Back to inn for Isabella. 10:00. + +Arena vibes in the city. People really finely dressed. +Sit in section C. +Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. +Race 2 bet - 5s, Wove's gravy, 5/1 - lost. +Race 3 - 5s, The galloping salesman - lost. +Race 4 - 5s, In it for the sugar, 3/1 - lost. + +Race 5 already bet: +Sphinx style - stonemasons guild. +Unicorn - first place worker, forever 1st. +Horse - Payne horsebreeder. +Gryphon/chicken - Rotund Rooster rooster / chunky chicken. +Nightmare - on hire, Night Candle Inn. + +Win 9g. +Wooden barrel - Bud barrel makers - Big Bad Beauty. +Gryphon/cow? - My Missing Hangover. + +Race: Truffle Hunter wins! mice. + +Town almost finished - walls up to strength. +Water problem too - looking to sort. +Worrying rumours about members of the council refer to forums. +Odd out of place formal announcement. + +Go find Isabella's friends. +Knock & door swings open - middle class house. +Blood on the floor of the parlour. +2 halflings hanging from the ceiling by their feet. +Male intestines over the floor (pattern?). +Female looking at us but body upside down & face is right way. +- Suspect someone has done a divination spell using the intestines. +- Not been dead long, but not warm. +- Front door broken open - engineered force. +- Physically kicked over candelabra. +- Movement but nothing showing a struggle. +- No active magic. Divination was used & same type as used at Everchurch. + +Hear heavy wing beats - gargoyle, 6ft, looks like +it is made of clay - not usual in town. +Isabella says it's from her aunt (family guardians). +Drops bag, sopat, and flies off with Isabella. + +Militia come to see what is going on. +Direct inside & they take us to see the council. 17:00. +Store weapons in a chest before going in, also my medic bag. +Elementarium - elf. + +Admits pylon is being interfered with. +Needs Justicar gone - requests us to look into the pylon. +Justicar has ulterior motives: get access to shield pylon. + +2000g if we keep the information to ourselves. +Get 500g now to rest on completion, solve or information to help solve. +Extra for water elementals - 200g each. + +Flickers - 5 mins to 2-3 hours, only from sea to Seaward +& nothing from Everchard direction or Dunbold Castle. +Also state nothing is coming their way. +- Started approx 3 weeks ago, keeps log of it. +- Saw tri-moon barrier attacks; they were different. +- Halfings suspect pirate - captain of ship allegedly has crew + but nobody has seen them. People go missing & turn up dead + & magically disfigured. Human/merfolk, has a beard & makes + possibly rodent-style magic. +- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. + She will help us. +- Water spirits have usually made it through; more are making + it through now along with the other elements. +- Try to keep body count low. 18:00. + +Retrieve weapons. +Sort horses - 1 day paid. +Get rooms at the Scarred Cliff. 19:00. +Go to barrier. + +Guards show us around. +Gherion - sage on duty at the moment - gives us +the book to view. + +Time & duration of the flicker: +2 weeks - getting worse, increasing frequency. +Longest 3 secs, very random. +Approx 9am a bout of outages. +None around midnight. +Clam Clock in the home for quarrymen. + +- Don't know how far the flickering goes between + Seaward & Dunbold Castle. +- Happens towards the pylon, crackling in a + horizontal pattern & doesn't go past the pylon. +Crystal has thousands of tiny runes all around it. +None of the runes seem to have been tampered with. +Crystal is very clean. +- Meteorites sometimes come down. + +Geldrin touches the barrier with his crystal shard +& it goes crazy. Guard said it seems like +the flickering but more intense and didn't go as far. + +Justicar - just checked the books & the crystal with +a eye glass. +Peridot Queen. +Iaxxon - guardsman - guarding quarry, water elementals +rushed past him like he was in the way not attacking him. + +Sleep - get horses & leave for quarry. + +Day 13 28th Dec +Follow barrier - see ripples, seem worse the further away we get. +Duration & frequency don't change. Pylon seems to be bringing +it back under control. + +Ground is very dry & loose - not many plants. +Get to a quiet point - see a horse in the distance +coming towards us. Green, tall elven woman, black hair, +looks very, very extravagant (Peridot Queen). +Strokes my face & joins us towards the cliffs. + +- Worried when she looks at Geldrin. +- She's seen all 5 pylons. +- Made it to the cliffcutter town. Murky, dwarves & gnomes. +- Barrier problem seems to originate by the cliff. +Track towards the barrier by the cliff. 21:00. + +* Cliffs are sheer drops with rifts & barriers. +* Water is choppy & quite dangerous. +* Recently cutting close to the barrier. +* Break into a tool shed for the night. +Wind picks up outside for a moment. +* Barrier around the cliffs is the emanating point, about 20 mins away. +* Not much wildlife around here. 23:00. + +Morning wave sounds are getting louder - Peridot goes, +and 2x sea creatures rushing up the sides of the cliff. + +Day 14 29th Dec, 06:00 +Elementals come over the side of the cliff & +reform as bulls - they follow the path away +from the barrier. + +Peridot Queen arrives - has wings, appearance of an elf. +Geldrin, Invar & Peridot Queen go down in a lift right next +to the barrier (1 meter away). Mine shaft with some wooden +structure beams, branches off away from barrier & parallel. 08:00. +Further down, wooden wall constructed saying "danger of collapse". +Hear creature. Man stood there, human with scar, +pushing a plank back into the wall. +Peridot Queen pays him one of the old copper coins. + +Transforms into a green dragon. +Incident a few days ago came, 30 years not had any problems until now. +Beasts like bulls shot up from disturbed part, towards the wilderness, +shrieking like a banshee. +Gnome says "smell like candy & has legs" probably lies. +On dwarf has barrier duty & found a small crystal on last duty. + +Fly out of the shaft, and Aliana & Dirk see a shape. 8:15. +See a group of miners, a dressed differently human comes over +to them and points to us. Human walks off towards the barrier. +- The dwarves then attack us: 4x dwarves & 1x gnome. + +Gnome throws a blue rock on the floor. +A small elemental comes out & attacks Geldrin +(possible spell effect). + +Manage to knock one out & the guards come over +& bring him round. He says: +"He's coming, Terror of the Sands is coming for you all." +Guard knocks him back out. + +Guards take him back to town. +Private Burke wants us to visit the station before we leave. +All have 5g & old copper coin. +Gnome has two other blue crystals. 8:50. + +Gets to 9:00, more obvious flickering but nothing obvious. +Believe the human may have come through the barrier. +The human came from approx where the point of origin is. + +Invisible Joy appears and tells Dirk they are in pain +and it burns - asks for Dirk's help. +- The thing causing the barrier issues? 9:50. + +Follow the salt trail from the water elementals. +Salt trail thins out but no sign of them. +After a time land becomes more lush (approx 7 miles +from the barrier) with insects which we didn't see before. 11:00. + +River ends on the cliff and comes off in a waterfall +(shallow river). Path ends at the river, about 20 years old. + +River appears to contain water elementals. +Elemental says: +"Pain gone, no hurt me. +You come take me like others, take we escape +through pain, closest good water." + +Geldrin frees the two in the blue crystals. +Elemental wants us to free the rest. +Death dome - came through hole made for poison water. +Hole hurts, in the sea. +Elemental stealers trying to free some creatures trapped underground. +Poisoned one - made of poisoned crystal one. +Powers death dome. Garadwal was one with the moon rock +but escaped. + +Scaly dragon with web fingers goes through dome - +blue/grey colour. One big one with four arms & tridents, +poison water, & Garadwal with tridents. +Hole by cliff face at bottom of sea. +Occasionally somebody/thing goes down to annoy the crystal. + +Head back to the town to speak to militia, 13:00. +Salinas - earth & water - the guy our attacker is talking about. +Soon free like our mother Garadwal - sand, earth & fire. +Barrier is enslavement. +8 altogether - soon find hidden lair of oppressors, +used as batteries. + +Element diagrams: +Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. +Second diagram includes salt, ice, lightning, smoke, magma, sand. + +Theories: +- Needs of the many outweigh the needs of the few. +- They tried to destroy the world & got locked up. +- Preemptive locked up. + +Water back: 10 miles down the path from Seaward (firewise), +10 miles down the coast from the barrier. + +Head back to quarry. 16:00 / 18:00. +Door in the lift right next to the barrier. +2 panels missing from the hole. +Passageway descends down behind the wooden panels. +Goes down quite a way - has been excavated on purpose, +not a mantle seam. Widens out & opens to a real old +built wall (1,000 years old). Opens into underground structure. +- Right old door - sign of aging, handle hurts. +Old gnome walks out, realises we are there. +Gives him a coin. "Underbelly?" - truce in place. + +Get a tour prison: +Down corridors, turn left many times. +6 corners, huge metal door - dragon clearly holding ring. +Go through - see barrier at far wall. +Smaller barrier encompassing a massive salt dragon - +sweating salt for 20 years into the earth. They are +trying to free it. +Room was full of odes & ends & copper pylons were there +but they removed them. +Runes on floor barely visible as covered in salt. +Another room has 4x curved copper pylons, removed 20 years ago - +dragon was already seeping salt. + +- Keep Justicar out of it down here. +- Down to the left is the original entrance. + Go look at it - similar to a room we have seen before + in the observatory? Examined in the last 20 years. + +Big black dragonborn comes in - Turquoise's boss, not many around. +- Cult looking for a laboratory. + +Basilisk - there's a laboratory of a similar vein +20 miles earthwise along the barrier. + +Head back to town. 20:00. +Common room - sharing with one other person who hasn't shown up. + +* Message to Basilisk * +He comes to us. +Knows little about salt elemental. +Black Scales - mercenary group, work for Infestus (black dragon). +Basilisk went to check observatory - couldn't open the chest +& couldn't get in the golem underground room either. + +Garadwal: +Prison at lake by lab? - ooze one. +Frozen near Rhinewatch - ice one. +Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. +Is he an elemental? + +Go speak to Elementarium guy in Seaward. + +Day 15 30th Dec +Head back to Seaward. +Follow a caravan of stone back to Seaward. +Get to town - raining. 19:00. +Need to see Elementarium; actually dressed this time. + +Quasi Elementals - don't have their own plain. +Known 8 major plains; light & dark effects to create the 8 main ones. +They became their own things & started to fight. +Not become that powerful. + +E + W + L: ooze/slime/life - spark of creation. +E + W + D: salt - makes water bad & crops won't grow. +E + F + L: metal - positive construction. +E + F + D: magma - destroys farmland etc. +F + A + L: smoke. +F + A + D: void - absence of everything, nothingness. +A + W + L: ice. +A + W + D: storm. + +Where does sand come into this? + +Goes down the trapdoor after talking to us about salt water elementals. +Dirk listens - talking to somebody about it. +They don't exist. Salt & water are their own things. +Pollution. Salt elemental poisoning the water elemental. + +Dirk - crystals helping the barrier? Elementarium believes it, +but he needs the Justicar to believe it so she leaves. +Geldrin to try to sway Grand Towers to get her to leave. +Rhonri or Revir might have an obsidian bird to relay a message. + +Arrange to meet back with him @ 9:30. +Dirk asks about Garadwal - he goes down to +the chamber & retrieves a dwarf skull & asks +it the question about Garadwal. + +The information you seek is not for your kind. +He is imprisoned in the prison of the Sands. +Brutor Ruby Eye - troublesome being, wizard of great power. + +- Shows us the skull room - he talks to them for information. + +What would happen if Garadwal escaped? +It would be bad indeed. The barrier would be weakened by the loss +of one of the 8. He was the only void they could find. +If one was to escape it would be him. +Feedback from the destruction of his prison would have damaged the others. + +Geldrin tells him of the tri-moon shard. +Brutor knows of the first crack. Envoi was tampering with it for his +own means, tampering with the containment device, & if something +happened to him it would be bad & cause the crack. +Wizards didn't agree of their entrapment but they all agreed +Garadwal needed to be contained. +Ooze was a good one. +Ice & storm were put in the same chamber as land was tricky to be dug. + +Stop leaking? Maybe sigils out of whack. +Brutor killed by black dragon. +Demi lich - how he was made. +Maybe a way to reverse the polarity. +! Spinal! Brutor's password. +Winter Roses? Envoi's password. + +- Halfling killers. +- 8 things linked to the poles. +- Pirates. +- Elementals. + +Received downpayment for our work so far: 200g. 20:30. + +- Put horses into the stables. +- Stay at the Night Candles. + +Day 16 31st Dec +Head to town hall to see Rewi Lovelace - gnome. +Room is very messy. +Obsidian raven is pulled from a drawer, called Errol +(but not really). Justicar causing more problems than solving. +Request further evocation spells. + +Rewi - thinking on how to enhance the pulley system at the cliffs. + +Retrieve horses & cart and head earthwise. 10:00. +Limit: sis poor? +Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. +Continue earthwise towards Newhaven. +Land starts to get lusher & seems to be at the edge +of the salted area. 12:00. +Lady at a well - the only freshwater in the area. +Others have been boarded up as water is bad. +Mayor runs a farm - keeps chickens. Full up water skins. + +- Road out of Newhaven in disrepair. +Outside of town grass dries up again. +Town seems to have good water as an anomaly. +Not many birds around. + +Nothing around to indicate a laboratory. +Obsidian raven appears - suggests meet up with Justicar & work together, +wants our location. Don't give it to him. Flies back to Seaward. + +Keep going to 10 miles away & 1 mile from barrier. +Find charred earth - last few days - campfire & rations - cultists? +See some tracks, 5-6 people camped. Prints show they are searching +for something. +Nothing obvious. Follow tracks towards barrier; they stop & we see +acid corrosion & blood speckles which look to be swept over. +Black dragons have acid. Green is mist. + +Geldrin checks the compass & we follow it about 30ft down. +Find weakened signal, see purple, & find 10ft stone walls with a door. +Password opens it (Spinal). + +Enter into chamber. 2 golems in dwarf form guard a door. +Spinal opens the door. + +- Go left down corridor. +Enter large room - stone benches & lecture seats (seat 20-30 people). +Jagged rock horn - representation of Tor. +"Tor Protects" written underneath statue. +No visible disturbance to the dust. + +Book on lectern - Book of Ancient Dwarven language on Tor. +Head across the corridor - room, same size but only contains +teleport circle (one set). Geldrin takes rune number. +Dirk finds footprints that have tried to be covered up & lead +down the corridor. Fairly recent, could still be around as have +gone back on themselves. + +Follow footprints to a closed door. Footprints seem very purposeful. +Ruby in the dwarf face releases some chains which open the door. +- Use my crowbar to hold both of the chains to keep the door open. +Geldrin sets an alarm on the hatch & teleportation circle. + +Go into another door (2nd left from the hatch). +Purple glow from the room. Paperwork on the walls of pylons & tower structures. +Bubble of shield energy in the middle. +Scaled model of the penta city states. +Suspended globe of elements at each of the compass points. +There is a city Fire Airwise of Lake Azure half way between the lake +& Aegis-on-Sands. +No sign of any of the prisons or labs on the model. +Elements don't move. + +Teleportation circle activates. Retrieve crowbar & hide in diorama room. +1 person seems to come out & goes to dwarf face door, +to door opposite us, then over to us. +Tanned skin gentleman comes in - human, desert style robe, +Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. +Has found several circles & he is a collector of magical trinkets. +Make a deal - he gets all the coin/gold/silver & we get first pick +of the treasure. He gets the next, then we get 3 other picks, even split. + +Lounge has a scepter that seems out of place. +Dirk takes it and an alarm goes off. +All doors are now arcane locked. +Go back through dwarf face door. +Go left. Mouth appears and tells us traps are active. +First door - ten skittles at the end of a lane, +poker table & darts board with 3 darts in the 20. +Poker table is magical; whole room is magical. +Next door totally empty room... +Next door - silence spell goes off. Room is full of rows & rows +of crystal balls. Memories but we don't know that. +Back in the lounge hidden room behind the dwarf portrait: +blank paper & non-wounding dagger. Paper is magical to write special, +& silence spell stops. +Go back to crystal ball room. + +Memory of goliaths helping to build grand towers. +Find the ball with the most scratched plinth - memory is filled with dread. +Acid smell like house, scarred by acid & dwarf skeleton. + +Get one near grand towers ball - see 4 other people in a circle +around teleport circle: human (male), elf (female), human (female), +halfling (emo), purple crystal rises up from the circle. +Before acid splash, see lounge talking to Envoi, asking about if it's +affecting anything. Joy sets off the alarm. +Ruby Eye takes the dagger & splatters blood and stops the alarm. + +Before - fields of white roses. Envoi talking to elven woman from circle. +Joy & dwarven lady next to him. Feel content but forlorn when looking over +at Joy & Envoi. + +Male darkish elf next to Envoi being introduced in observatory - +tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. +Envoi wearing 5 rings! + +Hot Spring - opposite dwarf lady (Brookville Springs), early date, +falling in love. + +Standing in a room in his building: purple dome & copper pylons +with blackness & a shadow. +Ask shadow what it thinks. Shadow replies, saying no, not yet; +it is trapped & threatens calamity. + +Nice room, intricate vine patterns, elven mage asks about change - nothing. +Browning retreated to grand towers. Glad she is here, +worried about it - warm secret. +Think Browning is going to cover it all up; thinks if people +know how it works then they will ruin it. + +- Last one - see him in mirror wearing robes. +Book & chain with staff, looks down under mirror, +head on floor, stone opens up showing skull. +Puts 2 crystals in chanting & "Tor Protects". + +- Pythus Aleyvarus? Blue dragon. + +Ruby Eye seems to have planned the dome: +5 pylons & 5 more around the Grand Towers to make it work. +Early periods where he's protecting towns from elementals. +Group all fighting; when it breaks 6 armed rock creature, +they all make a pact. + +- Male human points him to a crater with a massive purple rock + & Envoi says he will build an observatory to track it. + Brutor says it is what they need. +- Warring kingdoms - join together to construct everything: + Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. +- Turning on of the dome at the point of turn on, something flaming + bursts through and Browning bursts through the barrier & is attacked. + +Room opposite - big engineering astrolathe, seems to be the planet +which is a disk, with the moons and their orbits in real time. 15:00. +- Display shows the date & time - current date 31st December 1011. + +Room next to orbs. +Protection from Elements spell. +Open the door, boulder elements in there & try to get out. +Slaves? Made to dig - leave them there. + +Down the corridor. +Room same place as calendar room, not locked or trapped. +Room is empty, mirror image of calendar room. + +Opposite to boulder room: +Smaller room - empty aside from picture of moon holes, look like big gem holes. + +Opposite orbs: +Feel weird opening the door. +Glass cabinets in pedestals & shelves with various nick nacks, +brass plaques & glass domes over them. + +Curved with flowing water - bottle "Containment taken from Lord Hydranus". +Stone at the top 2 are glowing. +Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). +Magic bounds / magic missile. + +Great sword - stone & bone hilt with steel, dwarven steel, +blade in friendship. Sword given by kings of the goliaths. +"To the spell ones on the crafting of your big building." + +Codebook holder - with a book very delicate: +"Book recovered from grand towers upon discovery." + +Celestial dwarf mannequin, ornate green silk dress, gold trim +& tiny emeralds along the trim. +"Worn by Princess Seline to the Grand Ball." + +Cushion - small red gem, garnet. +No plaque. Size of the moon holes. +Coin press - grand towers pennies. +"Press used for souvenir pennies." + +Jar - eyeball in fluid, "My Eye". +Scrying eye, can scry once per week. + +Book - sealed not open, made of tan leather & looks unsettling. +Platinum lock. Human teeth are around the edge. +"Noctus Corinium Grimoire" - lock looks like it's an addition. + +Plinth wheatleaf - pillow with marble cube radiating yellow glow. +"Drixl's Cube, a gift from the golden field halflings." + +Bottle - wine shaped, "first pressing of Siggerne - midh-iel", +Maiden's dew drink. + +Ring - looks like Bushhunter ring, ring of protection +1. +"Failed attempt to recreate my stolen ring." + +Comb - dragonbone & jade, details carved of a forest. +"Gift from the elven princess to my wife. +She never got on with it." + +Scepter - silver, fine golden filigree, white seaward gem in the top. +"Staff gifted by the merfolk of the great sea." + +Gem writing: +"Time existed before me but history can only begin after my creation." +Celestial book - tower seems to be the centre of the world & +don't know where it came from. Clues: Geldrin got a vision when reading it, +saw 6 primal elements looking down on the world. + +Geldrin's alarm goes off - see figures at the end of the corridor: +4 burly black dragonborn. They hear alarm. "The alarm's going off, +someone is here" (Draconic). + +They want us to leave, claim it in the name of their master. +Shields have mosquito on it. +Create a shield wall & we yank crowbar out. +Fight: +3 1/2 swords +4 shields, mosquito +70gp +4x tower pennies +Obsidian bird - Errol. + +Errol - last message was gnome giving our location (Rewi) +to black dragon? + +Red gem found under plinth under Celestial book: +"The floor of my ship is decorated in equal parts +with riches, tools, weapons & love" - games. + +Next room - walls & ceiling are blackened - kitchen. +Nothing in the oven. +Jar contains gem: +"The rich want it, the poor have it, both will perish if they eat it." +Nothing? - right here. +Barrel seems magically sealed - rune for the cold beer. +Contains a jar with a hand in it. +Hand is ruby eyes and has blood which stopped the alarm. + +Next room is warded & locked. +- Previously empty room is now full of books: + control earth elementals, Tor, gems, for spells, wards. + Information on how to construct crystals for magic. +Gem inside a book: +"Although I'm not royalty, I'm sometimes a king or queen, +and although I never marry I'm only sometimes single." Bed. + +Summon unseen servant in the elemental room. + +Gem, Elemental Room: +"In my first part stir creativity & in my full form I store the results." +Museum. + +Gem, Orb room behind an orb: +"You have me today, tomorrow you'll have more. +As time passes I become harder to store. +I don't take up space and am all in one place. +I can bring a tear to your eye or a smile to your face." +Memory - orb room. +Memory is: "If you got here you got my message. +Only clue is based on the layout of my rooms. +When you get inside you'll know what to do." + +Gem, Calendar room: +"I guard the start of this recipe, just scramble, hidden." +Kitchen? + +Bedroom - seems to have a woman's touch, tapestries, +rugs etc., wardrobe drawers, full length mirror, +chair, fireplace. +Compartment under the mirror - skull with 2 gem stones +rolled up paper in the eye socket behind big gem. +If you feel like lived a good life, this is the Denouement +(final part, finishing piece). + +Gem in the other eye: +"They are never together, yet always follow one another. +One falls but never breaks and the other breaks but never falls." +Calendar. + +Put all of the gems in the slots and room opens. +Purple sphere that doesn't let light through. +Void creature? Won't used as it may have been too weak. +- Seems to be a self contained barrier. +Void creature wants to be let out. +- The diviner - the one who stole his brother - the twins we killed. +Mechanical trap activates something in the room. +Magical trap teleports to the room. + +Pythus takes creepy book & Celestial book. +Dirk: sword / scepter of the merfolk. +Me: coin press / cube. +Invar: ring of protection / potion bottle. +Geldrin: spear / eye. + +Pythus gives Geldrin a scroll of teleportation & goes. +Geldrin takes eye & scrys on Pythus. +Sand stone cavern, pile of gold on top is a blue dragon +(serpent-like), reading the skin book full pages made +of cured human flesh. Seems to be at the edge of the desert +near "Salvation". + +Back to void room. +Will tell us what is in their room in exchange for freedom. +What is in the room will help release him. +Rubyeye wanted to live forever. +Went in with elven woman & dark male (Envoi). +Just a fragment of the void, but if added to the others +can get more powerful but only a tiny bit. + +Inside a key looks like pylons placed against a barrier +circle of copper and turn it - talking like barrier isn't active. +Pylon for his prison as well as another. + +Use the ruby to open the door, then destroy it. +Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. + +Go through door next to void. +4 plinths - by the door are 4 copper pylons, +look like they would go over rods/force field. +2 metal circles, runes all around (copper). +1 - steering wheel size. +1 - over a meter, stood upright. + +3 - dragon skull, Alsafur dog size. +4 - book, same lock as on the creepy skin book, +made of leather - unpickable lock. + +Possibly storing one of Envoi's rings - it was under the skull. +Skull is one of my kind - Veridian dragonborn, +dead for approx 1 thousand years. + +Envoi's ring: +- a sacrifice made to live eternal, father & daughter. + +Book writing around the edge - old dead language. +The memories & learning of Atuliane Harthwall. +Needs a powerful identity spell to learn the command word +to open the lock & book. + +Mosquitos, woodlice & moth are now around. +Rain storm. +Void will help as long as he is not detained. +- Lightning strike is seen although underground. +Try to let void out. + +Push pylons against his dome - opposite pylons seem to switch it off +very slightly. Ring by the dome turned & attracts to the pylon. +One full turn releases the dome in that quadrant. + +Void releases a circle of obsidian to control him with. +- Take his ring & book & small ring. +- Remove gems from the moon face lock. +- Head out & close the initial door behind us. 18:30. + +Massively overcast with the storm. Air is thick with insects: +moths/mosquitos, ants etc. +Circle of storm 1/2 miles wide, moving unnaturally. +Push of barrier looks like 8 massive claws pierce through - +black dragon looks to be trying to come through the barrier. +He wants the remains of his son - seems to be the skull +in the sealed chamber. + +Go back & get it. +Missing the side of his face - think Rubyeye did it, +but he may have started it by killing his son. +Place skull near barrier and he has crystals on his scales +which part the barrier a little but still hurts him. +Takes the skull & says we are even (for killing his men). + +He flies off & Thunderstorm goes with him. + +Head back to Newhaven with the cart. +Go to pub - picture of 5 hands together making a star. +Silver dragonborn behind the bar, golden rim spectacles, +halfling wait staff, tabaxi bar maid. +"Gelandril Harthwall" been here 10 years. +It's said the 5 wizards used to meet here. + +Sleep. + +Day 17 1st Jan / Tri-moon +Goblin looking for us - Scum had a message for us. +Find Scum as we leave the pub. +Apparently warrant for our arrest: +Treason - conspire against the Towers to break barrier. + +Scum - telling Elementarium to meet us with Ruby Eye skull +(1 mile outside Seaward). + +Sent message via Errol to Grand Towers saying we are going +to Everchard to put them off the scent. + +Message to the Basilisk: arrive at possible meeting point, +waiting for nearly 3 hours. +Cart comes off road with a human onboard, don't recognise. +Seems suspicious. +1 box contains Grand Towers pennies. +Council ask for him to transport to Fairshaw - The Cart +(Garick Blake). Looks like the gnome sent it. + +Dragon notes: +Silver - Harthwall. +Copper - Spruce, white. +Black - Infestus. +Veridian. +Blue - Pythus. +White - the ancient. +Red? - Soot. + +Manifest: +1 currency - Towers pennies. +1 provisions - ash jerky??? +2 armaments - spearheads, copper ends, trident heads tipped in copper. +1 waterproof papers - reams of enchanted waterproof paper, + salt water only. +1 tar. +1 tools - heavy duty, ship building? +1 misc goods. + +Should have gone out in 2 days with guards. +Invar knocks the driver out. +See what looks like Elementarium riding towards us. +Gnome seems to be trying to clear the decks. +Elementarium doesn't know about the spearheads etc. +Wants to set up a meeting with Lady Harthwall. +They have a council to discuss security matters within the dome! +Gives us the Ruby-Eye skull. + +Jerky bag contains a hemp bag - pungent sickly sweet smell, +reminds me of rose spice, but narcotic. + +Ruby Eye: +Infestus' son - spawn of evil - needed a powerful sacrifice +for a friend (Envoi). +Salt dragon leaking - worried tampering with the life may have weakened +the force. +Reinforce the barrier - if we don't weaken the barrier, possible fix +by refilling the voids, or safely disable the barrier - turn off with +the fail-safe button in Grand Towers. +Weird skin book - grimoire Noctus Caerulium - forbidden magic. + +To stop Tri-moon shard we would need to fully redo the dome. +- Create a device to repel it but barrier would need to go down to do it. +- Relationship with the merfolk? Fish men, different people, + then those invited into the barrier. Great helpers to set up barriers. +- Thinks Browning had something to do with goliath settlement + disappearing from the history (must be clues). +Green dragon seems to be residing in the area. +- White Dragon helped to build the dome. Reds, no blues. +- Elementals liked to attack & this is why the barrier was put up. +- Tower was perfect place but needed more. +- Backup plan for the void elemental stashed in his safe, + if not there need to find another. + +Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. +Tells us to get on the rune. +Appear in a lush castle room at Harthwall. Sat at head of table +seems to be Lady Harthwall; stood beside is Sister Lady. +4 chairs by the rug. + +Rip in the sky - Basilisk appears with: +Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). +Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). +Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. + +Catherine Cole vouches for me +Valkarige vouches for Invar + +Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. + +- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. +- small group of like minded to protect the barrier want to maintain stability of the barrier. + +News reached them about the fragment. + +Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. + +- Green dragon responsible for destruction of Dirk's homeland. +Rubyeye blamed Dirk's kind for helping the dragons. +It's said Verdilun dragon is shacking up with the red dragon. + +* Keeley Curdenbelly's research maybe of use (the "liver" in the desert) + +1. head to merfolk +2. get crystal from the water +3. speak to ancient one + +We passed off the twins mum. + +Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical + +- leeching elemental prisons +- Garadwal +- void on the loose +- shield crystal in the sea. + +World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. + +Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* + +Gave him the coin press and told him the coins in the cart were a create of them. + +Back to our cart. + +Head down the main road toward Fairshoes. 5:30 + +Start hearing birds and animals etc. 10pm +Find a place to camp for the night. + +Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. + +Back on the road. +Uneventful day heading to Fairshoes. + +Make up camp again. + +Nothing happens. + +Day 18 (Friday) +2nd Tan with Finnan +16 days until Timnor + +Day 19 (Saturday) +3rd Tan +15 days until Timnor + +- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. + +Go through town to the harbor to get a boat. + +* Temperature is oddly warm for this time of year and this close to the sea. + +Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. +Cabin 17. +Figure head is a wooden shield crystal. + +Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. + +Hostess lady chants and brings forth great winds and a storm. + +Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. + +Merfolk - they've never done that before. + +- Pirates - has been attacking people more recently. +- creatures that can petrify others by looking at them. + +150g if we need to fight. 5g if we don't. + +* Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. +* Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. +* Silver Dragonborn - Bard - recruited. + +Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. + +Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. + +Salinus? He calls on Salinus - worm - calls forth salt elementals! + +Kill him and his crew. + +- free passage on any of their ships and 400g +Receive Scimitar +1 - attune for water breathing. +Kairibdis' Pistol of Never Loading +1 (D8) noisy. + +Retreat to cabin with a cask of rum. + +Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. + +This is the only town on the Isle. +Turtle men seem to be the locals. +3rd road left 3 building - Sailors Rest. +Take a shrine tour - Shrine to the great Turtle. +Merfolk - the accordionman - look after the Turtles. -200g life gem. +We stand on the back of The Great Turtle. + +Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. + +Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. + +* Water gets up high on a trimoon and covers the building. +* Tell the guy about our fight with Kairibdis - Walter. +* Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 +* Takes us there. + +Old town in disrepair but one dock looks fairly well maintained and repaired. +3 houses look decent too. +First house closest to us seems to be lit. Creep up to look in. +4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. +1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. + +Both other huts have lights. Furthest one seems to be more secured. +One has a conch and calls and says kingly comes now. Wait around for him. + +Water comes back. +Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. + +11 fish people carrying things. 15 overall. +Something seems to be coming by barnacled sea cows. +10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. + +8:30 +9:20 +10:00 +Chariot back pulled 10:30 + +Creature stops and sniffs as they are being watched, tells them to search for us. + +Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. + +Need all or the plan will not work and he will be cross and he will be worse. + +- Think 6 armed creature will attack our ship for the weapons. +- go back to Turtle Point. 12:00 + +Plan to go to Freeport instead of Baytail Accord. + +- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. +- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) + +Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. + +- Tell her what happened - 10ft 6 armed thing is an Excellence. +Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. +Dunhold Cache information. + +Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. + +Recommends to speak to merfolk of Lake Azure for Dirk's city. + +Shipment - get a small unit. +Sahuagin have one of the conch's (8 in existence) Kiendra's. +Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. + +* one of the Merfolk will come with us. +Pact leader Freeport - Tiana. + +Day 20 (Sunday) +14th Tan 1012 +14 days until Timnor + +Stay in the barracks for the night. +Dirk has a strange dream about a goliath sitting +on a granite throne looking concerned, two females tending +to a dwarf, who will live but will lose an eye +(Rubyeye), fought well. *changes* Savanna scene: +dancing around a fire with a granite city in the distance. +Face in the fire ?Enwi? then Jagg? then disappears. + +Head towards ship. +(Merfolk) Guardfree - states his mistress has been +working on misdirection. +- get food brought to our cabin. +- Journey is uneventful luckily. + +Oddly a busy bustling city mishmash of styles. +Rainbow ship is docked here. +* Quartermaster loads shipment onto our cart to +take with us. + +Baroness Lavaliliere - head of Freeport. +No taxes for trade here. +Newspaper: +* Ancient takes flight - left his home for last 1,000 years + moving to Snow Sorrow. + +* Fighting still going on in the mountains near + Highden - good taking a beating. + - paper seems to be propaganda. + +Go shopping. +Esmerelda - magic item shop. + +Go to see Tiana at the Siren & Garter. + +Expecting a group of 40 to help fight Excellence. +- They are mortal & can be slain. Delights in bossing + the mortals around. + +Baroness - seems good but lets people do what they +please. Although can be random with which groups +to dispose of. Latest one around a week +ago - a group of bound elementals & gems - fire & water. +- another group selling archeological items from desert - Tabaxi + awakened etc. +Ceased the goods. + +Go find the Basilisk in a private room. + +Highden - being attacked by a Fire Excellence. + has something in for the dwarves. + +Investigated the crater & found an old lab +but unable to get in. + +* Friends on the council meeting with the ancient + around Snow-sorrow. + +* Azureside - reported perodotta & spawn amassing + in the area. + +* Arabella kidnapped again - targeted attack, + faces removed. + +* No forces available - zinquiss will meet us + at the harbour + 1 other. + Baroness neutral party, fairly reclusive + following her predecessors' ideas. + maybe something similar to Lady Harthwall but + is not a dragon. + +* Told about copper weapons - paper - Maelcolm Jethnes + & Earl of Fairport involvement in the shipment. + +* Get a dagger from Basilisk. + +Lesser rift blade - Dagger +1 - 3x charges. + 1 charge for dimension door. + 3 charge for teleport spell opens + a portal open for 5 seconds. + think of the place to + go - big enough for a person. + 1 recharge per day. + +Harthwall 2nd most +Common last name (Browning 1st). +Always been a Harthwall in +charge of Harthwall. No +Records of relative. Very reclusive +family who don't appear in public until the coronation +ceremony, only seen together to hand over the crown. +(possibly disguise self spell) + +19:00 + +Go back to see Tiana again. +get another guard - Guardfree. + +Pirates Pearls Plundered - Icky lower. +Poor Gut Refuge - +Cheeky Thimble Rugger + +Go out to the cart - Dirk notices the padlock +has scratches on it. The scratches look uniform & +pattern I recognise but don't know why. +Upside down thieves cant - "Drunken Duck" +& scratched with claws like mine. +change the markings to Everchard. +look into parking & Guardfree keeps watch. +Darker in Bugbear next to lizardman. + +Head over to the temple to give them the spear. +Female half-orc comes to speak to us - hand over the +spear & she goes to check it out with others. +Donate in exchange for help? + +Request an audience with the higher +power to discuss - won't be here for +3 hours. + +- go to get lodgings at the Pirates Pearls Plundered. + +- Crab man in charge - icky. + +- Baroness grants us an audience right now, + young for an elf. + +Room is odd - paintings are the predecessors all +wearing the same necklace (like a mayor necklace) & +lots of jewelry. + +Desert relics - thought maybe they belonged to an +old friend - long time ago - Velenth, Cardonald, +- worked for her before coming here - willingly. + +Vote 12 heads who vote who has +the ability to uphold a very specific set +of ideals. + +Other things taken off the street because +she doesn't approve of the cult. + +Will loan some forces - Proviso - she gives us +information about a laboratory. Can we get +a red gem for her, hunt but not as hard +as diamond in the workshop. +Gaping hole in the side of the building. +- Barrier - emergency systems - something else +in there - very young, cheers? she ran. +- Dragon - rumor to roost in the ruins of +Dirk's old city. + +The creature in the chamber thing? +?Goa duck? - no. + +Has the code to the circle & the safe +code whilst the defenses are up. +gives us the lab. + +* Valenth wanted to transfer herself + into an object... + +* Seems a little shook & guard helps + her out. + +22:00 + +Return to temple of Cierra. +Huntsman has returned & comes over to us. +* Huntmaster Thrune. + Ruby Eye spoke to their church often & interested + in runes. + - will provide aid to kill Excellence. + +Ruby Eye thinks we might want to get +the book back from the blue dragon +before she tries to get it, she was +Enwi's apprentice. +- Ruby Eye's best friend wanted to craft + herself into some thing & continue in + that form. + +Spear was a gift from a Huntsman of Cierra +but it's actually an arrow and there were 5 +of them taken from Cierra's last battlefield. + +Back to Pirates Pearls Plunder. + +Guardfree - will get his mistress to bring guest shells. +- Try to plan what we are doing. + +Day 21 (Monday) +6th Jan +13 days until Tri-moon + +- We all have dreams that are tinged with + cold. + +- My dream - in family home, sibling playing + happy memories, looked at town hall but looking like + a crater but in fact a black hole + pulling in more buildings. Hear a voice: + "Where is he I know you hide him" horrible + voice. Panic & turn then wake up (looking for Garduul?) Void! + +- Just our room is cold. As the ice melted, + a white dragonscale drops from the icicles. + +Go look for the Captain for a boat. +! loan the boat for 100g a day & 500g + deposit (125g each). + +Pier 12 - large group merfolk 30 + 2 litters + guardsmen 20 (Sergeant has a necklaced + emerald glowing when he talks) + zinquiss & black dragon born (Wrath). + clerics 15 & leader. +- Speak to pack leader Tiana + & other leaders gather. +Get 2 guest shells. +10 spare shells. + +Sergeant takes our +cart to the keep. + +Captain Hween + +Wrath will stay on the +other side of the barrier +once we get there. + +Pack leaders: +Shundra - Turtle Point +Kiendra - Dunhold Cache +Tiana - Freeport +Alana - Riversmeet + +Set sail - sea is calm. +Water seems clear - no noticeable signs of +him yet. + +Merfolk, zinquiss, Wrath, half clerics in the sea with us. +- Excellence seemed to have come from 80 miles away + when we were at the turtle village - so possibly + Dunhold Cache or the smaller islands around. + +& net +Make a pulley system to hoist shield crystal +onto the ship when we get to Fairshaw. + +- Wrath (Colin) middle name. + Request to look for the location of Garaduul + when he gets to Blackstone scale. + +- Island - pass it & nothing seems to happen. +- Arrive at Fairshaw. + - Boat is ceased upon orders from the Earl, + occupants being detained for Treason etc. + Diplomatic mission carrying members of the Pact etc. +- Suspect the Earl is part of the Cult. + - give zinquiss 200g for 4x healing potions. + +- Guards return & tell us to stay on board whilst + investigation takes place. + +Zinquiss returns with 3 healing & 1x greater healing (distributed). +News: +* Highden - Battles not doing well, + strengthened by dragon sightings. +* Heartmoor - People falling ill - surgeons deployed + (Perodotta?) +* Grand Towers - Justiciars leaving to the 5 + points of the penta city states. +* Provinia - locust and mysterious spiritual + event where things keep disappearing. + +Sword blessed +1. + +Day 22 (Tuesday) +6th Jan 1012 +12 days to tri-moon. + +Get called to the mess hall by Tiana. + +Construction under the water & they have made +a gate by raising the crystal up to leave +a gap. Fish shamans taking notes on waterproof +paper also. +Crystal is approx 1m square. + +Can sense Kiendra but no response possibly unconscious +but seems to be in the cavern. + +Split underwater group into two to sort out crystal +& also attempt to rescue Kiendra. + +Approach shield crystal in stealth. + +See - above our field of vision are some sharks who +seem to have spotted us. + +Fight. +- We overcome & defeat mobs at the crystal site. + Kiendra - found & rescued - very weak & tortured. + Find waterproof paper, 3x dispel magic scrolls (geldrin) + & coin pouches - 112g (give to crew). + Big Boss - Spear glowing dull blue - Doom spear +1 + returning - speak aquan. + Suit of plate mail - Plate of Hydran +1 resistance to cold. + +Boat - pretty wounded. +Other party - Tiana's - dispelled shells & got + attacked - Hunt Master missing. +Half orc priestess on the boat wants +to check on the other team for the Huntmaster. +Necklace Sergeant wants to come with us. + +Go over & Huntmaster fighting an Excellence +both very injured. +! Deed Excellence! + +4 mermen +all mermaids +4 clerics +6 guardsmen +} survive + +* Moor up by Dunhold Cache for the night. + +Merfolk recover our dead & lay on the +deck - Priests oversee & I thank each one for their +help & sacrifice. + +Pull up to the cove - lookout shouts +there is a vessel already docked. +Chariot with water elementals chained to +the boat - Excellence's boat. + +- We row to shore to investigate. +Mother of Pearl named Chariot, no other signs of +movement. + +Dirk speaks to elementals & they want +to show us where the excellence live, +will come with us on the big boat. +! Take the chariot back with us 8-10kg. +Zinquiss will sell it at an auction in 7 days, +have the address for the Freeport auction house. + +Day 23 (Wednesday) +7th Jan 1012 +11 days to tri-moon. + +Go to Excellence lair with Merfolk - Pack leader Alana. +* Water ebbs & flows like a tide in the underwater + cave. +* 20ft long crystalline sculpture of a dragon - base has + runes glowing. +* 3 cages & barrels. + 1 cage contains a merfolk - but looks different - green not blue. + Alana seems to revive him & takes him back to the ship. +* Chests seem to be laced so waterproof - contents may + not be openable under water. + open one & contains white powder which I inhale. + Bas, Athal - Salamanders - & Arabic writing. + White dragon circling around the dome. + Rabbits - whole room turns into a black void. + +Two blue eyes in the darkness coming towards +me & really cold & back in the room. + +Other cages - in the middle of the cage they see snail +with a gleam of metal which is a jeweller's chain +attaching it to the cage. Guardseen says the +snail is a bad omen - its been drugged. +Back to ship. + +Merfolk - abducted from beyond the barrier, +him, his friend & wife. Woke up one day +& they were both gone. Wife is nobility +in their pact. (Snewl?) + +Hunt master dispels magic on the snail & +a mermaid appears. +Empire of their people outside of the barrier +captured while on diplomatic mission to the city +of Onyx, doesn't trust them because war between +them & the Salt elementals. +Princess Aquunea. + +- City of the black scales has a "door" into + the dome - Infestus can't use it as too big. + Payment to access is a Grand Towers penny. + +Check out the barrels etc. +- sickly sweet medicinal - potion of magical energy + regain 1 slot - 1 hour. +- silk & parchment interleaved - runes. +- 2x white rose powder. Tiana gives us 1,000g. +- metallic censer (incense holding burning device) + silver? religious? water god? Censer of Noxia. + Ability to enrage & control water elementals. + It's active. + +* Send message to Basilisk. + +Arrive back to Freeport - seems very cold. +Much colder heading back +down to Freeport. ?Rimewalk issues? + +Snowing over the sea, everything very dark & snowy. +Guy shouting the End is Nigh - moon is crashing down +into the city. Ask him which city & he then "it bothered +he dreamt it." +22:00 + +Lots of people having dreams. +Gnolls attacking a village requested backup from +Everchard & Fairshaw. +* Underwater - mermaids - "big cat with metal + wings attacked it." +Happened a few nights ago - same time as ours. + +Head to the Castle to see the Baroness. +Necklace is removed from the Sergeant & he just +walks off. + +* Mermaids - Having a meeting in 3 days at + Baytail Accord to discuss what happened. + We can go. + +The dreams seem to contradict each other, +possibly from the Ancient One - so could happen. +Huntmaster - going to Grand Towers to speak +to the Hunt Lord. +* Justiciar in the city. ?Looking for us. +* Baroness gets us into the Drunken Duck - secret in + Air wise from Jewelry District. + Written on our padlock, on the cart. + Cart still ok in the castle. + +Baroness Master - Valenth Caerduinel. Necklace. +Sister is a ring. + +Go to Drunken Duck. +All the walls are covered in pillows & ?soundproofing? +Red dragonborn +2x tabaxi +Automaton +2x halfling & gnome +} clientele + +Gave me (Axion) Schnapps from the Brass City! +Barman says only the best for the "Little Finger". +He's intrigued by why the 3 best members of the +Underbelly went on a mission. + +- Tabaxi Whisperers laden with 'Dev'. + Traders 'Keeps' from foot to foot. + +Faint noise through the floorboards, raised voices? +Automaton keeps talking about a factory. +Wants to know where the labs are. Tell him +all by the barrier. Cuts down his search radius... + +- Get a private room to discuss matters. + - Send message via the underbelly to advise we + won't be going to Baytail Accord. + - Will go to desert laboratory. diff --git a/tmp/party-diary.txt b/tmp/party-diary.txt new file mode 100644 index 0000000..b81b40c --- /dev/null +++ b/tmp/party-diary.txt @@ -0,0 +1,267 @@ +Pentacity Party Diary +===================== + +This diary is a story-based reconstruction of the campaign so far, drawn from all-processed.txt. It keeps the chronology intact while making the events, people, places, items, clues, factions, and unresolved mysteries easier to search and index. + +Everchurch: The Missing Pigs and Broken Memories +------------------------------------------------ + +The party began in Everchurch, a town of roughly three thousand people surrounded by swampy woods, orchards, breweries, and fruit trees. Even though it was winter, one orchard was in bloom. The strange trees had dark bark, blue leaves, and deep red fruit, and were being pollinated by bees slightly larger than normal. The town had no obvious districts, but a larger manor house stood in the centre. + +The first important gathering place was the Cider Inn Cider, a small inn with a beeswaxed floor, cider, and a half-elf musician playing a lute. The local names established early included Father Burnun, a prize fighter; Gelissa, a half-elf; Oric, the innkeeper; and Gristak Brinson, mayor. The party included Invar, a greying paladin-looking figure; Leonard Dirk; and Geldrin, a gnome with wild brown hair and glasses with no glass. + +The first job came from old John Thornhollows, a farmer whose pigs were going missing. Three pigs had vanished recently, but the ledgers only accounted for part of the losses. John had a group of around thirty pigs, yet the details did not line up. His daughters were remembered as Annabel, Isabelle, and Cumberella or Clarabella, but even these names shifted. Five keys on the bar became four with nobody knowing how. The party learned that John's daughters kept the best books and would pay 1 gp each for help investigating. A shepherd might also have missing sheep. Bess had a missing cat, and there were strangely no rats either. + +Everchurch had recently built a hostel to house homeless people. It had not been enough for that purpose and was also being let out, making the inns unhappy. The Earl, a half-orc in black clothing covered with bird motifs, was tied to the hostel and to an anti-tax system. Funds from the hostel were apparently going into the anti-tax, and there was a woman who slid 2 gp to someone for the anti-tax after being told she was eligible. A census in spring charged 3 cp per number, payable in the morning. + +Several small facts began pointing toward missing people and tampered memory. Bushhunter, a registered mercenary and taxidermist, had come to town two weeks earlier and was known for tubes and pipes. The winter apple trees had started fruiting around the same time. Invar had delivered weapons, but the militia was almost gone: only about five were left, despite an order for twenty weapons and ten suits of armour. Nobody could remember the old militia properly. At the jail, the location itself had changed, now sitting where the hostel used to be. The jail had two empty cells, Sheriff Jeremia, a scarred law officer, and two deputies including Bob. There were no official reports of missing people, though there had been a home theft a week earlier and Bushhunter had recently sold giant bugs in frames. + +The militia records were deeply wrong. Forty-three people used to be hired, and a statute charter required a sufficient militia because Everchurch was close to the barrier. The broader figure noted was 1,100 militia for a 45,000 population, and a check was due in a month after the last visit five months ago. Nobody remembered Gelissa except Geldrin, and Invar only remembered her briefly. These gaps in memory became the first real sign of supernatural interference. + +The party then saw a person get up and walk out. When chased, the person's hood fell back to reveal a face stitched below the eye line, a mouth missing a row of teeth, bone-splinted fingers, and a split tongue. He had Malcolm Donovan's birthmark on the back of his right hand. Malcolm, originally a human male from Albec who had been putting up fences at a farm, had been altered by magic. Someone called Guardwell, or Garadwal, was named as the Terror of the Sands and nightmare of the darkness, a being said to consume souls. Stories connected this figure to a sphinx who learned dark magic and experimented on itself. + +When Malcolm was taken to jail, the town's memories shifted again. Jeremia remembered the third Thornhollows daughter, Gelissa, and the homeless people. The party were made deputies and given badges under Sir Alstir Florent. A mysterious fifth person, a human warrior, had been helping the party at the bar and was remembered only up to a fishing trip, around the time Dirk saw a rat. + +Thornhollows Farm and the Swamp +------------------------------- + +On Day 2, the party received the census for John's pig farm. The fifth name on the ledger had been scribbled out and dismissed as a mistake. The census listed Sarah, age 47; John, age 50; Annabella, age 18; Isabella, age 16; Clarabella, age 14; and a connection to the sheep farmer's son. Paternal grandmother Bella was also noted. The farm had two sounders of pigs: one matriarch, three breeding boars, two breeding sows, one sow with seventeen female younglings, another with twenty-one female younglings, and no males. The property included the farmhouse, three orchards, a stable, a vegetable garden, two outbuildings backing onto a hedged sty, planned employment for three hands, and grazing rights at the edge of the swamplands. + +At the farm, the party passed ravenhound-like dogs and met Annabella, who was walking them. The dogs were called craven dogs, a breeding pair with mimicry noises and puppies. The younger sister was on the porch, and three puppies were on pillows near grandma. The books were accurate until about a month earlier, when unexplained scribbling and removals began. There should have been fifty-seven pigs; records suggested fifty-one; in reality there were about forty-six. Six pigs had gone missing over the last two weeks, three recently and three a week earlier, all overnight. Six more were missing in a way the family did not remember. The inconsistencies began around the time Sarah left, and a black cat had gone missing about a month ago. + +The sty had a large dense hedge and no signs of digging through it. Dirk found large divots like frog footprints, suggesting an eight-foot frog. The ravenhounds had ribbited at the dark. The family offered 100 gp to clear the frogs and had already paid 50 gp. The party went into the swamp, felt watched, saw massive moths, fought frogs, killed two, and found bones that appeared to belong to pigs and sheep. Back at the farmhouse, Cleara gave them a tonic allowing use of hit dice, noted as a Potion of Recovery or Succour. + +Walter's Farm, The Chorus, Bushhunter, and the Hostel +---------------------------------------------------- + +On Day 3, the party went toward the sheep farmer. Geldrin accidentally cast a spell while sitting on Dirk's shoulders, tearing Dirk's shoulders apart in a way reminiscent of Malcolm's wounds. After a short rest beneath circling goldfinches and starlings, the party found that the swamp seemed to be trickling into the farms. + +At Walter the sheep farmer's farm, a man in his thirties appeared to have been trampled by a herd of sheep. Four sets of human-sized prints were nearby, one going to and from the barn. The farmhouse door had been latched from inside, the table was smashed, the fire had gone out the previous day, and the upstairs showed a double bedroom and two sets of singles, probably for an older couple. The barn held rows of unnaturally agitated sheep heads and a horrible uneven bleating. A massive pile of melted sheep broke out and was killed. In the barn, the party felt memories being taken. A woman was found dead in the corner; it appeared she had lured the creature into the barn and someone had locked them in. The party connected this to Malcolm and Isabella going missing while nobody in town remembered them except the party and Malcolm's wife. + +Following the birds, the party found The Chorus: an eighty-ish woman in a swamp hut covered in bird droppings, with branches and birds inside. She was blindfolded and her mouth was sewn shut. The Chorus had been having dreams that were not her own. Her apprentice had left. She explained that the magic at work changed memories into convenient forms, which made some memories harder to wipe if they had external anchors, such as Sarah being known by The Chorus. On the Robins' Day, birds had seen Sarah by the hostel, distorted. The Chorus also said someone was moving through the swamp using gas that hurt the birds. She pointed the party toward Bushhunter and toward documents Geldrin needed. + +In the marketplace, the party saw Bushhunter's operation: frames, a suited halfling, an ogre, barrels with tubes and pipes leading to an ear-funnel crossbow, and a masked person with a wagon pulled by a cobra-koi-like creature. The party snuck up, broke the ogre's equipment, and let the gas out. Bushhunter promised to hunt out of town, ideally on the other side of the river. The party learned that Magpie or Xinquiss could be found at the Hatrall great bazaar. + +At the sheriff's office, Jeremia and the deputy sheriff were armoured up, with citizens in patchwork armour including a bear, tabaxi, human, and warforged. The office had news of Walter's attack, a death threat against the Earl with a 500 gp bounty, and Cromwell the forester seeing wagons near Walter's farm. Jeremia and Drang were assigned to protect the Earl, while Hannah and Bob went to the outskirts. The party received a shock dagger. + +The village was quiet. Two livestock-like wagons were outside the hostel, smelling of pig manure and human faeces. Dirk saw rats again, and they attacked. A pig beast broke out of a cart and was killed. The party sabotaged the carts. Two people arrived with four horses: a woman in her fifties with too many teeth and a large mouth, possibly Sarah, and an eighteen-ish boy, possibly the sheep farmer's boy. The party found or noted three patrons or labels: Crimson, Bovine, and Mirthis Fizzleswig; a shortsword; a silver sickle; random herbs; and churches of Tor and Tarber. + +The victims and cart were taken to the church. Many could not be saved; one boy was briefly alive but then died. Brother Fracture examined the cart and remembered that all the militia had been going missing. The party wanted to put victims to sleep and needed Bushhunter's help. Bushhunter, staying at Cider Inn Cider, had a ring with a purple gem and runes needing identification. In trade for his magical hearing powder, the party returned to the cart and saved five people into the church. One was Gregory, a homeless man who remembered being taken by militia and waking in the church after being in the big militia house. Geldrin bought a compass box whose needle pointed to Bushhunter. + +Town Records, The Earl, and the Rescue of the Hostel +--------------------------------------------------- + +On Day 4, 19th Dec, wider problems were reported by town crier or news: Seaweed water spirits were moving; fish men beyond the barrier had massacred people near Dumbold south; stone giants were missing under new leadership by Hyden Goldensoul; cold air froze the River Rhein between Snowshore and Highland Edge; an ancient unknown thing stirred from slumber; gnolls attacked a restored point and cows were missing; azureside cherry crops were blighted, stopping Cereza production; Isabella Nudegate had a 500 gp reward after going missing en route; a grand midwinter festival was due at Brockville Spring; a Peridobit cloaking death was spotted fifty miles eastwise of Arrowfeur; and there was no mention of pigs. Dirk's flower from a tiefling girl remained fresh due to enchantment. The pig carcass from the road was missing and singe marks were present. + +At the sheriff's office, Malcolm was being framed as the Earl's half-elf steward behind a plot to kill the Earl, but this looked like a face-saving move with no evidence. Something was wrong with the Earl. He had asked the blacksmith to increase weapon production even though Invar had just delivered a large supply. The steward said the Duchess of Harthwall had sent him after the previous Earl passed. The Earl had become more extreme in his views. Books showed twenty-seven militia, already only half the required amount, but only four were present. Lawrence Henderson, the exchequer, handled wages. Ledgers went to scribes at night and returned to the Earl at 9:00. + +The party picked locks to access the Earl's chambers and scribe records. Ledger copies revealed that Isabella had disappeared two weeks earlier and Malcolm six days earlier: Malcolm's name was scrubbed from the ledger but not from the copies. Visiting tourists had sought permission from the Earl to take a cutting from the Everchurch tree and were staying at the beekeeper's; this group included Elfin Meadowmaker and two bodyguards. A half-elf remembered Sir Alistair. + +Lawrence Henderson panicked when asked about militia wages. He blamed the scribes and had been taking payment for the missing twenty-three militia. He gave the party 50 gp to keep quiet and offered more information if needed. The town had eight carts, sixteen horses, sixty swords, and only fifty-eight days of town finances left. A safe held a black velveteen case with gems, three treasure chests of gold, copper, and silver, and two bags of platinum pieces totaling 6,000 gp. The Earl's document file was empty, though someone remembered documents linked to Vicmar Danbos. + +Brother Fracture reported Gregory was doing well, though the church had no way to communicate with other churches. Gregory remembered December beginning, then a blank from around the 7th or 8th until waking in the church. He remembered two militia, Stonejaw and Ralfrex, taking him to the hostel. Other people in the hostel included a goat lady from Bagnall Lane. The militia house had been open about a month and still looked like a jail. + +The party marked their cart with a sheriff sign and returned to the hostel. The stone stables held two carts and four horses; the gate chain had a padlock but was not locked. Invar broke wheels, the party released horses, and magical missiles were thrown at them. Inside the hostel, one enemy was Gelissa, marked on the side of her face. The party killed the other guard and subdued Gelissa. Invar restored her mind and wounds, removing corruption. The hostel's first two cells were empty, but around ten townsfolk remained imprisoned. Invar created a lock for the back door. Brother Fracture took Gelissa, militia, and the cart to the barracks to use as a base. + +The party chose to go to the barrier rather than the swamp laboratory. They rested that evening, but a pigeon lady appeared near the camp during third watch and they did not get a full rest. + +The Barrier Observatory and Joy +------------------------------ + +On Day 5, 20th Dec, the party approached the barrier and saw two large carts. Cromwell the ranger was injured, with wounds resembling the accidental damage Geldrin had done to Dirk. Tracks suggested heavy steel boots, possibly a goliath in full plate or Core. The party were halfway between shield pylons. The carts were empty; a large group had gone toward the barrier and a smaller group toward the swamp. Tracks looped back toward town, looking like a single goliath. + +The party followed the larger group along the shield and found people gathered near the barrier. Dirk felt watched, then the party was attacked by a grubby sheep-farmer-like creature. They killed it, eleven militia, and eight townsfolk, while another eight townsfolk were tied up. A black dog thing disappeared after being killed, but the maggot stayed. When the maggot died, it shrieked and the remaining townsfolk attacked. The party located and subdued a halfling girl. They rested, hid the cart, and learned that two twins had been commanding the victims: one twin had gone to the swamp, the other to the barrier and was killed. + +Following tracks toward the swamp, the party found a clearing at the barrier with an ancient stone observatory. It had a marble dome pressed against the barrier and a huge telescope passing through the dome and barrier. It had about ten rooms, no windows, and was roughly a thousand years old. Geldrin's compass pointed the same way as the tracks. Inside, the party found two plinths, one empty and one where Core seemed to have been dismantled. A head clattered off and a rat ran through a door. The library was missing its "T" shelf in Astronomy, likely Tri-moon material. A portrait showed a well-groomed tiefling holding a baby girl: Vixago Eros, one of the five who made the barrier. + +Recent paperwork included star diagrams. A forced drawer held a rabbit/deer teddy with a gold rune-ring inside. The ring resembled Dirk's. A vase bore the message, "part of me can be with you while you study, all my love - Joy." The teddy ring, Mr Sleeps, read, "a pact in darkness made in sorrow to bring back Joy." Dirk's ring read, "a bargain struck in shadow for souls to be held in infinity." Notes measured the Tri-moon before the barrier and twenty years after: before the barrier, the Tri-moon was twice the size of the other moons; now it was four times as big. Geldrin took the notes. The party also took an invisible cloak from a hatstand; objects touching the stand disappeared, as Geldrin discovered when Dirk put him on it. + +On Day 6, 21st Dec, a dagger and a clean handkerchief marked "J" fell to the floor. A teleportation circle room had a bronze feather like the one carried by the other twin, but stronger. Nearby were empty cages, an empty operating table, boxes, guillotine rope, and blood and decay smelling of sea and sulfur. A red door led to a portrait of a young tiefling holding a wolpertinger. In the kitchen, an unused well bucket revealed a horned humanoid skull hundreds of years old, with horns matching the girl's race. A trapdoor beneath an owlbear rug led to plinths with Core's suits; the password prompts rejected "Joy" and "Tri-moon." + +The party found a potion room with a cauldron of fresh clear water and a construct Geldrin called Powerloader. A maintenance door was trapped with electricity, and the building was protected by the same force as the barrier. In a bedroom, a trapped chest paralysed Invar and Geldrin. A construct killed someone upstairs, then the party killed it and shocked the paralysed members back. Footsteps moved around the guillotine room and Joy's room; four guards were eventually killed. + +In Joy's room, the party found a mahogany box with a rune lock, a wardrobe with three empty hangers, and a trapped bedside drawer containing medical equipment, syringe, crystals, ink, powder, a bag, herbs, an empty flask, and three full flasks. Two were recognized as Mirthis Fizzleswig and Succour; one was unknown. Joy's diary showed she had been bedridden about a year. Robots cleaned and fed her. The last page said she felt rough, did not know how much longer she could write, that Daddy borrowed Mr Snuffles again, and that Daddy's friend kept asking about the rings and was creepy. A trapdoor under the rug led to a secret den with a beanbag and toys. Dirk saw visions of Joy saying she should go back up so Daddy could see her, that she felt better but Daddy's creepy friend was here, and that she should go to her hidey place. + +Upstairs, the dome held the huge golden spyglass and crystals around the telescope that broke or focused the barrier. A creature sat with its back to the party, accompanied by two ugly winged eight-foot humanoids and a worm/dog-like creature. It said its master had asked it to observe the Tri-moon, that it had no desire to fight since its counterpart was dead, and that the worm was useful and rare. It claimed the townsfolk had been used to attack the barrier. A brass feather could communicate with its master, named in the notes as Vann or a horrid mechanical hellraiser sphinx creature. The creature spoke of coordinates for triangulation, armies striking next month, freedom from the dome, and the possibility that magic through the barrier would draw down a moon fragment that could destroy Grand Towers and the dome. The being it served lived outside the barrier. The phrase "freedom from the confines of everything" stood out. + +The party asked what would happen if the creature disobeyed the sphinx. It would be found through the pact made in darkness or sorrow, possibly connected to finding Joy. The party learned the Tri-moon is a crystal. The sphinx had been cast out for practising unsavoury magic and was trying to identify two attack locations. The party rejected joining it and killed the creatures. The worm died and seemed to have mind-control powers. + +The observatory contained calculus and notes on the Tri-moon, biology texts, incurable disease texts, and a book on Slowbane, a rare heavy-metal-like poison whose symptoms matched Joy's diary. Shield-pylon cities sometimes suffered a similar sickness, possibly tied to shield crystal colour; sufferers improved when they came to Goldenswell. The treasure included spices, wine, cherries, parchment, platinum, gems, silk, Saja digel or fire from Azureside, and a magical Copper Dodecahedron that Invar identified as connected to spell facts. Geldrin discovered the lamp in Joy's room was a gem. The party levelled after a long rest. + +Further investigation showed the chest was highly magical and designed to paralyse anyone other than its owner. The kitchen skull had a deformity in the back of the skull and looked about a year younger than Joy, roughly seven years old and possibly a thousand years old. The observatory had been built at the same time as the barrier, specifically to observe the moon. Caverns below had been found and used for its construction. The summoning circle connected to towns and cities to import materials and supplies. + +The party sent a message to Bushhunter saying that townsfolk had memories, creatures were slain, they were at the observatory, and Geldrin had a message for Grand Towers wizard Brownmitty. In the waterwise maintenance area, they disarmed the door and found the local barrier directed around the observatory. A decayed blanket and pillow suggested another Joy hiding place. A locked trapdoor with a hollow handle opened using Geldrin's shield crystal shard. + +Beneath were long stone steps, five lights, a door painted with white flowers, solemn music, and water fizzing through the barrier. A shrine on a riverbank held six graves all marked Joy, with everlasting flowers. One had been disturbed. The graves recorded Joy dying in chamber, at age three of lung infection, at age two and a half of unknown complications, at age five with nothing written, at age nine from poisoning, and at age seven from a birth defect with bones left open and raided. + +Following the stream led through oversized mushrooms, huge insects, a cave, and eventually a lake with massive lily pads, frogs, and a flying sparrow. A magical object or presence lay in the lake centre, but attempts to use "tris" and raft to it failed. Back at the observatory, walking around directional versions of the place changed the building. Earthwise had a flower bed instead of a bed and no barrier split, then later dead flowers and a restored split. Firewise had statues of Throngore, god of destruction and decay, and Igraine, goddess of life and harvest; later it had a metal trapdoor to a chamber with eight glass chambers, six empty and two full of viscous liquid. Airwise had missing corridors, bleeding runes, and blood that was slightly acidic. Waterwise had doors, pipes, and consistent layout. + +The Firewise chamber included a featureless human statue with no genitals and an outstretched hand. Dirk joked about hanging a coat on it; Geldrin tried a ring and it fit perfectly, then Dirk added his. A diary suggested attempts to perfect a clone spell matching the Joy graves. The rings glowed. Geldrin copied an illusion spell from an eyeball-fronted book. Looking at the moon with crystalline refraction showed a smaller moon fragment much closer than the moon, halfway between planet and moon and locked in sync. The party believed the moon shard would take another thousand years naturally, but magic through the shield pylons would speed it up. Barrier attacks and conjunctions with other crises seemed to draw the shard closer. + +Return to Everchurch and Journey to Seaward +------------------------------------------- + +On Day 7, 22nd Dec, the party returned to the cart with the box of copper, made a lock for the observatory front door, and took Cromwell and Isabella back to town. Isabella was restored and seemed confident. On Day 8, they returned to the barrier to recover the remaining eight people, whom The Chorus had been protecting. Geldrin painted the wagon white, the party headed back to Everchurch, and birds followed. On the way they met armoured Harthwall militia from Provith, with stag-and-dragon livery: Arith the healer, Hthiman, and an elf woman. The party told them about mind-wipes, citizen theft, missing militia, and attacks on the barrier. The militia reported to Lady Thyrpe. The healer partly restored the townsfolk, though one tentacle arm came off leaving a stump. + +On Day 9, 24th Dec, Everchurch was busy and panicked as memories returned. Brother Fracture oversaw reunions and healing. The Earl had gone missing, the sheriff had taken over and called for help, and Core had returned to town damaged, locking himself in Peel and Core with Mr Peel looking after him. Core could only say "Core da," which Geldrin interpreted as "Core damaged." A repaired Core arrived in the post one day later with only the word "GUILT" on it. Mr Peel had not ordered it. Peel and Core had been open five years, and "The Guilt" was identified as the Earl of Brookville Springs. Harthwall ladies wanted a meeting, but the party were heading toward Seaweed or Seaward. The Basilisk was involved and brought old Grand Towers pennies, annoyed that one had been donated to the church. He advised staying on the good side of mage Justicars in Seaweed. + +On Day 10, 25th Dec, the party travelled with Isabella and stopped at The Wayward Arms, a four-storey trading-post inn with a merfolk sign. A play and music were underway. Two dangerous-looking half-elf ruffians entered, followed by two halflings. Someone hung a giant moth picture. Mirth, a smarmy halfling ringmaster type and famous alchemist associated with Mirth's Fizzleswig, appeared and conjured pastries, wine, and bottles. The party noted to return in three days. Half-elves Yadris and Yadrin were overheard by Dirk saying something about taking their minds off tomorrow; they were problem solvers sent by a lady upstairs. + +On Day 11, 26th Dec, announcements reported high alert in the Pentacity states after barrier attacks, Justicars moving to major settlements, Shields of the Accord reporting an army moving airwise led by the Baron, loggers missing at Pine Springs, heavy blizzards blocking Rimewatch, goliaths from Firewise deserts seeking refuge in Dunenseed and Sandstorm, a six-armed air monstrosity breaching the barrier, gnolls active at Borsvack, a Riversmeet menagerie break-in, Everchurch's villainous Earl ousted, and Hartswell and Goldenswell armies clashing near Hylden. + +The party reached Seaward, a city of perfect circular rings with a central coliseum used for horse and dog races. Roads and buildings used marble-like stone with dark blue veins. Wagons on the airwise path hauled this material. The shield pylon stood outside the main walls. The population was mostly elves, dwarves, and gnomes. The city was run by the stonemasons' guild. The party parked the cart with Payne's horsebreeder and visited The Rotund Rooster, run by Tiffany. Roads were closed by winter; fresh water had to be ordered in. The nearest inns included Water by Earth, Waterwise, and Night Candle on Road 7, third ring. Rumours said water elementals could walk through the barrier. The water problem had lasted twenty years. + +At Seaward, racing and local colour included the Chunky Chicken Cooker sponsored by the Rotund Rooster, Payneful Gamble, Thunderbelch, and other race entries. A halfling asked Invar whether the party had skulls for his green-skinned goblin master, who paid well for clever people's skulls. At Night Candle, the party learned the barrier was supposedly built to keep elementals out, but rumours said they could pass through. A goblin peered into Dirk's room at 3 a.m. + +Seaward Pylon, Isabella's Abduction, and the Salt Prison +------------------------------------------------------- + +On Day 12, 27th Dec, the party inspected the Seaward shield pylon, a gold ring with a crystal set in a claw and runes around it. The barrier flickered for about one second near the pylon, often, supposedly from Dombold Castle, but only over the past few weeks. A disturbance at a temple involved guards carrying out an elf woman under an arrest warrant for public indecency and corruption. A priest believed the council had fabricated charges and that the Architect, Ilmen Thion, was using dark magic to make himself smarter despite worshipping light gods and having Alutha on his left femur. + +At the races, the party lost several small bets but won 9 gp later. Entries included Big Bad Beauty, Wimpy Cheese, Wove's Gravy, The Galloping Salesman, In It for the Sugar, a sphinx-style stonemasons' guild racer, a unicorn, Payne horsebreeder's horse, Rotund Rooster's gryphon/chicken, a nightmare from Night Candle Inn, a wooden barrel from Bud barrel makers, My Missing Hangover, and Truffle Hunter, which won with mice. + +The skull-collecting goblin led the party to a rat-dropping-filled house where he had three skulls and needed five to meet his master. Brother Cashew at the fire temple, dedicated to war, justice, and hunt, said water elementals were not killing but deputies had been found drowned near cliffs with fresh water. Rivers and lakes within ten miles had gone bad. Public records were available at the town hall, fourth ring waterwise. + +When the party went to find Isabella's friends, they found a middle-class house with blood on the parlour floor. Two halflings hung by their feet. The male's intestines were spread over the floor in a pattern, likely divination. The female's body was upside down but her face was right way up. The door had been forced with engineered strength, a candelabra knocked over, no active magic remained, and the divination resembled Everchurch magic. A six-foot clay-like gargoyle arrived, dropped a bag and sopat, and flew off with Isabella. She said it belonged to her aunt's family guardians. + +The militia took the party to the council. They stored weapons and medical gear before meeting the Elementarium, an elf who admitted the pylon was being interfered with. He needed the Justicar gone because she had ulterior motives and wanted access to the shield pylon. He offered 2,000 gp if the party kept quiet, 500 gp up front with the rest on completion, and 200 gp extra per water elemental. Flickers lasted five minutes to two or three hours, came only between the sea and Seaward, not from Everchard or Dunbold Castle, had begun about three weeks earlier, and differed from the Tri-moon barrier attacks. He suspected a pirate: a human or merfolk captain with a beard, unseen crew, disappearances, magical disfigurements, and possible rodent-style magic. He warned the party not to anger Peridot Queen, his aide, who would help. + +At the pylon, Gherion the sage showed the log. The flicker had been worsening for two weeks, with random outages up to three seconds, often around 9 a.m. and never near midnight. The crackling moved horizontally toward the pylon and did not go past it. The crystal was clean, covered in tiny runes, and showed no tampering. Geldrin touched the barrier with his crystal shard and caused a more intense version of the flicker. Iaxxon, a quarry guard, had seen water elementals rush past him as though he were merely in the way. + +On Day 13, the party followed the barrier. Ripples worsened farther from the pylon, though frequency and duration did not change, suggesting the pylon brought it back under control. The land was dry and loose. The Peridot Queen arrived as a tall green elven woman with black hair and extravagant appearance, stroking a party member's face and joining them. She had seen all five pylons and believed the barrier issue originated near the cliffs. The party reached cliffcutter territory, with sheer drops, dangerous water, recent cutting close to the barrier, and little wildlife. They slept in a tool shed. Morning brought louder waves and sea creatures rushing up the cliff. + +On Day 14, elementals came over the cliff and reformed as bulls, fleeing away from the barrier. Peridot Queen arrived with wings and descended with Geldrin and Invar in a lift one metre from the barrier. A human with a scar was repairing planks behind a danger-of-collapse wall. Peridot Queen paid him an old copper coin, and he transformed into a green dragon. He said nothing like this had happened for thirty years, until beasts like bulls shot from the disturbed part toward the wilderness shrieking like banshees. A gnome mentioned a candy smell and legs, probably lying. A dwarf had barrier duty and found a small crystal on the last shift. + +Above, a differently dressed human pointed the miners toward the party and walked toward the barrier. Four dwarves and a gnome attacked. The gnome broke a blue rock and summoned a small elemental. One attacker, when revived, said, "He's coming, Terror of the Sands is coming for you all," before being knocked out again. The attackers had 5 gp and old copper coins; the gnome had two more blue crystals. The party suspected the human had come through the barrier near the origin point. + +Invisible Joy appeared to Dirk and said they were in pain and it burned, asking for help. Following salt trails from water elementals, the party reached a lush area seven miles from the barrier with insects, a shallow river ending in a waterfall, and water elementals in the river. One elemental begged not to be hurt, saying others had taken it, that it had escaped through pain to the closest good water. Geldrin freed two elementals from blue crystals. They described a painful hole in the sea, a death dome, elemental stealers trying to free creatures trapped underground, a poisoned crystal powering the death dome, and Garadwal being one with moon rock but escaped. They mentioned a scaly blue-grey dragon with webbed fingers, a four-armed trident-bearing poison-water being, and Garadwal with tridents. They described eight beings used as batteries and called the barrier enslavement. Diagrams included earth, ooze, water, ice, air, magma, lightning, smoke, fire, sand, salt, and other quasi-elements. + +Back at the quarry, behind two missing lift panels, the party found an excavated passage into a thousand-year-old underground structure. An old gnome emerged, accepted a coin, and recognized "Underbelly" truce. He led them to an ancient prison: corridors turning left six times, a huge metal door with a dragon holding a ring, and beyond it a smaller barrier containing a massive salt dragon sweating salt into the earth for twenty years. Copper pylons had been removed, salt covered the runes, and a room with four curved copper pylons had been dismantled. The dragon had already been seeping salt. The party were told to keep the Justicar away. A big black dragonborn, Turquoise's boss, arrived. The cult was looking for a laboratory. Basilisk later said there was a similar laboratory twenty miles earthwise along the barrier. Basilisk also identified the Black Scales as a mercenary group working for Infestus, the black dragon. + +Elementarium, Brutor Ruby Eye, and the Elemental Truth +----------------------------------------------------- + +On Day 15, 30th Dec, the party returned to Seaward and spoke with the Elementarium. He explained quasi-elementals: earth, water, fire, air, light, and dark combined into ooze/slime/life, salt, metal, magma, smoke, void, ice, and storm. Salt and water were separate, and the problem was pollution: the salt elemental was poisoning the water elemental. He wanted Grand Towers persuaded so the Justicar would leave. Rhonri or Revir might have an obsidian bird to relay messages. + +The Elementarium used a dwarf skull to answer questions about Garadwal. The answer: the information was not for the party's kind; Garadwal was imprisoned in the Prison of Sands; Brutor Ruby Eye was a troublesome being and wizard of great power. In the skull room, the dead explained that if Garadwal escaped, it would be very bad. The barrier would be weakened by losing one of the eight, and Garadwal was the only void entity the builders could find. If any one escaped, it would be him. Destruction feedback from his prison would damage the others. + +Geldrin told Brutor of the Tri-moon shard. Brutor knew of the first crack: Envoi had tampered with the containment device for his own purposes, and if something happened to Envoi it would be bad and cause the crack. The wizards disagreed on entrapment, but all agreed Garadwal had to be contained. Ooze was good. Ice and storm had been placed in the same chamber due to difficult land. Possible solutions included fixing sigils or reversing polarity. Brutor had been killed by a black dragon and became a demi-lich. The password "Spinal" belonged to Brutor; "Winter Roses" may have belonged to Envoi. The open list at this stage was halfling killers, eight things linked to poles, pirates, and elementals. The party received a 200 gp down payment and stayed at the Night Candles. + +Ruby Eye's Laboratory +--------------------- + +On Day 16, 31st Dec, the party saw Rewi Lovelace, a messy gnome in town hall, who produced an obsidian raven named Errol. Rewi thought the Justicar caused more problems than she solved and was working on the cliff pulley system. The party retrieved horses and cart, went earthwise toward Newhaven and Stonebrook, refilled waterskins at Newhaven's anomalous freshwater well, and searched near the edge of salted land. An obsidian raven later appeared wanting the party's location for a meeting with the Justicar; the party refused. + +Ten miles out and one mile from the barrier, they found a recent charred camp, tracks of five or six searching people, acid corrosion, and swept-over blood speckles. Geldrin followed the compass to a weak signal and purple glow about thirty feet down, finding ten-foot stone walls and a door. The password "Spinal" opened it. Inside, two dwarf-form golems guarded another door, also opened by Spinal. + +The lab included a lecture hall with benches for twenty to thirty, a jagged rock horn statue of Tor inscribed "Tor Protects," and a book on Ancient Dwarven language and Tor. A matching room held a teleportation circle, whose rune Geldrin copied. Recent footprints, partly covered, led to a closed door opened by a ruby in a dwarf face that released chains. The party jammed the chains with a crowbar and set alarms on the hatch and circle. + +A diorama room held pylon and tower paperwork, a bubble of shield energy, a scaled model of the Pentacity states, elemental globes at the compass points, and a city fire-airwise of Lake Azure halfway between the lake and Aegis-on-Sands. The model showed no prisons or labs. When a teleportation circle activated, the party hid. A tanned desert-robed human with piercing blue eyes appeared: Pythus Aleyvarus, later revealed as a blue dragon. He claimed to collect magical trinkets and not to work for the black dragon. The party made a treasure deal: Pythus got coin, gold, and silver; the party got first pick, then he got next pick, then the party got three more picks, with the rest split. + +Dirk took an out-of-place scepter from the lounge, setting off an alarm and arcane-locking the doors. A mouth warned that traps were active. Rooms included a bowling/skittles and games room with a magical poker table, an empty room, a silence-spelled room of crystal balls containing memories, and a hidden lounge room behind a dwarf portrait containing blank magical paper and a non-wounding dagger. The party saw memories: goliaths helping build Grand Towers; a fearful acid-scarred memory with a dwarf skeleton; four figures around a teleportation circle as purple crystal rose; Ruby Eye using the dagger and blood to stop an alarm after Joy set it off; Envoi in fields of white roses with an elven woman, Joy, and a dwarven lady; a dark male elf introduced to Envoi with fleshcraft magic; Envoi wearing five rings; Ruby Eye falling in love at Brookville Springs; a purple dome and copper pylons holding blackness and a shadow that threatened calamity; Browning retreating to Grand Towers and wanting to cover up how the system worked; and Ruby Eye using crystals and "Tor Protects" to reveal a skull under a mirror. + +These memories showed that Ruby Eye planned much of the dome: five pylons and five more around Grand Towers. The early system protected towns from elementals. When a six-armed rock creature broke through, the group made a pact. A male human pointed Envoi to a crater with a massive purple rock, which Envoi wanted to observe, and Brutor said it was what they needed. Warring kingdoms including Harthwall, a goliath kingdom, and Goldenswell joined to construct the system. When the dome turned on, something flaming burst through and Browning was attacked. + +Other rooms held an astrolathe showing the disk-shaped planet and moons in real time, with date 31st December 1011; a Protection from Elements spell; boulder elementals apparently used as digging slaves; a picture of moon holes like gem slots; and a relic gallery. The relics included Containment taken from Lord Hydranus in a bottle of flowing water; a wooden spear with flames called the Spear of Ciera; a stone-and-bone-hilted dwarven steel greatsword given by goliath kings "to the spell ones"; a delicate codebook holder recovered from Grand Towers; a celestial dwarf mannequin with Princess Seline's Grand Ball dress; a small red garnet matching moon holes; a Grand Towers penny coin press; an eyeball jar labeled "My Eye" that could scry once per week; the unsettling locked Noctus Corinium or Noctus Caerulium Grimoire with human teeth; Drixl's Cube, a glowing marble cube from golden field halflings; a wine bottle of first pressing Siggerne or Maiden's Dew; a ring of protection +1 resembling Bushhunter's ring, labeled a failed attempt to recreate a stolen ring; a dragonbone and jade comb gifted by an elven princess to Ruby Eye's wife; and a silver-and-gold scepter with a white Seaward gem gifted by the merfolk of the great sea. + +The Celestial book had the phrase, "Time existed before me but history can only begin after my creation." Geldrin saw a vision of six primal elements looking down on the world. Then his alarm triggered and four burly black dragonborn with mosquito shields arrived, speaking Draconic and claiming the place for their master. The party fought them, gaining three and a half swords, four mosquito shields, 70 gp, four tower pennies, and the obsidian bird Errol. Errol's last message suggested Rewi had given the party's location to the black dragon. + +The lab also contained a riddle-gem system. A red gem under the Celestial book plinth gave the ship-floor riddle answered as games. A kitchen jar held a gem with the riddle "The rich want it, the poor have it..." answered as nothing, and a magically sealed cold-beer barrel held a jar with a ruby-eyed hand whose blood stopped alarms. A formerly empty room became full of books on controlling earth elementals, Tor, spell gems, wards, and constructing magical crystals. A book gem asked the king/queen/single riddle, answered bed. An elemental-room gem asked about creativity and storage, answered museum. An orb-room gem asked about something gained over time and stored in one place, answered memory. The orb memory said the clue was based on room layout. A calendar-room gem asked about a scrambled recipe start, likely kitchen. A bedroom skull held gems and a note saying the final part was the Denouement. Another gem's riddle about one falls but never breaks and one breaks but never falls answered calendar. Placing the gems opened a room containing a purple sphere and a void creature in a self-contained barrier. + +The void creature wanted release. It named the diviner as the one who stole his brother, likely the twin encountered earlier. Pythus took the creepy book and Celestial book. The party's picks included Dirk taking the sword and merfolk scepter; the narrator taking the coin press and cube; Invar taking the ring of protection and potion bottle; and Geldrin taking the spear and eye. Pythus gave Geldrin a teleportation scroll and left. Geldrin used the eye to scry on Pythus, seeing him as a blue serpent-like dragon on a pile of gold in a sandstone cavern near Salvation, reading a skin book of cured human flesh. + +The void creature explained that Ruby Eye wanted to live forever and had entered the sealed area with an elven woman and dark male Envoi. It was only a fragment of the void, but could grow if united with others. It described a key-like system of pylons against a barrier circle. The party found four copper pylons, two copper rune circles, a Veridian dragonborn skull about a thousand years old, and a locked book containing the memories and learning of Atuliane Harthwall. Envoi's ring read "a sacrifice made to live eternal, father and daughter." The book required a powerful identity spell to learn its command word. The party partially released the void, took its ring, book, and small ring, and removed the moon-face gems. + +Outside, a storm half a mile wide moved unnaturally. Insects filled the air. Eight massive claws pressed through the barrier: Infestus, the black dragon, trying to enter. He wanted his son's remains, the Veridian dragonborn skull. The party retrieved and returned the skull. The skull was missing the side of its face, perhaps due to Ruby Eye or the son's own actions. Infestus had crystals on his scales that parted the barrier slightly, though it hurt him. He took the skull, declared the debt even for the party killing his men, and left with the thunderstorm. + +Tri-moon, Harthwall Council, and the Wider War +--------------------------------------------- + +On Day 17, 1st Jan and Tri-moon, Scum told the party they were wanted for treason for conspiring against the Towers to break the barrier. Scum also said Elementarium wanted to meet them with Ruby Eye's skull one mile outside Seaward. The party sent Errol to Grand Towers claiming they were going to Everchard, to mislead pursuers. They waited for Basilisk and intercepted a suspicious cart driven by Garick Blake, supposedly transporting for the council to Fairshaw. The cart carried Grand Towers pennies, ash jerky, copper-tipped spearheads and trident heads, waterproof paper enchanted for salt water, tar, heavy-duty shipbuilding tools, and miscellaneous goods. Invar knocked the driver out. The jerky hid a hemp bag with a pungent sickly sweet narcotic smell like rose spice. Elementarium arrived and gave them the Ruby-Eye skull, while denying knowledge of the spearheads. He wanted a meeting with Lady Harthwall. + +Ruby Eye's skull revealed key facts. Infestus' son was a spawn of evil and had been used as a powerful sacrifice for Envoi. The leaking salt dragon suggested tampering with life had weakened the force. The barrier might be reinforced by refilling voids, or safely disabled by a failsafe button in Grand Towers. The Noctus Caerulium Grimoire contained forbidden magic. To stop the Tri-moon shard, the dome would likely need to be fully redone, or a device built to repel the shard while the barrier was down. The merfolk were distinct from fish men and helped build barriers. Browning probably erased or obscured the goliath settlement from history. The green dragon seemed to live in the area. The white dragon helped build the dome; reds and blues did not. Elementals attacked, which was why the barrier was built. Ruby Eye had a backup plan for a void elemental in his safe, if it was still there. + +A giant gargoyle arrived with a carpet bearing a teleport rune and took the party to Harthwall. In a lush castle room, Lady Harthwall sat at the head of the table with a sister lady beside her. Basilisk arrived through a rip in the sky with Lady Catherine Cole, Earl of Stronghedge. The Guilt, a portly tiefling male, appeared in purple light. A valkyrie-like woman, Earl of Ironcroft Firewise, arrived with two dwarves. Catherine Cole vouched for the narrator and Valkarige for Invar. A tabaxi mule-like Earl of Salvatur with a floating hookah pipe also arrived. This group of like-minded leaders wanted to preserve barrier stability. + +Lady Harthwall spoke with Ruby Eye, who had been a friend of her mother's and had barely aged despite being a thousand years old. News of the Tri-moon fragment had reached them. The ancient one had awakened and moved near Runewatch or Snow-sorrow. The green dragon was responsible for destroying Dirk's homeland; Ruby Eye blamed Dirk's people for helping dragons, and Verdilun was said to be shacking up with the red dragon. Keeley Curdenbelly's research in the desert, described as the "liver," might be useful. + +The strategic plan became: go to the merfolk, recover a shield crystal from the water, and speak to the Ancient One. The group also discussed leeching elemental prisons, Garadwal, the loose void, and the shield crystal in the sea. Cosmological lore established that light and dark produced life, gods, twelve gods, six Excellences, and mortal peoples. The multi-armed beings were Excellences. Five was holy because it symbolized removing darkness. Basilisk arranged for someone carrying a Winter Rose to meet the party in Fairshoes or Freeport. The party gave him the coin press and warned him the cart coins were a crate of them. + +Fairshoes, Turtle Point, Kairibdis, and The Pact +----------------------------------------------- + +The party travelled toward Fairshoes. On the road, birds and animals became audible at night. A dog associated with the twins approached the camp with five attackers; they died. Day 18 noted 2nd Tan with Finnan and sixteen days until Timnor. Day 19 noted 3rd Tan and fifteen days until Timnor. Fairshoes had sea, gold sands, and white plastered buildings, like a Cornish town. It was oddly warm for the season. + +The party boarded the Pride of the Penta Cities, a galleon bound for Baytail Accord via Turtle Point, staying in cabin 17. The figurehead was a wooden shield crystal. A ship appeared on the horizon, panicking the captain. A hostess called winds and storm. A tiny flame leely escaped heat lamps, set a buffet table alight, and attacked. Merfolk said that had never happened before. Pirates had been attacking more often, and creatures that petrified by looking were rumoured. The party recruited a male half-elf in traveller's leathers, an elderly dwarf woman with a silver chain, and a silver dragonborn bard. Payment was 150 gp if fighting was needed or 5 gp if not. + +The pirate ship had black sails with snake heads and moved by water instead of wind. The pirate Kairibdis wore a big-brimmed hat and mismatched clothes. He called on Salinus, summoning salt elementals. The party killed Kairibdis and his crew. They received free passage on the company's ships, 400 gp, a +1 scimitar requiring attunement for water breathing, and Kairibdis' Pistol of Never Loading +1, a noisy d8 weapon. They retreated to the cabin with a cask of rum. + +At Turtle Point, the docks looked like they were sometimes underwater. The locals were turtle-men. The party visited the Sailors Rest and toured the Shrine to the Great Turtle. The Great Turtle myth said that before the barrier, the turtle came into the world while fleeing his own realm and seeking his cousin on earth. He found smaller turtles in trouble, picked them up, diverted to this world, and planted his feet in the ground; locals believe he remains awake. The shrine was a fountain of the same white stone used in Seaward. Water rises high on Tri-moon and covers the building. Walter showed the party where Kairibdis parked his boat. + +At an old town in disrepair, one dock and three houses were maintained. In one lit tavern, four fish men fixed copper spearheads onto stakes. One told the water king that the boss would be angry if the shipment was not on time. Another hut had a conch and called "kingly". A ten-foot, six-armed fish person arrived in a chariot pulled by barnacled sea cows, skewered and ate a fish person, demanded all supplies for the plan, and threatened destruction. The party inferred this Excellence would attack their ship for the weapons. + +Instead of continuing to Baytail Accord, the party returned to Turtle Point and reported to The Pact. The shipment from the Earl of Fairshoes to Mallcom Ieffrie matched the Seaward boxes. Pact leader Shandra explained that The Pact enforces rules and protects people in exchange for the barrier's protection. The ten-foot six-armed creature was an Excellence. The sahuagin, or fish people, were linked to Saguine, leader of Kiendra, who had been killed. They had Kiendra's conch, one of eight in existence. Dunhold Cache became important. The Pact Scepter, one given to each of the original wizards, was entrusted to the party to mark their side of the Pact. Shandra recommended speaking to the merfolk of Lake Azure for Dirk's city. The party requested Basilisk's help to get support and meet in Freeport. A merfolk would accompany them. The Freeport Pact leader was Tiana. + +Freeport, Baroness Lavaliliere, and Preparations for the Sea Assault +-------------------------------------------------------------------- + +On Day 20, 14th Tan 1012, fourteen days until Timnor, the party stayed in the barracks. Dirk dreamed of a goliath on a granite throne worriedly watching two women tend a dwarf who would live but lose an eye, likely Ruby Eye. The dream shifted to a savanna, dancing around a fire with a granite city in the distance, and a face in the fire possibly Enwi or Jagg. + +Guardfree, a merfolk, said his mistress had been working on misdirection. The trip to Freeport was uneventful. Freeport was a busy, mismatched city with a rainbow ship docked. The quartermaster loaded a shipment onto the party's cart. Baroness Lavaliliere ruled Freeport, where trade was untaxed. Newspapers reported the Ancient One taking flight after a thousand years and moving to Snow Sorrow, fighting near Highden going badly, and propaganda. The party shopped at Esmerelda's magic item shop and met Tiana at the Siren and Garter. + +Tiana expected a group of forty to help fight the Excellence, which she said was mortal and could be slain. The Baroness was described as good but laissez-faire, sometimes disposing of groups unpredictably. Recently she had removed a group dealing bound elementals and fire/water gems, and another selling desert archaeological items involving awakened tabaxi. Basilisk privately reported that Highden was under attack by a Fire Excellence with a grudge against dwarves; an old lab had been found at a crater but could not be opened; allies were meeting the Ancient near Snow-sorrow; Azureside had perodotta and spawn amassing; Arabella had been kidnapped again in a targeted face-removal attack; and no forces were available except Zinquiss and one other at the harbour. Basilisk gave the party a Lesser Rift Blade, a +1 dagger with three charges: one for dimension door, three for a five-second teleport portal large enough for a person, recharging one charge per day. + +The party learned Harthwall is the second most common surname after Browning, and that there has always been a Harthwall in charge of Harthwall. The family is reclusive, appearing publicly only at coronation and seen together only to hand over the crown, suggesting possible disguise magic. Dirk noticed scratches on the cart padlock: upside-down thieves' cant reading "Drunken Duck," scratched with claws like his. The party altered the markings to Everchard and arranged parking with Guardfree on watch. + +At the temple of Cierra, a female half-orc accepted the Spear of Ciera for examination. Later Huntmaster Thrune returned. Ruby Eye had often spoken with the church and was interested in runes. Thrune agreed to help kill the Excellence. He explained the spear was actually one of five arrows from Cierra's last battlefield. Ruby Eye warned the party might need to retrieve the book from the blue dragon before Valenth, Enwi or Envoi's apprentice, tried to get it. Ruby Eye's best friend had wanted to craft herself into something and continue in that form. + +The Baroness granted an immediate audience. Her room had paintings of predecessors all wearing the same necklace and lots of jewellery. Desert relics had been seized because she thought they belonged to an old friend, Velenth or Valenth Caerduinel, who had worked for her willingly long ago. Freeport is ruled by twelve heads who choose who can uphold specific ideals. The Baroness disliked the cult and had confiscated goods. She offered to loan forces if the party used her information about a laboratory and retrieved a red gem for her, harder than diamond but in the workshop. The lab had a gaping hole in its side, barrier emergency systems, and something young that had run. A dragon was rumoured to roost in the ruins of Dirk's old city. She gave the party the lab, circle code, and safe code while defences were up. Valenth had wanted to transfer herself into an object. The Baroness was shaken afterward. + +Sea Assault, Dunhold Cache, and the Excellence +---------------------------------------------- + +On Day 21, 6th Jan, thirteen days until Tri-moon, everyone had cold-tinged dreams. One dream showed a family home and town hall turning into a crater or black hole, with a voice saying, "Where is he? I know you hide him," likely searching for Garadwal or the void. The party's room was cold, and a white dragon scale fell from melting icicles. + +The party hired Captain Hween's boat for 100 gp per day with a 500 gp deposit. At Pier 12 gathered thirty merfolk, two litters, twenty guardsmen including a sergeant with an emerald-speaking necklace, Zinquiss, the black dragonborn Wrath whose middle name is Colin, fifteen clerics and their leader, and Pact leaders Shundra of Turtle Point, Kiendra of Dunhold Cache, Tiana of Freeport, and Alana of Riversmeet. The party received two guest shells and ten spare shells. The sergeant took the cart to the keep. Wrath would stay outside the barrier after arrival and was asked to look for Garadwal's location when he reached Blackstone Scale. The plan included a pulley system to hoist the shield crystal onto the ship at Fairshaw. + +At Fairshaw, the boat was seized on the Earl's orders, and the occupants were detained for treason despite being a diplomatic mission carrying Pact members. The party suspected the Earl was cult-aligned. Zinquiss bought three healing potions and one greater healing potion with 200 gp. News reported Highden battles worsening with dragon sightings, Heartmoor illness with surgeons deployed, Grand Towers sending Justicars to the five points of the Pentacity states, and Provinia suffering locusts and mysterious disappearances. A sword was blessed +1. + +On Day 22, Tiana called the party to the mess hall. Underwater construction had raised a crystal to create a gate, and fish shamans were taking notes on waterproof paper. The crystal was about one metre square. Kiendra could be sensed in the cavern but did not respond, likely unconscious. The party split the underwater force: one team to secure the crystal, one to rescue Kiendra. During stealth approach, sharks spotted them. The party defeated enemies at the crystal site, rescued Kiendra, recovered waterproof paper, three dispel magic scrolls for Geldrin, and 112 gp in coin pouches, which were given to the crew. The boss carried a dull-blue glowing Doom Spear +1, a returning weapon that grants Aquan, and Plate of Hydran +1 with resistance to cold. + +The boat was badly wounded. Tiana's team had dispelled shells and been attacked; Huntmaster Thrune was missing. A half-orc priestess and the necklace sergeant wanted to check on him. The party found Thrune fighting the Excellence, both badly injured, and killed the Excellence. Survivors included four mermen, all mermaids, four clerics, and six guardsmen. The merfolk recovered their dead and laid them on deck while priests oversaw rites, and the party thanked each for their help and sacrifice. + +Near Dunhold Cache, a lookout saw a vessel already docked: the Excellence's chariot, Mother of Pearl, with water elementals chained to it. Dirk spoke to the elementals. They wanted to show where the Excellence lived and agreed to come with the party on the big boat. The chariot weighed roughly 8-10 kg and was taken; Zinquiss planned to sell it at auction in seven days through the Freeport auction house. + +On Day 23, 7th Jan 1012 and eleven days to Tri-moon, the party went to the Excellence lair with merfolk and Pack Leader Alana. The underwater cave had tidal ebb and flow, a twenty-foot crystalline dragon sculpture with glowing runes at its base, three cages, and barrels. One cage held a greenish merfolk rather than blue; Alana revived him and took him back to the ship. Waterproof chests contained white powder, which caused a vision when inhaled: Bas, Athal, salamanders, Arabic writing, a white dragon circling the dome, rabbits, a black void, two blue eyes approaching, and intense cold. + +Another cage held a drugged snail on a jeweller's chain, which Guardseen called a bad omen. Huntmaster Thrune dispelled the magic and the snail became Princess Aquunea, a mermaid from an empire beyond the barrier. She had been captured with others while on a diplomatic mission to the city of Onyx and distrusted them due to war with the Salt elementals. Another abducted merfolk said he, his friend, and his wife had been taken from beyond the barrier; his wife was nobility in their Pact. + +The party learned that the City of the Black Scales has a "door" into the dome. Infestus cannot use it because he is too large. Payment to access it is a Grand Towers penny. The barrels and stores included a sickly sweet medicinal potion of magical energy that restores one spell slot for one hour, silk and parchment interleaved with runes, two white rose powders for which Tiana gave the party 1,000 gp, and a metallic Censer of Noxia, a silver or religious water-god censer that can enrage and control water elementals. It was active. + +Return to Freeport, The Drunken Duck, and Current Direction +---------------------------------------------------------- + +After sending a message to Basilisk, the party returned to Freeport through worsening cold. Snow fell over the sea. A doomsayer shouted that the end was near and the moon was crashing into the city, though when asked which city he only said it had bothered his dream. Many people were having dreams. Gnolls were attacking a village and backup had been requested from Everchard and Fairshaw. Mermaids reported that underwater, a "big cat with metal wings" attacked something at the same time as the party's dreams. + +At the castle, the sergeant's necklace was removed and he walked off. The mermaids planned a meeting in three days at Baytail Accord to discuss events, which the party could attend, though they later chose not to. The contradictory dreams may come from the Ancient One. Huntmaster Thrune went to Grand Towers to speak to the Hunt Lord. A Justiciar was in Freeport, possibly looking for the party. The Baroness arranged access to the Drunken Duck, a secret Underbelly location airwise from the Jewellery District, the same name scratched onto the cart padlock. The party's cart remained safe in the castle. The Baroness's master was Valenth Caerduinel; the necklace and a sister ring appear important. + +The Drunken Duck was soundproofed with pillows and had red dragonborn, two tabaxi, an automaton, two halflings, a gnome, and other clientele. Axion was given schnapps from the Brass City and addressed as "Little Finger." The barman was intrigued that the three best members of the Underbelly had gone on a mission. Tabaxi Whisperers and traders called Keeps were present. Raised voices came faintly through the floorboards. The automaton kept talking about a factory and wanted to know where the labs were. When told they were all by the barrier, it cut down its search radius. + +The current decision is to get a private room, send a message through the Underbelly that the party will not go to Baytail Accord, and instead go to the desert laboratory. The open threats and leads are extensive: the Tri-moon shard is approaching; barrier magic accelerates the shard; elemental prisons are leaking; Garadwal, the Terror of the Sands, is tied to void and the Prison of Sands; a void fragment has been partially released and may be connected to cold dreams; Infestus the black dragon has recovered his son's skull; Pythus the blue dragon has the Noctus grimoire and Celestial book; Valenth Caerduinel may be trying to transfer herself into an object; Envoi's rings and sacrifices remain central; Browning and Harthwall history may be false or disguised; cult shipments move copper weapons, waterproof paper, tar, tools, rose-spice narcotics, and Grand Towers pennies; the City of the Black Scales has a paid door through the dome; the Censer of Noxia can control water elementals; and political powers including Grand Towers, Harthwall, the Justicars, Freeport, Fairshaw, and The Pact are all moving under partial information, secrecy, or corruption. + +Important People, Factions, and Beings +-------------------------------------- + +The party has repeatedly interacted with Invar, Dirk, Geldrin, Axion, Isabella, Brother Fracture, Sheriff Jeremia, Gregory, Bushhunter, The Chorus, Cromwell, Core and Mr Peel, Basilisk, Elementarium, Peridot Queen, Brutor Ruby Eye, Pythus Aleyvarus, Infestus, Lady Harthwall, The Guilt, Lady Catherine Cole, the Earl of Ironcroft Firewise, the Earl of Salvatur, Shandra, Tiana, Alana, Kiendra, Guardfree, Wrath or Colin, Huntmaster Thrune, Baroness Lavaliliere, Valenth Caerduinel, Rewi Lovelace, Scum, Zinquiss or Xinquiss, Kairibdis, Salinus, Garadwal, Envoi, Vixago Eros, Joy, Browning, and the Ancient One. + +The key factions now include Everchurch authorities, Harthwall, Grand Towers, the Justicars, The Pact, the Underbelly, Freeport, the Black Scales, Infestus' forces, sahuagin or fish people, merfolk beyond the barrier, the City of the Black Scales, Seaward's stonemasons and council, Cierra's temple, and cultists moving supplies for barrier or elemental operations. + +Important Items and Rewards Gained or Handled +--------------------------------------------- + +The party gained or handled a shock dagger from Everchurch authorities; a compass box pointing to Bushhunter, bought by Geldrin; a Potion of Recovery or Succour from Cleara; magical hearing powder or quaverisior from Bushhunter; an invisible cloak from the observatory hatstand; Tri-moon notes from the observatory; Joy-related rings including Mr Sleeps' ring and Dirk's ring; the Copper Dodecahedron; a magical lamp gem from Joy's room; an eyeball-fronted illusion book; a box of copper; old Grand Towers pennies; a +1 sword blessing or enchantment at several points; 50 gp hush money from Lawrence Henderson; knowledge of a 6,000 gp platinum reserve in the Earl's safe; Basilisk's Winter Rose contact; the Pact Scepter; Kairibdis' +1 water-breathing scimitar; Kairibdis' Pistol of Never Loading +1; 400 gp and free ship passage; the Lesser Rift Blade +1; the Spear of Ciera, later identified as one of five divine arrows; Doom Spear +1 returning and Aquan-granting; Plate of Hydran +1 with cold resistance; three dispel magic scrolls; waterproof papers; the Mother of Pearl chariot; two white rose powders traded for 1,000 gp; potion of magical energy; Censer of Noxia; the ring of protection +1; Drixl's Cube; the coin press; the scrying eye; the merfolk scepter; the goliath greatsword; the void ring, book, and small ring; Atuliane Harthwall's locked memory book; Envoi's ring; Errol the obsidian bird; and various gems used to open Ruby Eye's sealed chamber. + +Important Mysteries and Unresolved Questions +-------------------------------------------- + +The party still does not know the complete identity and plan of Garadwal, the Terror of the Sands, or how he relates to the void, the sphinx, and the Prison of Sands. Envoi's role in causing the first crack, his five rings, the sacrifices of father and daughter, and his connection to Joy remain central. Joy's father, Vixago Eros, the clone work, and the repeated Joy graves reveal a tragedy but not the full purpose of the rings. Browning may have covered up the true workings of the barrier and erased goliath history. The Tri-moon shard is moving closer, possibly accelerated by shield pylon magic and barrier attacks. The Ancient One may be sending contradictory dreams. Valenth Caerduinel may be using a necklace, ring, object-transfer magic, and old desert relics. Pythus possesses dangerous books and is near Salvation. Infestus recovered his son's skull but remains a major power. The City of the Black Scales has a paid entry into the dome. The Censer of Noxia, white rose powder, rose-spice narcotic, waterproof paper, copper weapons, and Grand Towers pennies point to organized cult logistics. The party is wanted for treason and must navigate Justicars, Grand Towers, Harthwall, The Pact, Freeport, and the Underbelly while trying to reach the desert laboratory before the Tri-moon crisis worsens. diff --git a/tmp/summary.txt b/tmp/summary.txt new file mode 100644 index 0000000..6cab357 --- /dev/null +++ b/tmp/summary.txt @@ -0,0 +1,78 @@ +Pentacity Campaign Narrative +============================ + +The campaign began in Everchurch, a strange orchard town at the edge of swampy woods. Even in winter, one orchard was blooming, kept alive by unusually large bees. The trees had dark bark, blue leaves, and deep red fruit. The town itself seemed ordinary at first: around three thousand people, mixed light and dark woods, a manor house in the centre, and a cider inn with beeswaxed floors, music, and locals like Father Burnun, Gelissa, and the innkeeper Oric. + +The first mystery was small: pigs had gone missing from old John Thornhollows' farm. Then the details started to rot. Records did not match memories. John's daughters' names shifted. A key disappeared from the bar without anyone knowing how. A woman from Albec was searching for her missing husband, Malcolm Donovan, but few people remembered him. Homeless people had supposedly been housed in a new hostel, yet the town barely remembered them either. The militia had been downsized on paper, but nobody could properly remember the old members. The party found that names were being removed from records and, more disturbingly, from memory. + +Malcolm eventually appeared, but horribly altered: his face stitched, teeth missing, fingers splinted with bone, tongue split, and his right-hand birthmark still visible. He had been changed by magic. Around the same time, people started remembering things again in flashes: Gelissa, Isabella, homeless people, and missing militia. The party were made deputies by Sheriff Jeremia and began investigating in earnest. + +At Thornhollows farm, the party found inconsistencies in the pig records going back about a month, around the time Sarah disappeared. There were frog-like prints suggesting something eight feet tall, and the ravenhounds barked or "ribbited" at the dark. In the swamp, the party killed giant frogs and found bones belonging to pigs and sheep. The farm mystery led toward something larger: people and animals were being taken, transformed, and erased. + +The next lead took the party to Walter the sheep farmer's land. There they found a trampled man, human-sized tracks, a smashed farmhouse, and something trapped in the barn: a grotesque, melted pile of sheep. Walter's wife had apparently lured the creature into the barn and someone had locked them in together. Around the same time, the party felt memories being stolen. The pattern became clear: the disappearances were not just kidnappings, but a magical attack on memory and identity. + +Seeking answers, the party found The Chorus, an old blindfolded woman in a swamp hut covered in birds. Her mouth was sewn shut, and she was surrounded by branches and birds. She had been having dreams that were not her own. Her apprentice had left. The magic being used was subtle: it changed memories into convenient shapes rather than simply deleting them. The Chorus pointed toward the hostel and toward Bushhunter, a taxidermist and hunter using gas that harmed the birds. + +Back in town, Bushhunter was found with an ogre assistant, strange pipes, frames, and a wagon drawn by a cobra-koi-like creature. The party sabotaged his equipment and persuaded him to hunt away from town. They also learned of Magpie or Xinquiss at the Hatrall great bazaar. Meanwhile, the sheriff's office had mobilized. Walter had been attacked, the Earl had received a death threat, and Cromwell the forester had seen wagons near Walter's farm. + +The hostel proved to be a front. Wagons outside stank of manure and human waste. A pig-beast broke free and was killed. The party found victims, including people who had been altered beyond saving. Brother Fracture at the church helped restore some of them, including Gregory, a homeless man who remembered being taken by militia to the old militia house, now called the hostel. More missing militia were named: Stonejaw, Ralfrex, and others. The hostel still looked like a jail because it had been one. + +The party broke into the hostel, fought its guards, and subdued Gelissa, who had been corrupted. Invar restored her mind and wounds. Around ten townsfolk were still imprisoned inside. The rescue exposed the scale of the crime: townsfolk, militia, and outsiders had been taken, transformed, mind-wiped, and used. + +The trail led from Everchurch to the barrier. The party found Cromwell injured and tracks suggesting a heavily armoured figure. Near the barrier, a group of townsfolk and militia were under the control of a dog-and-maggot-like creature. When the creature died, it shrieked and the remaining townsfolk attacked. One of the controlling twins was killed; the other had gone toward the swamp. + +Following the tracks, the party discovered an ancient observatory built into the barrier. It had a marble dome, a huge telescope, no windows, and rooms tied to old magic. Inside were signs of Core being dismantled, missing astronomy texts about the Tri-moon, and a portrait of Vixago Eros, one of the five mages who made the barrier. The observatory was tied to Joy, a sick tiefling child, and to rings inscribed with dark bargains: one pact made in sorrow to bring Joy back, another bargain struck in shadow for souls to be held in infinity. + +The observatory revealed one of the campaign's central tragedies. Joy had been terminally ill. Her father, desperate to save her, worked with a creepy unnamed friend and experimented with rings, constructs, cloning, and forbidden magic. Joy's diary showed a bedridden child frightened by "Daddy's friend" and aware she was getting worse. Beneath the observatory were graves, all marked Joy, each a failed child or clone: Joy dead of lung infection, complications, poisoning, birth defects, and other causes. A hidden chamber suggested attempts to perfect cloning. Slowbane, a rare poison acting like heavy metal poisoning, matched Joy's symptoms. + +At the top of the observatory, the party confronted creatures using the telescope and the barrier. They spoke of a master, likely Garadwal or a sphinx-like horror called the Terror of the Sands, and of needing coordinates for future attacks. Striking the barrier increased the flow of magic and would draw a shard of the Tri-moon closer, eventually threatening Grand Towers and the dome itself. The Tri-moon was not just a moon; it was crystalline, with a closer fragment locked between world and moon. More power through the shield pylons would accelerate disaster. + +The party killed the creatures in the observatory and found notes on the Tri-moon, biology, incurable diseases, poison, and shield-pylon sickness. They also discovered that the observatory had been built with the barrier roughly a thousand years ago and had a teleportation circle connecting towns and cities for construction and supply. The place was stranger than a static building: moving through different directional "wise" versions changed rooms, doors, statues, barriers, and traps. There were references to Throngore, god of destruction and decay, and Igraine, goddess of life and harvest. The party saw illusion magic, blood runes, clone chambers, and impossible geometry. + +After returning survivors to Everchurch, the town began recovering. The Earl vanished as memories returned, the sheriff took over, and Core returned damaged to Peel and Core. A replacement Core arrived in the post marked "GUILT," pointing toward The Guilt, the Earl of Brookville Springs. The party connected with Basilisk, old coins, and wider politics around Harthwall, Justicars, and shield pylons. + +The next major arc began in Seaward, a circular stone city ruled by the stonemasons' guild. Seaward had water problems, a shield pylon outside the walls, rumours of water elementals passing through the barrier, and political tension with Justicars. Isabella was abducted by a gargoyle connected to her aunt, after her halfling friends were found murdered in a divination ritual similar to the Everchurch magic. The council, represented by the Elementarium, privately admitted that the pylon was being interfered with and hired the party to investigate while keeping the Justicar away. + +At the pylon, the barrier flickered in horizontal crackles. The crystal looked clean and untampered with, but Geldrin's shard made it react violently. The disturbance seemed to originate near the cliffs and quarry. With the Peridot Queen, who appeared as a green elven woman and later transformed into a green dragon, the party investigated the cliffs. They found miners, cultists, blue crystals used to bind elementals, and signs that something had come through the barrier. An elemental begged not to be taken again and described escaping through pain to the closest good water. It spoke of a "death dome," poisoned crystals, imprisoned beings used as batteries, and Garadwal. + +Beneath the quarry, the party found an ancient prison chamber holding a massive salt dragon, sweating salt into the earth for twenty years. Copper pylons had been removed, the runes were buried in salt, and the leak had poisoned Seaward's water. The prison was one of several elemental containment sites tied to the barrier. The party learned of quasi-elementals: ooze, salt, metal, magma, smoke, void, ice, and storm. Garadwal was revealed to be imprisoned in the Prison of Sands and, crucially, to be the only void entity the builders could find. If he escaped, the barrier would weaken badly. Damage to one prison could affect the others. + +The Elementarium used skulls to speak with the dead, including Brutor Ruby Eye, a powerful ancient wizard. Ruby Eye confirmed that Envoi had tampered with the containment device and caused the first crack. The original wizards had not all agreed with imprisoning elementals, but they all agreed Garadwal had to be contained. Passwords emerged: "Spinal" for Brutor, possibly "Winter Roses" for Envoi. The loose threads multiplied: halfling killers, eight things linked to poles, pirates, elementals, and the Tri-moon shard. + +On 31st December, the party found Ruby Eye's old laboratory near Newhaven. It opened with "Spinal" and was guarded by dwarf-form golems. Inside were lecture halls, teleportation circles, shield-pylon diagrams, a scaled model of the Pentacity states, elemental globes, memory orbs, traps, riddles, and relics from the construction of the dome. The party encountered Pythus Aleyvarus, a blue dragon disguised as a desert-robed human collector, and made a treasure-sharing deal with him. + +The memory orbs revealed the ancient history of the barrier. Ruby Eye helped plan the dome: five pylons around the world and five more around Grand Towers. The original builders included figures tied to Harthwall, Goldenswell, goliaths, Browning, Envoi, and others. They found a crater with a massive purple rock, which Envoi wanted to observe. The warring kingdoms joined together to build the dome after elemental threats and disasters. At activation, something flaming burst through and Browning was attacked. The lab also contained an astrolathe showing the disk-shaped world and moons in real time, relics from gods and kingdoms, a Celestial book, a creepy skin-bound grimoire, a scrying eye, a merfolk scepter, a spear of Ciera, and other powerful artifacts. + +The party fought black dragonborn agents marked with mosquito shields, apparently connected to Infestus, the black dragon. Errol, the obsidian bird, had been used to send their location. Through riddles and hidden gems, the party opened a sealed room containing a void fragment in a self-contained barrier. The void wanted freedom and claimed Ruby Eye had wanted immortality. A nearby chamber held copper pylons, rings, a Veridian dragonborn skull, and a book containing the memories and learning of Atuliane Harthwall. Envoi's ring spoke of a sacrifice made to live eternal: father and daughter. + +The party partially released the void fragment, taking its ring, book, and small ring, then left as a massive storm gathered. Infestus, the black dragon, pressed through the barrier with eight massive claws and demanded the remains of his son: the Veridian dragonborn skull. The party returned the skull. Infestus accepted it, declared the debt even for the deaths of his men, and flew away with the storm. + +By Tri-moon, the party were wanted for treason, accused of conspiring against Grand Towers to break the barrier. Scum delivered word that Elementarium wanted to meet with Ruby Eye's skull. A suspicious cart carried Grand Towers pennies, copper-tipped weapons, waterproof paper, tar, tools, and strange jerky laced with a sickly-sweet narcotic scent like rose spice. Ruby Eye's skull revealed more: Infestus' son had been sacrificed for Envoi; the barrier might be reinforced by refilling voids or safely disabled using a failsafe in Grand Towers; stopping the Tri-moon shard would require fully redoing the dome or building a repulsion device while the barrier was down. The white dragon helped build the dome. Reds and blues did not. Browning may have erased the goliath settlement from history. + +A political council gathered at Harthwall. Lady Harthwall, the Basilisk, Lady Catherine Cole, The Guilt, the Earl of Ironcroft Firewise, the Earl of Salvatur, and others discussed the crisis. They were a small group trying to preserve the barrier's stability. They had news of the Tri-moon fragment, the Ancient One awakening near Runewatch, the green dragon linked to Dirk's homeland's destruction, Garadwal, leeching elemental prisons, a loose void, and a shield crystal in the sea. They laid out a path: go to the merfolk, recover the crystal from the water, and speak to the Ancient One. + +The campaign then moved toward Fairshoes and the sea. The party boarded the galleon Pride of the Penta Cities, bound via Turtle Point. Pirates attacked: black sails with snake heads, a ship propelled by water, and Kairibdis calling on Salinus to summon salt elementals. The party killed Kairibdis and his crew, earning free passage, 400g, a +1 water-breathing scimitar, and Kairibdis' noisy Pistol of Never Loading. + +At Turtle Point, the party learned the myth of the Great Turtle, an ancient being who came from another realm trying to reach his cousin on earth, stopped to rescue smaller turtles, and became the foundation of the island. Walter led them to where Kairibdis moored his boat. There they found sahuagin preparing copper spearheads and waiting for their six-armed master. A towering six-armed fish-like Excellence arrived on a chariot pulled by barnacled sea cows, killed one of its own, and demanded the shipment. The party realized the Excellence would attack their ship for the weapons. + +They reported to Shandra of The Pact at Turtle Point. The Pact exists to enforce rules and protect people under the barrier's bargain. The six-armed creature was confirmed as an Excellence. The sahuagin had one of eight conches, Kiendra's, and the shipment was tied to Fairshoes and Mallcom Ieffrie. The Pact Scepter, one of those given to the original wizards, was entrusted to the party as a symbol of their side in the Pact. The party redirected to Freeport and prepared to work with Tiana, the Freeport Pact leader. + +In Freeport, the party found a chaotic trade city ruled by Baroness Lavaliliere, with no trade taxes and a mix of strange factions. The Basilisk reported that Highden was under attack by a Fire Excellence, an old lab had been found near a crater but not opened, the Ancient One was moving toward Snow-sorrow, Azureside had perodotta and spawn amassing, Arabella had been kidnapped again with faces removed, and forces were scarce. The party received a Lesser Rift Blade, a dagger capable of dimension door and teleport-like portal magic. + +Freeport deepened the intrigue. The Baroness had seized desert relics, bound elementals, and cult goods. She knew of Valenth Caerduinel, who wanted to transfer herself into an object. The Baroness offered forces if the party retrieved a red gem for her and gave them a laboratory location and codes. At the temple of Ciera, Huntmaster Thrune agreed to help kill the Excellence. The spear from Ruby Eye's lab was revealed to actually be one of five divine arrows from Ciera's last battlefield. Ruby Eye warned that the party might need to retrieve the forbidden book from Pythus before Valenth, Envoi's apprentice, got it. + +Cold dreams then began. The party dreamed of homes, craters, black holes, and a voice demanding, "Where is he? I know you hide him," likely referring to Garadwal or the void. Their room froze, and a white dragonscale fell from melting icicles. The party hired Captain Hween and assembled a major force: merfolk, Pact leaders, clerics, guards, Zinquiss, Wrath the black dragonborn, Tiana, Shundra, Kiendra's allies, and Alana of Riversmeet. The goal was to recover the sea shield crystal and confront the Excellence near Dunhold Cache. + +At Fairshaw, the ship was seized under the Earl's orders and the occupants accused of treason, suggesting the Earl may be cult-aligned. Tiana gathered the party and revealed that underwater construction had raised a shield crystal to create a gate. Fish shamans were taking notes on waterproof paper. Kiendra could be sensed but was likely unconscious in the cavern. The party split forces: one team to deal with the crystal, one to rescue Kiendra. + +The underwater assault succeeded, but at great cost. The party fought through sharks and enemies, rescued Kiendra, recovered waterproof papers, dispel magic scrolls, gold for the crew, the Doom Spear +1, and Plate of Hydran +1 with cold resistance. Tiana's team was attacked after dispelling shells, and Huntmaster Thrune went missing. The party found him fighting the Excellence, both badly wounded, and killed the Excellence. Survivors included mermen, mermaids, clerics, and guardsmen. The dead were recovered and honoured on the deck. + +At Dunhold Cache, they found the Excellence's chariot, Mother of Pearl, with chained water elementals. Dirk spoke with the elementals, who offered to show where the Excellence lived. The party took the chariot for auction via Zinquiss. At the Excellence lair with Alana, they found an underwater cave with tidal water, a twenty-foot crystalline dragon sculpture with glowing runes, cages, barrels, and abducted merfolk from beyond the barrier. One captive was from an empire outside the barrier, taken with his friend and wife. Another was a drugged snail that became Princess Aquunea when dispelled; she had been captured during a diplomatic mission to Onyx and distrusted them because of war with the Salt elementals. + +The lair also revealed that the City of the Black Scales has a "door" into the dome, accessible for payment of a Grand Towers penny, though Infestus is too large to use it. The party recovered magical energy potions, rune-covered silk and parchment, white rose powder, and the Censer of Noxia, an active item capable of enraging and controlling water elementals. + +Returning to Freeport, everything was colder. Snow fell over the sea, dreams spread through the population, and one doomsayer claimed the moon was crashing into a city, though he could not say which. Reports came of gnolls attacking a village, mermaids saying a "big cat with metal wings" had attacked underwater, and a meeting planned at Baytail Accord. The Huntmaster left for Grand Towers to speak with the Hunt Lord, and a Justiciar was in the city, possibly looking for the party. + +The Baroness arranged access to the Drunken Duck, a secret Underbelly location airwise from the Jewelry District, already marked on the party's cart padlock. There, in a soundproofed den full of red dragonborn, tabaxi, an automaton, halflings, and a gnome, Axion was recognized as "Little Finger" and given schnapps from the Brass City. The barman wondered why the three best members of the Underbelly had gone on a mission. An automaton spoke obsessively about a factory and wanted to know where the labs were; told they were by the barrier, it narrowed its search. + +The current state is that the party has decided not to go to Baytail Accord. Instead, they are sending word through the Underbelly and preparing to go to the desert laboratory. The major open threats are now clear: the Tri-moon shard is approaching, the barrier is unstable, elemental prisons are leaking, Garadwal or a void power may be loose or seeking escape, Infestus and Pythus are active, Valenth may be pursuing object-immortality, cult-linked shipments are moving copper weapons and waterproof supplies, and political powers across the Pentacity states are either divided, compromised, or hiding parts of the truth. diff --git a/transcribe_notes.py b/transcribe_notes.py index 368caa6..6966549 100755 --- a/transcribe_notes.py +++ b/transcribe_notes.py @@ -78,18 +78,20 @@ def write_output(dest_dir: Path, page_number: str, transcription: str) -> Path: def main() -> int: parser = argparse.ArgumentParser() - parser.add_argument("--src", default="src") - parser.add_argument("--dest", default="dest") + parser.add_argument("--src", default="data/1-source") + parser.add_argument("--dest", default="data/2-pages") parser.add_argument("--model", default="gemma4:e4b") + parser.add_argument("--overwrite", action="store_true", help="overwrite existing out/<page>.txt files") args = parser.parse_args() src_dir = Path(args.src) dest_dir = Path(args.dest) dest_dir.mkdir(parents=True, exist_ok=True) - files = sorted(src_dir.glob("*.HEIC")) + patterns = ("*.HEIC", "*.heic", "*.PNG", "*.png", "*.JPG", "*.jpg", "*.JPEG", "*.jpeg") + files = sorted({path for pattern in patterns for path in src_dir.glob(pattern)}) if not files: - print("No HEIC files found.", file=sys.stderr) + print("No supported image files found.", file=sys.stderr) return 1 with tempfile.TemporaryDirectory(prefix="pentacity-ocr-") as tmp: @@ -100,6 +102,10 @@ def main() -> int: png = convert_image(src, tmpdir) data = call_ollama(png, args.model) page_number = sanitize_page_number(str(data.get("page_number", ""))) + target = dest_dir / f"{page_number}.txt" + if target.exists() and not args.overwrite: + print(f" -> {target.name} exists; skipping", file=sys.stderr) + continue transcription = str(data.get("transcription", "")).strip() out = write_output(dest_dir, page_number, transcription) print(f" -> {out.name}", file=sys.stderr) -
c5aaefaMore transcribesby Bas Mostert
out/56.txt | 30 ++++++++++++++++++++++++++++++ out/57.txt | 25 +++++++++++++++++++++++++ out/58.txt | 32 ++++++++++++++++++++++++++++++++ out/59.txt | 24 ++++++++++++++++++++++++ out/60.txt | 25 +++++++++++++++++++++++++ out/61.txt | 34 ++++++++++++++++++++++++++++++++++ 6 files changed, 170 insertions(+)Show diff
diff --git a/out/56.txt b/out/56.txt new file mode 100644 index 0000000..a616adf --- /dev/null +++ b/out/56.txt @@ -0,0 +1,30 @@ +Catherine Cole vouches for me +Valkarige vouches for Invar + +Hurtwall talks to ruby eye - he was a friend of her mothers and he hasn't aged much for 1,000 year old. + +- Tabaxi mule strides in - looks a little odd. Hookah pipe floats beside him, spews on the ground. Earl of Salvatur. +- small group of like minded to protect the barrier want to maintain stability of the barrier. + +News reached them about the fragment. + +Concerns old friend awoke - the ancient one - and reported several issues near Runewatch. + +- Green dragon responsible for destruction of Dirk's homeland. +Rubyeye blamed Dirk's kind for helping the dragons. +It's said Verdilun dragon is shacking up with the red dragon. + +* Keeley Curdenbelly's research maybe of use (the "liver" in the desert) + +1. head to merfolk +2. get crystal from the water +3. speak to ancient one + +We passed off the twins mum. + +Elves were first on the earth: everywhere there was light and with light there was dark. In this came life and sprung a couple who created the universe. She created something to replace her mate and so did he. They then became the gods. Light and dark fought and because of this the physical + +- leeching elemental prisons +- Garadwal +- void on the loose +- shield crystal in the sea. diff --git a/out/57.txt b/out/57.txt new file mode 100644 index 0000000..827cfa9 --- /dev/null +++ b/out/57.txt @@ -0,0 +1,25 @@ +World was made. Lots of fighting and then they made a truce where each didn't go into each other territory and created our 12 gods. They decided to meet on the combination plain but it was difficult so created 6 Excellences and they fought gods needed armies to fight them i.e. elves, dwarves etc. but then everyone started fighting but then they got their own free will and thrived in certain places. The guys with multiple arms are the excellence. 5 is a holy number as it's seen as removing the darkness. + +Basilisk - getting someone to meet us in Fairshoes or Freeport. They will carry a Winter Rose.* + +Gave him the coin press and told him the coins in the cart were a create of them. + +Back to our cart. + +Head down the main road toward Fairshoes. 5:30 + +Start hearing birds and animals etc. 10pm +Find a place to camp for the night. + +Dog going around with the twins and approaches the camp. 5 attacks and die. 3am. + +Back on the road. +Uneventful day heading to Fairshoes. + +Make up camp again. + +Nothing happens. + +Day 18 (Friday) +2nd Tan with Finnan +16 days until Timnor diff --git a/out/58.txt b/out/58.txt new file mode 100644 index 0000000..6818413 --- /dev/null +++ b/out/58.txt @@ -0,0 +1,32 @@ +Day 19 (Saturday) +3rd Tan +15 days until Timnor + +- approach Fairshoes. Sea, gold sands, white plastered buildings - looks like a Cornish town. + +Go through town to the harbor to get a boat. + +* Temperature is oddly warm for this time of year and this close to the sea. + +Pride of the Penta cities - Galleon. Take passage to Baytail Accord via Turtle Point. +Cabin 17. +Figure head is a wooden shield crystal. + +Ship on the horizon. Captain seems panicked and says to try to outrun it. Not sure what it is yet. + +Hostess lady chants and brings forth great winds and a storm. + +Tiny flame leely breaks out of the buffet table heat lamps and sets a table alight then she attacks us. + +Merfolk - they've never done that before. + +- Pirates - has been attacking people more recently. +- creatures that can petrify others by looking at them. + +150g if we need to fight. 5g if we don't. + +* Male half elf - bit of my kind - wearing traveler's leathers. Permitted icon log. +* Elderly dwarf woman - poor with a silver chain - worried if her relatives are seen with Geldrin - recruited. +* Silver Dragonborn - Bard - recruited. + +Ship is approaching. Black sails with snake heads. Seems to be propelled by water not wind. diff --git a/out/59.txt b/out/59.txt new file mode 100644 index 0000000..306d857 --- /dev/null +++ b/out/59.txt @@ -0,0 +1,24 @@ +Pirate (Kairibdis) - big brimmed hat and worn mismatched pieces of clothes. + +Salinus? He calls on Salinus - worm - calls forth salt elementals! + +Kill him and his crew. + +- free passage on any of their ships and 400g +Receive Scimitar +1 - attune for water breathing. +Kairibdis' Pistol of Never Loading +1 (D8) noisy. + +Retreat to cabin with a cask of rum. + +Turtle Point - docks and nearby look like they would be under water at some point - be back for 9am. + +This is the only town on the Isle. +Turtle men seem to be the locals. +3rd road left 3 building - Sailors Rest. +Take a shrine tour - Shrine to the great Turtle. +Merfolk - the accordionman - look after the Turtles. -200g life gem. +We stand on the back of The Great Turtle. + +Pre Barrier, great turtle came into this world trying to escape his realm, trying to get to his cousin on earth. Saw smaller turtles in trouble on his way and picked them up. Diverted to our world. Planted his feet in the ground, they believe he is still awake. + +Shrine is a fountain made of the white stone. Seaward is made from. Fountain is quite elaborate. There is another shrine but it is private, had a manticore attack them using this path combination of different animals. diff --git a/out/60.txt b/out/60.txt new file mode 100644 index 0000000..55f54b2 --- /dev/null +++ b/out/60.txt @@ -0,0 +1,25 @@ +* Water gets up high on a trimoon and covers the building. +* Tell the guy about our fight with Kairibdis - Walter. +* Thinks he knows about where Kairibdis parks the boat and wants to show us. 19:30 +* Takes us there. + +Old town in disrepair but one dock looks fairly well maintained and repaired. +3 houses look decent too. +First house closest to us seems to be lit. Creep up to look in. +4 fish men inside an empty tavern attaching copper spear-heads onto stakes and pinning against the wall. +1 fish man tells the water king the boss will be angry if they don't get the shipment on time so go get the boss. + +Both other huts have lights. Furthest one seems to be more secured. +One has a conch and calls and says kingly comes now. Wait around for him. + +Water comes back. +Any sight? He's failed, been replaced. Boat captured, think he's dead. They bring out the weapons and wonder if it is going to be enough. + +11 fish people carrying things. 15 overall. +Something seems to be coming by barnacled sea cows. +10ft tall 6 armed fish person on the chariot. Fishy monstrous beast skewers a fish person and eats it. + +8:30 +9:20 +10:00 +Chariot back pulled 10:30 diff --git a/out/61.txt b/out/61.txt new file mode 100644 index 0000000..3e9f780 --- /dev/null +++ b/out/61.txt @@ -0,0 +1,34 @@ +Creature stops and sniffs as they are being watched, tells them to search for us. + +Sees Geldrin and throws trident at him, likes being complimented and threatens to destroy everything. + +Need all or the plan will not work and he will be cross and he will be worse. + +- Think 6 armed creature will attack our ship for the weapons. +- go back to Turtle Point. 12:00 + +Plan to go to Freeport instead of Baytail Accord. + +- shipment from Earl of Fairshoes to Mallcom Ieffrie's - same boxes we saw outside Seaward. +- go to Barracks to tell The Pact (picture outside is the same as the pub called The Pact) + +Pact leader Shandra - ensure the Pact's rules are followed and protect people who needed it in exchange for the protection of the barrier. + +- Tell her what happened - 10ft 6 armed thing is an Excellence. +Sahuagin -> "fish people" - Saguine leader of Kiendra who was killed. +Dunhold Cache information. + +Pact Scepter - one given to each of the wizards. Requested for us to keep it as it signifies our side of the Pact. + +Recommends to speak to merfolk of Lake Azure for Dirk's city. + +Shipment - get a small unit. +Sahuagin have one of the conch's (8 in existence) Kiendra's. +Asked Basilisk if he can get help to Shandra to get shard from the barrier - meet in Freeport. + +* one of the Merfolk will come with us. +Pact leader Freeport - Tiana. + +Day 20 (Sunday) +14th Tan 1012 +14 days until Timnor -
37ae2c5Remaindersby Bas Mostert
out/62.txt | 31 +++++++++++++++++++++++++++++++ out/63.txt | 42 ++++++++++++++++++++++++++++++++++++++++++ out/64.txt | 39 +++++++++++++++++++++++++++++++++++++++ out/65.txt | 35 +++++++++++++++++++++++++++++++++++ out/66.txt | 38 ++++++++++++++++++++++++++++++++++++++ out/67.txt | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ out/68.txt | 43 +++++++++++++++++++++++++++++++++++++++++++ out/69.txt | 38 ++++++++++++++++++++++++++++++++++++++ out/70.txt | 38 ++++++++++++++++++++++++++++++++++++++ out/71.txt | 37 +++++++++++++++++++++++++++++++++++++ out/72.txt | 45 +++++++++++++++++++++++++++++++++++++++++++++ out/73.txt | 17 +++++++++++++++++ 12 files changed, 457 insertions(+)Show diff
diff --git a/out/62.txt b/out/62.txt new file mode 100644 index 0000000..a6d733c --- /dev/null +++ b/out/62.txt @@ -0,0 +1,31 @@ +Stay in the barracks for the night. +Dirk has a strange dream about a goliath sitting +on a granite throne looking concerned, two females tending +to a dwarf, who will live but will lose an eye +(Rubyeye), fought well. *changes* Savanna scene: +dancing around a fire with a granite city in the distance. +Face in the fire ?Enwi? then Jagg? then disappears. + +Head towards ship. +(Merfolk) Guardfree - states his mistress has been +working on misdirection. +- get food brought to our cabin. +- Journey is uneventful luckily. + +Oddly a busy bustling city mishmash of styles. +Rainbow ship is docked here. +* Quartermaster loads shipment onto our cart to +take with us. + +Baroness Lavaliliere - head of Freeport. +No taxes for trade here. +Newspaper: +* Ancient takes flight - left his home for last 1,000 years + moving to Snow Sorrow. + +* Fighting still going on in the mountains near + Highden - good taking a beating. + - paper seems to be propaganda. + +Go shopping. +Esmerelda - magic item shop. diff --git a/out/63.txt b/out/63.txt new file mode 100644 index 0000000..7193293 --- /dev/null +++ b/out/63.txt @@ -0,0 +1,42 @@ +Go to see Tiana at the Siren & Garter. + +Expecting a group of 40 to help fight Excellence. +- They are mortal & can be slain. Delights in bossing + the mortals around. + +Baroness - seems good but lets people do what they +please. Although can be random with which groups +to dispose of. Latest one around a week +ago - a group of bound elementals & gems - fire & water. +- another group selling archeological items from desert - Tabaxi + awakened etc. +Ceased the goods. + +Go find the Basilisk in a private room. + +Highden - being attacked by a Fire Excellence. + has something in for the dwarves. + +Investigated the crater & found an old lab +but unable to get in. + +* Friends on the council meeting with the ancient + around Snow-sorrow. + +* Azureside - reported perodotta & spawn amassing + in the area. + +* Arabella kidnapped again - targeted attack, + faces removed. + +* No forces available - zinquiss will meet us + at the harbour + 1 other. + Baroness neutral party, fairly reclusive + following her predecessors' ideas. + maybe something similar to Lady Harthwall but + is not a dragon. + +* Told about copper weapons - paper - Maelcolm Jethnes + & Earl of Fairport involvement in the shipment. + +* Get a dagger from Basilisk. diff --git a/out/64.txt b/out/64.txt new file mode 100644 index 0000000..85b22af --- /dev/null +++ b/out/64.txt @@ -0,0 +1,39 @@ +Lesser rift blade - Dagger +1 - 3x charges. + 1 charge for dimension door. + 3 charge for teleport spell opens + a portal open for 5 seconds. + think of the place to + go - big enough for a person. + 1 recharge per day. + +Harthwall 2nd most +Common last name (Browning 1st). +Always been a Harthwall in +charge of Harthwall. No +Records of relative. Very reclusive +family who don't appear in public until the coronation +ceremony, only seen together to hand over the crown. +(possibly disguise self spell) + +19:00 + +Go back to see Tiana again. +get another guard - Guardfree. + +Pirates Pearls Plundered - Icky lower. +Poor Gut Refuge - +Cheeky Thimble Rugger + +Go out to the cart - Dirk notices the padlock +has scratches on it. The scratches look uniform & +pattern I recognise but don't know why. +Upside down thieves cant - "Drunken Duck" +& scratched with claws like mine. +change the markings to Everchard. +look into parking & Guardfree keeps watch. +Darker in Bugbear next to lizardman. + +Head over to the temple to give them the spear. +Female half-orc comes to speak to us - hand over the +spear & she goes to check it out with others. +Donate in exchange for help? diff --git a/out/65.txt b/out/65.txt new file mode 100644 index 0000000..a8c068e --- /dev/null +++ b/out/65.txt @@ -0,0 +1,35 @@ +Request an audience with the higher +power to discuss - won't be here for +3 hours. + +- go to get lodgings at the Pirates Pearls Plundered. + +- Crab man in charge - icky. + +- Baroness grants us an audience right now, + young for an elf. + +Room is odd - paintings are the predecessors all +wearing the same necklace (like a mayor necklace) & +lots of jewelry. + +Desert relics - thought maybe they belonged to an +old friend - long time ago - Velenth, Cardonald, +- worked for her before coming here - willingly. + +Vote 12 heads who vote who has +the ability to uphold a very specific set +of ideals. + +Other things taken off the street because +she doesn't approve of the cult. + +Will loan some forces - Proviso - she gives us +information about a laboratory. Can we get +a red gem for her, hunt but not as hard +as diamond in the workshop. +Gaping hole in the side of the building. +- Barrier - emergency systems - something else +in there - very young, cheers? she ran. +- Dragon - rumor to roost in the ruins of +Dirk's old city. diff --git a/out/66.txt b/out/66.txt new file mode 100644 index 0000000..475fcb4 --- /dev/null +++ b/out/66.txt @@ -0,0 +1,38 @@ +The creature in the chamber thing? +?Goa duck? - no. + +Has the code to the circle & the safe +code whilst the defenses are up. +gives us the lab. + +* Valenth wanted to transfer herself + into an object... + +* Seems a little shook & guard helps + her out. + +22:00 + +Return to temple of Cierra. +Huntsman has returned & comes over to us. +* Huntmaster Thrune. + Ruby Eye spoke to their church often & interested + in runes. + - will provide aid to kill Excellence. + +Ruby Eye thinks we might want to get +the book back from the blue dragon +before she tries to get it, she was +Enwi's apprentice. +- Ruby Eye's best friend wanted to craft + herself into some thing & continue in + that form. + +Spear was a gift from a Huntsman of Cierra +but it's actually an arrow and there were 5 +of them taken from Cierra's last battlefield. + +Back to Pirates Pearls Plunder. + +Guardfree - will get his mistress to bring guest shells. +- Try to plan what we are doing. diff --git a/out/67.txt b/out/67.txt new file mode 100644 index 0000000..e1610ef --- /dev/null +++ b/out/67.txt @@ -0,0 +1,54 @@ +Day 21 (Monday) +6th Jan +13 days until Tri-moon + +- We all have dreams that are tinged with + cold. + +- My dream - in family home, sibling playing + happy memories, looked at town hall but looking like + a crater but in fact a black hole + pulling in more buildings. Hear a voice: + "Where is he I know you hide him" horrible + voice. Panic & turn then wake up (looking for Garduul?) Void! + +- Just our room is cold. As the ice melted, + a white dragonscale drops from the icicles. + +Go look for the Captain for a boat. +! loan the boat for 100g a day & 500g + deposit (125g each). + +Pier 12 - large group merfolk 30 + 2 litters + guardsmen 20 (Sergeant has a necklaced + emerald glowing when he talks) + zinquiss & black dragon born (Wrath). + clerics 15 & leader. +- Speak to pack leader Tiana + & other leaders gather. +Get 2 guest shells. +10 spare shells. + +Sergeant takes our +cart to the keep. + +Captain Hween + +Wrath will stay on the +other side of the barrier +once we get there. + +Pack leaders: +Shundra - Turtle Point +Kiendra - Dunhold Cache +Tiana - Freeport +Alana - Riversmeet + +Set sail - sea is calm. +Water seems clear - no noticeable signs of +him yet. + +Merfolk, zinquiss, Wrath, half clerics in the sea with us. +- Excellence seemed to have come from 80 miles away + when we were at the turtle village - so possibly + Dunhold Cache or the smaller islands around. diff --git a/out/68.txt b/out/68.txt new file mode 100644 index 0000000..0263814 --- /dev/null +++ b/out/68.txt @@ -0,0 +1,43 @@ +& net +Make a pulley system to hoist shield crystal +onto the ship when we get to Fairshaw. + +- Wrath (Colin) middle name. + Request to look for the location of Garaduul + when he gets to Blackstone scale. + +- Island - pass it & nothing seems to happen. +- Arrive at Fairshaw. + - Boat is ceased upon orders from the Earl, + occupants being detained for Treason etc. + Diplomatic mission carrying members of the Pact etc. +- Suspect the Earl is part of the Cult. + - give zinquiss 200g for 4x healing potions. + +- Guards return & tell us to stay on board whilst + investigation takes place. + +Zinquiss returns with 3 healing & 1x greater healing (distributed). +News: +* Highden - Battles not doing well, + strengthened by dragon sightings. +* Heartmoor - People falling ill - surgeons deployed + (Perodotta?) +* Grand Towers - Justiciars leaving to the 5 + points of the penta city states. +* Provinia - locust and mysterious spiritual + event where things keep disappearing. + +Sword blessed +1. + +Day 22 (Tuesday) +6th Jan 1012 +12 days to tri-moon. + +Get called to the mess hall by Tiana. + +Construction under the water & they have made +a gate by raising the crystal up to leave +a gap. Fish shamans taking notes on waterproof +paper also. +Crystal is approx 1m square. diff --git a/out/69.txt b/out/69.txt new file mode 100644 index 0000000..979a675 --- /dev/null +++ b/out/69.txt @@ -0,0 +1,38 @@ +Can sense Kiendra but no response possibly unconscious +but seems to be in the cavern. + +Split underwater group into two to sort out crystal +& also attempt to rescue Kiendra. + +Approach shield crystal in stealth. + +See - above our field of vision are some sharks who +seem to have spotted us. + +Fight. +- We overcome & defeat mobs at the crystal site. + Kiendra - found & rescued - very weak & tortured. + Find waterproof paper, 3x dispel magic scrolls (geldrin) + & coin pouches - 112g (give to crew). + Big Boss - Spear glowing dull blue - Doom spear +1 + returning - speak aquan. + Suit of plate mail - Plate of Hydran +1 resistance to cold. + +Boat - pretty wounded. +Other party - Tiana's - dispelled shells & got + attacked - Hunt Master missing. +Half orc priestess on the boat wants +to check on the other team for the Huntmaster. +Necklace Sergeant wants to come with us. + +Go over & Huntmaster fighting an Excellence +both very injured. +! Deed Excellence! + +4 mermen +all mermaids +4 clerics +6 guardsmen +} survive + +* Moor up by Dunhold Cache for the night. diff --git a/out/70.txt b/out/70.txt new file mode 100644 index 0000000..fa33ba7 --- /dev/null +++ b/out/70.txt @@ -0,0 +1,38 @@ +Merfolk recover our dead & lay on the +deck - Priests oversee & I thank each one for their +help & sacrifice. + +Pull up to the cove - lookout shouts +there is a vessel already docked. +Chariot with water elementals chained to +the boat - Excellence's boat. + +- We row to shore to investigate. +Mother of Pearl named Chariot, no other signs of +movement. + +Dirk speaks to elementals & they want +to show us where the excellence live, +will come with us on the big boat. +! Take the chariot back with us 8-10kg. +Zinquiss will sell it at an auction in 7 days, +have the address for the Freeport auction house. + +Day 23 (Wednesday) +7th Jan 1012 +11 days to tri-moon. + +Go to Excellence lair with Merfolk - Pack leader Alana. +* Water ebbs & flows like a tide in the underwater + cave. +* 20ft long crystalline sculpture of a dragon - base has + runes glowing. +* 3 cages & barrels. + 1 cage contains a merfolk - but looks different - green not blue. + Alana seems to revive him & takes him back to the ship. +* Chests seem to be laced so waterproof - contents may + not be openable under water. + open one & contains white powder which I inhale. + Bas, Athal - Salamanders - & Arabic writing. + White dragon circling around the dome. + Rabbits - whole room turns into a black void. diff --git a/out/71.txt b/out/71.txt new file mode 100644 index 0000000..84d8e96 --- /dev/null +++ b/out/71.txt @@ -0,0 +1,37 @@ +Two blue eyes in the darkness coming towards +me & really cold & back in the room. + +Other cages - in the middle of the cage they see snail +with a gleam of metal which is a jeweller's chain +attaching it to the cage. Guardseen says the +snail is a bad omen - its been drugged. +Back to ship. + +Merfolk - abducted from beyond the barrier, +him, his friend & wife. Woke up one day +& they were both gone. Wife is nobility +in their pact. (Snewl?) + +Hunt master dispels magic on the snail & +a mermaid appears. +Empire of their people outside of the barrier +captured while on diplomatic mission to the city +of Onyx, doesn't trust them because war between +them & the Salt elementals. +Princess Aquunea. + +- City of the black scales has a "door" into + the dome - Infestus can't use it as too big. + Payment to access is a Grand Towers penny. + +Check out the barrels etc. +- sickly sweet medicinal - potion of magical energy + regain 1 slot - 1 hour. +- silk & parchment interleaved - runes. +- 2x white rose powder. Tiana gives us 1,000g. +- metallic censer (incense holding burning device) + silver? religious? water god? Censer of Noxia. + Ability to enrage & control water elementals. + It's active. + +* Send message to Basilisk. diff --git a/out/72.txt b/out/72.txt new file mode 100644 index 0000000..4620643 --- /dev/null +++ b/out/72.txt @@ -0,0 +1,45 @@ +Arrive back to Freeport - seems very cold. +Much colder heading back +down to Freeport. ?Rimewalk issues? + +Snowing over the sea, everything very dark & snowy. +Guy shouting the End is Nigh - moon is crashing down +into the city. Ask him which city & he then "it bothered +he dreamt it." +22:00 + +Lots of people having dreams. +Gnolls attacking a village requested backup from +Everchard & Fairshaw. +* Underwater - mermaids - "big cat with metal + wings attacked it." +Happened a few nights ago - same time as ours. + +Head to the Castle to see the Baroness. +Necklace is removed from the Sergeant & he just +walks off. + +* Mermaids - Having a meeting in 3 days at + Baytail Accord to discuss what happened. + We can go. + +The dreams seem to contradict each other, +possibly from the Ancient One - so could happen. +Huntmaster - going to Grand Towers to speak +to the Hunt Lord. +* Justiciar in the city. ?Looking for us. +* Baroness gets us into the Drunken Duck - secret in + Air wise from Jewelry District. + Written on our padlock, on the cart. + Cart still ok in the castle. + +Baroness Master - Valenth Caerduinel. Necklace. +Sister is a ring. + +Go to Drunken Duck. +All the walls are covered in pillows & ?soundproofing? +Red dragonborn +2x tabaxi +Automaton +2x halfling & gnome +} clientele diff --git a/out/73.txt b/out/73.txt new file mode 100644 index 0000000..691b63e --- /dev/null +++ b/out/73.txt @@ -0,0 +1,17 @@ +Gave me (Axion) Schnapps from the Brass City! +Barman says only the best for the "Little Finger". +He's intrigued by why the 3 best members of the +Underbelly went on a mission. + +- Tabaxi Whisperers laden with 'Dev'. + Traders 'Keeps' from foot to foot. + +Faint noise through the floorboards, raised voices? +Automaton keeps talking about a factory. +Wants to know where the labs are. Tell him +all by the barrier. Cuts down his search radius... + +- Get a private room to discuss matters. + - Send message via the underbelly to advise we + won't be going to Baytail Accord. + - Will go to desert laboratory. -
e47e3adInitial commitby Bas Mostert
out/1.txt | 62 ++++++++++++++++++++++++++++ out/10.txt | 49 ++++++++++++++++++++++ out/11.txt | 40 ++++++++++++++++++ out/12.txt | 39 ++++++++++++++++++ out/13.txt | 40 ++++++++++++++++++ out/14.txt | 35 ++++++++++++++++ out/15.txt | 34 ++++++++++++++++ out/16.txt | 32 +++++++++++++++ out/17.txt | 36 +++++++++++++++++ out/18.txt | 38 ++++++++++++++++++ out/19.txt | 36 +++++++++++++++++ out/2.txt | 52 ++++++++++++++++++++++++ out/20.txt | 34 ++++++++++++++++ out/21.txt | 29 +++++++++++++ out/22.txt | 30 ++++++++++++++ out/23.txt | 39 ++++++++++++++++++ out/24.txt | 33 +++++++++++++++ out/25.txt | 39 ++++++++++++++++++ out/26.txt | 35 ++++++++++++++++ out/27.txt | 35 ++++++++++++++++ out/28.txt | 32 +++++++++++++++ out/29.txt | 29 +++++++++++++ out/3.txt | 43 ++++++++++++++++++++ out/30.txt | 27 +++++++++++++ out/31.txt | 29 +++++++++++++ out/32.txt | 29 +++++++++++++ out/33.txt | 25 ++++++++++++ out/34.txt | 29 +++++++++++++ out/35.txt | 31 ++++++++++++++ out/36.txt | 31 ++++++++++++++ out/37.txt | 28 +++++++++++++ out/38.txt | 31 ++++++++++++++ out/39.txt | 32 +++++++++++++++ out/4.txt | 56 ++++++++++++++++++++++++++ out/40.txt | 33 +++++++++++++++ out/41.txt | 24 +++++++++++ out/42.txt | 21 ++++++++++ out/43.txt | 24 +++++++++++ out/44.txt | 32 +++++++++++++++ out/45.txt | 24 +++++++++++ out/46.txt | 37 +++++++++++++++++ out/47.txt | 32 +++++++++++++++ out/48.txt | 33 +++++++++++++++ out/49.txt | 32 +++++++++++++++ out/5.txt | 41 +++++++++++++++++++ out/50.txt | 33 +++++++++++++++ out/51.txt | 31 ++++++++++++++ out/52.txt | 23 +++++++++++ out/53.txt | 39 ++++++++++++++++++ out/54.txt | 31 ++++++++++++++ out/55.txt | 23 +++++++++++ out/6.txt | 49 ++++++++++++++++++++++ out/7.txt | 40 ++++++++++++++++++ out/8.txt | 49 ++++++++++++++++++++++ out/9.txt | 43 ++++++++++++++++++++ src/IMG_5115.png | Bin 0 -> 2910023 bytes src/IMG_5116.png | Bin 0 -> 2842840 bytes src/IMG_5117.png | Bin 0 -> 2804917 bytes src/IMG_5118.png | Bin 0 -> 2797870 bytes src/IMG_5119.png | Bin 0 -> 2950964 bytes src/IMG_5120.png | Bin 0 -> 3013690 bytes src/IMG_5121.png | Bin 0 -> 2960778 bytes src/IMG_5122.png | Bin 0 -> 2960428 bytes src/IMG_5123.png | Bin 0 -> 3001689 bytes src/IMG_5124.png | Bin 0 -> 3013009 bytes src/IMG_5125.png | Bin 0 -> 2891715 bytes src/IMG_5126.png | Bin 0 -> 2867922 bytes src/IMG_5127.png | Bin 0 -> 2878351 bytes src/IMG_5128.png | Bin 0 -> 2819072 bytes src/IMG_5129.png | Bin 0 -> 2849353 bytes src/IMG_5130.png | Bin 0 -> 2974327 bytes src/IMG_5131.png | Bin 0 -> 2817007 bytes src/IMG_5132.png | Bin 0 -> 2954304 bytes src/IMG_5133.png | Bin 0 -> 2881764 bytes src/IMG_5134.png | Bin 0 -> 2888498 bytes src/IMG_5135.png | Bin 0 -> 2849632 bytes src/IMG_5136.png | Bin 0 -> 2917551 bytes src/IMG_5137.png | Bin 0 -> 2847494 bytes src/IMG_5138.png | Bin 0 -> 3038771 bytes src/IMG_5139.png | Bin 0 -> 2847099 bytes src/IMG_5140.png | Bin 0 -> 2993713 bytes src/IMG_5141.png | Bin 0 -> 2823087 bytes src/IMG_5142.png | Bin 0 -> 2761840 bytes src/IMG_5143.png | Bin 0 -> 2970202 bytes src/IMG_5144.png | Bin 0 -> 2834974 bytes src/IMG_5145.png | Bin 0 -> 2647399 bytes src/IMG_5146.png | Bin 0 -> 2746547 bytes src/IMG_5147.png | Bin 0 -> 2759134 bytes src/IMG_5148.png | Bin 0 -> 2780868 bytes src/IMG_5149.png | Bin 0 -> 2819010 bytes src/IMG_5150.png | Bin 0 -> 2796533 bytes src/IMG_5151.png | Bin 0 -> 2921370 bytes src/IMG_5152.png | Bin 0 -> 2819984 bytes src/IMG_5153.png | Bin 0 -> 2629032 bytes src/IMG_5154.png | Bin 0 -> 2826629 bytes src/IMG_5155.png | Bin 0 -> 2816486 bytes src/IMG_5156.png | Bin 0 -> 2639066 bytes src/IMG_5157.png | Bin 0 -> 2675515 bytes src/IMG_5158.png | Bin 0 -> 2706953 bytes src/IMG_5159.png | Bin 0 -> 2676229 bytes src/IMG_5160.png | Bin 0 -> 2843135 bytes src/IMG_5161.png | Bin 0 -> 2707025 bytes src/IMG_5162.png | Bin 0 -> 2643833 bytes src/IMG_5163.png | Bin 0 -> 2816041 bytes src/IMG_5164.png | Bin 0 -> 2560012 bytes src/IMG_5165.png | Bin 0 -> 2531021 bytes src/IMG_5166.png | Bin 0 -> 2511691 bytes src/IMG_5167.png | Bin 0 -> 2445608 bytes src/IMG_5168.png | Bin 0 -> 2439510 bytes src/IMG_5169.png | Bin 0 -> 2662828 bytes src/IMG_5170.png | Bin 0 -> 2769475 bytes src/IMG_5171.png | Bin 0 -> 2718681 bytes src/IMG_5172.png | Bin 0 -> 2761571 bytes src/IMG_5173.png | Bin 0 -> 2661598 bytes src/IMG_5174.png | Bin 0 -> 2653204 bytes src/IMG_5175.png | Bin 0 -> 2670582 bytes src/IMG_5176.png | Bin 0 -> 2739500 bytes src/IMG_5177.png | Bin 0 -> 2721773 bytes src/IMG_5178.png | Bin 0 -> 2878099 bytes src/IMG_5179.png | Bin 0 -> 2624748 bytes src/IMG_5180.png | Bin 0 -> 2712135 bytes src/IMG_5181.png | Bin 0 -> 2671122 bytes src/IMG_5182.png | Bin 0 -> 2622338 bytes src/IMG_5183.png | Bin 0 -> 2658879 bytes src/IMG_5184.png | Bin 0 -> 2683727 bytes src/IMG_5185.png | Bin 0 -> 2731196 bytes src/IMG_5186.png | Bin 0 -> 2562155 bytes src/IMG_5187.png | Bin 0 -> 2722469 bytes src/IMG_5188.png | Bin 0 -> 2686271 bytes src/IMG_5189.png | Bin 0 -> 2713999 bytes src/IMG_5190.png | Bin 0 -> 2380107 bytes transcribe_notes.py | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 132 files changed, 2027 insertions(+)Show diff
diff --git a/out/1.txt b/out/1.txt new file mode 100644 index 0000000..d7259b1 --- /dev/null +++ b/out/1.txt @@ -0,0 +1,62 @@ +Ever Church +Swampy woods - fruit trees orchards Day 1 + +Winter - 1 orchard has trees in bloom - [unclear] + buzzing - bee pollinating & enabling trees + to live - slightly bigger than normal bees. + - dark bark, blue leaves, red fruit (deep) + +Town - mix of light & dark woods. + +Population 3k +No visible district - larger manor house in centre. + +Cider inn, cider. +Beeswaxed floor, a nice small +half elf playing a lute, much is half elf & human +family resemblance +Father Burnun - prize fighter +half elf - Gelissa * + +Box: +Baz - Invar +greying hair - paladin looking, did not get the plate. +Leonard Dirk +politely + +Shaun - Geblin (the mighty) +gnome, wild brown hair +glasses with no glass + +Farmer - old John Thornhollows. +Another 3 pigs gone +Vanished +6 missing but only has the ledgers +for 3. Had a group of around 30 pigs? + +3 daughters: Annabel, Isabelle, Cumberella + +5 keys on the bar - but changed to 4 & no idea +how it changed. + +Register with Earl - ? mercenaries. + +Pig's daughter keep best books, 1g each to go look. +Shepherd maybe missing some sheep. +Bess - cat missing but no rats recently either. +Rats missing too? + +Last summer built a hostel - house all the homeless +people, but not enough for homeless so letting out. Inn's +not happy. + +Go to Earl - half-orc (crunch looking), black clothing covered with birds. +Geese missing. + +- Butcher - serving new mushroom burgers since meat not coming + in. +- Woman - out of town come to find husband, come from Albec + for work, no one seen him, was putting up fences at a farm. + Malcolm Donovan - sent to jailer - birth mark on back of right hand. +- Apply for poverty tax - eligible - slides 2g over to her + for the anti-tax. diff --git a/out/10.txt b/out/10.txt new file mode 100644 index 0000000..a400fac --- /dev/null +++ b/out/10.txt @@ -0,0 +1,49 @@ +Half elf remembers Sir Alistair. + +Go see exchequer - half elf portly looking, Lawrence. +Ask about militia wages - he starts to panic. +Says we need to speak to the sheriff or the Justice. +Didn't do anything wrong. +Blames the scribes. Set them baron cut down. +So he was getting the payment for the other 23. +If we keep quiet he will help with more info if needed. +Gives us 50g. +8 carts, 16 horses, 60 swords. +Industrial angle: we have 2 extra horses. +58 days left on town finances. + +Safe: +small black velveteen case, gems. +3 treasure chest: gold/copper/silver. +2 bags platinum pieces. 6000gp. + +Earl's documents - file is empty. +Half elf remembers him having documents! Vicmar Danbos? + +Leave to go see Brother Fracture, 9:50. +- Gregory doing well - not had chance to heal the others, + will feed the rest. +- No way of communicating with other churches. + +Go see Gregory: +Remembers Dec started, thinks it was 7th/8th. +A few weeks ago according to the information from the town crier. +Can't remember anything from then until now. +Can remember 2x militia taking him to the hotel, +then waking up in the church. +Stonejaw & Ralfrex (2 of the missing militia). +Other people in the hostel - said it looked like a jail still. +Goat lady - Bagnall Lane - & various others. +Militia house open for about 1 month - no reason +for it to still look like a jail. + +Geldrin paints a sheriff sign on the cart. 10:15 / 10:30. + +Cider inn cider. +Homeless in town not really any but remembers Gregory now. +Remembers dead goat down Bagnall Lane about 1 week ago. + +Go to hostel. Investigate round side of building. +Stone stables, 2 carts & 4x horses in courtyard/stables. +Chain on the gates but padlock not locked. +Invar breaks wheels. diff --git a/out/11.txt b/out/11.txt new file mode 100644 index 0000000..6240d2d --- /dev/null +++ b/out/11.txt @@ -0,0 +1,40 @@ +Release horses - I get magic missile. +Go into "hostel" to fight them. One is Gelissa. +Has a mark on the side of her face. +Kill other guy, subdue Gelissa. +Some corruption on her mind - Invar restores both her +mind & wounds. 11:00. + +- Look around the "hotel". First 2 cells are empty. +Approx 10 people still in the cells - all townsfolk. +- Invar creates a lock for the back door. 12:30. + +Tell Brother Fracture to concentrate on healing militia. +He will take Gelissa & militia & cart to the Barracks +and use that as a base of operations. + +Decide to go to the Barrier over the +"Swamp Laboratory". 13:00. + +- Rest for the evening - on 3rd watch, pigeon lady + near the camp. Didn't get a full rest. + +Day 5 20th Dec, 07:15 +Approach barrier - 2 large carts in view. +Go off the path. Tie up the horses in a +dip in the land. Go round to approach from the +trees. + +Find Cromwell (ranger) quite injured. Looks like +the damage Geldrin did to Dirk accidentally. +- Tracks look like heavy steel boots (Goliath in full platemail? Core?) +- We are about 1/2 way between the shield pylons. +- Carts are empty - large group of people go towards barrier, + small group to the swamp. + +Follow the tracks - they seem to come back on +themselves & head towards town. Looks like just +Goliath. We want to put Cromwell safe. + +Decide to follow along shield towards larger group. +Hear a big group of people stood next to the barrier. diff --git a/out/12.txt b/out/12.txt new file mode 100644 index 0000000..c792c31 --- /dev/null +++ b/out/12.txt @@ -0,0 +1,39 @@ +Dirk feels something is watching us. +Then is attacked by sheep farmer grubby. +Killed it & 11 militia & 8 townsfolk. +8 townsfolk tied up with rope. + +Black dog thing disappeared after we killed it. +But the maggot stayed. Upon killing this it let out a +massive shriek & all the remaining townsfolk started to +attack. +Located & subdued halfling girl. 08:00. + +Short rest. 09:00 / 09:10. +Get horses & Cromwell, head back along +the path to find a patch of trees to +hide the cart. + +* Long rest. 10:30 / 18:30. +Sword enchanted to add +1 until Invar's next long rest. + +2 twins commanding them. 1 went to swamp, other +went to Barrier (we killed it). + +Go towards the swamp - following the tracks of the +swamp, tie up horses outside swamp. 20:00. +Following 4 individuals - Geldrin's compass is following the +same direction. + +Come to a clearing at the barrier with a stone +building in the clearing - marble dome is against the barrier +with a large telescope through the marble dome & +the barrier. Approx 10 rooms. No windows. +Tracks lead right up to the building. Built approx +1,000 years ago. + +Hear a strange humming - door reverberating. 23:00. +Enter building. 2x plinths, 1 empty, 1 that +looks like Core dismantled. Head clatters off & +rat runs through left door. +Go through door by plinths. diff --git a/out/13.txt b/out/13.txt new file mode 100644 index 0000000..569e6cb --- /dev/null +++ b/out/13.txt @@ -0,0 +1,40 @@ +Left door - library. +Shelves - all on one shelf missing "T" shelf in Astronomy. +Guess Trimoons information. + +Picture of a well groomed tiefling holding a baby girl. +(The Mage) one of the 5 who made the barrier. +* Vixago Eros * + +Paper work looks recent, drawer has been forced open - +diagrams of the stars. +Other drawer has rabbit/deer teddy, ring inside, gold band +with runes. +Ring is similar to Dirk's - sews the teddy back up. + +Vase - "part of me can be with you while you study, +all my love - Joy" + +Teddy ring runes (Mr Sleeps): "a pact in darkness made in sorrow to bring +back Joy" +Dirk's ring runes: "a bargain struck in shadow for souls to be held in infinity" + +Paper work - measurements of the tri-moon before the +barrier went up & 20 years after. TriMoon +seems to be getting bigger. Pre barrier it was +twice the size of the other moons - now it's 4x +as big as the other moons. +Geldrin takes all of the notes. + +Take an invisible cloak from the hatstand - wear it! +Dirk puts Geldrin on the hat stand & his clothes disappear. +When things touch hat stand they disappear. + +Day 6 21st Dec, 1:00 +Dagger & handkerchief fall to the floor. +Handkerchief - clean "J" in the corner. +Dagger looks like a letter opener. + +- Next room looks like a teleportation circle + with a bronze feather on the circle. Like the one the other + twin had; seems more powerful than usual. diff --git a/out/14.txt b/out/14.txt new file mode 100644 index 0000000..fed5ab7 --- /dev/null +++ b/out/14.txt @@ -0,0 +1,35 @@ +Cages in the next room (empty). Operating table (empty). +Boxes, guillotine rope - lots of blood & decay with sea & sulfur. + +Red door - picture of a young tiefling. Dirk recognises - +holding the wolpertinger. Very big portrait. +Big table - set but empty. + +Door @ end - kitchen. Well/bucket, doesn't look like it's +been used. Pull bucket up, pour water on the floor. +Humanoid skull with horns is on the floor. Horns are the same +as the race of the girl - 100's of years old. + +Trap door under owlbear rug in office. +Door outside office is barred shut. + +Trap door - 4 plinths, all have the suits of Core on them. +Geldrin goes down & suits light up, ask for password. +"Joy" & "Tri-moon" incorrect. +- Move onto another room. +Try to get through barricaded door. +Trapped door managed to get through. + +Potion room - cauldron looks like it is full of water, +fresh & clear. +Geldrin calls construct "Powerloader". + +- Another room - stairs & a door which says + "maintenance do not enter". Door is trapped with electricity. + Building seems protected by the same thing the barrier is made from. 01:15. + +- Room opposite - bedroom. +Tarnished vase with white flower in. +Chair which looks broken & open book on table +(seems out of place). +Open the chest - pulse paralyses Invar & Geldrin. diff --git a/out/15.txt b/out/15.txt new file mode 100644 index 0000000..891def1 --- /dev/null +++ b/out/15.txt @@ -0,0 +1,34 @@ +Construct kills whoever was upstairs (one of them). +Killed it. +Shocked Invar & Geldrin back from being paralysed. + +3 sets of footsteps walk past the room & stop at +guillotine door, come back & go upstairs. +2 come back - seem to be on guard. +Another 2 go to Joy's room & comes back. +All 4 killed. + +Short rest completed. +Go into Joy's room. +Open the toy chest. + +* Mahogany box - lock has a rune on it. Geldrin takes it. +* Wardrobe - 3 empty hangers. Dress she was wearing + when Dirk saw her isn't there. +* Bedside table - bottom drawer is trapped. + Medical equipment, syringe, crystals, ink, powder, + bag, herbs, empty flask, 3x full flasks. + Recognise 2 - Mirthis Fizzleswig & succour, don't recognise the other. + +Quill pen, ink & book, kids diary. +Last page: "Felt rough today, don't know how much +longer able to write. Daddy borrowed Mr Snuffles again, +Daddy's friend asked about the rings again. Daddy's friend is +creepy." + +Diary - bed bound for length of the diary, +approx 1 year. Robots clean & feed. +Daddy's friend (never named) making rings etc, +put in box which might help her feel better. +Not getting better - terminal. Daddy got +upset but no payment could fix it. diff --git a/out/16.txt b/out/16.txt new file mode 100644 index 0000000..cc719b6 --- /dev/null +++ b/out/16.txt @@ -0,0 +1,32 @@ +Trapdoor under the rug, wooden ladder down +into a store room, beanbag & toys, seems +to be a secret den. Dirk goes to the beanbag. +Little girl sat on it gets up & goes out: +"Maybe I should go back up. Daddy can see me in my room." +"Feeling better, glad because Daddy's creepy friend +is here so I can hide." +"He'll find me here, I should go to my hidey place." + +Go upstairs - opens up into a massive dome, +huge golden spyglass, crystals around the telescope +break the barrier. Someone sat at chair - back to us - +2x 8ft ugly human but wing creatures. Chair person looks like +creature we killed but all the parts are opposite +worm & dog like creature with the creature. + +Master asked to observe tri-moon. +No desire to fight us as killed his counterpart. +Worm is quite useful & rare. +900 years ago someone lived here. +Used the townsfolk to attack the barrier. +Give it one of the brass feathers to communicate +with the master for an audience: "Vann, if horrid mechanical +hellraiser sphinx creature." + +Garadwal? +Where is your army servant? Were those guys +instead... do not need to know us. +Co-ordinates required for triangulation need +to know where the armies strike next +month, so we can have freedom from the dome. +Striking the barrier increases the flow & maybe. diff --git a/out/17.txt b/out/17.txt new file mode 100644 index 0000000..710d484 --- /dev/null +++ b/out/17.txt @@ -0,0 +1,36 @@ +Flows so the fragment of the moon will +destroy grand towers & destroy the dome. +* It lives outside the barrier. + +Might just talking freedom seemed kind of true, +& "freedom from the confines of everything" was an +odd phrase. + +What would happen if creature didn't obey sphinx? +It would find him due to the pact made +in darkness? In sorrow? Looked forlorn - to find Joy? +Nothing. + +Tri moon is a crystal. + +- Sphinx cast out for practising unsavoury magic. +- Do we wish to join him? +He is one cell - trying to find two locations +to attack. + +- All agree to clobber. +- Kill them all. Worm thing dead, think it has + mind control powers. + +Papers on table - calculus & notes on the Tri moon. +Books on biology, incurable diseases etc. Book on the effects +of poison - slowbane - acts like heavy metal - symptoms +match Joy's diary. +I wrote a paper on it - very rare because people can't +make it but turns up in the black market. + +Shield pylon city sometimes get a similar sickness +being investigated. Very rare & takes a lot to take effect, +possibly same colour as the shield crystal. +People get sick and come to Goldenswell +& start to get better so not really looked into much. diff --git a/out/18.txt b/out/18.txt new file mode 100644 index 0000000..cee10e9 --- /dev/null +++ b/out/18.txt @@ -0,0 +1,38 @@ +Pile of goods - spices, wine, cherries, parchment, +platinum, gems, silk. +Saja digel / fire from azureside - have a blight. +Copper Dodecahedron (magical). + +Invar identifies Dodecahedron - spell facts! + +21st Dec, Day 6 still. +Geldrin goes to sleep in Joy's room & realises +the lamp is a gem. 3:30. +Long rest level up. 12:00. + +Chest itself is magical - designed to cast +paralysis if somebody other than him opens it. +Invar tries to identify it - very magical chest. + +Check out the skull in the kitchen - has a +deformity in the back of the skull & looks a +year younger than Joy - about 7, possibly 1,000 years old. + +Well goes down about 50ft, water down there. +Look for information in the library - built at the same +time as the barrier (in tandem), not as mainly back +then. Was put here to observe the moon, designed +specially. Caverns underneath the area found & +built here for this purpose. Summoning circle was +connected to different towns & cities to get building +materials then supplies after observatory was built. + +- Send message to Bushhunter: + - townsfolk have memories + - creatures slain + - at observatory + - message from Geldrin for Grand Towers wizard Brownmitty + +Waterwise, go to check maintenance area - disarm door. +Barrier is directed locally around the observatory. +Found a really old blanket and small pillow - really decayed. diff --git a/out/19.txt b/out/19.txt new file mode 100644 index 0000000..cd9d4ff --- /dev/null +++ b/out/19.txt @@ -0,0 +1,36 @@ +Possibly Joy's other hiding place. +Find a trap door - locked but no way to pick. +Handle feels hollow. Geldrin used shield crystal to open. + +Stone steps into darkness - down very far. +5 lights with ends in a door painted with white flowers. +Air is filled with solemn music in the cavern. +Water going through barrier fizzes. +River bank has a little shrine, 6 grave stones all +marked "Joy", all have the everlasting flowers on. +One has been disturbed. + +Joy - died in chamber. +Joy - 3 years old, lung infection. +Joy - 2 1/2, unknown complications. +Joy - 5 years old - nothing written. +Joy - 9 years old - died from poisoning. +Joy - 7 years old, birth defect - bones left in the +open & raided. + +Follow the stream - quite rocky & roots. Mushrooms/mildew. +Mushrooms get bigger, much bigger than they should be. +15-20 mins of walking - everything is bigger than it should be. +Lead out to a cave entrance. +Everything seems much bigger than it should be; +everything seems to get bigger towards a point. +Massive butterfly flies past. 13:30. + +Get to a lake, massive lily pads & frogs, +with massive flying sparrow. +Something in the lake seems magical (centre). +Put tris into the lake, nothing happens. 14:00. +Geldrin attempts to raft to the middle but falls off +and is rescued by me. +Give up on the lake for now as don't have anything +to get the magical thing in the middle. diff --git a/out/2.txt b/out/2.txt new file mode 100644 index 0000000..cf6e726 --- /dev/null +++ b/out/2.txt @@ -0,0 +1,52 @@ +Funds from the hostel go to the anti-tax +since wife left him - going to disappear. + +Census - in spring - 3c for the number, +payable in the morning, ask half elf. +- No trouble in town. +- Bushhunter - registered mercenary. + +Last 2 weeks: +Bushhunter came to town 2 weeks ago. +Winter apple trees started to fruit. + +Last 3rd Moon was 1 week ago. + +Invar - delivered weapons but no militia? +Order was put in a few months ago. +About 5 left. Earl downsizing. +20 weapons, 10 armour. +Can't remember any of the old militia. +Go to jail & talk to sheriff for current militia +forgetting names. + +Bushhunter - had tubes & pipes. +Used to do a lot of swords. + +Jail +- Now believes should get a package from + a crazy haired gnome. +- Location changed. Used to be where hostel + used to be. +- 2 empty cells. +- Laws - big scar over her eye. +- Her, sheriff & other 2 deputies (Bob). +- 11 years, always something so old there isn't anything. +- No reports of people missing. +- Home theft week ago. +- Bushhunter doing a sale of giant bugs in frames, + last sale 6 days ago. +- Shepherd had new fence? Yes. + +Terry left town - 2 months ago +Johnjaw passed away +Abo. arrested +Ralfeck - Buckworth somewhere +None left in town +43 used to be hired. + +Parch of militia statute charter to have sufficient +militia for close to barrier. +1100 militia - 45,000 population. +Due in a month to check; last visited 5 months +ago. diff --git a/out/20.txt b/out/20.txt new file mode 100644 index 0000000..d8de6f0 --- /dev/null +++ b/out/20.txt @@ -0,0 +1,34 @@ +Back at the observatory, keep going round. +Atriose the maintenance area - where we think front door is, +it doesn't seem to be there. Runes on wall, Geldrin copies. 14:30. +Keep going round & original entrance isn't there. + +(Earthwise) Bed at earthwise changed to a flower bed +and barrier split isn't there. + +(Firewise) No trapdoor but instead 2x statues 1/4 of the +way down each wall. + +Throngore - huge muscular, 2 arms, 4 legs, 2 horns. +Left & dark gold; crab claws; taloned human-like hands; +flame, like skin. God of destruction & decay. +Igraine - pregnant elfin woman, rose & scythe in hands, +goddess of life & harvest (Alabaster stone). + +(Airwise) - Wall like it would have been the door +but there wasn't a corridor at the door to account for it. +Go back on ourselves - statues same. + +(Earthwise) Flowers dead now. +Invar goes round airwise to statues & back dead, +goes back round & shouts for us to come round but we don't hear him. + +(Airwise) - runes are bleeding and seem different. +Demon magic shit. Blood hurts a little bit when touched. +Geldrin copies them. +Invar gets a bowl - checks its acidity. +Tiny bit acidic, seems to be real blood. + +(Firewise) - Trapdoor is closed - we left it open. +This one is fully metal. Same lock as the other one. +Metal ladder going down to a metal floor, all metal. diff --git a/out/21.txt b/out/21.txt new file mode 100644 index 0000000..667e404 --- /dev/null +++ b/out/21.txt @@ -0,0 +1,29 @@ +Around exterior of the room are 8 glass chambers, +6 empty, 2 viscous liquid with something in it. +Books next to it. +It is a non-description human statue without genitals, +with no set features, with arm out, palm down to the floor. + +Dirk mentioned hanging his coat on it. Geldrin tries a ring +and it fits perfectly. Dirk adds his. +Diary - seems to be trying to perfect a clone spell, +matches up with the Joys in the graves. +Dirk checks in the chamber: something in there. +Rings start to glow slightly. 15:30. + +Back up. +(Earthwise) - no bed, but barrier split is there. +(Waterwise) - door is there & pipes etc. +(Airwise) - triangular barrier. +(Waterwise) - same place both ways. + +Geldrin manages to hold the book open +and copies writing - deciphered as an illusion spell. +Takes the book. Front has an eyeball on it. 17:00. + +* Go to look at the moon. +Crack open maiden's claw - good wine. +See crystalline refraction of the moon & see +a smaller fragment at the front, separate & much closer than the moon. +1/2 way between planet & moon, locked in sync with where the moon is. +Moon is closer - think it will take another 1,000 years. diff --git a/out/22.txt b/out/22.txt new file mode 100644 index 0000000..eaec7f1 --- /dev/null +++ b/out/22.txt @@ -0,0 +1,30 @@ +If more magic goes through shield pylons this will speed it up. +Hitting it exactly between the pylons - conjunction +with some of the issues from town crier (pg 8). +Barrier starts flashing & lighting up. +Seems to be something attacking it. +Moon shard seems to be coming closer with the attacks. +Dirk draws boobs on the chest; they disappear after a while. 01:00. + +Day 7 22nd Dec +Go back to the cart with the box of copper. +Fashion a lock for the front door of the observatory. +Take Cromwell & Isabella back to town with carts & horses. +Restoration cast on Isabella - seems confident in herself. + +Day 8 23rd Dec +Go back to barrier to get remaining people. +8 people left - Chorus was looking after them. 12:00. +Geldrin paints wagon white & we head back to Everchurch. +Basilisk reply - "I'll meet you there". +Birds follow us back. + +See 6 horses coming from Provith (armoured), Harthwall militia. +Have their livery on: stag & dragon rearing up. +Arith (male) healer, Hthiman (male), elf (female). + +Few years ago near Ironcroft Firewise, something came through +the barrier - Invar was there. +Tell them about mind wipe & citizen stealing, +lack of militia etc., barrier attacking. +They report back to Lady Thyrpe. diff --git a/out/23.txt b/out/23.txt new file mode 100644 index 0000000..c1ea89b --- /dev/null +++ b/out/23.txt @@ -0,0 +1,39 @@ +Healer restores the townsfolk, slightly. One with tentacle +arm pulls off & left with stump. + +Day 9 24th Dec, 13:00 +Arrive back in Everchurch - streets seem busy & panicky, +talking about missing people & odd faces. +Go to see Brother Fracture - people being reunited +with loved ones, & healing happening. + +Earl has gone missing - sheriff taken over & called for help. +Core made it back to town - locked himself in the pub +with Mr Peel looking after him. +Earl disappeared when memories came back. +Set a cabin up at half way point. +Harthwall ladies request a meeting with us +(they get told we were heading to Seaweed). + +Drop Isabella at Cider Inn Cider. + +- Go to see Core - lady gets Mr Peel instead. +Core is ok, will need further repairs. +Came to town from earthwise, only spoke to say "Core da". +Geldrin thinks he tried to say "core damaged". +Go to see Core. Sat motionless in a chair. +Peel thinks he needs more crystal, a repaired Core came in +the post 1 day after Core arrived. One word on it: "GUILT". +Not addressed to Peel. Pub been open for 5 years. +"The Guilt" - was the Earl of Brookville Springs. + +Back to Cider Inn Cider, take rooms & have baths. +Basilisk - find Groundhog, give coin - old grand tower penny, +doesn't like that we donated the coin to the church +(1,000 year old coin). +Keep on good side of mage Justicars in Seaweed. +Very structured town. + +Eat & recover. 17:00. +Back to see Brother Fracture. Basilisk brought the coin - +he had 10 left, brought for 1g. diff --git a/out/24.txt b/out/24.txt new file mode 100644 index 0000000..f08c26b --- /dev/null +++ b/out/24.txt @@ -0,0 +1,33 @@ +Day 10 25th Dec +Get up & on the road with Isabella. +Get towards a day's travel & see a 4 storey building - +trading post inn, "The Wayward Arms". +Merfolk on the sign. Get Red taken for the horses. + +Some play is taking place on the stage. +11 o'clock, rooms ready, 6am out. +Extended sleep till 8. Left stairs, 2nd floor. +Timothy served us. +Elven lady comes on stage & sings. +2 ruffians (half elf) enter pub, ramshackle armour, +have a killer air about them. +Sit down & open a bag on the table. +2 halflings enter, seem to be a couple & sit at +last table by the door. +Somebody brings a giant moth picture down the +stairs & hangs it up. 22:00. +Half elves look at clock. +Staff move people & pull tables together - setting up for Mirth?!? +Hear music. People rush over to the gathered tables (inc halflings). +Mirth, halfling, enters dressed as a ringmaster type (smarmy), +claps his hands and things appear on tables: +pastries, wine, bottles etc. General store? +Famous alchemist (Mirth's Fizzleswig). + +* Back here in 3 days * +Brookville Springs next. + +Yadris & Yadrin (half elves) - Dirk overhears "taking my +mind off tomorrow". Sent to investigate - problem solvers, +didn't say what they were solving. Work for a lady, +already up in her room. diff --git a/out/25.txt b/out/25.txt new file mode 100644 index 0000000..e6adf18 --- /dev/null +++ b/out/25.txt @@ -0,0 +1,39 @@ +Day 11 26th Dec +Morning announcements! +- Penta city states high alert due to attack on barrier. + Justicars reporting to major settlements. +- Shields of the Accord report army moving Airwise, + led by Baron. +- Loggers at Pine Springs missing. +- Heavy blizzards caused travel to Rimewatch impossible, + scholars trapped. +- Goliaths of Firewise deserts seeking refuge in + Dunenseed & Sandstorm; creatures of Air led by 6 armed + monstrosity pierced the barrier. Colleges deny possibility. +- Borsvack report gnoll activity. +- Break-in at Riversmeet menagerie. Black market + confiscations & 50g fine. +- Everchurch's villainous Earl ousted by sheriff + & brave deputies. Nefarious activities thwarted. + Restoration under way. +- Hartswell & Goldenswell armies clash with + giant roam Firewise of Hylden. + +Head to Seaward. +Perfect circles of houses with a coliseum type +building in the middle - used for horse & dog races etc. + +Airwise path coming into the city - wagons going +back & forth filled with the marble type material +used for the buildings & roads. +Pylon outside of the main walls of the city. +Population: elves / dwarves / gnomes. +Park the cart (Paynes horsebreeder), 21:00. +Go to coliseum - midday tomorrow. +Forge charger race. + +Inn - The Rotund Rooster, Tiffany. +Roads closed due to winter so no ice. +Don't have fresh water - have to order it in. +Marble type material with dark blue vein effect. +Seaward run by stonemasons guild - elf. diff --git a/out/26.txt b/out/26.txt new file mode 100644 index 0000000..7a2d2c9 --- /dev/null +++ b/out/26.txt @@ -0,0 +1,35 @@ +Nearest inn for a room - Water by Earth Waterwise +or Night Candle. Road 7, 3 rings inn. + +Water elementals - rumours are they can walk through barrier. +Some alterations with the council - collective working as one. +Water problem has been in the last 20 years. + +- Chunky chicken cooker - sponsored by Rotund Rooster. + Redesigned as used to be a griffin - favourite. +- Payneful Gamble - bad at start time. +- Thunderbelch - name. + +Inn attacked by water elementals? Works at the cliffs. +"No one else has been attacked." + +* Charge mysterious owner, maybe an outside duke or Earl. +* Halfling asks Invar if we have any skulls. Green skin goblin + for his master, not allowed to say from round here (really). + Pays well for clever people skulls. + +Go to Night Candle - Candle lit - plush furnishing. +Reason for the barrier was to keep the elementals out, +but rumour is they can walk through. + +Goblin peers into Dirk's room @ 3am. + +Day 12 27th Dec +Head to shield pylon - pylon is like a gold ring +with the crystal set in the claw & runes around it. 7:00. +2 guards outside the keep. + +Rumour - walking through chicken farm at night. +Barrier flickers for about 1 sec - happens often, +comes from Dombold Castle? but only for the last few weeks. +Only notice near to pylon. diff --git a/out/27.txt b/out/27.txt new file mode 100644 index 0000000..3022060 --- /dev/null +++ b/out/27.txt @@ -0,0 +1,35 @@ +Commotion at temple - guards carrying female elf +out of the temple. Arrest warrant, public indecency +& corruption. Cross temple with vast archways, +four doors, circular altar in the middle. 08:00. + +Priest/Council fabricated some charges - thinks +Architect using dark magic to make himself smarter. +Architect worships light gods? Alutha on his left femur, +"Ilmen Thion". + +Council OK. +Issues - barrier & water elementals. +Row 1, ring 3 from centre (public forum), meet Thursday +@ midday, 4 hrs. Representatives Monday/Friday. + +Place bets - The Big Bad Beauty. +My missing hangover - 2 runs, from another world, +2 guys acting as a shell company for the Guilt. +Races 4/1 odds on all - The truffle hunter. + +Hear a yelp from the side street - tabaxi has following us +(goblin) - tells me to stop letting him follow us & gives me +a piece of paper. Goblin will keep following us because we might +have skulls. Dirk says we can leave one for him at his house. +He takes us there. Mainly house - rat droppings etc. +He has 3 skulls, will meet his master when he has 5. +5 silver for skull. + +- Maybe cadavers? +- Go back to inn via a temple to see if we can locate skulls. + +Fire temple - war, justice & hunt. +3 people in congregation listening to priest recite poetry +about battle against Soot the dragon. +Congregation pick up wooden swords & start practicing. diff --git a/out/28.txt b/out/28.txt new file mode 100644 index 0000000..ae00216 --- /dev/null +++ b/out/28.txt @@ -0,0 +1,32 @@ +Brother Cashew - his problems in town: +- Water elementals not killing, but heard town deputies + found drowned near cliffs with fresh water. +- Rivers & lakes in 10 miles are bad, previously got from wells + & then gradually went bad. +- Want to check the skulls for the water differences + (trying to obtain some for Scum). + 50 years - coughing sickness, no signs of damage + other than burning - see some malnourishment at early age. + 25ish - signs of damage to vertebrae, stabbed, + nothing obvious. + +Public records will be available: Town hall, 4th ring waterwise. +Back to inn for Isabella. 10:00. + +Arena vibes in the city. People really finely dressed. +Sit in section C. +Race 1 bet - 5s, Wimpy Cheese, 4/1 - lost. +Race 2 bet - 5s, Wove's gravy, 5/1 - lost. +Race 3 - 5s, The galloping salesman - lost. +Race 4 - 5s, In it for the sugar, 3/1 - lost. + +Race 5 already bet: +Sphinx style - stonemasons guild. +Unicorn - first place worker, forever 1st. +Horse - Payne horsebreeder. +Gryphon/chicken - Rotund Rooster rooster / chunky chicken. +Nightmare - on hire, Night Candle Inn. + +Win 9g. +Wooden barrel - Bud barrel makers - Big Bad Beauty. +Gryphon/cow? - My Missing Hangover. diff --git a/out/29.txt b/out/29.txt new file mode 100644 index 0000000..58fb384 --- /dev/null +++ b/out/29.txt @@ -0,0 +1,29 @@ +Race: Truffle Hunter wins! mice. + +Town almost finished - walls up to strength. +Water problem too - looking to sort. +Worrying rumours about members of the council refer to forums. +Odd out of place formal announcement. + +Go find Isabella's friends. +Knock & door swings open - middle class house. +Blood on the floor of the parlour. +2 halflings hanging from the ceiling by their feet. +Male intestines over the floor (pattern?). +Female looking at us but body upside down & face is right way. +- Suspect someone has done a divination spell using the intestines. +- Not been dead long, but not warm. +- Front door broken open - engineered force. +- Physically kicked over candelabra. +- Movement but nothing showing a struggle. +- No active magic. Divination was used & same type as used at Everchurch. + +Hear heavy wing beats - gargoyle, 6ft, looks like +it is made of clay - not usual in town. +Isabella says it's from her aunt (family guardians). +Drops bag, sopat, and flies off with Isabella. + +Militia come to see what is going on. +Direct inside & they take us to see the council. 17:00. +Store weapons in a chest before going in, also my medic bag. +Elementarium - elf. diff --git a/out/3.txt b/out/3.txt new file mode 100644 index 0000000..6be03fb --- /dev/null +++ b/out/3.txt @@ -0,0 +1,43 @@ +Nobody remembers Gelissa except +Gedrin. +Invar remembered for a split second. + +* See one of the people gets up and walks + out. +Chase him. +Hood drops, face stitched below eye line, +mouth missing a row of teeth. +Bone splint fingers & split tongue. +Has birth mark on right hand - Malcolm. +Was a human male - had to use magic for these +changes. + +Guardwell - Terror of the Sands, nightmare of the darkness. +He will consume your soul. +- Tales of the sphinx who learnt dark magic + experimenting on itself. +- Remembered Isabella and that Gelissa said she + hadn't arrived. Remembered her again! + +Took Malcolm to the jail. +Deputy went to get the sheriff - Jeremia. +Now remembers 3rd daughter Gelissa. +Now remembers homeless people. +Makes us deputies - we get badges. +Sir Alstir Florent. + +Bar 5th person, human warrior - helping +out with us & picked one of the keys +and remembered him all the way +up to when we went fishing, +around the time Dirk saw the rat. + +Gristak Brinson - mayor. + +Day 2 +Head back to the town hall. +* Received whole census for John's pig farm, 9:00. +5th name on the ledger has been scribbled out. +Claims it was a mistake. +- Unemployed & holdings worth <50g - anti-tax criteria. +3g anti-tax. diff --git a/out/30.txt b/out/30.txt new file mode 100644 index 0000000..7f190f2 --- /dev/null +++ b/out/30.txt @@ -0,0 +1,27 @@ +Admits pylon is being interfered with. +Needs Justicar gone - requests us to look into the pylon. +Justicar has ulterior motives: get access to shield pylon. + +2000g if we keep the information to ourselves. +Get 500g now to rest on completion, solve or information to help solve. +Extra for water elementals - 200g each. + +Flickers - 5 mins to 2-3 hours, only from sea to Seaward +& nothing from Everchard direction or Dunbold Castle. +Also state nothing is coming their way. +- Started approx 3 weeks ago, keeps log of it. +- Saw tri-moon barrier attacks; they were different. +- Halfings suspect pirate - captain of ship allegedly has crew + but nobody has seen them. People go missing & turn up dead + & magically disfigured. Human/merfolk, has a beard & makes + possibly rodent-style magic. +- Peridot Queen - Elementarium's aide - DO NOT PISS HER OFF. + She will help us. +- Water spirits have usually made it through; more are making + it through now along with the other elements. +- Try to keep body count low. 18:00. + +Retrieve weapons. +Sort horses - 1 day paid. +Get rooms at the Scarred Cliff. 19:00. +Go to barrier. diff --git a/out/31.txt b/out/31.txt new file mode 100644 index 0000000..56eb494 --- /dev/null +++ b/out/31.txt @@ -0,0 +1,29 @@ +Guards show us around. +Gherion - sage on duty at the moment - gives us +the book to view. + +Time & duration of the flicker: +2 weeks - getting worse, increasing frequency. +Longest 3 secs, very random. +Approx 9am a bout of outages. +None around midnight. +Clam Clock in the home for quarrymen. + +- Don't know how far the flickering goes between + Seaward & Dunbold Castle. +- Happens towards the pylon, crackling in a + horizontal pattern & doesn't go past the pylon. +Crystal has thousands of tiny runes all around it. +None of the runes seem to have been tampered with. +Crystal is very clean. +- Meteorites sometimes come down. + +Geldrin touches the barrier with his crystal shard +& it goes crazy. Guard said it seems like +the flickering but more intense and didn't go as far. + +Justicar - just checked the books & the crystal with +a eye glass. +Peridot Queen. +Iaxxon - guardsman - guarding quarry, water elementals +rushed past him like he was in the way not attacking him. diff --git a/out/32.txt b/out/32.txt new file mode 100644 index 0000000..6b1af4f --- /dev/null +++ b/out/32.txt @@ -0,0 +1,29 @@ +Sleep - get horses & leave for quarry. + +Day 13 28th Dec +Follow barrier - see ripples, seem worse the further away we get. +Duration & frequency don't change. Pylon seems to be bringing +it back under control. + +Ground is very dry & loose - not many plants. +Get to a quiet point - see a horse in the distance +coming towards us. Green, tall elven woman, black hair, +looks very, very extravagant (Peridot Queen). +Strokes my face & joins us towards the cliffs. + +- Worried when she looks at Geldrin. +- She's seen all 5 pylons. +- Made it to the cliffcutter town. Murky, dwarves & gnomes. +- Barrier problem seems to originate by the cliff. +Track towards the barrier by the cliff. 21:00. + +* Cliffs are sheer drops with rifts & barriers. +* Water is choppy & quite dangerous. +* Recently cutting close to the barrier. +* Break into a tool shed for the night. +Wind picks up outside for a moment. +* Barrier around the cliffs is the emanating point, about 20 mins away. +* Not much wildlife around here. 23:00. + +Morning wave sounds are getting louder - Peridot goes, +and 2x sea creatures rushing up the sides of the cliff. diff --git a/out/33.txt b/out/33.txt new file mode 100644 index 0000000..dfdd925 --- /dev/null +++ b/out/33.txt @@ -0,0 +1,25 @@ +Day 14 29th Dec, 06:00 +Elementals come over the side of the cliff & +reform as bulls - they follow the path away +from the barrier. + +Peridot Queen arrives - has wings, appearance of an elf. +Geldrin, Invar & Peridot Queen go down in a lift right next +to the barrier (1 meter away). Mine shaft with some wooden +structure beams, branches off away from barrier & parallel. 08:00. +Further down, wooden wall constructed saying "danger of collapse". +Hear creature. Man stood there, human with scar, +pushing a plank back into the wall. +Peridot Queen pays him one of the old copper coins. + +Transforms into a green dragon. +Incident a few days ago came, 30 years not had any problems until now. +Beasts like bulls shot up from disturbed part, towards the wilderness, +shrieking like a banshee. +Gnome says "smell like candy & has legs" probably lies. +On dwarf has barrier duty & found a small crystal on last duty. + +Fly out of the shaft, and Aliana & Dirk see a shape. 8:15. +See a group of miners, a dressed differently human comes over +to them and points to us. Human walks off towards the barrier. +- The dwarves then attack us: 4x dwarves & 1x gnome. diff --git a/out/34.txt b/out/34.txt new file mode 100644 index 0000000..fdd8039 --- /dev/null +++ b/out/34.txt @@ -0,0 +1,29 @@ +Gnome throws a blue rock on the floor. +A small elemental comes out & attacks Geldrin +(possible spell effect). + +Manage to knock one out & the guards come over +& bring him round. He says: +"He's coming, Terror of the Sands is coming for you all." +Guard knocks him back out. + +Guards take him back to town. +Private Burke wants us to visit the station before we leave. +All have 5g & old copper coin. +Gnome has two other blue crystals. 8:50. + +Gets to 9:00, more obvious flickering but nothing obvious. +Believe the human may have come through the barrier. +The human came from approx where the point of origin is. + +Invisible Joy appears and tells Dirk they are in pain +and it burns - asks for Dirk's help. +- The thing causing the barrier issues? 9:50. + +Follow the salt trail from the water elementals. +Salt trail thins out but no sign of them. +After a time land becomes more lush (approx 7 miles +from the barrier) with insects which we didn't see before. 11:00. + +River ends on the cliff and comes off in a waterfall +(shallow river). Path ends at the river, about 20 years old. diff --git a/out/35.txt b/out/35.txt new file mode 100644 index 0000000..c5806a9 --- /dev/null +++ b/out/35.txt @@ -0,0 +1,31 @@ +River appears to contain water elementals. +Elemental says: +"Pain gone, no hurt me. +You come take me like others, take we escape +through pain, closest good water." + +Geldrin frees the two in the blue crystals. +Elemental wants us to free the rest. +Death dome - came through hole made for poison water. +Hole hurts, in the sea. +Elemental stealers trying to free some creatures trapped underground. +Poisoned one - made of poisoned crystal one. +Powers death dome. Garadwal was one with the moon rock +but escaped. + +Scaly dragon with web fingers goes through dome - +blue/grey colour. One big one with four arms & tridents, +poison water, & Garadwal with tridents. +Hole by cliff face at bottom of sea. +Occasionally somebody/thing goes down to annoy the crystal. + +Head back to the town to speak to militia, 13:00. +Salinas - earth & water - the guy our attacker is talking about. +Soon free like our mother Garadwal - sand, earth & fire. +Barrier is enslavement. +8 altogether - soon find hidden lair of oppressors, +used as batteries. + +Element diagrams: +Earth / ooze? / water / ice? / air / magma / lightning / smoke? / fire / sand. +Second diagram includes salt, ice, lightning, smoke, magma, sand. diff --git a/out/36.txt b/out/36.txt new file mode 100644 index 0000000..e6a0dfb --- /dev/null +++ b/out/36.txt @@ -0,0 +1,31 @@ +Theories: +- Needs of the many outweigh the needs of the few. +- They tried to destroy the world & got locked up. +- Preemptive locked up. + +Water back: 10 miles down the path from Seaward (firewise), +10 miles down the coast from the barrier. + +Head back to quarry. 16:00 / 18:00. +Door in the lift right next to the barrier. +2 panels missing from the hole. +Passageway descends down behind the wooden panels. +Goes down quite a way - has been excavated on purpose, +not a mantle seam. Widens out & opens to a real old +built wall (1,000 years old). Opens into underground structure. +- Right old door - sign of aging, handle hurts. +Old gnome walks out, realises we are there. +Gives him a coin. "Underbelly?" - truce in place. + +Get a tour prison: +Down corridors, turn left many times. +6 corners, huge metal door - dragon clearly holding ring. +Go through - see barrier at far wall. +Smaller barrier encompassing a massive salt dragon - +sweating salt for 20 years into the earth. They are +trying to free it. +Room was full of odes & ends & copper pylons were there +but they removed them. +Runes on floor barely visible as covered in salt. +Another room has 4x curved copper pylons, removed 20 years ago - +dragon was already seeping salt. diff --git a/out/37.txt b/out/37.txt new file mode 100644 index 0000000..a775e84 --- /dev/null +++ b/out/37.txt @@ -0,0 +1,28 @@ +- Keep Justicar out of it down here. +- Down to the left is the original entrance. + Go look at it - similar to a room we have seen before + in the observatory? Examined in the last 20 years. + +Big black dragonborn comes in - Turquoise's boss, not many around. +- Cult looking for a laboratory. + +Basilisk - there's a laboratory of a similar vein +20 miles earthwise along the barrier. + +Head back to town. 20:00. +Common room - sharing with one other person who hasn't shown up. + +* Message to Basilisk * +He comes to us. +Knows little about salt elemental. +Black Scales - mercenary group, work for Infestus (black dragon). +Basilisk went to check observatory - couldn't open the chest +& couldn't get in the golem underground room either. + +Garadwal: +Prison at lake by lab? - ooze one. +Frozen near Rhinewatch - ice one. +Garadwal - sand? Seems wrong as found north of Aegis-on-Sands. +Is he an elemental? + +Go speak to Elementarium guy in Seaward. diff --git a/out/38.txt b/out/38.txt new file mode 100644 index 0000000..731c33b --- /dev/null +++ b/out/38.txt @@ -0,0 +1,31 @@ +Day 15 30th Dec +Head back to Seaward. +Follow a caravan of stone back to Seaward. +Get to town - raining. 19:00. +Need to see Elementarium; actually dressed this time. + +Quasi Elementals - don't have their own plain. +Known 8 major plains; light & dark effects to create the 8 main ones. +They became their own things & started to fight. +Not become that powerful. + +E + W + L: ooze/slime/life - spark of creation. +E + W + D: salt - makes water bad & crops won't grow. +E + F + L: metal - positive construction. +E + F + D: magma - destroys farmland etc. +F + A + L: smoke. +F + A + D: void - absence of everything, nothingness. +A + W + L: ice. +A + W + D: storm. + +Where does sand come into this? + +Goes down the trapdoor after talking to us about salt water elementals. +Dirk listens - talking to somebody about it. +They don't exist. Salt & water are their own things. +Pollution. Salt elemental poisoning the water elemental. + +Dirk - crystals helping the barrier? Elementarium believes it, +but he needs the Justicar to believe it so she leaves. +Geldrin to try to sway Grand Towers to get her to leave. +Rhonri or Revir might have an obsidian bird to relay a message. diff --git a/out/39.txt b/out/39.txt new file mode 100644 index 0000000..315108a --- /dev/null +++ b/out/39.txt @@ -0,0 +1,32 @@ +Arrange to meet back with him @ 9:30. +Dirk asks about Garadwal - he goes down to +the chamber & retrieves a dwarf skull & asks +it the question about Garadwal. + +The information you seek is not for your kind. +He is imprisoned in the prison of the Sands. +Brutor Ruby Eye - troublesome being, wizard of great power. + +- Shows us the skull room - he talks to them for information. + +What would happen if Garadwal escaped? +It would be bad indeed. The barrier would be weakened by the loss +of one of the 8. He was the only void they could find. +If one was to escape it would be him. +Feedback from the destruction of his prison would have damaged the others. + +Geldrin tells him of the tri-moon shard. +Brutor knows of the first crack. Envoi was tampering with it for his +own means, tampering with the containment device, & if something +happened to him it would be bad & cause the crack. +Wizards didn't agree of their entrapment but they all agreed +Garadwal needed to be contained. +Ooze was a good one. +Ice & storm were put in the same chamber as land was tricky to be dug. + +Stop leaking? Maybe sigils out of whack. +Brutor killed by black dragon. +Demi lich - how he was made. +Maybe a way to reverse the polarity. +! Spinal! Brutor's password. +Winter Roses? Envoi's password. diff --git a/out/4.txt b/out/4.txt new file mode 100644 index 0000000..ff800ff --- /dev/null +++ b/out/4.txt @@ -0,0 +1,56 @@ +Thornhollows farm Census April 4th + +registered: +wife Sarah 47 +John 50 +Annabella 18 +Isabella 16 +Clarabella 14 +seeing sheep farmer's son + +Paternal grandmother Bella. + +2 sounders of pigs: +1x matriarch +3x breeding boars +2x breeding sows +1 has 17 female younglings +other has 21 female younglings +No males. + +Paid tax as billed. +Farmhouse, 3x orchards, stable, veg garden. +2x outbuildings which back onto a hedged sty. +- Planned employment: 3x hands. +- Grazing rights for area in edge of swamplands. + +Walk to Thornhollows farm, past orchards & brewery, 9:45. +Farm surrounded by stone hedge. + +Pass 2 ravenhound looking dogs - girl walking with them, +black hair, missing from census? +Craven dogs, breeding pair, mimicry noise, have puppies. +Approaches us - Annabella. +- Younger sister on the porch. +- 3 puppies on pillows next to grandma. + +Books - everything tallies until about 1 month +ago. Scribbling out & removed without explanation, +think there should. +Missing 12 pigs in total - should be 57. +Records say should be 51 they've recorded. +6 missing over the last 2 weeks: +actually 46. +3 last night, before last +3 a week ago. +- Missing pigs went overnight. + +Inconsistencies start about the time Sarah left. +45 +Cat is missing too, about 1 month ago (black cat). +Nights of disappearances, not locked up at night. + +- Large door to enter the hedged area, looks densely grown. +Confident there is no dig through. +Hill giving 4 foot of hedge to get in but no +advantage to get out. diff --git a/out/40.txt b/out/40.txt new file mode 100644 index 0000000..953476c --- /dev/null +++ b/out/40.txt @@ -0,0 +1,33 @@ +- Halfling killers. +- 8 things linked to the poles. +- Pirates. +- Elementals. + +Received downpayment for our work so far: 200g. 20:30. + +- Put horses into the stables. +- Stay at the Night Candles. + +Day 16 31st Dec +Head to town hall to see Rewi Lovelace - gnome. +Room is very messy. +Obsidian raven is pulled from a drawer, called Errol +(but not really). Justicar causing more problems than solving. +Request further evocation spells. + +Rewi - thinking on how to enhance the pulley system at the cliffs. + +Retrieve horses & cart and head earthwise. 10:00. +Limit: sis poor? +Newhaven - Earthwise 4 miles, Stonebrook Earthfirewise 3m. +Continue earthwise towards Newhaven. +Land starts to get lusher & seems to be at the edge +of the salted area. 12:00. +Lady at a well - the only freshwater in the area. +Others have been boarded up as water is bad. +Mayor runs a farm - keeps chickens. Full up water skins. + +- Road out of Newhaven in disrepair. +Outside of town grass dries up again. +Town seems to have good water as an anomaly. +Not many birds around. diff --git a/out/41.txt b/out/41.txt new file mode 100644 index 0000000..99dabc8 --- /dev/null +++ b/out/41.txt @@ -0,0 +1,24 @@ +Nothing around to indicate a laboratory. +Obsidian raven appears - suggests meet up with Justicar & work together, +wants our location. Don't give it to him. Flies back to Seaward. + +Keep going to 10 miles away & 1 mile from barrier. +Find charred earth - last few days - campfire & rations - cultists? +See some tracks, 5-6 people camped. Prints show they are searching +for something. +Nothing obvious. Follow tracks towards barrier; they stop & we see +acid corrosion & blood speckles which look to be swept over. +Black dragons have acid. Green is mist. + +Geldrin checks the compass & we follow it about 30ft down. +Find weakened signal, see purple, & find 10ft stone walls with a door. +Password opens it (Spinal). + +Enter into chamber. 2 golems in dwarf form guard a door. +Spinal opens the door. + +- Go left down corridor. +Enter large room - stone benches & lecture seats (seat 20-30 people). +Jagged rock horn - representation of Tor. +"Tor Protects" written underneath statue. +No visible disturbance to the dust. diff --git a/out/42.txt b/out/42.txt new file mode 100644 index 0000000..b23883e --- /dev/null +++ b/out/42.txt @@ -0,0 +1,21 @@ +Book on lectern - Book of Ancient Dwarven language on Tor. +Head across the corridor - room, same size but only contains +teleport circle (one set). Geldrin takes rune number. +Dirk finds footprints that have tried to be covered up & lead +down the corridor. Fairly recent, could still be around as have +gone back on themselves. + +Follow footprints to a closed door. Footprints seem very purposeful. +Ruby in the dwarf face releases some chains which open the door. +- Use my crowbar to hold both of the chains to keep the door open. +Geldrin sets an alarm on the hatch & teleportation circle. + +Go into another door (2nd left from the hatch). +Purple glow from the room. Paperwork on the walls of pylons & tower structures. +Bubble of shield energy in the middle. +Scaled model of the penta city states. +Suspended globe of elements at each of the compass points. +There is a city Fire Airwise of Lake Azure half way between the lake +& Aegis-on-Sands. +No sign of any of the prisons or labs on the model. +Elements don't move. diff --git a/out/43.txt b/out/43.txt new file mode 100644 index 0000000..1173654 --- /dev/null +++ b/out/43.txt @@ -0,0 +1,24 @@ +Teleportation circle activates. Retrieve crowbar & hide in diorama room. +1 person seems to come out & goes to dwarf face door, +to door opposite us, then over to us. +Tanned skin gentleman comes in - human, desert style robe, +Arabic look to him, piercing blue eyes. Doesn't work for the black dragon. +Has found several circles & he is a collector of magical trinkets. +Make a deal - he gets all the coin/gold/silver & we get first pick +of the treasure. He gets the next, then we get 3 other picks, even split. + +Lounge has a scepter that seems out of place. +Dirk takes it and an alarm goes off. +All doors are now arcane locked. +Go back through dwarf face door. +Go left. Mouth appears and tells us traps are active. +First door - ten skittles at the end of a lane, +poker table & darts board with 3 darts in the 20. +Poker table is magical; whole room is magical. +Next door totally empty room... +Next door - silence spell goes off. Room is full of rows & rows +of crystal balls. Memories but we don't know that. +Back in the lounge hidden room behind the dwarf portrait: +blank paper & non-wounding dagger. Paper is magical to write special, +& silence spell stops. +Go back to crystal ball room. diff --git a/out/44.txt b/out/44.txt new file mode 100644 index 0000000..4556b4f --- /dev/null +++ b/out/44.txt @@ -0,0 +1,32 @@ +Memory of goliaths helping to build grand towers. +Find the ball with the most scratched plinth - memory is filled with dread. +Acid smell like house, scarred by acid & dwarf skeleton. + +Get one near grand towers ball - see 4 other people in a circle +around teleport circle: human (male), elf (female), human (female), +halfling (emo), purple crystal rises up from the circle. +Before acid splash, see lounge talking to Envoi, asking about if it's +affecting anything. Joy sets off the alarm. +Ruby Eye takes the dagger & splatters blood and stops the alarm. + +Before - fields of white roses. Envoi talking to elven woman from circle. +Joy & dwarven lady next to him. Feel content but forlorn when looking over +at Joy & Envoi. + +Male darkish elf next to Envoi being introduced in observatory - +tell Envoi he doesn't trust him. Elf has magic we don't see - craft flesh. +Envoi wearing 5 rings! + +Hot Spring - opposite dwarf lady (Brookville Springs), early date, +falling in love. + +Standing in a room in his building: purple dome & copper pylons +with blackness & a shadow. +Ask shadow what it thinks. Shadow replies, saying no, not yet; +it is trapped & threatens calamity. + +Nice room, intricate vine patterns, elven mage asks about change - nothing. +Browning retreated to grand towers. Glad she is here, +worried about it - warm secret. +Think Browning is going to cover it all up; thinks if people +know how it works then they will ruin it. diff --git a/out/45.txt b/out/45.txt new file mode 100644 index 0000000..83d8586 --- /dev/null +++ b/out/45.txt @@ -0,0 +1,24 @@ +- Last one - see him in mirror wearing robes. +Book & chain with staff, looks down under mirror, +head on floor, stone opens up showing skull. +Puts 2 crystals in chanting & "Tor Protects". + +- Pythus Aleyvarus? Blue dragon. + +Ruby Eye seems to have planned the dome: +5 pylons & 5 more around the Grand Towers to make it work. +Early periods where he's protecting towns from elementals. +Group all fighting; when it breaks 6 armed rock creature, +they all make a pact. + +- Male human points him to a crater with a massive purple rock + & Envoi says he will build an observatory to track it. + Brutor says it is what they need. +- Warring kingdoms - join together to construct everything: + Harthwall, Goliath's kingdom (the one in the mini dome), Goldenswell. +- Turning on of the dome at the point of turn on, something flaming + bursts through and Browning bursts through the barrier & is attacked. + +Room opposite - big engineering astrolathe, seems to be the planet +which is a disk, with the moons and their orbits in real time. 15:00. +- Display shows the date & time - current date 31st December 1011. diff --git a/out/46.txt b/out/46.txt new file mode 100644 index 0000000..e8b7f13 --- /dev/null +++ b/out/46.txt @@ -0,0 +1,37 @@ +Room next to orbs. +Protection from Elements spell. +Open the door, boulder elements in there & try to get out. +Slaves? Made to dig - leave them there. + +Down the corridor. +Room same place as calendar room, not locked or trapped. +Room is empty, mirror image of calendar room. + +Opposite to boulder room: +Smaller room - empty aside from picture of moon holes, look like big gem holes. + +Opposite orbs: +Feel weird opening the door. +Glass cabinets in pedestals & shelves with various nick nacks, +brass plaques & glass domes over them. + +Curved with flowing water - bottle "Containment taken from Lord Hydranus". +Stone at the top 2 are glowing. +Wooden spear - flames coming from bottom, "Spear of Ciera" (fire god). +Magic bounds / magic missile. + +Great sword - stone & bone hilt with steel, dwarven steel, +blade in friendship. Sword given by kings of the goliaths. +"To the spell ones on the crafting of your big building." + +Codebook holder - with a book very delicate: +"Book recovered from grand towers upon discovery." + +Celestial dwarf mannequin, ornate green silk dress, gold trim +& tiny emeralds along the trim. +"Worn by Princess Seline to the Grand Ball." + +Cushion - small red gem, garnet. +No plaque. Size of the moon holes. +Coin press - grand towers pennies. +"Press used for souvenir pennies." diff --git a/out/47.txt b/out/47.txt new file mode 100644 index 0000000..f7638ab --- /dev/null +++ b/out/47.txt @@ -0,0 +1,32 @@ +Jar - eyeball in fluid, "My Eye". +Scrying eye, can scry once per week. + +Book - sealed not open, made of tan leather & looks unsettling. +Platinum lock. Human teeth are around the edge. +"Noctus Corinium Grimoire" - lock looks like it's an addition. + +Plinth wheatleaf - pillow with marble cube radiating yellow glow. +"Drixl's Cube, a gift from the golden field halflings." + +Bottle - wine shaped, "first pressing of Siggerne - midh-iel", +Maiden's dew drink. + +Ring - looks like Bushhunter ring, ring of protection +1. +"Failed attempt to recreate my stolen ring." + +Comb - dragonbone & jade, details carved of a forest. +"Gift from the elven princess to my wife. +She never got on with it." + +Scepter - silver, fine golden filigree, white seaward gem in the top. +"Staff gifted by the merfolk of the great sea." + +Gem writing: +"Time existed before me but history can only begin after my creation." +Celestial book - tower seems to be the centre of the world & +don't know where it came from. Clues: Geldrin got a vision when reading it, +saw 6 primal elements looking down on the world. + +Geldrin's alarm goes off - see figures at the end of the corridor: +4 burly black dragonborn. They hear alarm. "The alarm's going off, +someone is here" (Draconic). diff --git a/out/48.txt b/out/48.txt new file mode 100644 index 0000000..767112c --- /dev/null +++ b/out/48.txt @@ -0,0 +1,33 @@ +They want us to leave, claim it in the name of their master. +Shields have mosquito on it. +Create a shield wall & we yank crowbar out. +Fight: +3 1/2 swords +4 shields, mosquito +70gp +4x tower pennies +Obsidian bird - Errol. + +Errol - last message was gnome giving our location (Rewi) +to black dragon? + +Red gem found under plinth under Celestial book: +"The floor of my ship is decorated in equal parts +with riches, tools, weapons & love" - games. + +Next room - walls & ceiling are blackened - kitchen. +Nothing in the oven. +Jar contains gem: +"The rich want it, the poor have it, both will perish if they eat it." +Nothing? - right here. +Barrel seems magically sealed - rune for the cold beer. +Contains a jar with a hand in it. +Hand is ruby eyes and has blood which stopped the alarm. + +Next room is warded & locked. +- Previously empty room is now full of books: + control earth elementals, Tor, gems, for spells, wards. + Information on how to construct crystals for magic. +Gem inside a book: +"Although I'm not royalty, I'm sometimes a king or queen, +and although I never marry I'm only sometimes single." Bed. diff --git a/out/49.txt b/out/49.txt new file mode 100644 index 0000000..913743f --- /dev/null +++ b/out/49.txt @@ -0,0 +1,32 @@ +Summon unseen servant in the elemental room. + +Gem, Elemental Room: +"In my first part stir creativity & in my full form I store the results." +Museum. + +Gem, Orb room behind an orb: +"You have me today, tomorrow you'll have more. +As time passes I become harder to store. +I don't take up space and am all in one place. +I can bring a tear to your eye or a smile to your face." +Memory - orb room. +Memory is: "If you got here you got my message. +Only clue is based on the layout of my rooms. +When you get inside you'll know what to do." + +Gem, Calendar room: +"I guard the start of this recipe, just scramble, hidden." +Kitchen? + +Bedroom - seems to have a woman's touch, tapestries, +rugs etc., wardrobe drawers, full length mirror, +chair, fireplace. +Compartment under the mirror - skull with 2 gem stones +rolled up paper in the eye socket behind big gem. +If you feel like lived a good life, this is the Denouement +(final part, finishing piece). + +Gem in the other eye: +"They are never together, yet always follow one another. +One falls but never breaks and the other breaks but never falls." +Calendar. diff --git a/out/5.txt b/out/5.txt new file mode 100644 index 0000000..d9b47fb --- /dev/null +++ b/out/5.txt @@ -0,0 +1,41 @@ +Dirk finds big divots that look like foot +prints - looks like a frog - approx 8 foot frog. +Ravenhounds ribbited at dark. +Started a few weeks ago - take the pigs, gruffle hunting. +Seem to head to swamp. + +Massive moths, been around for a while. + +Q - 100g to clear the frogs. Had 50g so far. + +- 6 pigs missing to the frogs as they remember + these, but 6 others missing they don't remember. + +Go through swamp. +Feels like we are being watched. +Massive moth appears during the day... +Stealth off & get attacked by a frog - killed 2. +Find bones that appear to belong to pigs & sheep. + +Back to farmhouse, 16:00. +Cleara gives a tonic where we can use hit dice. +* Potion of recovery. * Succour. +Stay over the night. + +Day 3 +Head over to sheep farmer. +Geldrin accidentally cast a spell sat on +Dirk's shoulders. Tore his shoulders apart like +Malcolm's wounds. +Stop for short rest. +Birds circling overhead: goldfinch & starling. + +District lack of sheep at the farm, swamp seems +to be trickling into the farms. +30-yearish man appears to be trampled by a herd of sheep. +Looks like some human sized prints, 4x sets. +One looks to go to & from the barn. +We can investigate - drew crime scene. +Hear something trying to break out of the barn. +Run to farmhouse; door has been "latched in". +Table smashed to pieces, various debris about. diff --git a/out/50.txt b/out/50.txt new file mode 100644 index 0000000..ed8d099 --- /dev/null +++ b/out/50.txt @@ -0,0 +1,33 @@ +Put all of the gems in the slots and room opens. +Purple sphere that doesn't let light through. +Void creature? Won't used as it may have been too weak. +- Seems to be a self contained barrier. +Void creature wants to be let out. +- The diviner - the one who stole his brother - the twins we killed. +Mechanical trap activates something in the room. +Magical trap teleports to the room. + +Pythus takes creepy book & Celestial book. +Dirk: sword / scepter of the merfolk. +Me: coin press / cube. +Invar: ring of protection / potion bottle. +Geldrin: spear / eye. + +Pythus gives Geldrin a scroll of teleportation & goes. +Geldrin takes eye & scrys on Pythus. +Sand stone cavern, pile of gold on top is a blue dragon +(serpent-like), reading the skin book full pages made +of cured human flesh. Seems to be at the edge of the desert +near "Salvation". + +Back to void room. +Will tell us what is in their room in exchange for freedom. +What is in the room will help release him. +Rubyeye wanted to live forever. +Went in with elven woman & dark male (Envoi). +Just a fragment of the void, but if added to the others +can get more powerful but only a tiny bit. + +Inside a key looks like pylons placed against a barrier +circle of copper and turn it - talking like barrier isn't active. +Pylon for his prison as well as another. diff --git a/out/51.txt b/out/51.txt new file mode 100644 index 0000000..9cea01d --- /dev/null +++ b/out/51.txt @@ -0,0 +1,31 @@ +Use the ruby to open the door, then destroy it. +Don't give it to Rubyeye as he wants to use it to become immortal - demi lich. + +Go through door next to void. +4 plinths - by the door are 4 copper pylons, +look like they would go over rods/force field. +2 metal circles, runes all around (copper). +1 - steering wheel size. +1 - over a meter, stood upright. + +3 - dragon skull, Alsafur dog size. +4 - book, same lock as on the creepy skin book, +made of leather - unpickable lock. + +Possibly storing one of Envoi's rings - it was under the skull. +Skull is one of my kind - Veridian dragonborn, +dead for approx 1 thousand years. + +Envoi's ring: +- a sacrifice made to live eternal, father & daughter. + +Book writing around the edge - old dead language. +The memories & learning of Atuliane Harthwall. +Needs a powerful identity spell to learn the command word +to open the lock & book. + +Mosquitos, woodlice & moth are now around. +Rain storm. +Void will help as long as he is not detained. +- Lightning strike is seen although underground. +Try to let void out. diff --git a/out/52.txt b/out/52.txt new file mode 100644 index 0000000..9448434 --- /dev/null +++ b/out/52.txt @@ -0,0 +1,23 @@ +Push pylons against his dome - opposite pylons seem to switch it off +very slightly. Ring by the dome turned & attracts to the pylon. +One full turn releases the dome in that quadrant. + +Void releases a circle of obsidian to control him with. +- Take his ring & book & small ring. +- Remove gems from the moon face lock. +- Head out & close the initial door behind us. 18:30. + +Massively overcast with the storm. Air is thick with insects: +moths/mosquitos, ants etc. +Circle of storm 1/2 miles wide, moving unnaturally. +Push of barrier looks like 8 massive claws pierce through - +black dragon looks to be trying to come through the barrier. +He wants the remains of his son - seems to be the skull +in the sealed chamber. + +Go back & get it. +Missing the side of his face - think Rubyeye did it, +but he may have started it by killing his son. +Place skull near barrier and he has crystals on his scales +which part the barrier a little but still hurts him. +Takes the skull & says we are even (for killing his men). diff --git a/out/53.txt b/out/53.txt new file mode 100644 index 0000000..9b7dc04 --- /dev/null +++ b/out/53.txt @@ -0,0 +1,39 @@ +He flies off & Thunderstorm goes with him. + +Head back to Newhaven with the cart. +Go to pub - picture of 5 hands together making a star. +Silver dragonborn behind the bar, golden rim spectacles, +halfling wait staff, tabaxi bar maid. +"Gelandril Harthwall" been here 10 years. +It's said the 5 wizards used to meet here. + +Sleep. + +Day 17 1st Jan / Tri-moon +Goblin looking for us - Scum had a message for us. +Find Scum as we leave the pub. +Apparently warrant for our arrest: +Treason - conspire against the Towers to break barrier. + +Scum - telling Elementarium to meet us with Ruby Eye skull +(1 mile outside Seaward). + +Sent message via Errol to Grand Towers saying we are going +to Everchard to put them off the scent. + +Message to the Basilisk: arrive at possible meeting point, +waiting for nearly 3 hours. +Cart comes off road with a human onboard, don't recognise. +Seems suspicious. +1 box contains Grand Towers pennies. +Council ask for him to transport to Fairshaw - The Cart +(Garick Blake). Looks like the gnome sent it. + +Dragon notes: +Silver - Harthwall. +Copper - Spruce, white. +Black - Infestus. +Veridian. +Blue - Pythus. +White - the ancient. +Red? - Soot. diff --git a/out/54.txt b/out/54.txt new file mode 100644 index 0000000..9023d51 --- /dev/null +++ b/out/54.txt @@ -0,0 +1,31 @@ +Manifest: +1 currency - Towers pennies. +1 provisions - ash jerky??? +2 armaments - spearheads, copper ends, trident heads tipped in copper. +1 waterproof papers - reams of enchanted waterproof paper, + salt water only. +1 tar. +1 tools - heavy duty, ship building? +1 misc goods. + +Should have gone out in 2 days with guards. +Invar knocks the driver out. +See what looks like Elementarium riding towards us. +Gnome seems to be trying to clear the decks. +Elementarium doesn't know about the spearheads etc. +Wants to set up a meeting with Lady Harthwall. +They have a council to discuss security matters within the dome! +Gives us the Ruby-Eye skull. + +Jerky bag contains a hemp bag - pungent sickly sweet smell, +reminds me of rose spice, but narcotic. + +Ruby Eye: +Infestus' son - spawn of evil - needed a powerful sacrifice +for a friend (Envoi). +Salt dragon leaking - worried tampering with the life may have weakened +the force. +Reinforce the barrier - if we don't weaken the barrier, possible fix +by refilling the voids, or safely disable the barrier - turn off with +the fail-safe button in Grand Towers. +Weird skin book - grimoire Noctus Caerulium - forbidden magic. diff --git a/out/55.txt b/out/55.txt new file mode 100644 index 0000000..e526cd8 --- /dev/null +++ b/out/55.txt @@ -0,0 +1,23 @@ +To stop Tri-moon shard we would need to fully redo the dome. +- Create a device to repel it but barrier would need to go down to do it. +- Relationship with the merfolk? Fish men, different people, + then those invited into the barrier. Great helpers to set up barriers. +- Thinks Browning had something to do with goliath settlement + disappearing from the history (must be clues). +Green dragon seems to be residing in the area. +- White Dragon helped to build the dome. Reds, no blues. +- Elementals liked to attack & this is why the barrier was put up. +- Tower was perfect place but needed more. +- Backup plan for the void elemental stashed in his safe, + if not there need to find another. + +Giant gargoyle approaches, rolls a carpet out with a teleport rune on it. +Tells us to get on the rune. +Appear in a lush castle room at Harthwall. Sat at head of table +seems to be Lady Harthwall; stood beside is Sister Lady. +4 chairs by the rug. + +Rip in the sky - Basilisk appears with: +Lady Catherine Cole - Earl of Stronghedge (Basilisk is bodyguard). +Tiefling male takes another seat - portly, appears in a purple flash (the Guilt). +Valkyrie woman walks in - Earl of Ironcroft Firewise - flanked by 2 dwarves. diff --git a/out/6.txt b/out/6.txt new file mode 100644 index 0000000..ff1fff6 --- /dev/null +++ b/out/6.txt @@ -0,0 +1,49 @@ +Fire looks like it was burnt out yesterday. +Upstairs looks old. Double bedroom & 2 sets of singles. +Older couple. 1 may match dead man, 1 slightly smaller. + +- Creep over to the barn & see a row of sheep + heads - seem unnaturally agitated. Hear unevening bleat. +Breaks out of the barn - massive pile of melted +sheep - killed it. + +See things at barn and felt memories +being taken - not there when we get to the barn. +Found woman in the corner dead. Looks like +she lured the creature in the barn and somebody +locked them in. +Something about Malcolm and Isabella going missing & +nobody knowing of them in town but us & Malcolm's +wife knows. 11:15. + +- Go to where we found the birds. +Take short rest. Dirk leaves food out & lots of different +types of birds appear. +Go into swamp to find bird lady. 1 hour in. +Swamp hut covered in bird poo, inside branches +covered in birds. 80ish woman, blindfolded & mouth +sewn shut. Name: "The Chorus". + +Been having dreams - that aren't her own. +Her apprentice upped and left. +Magic used is clever - changes memories into a convenient +form - so knowing Sarah was with The Chorus it +was harder to wipe. +On of the Robins' Day they saw her by the hostel. +She was distorted... + +Always had large animals in the area. +Somebody going through the swamp & using gas +which is hurting the birds. +Q: Stop the Bushhunter. +Direct us to the place where Gedrin has the papers. +2pm leave, 5pm at town. + +Back to town through market place. +Notice stack of frames with a halfling (suited) +with an ogre - barrel with tubes & pipes going to an +ear funnel crossbow - talking to a masked person who +has a wagon pulled by a "cobra koi" type creature. + +Sneak up behind the ogre & break his equipment. +Goggles & let the gas out. diff --git a/out/7.txt b/out/7.txt new file mode 100644 index 0000000..2c9ed67 --- /dev/null +++ b/out/7.txt @@ -0,0 +1,40 @@ +Bushhunter will do any form of Taxidermy... +* Bushhunter promises to hunt out of town. +Request him to do it the other side of the +river. + +- Magpie / Xinquiss can be found at + the Hatrall great bazaar. 5:15. + +Sheriff's office. +Very busy in there. Both Jeremia & deputy sheriff +armoured up - half-orc & kobold (seem to be militia). +Citizens wearing patchwork armour - bear, tabaxi, human, +warforged. + +- Been an attack - Walter (sheep farmer). Somebody came + in & they had a cult with sheep beast in. + Wife sacrificed herself. + +- Core - warforged - runs Peel & Core, lack of custom + in the tavern - noticed wagons at the hostel. + +- Earl had a death threat. 500g bounty. + +- Tiny guy - forester - Cromwell - noticed wagons + past Walter's farm, seem to have stopped there. + Seemed to be people in the wagons. What the mo... 5:30. + +- Jeremia & Drang to protect the Earl. +Hannah & Bob - go to outskirts. + +Gives us a shock dagger. + +- Village is quiet. +2x wagons parked outside the hostel - livestock looking. +Smells of pig manure & human faeces. Feel warmth +but can't see anything - scratched crab claws. + +Dirk sees rats again & they attack. A pig beast +breaks out of one of the carts, killed. +Sabotage carts & two people bring 4 horses. diff --git a/out/8.txt b/out/8.txt new file mode 100644 index 0000000..9508822 --- /dev/null +++ b/out/8.txt @@ -0,0 +1,49 @@ +Woman in 50's, too many teeth, bigger (Sarah?) +Mouth - big. +Young boy 18ish (sheep farmer's boy?) + +3x patrons: Crimson, Bovine, Mirthis Fizzleswig. +1 shortsword. +1 sickle, silver. +Random herbs. +Church Tor & church Tarber. 19:00. + +Take the people & cart to the church. +People unable to be saved. Boy wasn't dead at first +but now dead. + +Brother Fracture - looks at the cart. +Remembered all of the militia have been going missing. +Want to try to put them all to sleep - Bushhunter! +Bushhunter staying out at cider inn/cider. + +Go to see him, 20:00. +Has a ring with purple gem & runes, needs identifying. +Doing that in trade for use of quaverisior / magical hearing +powder, 5000? etc. +Go back to cart & use it. +Get 5 back into the church. +1 - Gregory, homeless man, restored. Thought he'd been +taken by the militia. Remembers being in the big militia house. + +Park the cart behind the church & horses at the inn. + +Random compass box with a needle that points to the +Bushhunter - Geldrin buys it. + +Day 4 19th Dec, 7:00 +Dirk - flower he got from a tiefling girl is still looking +new - has a magic enchantment to keep it new. + +Problems with Pylon: +- Seaweed water spirits on the move. +- Fish men other side of barrier (massacre), dumbold south. +- Stone giants missing under new leadership by Hyden Goldensoul, + armies too insignificant. +- Cold air over River Rhein, frozen between Snowshore and + Highland edge. +- Ancient [unclear] from slumber, sages try to interpret omens. +- Gnolls attack restored point, cows missing, bounty on gnoll. +- Blight hits azureside cherry crops - Cereza production halted. +- Isabella Nudegate, 500g reward (missing on route), not searched. +- Grand festival, midwinter - held at Brockville spring next week. diff --git a/out/9.txt b/out/9.txt new file mode 100644 index 0000000..f702f82 --- /dev/null +++ b/out/9.txt @@ -0,0 +1,43 @@ +* Peridobit cloaking death spotted 50 miles eastwise + of Arrowfeur. +- No mention of pig. + +- Pig carcass is missing. Singe marks on the road. + Other cart still outside the hostel. 8:20. + +Oric - innkeeper, Cider Inn Cider. +Earl was holding banquet, no other strange goings on. +Things go crazy this close to the third. +Town crier local news around midday. + +Go to sheriff - walk past Earl's manor house. +Sheriff in chair, kobold shuffling papers. +Calls Malcolm, half elf steward for the Earl apparently +behind the plots to kill the Earl. Seems innocent - +no evidence, doing to keep face with the Earl. + +Something off with the Earl. Asked blacksmith to +up the production on weapons?! Invar just delivered lots. +Steward - didn't know him before; thinks duchesses +of Harthwall sent him after the previous Earl passed. +Earl seems to be more extreme in his views: +10 show sorrow, +10 blacksmith in town. + +Books say 27 militia - but only 4 (27 is half required amount). +Lawrence Henderson - exchequer, paying wages. 8:00. +Ledger given to the scribes at night & back to +Earl at 9:00 - half elf comes to scribes with us. + +Pick the lock & get left to Earl's chambers, right for scribes. +Ledgers are all copied & old ledgers kept in a different +place. Current ledger around 7 days ago. + +Isabella 2 weeks ago with 20 min to search for her in the copies. +Malcolm 6 days ago - name scrubbed out in the ledger +but not scribbled out in the copies. + +Visiting tourists: cider brewery & tour of woodland. +Spoke to the Earl for permission to take a cutting from the +Everchurch tree. Staying at beekeeper's. +Elfin meadowmaker for the cutting, 2x bodyguard. diff --git a/src/IMG_5115.png b/src/IMG_5115.png new file mode 100644 index 0000000..fefee27 Binary files /dev/null and b/src/IMG_5115.png differ diff --git a/src/IMG_5116.png b/src/IMG_5116.png new file mode 100644 index 0000000..cfca911 Binary files /dev/null and b/src/IMG_5116.png differ diff --git a/src/IMG_5117.png b/src/IMG_5117.png new file mode 100644 index 0000000..573a5d2 Binary files /dev/null and b/src/IMG_5117.png differ diff --git a/src/IMG_5118.png b/src/IMG_5118.png new file mode 100644 index 0000000..63fb5aa Binary files /dev/null and b/src/IMG_5118.png differ diff --git a/src/IMG_5119.png b/src/IMG_5119.png new file mode 100644 index 0000000..42144bd Binary files /dev/null and b/src/IMG_5119.png differ diff --git a/src/IMG_5120.png b/src/IMG_5120.png new file mode 100644 index 0000000..71930bf Binary files /dev/null and b/src/IMG_5120.png differ diff --git a/src/IMG_5121.png b/src/IMG_5121.png new file mode 100644 index 0000000..c26c97a Binary files /dev/null and b/src/IMG_5121.png differ diff --git a/src/IMG_5122.png b/src/IMG_5122.png new file mode 100644 index 0000000..9b59bc1 Binary files /dev/null and b/src/IMG_5122.png differ diff --git a/src/IMG_5123.png b/src/IMG_5123.png new file mode 100644 index 0000000..5155d1c Binary files /dev/null and b/src/IMG_5123.png differ diff --git a/src/IMG_5124.png b/src/IMG_5124.png new file mode 100644 index 0000000..7d2ae19 Binary files /dev/null and b/src/IMG_5124.png differ diff --git a/src/IMG_5125.png b/src/IMG_5125.png new file mode 100644 index 0000000..2fe903b Binary files /dev/null and b/src/IMG_5125.png differ diff --git a/src/IMG_5126.png b/src/IMG_5126.png new file mode 100644 index 0000000..20a2960 Binary files /dev/null and b/src/IMG_5126.png differ diff --git a/src/IMG_5127.png b/src/IMG_5127.png new file mode 100644 index 0000000..b7a42b9 Binary files /dev/null and b/src/IMG_5127.png differ diff --git a/src/IMG_5128.png b/src/IMG_5128.png new file mode 100644 index 0000000..d791182 Binary files /dev/null and b/src/IMG_5128.png differ diff --git a/src/IMG_5129.png b/src/IMG_5129.png new file mode 100644 index 0000000..07a9f90 Binary files /dev/null and b/src/IMG_5129.png differ diff --git a/src/IMG_5130.png b/src/IMG_5130.png new file mode 100644 index 0000000..7c00ba6 Binary files /dev/null and b/src/IMG_5130.png differ diff --git a/src/IMG_5131.png b/src/IMG_5131.png new file mode 100644 index 0000000..1df5cdd Binary files /dev/null and b/src/IMG_5131.png differ diff --git a/src/IMG_5132.png b/src/IMG_5132.png new file mode 100644 index 0000000..ebaf90b Binary files /dev/null and b/src/IMG_5132.png differ diff --git a/src/IMG_5133.png b/src/IMG_5133.png new file mode 100644 index 0000000..a504b7a Binary files /dev/null and b/src/IMG_5133.png differ diff --git a/src/IMG_5134.png b/src/IMG_5134.png new file mode 100644 index 0000000..40f3e97 Binary files /dev/null and b/src/IMG_5134.png differ diff --git a/src/IMG_5135.png b/src/IMG_5135.png new file mode 100644 index 0000000..875c1a0 Binary files /dev/null and b/src/IMG_5135.png differ diff --git a/src/IMG_5136.png b/src/IMG_5136.png new file mode 100644 index 0000000..9531894 Binary files /dev/null and b/src/IMG_5136.png differ diff --git a/src/IMG_5137.png b/src/IMG_5137.png new file mode 100644 index 0000000..77b66cc Binary files /dev/null and b/src/IMG_5137.png differ diff --git a/src/IMG_5138.png b/src/IMG_5138.png new file mode 100644 index 0000000..6816df1 Binary files /dev/null and b/src/IMG_5138.png differ diff --git a/src/IMG_5139.png b/src/IMG_5139.png new file mode 100644 index 0000000..1283119 Binary files /dev/null and b/src/IMG_5139.png differ diff --git a/src/IMG_5140.png b/src/IMG_5140.png new file mode 100644 index 0000000..13771f4 Binary files /dev/null and b/src/IMG_5140.png differ diff --git a/src/IMG_5141.png b/src/IMG_5141.png new file mode 100644 index 0000000..b7018b8 Binary files /dev/null and b/src/IMG_5141.png differ diff --git a/src/IMG_5142.png b/src/IMG_5142.png new file mode 100644 index 0000000..9d870ca Binary files /dev/null and b/src/IMG_5142.png differ diff --git a/src/IMG_5143.png b/src/IMG_5143.png new file mode 100644 index 0000000..5872fc7 Binary files /dev/null and b/src/IMG_5143.png differ diff --git a/src/IMG_5144.png b/src/IMG_5144.png new file mode 100644 index 0000000..3c8deec Binary files /dev/null and b/src/IMG_5144.png differ diff --git a/src/IMG_5145.png b/src/IMG_5145.png new file mode 100644 index 0000000..3b5421a Binary files /dev/null and b/src/IMG_5145.png differ diff --git a/src/IMG_5146.png b/src/IMG_5146.png new file mode 100644 index 0000000..6c7d2cf Binary files /dev/null and b/src/IMG_5146.png differ diff --git a/src/IMG_5147.png b/src/IMG_5147.png new file mode 100644 index 0000000..b5d2cc8 Binary files /dev/null and b/src/IMG_5147.png differ diff --git a/src/IMG_5148.png b/src/IMG_5148.png new file mode 100644 index 0000000..f4a1f4b Binary files /dev/null and b/src/IMG_5148.png differ diff --git a/src/IMG_5149.png b/src/IMG_5149.png new file mode 100644 index 0000000..733349e Binary files /dev/null and b/src/IMG_5149.png differ diff --git a/src/IMG_5150.png b/src/IMG_5150.png new file mode 100644 index 0000000..b3f46d6 Binary files /dev/null and b/src/IMG_5150.png differ diff --git a/src/IMG_5151.png b/src/IMG_5151.png new file mode 100644 index 0000000..19aa255 Binary files /dev/null and b/src/IMG_5151.png differ diff --git a/src/IMG_5152.png b/src/IMG_5152.png new file mode 100644 index 0000000..439f917 Binary files /dev/null and b/src/IMG_5152.png differ diff --git a/src/IMG_5153.png b/src/IMG_5153.png new file mode 100644 index 0000000..33178a4 Binary files /dev/null and b/src/IMG_5153.png differ diff --git a/src/IMG_5154.png b/src/IMG_5154.png new file mode 100644 index 0000000..360955a Binary files /dev/null and b/src/IMG_5154.png differ diff --git a/src/IMG_5155.png b/src/IMG_5155.png new file mode 100644 index 0000000..d932e59 Binary files /dev/null and b/src/IMG_5155.png differ diff --git a/src/IMG_5156.png b/src/IMG_5156.png new file mode 100644 index 0000000..aab8636 Binary files /dev/null and b/src/IMG_5156.png differ diff --git a/src/IMG_5157.png b/src/IMG_5157.png new file mode 100644 index 0000000..c77471c Binary files /dev/null and b/src/IMG_5157.png differ diff --git a/src/IMG_5158.png b/src/IMG_5158.png new file mode 100644 index 0000000..bb053ec Binary files /dev/null and b/src/IMG_5158.png differ diff --git a/src/IMG_5159.png b/src/IMG_5159.png new file mode 100644 index 0000000..39838bb Binary files /dev/null and b/src/IMG_5159.png differ diff --git a/src/IMG_5160.png b/src/IMG_5160.png new file mode 100644 index 0000000..ca9c5ac Binary files /dev/null and b/src/IMG_5160.png differ diff --git a/src/IMG_5161.png b/src/IMG_5161.png new file mode 100644 index 0000000..c624acc Binary files /dev/null and b/src/IMG_5161.png differ diff --git a/src/IMG_5162.png b/src/IMG_5162.png new file mode 100644 index 0000000..ef74e9c Binary files /dev/null and b/src/IMG_5162.png differ diff --git a/src/IMG_5163.png b/src/IMG_5163.png new file mode 100644 index 0000000..e5a7f74 Binary files /dev/null and b/src/IMG_5163.png differ diff --git a/src/IMG_5164.png b/src/IMG_5164.png new file mode 100644 index 0000000..83c4f59 Binary files /dev/null and b/src/IMG_5164.png differ diff --git a/src/IMG_5165.png b/src/IMG_5165.png new file mode 100644 index 0000000..14bd574 Binary files /dev/null and b/src/IMG_5165.png differ diff --git a/src/IMG_5166.png b/src/IMG_5166.png new file mode 100644 index 0000000..a12f000 Binary files /dev/null and b/src/IMG_5166.png differ diff --git a/src/IMG_5167.png b/src/IMG_5167.png new file mode 100644 index 0000000..d3090e9 Binary files /dev/null and b/src/IMG_5167.png differ diff --git a/src/IMG_5168.png b/src/IMG_5168.png new file mode 100644 index 0000000..aa8d22f Binary files /dev/null and b/src/IMG_5168.png differ diff --git a/src/IMG_5169.png b/src/IMG_5169.png new file mode 100644 index 0000000..72b63c8 Binary files /dev/null and b/src/IMG_5169.png differ diff --git a/src/IMG_5170.png b/src/IMG_5170.png new file mode 100644 index 0000000..f69dece Binary files /dev/null and b/src/IMG_5170.png differ diff --git a/src/IMG_5171.png b/src/IMG_5171.png new file mode 100644 index 0000000..9408a3e Binary files /dev/null and b/src/IMG_5171.png differ diff --git a/src/IMG_5172.png b/src/IMG_5172.png new file mode 100644 index 0000000..c4aa713 Binary files /dev/null and b/src/IMG_5172.png differ diff --git a/src/IMG_5173.png b/src/IMG_5173.png new file mode 100644 index 0000000..6f953d4 Binary files /dev/null and b/src/IMG_5173.png differ diff --git a/src/IMG_5174.png b/src/IMG_5174.png new file mode 100644 index 0000000..9da7b7f Binary files /dev/null and b/src/IMG_5174.png differ diff --git a/src/IMG_5175.png b/src/IMG_5175.png new file mode 100644 index 0000000..248d411 Binary files /dev/null and b/src/IMG_5175.png differ diff --git a/src/IMG_5176.png b/src/IMG_5176.png new file mode 100644 index 0000000..699c559 Binary files /dev/null and b/src/IMG_5176.png differ diff --git a/src/IMG_5177.png b/src/IMG_5177.png new file mode 100644 index 0000000..5509e1b Binary files /dev/null and b/src/IMG_5177.png differ diff --git a/src/IMG_5178.png b/src/IMG_5178.png new file mode 100644 index 0000000..aadd932 Binary files /dev/null and b/src/IMG_5178.png differ diff --git a/src/IMG_5179.png b/src/IMG_5179.png new file mode 100644 index 0000000..d6b45df Binary files /dev/null and b/src/IMG_5179.png differ diff --git a/src/IMG_5180.png b/src/IMG_5180.png new file mode 100644 index 0000000..10f07a1 Binary files /dev/null and b/src/IMG_5180.png differ diff --git a/src/IMG_5181.png b/src/IMG_5181.png new file mode 100644 index 0000000..35ecb02 Binary files /dev/null and b/src/IMG_5181.png differ diff --git a/src/IMG_5182.png b/src/IMG_5182.png new file mode 100644 index 0000000..ae9f736 Binary files /dev/null and b/src/IMG_5182.png differ diff --git a/src/IMG_5183.png b/src/IMG_5183.png new file mode 100644 index 0000000..add7018 Binary files /dev/null and b/src/IMG_5183.png differ diff --git a/src/IMG_5184.png b/src/IMG_5184.png new file mode 100644 index 0000000..c46240f Binary files /dev/null and b/src/IMG_5184.png differ diff --git a/src/IMG_5185.png b/src/IMG_5185.png new file mode 100644 index 0000000..4d91969 Binary files /dev/null and b/src/IMG_5185.png differ diff --git a/src/IMG_5186.png b/src/IMG_5186.png new file mode 100644 index 0000000..e8891e3 Binary files /dev/null and b/src/IMG_5186.png differ diff --git a/src/IMG_5187.png b/src/IMG_5187.png new file mode 100644 index 0000000..5029413 Binary files /dev/null and b/src/IMG_5187.png differ diff --git a/src/IMG_5188.png b/src/IMG_5188.png new file mode 100644 index 0000000..76a5ea4 Binary files /dev/null and b/src/IMG_5188.png differ diff --git a/src/IMG_5189.png b/src/IMG_5189.png new file mode 100644 index 0000000..c5759e8 Binary files /dev/null and b/src/IMG_5189.png differ diff --git a/src/IMG_5190.png b/src/IMG_5190.png new file mode 100644 index 0000000..e58e72b Binary files /dev/null and b/src/IMG_5190.png differ diff --git a/transcribe_notes.py b/transcribe_notes.py new file mode 100755 index 0000000..368caa6 --- /dev/null +++ b/transcribe_notes.py @@ -0,0 +1,114 @@ +#!/usr/bin/env python3 + +import argparse +import json +import re +import subprocess +import sys +import tempfile +from pathlib import Path + +PROMPT = ( + 'Reply with strict JSON only: ' + '{"page_number":"<number>","transcription":"<full transcription>"}. ' + 'Infer the page number from the top-right corner of this handwritten page. ' + 'Transcribe the page as exactly as possible, preserving line breaks where readable. ' + 'Do not summarize. If a word is unclear, use your best reading.' +) + + +def convert_image(src: Path, tmpdir: Path) -> Path: + out = tmpdir / f"{src.stem}.png" + subprocess.run( + [ + "magick", + str(src), + "-auto-orient", + "-resize", + "1600x1600>", + str(out), + ], + check=True, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, + ) + return out + + +def call_ollama(image_path: Path, model: str) -> dict: + result = subprocess.run( + [ + "ollama", + "run", + model, + "--hidethinking", + "--nowordwrap", + "--format", + "json", + PROMPT, + str(image_path), + ], + check=True, + capture_output=True, + text=True, + timeout=900, + ) + raw = result.stdout.strip() + try: + return json.loads(raw) + except json.JSONDecodeError: + match = re.search(r"\{.*\}", raw, re.S) + if not match: + raise + return json.loads(match.group(0)) + + +def sanitize_page_number(value: str) -> str: + cleaned = re.sub(r"\D+", "", value or "") + if not cleaned: + raise ValueError(f"Could not parse page number from {value!r}") + return cleaned + + +def write_output(dest_dir: Path, page_number: str, transcription: str) -> Path: + out = dest_dir / f"{page_number}.txt" + out.write_text(transcription.rstrip() + "\n", encoding="utf-8") + return out + + +def main() -> int: + parser = argparse.ArgumentParser() + parser.add_argument("--src", default="src") + parser.add_argument("--dest", default="dest") + parser.add_argument("--model", default="gemma4:e4b") + args = parser.parse_args() + + src_dir = Path(args.src) + dest_dir = Path(args.dest) + dest_dir.mkdir(parents=True, exist_ok=True) + + files = sorted(src_dir.glob("*.HEIC")) + if not files: + print("No HEIC files found.", file=sys.stderr) + return 1 + + with tempfile.TemporaryDirectory(prefix="pentacity-ocr-") as tmp: + tmpdir = Path(tmp) + for index, src in enumerate(files, start=1): + print(f"[{index}/{len(files)}] {src.name}", file=sys.stderr) + try: + png = convert_image(src, tmpdir) + data = call_ollama(png, args.model) + page_number = sanitize_page_number(str(data.get("page_number", ""))) + transcription = str(data.get("transcription", "")).strip() + out = write_output(dest_dir, page_number, transcription) + print(f" -> {out.name}", file=sys.stderr) + except (subprocess.CalledProcessError, subprocess.TimeoutExpired, json.JSONDecodeError, ValueError) as exc: + print(f"Failed on {src.name}: {exc}", file=sys.stderr) + return 1 + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main())